diff --git a/SwiftProject/Podfile b/SwiftProject/Podfile index a5e1404..8e2a189 100644 --- a/SwiftProject/Podfile +++ b/SwiftProject/Podfile @@ -45,6 +45,6 @@ pod 'FirebaseCrashlytics' pod 'Firebase/AnalyticsWithoutAdIdSupport' pod 'FirebaseAuth' pod 'FirebaseFirestore' - +pod 'FacebookCore' end diff --git a/SwiftProject/Podfile.lock b/SwiftProject/Podfile.lock index 8d0b3c7..132b558 100644 --- a/SwiftProject/Podfile.lock +++ b/SwiftProject/Podfile.lock @@ -823,6 +823,14 @@ PODS: - BoringSSL-GRPC/Interface (= 0.0.32) - BoringSSL-GRPC/Interface (0.0.32) - DeviceKit (5.2.2) + - FacebookCore (0.9.0): + - FBSDKCoreKit (~> 5.0) + - FBSDKCoreKit (5.15.1): + - FBSDKCoreKit/Basics (= 5.15.1) + - FBSDKCoreKit/Core (= 5.15.1) + - FBSDKCoreKit/Basics (5.15.1) + - FBSDKCoreKit/Core (5.15.1): + - FBSDKCoreKit/Basics - Firebase/AnalyticsWithoutAdIdSupport (10.23.0): - Firebase/CoreOnly - FirebaseAnalytics/WithoutAdIdSupport (~> 10.23.0) @@ -1038,6 +1046,7 @@ PODS: DEPENDENCIES: - Alamofire - DeviceKit + - FacebookCore - Firebase/AnalyticsWithoutAdIdSupport - FirebaseAuth - FirebaseCrashlytics @@ -1053,6 +1062,8 @@ SPEC REPOS: - Alamofire - BoringSSL-GRPC - DeviceKit + - FacebookCore + - FBSDKCoreKit - Firebase - FirebaseAnalytics - FirebaseAppCheckInterop @@ -1089,6 +1100,8 @@ SPEC CHECKSUMS: Alamofire: 3ca42e259043ee0dc5c0cdd76c4bc568b8e42af7 BoringSSL-GRPC: 1e2348957acdbcad360b80a264a90799984b2ba6 DeviceKit: e36aaf2a0d142ef0b4fac2007649a4414af234be + FacebookCore: ba86524b66cfa86d0f8e65d08faa8504a9f732dd + FBSDKCoreKit: 1d5acf7c9d7a2f92bb1a242dc60cae5b7adb91df Firebase: 333ec7c6b12fa09c77b5162cda6b862102211d50 FirebaseAnalytics: 45f6e2e5ef8ccbb90be73ae983c3b20fa78837f7 FirebaseAppCheckInterop: a1955ce8c30f38f87e7d091630e871e91154d65d @@ -1120,6 +1133,6 @@ SPEC CHECKSUMS: SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6 TZImagePickerController: f1c9f1cae6ac0e30b31aaa9698f9bf4a7cf5b84f -PODFILE CHECKSUM: 3d5feb483f1e0625e790607cb3a94eeb8fca4d45 +PODFILE CHECKSUM: 348e68c1ad5662db981acd0c0690ba09e3436445 COCOAPODS: 1.15.2 diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.h new file mode 100644 index 0000000..e191a7f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.h @@ -0,0 +1,865 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if !TARGET_OS_TV +#import +#endif + +#ifdef BUCK +#import +#else +#import "FBSDKGraphRequestConnection.h" +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAccessToken; +@class FBSDKGraphRequest; + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +/** NSNotificationCenter name indicating a result of a failed log flush attempt. The posted object will be an NSError instance. */ +FOUNDATION_EXPORT NSNotificationName const FBSDKAppEventsLoggingResultNotification +NS_SWIFT_NAME(AppEventsLoggingResult); + +#else + +/** NSNotificationCenter name indicating a result of a failed log flush attempt. The posted object will be an NSError instance. */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventsLoggingResultNotification +NS_SWIFT_NAME(AppEventsLoggingResultNotification); + +#endif + +/** optional plist key ("FacebookLoggingOverrideAppID") for setting `loggingOverrideAppID` */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventsOverrideAppIDBundleKey +NS_SWIFT_NAME(AppEventsOverrideAppIDBundleKey); + +/** + + NS_ENUM (NSUInteger, FBSDKAppEventsFlushBehavior) + + Specifies when `FBSDKAppEvents` sends log events to the server. + + */ +typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushBehavior) +{ + + /** Flush automatically: periodically (once a minute or every 100 logged events) and always at app reactivation. */ + FBSDKAppEventsFlushBehaviorAuto = 0, + + /** Only flush when the `flush` method is called. When an app is moved to background/terminated, the + events are persisted and re-established at activation, but they will only be written with an + explicit call to `flush`. */ + FBSDKAppEventsFlushBehaviorExplicitOnly, +} NS_SWIFT_NAME(AppEvents.FlushBehavior); + +/** + NS_ENUM(NSUInteger, FBSDKProductAvailability) + Specifies product availability for Product Catalog product item update + */ +typedef NS_ENUM(NSUInteger, FBSDKProductAvailability) +{ + /** + * Item ships immediately + */ + FBSDKProductAvailabilityInStock = 0, + /** + * No plan to restock + */ + FBSDKProductAvailabilityOutOfStock, + /** + * Available in future + */ + FBSDKProductAvailabilityPreOrder, + /** + * Ships in 1-2 weeks + */ + FBSDKProductAvailabilityAvailableForOrder, + /** + * Discontinued + */ + FBSDKProductAvailabilityDiscontinued, +} NS_SWIFT_NAME(AppEvents.ProductAvailability); + +/** + NS_ENUM(NSUInteger, FBSDKProductCondition) + Specifies product condition for Product Catalog product item update + */ +typedef NS_ENUM(NSUInteger, FBSDKProductCondition) +{ + FBSDKProductConditionNew = 0, + FBSDKProductConditionRefurbished, + FBSDKProductConditionUsed, +} NS_SWIFT_NAME(AppEvents.ProductCondition); + +/** + @methodgroup Predefined event names for logging events common to many apps. Logging occurs through the `logEvent` family of methods on `FBSDKAppEvents`. + Common event parameters are provided in the `FBSDKAppEventsParameterNames*` constants. + */ + +/// typedef for FBSDKAppEventName +typedef NSString *const FBSDKAppEventName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.Name); + +/** Log this event when the user has achieved a level in the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAchievedLevel; + +/** Log this event when the user has entered their payment info. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAddedPaymentInfo; + +/** Log this event when the user has added an item to their cart. The valueToSum passed to logEvent should be the item's price. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAddedToCart; + +/** Log this event when the user has added an item to their wishlist. The valueToSum passed to logEvent should be the item's price. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAddedToWishlist; + +/** Log this event when a user has completed registration with the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameCompletedRegistration; + +/** Log this event when the user has completed a tutorial in the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameCompletedTutorial; + +/** Log this event when the user has entered the checkout process. The valueToSum passed to logEvent should be the total price in the cart. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameInitiatedCheckout; + +/** Log this event when the user has completed a transaction. The valueToSum passed to logEvent should be the total price of the transaction. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNamePurchased; + +/** Log this event when the user has rated an item in the app. The valueToSum passed to logEvent should be the numeric rating. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameRated; + +/** Log this event when a user has performed a search within the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSearched; + +/** Log this event when the user has spent app credits. The valueToSum passed to logEvent should be the number of credits spent. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSpentCredits; + +/** Log this event when the user has unlocked an achievement in the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameUnlockedAchievement; + +/** Log this event when a user has viewed a form of content in the app. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameViewedContent; + +/** A telephone/SMS, email, chat or other type of contact between a customer and your business. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameContact; + +/** The customization of products through a configuration tool or other application your business owns. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameCustomizeProduct; + +/** The donation of funds to your organization or cause. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameDonate; + +/** When a person finds one of your locations via web or application, with an intention to visit (example: find product at a local store). */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameFindLocation; + +/** The booking of an appointment to visit one of your locations. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSchedule; + +/** The subsequent subscriptions after the start of a paid subscription for a product or service you offer. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSubscriptionHeartbeat __attribute((deprecated("This attribute is no longer used."))); + +/** The start of a free trial of a product or service you offer (example: trial subscription). */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameStartTrial; + +/** The submission of an application for a product, service or program you offer (example: credit card, educational program or job). */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSubmitApplication; + +/** The start of a paid subscription for a product or service you offer. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameSubscribe; + +/** Log this event when the user views an ad. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAdImpression; + +/** Log this event when the user clicks an ad. */ +FOUNDATION_EXPORT FBSDKAppEventName FBSDKAppEventNameAdClick; + +/** + @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logEvent` family + of methods on `FBSDKAppEvents`. Common event names are provided in the `FBAppEventName*` constants. + */ + +/// typedef for FBSDKAppEventParameterName +typedef NSString *const FBSDKAppEventParameterName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterName); + + /** + * Parameter key used to specify data for the one or more pieces of content being logged about. + * Data should be a JSON encoded string. + * Example: + * "[{\"id\": \"1234\", \"quantity\": 2, \"item_price\": 5.99}, {\"id\": \"5678\", \"quantity\": 1, \"item_price\": 9.99}]" + */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameContent; + +/** Parameter key used to specify an ID for the specific piece of content being logged about. Could be an EAN, article identifier, etc., depending on the nature of the app. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameContentID; + +/** Parameter key used to specify a generic content type/family for the logged event, e.g. "music", "photo", "video". Options to use will vary based upon what the app is all about. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameContentType; + +/** Parameter key used to specify currency used with logged event. E.g. "USD", "EUR", "GBP". See ISO-4217 for specific values. One reference for these is . */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameCurrency; + +/** Parameter key used to specify a description appropriate to the event being logged. E.g., the name of the achievement unlocked in the `FBAppEventNameAchievementUnlocked` event. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameDescription; + +/** Parameter key used to specify the level achieved in a `FBAppEventNameAchieved` event. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameLevel; + +/** Parameter key used to specify the maximum rating available for the `FBAppEventNameRate` event. E.g., "5" or "10". */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameMaxRatingValue; + +/** Parameter key used to specify how many items are being processed for an `FBAppEventNameInitiatedCheckout` or `FBAppEventNamePurchased` event. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameNumItems; + +/** Parameter key used to specify whether payment info is available for the `FBAppEventNameInitiatedCheckout` event. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNamePaymentInfoAvailable; + +/** Parameter key used to specify method user has used to register for the app, e.g., "Facebook", "email", "Twitter", etc */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameRegistrationMethod; + +/** Parameter key used to specify the string provided by the user for a search operation. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameSearchString; + +/** Parameter key used to specify whether the activity being logged about was successful or not. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameSuccess; + +/** + @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logProductItem` method on `FBSDKAppEvents`. + */ + +/// typedef for FBSDKAppEventParameterProduct +typedef NSString *const FBSDKAppEventParameterProduct NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterProduct); + +/** Parameter key used to specify the product item's category. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCategory; + +/** Parameter key used to specify the product item's custom label 0. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel0; + +/** Parameter key used to specify the product item's custom label 1. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel1; + +/** Parameter key used to specify the product item's custom label 2. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel2; + +/** Parameter key used to specify the product item's custom label 3. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel3; + +/** Parameter key used to specify the product item's custom label 4. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel4; + +/** Parameter key used to specify the product item's AppLink app URL for iOS. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSUrl; + +/** Parameter key used to specify the product item's AppLink app ID for iOS App Store. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppStoreID; + +/** Parameter key used to specify the product item's AppLink app name for iOS. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppName; + +/** Parameter key used to specify the product item's AppLink app URL for iPhone. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneUrl; + +/** Parameter key used to specify the product item's AppLink app ID for iPhone App Store. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppStoreID; + +/** Parameter key used to specify the product item's AppLink app name for iPhone. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppName; + +/** Parameter key used to specify the product item's AppLink app URL for iPad. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadUrl; + +/** Parameter key used to specify the product item's AppLink app ID for iPad App Store. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppStoreID; + +/** Parameter key used to specify the product item's AppLink app name for iPad. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppName; + +/** Parameter key used to specify the product item's AppLink app URL for Android. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidUrl; + +/** Parameter key used to specify the product item's AppLink fully-qualified package name for intent generation. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidPackage; + +/** Parameter key used to specify the product item's AppLink app name for Android. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidAppName; + +/** Parameter key used to specify the product item's AppLink app URL for Windows Phone. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneUrl; + +/** Parameter key used to specify the product item's AppLink app ID, as a GUID, for App Store. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppID; + +/** Parameter key used to specify the product item's AppLink app name for Windows Phone. */ +FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppName; + +/* + @methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family + of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants. + */ + +/// typedef for FBSDKAppEventParameterValue +typedef NSString *const FBSDKAppEventParameterValue NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterValue); + +/** Yes-valued parameter value to be used with parameter keys that need a Yes/No value */ +FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes; + +/** No-valued parameter value to be used with parameter keys that need a Yes/No value */ +FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo; + +/** Parameter key used to specify the type of ad in an FBSDKAppEventNameAdImpression + * or FBSDKAppEventNameAdClick event. + * E.g. "banner", "interstitial", "rewarded_video", "native" */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameAdType; + +/** Parameter key used to specify the unique ID for all events within a subscription + * in an FBSDKAppEventNameSubscribe or FBSDKAppEventNameStartTrial event. */ +FOUNDATION_EXPORT FBSDKAppEventParameterName FBSDKAppEventParameterNameOrderID; + +/* + @methodgroup Predefined values to assign to user data store + */ + +/// typedef for FBSDKAppEventUserDataType +typedef NSString *const FBSDKAppEventUserDataType NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.UserDataType); + +/** Parameter key used to specify user's email. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventEmail; + +/** Parameter key used to specify user's first name. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventFirstName; + +/** Parameter key used to specify user's last name. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventLastName; + +/** Parameter key used to specify user's phone. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventPhone; + +/** Parameter key used to specify user's date of birth. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventDateOfBirth; + +/** Parameter key used to specify user's gender. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventGender; + +/** Parameter key used to specify user's city. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCity; + +/** Parameter key used to specify user's state. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventState; + +/** Parameter key used to specify user's zip. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventZip; + +/** Parameter key used to specify user's country. */ +FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCountry; + +/** + + + Client-side event logging for specialized application analytics available through Facebook App Insights + and for use with Facebook Ads conversion tracking and optimization. + + + + The `FBSDKAppEvents` static class has a few related roles: + + + Logging predefined and application-defined events to Facebook App Insights with a + numeric value to sum across a large number of events, and an optional set of key/value + parameters that define "segments" for this event (e.g., 'purchaserStatus' : 'frequent', or + 'gamerLevel' : 'intermediate') + + + Logging events to later be used for ads optimization around lifetime value. + + + Methods that control the way in which events are flushed out to the Facebook servers. + + Here are some important characteristics of the logging mechanism provided by `FBSDKAppEvents`: + + + Events are not sent immediately when logged. They're cached and flushed out to the Facebook servers + in a number of situations: + - when an event count threshold is passed (currently 100 logged events). + - when a time threshold is passed (currently 15 seconds). + - when an app has gone to background and is then brought back to the foreground. + + + Events will be accumulated when the app is in a disconnected state, and sent when the connection is + restored and one of the above 'flush' conditions are met. + + + The `FBSDKAppEvents` class is thread-safe in that events may be logged from any of the app's threads. + + + The developer can set the `flushBehavior` on `FBSDKAppEvents` to force the flushing of events to only + occur on an explicit call to the `flush` method. + + + The developer can turn on console debug output for event logging and flushing to the server by using + the `FBSDKLoggingBehaviorAppEvents` value in `[FBSettings setLoggingBehavior:]`. + + Some things to note when logging events: + + + There is a limit on the number of unique event names an app can use, on the order of 1000. + + There is a limit to the number of unique parameter names in the provided parameters that can + be used per event, on the order of 25. This is not just for an individual call, but for all + invocations for that eventName. + + Event names and parameter names (the keys in the NSDictionary) must be between 2 and 40 characters, and + must consist of alphanumeric characters, _, -, or spaces. + + The length of each parameter value can be no more than on the order of 100 characters. + + */ + +NS_SWIFT_NAME(AppEvents) +@interface FBSDKAppEvents : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/* + * Control over event batching/flushing + */ + +/** + + The current event flushing behavior specifying when events are sent back to Facebook servers. + */ +@property (class, nonatomic, assign) FBSDKAppEventsFlushBehavior flushBehavior; + +/** + Set the 'override' App ID for App Event logging. + + + + In some cases, apps want to use one Facebook App ID for login and social presence and another + for App Event logging. (An example is if multiple apps from the same company share an app ID for login, but + want distinct logging.) By default, this value is `nil`, and defers to the `FBSDKAppEventsOverrideAppIDBundleKey` + plist value. If that's not set, it defaults to `[FBSDKSettings appID]`. + + This should be set before any other calls are made to `FBSDKAppEvents`. Thus, you should set it in your application + delegate's `application:didFinishLaunchingWithOptions:` delegate. + */ +@property (class, nonatomic, copy, nullable) NSString *loggingOverrideAppID; + +/* + The custom user ID to associate with all app events. + + The userID is persisted until it is cleared by passing nil. + */ +@property (class, nonatomic, copy, nullable) NSString *userID; + +/* + * Basic event logging + */ + +/** + + Log an event with just an eventName. + + @param eventName The name of the event to record. Limitations on number of events and name length + are given in the `FBSDKAppEvents` documentation. + + */ ++ (void)logEvent:(FBSDKAppEventName)eventName; + +/** + + Log an event with an eventName and a numeric value to be aggregated with other events of this name. + + @param eventName The name of the event to record. Limitations on number of events and name length + are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants. + + @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report + the cumulative and average value of this amount. + */ ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum; + + +/** + + Log an event with an eventName and a set of key/value pairs in the parameters dictionary. + Parameter limitations are described above. + + @param eventName The name of the event to record. Limitations on number of events and name construction + are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants. + + @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must + be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of + parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names + are provided in `FBSDKAppEventParameterName*` constants. + */ ++ (void)logEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters; + +/** + + Log an event with an eventName, a numeric value to be aggregated with other events of this name, + and a set of key/value pairs in the parameters dictionary. + + @param eventName The name of the event to record. Limitations on number of events and name construction + are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants. + + @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report + the cumulative and average value of this amount. + + @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must + be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of + parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names + are provided in `FBSDKAppEventParameterName*` constants. + + */ ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + parameters:(NSDictionary *)parameters; + + +/** + + Log an event with an eventName, a numeric value to be aggregated with other events of this name, + and a set of key/value pairs in the parameters dictionary. Providing session lets the developer + target a particular . If nil is provided, then `[FBSession activeSession]` will be used. + + @param eventName The name of the event to record. Limitations on number of events and name construction + are given in the `FBSDKAppEvents` documentation. Common event names are provided in `FBAppEventName*` constants. + + @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report + the cumulative and average value of this amount. Note that this is an NSNumber, and a value of `nil` denotes + that this event doesn't have a value associated with it for summation. + + @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must + be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of + parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names + are provided in `FBSDKAppEventParameterName*` constants. + + @param accessToken The optional access token to log the event as. + */ ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(nullable NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + accessToken:(nullable FBSDKAccessToken *)accessToken; + +/* + * Purchase logging + */ + +/** + + Log a purchase of the specified amount, in the specified currency. + + @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency. This value + will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). + + @param currency Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for + specific values. One reference for these is . + + + This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set + to `FBSDKAppEventsFlushBehaviorExplicitOnly`. + + */ ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency; + +/** + + Log a purchase of the specified amount, in the specified currency, also providing a set of + additional characteristics describing the purchase. + + @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value + will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). + + @param currency Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for + specific values. One reference for these is . + + @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must + be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of + parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names + are provided in `FBSDKAppEventParameterName*` constants. + + + This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set + to `FBSDKAppEventsFlushBehaviorExplicitOnly`. + + */ ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency + parameters:(NSDictionary *)parameters; + +/** + + Log a purchase of the specified amount, in the specified currency, also providing a set of + additional characteristics describing the purchase, as well as an to log to. + + @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value + will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). + + @param currency Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for + specific values. One reference for these is . + + @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must + be NSString's, and the values are expected to be NSString or NSNumber. Limitations on the number of + parameters and name construction are given in the `FBSDKAppEvents` documentation. Commonly used parameter names + are provided in `FBSDKAppEventParameterName*` constants. + + @param accessToken The optional access token to log the event as. + + + This event immediately triggers a flush of the `FBSDKAppEvents` event queue, unless the `flushBehavior` is set + to `FBSDKAppEventsFlushBehaviorExplicitOnly`. + + */ ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency + parameters:(NSDictionary *)parameters + accessToken:(nullable FBSDKAccessToken *)accessToken; + + +/* + * Push Notifications Logging + */ + +/** + Log an app event that tracks that the application was open via Push Notification. + + @param payload Notification payload received via `UIApplicationDelegate`. + */ ++ (void)logPushNotificationOpen:(NSDictionary *)payload; + +/** + Log an app event that tracks that a custom action was taken from a push notification. + + @param payload Notification payload received via `UIApplicationDelegate`. + @param action Name of the action that was taken. + */ ++ (void)logPushNotificationOpen:(NSDictionary *)payload action:(NSString *)action; + +/** + Uploads product catalog product item as an app event + @param itemID Unique ID for the item. Can be a variant for a product. + Max size is 100. + @param availability If item is in stock. Accepted values are: + in stock - Item ships immediately + out of stock - No plan to restock + preorder - Available in future + available for order - Ships in 1-2 weeks + discontinued - Discontinued + @param condition Product condition: new, refurbished or used. + @param description Short text describing product. Max size is 5000. + @param imageLink Link to item image used in ad. + @param link Link to merchant's site where someone can buy the item. + @param title Title of item. + @param priceAmount Amount of purchase, in the currency specified by the 'currency' + parameter. This value will be rounded to the thousandths place + (e.g., 12.34567 becomes 12.346). + @param currency Currency used to specify the amount. + E.g. "USD", "EUR", "GBP". See ISO-4217 for specific values. One reference for these is + @param gtin Global Trade Item Number including UPC, EAN, JAN and ISBN + @param mpn Unique manufacture ID for product + @param brand Name of the brand + Note: Either gtin, mpn or brand is required. + @param parameters Optional fields for deep link specification. + */ ++ (void)logProductItem:(NSString *)itemID + availability:(FBSDKProductAvailability)availability + condition:(FBSDKProductCondition)condition + description:(NSString *)description + imageLink:(NSString *)imageLink + link:(NSString *)link + title:(NSString *)title + priceAmount:(double)priceAmount + currency:(NSString *)currency + gtin:(nullable NSString *)gtin + mpn:(nullable NSString *)mpn + brand:(nullable NSString *)brand + parameters:(nullable NSDictionary *)parameters; + +/** + + Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event. + This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless + one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file. + In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the + app delegates' `applicationDidBecomeActive:` method. + + This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to + track user acquisition and app install ads conversions. + + + + `activateApp` will not log an event on every app launch, since launches happen every time the app is backgrounded and then foregrounded. + "activated app" events will be logged when the app has not been active for more than 60 seconds. This method also causes a "deactivated app" + event to be logged when sessions are "completed", and these events are logged with the session length, with an indication of how much + time has elapsed between sessions, and with the number of background/foreground interruptions that session had. This data + is all visible in your app's App Events Insights. + */ ++ (void)activateApp; + +/* + * Push Notifications Registration and Uninstall Tracking + */ + +/** + Sets and sends device token to register the current application for push notifications. + + + + Sets and sends a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`. + + @param deviceToken Device token data. + */ ++ (void)setPushNotificationsDeviceToken:(NSData *)deviceToken; + +/** + Sets and sends device token string to register the current application for push notifications. + + + + Sets and sends a device token string + + @param deviceTokenString Device token string. + */ ++ (void)setPushNotificationsDeviceTokenString:(NSString *)deviceTokenString +NS_SWIFT_NAME(setPushNotificationsDeviceToken(_:)); + +/** + Explicitly kick off flushing of events to Facebook. This is an asynchronous method, but it does initiate an immediate + kick off. Server failures will be reported through the NotificationCenter with notification ID `FBSDKAppEventsLoggingResultNotification`. + */ ++ (void)flush; + +/** + Creates a request representing the Graph API call to retrieve a Custom Audience "third party ID" for the app's Facebook user. + Callers will send this ID back to their own servers, collect up a set to create a Facebook Custom Audience with, + and then use the resultant Custom Audience to target ads. + + The JSON in the request's response will include an "custom_audience_third_party_id" key/value pair, with the value being the ID retrieved. + This ID is an encrypted encoding of the Facebook user's ID and the invoking Facebook app ID. + Multiple calls with the same user will return different IDs, thus these IDs cannot be used to correlate behavior + across devices or applications, and are only meaningful when sent back to Facebook for creating Custom Audiences. + + The ID retrieved represents the Facebook user identified in the following way: if the specified access token is valid, + the ID will represent the user associated with that token; otherwise the ID will represent the user logged into the + native Facebook app on the device. If there is no native Facebook app, no one is logged into it, or the user has opted out + at the iOS level from ad tracking, then a `nil` ID will be returned. + + This method returns `nil` if either the user has opted-out (via iOS) from Ad Tracking, the app itself has limited event usage + via the `[FBSDKSettings limitEventAndDataUsage]` flag, or a specific Facebook user cannot be identified. + + @param accessToken The access token to use to establish the user's identity for users logged into Facebook through this app. + If `nil`, then the `[FBSDKAccessToken currentAccessToken]` is used. + */ ++ (nullable FBSDKGraphRequest *)requestForCustomAudienceThirdPartyIDWithAccessToken:(nullable FBSDKAccessToken *)accessToken; + +/* + Clears the custom user ID to associate with all app events. + */ ++ (void)clearUserID; + +/* + Sets custom user data to associate with all app events. All user data are hashed + and used to match Facebook user from this instance of an application. + + The user data will be persisted between application instances. + + @param email user's email + @param firstName user's first name + @param lastName user's last name + @param phone user's phone + @param dateOfBirth user's date of birth + @param gender user's gender + @param city user's city + @param state user's state + @param zip user's zip + @param country user's country + */ ++ (void)setUserEmail:(nullable NSString *)email + firstName:(nullable NSString *)firstName + lastName:(nullable NSString *)lastName + phone:(nullable NSString *)phone + dateOfBirth:(nullable NSString *)dateOfBirth + gender:(nullable NSString *)gender + city:(nullable NSString *)city + state:(nullable NSString *)state + zip:(nullable NSString *)zip + country:(nullable NSString *)country +NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:)); + +/* + Returns the set user data else nil +*/ ++ (nullable NSString *)getUserData; + +/* + Clears the current user data +*/ ++ (void)clearUserData; + +/* + Sets custom user data to associate with all app events. All user data are hashed + and used to match Facebook user from this instance of an application. + + The user data will be persisted between application instances. + + @param data data + @param type data type, e.g. FBSDKAppEventEmail, FBSDKAppEventPhone + */ ++ (void)setUserData:(nullable NSString *)data + forType:(FBSDKAppEventUserDataType)type; + +/* + Clears the current user data of certain type + */ ++ (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; + +/* + Sends a request to update the properties for the current user, set by `setUserID:` + + You must call `FBSDKAppEvents setUserID:` before making this call. + @param properties the custom user properties + @param handler the optional completion handler + */ ++ (void)updateUserProperties:(NSDictionary *)properties handler:(nullable FBSDKGraphRequestBlock)handler; + +#if !TARGET_OS_TV +/* + Intended to be used as part of a hybrid webapp. + If you call this method, the FB SDK will inject a new JavaScript object into your webview. + If the FB Pixel is used within the webview, and references the app ID of this app, + then it will detect the presence of this injected JavaScript object + and pass Pixel events back to the FB SDK for logging using the AppEvents framework. + + @param webView The webview to augment with the additional JavaScript behaviour + */ ++ (void)augmentHybridWKWebView:(WKWebView *)webView; +#endif + +/* + * Unity helper functions + */ + +/** + + Set if the Unity is already initialized + + @param isUnityInit whether Unity is initialized. + + */ ++ (void)setIsUnityInit:(BOOL)isUnityInit; + +/* + Send event binding to Unity + */ ++ (void)sendEventBindingsToUnity; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m new file mode 100644 index 0000000..d3d4e73 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m @@ -0,0 +1,1487 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAppEvents.h" +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKApplicationDelegate+Internal.h" +#import + +#import + +#import "FBSDKAccessToken.h" +#import "FBSDKAppEventsState.h" +#import "FBSDKAppEventsStateManager.h" +#import "FBSDKAppEventsUtility.h" +#import "FBSDKConstants.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKError.h" +#import "FBSDKEventDeactivationManager.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKRestrictiveDataFilterManager.h" +#import "FBSDKPaymentObserver.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfigurationManager.h" +#import "FBSDKSettings.h" +#import "FBSDKTimeSpentData.h" +#import "FBSDKUtility.h" +#import "FBSDKUserDataStore.h" + +#if !TARGET_OS_TV + +#import "FBSDKAddressFilterManager.h" +#import "FBSDKEventBindingManager.h" +#import "FBSDKHybridAppEventsScriptMessageHandler.h" +#import "FBSDKModelManager.h" + +#endif + +// +// Public event names +// + +// General purpose +FBSDKAppEventName FBSDKAppEventNameCompletedRegistration = @"fb_mobile_complete_registration"; +FBSDKAppEventName FBSDKAppEventNameViewedContent = @"fb_mobile_content_view"; +FBSDKAppEventName FBSDKAppEventNameSearched = @"fb_mobile_search"; +FBSDKAppEventName FBSDKAppEventNameRated = @"fb_mobile_rate"; +FBSDKAppEventName FBSDKAppEventNameCompletedTutorial = @"fb_mobile_tutorial_completion"; +FBSDKAppEventName FBSDKAppEventNameContact = @"Contact"; +FBSDKAppEventName FBSDKAppEventNameCustomizeProduct = @"CustomizeProduct"; +FBSDKAppEventName FBSDKAppEventNameDonate = @"Donate"; +FBSDKAppEventName FBSDKAppEventNameFindLocation = @"FindLocation"; +FBSDKAppEventName FBSDKAppEventNameSchedule = @"Schedule"; +FBSDKAppEventName FBSDKAppEventNameStartTrial = @"StartTrial"; +FBSDKAppEventName FBSDKAppEventNameSubmitApplication = @"SubmitApplication"; +FBSDKAppEventName FBSDKAppEventNameSubscribe = @"Subscribe"; +FBSDKAppEventName FBSDKAppEventNameSubscriptionHeartbeat = @"SubscriptionHeartbeat"; +FBSDKAppEventName FBSDKAppEventNameAdImpression = @"AdImpression"; +FBSDKAppEventName FBSDKAppEventNameAdClick = @"AdClick"; + +// Ecommerce related +FBSDKAppEventName FBSDKAppEventNameAddedToCart = @"fb_mobile_add_to_cart"; +FBSDKAppEventName FBSDKAppEventNameAddedToWishlist = @"fb_mobile_add_to_wishlist"; +FBSDKAppEventName FBSDKAppEventNameInitiatedCheckout = @"fb_mobile_initiated_checkout"; +FBSDKAppEventName FBSDKAppEventNameAddedPaymentInfo = @"fb_mobile_add_payment_info"; +FBSDKAppEventName FBSDKAppEventNameProductCatalogUpdate = @"fb_mobile_catalog_update"; +FBSDKAppEventName FBSDKAppEventNamePurchased = @"fb_mobile_purchase"; + +// Gaming related +FBSDKAppEventName FBSDKAppEventNameAchievedLevel = @"fb_mobile_level_achieved"; +FBSDKAppEventName FBSDKAppEventNameUnlockedAchievement = @"fb_mobile_achievement_unlocked"; +FBSDKAppEventName FBSDKAppEventNameSpentCredits = @"fb_mobile_spent_credits"; + +// +// Public event parameter names +// + +FBSDKAppEventParameterName FBSDKAppEventParameterNameCurrency = @"fb_currency"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameRegistrationMethod = @"fb_registration_method"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameContentType = @"fb_content_type"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameContent = @"fb_content"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameContentID = @"fb_content_id"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameSearchString = @"fb_search_string"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameSuccess = @"fb_success"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameMaxRatingValue = @"fb_max_rating_value"; +FBSDKAppEventParameterName FBSDKAppEventParameterNamePaymentInfoAvailable = @"fb_payment_info_available"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameNumItems = @"fb_num_items"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameLevel = @"fb_level"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameDescription = @"fb_description"; +FBSDKAppEventParameterName FBSDKAppEventParameterLaunchSource = @"fb_mobile_launch_source"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameAdType = @"ad_type"; +FBSDKAppEventParameterName FBSDKAppEventParameterNameOrderID = @"fb_order_id"; + +// +// Public event parameter names for DPA Catalog +// + +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel0 = @"fb_product_custom_label_0"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel1 = @"fb_product_custom_label_1"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel2 = @"fb_product_custom_label_2"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel3 = @"fb_product_custom_label_3"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel4 = @"fb_product_custom_label_4"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCategory = @"fb_product_category"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSUrl = @"fb_product_applink_ios_url"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppStoreID = @"fb_product_applink_ios_app_store_id"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppName = @"fb_product_applink_ios_app_name"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneUrl = @"fb_product_applink_iphone_url"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppStoreID = @"fb_product_applink_iphone_app_store_id"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppName = @"fb_product_applink_iphone_app_name"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadUrl = @"fb_product_applink_ipad_url"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppStoreID = @"fb_product_applink_ipad_app_store_id"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppName = @"fb_product_applink_ipad_app_name"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidUrl = @"fb_product_applink_android_url"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidPackage = @"fb_product_applink_android_package"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidAppName = @"fb_product_applink_android_app_name"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneUrl = @"fb_product_applink_windows_phone_url"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppID = @"fb_product_applink_windows_phone_app_id"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppName = @"fb_product_applink_windows_phone_app_name"; + +// +// Public event parameter values +// + +FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo = @"0"; +FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes = @"1"; + +// +// Public event user data types +// + +FBSDKAppEventUserDataType FBSDKAppEventEmail = @"em"; +FBSDKAppEventUserDataType FBSDKAppEventFirstName = @"fn"; +FBSDKAppEventUserDataType FBSDKAppEventLastName = @"ln"; +FBSDKAppEventUserDataType FBSDKAppEventPhone = @"ph"; +FBSDKAppEventUserDataType FBSDKAppEventDateOfBirth = @"dob"; +FBSDKAppEventUserDataType FBSDKAppEventGender = @"ge"; +FBSDKAppEventUserDataType FBSDKAppEventCity = @"ct"; +FBSDKAppEventUserDataType FBSDKAppEventState = @"st"; +FBSDKAppEventUserDataType FBSDKAppEventZip = @"zp"; +FBSDKAppEventUserDataType FBSDKAppEventCountry = @"country"; + +// +// Event names internal to this file +// +FBSDKAppEventName FBSDKAppEventNameLoginViewUsage = @"fb_login_view_usage"; +FBSDKAppEventName FBSDKAppEventNameShareSheetLaunch = @"fb_share_sheet_launch"; +FBSDKAppEventName FBSDKAppEventNameShareSheetDismiss = @"fb_share_sheet_dismiss"; +FBSDKAppEventName FBSDKAppEventNameShareTrayDidLaunch = @"fb_share_tray_did_launch"; +FBSDKAppEventName FBSDKAppEventNameShareTrayDidSelectActivity = @"fb_share_tray_did_select_activity"; +FBSDKAppEventName FBSDKAppEventNamePermissionsUILaunch = @"fb_permissions_ui_launch"; +FBSDKAppEventName FBSDKAppEventNamePermissionsUIDismiss = @"fb_permissions_ui_dismiss"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentShareDialog = @"fb_dialogs_present_share"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentShareDialogPhoto = @"fb_dialogs_present_share_photo"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentShareDialogOG = @"fb_dialogs_present_share_og"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentLikeDialogOG = @"fb_dialogs_present_like_og"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentMessageDialog = @"fb_dialogs_present_message"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentMessageDialogPhoto = @"fb_dialogs_present_message_photo"; +FBSDKAppEventName FBSDKAppEventNameFBDialogsPresentMessageDialogOG = @"fb_dialogs_present_message_og"; + +FBSDKAppEventName FBSDKAppEventNameFBDialogsNativeLoginDialogStart = @"fb_dialogs_native_login_dialog_start"; +NSString *const FBSDKAppEventsNativeLoginDialogStartTime = @"fb_native_login_dialog_start_time"; + +FBSDKAppEventName FBSDKAppEventNameFBDialogsNativeLoginDialogEnd = @"fb_dialogs_native_login_dialog_end"; +NSString *const FBSDKAppEventsNativeLoginDialogEndTime = @"fb_native_login_dialog_end_time"; + +FBSDKAppEventName FBSDKAppEventNameFBDialogsWebLoginCompleted = @"fb_dialogs_web_login_dialog_complete"; +NSString *const FBSDKAppEventsWebLoginE2E = @"fb_web_login_e2e"; + +FBSDKAppEventName FBSDKAppEventNameFBSessionAuthStart = @"fb_mobile_login_start"; +FBSDKAppEventName FBSDKAppEventNameFBSessionAuthEnd = @"fb_mobile_login_complete"; +FBSDKAppEventName FBSDKAppEventNameFBSessionAuthMethodStart = @"fb_mobile_login_method_start"; +FBSDKAppEventName FBSDKAppEventNameFBSessionAuthMethodEnd = @"fb_mobile_login_method_complete"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeButtonImpression = @"fb_like_button_impression"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLoginButtonImpression = @"fb_login_button_impression"; +FBSDKAppEventName FBSDKAppEventNameFBSDKSendButtonImpression = @"fb_send_button_impression"; +FBSDKAppEventName FBSDKAppEventNameFBSDKShareButtonImpression = @"fb_share_button_impression"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingButtonImpression = @"fb_live_streaming_button_impression"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKSmartLoginService = @"fb_smart_login_service"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeButtonDidTap = @"fb_like_button_did_tap"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLoginButtonDidTap = @"fb_login_button_did_tap"; +FBSDKAppEventName FBSDKAppEventNameFBSDKSendButtonDidTap = @"fb_send_button_did_tap"; +FBSDKAppEventName FBSDKAppEventNameFBSDKShareButtonDidTap = @"fb_share_button_did_tap"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingButtonDidTap = @"fb_live_streaming_button_did_tap"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlDidDisable = @"fb_like_control_did_disable"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlDidLike = @"fb_like_control_did_like"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlDidPresentDialog = @"fb_like_control_did_present_dialog"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlDidTap = @"fb_like_control_did_tap"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlDidUnlike = @"fb_like_control_did_unlike"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlError = @"fb_like_control_error"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlImpression = @"fb_like_control_impression"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLikeControlNetworkUnavailable = @"fb_like_control_network_unavailable"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKEventShareDialogResult = @"fb_dialog_share_result"; +FBSDKAppEventName FBSDKAppEventNameFBSDKEventMessengerShareDialogResult = @"fb_messenger_dialog_share_result"; +FBSDKAppEventName FBSDKAppEventNameFBSDKEventAppInviteShareDialogResult = @"fb_app_invite_dialog_share_result"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKEventShareDialogShow = @"fb_dialog_share_show"; +FBSDKAppEventName FBSDKAppEventNameFBSDKEventMessengerShareDialogShow = @"fb_messenger_dialog_share_show"; +FBSDKAppEventName FBSDKAppEventNameFBSDKEventAppInviteShareDialogShow = @"fb_app_invite_share_show"; + +FBSDKAppEventName FBSDKAppEventNameFBSessionFASLoginDialogResult = @"fb_mobile_login_fas_dialog_result"; + +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingStart = @"fb_sdk_live_streaming_start"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingStop = @"fb_sdk_live_streaming_stop"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingPause = @"fb_sdk_live_streaming_pause"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingResume = @"fb_sdk_live_streaming_resume"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingError = @"fb_sdk_live_streaming_error"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingUpdateStatus = @"fb_sdk_live_streaming_update_status"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingVideoID = @"fb_sdk_live_streaming_video_id"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingMic = @"fb_sdk_live_streaming_mic"; +FBSDKAppEventName FBSDKAppEventNameFBSDKLiveStreamingCamera = @"fb_sdk_live_streaming_camera"; + +// Event Parameters internal to this file +NSString *const FBSDKAppEventParameterDialogOutcome = @"fb_dialog_outcome"; +NSString *const FBSDKAppEventParameterDialogErrorMessage = @"fb_dialog_outcome_error_message"; +NSString *const FBSDKAppEventParameterDialogMode = @"fb_dialog_mode"; +NSString *const FBSDKAppEventParameterDialogShareContentType = @"fb_dialog_share_content_type"; +NSString *const FBSDKAppEventParameterDialogShareContentUUID = @"fb_dialog_share_content_uuid"; +NSString *const FBSDKAppEventParameterDialogShareContentPageID = @"fb_dialog_share_content_page_id"; +NSString *const FBSDKAppEventParameterShareTrayActivityName = @"fb_share_tray_activity"; +NSString *const FBSDKAppEventParameterShareTrayResult = @"fb_share_tray_result"; +NSString *const FBSDKAppEventParameterLogTime = @"_logTime"; +NSString *const FBSDKAppEventParameterEventName = @"_eventName"; +NSString *const FBSDKAppEventParameterImplicitlyLogged = @"_implicitlyLogged"; +NSString *const FBSDKAppEventParameterInBackground = @"_inBackground"; + +NSString *const FBSDKAppEventParameterLiveStreamingPrevStatus = @"live_streaming_prev_status"; +NSString *const FBSDKAppEventParameterLiveStreamingStatus = @"live_streaming_status"; +NSString *const FBSDKAppEventParameterLiveStreamingError = @"live_streaming_error"; +NSString *const FBSDKAppEventParameterLiveStreamingVideoID = @"live_streaming_video_id"; +NSString *const FBSDKAppEventParameterLiveStreamingMicEnabled = @"live_streaming_mic_enabled"; +NSString *const FBSDKAppEventParameterLiveStreamingCameraEnabled = @"live_streaming_camera_enabled"; + +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductItemID = @"fb_product_item_id"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAvailability = @"fb_product_availability"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCondition = @"fb_product_condition"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductDescription = @"fb_product_description"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductImageLink = @"fb_product_image_link"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductLink = @"fb_product_link"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductTitle = @"fb_product_title"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductGTIN = @"fb_product_gtin"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductMPN = @"fb_product_mpn"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductBrand = @"fb_product_brand"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductPriceAmount = @"fb_product_price_amount"; +FBSDKAppEventParameterProduct FBSDKAppEventParameterProductPriceCurrency = @"fb_product_price_currency"; + +// Event parameter values internal to this file +NSString *const FBSDKAppEventsDialogOutcomeValue_Completed = @"Completed"; +NSString *const FBSDKAppEventsDialogOutcomeValue_Cancelled = @"Cancelled"; +NSString *const FBSDKAppEventsDialogOutcomeValue_Failed = @"Failed"; + +NSString *const FBSDKAppEventsDialogShareModeAutomatic = @"Automatic"; +NSString *const FBSDKAppEventsDialogShareModeBrowser = @"Browser"; +NSString *const FBSDKAppEventsDialogShareModeNative = @"Native"; +NSString *const FBSDKAppEventsDialogShareModeShareSheet = @"ShareSheet"; +NSString *const FBSDKAppEventsDialogShareModeWeb = @"Web"; +NSString *const FBSDKAppEventsDialogShareModeFeedBrowser = @"FeedBrowser"; +NSString *const FBSDKAppEventsDialogShareModeFeedWeb = @"FeedWeb"; +NSString *const FBSDKAppEventsDialogShareModeUnknown = @"Unknown"; + +NSString *const FBSDKAppEventsDialogShareContentTypeOpenGraph = @"OpenGraph"; +NSString *const FBSDKAppEventsDialogShareContentTypeStatus = @"Status"; +NSString *const FBSDKAppEventsDialogShareContentTypePhoto = @"Photo"; +NSString *const FBSDKAppEventsDialogShareContentTypeVideo = @"Video"; +NSString *const FBSDKAppEventsDialogShareContentTypeCamera = @"Camera"; +NSString *const FBSDKAppEventsDialogShareContentTypeMessengerGenericTemplate = @"GenericTemplate"; +NSString *const FBSDKAppEventsDialogShareContentTypeMessengerMediaTemplate = @"MediaTemplate"; +NSString *const FBSDKAppEventsDialogShareContentTypeMessengerOpenGraphMusicTemplate = @"OpenGraphMusicTemplate"; +NSString *const FBSDKAppEventsDialogShareContentTypeUnknown = @"Unknown"; + +NSString *const FBSDKGateKeeperAppEventsKillSwitch = @"app_events_killswitch"; + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSNotificationName const FBSDKAppEventsLoggingResultNotification = @"com.facebook.sdk:FBSDKAppEventsLoggingResultNotification"; + +#else + +NSString *const FBSDKAppEventsLoggingResultNotification = @"com.facebook.sdk:FBSDKAppEventsLoggingResultNotification"; + +#endif + +NSString *const FBSDKAppEventsOverrideAppIDBundleKey = @"FacebookLoggingOverrideAppID"; + +// +// Push Notifications +// +// Activities Endpoint Parameter +static NSString *const FBSDKActivitesParameterPushDeviceToken = @"device_token"; +// Event Names +static FBSDKAppEventName FBSDKAppEventNamePushTokenObtained = @"fb_mobile_obtain_push_token"; +static FBSDKAppEventName FBSDKAppEventNamePushOpened = @"fb_mobile_push_opened"; +// Event Parameter +static NSString *const FBSDKAppEventParameterPushCampaign = @"fb_push_campaign"; +static NSString *const FBSDKAppEventParameterPushAction = @"fb_push_action"; +// Payload Keys +static NSString *const FBSDKAppEventsPushPayloadKey = @"fb_push_payload"; +static NSString *const FBSDKAppEventsPushPayloadCampaignKey = @"campaign"; + +// +// Augmentation of web browser constants +// +NSString *const FBSDKAppEventsWKWebViewMessagesPixelIDKey = @"pixelID"; +NSString *const FBSDKAppEventsWKWebViewMessagesHandlerKey = @"fbmqHandler"; +NSString *const FBSDKAppEventsWKWebViewMessagesEventKey = @"event"; +NSString *const FBSDKAppEventsWKWebViewMessagesParamsKey = @"params"; +NSString *const FBSDKAPPEventsWKWebViewMessagesProtocolKey = @"fbmq-0.1"; + +#define NUM_LOG_EVENTS_TO_TRY_TO_FLUSH_AFTER 100 +#define FLUSH_PERIOD_IN_SECONDS 15 +#define USER_ID_USER_DEFAULTS_KEY @"com.facebook.sdk.appevents.userid" + +#define FBUnityUtilityClassName "FBUnityUtility" +#define FBUnityUtilityUpdateBindingsSelector @"triggerUpdateBindings:" + +static NSString *g_overrideAppID = nil; + +@interface FBSDKAppEvents () + +@property (nonatomic, assign) FBSDKAppEventsFlushBehavior flushBehavior; +//for testing only. +@property (nonatomic, assign) BOOL disableTimer; + +@property (nonatomic, copy) NSString *pushNotificationsDeviceTokenString; + +@property (nonatomic, strong) dispatch_source_t flushTimer; + +@property (nonatomic, copy) NSString *userID; + +@end + +@implementation FBSDKAppEvents +{ + BOOL _explicitEventsLoggedYet; + FBSDKServerConfiguration *_serverConfiguration; + FBSDKAppEventsState *_appEventsState; +#if !TARGET_OS_TV + FBSDKEventBindingManager *_eventBindingManager; +#endif + BOOL _isUnityInit; +} + +#pragma mark - Object Lifecycle + ++ (void)initialize +{ + if (self == [FBSDKAppEvents class]) { + g_overrideAppID = [[[NSBundle mainBundle] objectForInfoDictionaryKey:FBSDKAppEventsOverrideAppIDBundleKey] copy]; + [FBSDKBasicUtility anonymousID]; + } +} + +- (instancetype)init +{ + self = [super init]; + if (self) { + _flushBehavior = FBSDKAppEventsFlushBehaviorAuto; + + __weak FBSDKAppEvents *weakSelf = self; + self.flushTimer = [FBSDKUtility startGCDTimerWithInterval:FLUSH_PERIOD_IN_SECONDS + block:^{ + [weakSelf flushTimerFired:nil]; + }]; + + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + _userID = [defaults stringForKey:USER_ID_USER_DEFAULTS_KEY]; + [self fetchServerConfiguration:nil]; + } + + return self; +} + +- (void)registerNotifications { + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(applicationMovingFromActiveStateOrTerminating) + name:UIApplicationWillResignActiveNotification + object:NULL]; + + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(applicationMovingFromActiveStateOrTerminating) + name:UIApplicationWillTerminateNotification + object:NULL]; + + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(applicationDidBecomeActive) + name:UIApplicationDidBecomeActiveNotification + object:NULL]; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; + [FBSDKUtility stopGCDTimer:self.flushTimer]; +} + +#pragma mark - Public Methods + ++ (void)logEvent:(FBSDKAppEventName)eventName +{ + [FBSDKAppEvents logEvent:eventName + parameters:@{}]; +} + ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum +{ + [FBSDKAppEvents logEvent:eventName + valueToSum:valueToSum + parameters:@{}]; +} + ++ (void)logEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters +{ + [FBSDKAppEvents logEvent:eventName + valueToSum:nil + parameters:parameters + accessToken:nil]; +} + ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + parameters:(NSDictionary *)parameters +{ + [FBSDKAppEvents logEvent:eventName + valueToSum:@(valueToSum) + parameters:parameters + accessToken:nil]; +} + ++ (void)logEvent:(FBSDKAppEventName)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + accessToken:(FBSDKAccessToken *)accessToken +{ + [[FBSDKAppEvents singleton] instanceLogEvent:eventName + valueToSum:valueToSum + parameters:parameters + isImplicitlyLogged:(BOOL)parameters[FBSDKAppEventParameterImplicitlyLogged] + accessToken:accessToken]; +} + ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency +{ + [FBSDKAppEvents logPurchase:purchaseAmount + currency:currency + parameters:@{}]; +} + ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency + parameters:(NSDictionary *)parameters +{ + [FBSDKAppEvents logPurchase:purchaseAmount + currency:currency + parameters:parameters + accessToken:nil]; +} + ++ (void)logPurchase:(double)purchaseAmount + currency:(NSString *)currency + parameters:(NSDictionary *)parameters + accessToken:(FBSDKAccessToken *)accessToken +{ + + // A purchase event is just a regular logged event with a given event name + // and treating the currency value as going into the parameters dictionary. + NSDictionary *newParameters; + if (!parameters) { + newParameters = @{ FBSDKAppEventParameterNameCurrency : currency }; + } else { + newParameters = [NSMutableDictionary dictionaryWithDictionary:parameters]; + [newParameters setValue:currency forKey:FBSDKAppEventParameterNameCurrency]; + } + + [FBSDKAppEvents logEvent:FBSDKAppEventNamePurchased + valueToSum:@(purchaseAmount) + parameters:newParameters + accessToken:accessToken]; + + // Unless the behavior is set to only allow explicit flushing, we go ahead and flush, since purchase events + // are relatively rare and relatively high value and worth getting across on wire right away. + if ([FBSDKAppEvents flushBehavior] != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonEagerlyFlushingEvent]; + } +} + +/* + * Push Notifications Logging + */ + ++ (void)logPushNotificationOpen:(NSDictionary *)payload +{ + [self logPushNotificationOpen:payload action:@""]; +} + ++ (void)logPushNotificationOpen:(NSDictionary *)payload action:(NSString *)action +{ + NSDictionary *facebookPayload = payload[FBSDKAppEventsPushPayloadKey]; + if (!facebookPayload) { + return; + } + NSString *campaign = facebookPayload[FBSDKAppEventsPushPayloadCampaignKey]; + if (campaign.length == 0) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"Malformed payload specified for logging a push notification open."]; + return; + } + + NSMutableDictionary *parameters = [NSMutableDictionary dictionaryWithObject:campaign forKey:FBSDKAppEventParameterPushCampaign]; + if (action && action.length > 0) { + parameters[FBSDKAppEventParameterPushAction] = action; + } + [self logEvent:FBSDKAppEventNamePushOpened parameters:parameters]; +} + +/* + * Uploads product catalog product item as an app event + */ ++ (void)logProductItem:(NSString *)itemID + availability:(FBSDKProductAvailability)availability + condition:(FBSDKProductCondition)condition + description:(NSString *)description + imageLink:(NSString *)imageLink + link:(NSString *)link + title:(NSString *)title + priceAmount:(double)priceAmount + currency:(NSString *)currency + gtin:(NSString *)gtin + mpn:(NSString *)mpn + brand:(NSString *)brand + parameters:(NSDictionary *)parameters +{ + if (itemID == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"itemID cannot be null"]; + return; + } else if (description == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"description cannot be null"]; + return; + } else if (imageLink == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"imageLink cannot be null"]; + return; + } else if (link == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"link cannot be null"]; + return; + } else if (title == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"title cannot be null"]; + return; + } else if (currency == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"currency cannot be null"]; + return; + } else if (gtin == nil && mpn == nil && brand == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"Either gtin, mpn or brand is required"]; + return; + } + + NSMutableDictionary *dict = [NSMutableDictionary dictionary]; + if (nil != parameters) { + [dict setValuesForKeysWithDictionary:parameters]; + } + + dict[FBSDKAppEventParameterProductItemID] = itemID; + + NSString *avail = nil; + switch (availability) { + case FBSDKProductAvailabilityInStock: + avail = @"IN_STOCK"; break; + case FBSDKProductAvailabilityOutOfStock: + avail = @"OUT_OF_STOCK"; break; + case FBSDKProductAvailabilityPreOrder: + avail = @"PREORDER"; break; + case FBSDKProductAvailabilityAvailableForOrder: + avail = @"AVALIABLE_FOR_ORDER"; break; + case FBSDKProductAvailabilityDiscontinued: + avail = @"DISCONTINUED"; break; + } + if (avail) { + dict[FBSDKAppEventParameterProductAvailability] = avail; + } + + NSString *cond = nil; + switch (condition) { + case FBSDKProductConditionNew: + cond = @"NEW"; break; + case FBSDKProductConditionRefurbished: + cond = @"REFURBISHED"; break; + case FBSDKProductConditionUsed: + cond = @"USED"; break; + } + if (cond) { + dict[FBSDKAppEventParameterProductCondition] = cond; + } + + dict[FBSDKAppEventParameterProductDescription] = description; + dict[FBSDKAppEventParameterProductImageLink] = imageLink; + dict[FBSDKAppEventParameterProductLink] = link; + dict[FBSDKAppEventParameterProductTitle] = title; + dict[FBSDKAppEventParameterProductPriceAmount] = [NSString stringWithFormat:@"%.3lf", priceAmount]; + dict[FBSDKAppEventParameterProductPriceCurrency] = currency; + if (gtin) { + dict[FBSDKAppEventParameterProductGTIN] = gtin; + } + if (mpn) { + dict[FBSDKAppEventParameterProductMPN] = mpn; + } + if (brand) { + dict[FBSDKAppEventParameterProductBrand] = brand; + } + + [FBSDKAppEvents logEvent:FBSDKAppEventNameProductCatalogUpdate + parameters:dict]; +} + ++ (void)activateApp +{ + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass(self)]; + + // Fetch app settings and register for transaction notifications only if app supports implicit purchase + // events + FBSDKAppEvents *instance = [FBSDKAppEvents singleton]; + [instance publishInstall]; + [instance fetchServerConfiguration:NULL]; + + // Restore time spent data, indicating that we're being called from "activateApp", which will, + // when appropriate, result in logging an "activated app" and "deactivated app" (for the + // previous session) App Event. + [FBSDKTimeSpentData restore:YES]; +} + ++ (void)setPushNotificationsDeviceToken:(NSData *)deviceToken +{ + NSString *deviceTokenString = [FBSDKInternalUtility hexadecimalStringFromData:deviceToken]; + [FBSDKAppEvents setPushNotificationsDeviceTokenString:deviceTokenString]; +} + ++ (void)setPushNotificationsDeviceTokenString:(NSString *)deviceTokenString +{ + if (deviceTokenString == nil) { + [FBSDKAppEvents singleton].pushNotificationsDeviceTokenString = nil; + return; + } + + if (![deviceTokenString isEqualToString:([FBSDKAppEvents singleton].pushNotificationsDeviceTokenString)]) { + [FBSDKAppEvents singleton].pushNotificationsDeviceTokenString = deviceTokenString; + + [FBSDKAppEvents logEvent:FBSDKAppEventNamePushTokenObtained]; + + // Unless the behavior is set to only allow explicit flushing, we go ahead and flush the event + if ([FBSDKAppEvents flushBehavior] != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonEagerlyFlushingEvent]; + } + } +} + ++ (FBSDKAppEventsFlushBehavior)flushBehavior +{ + return [FBSDKAppEvents singleton].flushBehavior; +} + ++ (void)setFlushBehavior:(FBSDKAppEventsFlushBehavior)flushBehavior +{ + [FBSDKAppEvents singleton].flushBehavior = flushBehavior; +} + ++ (NSString *)loggingOverrideAppID +{ + return g_overrideAppID; +} + ++ (void)setLoggingOverrideAppID:(NSString *)appID +{ + if (![g_overrideAppID isEqualToString:appID]) { + FBSDKConditionalLog(![FBSDKAppEvents singleton]->_explicitEventsLoggedYet, + FBSDKLoggingBehaviorDeveloperErrors, + @"[FBSDKAppEvents setLoggingOverrideAppID:] should only be called prior to any events being logged."); + g_overrideAppID = appID; + } +} + ++ (void)flush +{ + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonExplicit]; +} + ++ (void)setUserID:(NSString *)userID +{ + if ([[[self class] singleton].userID isEqualToString:userID]) { + return; + } + [[self class] singleton].userID = userID; + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + [defaults setObject:userID forKey:USER_ID_USER_DEFAULTS_KEY]; + [defaults synchronize]; +} + ++ (void)clearUserID +{ + [self setUserID:nil]; +} + ++ (NSString *)userID +{ + return [[self class] singleton].userID; +} + ++ (void)setUserEmail:(nullable NSString *)email + firstName:(nullable NSString *)firstName + lastName:(nullable NSString *)lastName + phone:(nullable NSString *)phone + dateOfBirth:(nullable NSString *)dateOfBirth + gender:(nullable NSString *)gender + city:(nullable NSString *)city + state:(nullable NSString *)state + zip:(nullable NSString *)zip + country:(nullable NSString *)country +{ + [FBSDKUserDataStore setAndHashUserEmail:email + firstName:firstName + lastName:lastName + phone:phone + dateOfBirth:dateOfBirth + gender:gender + city:city + state:state + zip:zip + country:country]; +} + ++ (NSString*)getUserData +{ + return [FBSDKUserDataStore getHashedData]; +} + ++ (void)clearUserData +{ + [FBSDKUserDataStore setAndHashUserEmail:nil + firstName:nil + lastName:nil + phone:nil + dateOfBirth:nil + gender:nil + city:nil + state:nil + zip:nil + country:nil]; +} + ++ (void)setUserData:(nullable NSString *)data + forType:(FBSDKAppEventUserDataType)type +{ + [FBSDKUserDataStore setAndHashData:data forType:type]; +} + ++ (void)clearUserDataForType:(FBSDKAppEventUserDataType)type +{ + [FBSDKUserDataStore clearDataForType:type]; +} + + ++ (void)updateUserProperties:(NSDictionary *)properties handler:(FBSDKGraphRequestBlock)handler +{ + NSString *userID = [[self class] userID]; + + if (userID.length == 0) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"Missing [FBSDKAppEvents userID] for [FBSDKAppEvents updateUserProperties:]"]; + NSError *error = [FBSDKError requiredArgumentErrorWithName:@"userID" message:@"Missing [FBSDKAppEvents userID] for [FBSDKAppEvents updateUserProperties:]"]; + if (handler) { + handler(nil, nil, error); + } + return; + } + NSMutableDictionary *dataDictionary = [NSMutableDictionary dictionaryWithCapacity:3]; + [FBSDKBasicUtility dictionary:dataDictionary setObject:[FBSDKAppEvents userID] forKey:@"user_unique_id"]; + [FBSDKBasicUtility dictionary:dataDictionary setObject:[FBSDKAppEventsUtility advertiserID] forKey:@"advertiser_id"]; + [FBSDKBasicUtility dictionary:dataDictionary setObject:properties forKey:@"custom_data"]; + + NSError *error; + __block NSError *invalidObjectError; + NSString *dataJSONString = [FBSDKBasicUtility JSONStringForObject:@[dataDictionary] error:&error invalidObjectHandler:^id(id object, BOOL *stop) { + *stop = YES; + invalidObjectError = [FBSDKError unknownErrorWithMessage:@"The values in the properties dictionary must be NSStrings or NSNumbers"]; + return nil; + }]; + if (!error) { + error = invalidObjectError; + } + if (error) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"Failed to serialize properties for [FBSDKAppEvents updateUserProperties:]"]; + if (handler) { + handler(nil, nil, error); + } + return; + } + NSDictionary *params = @{ @"data" : dataJSONString }; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/user_properties", [[self singleton] appID]] + parameters:params + tokenString:[FBSDKAccessToken currentAccessToken].tokenString + HTTPMethod:FBSDKHTTPMethodPOST + flags:FBSDKGraphRequestFlagDisableErrorRecovery | + FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | + FBSDKGraphRequestFlagSkipClientToken + ]; + [request startWithCompletionHandler:handler]; +} + +#if !TARGET_OS_TV ++ (void)augmentHybridWKWebView:(WKWebView *)webView { + // Ensure we can instantiate WebKit before trying this + Class WKWebViewClass = fbsdkdfl_WKWebViewClass(); + if (WKWebViewClass != nil && [webView isKindOfClass:WKWebViewClass]) { + Class WKUserScriptClass = fbsdkdfl_WKUserScriptClass(); + if (WKUserScriptClass != nil) { + WKUserContentController *controller = webView.configuration.userContentController; + FBSDKHybridAppEventsScriptMessageHandler *scriptHandler = [[FBSDKHybridAppEventsScriptMessageHandler alloc] init]; + [controller addScriptMessageHandler:scriptHandler name:FBSDKAppEventsWKWebViewMessagesHandlerKey]; + + NSString *js = [NSString stringWithFormat:@"window.fbmq_%@={'sendEvent': function(pixel_id,event_name,custom_data){var msg={\"%@\":pixel_id, \"%@\":event_name,\"%@\":custom_data};window.webkit.messageHandlers[\"%@\"].postMessage(msg);}, 'getProtocol':function(){return \"%@\";}}", + [[self singleton] appID], + FBSDKAppEventsWKWebViewMessagesPixelIDKey, + FBSDKAppEventsWKWebViewMessagesEventKey, + FBSDKAppEventsWKWebViewMessagesParamsKey, + FBSDKAppEventsWKWebViewMessagesHandlerKey, + FBSDKAPPEventsWKWebViewMessagesProtocolKey + ]; + + [controller addUserScript:[[WKUserScriptClass alloc] initWithSource:js injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:NO]]; + } + } + else { + [FBSDKAppEventsUtility logAndNotify:@"You must call augmentHybridWKWebView with WebKit linked to your project and a WKWebView instance"]; + } +} +#endif + ++ (void)setIsUnityInit:(BOOL)isUnityInit +{ + [FBSDKAppEvents singleton]->_isUnityInit = isUnityInit; +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" ++ (void)sendEventBindingsToUnity +{ + // Send event bindings to Unity only Unity is initialized + if ([FBSDKAppEvents singleton]->_isUnityInit + && [FBSDKAppEvents singleton]->_serverConfiguration + && [NSJSONSerialization isValidJSONObject:[FBSDKAppEvents singleton]->_serverConfiguration.eventBindings] + ) { + NSData *jsonData = [NSJSONSerialization dataWithJSONObject:[FBSDKAppEvents singleton]->_serverConfiguration.eventBindings ?: @"" + options:0 + error:nil]; + NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; + Class classFBUnityUtility = objc_lookUpClass(FBUnityUtilityClassName); + SEL updateBindingSelector = NSSelectorFromString(FBUnityUtilityUpdateBindingsSelector); + if ([classFBUnityUtility respondsToSelector:updateBindingSelector]) { + [classFBUnityUtility performSelector:updateBindingSelector withObject:jsonString]; + } + } +} +#pragma clang diagnostic pop + +#pragma mark - Internal Methods + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + isImplicitlyLogged:(BOOL)isImplicitlyLogged; +{ + [FBSDKAppEvents logInternalEvent:eventName + parameters:@{} + isImplicitlyLogged:isImplicitlyLogged]; +} + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + isImplicitlyLogged:(BOOL)isImplicitlyLogged +{ + [FBSDKAppEvents logInternalEvent:eventName + valueToSum:valueToSum + parameters:@{} + isImplicitlyLogged:isImplicitlyLogged]; +} + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged +{ + [FBSDKAppEvents logInternalEvent:eventName + valueToSum:nil + parameters:parameters + isImplicitlyLogged:isImplicitlyLogged + accessToken:nil]; +} + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged + accessToken:(FBSDKAccessToken *)accessToken +{ + [FBSDKAppEvents logInternalEvent:eventName + valueToSum:nil + parameters:parameters + isImplicitlyLogged:isImplicitlyLogged + accessToken:accessToken]; +} + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged +{ + [FBSDKAppEvents logInternalEvent:eventName + valueToSum:@(valueToSum) + parameters:parameters + isImplicitlyLogged:isImplicitlyLogged + accessToken:nil]; +} + ++ (void)logInternalEvent:(NSString *)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged + accessToken:(FBSDKAccessToken *)accessToken +{ + if ([FBSDKSettings isAutoLogAppEventsEnabled]) { + [[FBSDKAppEvents singleton] instanceLogEvent:eventName + valueToSum:valueToSum + parameters:parameters + isImplicitlyLogged:isImplicitlyLogged + accessToken:accessToken]; + } +} + ++ (void)logImplicitEvent:(NSString *)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + accessToken:(FBSDKAccessToken *)accessToken +{ + [[FBSDKAppEvents singleton] instanceLogEvent:eventName + valueToSum:valueToSum + parameters:parameters + isImplicitlyLogged:YES + accessToken:accessToken]; +} + + +#ifdef DEBUG +static dispatch_once_t *onceTokenPointer; ++ (void)resetSingleton +{ + if (onceTokenPointer) { + *onceTokenPointer = 0; + } +} +#endif + ++ (FBSDKAppEvents *)singleton +{ + static dispatch_once_t onceToken; +#ifdef DEBUG + onceTokenPointer = &onceToken; +#endif + static FBSDKAppEvents *shared = nil; + dispatch_once(&onceToken, ^{ + shared = [[self alloc] init]; + }); + return shared; +} + +- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason +{ + // Always flush asynchronously, even on main thread, for two reasons: + // - most consistent code path for all threads. + // - allow locks being held by caller to be released prior to actual flushing work being done. + @synchronized (self) { + if (!_appEventsState) { + return; + } + FBSDKAppEventsState *copy = [_appEventsState copy]; + _appEventsState = [[FBSDKAppEventsState alloc] initWithToken:copy.tokenString + appID:copy.appID]; + dispatch_async(dispatch_get_main_queue(), ^{ + [self flushOnMainQueue:copy forReason:flushReason]; + }); + } +} + +#pragma mark - Private Methods +- (NSString *)appID +{ + return [FBSDKAppEvents loggingOverrideAppID] ?: [FBSDKSettings appID]; +} + +- (void)publishInstall +{ + NSString *appID = [self appID]; + if (appID.length == 0) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"Missing [FBSDKAppEvents appID] for [FBSDKAppEvents publishInstall:]"]; + return; + } + NSString *lastAttributionPingString = [NSString stringWithFormat:@"com.facebook.sdk:lastAttributionPing%@", appID]; + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + if ([defaults objectForKey:lastAttributionPingString]) { + return; + } + [self fetchServerConfiguration:^{ + NSDictionary *params = [FBSDKAppEventsUtility activityParametersDictionaryForEvent:@"MOBILE_APP_INSTALL" + implicitEventsOnly:NO + shouldAccessAdvertisingID:self->_serverConfiguration.isAdvertisingIDEnabled]; + NSString *path = [NSString stringWithFormat:@"%@/activities", appID]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:path + parameters:params + tokenString:nil + HTTPMethod:FBSDKHTTPMethodPOST + flags:FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | FBSDKGraphRequestFlagDisableErrorRecovery]; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (!error) { + [defaults setObject:[NSDate date] forKey:lastAttributionPingString]; + NSString *lastInstallResponseKey = [NSString stringWithFormat:@"com.facebook.sdk:lastInstallResponse%@", appID]; + [defaults setObject:result forKey:lastInstallResponseKey]; + [defaults synchronize]; + } + }]; + }]; +} + +#if !TARGET_OS_TV +- (void)enableCodelessEvents { + if (_serverConfiguration.isCodelessEventsEnabled) { + [FBSDKCodelessIndexer enable]; + + if (!_eventBindingManager) { + _eventBindingManager = [[FBSDKEventBindingManager alloc] init]; + } + + if ([FBSDKInternalUtility isUnity]) { + [FBSDKAppEvents sendEventBindingsToUnity]; + } else { + [_eventBindingManager updateBindings:[FBSDKEventBindingManager + parseArray:_serverConfiguration.eventBindings]]; + } + } +} +#endif + +// app events can use a server configuration up to 24 hours old to minimize network traffic. +- (void)fetchServerConfiguration:(FBSDKCodeBlock)callback +{ + [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:^(FBSDKServerConfiguration *serverConfiguration, NSError *error) { + self->_serverConfiguration = serverConfiguration; + + if (self->_serverConfiguration.implicitPurchaseLoggingEnabled && [FBSDKSettings isAutoLogAppEventsEnabled]) { + [FBSDKPaymentObserver startObservingTransactions]; + } else { + [FBSDKPaymentObserver stopObservingTransactions]; + } +#if !TARGET_OS_TV + [FBSDKFeatureManager checkFeature:FBSDKFeatureCodelessEvents completionBlock:^(BOOL enabled) { + if (enabled) { + [self enableCodelessEvents]; + } + }]; + [FBSDKFeatureManager checkFeature:FBSDKFeatureAAM completionBlock:^(BOOL enabled) { + if (enabled) { + // Enable AAM + [FBSDKMetadataIndexer enable]; + } + }]; +#endif + +#if !defined BUCK && !TARGET_OS_TV + [FBSDKFeatureManager checkFeature:FBSDKFeaturePrivacyProtection completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKModelManager enable]; + } + }]; +#endif + if (callback) { + callback(); + } + }]; +} + +- (void)instanceLogEvent:(FBSDKAppEventName)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged + accessToken:(FBSDKAccessToken *)accessToken +{ + // Kill events if kill-switch is enabled + if ([FBSDKGateKeeperManager boolForKey:FBSDKGateKeeperAppEventsKillSwitch + defaultValue:NO]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKAppEvents: KillSwitch is enabled and fail to log app event: %@", + eventName]; + return; + } + + if (isImplicitlyLogged && _serverConfiguration && !_serverConfiguration.isImplicitLoggingSupported) { + return; + } + + if (!isImplicitlyLogged && !_explicitEventsLoggedYet) { + _explicitEventsLoggedYet = YES; + } + __block BOOL failed = ![FBSDKAppEventsUtility validateIdentifier:eventName]; + + // Make sure parameter dictionary is well formed. Log and exit if not. + [parameters enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) { + if (![key isKindOfClass:[NSString class]]) { + [FBSDKAppEventsUtility logAndNotify:[NSString stringWithFormat:@"The keys in the parameters must be NSStrings, '%@' is not.", key]]; + failed = YES; + } + if (![FBSDKAppEventsUtility validateIdentifier:key]) { + failed = YES; + } + if (![obj isKindOfClass:[NSString class]] && ![obj isKindOfClass:[NSNumber class]]) { + [FBSDKAppEventsUtility logAndNotify:[NSString stringWithFormat:@"The values in the parameters dictionary must be NSStrings or NSNumbers, '%@' is not.", obj]]; + failed = YES; + } + } + ]; + + if (failed) { + return; + } + // Filter out deactivated params + parameters = [FBSDKEventDeactivationManager processParameters:parameters eventName:eventName]; + +#if !defined BUCK && !TARGET_OS_TV + // Filter out address data + parameters = [FBSDKAddressFilterManager processParameters:parameters]; +#endif + // Filter out restrictive keys + parameters = [FBSDKRestrictiveDataFilterManager processParameters:parameters + eventName:eventName]; + + NSMutableDictionary *eventDictionary = [NSMutableDictionary dictionaryWithDictionary:parameters]; + eventDictionary[FBSDKAppEventParameterEventName] = eventName; + if (!eventDictionary[FBSDKAppEventParameterLogTime]) { + eventDictionary[FBSDKAppEventParameterLogTime] = @([FBSDKAppEventsUtility unixTimeNow]); + } + [FBSDKBasicUtility dictionary:eventDictionary setObject:valueToSum forKey:@"_valueToSum"]; + if (isImplicitlyLogged) { + eventDictionary[FBSDKAppEventParameterImplicitlyLogged] = @"1"; + } + + NSString *currentViewControllerName; + UIApplicationState applicationState; + if ([NSThread isMainThread]) { + // We only collect the view controller when on the main thread, as the behavior off + // the main thread is unpredictable. Besides, UI state for off-main-thread computations + // isn't really relevant anyhow. + UIViewController *vc = [UIApplication sharedApplication].keyWindow.rootViewController; + vc = vc.presentedViewController ?: vc; + if (vc) { + currentViewControllerName = [[vc class] description]; + } else { + currentViewControllerName = @"no_ui"; + } + applicationState = [UIApplication sharedApplication].applicationState; + } else { + currentViewControllerName = @"off_thread"; + applicationState = [FBSDKApplicationDelegate applicationState]; + } + eventDictionary[@"_ui"] = currentViewControllerName; + + if (applicationState == UIApplicationStateBackground) { + eventDictionary[FBSDKAppEventParameterInBackground] = @"1"; + } + + NSString *tokenString = [FBSDKAppEventsUtility tokenStringToUseFor:accessToken]; + NSString *appID = [self appID]; + + @synchronized (self) { + if (!_appEventsState) { + _appEventsState = [[FBSDKAppEventsState alloc] initWithToken:tokenString appID:appID]; + } else if (![_appEventsState isCompatibleWithTokenString:tokenString appID:appID]) { + if (self.flushBehavior == FBSDKAppEventsFlushBehaviorExplicitOnly) { + [FBSDKAppEventsStateManager persistAppEventsData:_appEventsState]; + } else { + [self flushForReason:FBSDKAppEventsFlushReasonSessionChange]; + } + _appEventsState = [[FBSDKAppEventsState alloc] initWithToken:tokenString appID:appID]; + } + + [_appEventsState addEvent:eventDictionary isImplicit:isImplicitlyLogged]; + if (!isImplicitlyLogged) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKAppEvents: Recording event @ %ld: %@", + [FBSDKAppEventsUtility unixTimeNow], + eventDictionary]; + } + + [self checkPersistedEvents]; + + if (_appEventsState.events.count > NUM_LOG_EVENTS_TO_TRY_TO_FLUSH_AFTER && + self.flushBehavior != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [self flushForReason:FBSDKAppEventsFlushReasonEventThreshold]; + } + } +} + +// this fetches persisted event states. +// for those matching the currently tracked events, add it. +// otherwise, either flush (if not explicitonly behavior) or persist them back. +- (void)checkPersistedEvents +{ + NSArray *existingEventsStates = [FBSDKAppEventsStateManager retrievePersistedAppEventsStates]; + if (existingEventsStates.count == 0) { + return; + } + FBSDKAppEventsState *matchingEventsPreviouslySaved = nil; + // reduce lock time by creating a new FBSDKAppEventsState to collect matching persisted events. + @synchronized(self) { + if (_appEventsState) { + matchingEventsPreviouslySaved = [[FBSDKAppEventsState alloc] initWithToken:_appEventsState.tokenString + appID:_appEventsState.appID]; + } + } + for (FBSDKAppEventsState *saved in existingEventsStates) { + if ([saved isCompatibleWithAppEventsState:matchingEventsPreviouslySaved]) { + [matchingEventsPreviouslySaved addEventsFromAppEventState:saved]; + } else { + if (self.flushBehavior == FBSDKAppEventsFlushBehaviorExplicitOnly) { + [FBSDKAppEventsStateManager persistAppEventsData:saved]; + } else { + dispatch_async(dispatch_get_main_queue(), ^{ + [self flushOnMainQueue:saved forReason:FBSDKAppEventsFlushReasonPersistedEvents]; + }); + } + } + } + if (matchingEventsPreviouslySaved.events.count > 0) { + @synchronized(self) { + if ([_appEventsState isCompatibleWithAppEventsState:matchingEventsPreviouslySaved]) { + [_appEventsState addEventsFromAppEventState:matchingEventsPreviouslySaved]; + } + } + } +} + +- (void)flushOnMainQueue:(FBSDKAppEventsState *)appEventsState + forReason:(FBSDKAppEventsFlushReason)reason +{ + + if (appEventsState.events.count == 0) { + return; + } + + if (appEventsState.appID.length == 0) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"Missing [FBSDKAppEvents appEventsState.appID] for [FBSDKAppEvents flushOnMainQueue:]"]; + return; + } + + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + + [self fetchServerConfiguration:^(void) { + NSString *receipt_data = appEventsState.extractReceiptData; + NSString *encodedEvents = [appEventsState JSONStringForEvents:self->_serverConfiguration.implicitLoggingEnabled]; + if (!encodedEvents) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + logEntry:@"FBSDKAppEvents: Flushing skipped - no events after removing implicitly logged ones.\n"]; + return; + } + NSMutableDictionary *postParameters = [FBSDKAppEventsUtility + activityParametersDictionaryForEvent:@"CUSTOM_APP_EVENTS" + implicitEventsOnly:appEventsState.areAllEventsImplicit + shouldAccessAdvertisingID:self->_serverConfiguration.advertisingIDEnabled]; + NSInteger length = receipt_data.length; + if (length > 0) { + postParameters[@"receipt_data"] = receipt_data; + } + + postParameters[@"custom_events"] = encodedEvents; + if (appEventsState.numSkipped > 0) { + postParameters[@"num_skipped_events"] = [NSString stringWithFormat:@"%lu", (unsigned long)appEventsState.numSkipped]; + } + if (self.pushNotificationsDeviceTokenString) { + postParameters[FBSDKActivitesParameterPushDeviceToken] = self.pushNotificationsDeviceTokenString; + } + + NSString *loggingEntry = nil; + if ([FBSDKSettings.loggingBehaviors containsObject:FBSDKLoggingBehaviorAppEvents]) { + NSData *prettyJSONData = [NSJSONSerialization dataWithJSONObject:appEventsState.events + options:NSJSONWritingPrettyPrinted + error:NULL]; + NSString *prettyPrintedJsonEvents = [[NSString alloc] initWithData:prettyJSONData + encoding:NSUTF8StringEncoding]; + // Remove this param -- just an encoding of the events which we pretty print later. + NSMutableDictionary *paramsForPrinting = [postParameters mutableCopy]; + [paramsForPrinting removeObjectForKey:@"custom_events_file"]; + + loggingEntry = [NSString stringWithFormat:@"FBSDKAppEvents: Flushed @ %ld, %lu events due to '%@' - %@\nEvents: %@", + [FBSDKAppEventsUtility unixTimeNow], + (unsigned long)appEventsState.events.count, + [FBSDKAppEventsUtility flushReasonToString:reason], + paramsForPrinting, + prettyPrintedJsonEvents]; + } + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/activities", appEventsState.appID] + parameters:postParameters + tokenString:appEventsState.tokenString + HTTPMethod:FBSDKHTTPMethodPOST + flags:FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | FBSDKGraphRequestFlagDisableErrorRecovery]; + + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + [self handleActivitiesPostCompletion:error + loggingEntry:loggingEntry + appEventsState:(FBSDKAppEventsState *)appEventsState]; + }]; + + }]; +} + +- (void)handleActivitiesPostCompletion:(NSError *)error + loggingEntry:(NSString *)loggingEntry + appEventsState:(FBSDKAppEventsState *)appEventsState +{ + typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushResult) { + FlushResultSuccess, + FlushResultServerError, + FlushResultNoConnectivity + }; + + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + + FBSDKAppEventsFlushResult flushResult = FlushResultSuccess; + if (error) { + NSInteger errorCode = [error.userInfo[FBSDKGraphRequestErrorHTTPStatusCodeKey] integerValue]; + + // We interpret a 400 coming back from FBRequestConnection as a server error due to improper data being + // sent down. Otherwise we assume no connectivity, or another condition where we could treat it as no connectivity. + // Adding 404 as having wrong/missing appID results in 404 and that is not a connectivity issue + flushResult = (errorCode == 400 || errorCode == 404) ? FlushResultServerError : FlushResultNoConnectivity; + } + + if (flushResult == FlushResultServerError) { + // Only log events that developer can do something with (i.e., if parameters are incorrect). + // as opposed to cases where the token is bad. + if ([error.userInfo[FBSDKGraphRequestErrorKey] unsignedIntegerValue] == FBSDKGraphRequestErrorOther) { + NSString *message = [NSString stringWithFormat:@"Failed to send AppEvents: %@", error]; + [FBSDKAppEventsUtility logAndNotify:message allowLogAsDeveloperError:!appEventsState.areAllEventsImplicit]; + } + } else if (flushResult == FlushResultNoConnectivity) { + @synchronized(self) { + if ([appEventsState isCompatibleWithAppEventsState:_appEventsState]) { + [_appEventsState addEventsFromAppEventState:appEventsState]; + } else { + // flush failed due to connectivity. Persist to be tried again later. + [FBSDKAppEventsStateManager persistAppEventsData:appEventsState]; + } + } + } + + NSString *resultString = @""; + switch (flushResult) { + case FlushResultSuccess: + resultString = @"Success"; + break; + + case FlushResultNoConnectivity: + resultString = @"No Connectivity"; + break; + + case FlushResultServerError: + resultString = [NSString stringWithFormat:@"Server Error - %@", error.description]; + break; + } + + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"%@\nFlush Result : %@", loggingEntry, resultString]; +} + +- (void)flushTimerFired:(id)arg +{ + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + if (self.flushBehavior != FBSDKAppEventsFlushBehaviorExplicitOnly && !self.disableTimer) { + [self flushForReason:FBSDKAppEventsFlushReasonTimer]; + } +} + +- (void)applicationDidBecomeActive +{ + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + + [self checkPersistedEvents]; + + // Restore time spent data, indicating that we're not being called from "activateApp". + [FBSDKTimeSpentData restore:NO]; +} + +- (void)applicationMovingFromActiveStateOrTerminating +{ + // When moving from active state, we don't have time to wait for the result of a flush, so + // just persist events to storage, and we'll process them at the next activation. + FBSDKAppEventsState *copy = nil; + @synchronized (self) { + copy = [_appEventsState copy]; + _appEventsState = nil; + } + if (copy) { + [FBSDKAppEventsStateManager persistAppEventsData:copy]; + } + [FBSDKTimeSpentData suspend]; +} + +#pragma mark - Custom Audience + ++ (FBSDKGraphRequest *)requestForCustomAudienceThirdPartyIDWithAccessToken:(FBSDKAccessToken *)accessToken +{ + accessToken = accessToken ?: [FBSDKAccessToken currentAccessToken]; + // Rules for how we use the attribution ID / advertiser ID for an 'custom_audience_third_party_id' Graph API request + // 1) if the OS tells us that the user has Limited Ad Tracking, then just don't send, and return a nil in the token. + // 2) if the app has set 'limitEventAndDataUsage', this effectively implies that app-initiated ad targeting shouldn't happen, + // so use that data here to return nil as well. + // 3) if we have a user session token, then no need to send attribution ID / advertiser ID back as the udid parameter + // 4) otherwise, send back the udid parameter. + + if ([FBSDKAppEventsUtility advertisingTrackingStatus] == FBSDKAdvertisingTrackingDisallowed || FBSDKSettings.shouldLimitEventAndDataUsage) { + return nil; + } + + NSString *tokenString = [FBSDKAppEventsUtility tokenStringToUseFor:accessToken]; + NSString *udid = nil; + if (!accessToken) { + // We don't have a logged in user, so we need some form of udid representation. Prefer advertiser ID if + // available, and back off to attribution ID if not. Note that this function only makes sense to be + // called in the context of advertising. + udid = [FBSDKAppEventsUtility advertiserID]; + if (!udid) { + udid = [FBSDKAppEventsUtility attributionID]; + } + + if (!udid) { + // No udid, and no user token. No point in making the request. + return nil; + } + } + + NSDictionary *parameters = nil; + if (udid) { + parameters = @{ @"udid" : udid }; + } + + NSString *graphPath = [NSString stringWithFormat:@"%@/custom_audience_third_party_id", [[self singleton] appID]]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:graphPath + parameters:parameters + tokenString:tokenString + HTTPMethod:nil + flags:FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | FBSDKGraphRequestFlagDisableErrorRecovery]; + + return request; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.h new file mode 100644 index 0000000..3b97764 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKMetadataIndexer : NSObject + ++ (void)enable; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.m new file mode 100644 index 0000000..98d19f7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.m @@ -0,0 +1,329 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMetadataIndexer.h" + +#import +#import +#import + +#import + +#import "FBSDKCoreKit+Internal.h" + +static const int FBSDKMetadataIndexerMaxTextLength = 100; +static const int FBSDKMetadataIndexerMaxIndicatorLength = 100; +static const int FBSDKMetadataIndexerMaxValue = 5; + +static NSString * const FIELD_K = @"k"; +static NSString * const FIELD_V = @"v"; +static NSString * const FIELD_K_DELIMITER = @","; + +FBSDKAppEventUserDataType FBSDKAppEventRule1 = @"r1"; +FBSDKAppEventUserDataType FBSDKAppEventRule2 = @"r2"; + +static NSArray *FBSDKMetadataIndexerKeys; +static NSMutableDictionary *> *_rules; +static NSMutableDictionary *> *_store; +static dispatch_queue_t serialQueue; + +@implementation FBSDKMetadataIndexer + ++ (void)initialize +{ + FBSDKMetadataIndexerKeys = @[FBSDKAppEventRule1, FBSDKAppEventRule2]; + serialQueue = dispatch_queue_create("com.facebook.appevents.MetadataIndexer", DISPATCH_QUEUE_SERIAL); +} + ++ (void)enable +{ + if (FBSDKAdvertisingTrackingAllowed != [FBSDKAppEventsUtility advertisingTrackingStatus]) { + return; + } + [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:^(FBSDKServerConfiguration *serverConfiguration, NSError *error) { + if (error) { + return; + } + [FBSDKMetadataIndexer setupWithRules:serverConfiguration.AAMRules]; + }]; +} + ++ (void)setupWithRules:(NSDictionary * _Nullable)rules +{ + if (0 == rules.count) { + return; + } + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + [FBSDKMetadataIndexer constructRules:rules]; + [FBSDKMetadataIndexer initStore]; + + BOOL isEnabled = NO; + for (NSString *key in FBSDKMetadataIndexerKeys) { + BOOL isRuleEnabled = (nil != [_rules objectForKey:key]); + if (isRuleEnabled) { + isEnabled = YES; + } + if (!isRuleEnabled) { + [_store removeObjectForKey:key]; + [FBSDKUserDataStore setHashData:nil forType:key]; + } + } + + if (isEnabled) { + [FBSDKMetadataIndexer setupMetadataIndexing]; + } + }); +} + ++ (void)initStore +{ + _store = [[NSMutableDictionary alloc] init]; + for (NSString *key in FBSDKMetadataIndexerKeys) { + NSString *data = [FBSDKUserDataStore getHashedDataForType:key]; + if (data.length > 0) { + _store[key] = [NSMutableArray arrayWithArray:[data componentsSeparatedByString:FIELD_K_DELIMITER]]; + } + } + + for (NSString *key in FBSDKMetadataIndexerKeys) { + if (!_store[key]) { + _store[key] = [[NSMutableArray alloc] init]; + } + } +} + ++ (void)constructRules:(NSDictionary * _Nullable)rules +{ + if (!_rules) { + _rules = [[NSMutableDictionary alloc] init]; + } + + for (NSString *key in rules) { + NSDictionary *value = [FBSDKTypeUtility dictionaryValue:rules[key]]; + if (value && value[FIELD_K].length > 0 && value[FIELD_V].length > 0) { + _rules[key] = value; + } + } +} + ++ (void)setupMetadataIndexing +{ + void (^block)(UIView *) = ^(UIView *view) { + // Indexing when the view is removed from window and conforms to UITextInput, and skip UIFieldEditor, which is an internval view of UITextField + if (![view window] && ![NSStringFromClass([view class]) isEqualToString:@"UIFieldEditor"] && [view conformsToProtocol:@protocol(UITextInput)]) { + NSString *text = [FBSDKViewHierarchy getText:view]; + NSString *placeholder = [FBSDKViewHierarchy getHint:view]; + BOOL secureTextEntry = [self checkSecureTextEntry:view]; + NSArray *labels = [self getLabelsOfView:view]; + UIKeyboardType keyboardType = [self getKeyboardType:view]; + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void) { + [self getMetadataWithText:[self normalizedValue:text] + placeholder:[self normalizeField:placeholder] + labels:labels + secureTextEntry:secureTextEntry + inputType:keyboardType]; + }); + } + }; + + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) onClass:[UIView class] withBlock:block named:@"metadataIndexingUIView"]; + + // iOS 12: UITextField implements didMoveToWindow without calling parent implementation + if (@available(iOS 12, *)) { + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) onClass:[UITextField class] withBlock:block named:@"metadataIndexingUITextField"]; + } else { + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) onClass:[UIControl class] withBlock:block named:@"metadataIndexingUIControl"]; + } +} + ++ (NSArray *)getSiblingViewsOfView:(UIView *)view +{ + NSObject *parent = [FBSDKViewHierarchy getParent:view]; + if (parent) { + NSArray *views = [FBSDKViewHierarchy getChildren:parent]; + if (views) { + NSMutableArray *siblings = [NSMutableArray arrayWithArray:views]; + [siblings removeObject:view]; + return [siblings copy]; + } + } + return nil; +} + ++ (NSArray *)getLabelsOfView:(UIView *)view +{ + NSMutableArray *labels = [[NSMutableArray alloc] init]; + + NSString *placeholder = [self normalizeField:[FBSDKViewHierarchy getHint:view]]; + if (placeholder) { + [labels addObject:placeholder]; + } + + NSArray *siblingViews = [self getSiblingViewsOfView:view]; + for (id sibling in siblingViews) { + if ([sibling isKindOfClass:[UILabel class]]) { + NSString *text = [self normalizeField:[FBSDKViewHierarchy getText:sibling]]; + if (text) { + [labels addObject:text]; + } + } + } + return [labels copy]; +} + ++ (BOOL)checkSecureTextEntry:(UIView *)view +{ + if ([view isKindOfClass:[UITextField class]]) { + return ((UITextField *)view).secureTextEntry; + } + if ([view isKindOfClass:[UITextView class]]) { + return ((UITextView *)view).secureTextEntry; + } + + return NO; +} + ++ (UIKeyboardType)getKeyboardType:(UIView *)view +{ + if ([view isKindOfClass:[UITextField class]]) { + return ((UITextField *)view).keyboardType; + } + if ([view isKindOfClass:[UITextView class]]) { + return ((UITextView *)view).keyboardType; + } + + return UIKeyboardTypeDefault; +} + ++ (void)getMetadataWithText:(NSString *)text + placeholder:(NSString *)placeholder + labels:(NSArray *)labels + secureTextEntry:(BOOL)secureTextEntry + inputType:(UIKeyboardType)inputType +{ + if (secureTextEntry || + [placeholder containsString:@"password"] || + text.length == 0 || + text.length > FBSDKMetadataIndexerMaxTextLength || + placeholder.length >= FBSDKMetadataIndexerMaxIndicatorLength) { + return; + } + + for (NSString *key in _rules) { + NSDictionary *rule = _rules[key]; + BOOL isRuleKMatched = [self checkMetadataHint:placeholder matchRuleK:rule[FIELD_K]] + || [self checkMetadataLabels:labels matchRuleK:rule[FIELD_K]]; + BOOL isRuleVMatched = [self checkMetadataText:text matchRuleV:rule[FIELD_V]]; + if (isRuleKMatched && isRuleVMatched) { + [FBSDKMetadataIndexer checkAndAppendData:text forKey:key]; + } + } +} + +#pragma mark - Helper Methods + ++ (void)checkAndAppendData:(NSString *)data + forKey:(NSString *)key +{ + NSString *hashData = [FBSDKUtility SHA256Hash:data]; + dispatch_async(serialQueue, ^{ + if (hashData.length == 0 || [_store[key] containsObject:hashData]) { + return; + } + + while (_store[key].count >= FBSDKMetadataIndexerMaxValue) { + [_store[key] removeObjectAtIndex:0]; + } + [_store[key] addObject:hashData]; + [FBSDKUserDataStore setHashData:[_store[key] componentsJoinedByString:@","] + forType:key]; + }); +} + ++ (BOOL)checkMetadataLabels:(NSArray *)labels + matchRuleK:(NSString *)ruleK +{ + for (NSString *label in labels) { + if ([self checkMetadataHint:label matchRuleK:ruleK]) { + return YES; + } + } + return NO; +} + ++ (BOOL)checkMetadataHint:(NSString *)hint + matchRuleK:(NSString *)ruleK +{ + if (hint.length > 0 && ruleK) { + NSArray *items = [ruleK componentsSeparatedByString:@","]; + for (NSString *item in items) { + if ([hint containsString:item]) { + return YES; + } + } + } + return NO; +} + ++ (BOOL)checkMetadataText:(NSString *)text + matchRuleV:(NSString *)ruleV +{ + if (text.length > 0 && ruleV) { + NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:ruleV + options:NSRegularExpressionCaseInsensitive + error:nil]; + NSUInteger matches = [regex numberOfMatchesInString:text options:0 range:NSMakeRange(0, text.length)]; + + NSString *prunedText = [[text componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"+- ()."]] componentsJoinedByString:@""]; + NSUInteger prunedMatches = [regex numberOfMatchesInString:prunedText options:0 range:NSMakeRange(0, prunedText.length)]; + + return matches > 0 || prunedMatches > 0; + } + return NO; +} + ++ (NSString *)normalizeField:(NSString *)field +{ + if (!field) { + return nil; + } + NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[_-]|\\s" + options:NSRegularExpressionCaseInsensitive + error:nil]; + return [regex stringByReplacingMatchesInString:field + options:0 + range:NSMakeRange(0, field.length) + withTemplate:@""].lowercaseString; +} + ++ (NSString *)normalizedValue:(NSString *)value +{ + if (!value) { + return nil; + } + return [value stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]].lowercaseString; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.h new file mode 100644 index 0000000..68d1d4e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.h @@ -0,0 +1,40 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +typedef void(^FBSDKCodelessSettingLoadBlock)(BOOL isCodelessSetupEnabled, NSError *_Nullable error); + +NS_SWIFT_NAME(CodelessIndexer) +@interface FBSDKCodelessIndexer : NSObject + +@property (class, nonatomic, copy, readonly) NSString *extInfo; + ++ (void)enable; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.m new file mode 100644 index 0000000..3e1f395 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.m @@ -0,0 +1,414 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKCodelessIndexer.h" + +#import +#import +#import + +#import + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKSettings.h" + +@implementation FBSDKCodelessIndexer + +static BOOL _isCodelessIndexing; +static BOOL _isCheckingSession; +static BOOL _isCodelessIndexingEnabled; +static BOOL _isGestureSet; + +static NSMutableDictionary *_codelessSetting; +static const NSTimeInterval kTimeout = 4.0; + +static NSString *_deviceSessionID; +static NSTimer *_appIndexingTimer; +static NSString *_lastTreeHash; + ++ (void)enable +{ + if (_isGestureSet) { + return; + } +#if TARGET_OS_SIMULATOR + [self setupGesture]; +#else + [self loadCodelessSettingWithCompletionBlock:^(BOOL isCodelessSetupEnabled, NSError *error) { + if (isCodelessSetupEnabled) { + [self setupGesture]; + } + }]; +#endif +} + +// DO NOT call this function, it is only called once in the load function ++ (void)loadCodelessSettingWithCompletionBlock:(FBSDKCodelessSettingLoadBlock)completionBlock +{ + NSString *appID = [FBSDKSettings appID]; + if (appID == nil) { + return; + } + + [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:^(FBSDKServerConfiguration *serverConfiguration, NSError *serverConfigurationLoadingError) { + if (!serverConfiguration.codelessEventsEnabled) { + return; + } + + // load the defaults + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultKey = [NSString stringWithFormat:CODELESS_SETTING_KEY, appID]; + NSData *data = [defaults objectForKey:defaultKey]; + if ([data isKindOfClass:[NSData class]]) { + NSMutableDictionary *codelessSetting = [NSKeyedUnarchiver unarchiveObjectWithData:data]; + if (codelessSetting) { + _codelessSetting = codelessSetting; + } + } + if (!_codelessSetting) { + _codelessSetting = [[NSMutableDictionary alloc] init]; + } + + if (![self _codelessSetupTimestampIsValid:[_codelessSetting objectForKey:CODELESS_SETTING_TIMESTAMP_KEY]]) { + FBSDKGraphRequest *request = [self requestToLoadCodelessSetup:appID]; + if (request == nil) { + return; + } + FBSDKGraphRequestConnection *requestConnection = [[FBSDKGraphRequestConnection alloc] init]; + requestConnection.timeout = kTimeout; + [requestConnection addRequest:request completionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *codelessLoadingError) { + if (codelessLoadingError) { + return; + } + + NSDictionary *resultDictionary = [FBSDKTypeUtility dictionaryValue:result]; + if (resultDictionary) { + BOOL isCodelessSetupEnabled = [FBSDKTypeUtility boolValue:resultDictionary[CODELESS_SETUP_ENABLED_FIELD]]; + [_codelessSetting setObject:@(isCodelessSetupEnabled) forKey:CODELESS_SETUP_ENABLED_KEY]; + [_codelessSetting setObject:[NSDate date] forKey:CODELESS_SETTING_TIMESTAMP_KEY]; + // update the cached copy in user defaults + [defaults setObject:[NSKeyedArchiver archivedDataWithRootObject:_codelessSetting] forKey:defaultKey]; + completionBlock(isCodelessSetupEnabled, codelessLoadingError); + } + }]; + [requestConnection start]; + } else { + completionBlock([FBSDKTypeUtility boolValue:[_codelessSetting objectForKey:CODELESS_SETUP_ENABLED_KEY]], nil); + } + }]; +} + ++ (FBSDKGraphRequest *)requestToLoadCodelessSetup:(NSString *)appID +{ + NSString *advertiserID = [FBSDKAppEventsUtility advertiserID]; + if (!advertiserID) { + return nil; + } + + NSDictionary *parameters = @{ + @"fields": CODELESS_SETUP_ENABLED_FIELD, + @"advertiser_id": advertiserID + }; + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:appID + parameters:parameters + tokenString:nil + HTTPMethod:nil + flags:FBSDKGraphRequestFlagSkipClientToken | FBSDKGraphRequestFlagDisableErrorRecovery]; + return request; +} + ++ (BOOL)_codelessSetupTimestampIsValid:(NSDate *)timestamp +{ + return (timestamp != nil && [[NSDate date] timeIntervalSinceDate:timestamp] < CODELESS_SETTING_CACHE_TIMEOUT); +} + ++ (void)setupGesture +{ + _isGestureSet = YES; + [UIApplication sharedApplication].applicationSupportsShakeToEdit = YES; + Class class = [UIApplication class]; + + [FBSDKSwizzler swizzleSelector:@selector(motionBegan:withEvent:) onClass:class withBlock:^{ + if ([FBSDKServerConfigurationManager cachedServerConfiguration].isCodelessEventsEnabled) { + [self checkCodelessIndexingSession]; + } + } named:@"motionBegan"]; +} + ++ (void)checkCodelessIndexingSession +{ + if (_isCheckingSession) return; + + _isCheckingSession = YES; + NSDictionary *parameters = @{ + CODELESS_INDEXING_SESSION_ID_KEY: [self currentSessionDeviceID], + CODELESS_INDEXING_EXT_INFO_KEY: [self extInfo] + }; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] + initWithGraphPath:[NSString stringWithFormat:@"%@/%@", + [FBSDKSettings appID], CODELESS_INDEXING_SESSION_ENDPOINT] + parameters:parameters + HTTPMethod:FBSDKHTTPMethodPOST]; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + _isCheckingSession = NO; + if ([result isKindOfClass:[NSDictionary class]]) { + _isCodelessIndexingEnabled = [((NSDictionary *)result)[CODELESS_INDEXING_STATUS_KEY] boolValue]; + if (_isCodelessIndexingEnabled) { + _lastTreeHash = nil; + if (!_appIndexingTimer) { + _appIndexingTimer = [NSTimer timerWithTimeInterval:CODELESS_INDEXING_UPLOAD_INTERVAL_IN_SECONDS + target:self + selector:@selector(startIndexing) + userInfo:nil + repeats:YES]; + + [[NSRunLoop mainRunLoop] addTimer:_appIndexingTimer forMode:NSDefaultRunLoopMode]; + } + } else { + _deviceSessionID = nil; + } + } + }]; +} + ++ (NSString *)currentSessionDeviceID +{ + if (!_deviceSessionID) { + _deviceSessionID = [NSUUID UUID].UUIDString; + } + return _deviceSessionID; +} + ++ (NSString *)extInfo +{ + struct utsname systemInfo; + uname(&systemInfo); + NSString *machine = @(systemInfo.machine); + NSString *advertiserID = [FBSDKAppEventsUtility advertiserID] ?: @""; + machine = machine ?: @""; + NSString *debugStatus = [FBSDKAppEventsUtility isDebugBuild] ? @"1" : @"0"; +#if TARGET_IPHONE_SIMULATOR + NSString *isSimulator = @"1"; +#else + NSString *isSimulator = @"0"; +#endif + NSLocale *locale = [NSLocale currentLocale]; + NSString *languageCode = [locale objectForKey:NSLocaleLanguageCode]; + NSString *countryCode = [locale objectForKey:NSLocaleCountryCode]; + NSString *localeString = locale.localeIdentifier; + if (languageCode && countryCode) { + localeString = [NSString stringWithFormat:@"%@_%@", languageCode, countryCode]; + } + + NSString *extinfo = [FBSDKBasicUtility JSONStringForObject:@[machine, + advertiserID, + debugStatus, + isSimulator, + localeString] + error:NULL + invalidObjectHandler:NULL]; + + return extinfo ?: @""; +} + ++ (void)startIndexing { + if (!_isCodelessIndexingEnabled) { + return; + } + + if (UIApplicationStateActive != [UIApplication sharedApplication].applicationState) { + return; + } + + // If userAgentSuffix begins with Unity, trigger unity code to upload view hierarchy + NSString *userAgentSuffix = [FBSDKSettings userAgentSuffix]; + if (userAgentSuffix != nil && [userAgentSuffix hasPrefix:@"Unity"]) { + Class FBUnityUtility = objc_lookUpClass("FBUnityUtility"); + SEL selector = NSSelectorFromString(@"triggerUploadViewHierarchy"); + if (FBUnityUtility && selector && [FBUnityUtility respondsToSelector:selector]) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" + [FBUnityUtility performSelector:selector]; +#pragma clang diagnostic pop + } + } else { + [self uploadIndexing]; + } +} + ++ (void)uploadIndexing +{ + if (_isCodelessIndexing) { + return; + } + + NSString *tree = [FBSDKCodelessIndexer currentViewTree]; + + [self uploadIndexing:tree]; +} + ++ (void)uploadIndexing:(NSString *)tree +{ + if (_isCodelessIndexing) { + return; + } + + if (!tree) { + return; + } + + NSString *currentTreeHash = [FBSDKUtility SHA256Hash:tree]; + if (_lastTreeHash && [_lastTreeHash isEqualToString:currentTreeHash]) { + return; + } + + _lastTreeHash = currentTreeHash; + + NSBundle *mainBundle = [NSBundle mainBundle]; + NSString *version = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"]; + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] + initWithGraphPath:[NSString stringWithFormat:@"%@/%@", + [FBSDKSettings appID], CODELESS_INDEXING_ENDPOINT] + parameters:@{ + CODELESS_INDEXING_TREE_KEY: tree, + CODELESS_INDEXING_APP_VERSION_KEY: version ?: @"", + CODELESS_INDEXING_PLATFORM_KEY: @"iOS", + CODELESS_INDEXING_SESSION_ID_KEY: [self currentSessionDeviceID] + } + HTTPMethod:FBSDKHTTPMethodPOST]; + _isCodelessIndexing = YES; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + _isCodelessIndexing = NO; + if ([result isKindOfClass:[NSDictionary class]]) { + _isCodelessIndexingEnabled = [result[CODELESS_INDEXING_STATUS_KEY] boolValue]; + if (!_isCodelessIndexingEnabled) { + _deviceSessionID = nil; + } + } + }]; +} + ++ (NSString *)currentViewTree +{ + NSMutableArray *trees = [NSMutableArray array]; + + NSArray *windows = [UIApplication sharedApplication].windows; + for (UIWindow *window in windows) { + NSDictionary *tree = [FBSDKCodelessIndexer recursiveCaptureTree:window]; + if (tree) { + if (window.isKeyWindow) { + [trees insertObject:tree atIndex:0]; + } else { + [trees addObject:tree]; + } + } + } + + if (0 == trees.count) { + return nil; + } + + NSArray *viewTrees = [trees reverseObjectEnumerator].allObjects; + + NSData *data = UIImageJPEGRepresentation([FBSDKCodelessIndexer screenshot], 0.5); + NSString *screenshot = [data base64EncodedStringWithOptions:0]; + + NSMutableDictionary *treeInfo = [NSMutableDictionary dictionary]; + + treeInfo[@"view"] = viewTrees; + treeInfo[@"screenshot"] = screenshot ?: @""; + + NSString *tree = nil; + data = [NSJSONSerialization dataWithJSONObject:treeInfo options:0 error:nil]; + if (data) { + tree = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; + } + + return tree; +} + ++ (NSDictionary *)recursiveCaptureTree:(NSObject *)obj +{ + if (!obj) { + return nil; + } + + NSMutableDictionary *result = [FBSDKViewHierarchy getDetailAttributesOf:obj]; + + NSArray *children = [FBSDKViewHierarchy getChildren:obj]; + NSMutableArray *childrenTrees = [NSMutableArray array]; + for (NSObject *child in children) { + NSDictionary *objTree = [self recursiveCaptureTree:child]; + [childrenTrees addObject:objTree]; + } + + if (childrenTrees.count > 0) { + [result setValue:[childrenTrees copy] forKey:VIEW_HIERARCHY_CHILD_VIEWS_KEY]; + } + + return [result copy]; +} + ++ (UIImage *)screenshot { + UIWindow *window = [UIApplication sharedApplication].delegate.window; + + UIGraphicsBeginImageContext(window.bounds.size); + [window drawViewHierarchyInRect:window.bounds afterScreenUpdates:YES]; + UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); + UIGraphicsEndImageContext(); + + return image; +} + ++ (NSDictionary *)dimensionOf:(NSObject *)obj +{ + UIView *view = nil; + + if ([obj isKindOfClass:[UIView class]]) { + view = (UIView *)obj; + } else if ([obj isKindOfClass:[UIViewController class]]) { + view = ((UIViewController *)obj).view; + } + + CGRect frame = view.frame; + CGPoint offset = CGPointZero; + + if ([view isKindOfClass:[UIScrollView class]]) + offset = ((UIScrollView *)view).contentOffset; + + return @{ + CODELESS_VIEW_TREE_TOP_KEY: @((int)frame.origin.y), + CODELESS_VIEW_TREE_LEFT_KEY: @((int)frame.origin.x), + CODELESS_VIEW_TREE_WIDTH_KEY: @((int)frame.size.width), + CODELESS_VIEW_TREE_HEIGHT_KEY: @((int)frame.size.height), + CODELESS_VIEW_TREE_OFFSET_X_KEY: @((int)offset.x), + CODELESS_VIEW_TREE_OFFSET_Y_KEY: @((int)offset.y), + CODELESS_VIEW_TREE_VISIBILITY_KEY: view.isHidden ? @4 : @0 + }; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.h new file mode 100644 index 0000000..e9c1f6a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_SWIFT_NAME(CodelessParameterComponent) +@interface FBSDKCodelessParameterComponent : NSObject + +@property (nonatomic, copy, readonly) NSString *name; +@property (nonatomic, copy, readonly) NSString *value; +@property (nonatomic, readonly) NSArray *path; +@property (nonatomic, copy, readonly) NSString *pathType; + +- (instancetype)initWithJSON:(NSDictionary *)dict; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.m new file mode 100644 index 0000000..c5dc127 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.m @@ -0,0 +1,50 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKCodelessParameterComponent.h" + +#import "FBSDKCodelessPathComponent.h" +#import "FBSDKViewHierarchyMacros.h" + +@implementation FBSDKCodelessParameterComponent + +- (instancetype)initWithJSON:(NSDictionary *)dict { + if (self = [super init]) { + _name = [dict[CODELESS_MAPPING_PARAMETER_NAME_KEY] copy]; + _value = [dict[CODELESS_MAPPING_PARAMETER_VALUE_KEY] copy]; + _pathType = [dict[CODELESS_MAPPING_PATH_TYPE_KEY] copy]; + + NSArray *ary = dict[CODELESS_MAPPING_PATH_KEY]; + NSMutableArray *mut = [NSMutableArray array]; + for (NSDictionary *info in ary) { + FBSDKCodelessPathComponent *component = [[FBSDKCodelessPathComponent alloc] initWithJSON:info]; + [mut addObject:component]; + } + _path = [mut copy]; + } + + return self; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.h new file mode 100644 index 0000000..6e62250 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.h @@ -0,0 +1,51 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +typedef NS_OPTIONS(int, FBSDKCodelessMatchBitmaskField) +{ + FBSDKCodelessMatchBitmaskFieldID = 1, + FBSDKCodelessMatchBitmaskFieldText = 1 << 1, + FBSDKCodelessMatchBitmaskFieldTag = 1 << 2, + FBSDKCodelessMatchBitmaskFieldDescription = 1 << 3, + FBSDKCodelessMatchBitmaskFieldHint = 1 << 4 +}; + +NS_SWIFT_NAME(CodelessPathComponent) +@interface FBSDKCodelessPathComponent : NSObject + +@property (nonatomic, copy, readonly) NSString *className; +@property (nonatomic, copy, readonly) NSString *text; +@property (nonatomic, copy, readonly) NSString *hint; +@property (nonatomic, copy, readonly) NSString *desc; // description +@property (nonatomic, readonly) int index; +@property (nonatomic, readonly) int tag; +@property (nonatomic, readonly) int section; +@property (nonatomic, readonly) int row; +@property (nonatomic, readonly) int matchBitmask; + +- (instancetype)initWithJSON:(NSDictionary*)dict; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.m new file mode 100644 index 0000000..1fadc32 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.m @@ -0,0 +1,64 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKCodelessPathComponent.h" + +#import "FBSDKViewHierarchyMacros.h" + +@implementation FBSDKCodelessPathComponent + +- (instancetype)initWithJSON:(NSDictionary *)dict { + if (self = [super init]) { + _className = [dict[CODELESS_MAPPING_CLASS_NAME_KEY] copy]; + _text = [dict[CODELESS_MAPPING_TEXT_KEY] copy]; + _hint = [dict[CODELESS_MAPPING_HINT_KEY] copy]; + _desc = [dict[CODELESS_MAPPING_DESC_KEY] copy]; + + + if (dict[CODELESS_MAPPING_INDEX_KEY]) { + _index = [dict[CODELESS_MAPPING_INDEX_KEY] intValue]; + } else { + _index = -1; + } + + if (dict[CODELESS_MAPPING_SECTION_KEY]) { + _section = [dict[CODELESS_MAPPING_SECTION_KEY] intValue]; + } else { + _section = -1; + } + + if (dict[CODELESS_MAPPING_ROW_KEY]) { + _row = [dict[CODELESS_MAPPING_ROW_KEY] intValue]; + } else { + _row = -1; + } + + _tag = [dict[CODELESS_MAPPING_TAG_KEY] intValue]; + _matchBitmask = [dict[CODELESS_MAPPING_MATCH_BITMASK_KEY] intValue]; + } + + return self; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.h new file mode 100644 index 0000000..0214b6f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.h @@ -0,0 +1,42 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_SWIFT_NAME(EventBinding) +@interface FBSDKEventBinding : NSObject + +@property (nonatomic, copy, readonly) NSString *eventName; +@property (nonatomic, copy, readonly) NSString *eventType; +@property (nonatomic, copy, readonly) NSString *appVersion; +@property (nonatomic, readonly) NSArray *path; +@property (nonatomic, copy, readonly) NSString *pathType; +@property (nonatomic, readonly) NSArray *parameters; + ++ (BOOL)isViewMatchPath:(UIView *)view path:(NSArray *)path; ++ (BOOL)isPath:(NSArray *)path matchViewPath:(NSArray *)viewPath; +- (FBSDKEventBinding *)initWithJSON:(NSDictionary *)dict; +- (void)trackEvent:(id)sender; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.m new file mode 100644 index 0000000..bc0ca52 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.m @@ -0,0 +1,282 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKEventBinding.h" + +#import "FBSDKAppEvents.h" +#import "FBSDKAppEventsUtility.h" +#import "FBSDKCodelessParameterComponent.h" +#import "FBSDKCodelessPathComponent.h" +#import "FBSDKSwizzler.h" +#import "FBSDKUtility.h" +#import "FBSDKViewHierarchy.h" +#import "FBSDKViewHierarchyMacros.h" + +#define CODELESS_PATH_TYPE_ABSOLUTE @"absolute" +#define CODELESS_PATH_TYPE_RELATIVE @"relative" +#define CODELESS_CODELESS_EVENT_KEY @"_is_fb_codeless" +#define PARAMETER_NAME_PRICE @"_valueToSum" + +@implementation FBSDKEventBinding + +- (FBSDKEventBinding *)initWithJSON:(NSDictionary *)dict +{ + if ((self = [super init])) { + _eventName = [dict[CODELESS_MAPPING_EVENT_NAME_KEY] copy]; + _eventType = [dict[CODELESS_MAPPING_EVENT_TYPE_KEY] copy]; + _appVersion = [dict[CODELESS_MAPPING_APP_VERSION_KEY] copy]; + _pathType = [dict[CODELESS_MAPPING_PATH_TYPE_KEY] copy]; + + NSArray *pathComponents = dict[CODELESS_MAPPING_PATH_KEY]; + NSMutableArray *mut = [NSMutableArray array]; + for (NSDictionary *info in pathComponents) { + FBSDKCodelessPathComponent *component = [[FBSDKCodelessPathComponent alloc] initWithJSON:info]; + [mut addObject:component]; + } + _path = [mut copy]; + + NSArray *parameters = dict[CODELESS_MAPPING_PARAMETERS_KEY]; + mut = [NSMutableArray array]; + for (NSDictionary *info in parameters) { + FBSDKCodelessParameterComponent *component = [[FBSDKCodelessParameterComponent alloc] initWithJSON:info]; + [mut addObject:component]; + } + _parameters = [mut copy]; + } + return self; +} + +- (void)trackEvent:(id)sender +{ + UIView *sourceView = [sender isKindOfClass:[UIView class]] ? (UIView *)sender : nil; + NSMutableDictionary *params = [NSMutableDictionary dictionary]; + params[CODELESS_CODELESS_EVENT_KEY] = @"1"; + for (FBSDKCodelessParameterComponent *component in self.parameters) { + NSString *text = component.value; + if (!text || text.length == 0) { + text = [FBSDKEventBinding findParameterOfPath:component.path + pathType:component.pathType + sourceView:sourceView]; + } + if (text) { + if ([component.name isEqualToString:PARAMETER_NAME_PRICE]) { + NSNumber *value = [FBSDKAppEventsUtility getNumberValue:text]; + params[component.name] = value; + } else { + params[component.name] = text; + } + } + } + + [FBSDKAppEvents logEvent:_eventName parameters:[params copy]]; +} + ++ (BOOL)matchAnyView:(NSArray *)views + pathComponent:(FBSDKCodelessPathComponent *)component +{ + for (NSObject *view in views) { + if ([self match:view pathComponent:component]) { + return YES; + } + } + return NO; +} + ++ (BOOL)match:(NSObject *)view +pathComponent:(FBSDKCodelessPathComponent *)component +{ + NSString *className = NSStringFromClass([view class]); + if (![className isEqualToString:component.className]) { + return NO; + } + + if (component.index >= 0) { + NSObject *parent = [FBSDKViewHierarchy getParent:view]; + if (parent) { + NSArray *children = [FBSDKViewHierarchy getChildren:[FBSDKViewHierarchy getParent:view]]; + NSUInteger index = [children indexOfObject:view]; + if (index == NSNotFound || index != component.index) { + return NO; + } + } else { + if (0 != component.index) { + return NO; + } + } + } + + if ((component.matchBitmask & FBSDKCodelessMatchBitmaskFieldText) > 0) { + NSString *text = [FBSDKViewHierarchy getText:view]; + BOOL match = ((text.length == 0 && component.text.length == 0) + || [text isEqualToString:component.text]); + if (!match) { + return NO; + } + } + + if ((component.matchBitmask & FBSDKCodelessMatchBitmaskFieldTag) > 0 + && [view isKindOfClass:[UIView class]] + && component.tag != ((UIView *)view).tag) { + return NO; + } + + if ((component.matchBitmask & FBSDKCodelessMatchBitmaskFieldHint) > 0) { + NSString *hint = [FBSDKViewHierarchy getHint:view]; + BOOL match = ((hint.length == 0 && component.hint.length == 0) + || [hint isEqualToString:component.hint]); + if (!match) { + return NO; + } + } + + return YES; +} + ++ (BOOL)isViewMatchPath:(UIView *)view path:(NSArray *)path +{ + NSArray *viewPath = [FBSDKViewHierarchy getPath:view]; + BOOL isMatch = [self isPath:path matchViewPath:viewPath]; + + return isMatch; +} + ++ (BOOL)isPath:(NSArray *)path matchViewPath:(NSArray *)viewPath { + for (NSInteger i = 0; i < MIN(path.count, viewPath.count); i++) { + NSInteger idxPath = path.count - i - 1; + NSInteger idxViewPath = viewPath.count - i - 1; + + FBSDKCodelessPathComponent *pathComponent = path[idxPath]; + FBSDKCodelessPathComponent *viewPathComponent = viewPath[idxViewPath]; + + if (![pathComponent.className isEqualToString:viewPathComponent.className]) { + return NO; + } + + if (pathComponent.index >= 0 + && pathComponent.index != viewPathComponent.index) { + return NO; + } + + if ((pathComponent.matchBitmask & FBSDKCodelessMatchBitmaskFieldText) > 0) { + NSString *text = viewPathComponent.text; + BOOL match = ((text.length == 0 && pathComponent.text.length == 0) + || [text isEqualToString:pathComponent.text] + || [[FBSDKUtility SHA256Hash:text] isEqualToString:pathComponent.text]); + if (!match) { + return NO; + } + } + + if ((pathComponent.matchBitmask & FBSDKCodelessMatchBitmaskFieldTag) > 0 + && pathComponent.tag != viewPathComponent.tag) { + return NO; + } + + if ((pathComponent.matchBitmask & FBSDKCodelessMatchBitmaskFieldHint) > 0) { + NSString *hint = viewPathComponent.hint; + BOOL match = ((hint.length == 0 && pathComponent.hint.length == 0) + || [hint isEqualToString:pathComponent.hint] + || [[FBSDKUtility SHA256Hash:hint] isEqualToString:pathComponent.hint]); + if (!match) { + return NO; + } + } + } + + return YES; +} + ++ (NSObject *)findViewByPath:(NSArray *)path parent:(NSObject *)parent level:(int)level { + if (level >= path.count) { + return nil; + } + + FBSDKCodelessPathComponent *pathComponent = path[level]; + + // If found parent, skip to next level + if ([pathComponent.className isEqualToString:CODELESS_MAPPING_PARENT_CLASS_NAME]) { + NSObject *nextParent = [FBSDKViewHierarchy getParent:parent]; + + return [FBSDKEventBinding findViewByPath:path parent:nextParent level:level + 1]; + } else if ([pathComponent.className isEqualToString:CODELESS_MAPPING_CURRENT_CLASS_NAME]) { + return parent; + } + + NSArray *children; + if (parent) { + children = [FBSDKViewHierarchy getChildren:parent]; + } else { + UIWindow *window = [UIApplication sharedApplication].delegate.window; + if (window) { + children = @[window]; + } else { + return nil; + } + } + + if (path.count - 1 == level) { + int index = pathComponent.index; + if (index >= 0) { + NSObject *child = index < children.count ? children[index] : nil; + if ([self match:child pathComponent:pathComponent]) { + return child; + } + } else { + for (NSObject *child in children) { + if ([self match:child pathComponent:pathComponent]) { + return child; + } + } + } + } else { + for (NSObject *child in children) { + NSObject *result = [self findViewByPath:path parent:child level:level + 1]; + if (result) { + return result; + } + } + } + + return nil; +} + +// MARK: - find event parameters via relative path ++ (NSString *)findParameterOfPath:(NSArray *)path + pathType:(NSString *)pathType + sourceView:(UIView *)sourceView { + if (0 == path.count) { + return nil; + } + + UIView *rootView = sourceView; + if (![pathType isEqualToString:CODELESS_PATH_TYPE_RELATIVE]) { + rootView = nil; + } + + NSObject *foundObj = [self findViewByPath:path parent:rootView level:0]; + + return [FBSDKViewHierarchy getText:foundObj]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.h new file mode 100644 index 0000000..23ee4dc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.h @@ -0,0 +1,34 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_SWIFT_NAME(EventBindingManager) +@interface FBSDKEventBindingManager : NSObject + +- (FBSDKEventBindingManager*)initWithJSON:(NSDictionary*)dict; +- (void)updateBindings:(NSArray *)bindings; ++ (NSArray *)parseArray:(NSArray *)array; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.m new file mode 100644 index 0000000..06bf86d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.m @@ -0,0 +1,397 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKEventBindingManager.h" + +#import + +#import + +#import "FBSDKCodelessPathComponent.h" +#import "FBSDKEventBinding.h" +#import "FBSDKSwizzler.h" +#import "FBSDKTypeUtility.h" +#import "FBSDKViewHierarchy.h" +#import "FBSDKViewHierarchyMacros.h" + +#define ReactNativeTargetKey @"target" +#define ReactNativeTouchEndEventName @"touchEnd" + +#define ReactNativeClassRCTTextView "RCTTextView" +#define ReactNativeClassRCTImageView "RCTImageVIew" +#define ReactNativeClassRCTTouchEvent "RCTTouchEvent" +#define ReactNativeClassRCTTouchHandler "RCTTouchHandler" + +@interface FBSDKEventBindingManager () +{ + BOOL isStarted; + NSMutableDictionary *reactBindings; + NSSet *validClasses; + BOOL hasReactNative; + NSArray *eventBindings; +} +@end + +@implementation FBSDKEventBindingManager + +- (id)init { + self = [super init]; + if (self) { + isStarted = NO; + hasReactNative = NO; + reactBindings = [NSMutableDictionary dictionary]; + + NSMutableSet *classes = [NSMutableSet set]; + [classes addObject:[UIControl class]]; + [classes addObject:[UITableView class]]; + [classes addObject:[UICollectionView class]]; + // ReactNative + Class classRCTRootView = objc_lookUpClass(ReactNativeClassRCTRootView); + if (classRCTRootView != nil) { + hasReactNative = YES; + Class classRCTView = objc_lookUpClass(ReactNativeClassRCTView); + Class classRCTTextView = objc_lookUpClass(ReactNativeClassRCTTextView); + Class classRCTImageView = objc_lookUpClass(ReactNativeClassRCTImageView); + if (classRCTView) { + [classes addObject:classRCTView]; + } + if (classRCTTextView) { + [classes addObject:classRCTTextView]; + } + if (classRCTImageView) { + [classes addObject:classRCTImageView]; + } + } + validClasses = [NSSet setWithSet:classes]; + } + return self; +} + ++ (NSArray *)parseArray:(NSArray *)array { + NSMutableArray *result = [NSMutableArray array]; + + for (NSDictionary *json in array) { + FBSDKEventBinding *binding = [[FBSDKEventBinding alloc] initWithJSON:json]; + [result addObject:binding]; + } + + return [result copy]; +} + +- (FBSDKEventBindingManager*)initWithJSON:(NSDictionary*)dict +{ + if ((self = [super init])) { + NSArray *eventBindingsDict = [FBSDKTypeUtility arrayValue:dict[@"event_bindings"]]; + NSMutableArray *bindings = [NSMutableArray array]; + for (NSDictionary *d in eventBindingsDict) { + FBSDKEventBinding *e = [[FBSDKEventBinding alloc] initWithJSON:d]; + [bindings addObject:e]; + } + eventBindings = [bindings copy]; + } + return self; +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wundeclared-selector" +- (void)start +{ + if (isStarted) { + return; + } + + if (0 == eventBindings.count) { + return; + } + + isStarted = YES; + + void (^blockToWindow)(id view) = ^(id view) { + [self matchView:view delegate:nil]; + }; + + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) + onClass:[UIControl class] + withBlock:blockToWindow named:@"map_control"]; + + // ReactNative + if (hasReactNative) { // If app is built via ReactNative + Class classRCTView = objc_lookUpClass(ReactNativeClassRCTView); + Class classRCTTextView = objc_lookUpClass(ReactNativeClassRCTTextView); + Class classRCTImageView = objc_lookUpClass(ReactNativeClassRCTImageView); + Class classRCTTouchHandler = objc_lookUpClass(ReactNativeClassRCTTouchHandler); + + // All react-native views would be added tp RCTRootView, so no need to check didMoveToWindow + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) + onClass:classRCTView + withBlock:blockToWindow + named:@"match_react_native"]; + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) + onClass:classRCTTextView + withBlock:blockToWindow + named:@"match_react_native"]; + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) + onClass:classRCTImageView + withBlock:blockToWindow + named:@"match_react_native"]; + + // RCTTouchHandler handles with touch events, like touchEnd and uses RCTEventDispather to dispatch events, so we can check _updateAndDispatchTouches to fire events + [FBSDKSwizzler swizzleSelector:@selector(_updateAndDispatchTouches:eventName:) onClass:classRCTTouchHandler withBlock:^(id touchHandler, SEL command, id touches, id eventName){ + if ([touches isKindOfClass:[NSSet class]] && [eventName isKindOfClass:[NSString class]]) { + @try { + NSString *reactEventName = (NSString *)eventName; + NSSet *reactTouches = (NSSet *)touches; + if ([reactEventName isEqualToString:ReactNativeTouchEndEventName]) { + for (UITouch *touch in reactTouches) { + UIView *targetView = ((UITouch *)touch).view.superview; + NSNumber *reactTag = nil; + // Find the closest React-managed touchable view like RCTTouchHandler + while(targetView) { + reactTag = [FBSDKViewHierarchy getViewReactTag:targetView]; + if (reactTag != nil && targetView.userInteractionEnabled) { + break; + } + targetView = targetView.superview; + } + FBSDKEventBinding *eventBinding = self->reactBindings[reactTag]; + if (reactTag != nil && eventBinding != nil) { + [eventBinding trackEvent:nil]; + } + } + } + } + @catch(NSException *exception) { + // Catch exception here to prevent LytroKit from crashing app + } + } + } named:@"dispatch_rn_event"]; + } + + // UITableView + void (^tableViewBlock)(UITableView *tableView, + SEL cmd, + id delegate) = + ^(UITableView *tableView, SEL cmd, id delegate) { + if (!delegate) { + return; + } + + [self matchView:tableView delegate:delegate]; + }; + [FBSDKSwizzler swizzleSelector:@selector(setDelegate:) + onClass:[UITableView class] + withBlock:tableViewBlock + named:@"match_table_view"]; + // UICollectionView + void (^collectionViewBlock)(UICollectionView *collectionView, + SEL cmd, + id delegate) = + ^(UICollectionView *collectionView, SEL cmd, id delegate) { + if (nil == delegate) { + return; + } + + [self matchView:collectionView delegate:delegate]; + }; + [FBSDKSwizzler swizzleSelector:@selector(setDelegate:) + onClass:[UICollectionView class] + withBlock:collectionViewBlock + named:@"handle_collection_view"]; +} + +- (void)rematchBindings { + if (0 == eventBindings.count) { + return; + } + + NSArray *windows = [UIApplication sharedApplication].windows; + for (UIWindow *window in windows) { + [self matchSubviewsIn:window]; + } +} + +- (void)matchSubviewsIn:(UIView *)view { + if (!view) { + return; + } + + for (UIView *subview in view.subviews) { + BOOL isValidClass = NO; + for (Class cls in validClasses) { + if ([subview isKindOfClass:cls]) { + isValidClass = YES; + break; + } + } + + if (isValidClass) { + if ([subview isKindOfClass:[UITableView class]]) { + UITableView *tableView = (UITableView *)subview; + if (tableView.delegate) { + [self matchView:subview delegate:tableView.delegate]; + } + } else if ([subview isKindOfClass:[UICollectionView class]]) { + UICollectionView *collectionView = (UICollectionView *)subview; + if (collectionView.delegate) { + [self matchView:subview delegate:collectionView.delegate]; + } + } else { + [self matchView:subview delegate:nil]; + } + } + + if (![subview isKindOfClass:[UIControl class]]) { + [self matchSubviewsIn:subview]; + } + } +} + +// check if the view is matched to any event +- (void)matchView:(UIView *)view delegate:(id)delegate { + if (0 == eventBindings.count) { + return; + } + + fb_dispatch_on_main_thread(^{ + if (![view window]) { + return; + } + + NSArray *path = [FBSDKViewHierarchy getPath:view]; + + fb_dispatch_on_default_thread(^{ + if ([view isKindOfClass:[UIControl class]]) { + UIControl *control = (UIControl *)view; + for (FBSDKEventBinding *binding in self->eventBindings) { + if ([FBSDKEventBinding isPath:binding.path matchViewPath:path]) { + fb_dispatch_on_main_thread(^{ + [control addTarget:binding + action:@selector(trackEvent:) + forControlEvents:UIControlEventTouchUpInside]; + }); + break; + } + } + } else if (self->hasReactNative + && [view respondsToSelector:@selector(reactTag)]) { + for (FBSDKEventBinding *binding in self->eventBindings) { + if ([FBSDKEventBinding isPath:binding.path matchViewPath:path]) { + fb_dispatch_on_main_thread(^{ + if (view) { + NSNumber *reactTag = [FBSDKViewHierarchy getViewReactTag:view]; + if (reactTag != nil) { + self->reactBindings[reactTag] = binding; + } + } + }); + break; + } + } + } else if ([view isKindOfClass:[UITableView class]] + && [delegate conformsToProtocol:@protocol(UITableViewDelegate)]) { + fb_dispatch_on_default_thread(^{ + NSMutableSet *matchedBindings = [NSMutableSet set]; + for (FBSDKEventBinding *binding in self->eventBindings) { + if (binding.path.count > 1) { + NSArray *shortPath = [binding.path + subarrayWithRange:NSMakeRange(0, binding.path.count - 1)]; + if ([FBSDKEventBinding isPath:shortPath matchViewPath:path]) { + [matchedBindings addObject:binding]; + } + } + } + + if (matchedBindings.count > 0) { + NSArray *bindings = matchedBindings.allObjects; + void (^block)(id, SEL, id, id) = ^(id target, SEL command, UITableView *tableView, NSIndexPath *indexPath) { + fb_dispatch_on_main_thread(^{ + for (FBSDKEventBinding *binding in bindings) { + FBSDKCodelessPathComponent *component = binding.path.lastObject; + if ((component.section == -1 || component.section == indexPath.section) + && (component.row == -1 || component.row == indexPath.row)) { + UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; + [binding trackEvent:cell]; + } + } + }); + }; + [FBSDKSwizzler swizzleSelector:@selector(tableView:didSelectRowAtIndexPath:) + onClass:[delegate class] + withBlock:block + named:@"handle_table_view"]; + } + }); + } else if ([view isKindOfClass:[UICollectionView class]] + && [delegate conformsToProtocol:@protocol(UICollectionViewDelegate)]) { + fb_dispatch_on_default_thread(^{ + NSMutableSet *matchedBindings = [NSMutableSet set]; + for (FBSDKEventBinding *binding in self->eventBindings) { + if (binding.path.count > 1) { + NSArray *shortPath = [binding.path + subarrayWithRange:NSMakeRange(0, binding.path.count - 1)]; + if ([FBSDKEventBinding isPath:shortPath matchViewPath:path]) { + [matchedBindings addObject:binding]; + } + } + } + + if (matchedBindings.count > 0) { + NSArray *bindings = matchedBindings.allObjects; + void (^block)(id, SEL, id, id) = ^(id target, SEL command, UICollectionView *collectionView, NSIndexPath *indexPath) { + fb_dispatch_on_main_thread(^{ + for (FBSDKEventBinding *binding in bindings) { + FBSDKCodelessPathComponent *component = binding.path.lastObject; + if ((component.section == -1 || component.section == indexPath.section) + && (component.row == -1 || component.row == indexPath.row)) { + UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath]; + [binding trackEvent:cell]; + } + } + }); + }; + [FBSDKSwizzler swizzleSelector:@selector(collectionView:didSelectItemAtIndexPath:) + onClass:[delegate class] + withBlock:block + named:@"handle_collection_view"]; + } + }); + } + }); + }); +} + +#pragma clang diagnostic pop +- (void)updateBindings:(NSArray *)bindings { + eventBindings = bindings; + [reactBindings removeAllObjects]; + if (!isStarted) { + [self start]; + } + + fb_dispatch_on_main_thread(^{ + [self rematchBindings]; + }); +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.h new file mode 100644 index 0000000..bb38bf4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.h @@ -0,0 +1,34 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKEventDeactivationManager : NSObject + ++ (void)enable; ++ (void)updateDeactivatedEvents:(nullable NSDictionary *)events; ++ (void)processEvents:(NSMutableArray *> *)events; ++ (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters + eventName:(NSString *)eventName; + +@end + +NS_ASSUME_NONNULL_END + diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.m new file mode 100644 index 0000000..77c2e3b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.m @@ -0,0 +1,119 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKEventDeactivationManager.h" + +static NSString *const DEPRECATED_PARAM_KEY = @"deprecated_param"; +static NSString *const DEPRECATED_EVENT_KEY = @"is_deprecated_event"; + +@interface FBSDKDeactivatedEvent : NSObject + +@property (nonatomic, readonly, copy) NSString *eventName; +@property (nonatomic, readonly, copy, nullable) NSSet *deactivatedParams; + +-(instancetype)initWithEventName:(NSString *)eventName + deactivatedParams:(NSSet *)deactivatedParams; + +@end + +@implementation FBSDKDeactivatedEvent + +-(instancetype)initWithEventName:(NSString *)eventName + deactivatedParams:(NSSet *)deactivatedParams +{ + self = [super init]; + if (self) { + _eventName = eventName; + _deactivatedParams = deactivatedParams; + } + + return self; +} + +@end + +@implementation FBSDKEventDeactivationManager + +static BOOL isEventDeactivationEnabled = NO; + +static NSMutableSet *_deactivatedEvents; +static NSMutableArray *_eventsWithDeactivatedParams; + ++ (void)enable +{ + isEventDeactivationEnabled = YES; +} + ++ (void)updateDeactivatedEvents:(nullable NSDictionary *)events +{ + if (!isEventDeactivationEnabled || events.count == 0) { + return; + } + [_deactivatedEvents removeAllObjects]; + [_eventsWithDeactivatedParams removeAllObjects]; + NSMutableArray *deactivatedParamsArray = [NSMutableArray array]; + NSMutableSet *deactivatedEventSet = [NSMutableSet set]; + for (NSString *eventName in events.allKeys) { + NSDictionary *eventInfo = events[eventName]; + if (!eventInfo) { + return; + } + if (eventInfo[DEPRECATED_EVENT_KEY]) { + [deactivatedEventSet addObject:eventName]; + } + if (eventInfo[DEPRECATED_PARAM_KEY]) { + FBSDKDeactivatedEvent *eventWithDeactivatedParams = [[FBSDKDeactivatedEvent alloc] initWithEventName:eventName + deactivatedParams:[NSSet setWithArray:eventInfo[DEPRECATED_PARAM_KEY]]]; + [deactivatedParamsArray addObject:eventWithDeactivatedParams]; + } + } + _deactivatedEvents = deactivatedEventSet; + _eventsWithDeactivatedParams = deactivatedParamsArray; +} + ++ (void)processEvents:(NSMutableArray *> *)events +{ + if (!isEventDeactivationEnabled) { + return; + } + NSArray *> *eventArray = [events copy]; + for (NSDictionary *> *event in eventArray) { + if ([_deactivatedEvents containsObject:event[@"event"][@"_eventName"]]) { + [events removeObject:event]; + } + } +} + ++ (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters + eventName:(NSString *)eventName +{ + if (!isEventDeactivationEnabled || parameters.count == 0 || _eventsWithDeactivatedParams.count == 0) { + return parameters; + } + NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:parameters]; + for (NSString *key in [parameters keyEnumerator]) { + for (FBSDKDeactivatedEvent *event in _eventsWithDeactivatedParams) { + if ([event.eventName isEqualToString:eventName] && [event.deactivatedParams containsObject:key]) { + [params removeObjectForKey:key]; + } + } + } + return [params copy]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEvents+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEvents+Internal.h new file mode 100644 index 0000000..282a3f8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEvents+Internal.h @@ -0,0 +1,245 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#if SWIFT_PACKAGE +#import "FBSDKAppEvents.h" +#else +#import +#endif + +#import "FBSDKAppEventsUtility.h" + +@class FBSDKGraphRequest; + +// Internally known event names + +/** Use to log that the share dialog was launched */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameShareSheetLaunch; + +/** Use to log that the share dialog was dismissed */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameShareSheetDismiss; + +/** Use to log that the permissions UI was launched */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNamePermissionsUILaunch; + +/** Use to log that the permissions UI was dismissed */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNamePermissionsUIDismiss; + +/** Use to log that the login view was used */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameLoginViewUsage; + +/** Use to log that the share tray launched. */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameShareTrayDidLaunch; + +/** Use to log that the person selected a sharing target. */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameShareTrayDidSelectActivity; + +// Internally known event parameters + +/** String parameter specifying the outcome of a dialog invocation */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogOutcome; + +/** Parameter key used to specify which application launches this application. */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLaunchSource; + +/** Use to log the result of a call to FBDialogs presentShareDialogWithParams: */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentShareDialog; + +/** Use to log the result of a call to FBDialogs presentShareDialogWithOpenGraphActionParams: */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentShareDialogOG; + +/** Use to log the result of a call to FBDialogs presentLikeDialogWithLikeParams: */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentLikeDialogOG; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentShareDialogPhoto; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentMessageDialog; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentMessageDialogPhoto; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsPresentMessageDialogOG; + +/** Use to log the start of an auth request that cannot be fulfilled by the token cache */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSessionAuthStart; + +/** Use to log the end of an auth request that was not fulfilled by the token cache */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSessionAuthEnd; + +/** Use to log the start of a specific auth method as part of an auth request */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSessionAuthMethodStart; + +/** Use to log the end of the last tried auth method as part of an auth request */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSessionAuthMethodEnd; + +/** Use to log the timestamp for the transition to the Facebook native login dialog */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsNativeLoginDialogStart; + +/** Use to log the timestamp for the transition back to the app after the Facebook native login dialog */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsNativeLoginDialogEnd; + +/** Use to log the e2e timestamp metrics for web login */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBDialogsWebLoginCompleted; + +/** Use to log the result of the App Switch OS AlertView. Only available on OS >= iOS10 */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSessionFASLoginDialogResult; + +/** Use to log the live streaming events from sdk */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingStart; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingStop; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingPause; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingResume; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingError; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingUpdateStatus; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingVideoID; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingMic; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingCamera; + +/** Use to log the results of a share dialog */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventShareDialogResult; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventMessengerShareDialogResult; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventAppInviteShareDialogResult; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventShareDialogShow; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventMessengerShareDialogShow; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKEventAppInviteShareDialogShow; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogMode; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogShareContentType; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogShareContentUUID; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogShareContentPageID; + +/** Use to log parameters for share tray use */ +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterShareTrayActivityName; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterShareTrayResult; + +/** Use to log parameters for live streaming*/ +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingPrevStatus; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingStatus; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingError; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingVideoID; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingMicEnabled; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLiveStreamingCameraEnabled; + +// Internally known event parameter values + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogOutcomeValue_Completed; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogOutcomeValue_Cancelled; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogOutcomeValue_Failed; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeOpenGraph; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeStatus; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypePhoto; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeVideo; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeCamera; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeMessengerGenericTemplate; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeMessengerMediaTemplate; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeMessengerOpenGraphMusicTemplate; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareContentTypeUnknown; + + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeAutomatic; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeBrowser; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeNative; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeShareSheet; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeWeb; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeFeedBrowser; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeFeedWeb; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsDialogShareModeUnknown; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsNativeLoginDialogStartTime; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsNativeLoginDialogEndTime; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWebLoginE2E; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeButtonImpression; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLoginButtonImpression; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKSendButtonImpression; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKShareButtonImpression; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingButtonImpression; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKSmartLoginService; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeButtonDidTap; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLoginButtonDidTap; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKSendButtonDidTap; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKShareButtonDidTap; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLiveStreamingButtonDidTap; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlDidDisable; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlDidLike; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlDidPresentDialog; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlDidTap; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlDidUnlike; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlError; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlImpression; +FOUNDATION_EXPORT NSString *const FBSDKAppEventNameFBSDKLikeControlNetworkUnavailable; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterDialogErrorMessage; +FOUNDATION_EXPORT NSString *const FBSDKAppEventParameterLogTime; + +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesHandlerKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesActionKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesEventKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesParamsKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesPixelTrackKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesPixelTrackCustomKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesPixelTrackSingleKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesPixelTrackSingleCustomKey; +FOUNDATION_EXPORT NSString *const FBSDKAppEventsWKWebViewMessagesPixelIDKey; + +@interface FBSDKAppEvents (Internal) + +@property (class, nonatomic, strong, readonly) FBSDKAppEvents *singleton; + +#ifdef DEBUG ++ (void)resetSingleton; +#endif + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + isImplicitlyLogged:(BOOL)isImplicitlyLogged; + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + isImplicitlyLogged:(BOOL)isImplicitlyLogged; + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged; + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged + accessToken:(FBSDKAccessToken *)accessToken; + ++ (void)logInternalEvent:(FBSDKAppEventName)eventName + valueToSum:(double)valueToSum + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged; + ++ (void)logInternalEvent:(NSString *)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + isImplicitlyLogged:(BOOL)isImplicitlyLogged + accessToken:(FBSDKAccessToken *)accessToken; + ++ (void)logImplicitEvent:(NSString *)eventName + valueToSum:(NSNumber *)valueToSum + parameters:(NSDictionary *)parameters + accessToken:(FBSDKAccessToken *)accessToken; + +- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; +- (void)registerNotifications; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.h new file mode 100644 index 0000000..bd25235 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.h @@ -0,0 +1,26 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(AppEventsDeviceInfo) +@interface FBSDKAppEventsDeviceInfo : NSObject + ++ (void)extendDictionaryWithDeviceInfo:(NSMutableDictionary *)dictionary; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.m new file mode 100644 index 0000000..631fba9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.m @@ -0,0 +1,279 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAppEventsDeviceInfo.h" + +#import +#import + +#if !TARGET_OS_TV +#import +#import +#endif + +#import +#import + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKUtility.h" + +#define FB_ARRAY_COUNT(x) sizeof(x) / sizeof(x[0]) + +static const u_int FB_GROUP1_RECHECK_DURATION = 30 * 60; // seconds + +// Apple reports storage in binary gigabytes (1024^3) in their About menus, etc. +static const u_int FB_GIGABYTE = 1024 * 1024 * 1024; // bytes + +@implementation FBSDKAppEventsDeviceInfo +{ + // Ephemeral data, may change during the lifetime of an app. We collect them in different + // 'group' frequencies - group1 may gets collected once every 30 minutes. + + // group1 + NSString *_carrierName; + NSString *_timeZoneAbbrev; + unsigned long long _remainingDiskSpaceGB; + NSString *_timeZoneName; + + // Persistent data, but we maintain it to make rebuilding the device info as fast as possible. + NSString *_bundleIdentifier; + NSString *_longVersion; + NSString *_shortVersion; + NSString *_sysVersion; + NSString *_machine; + NSString *_language; + unsigned long long _totalDiskSpaceGB; + unsigned long long _coreCount; + CGFloat _width; + CGFloat _height; + CGFloat _density; + + // Other state + long _lastGroup1CheckTime; + BOOL _isEncodingDirty; + NSString *_encodedDeviceInfo; +} + +#pragma mark - Public Methods + ++ (void)extendDictionaryWithDeviceInfo:(NSMutableDictionary *)dictionary +{ + dictionary[@"extinfo"] = [[self sharedDeviceInfo] encodedDeviceInfo]; +} + +#pragma mark - Internal Methods + ++ (void)initialize +{ + if (self == [FBSDKAppEventsDeviceInfo class]) { + [[self sharedDeviceInfo] _collectPersistentData]; + } +} + ++ (instancetype)sharedDeviceInfo +{ + static FBSDKAppEventsDeviceInfo *_sharedDeviceInfo = nil; + if (_sharedDeviceInfo == nil) { + _sharedDeviceInfo = [[FBSDKAppEventsDeviceInfo alloc] init]; + } + return _sharedDeviceInfo; +} + +- (instancetype)init +{ + if ((self = [super init])) { + _isEncodingDirty = YES; + } + return self; +} + +- (NSString *)encodedDeviceInfo +{ + @synchronized (self) { + + BOOL isGroup1Expired = [self _isGroup1Expired]; + BOOL isEncodingExpired = isGroup1Expired; // Can || other groups in if we add them + + // As long as group1 hasn't expired, we can just return the last generated value + if (_encodedDeviceInfo && !isEncodingExpired) { + return _encodedDeviceInfo; + } + + if (isGroup1Expired) { + [self _collectGroup1Data]; + } + + if (_isEncodingDirty) { + self.encodedDeviceInfo = [self _generateEncoding]; + _isEncodingDirty = NO; + } + + return _encodedDeviceInfo; + } +} + +- (void)setEncodedDeviceInfo:(NSString *)encodedDeviceInfo +{ + @synchronized (self) { + if (![_encodedDeviceInfo isEqualToString:encodedDeviceInfo]) { + _encodedDeviceInfo = [encodedDeviceInfo copy]; + } + } +} + +// This data need only be collected once. +- (void)_collectPersistentData +{ + // Bundle stuff + NSBundle *mainBundle = [NSBundle mainBundle]; + _bundleIdentifier = mainBundle.bundleIdentifier; + _longVersion = [mainBundle objectForInfoDictionaryKey:@"CFBundleVersion"]; + _shortVersion = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"]; + + // Locale stuff + _language = [NSLocale currentLocale].localeIdentifier; + + // Device stuff + UIDevice *device = [UIDevice currentDevice]; + _sysVersion = device.systemVersion; + _coreCount = [FBSDKAppEventsDeviceInfo _coreCount]; + + UIScreen *sc = [UIScreen mainScreen]; + CGRect sr = sc.bounds; + _width = sr.size.width; + _height = sr.size.height; + _density = sc.scale; + + struct utsname systemInfo; + uname(&systemInfo); + _machine = @(systemInfo.machine); + + // Disk space stuff + float totalDiskSpace = [FBSDKAppEventsDeviceInfo _getTotalDiskSpace].floatValue; + _totalDiskSpaceGB = (unsigned long long)round(totalDiskSpace / FB_GIGABYTE); +} + +- (BOOL)_isGroup1Expired +{ + return ([FBSDKAppEventsUtility unixTimeNow] - _lastGroup1CheckTime) > FB_GROUP1_RECHECK_DURATION; +} + +// This data is collected only once every GROUP1_RECHECK_DURATION. +- (void)_collectGroup1Data +{ + // Carrier + NSString *newCarrierName = [FBSDKAppEventsDeviceInfo _getCarrier]; + if (![newCarrierName isEqualToString:_carrierName]) { + _carrierName = newCarrierName; + _isEncodingDirty = YES; + } + + // Time zone + NSTimeZone *timeZone = [NSTimeZone systemTimeZone]; + NSString *timeZoneName = timeZone.name; + if (![timeZoneName isEqualToString:_timeZoneName]) { + _timeZoneName = timeZoneName; + _timeZoneAbbrev = timeZone.abbreviation; + _isEncodingDirty = YES; + } + + // Remaining disk space + float remainingDiskSpace = [FBSDKAppEventsDeviceInfo _getRemainingDiskSpace].floatValue; + unsigned long long newRemainingDiskSpaceGB = (unsigned long long)round(remainingDiskSpace / FB_GIGABYTE); + if (_remainingDiskSpaceGB != newRemainingDiskSpaceGB) { + _remainingDiskSpaceGB = newRemainingDiskSpaceGB; + _isEncodingDirty = YES; + } + + _lastGroup1CheckTime = [FBSDKAppEventsUtility unixTimeNow]; +} + +- (NSString *)_generateEncoding +{ + // Keep a bit of precision on density as it's the most likely to become non-integer. + NSString *densityString = _density ? [NSString stringWithFormat:@"%.02f", _density] : @""; + + NSArray *arr = @[ + @"i2", // version - starts with 'i' for iOS, we'll use 'a' for Android + _bundleIdentifier ?: @"", + _longVersion ?: @"", + _shortVersion ?: @"", + _sysVersion ?: @"", + _machine ?: @"", + _language ?: @"", + _timeZoneAbbrev ?: @"", + _carrierName ?: @"", + _width ? @((unsigned long)_width) : @"", + _height ? @((unsigned long)_height) : @"", + densityString, + @(_coreCount) ?: @"", + @(_totalDiskSpaceGB) ?: @"", + @(_remainingDiskSpaceGB) ?: @"", + _timeZoneName ?: @"" + ]; + + return [FBSDKBasicUtility JSONStringForObject:arr error:NULL invalidObjectHandler:NULL]; +} + +#pragma mark - Helper Methods + ++ (NSNumber *)_getTotalDiskSpace +{ + NSDictionary *attrs = [[[NSFileManager alloc] init] attributesOfFileSystemForPath:NSHomeDirectory() + error:nil]; + return attrs[NSFileSystemSize]; +} + ++ (NSNumber *)_getRemainingDiskSpace +{ + NSDictionary *attrs = [[[NSFileManager alloc] init] attributesOfFileSystemForPath:NSHomeDirectory() + error:nil]; + return attrs[NSFileSystemFreeSize]; +} + ++ (uint)_coreCount +{ + return [FBSDKAppEventsDeviceInfo _readSysCtlUInt:CTL_HW type:HW_AVAILCPU]; +} + ++ (uint)_readSysCtlUInt:(int)ctl type:(int)type +{ + int mib[2] = {ctl, type}; + uint value; + size_t size = sizeof value; + if (0 != sysctl(mib, FB_ARRAY_COUNT(mib), &value, &size, NULL, 0)) { + return 0; + } + return value; +} + ++ (NSString *)_getCarrier +{ +#if TARGET_OS_TV || TARGET_IPHONE_SIMULATOR + return @"NoCarrier"; +#else + // Dynamically load class for this so calling app doesn't need to link framework in. + CTTelephonyNetworkInfo *networkInfo = [[fbsdkdfl_CTTelephonyNetworkInfoClass() alloc] init]; + CTCarrier *carrier = networkInfo.subscriberCellularProvider; + return carrier.carrierName ?: @"NoCarrier"; +#endif +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.h new file mode 100644 index 0000000..a23dea7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.h @@ -0,0 +1,42 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +// this type is not thread safe. +NS_SWIFT_NAME(AppEventsState) +@interface FBSDKAppEventsState : NSObject + +@property (nonatomic, readonly, copy) NSArray *events; +@property (nonatomic, readonly, assign) NSUInteger numSkipped; +@property (nonatomic, readonly, copy) NSString *tokenString; +@property (nonatomic, readonly, copy) NSString *appID; +@property (nonatomic, readonly, getter=areAllEventsImplicit) BOOL allEventsImplicit; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)initWithToken:(NSString *)tokenString appID:(NSString *)appID NS_DESIGNATED_INITIALIZER; + +- (void)addEvent:(NSDictionary *)eventDictionary isImplicit:(BOOL)isImplicit; +- (void)addEventsFromAppEventState:(FBSDKAppEventsState *)appEventsState; +- (BOOL)isCompatibleWithAppEventsState:(FBSDKAppEventsState *)appEventsState; +- (BOOL)isCompatibleWithTokenString:(NSString *)tokenString appID:(NSString *)appID; +- (NSString *)JSONStringForEvents:(BOOL)includeImplicitEvents; +- (NSString *)extractReceiptData; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.m new file mode 100644 index 0000000..3fcf9af --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.m @@ -0,0 +1,185 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAppEventsState.h" + +#import "FBSDKBasicUtility.h" +#import "FBSDKEventDeactivationManager.h" +#import "FBSDKRestrictiveDataFilterManager.h" + +#define FBSDK_APPEVENTSTATE_ISIMPLICIT_KEY @"isImplicit" + +#define FBSDK_APPEVENTSSTATE_MAX_EVENTS 1000 + +#define FBSDK_APPEVENTSSTATE_APPID_KEY @"appID" +#define FBSDK_APPEVENTSSTATE_EVENTS_KEY @"events" +#define FBSDK_APPEVENTSSTATE_NUMSKIPPED_KEY @"numSkipped" +#define FBSDK_APPEVENTSSTATE_TOKENSTRING_KEY @"tokenString" +#define FBSDK_APPEVENTSTATE_RECEIPTDATA_KEY @"receipt_data" +#define FBSDK_APPEVENTSTATE_RECEIPTID_KEY @"receipt_id" + +@implementation FBSDKAppEventsState +{ + NSMutableArray *_mutableEvents; +} + +- (instancetype)initWithToken:(NSString *)tokenString appID:(NSString *)appID +{ + if ((self = [super init])) { + _tokenString = [tokenString copy]; + _appID = [appID copy]; + _mutableEvents = [NSMutableArray array]; + } + return self; +} + +- (instancetype)copyWithZone:(NSZone *)zone +{ + FBSDKAppEventsState *copy = [[FBSDKAppEventsState allocWithZone:zone] initWithToken:_tokenString appID:_appID]; + if (copy) { + [copy->_mutableEvents addObjectsFromArray:_mutableEvents]; + copy->_numSkipped = _numSkipped; + } + return copy; +} + +#pragma mark - NSCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder +{ + NSString *appID = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_APPEVENTSSTATE_APPID_KEY]; + NSString *tokenString = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_APPEVENTSSTATE_TOKENSTRING_KEY]; + NSArray *events = [decoder decodeObjectOfClass:[NSArray class] forKey:FBSDK_APPEVENTSSTATE_EVENTS_KEY]; + NSUInteger numSkipped = [[decoder decodeObjectOfClass:[NSNumber class] forKey:FBSDK_APPEVENTSSTATE_NUMSKIPPED_KEY] unsignedIntegerValue]; + + if ((self = [self initWithToken:tokenString appID:appID])) { + _mutableEvents = [NSMutableArray arrayWithArray:events]; + _numSkipped = numSkipped; + } + return self; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:_appID forKey:FBSDK_APPEVENTSSTATE_APPID_KEY]; + [encoder encodeObject:_tokenString forKey:FBSDK_APPEVENTSSTATE_TOKENSTRING_KEY]; + [encoder encodeObject:@(_numSkipped) forKey:FBSDK_APPEVENTSSTATE_NUMSKIPPED_KEY]; + [encoder encodeObject:_mutableEvents forKey:FBSDK_APPEVENTSSTATE_EVENTS_KEY]; +} + +#pragma mark - Implementation + +- (NSArray *)events +{ + return [_mutableEvents copy]; +} + +- (void)addEventsFromAppEventState:(FBSDKAppEventsState *)appEventsState +{ + NSArray *toAdd = appEventsState->_mutableEvents; + NSInteger excess = _mutableEvents.count + toAdd.count - FBSDK_APPEVENTSSTATE_MAX_EVENTS; + if (excess > 0) { + NSInteger range = FBSDK_APPEVENTSSTATE_MAX_EVENTS - _mutableEvents.count; + toAdd = [toAdd subarrayWithRange:NSMakeRange(0, range)]; + _numSkipped += excess; + } + + [_mutableEvents addObjectsFromArray:toAdd]; +} + +- (void)addEvent:(NSDictionary *)eventDictionary + isImplicit:(BOOL)isImplicit { + if (_mutableEvents.count >= FBSDK_APPEVENTSSTATE_MAX_EVENTS) { + _numSkipped++; + } else { + [_mutableEvents addObject:@{ + @"event" : [eventDictionary mutableCopy], + FBSDK_APPEVENTSTATE_ISIMPLICIT_KEY : @(isImplicit) + }]; + } +} + +- (NSString *)extractReceiptData { + NSMutableString *receipts_string = [NSMutableString string]; + NSInteger transactionId = 1; + for (NSMutableDictionary* events in _mutableEvents) { + NSMutableDictionary *event = events[@"event"]; + + NSString* receipt = event[@"receipt_data"]; + // Add receipt id as the identifier for receipt data in event parameter. + // Receipt data will be sent as post parameter rather than the event parameter + if (receipt) { + NSString* idKey = [NSString stringWithFormat:@"receipt_%ld", (long)transactionId]; + event[FBSDK_APPEVENTSTATE_RECEIPTID_KEY] = idKey; + NSString* receiptWithId = [NSString stringWithFormat:@"%@::%@;;;", idKey, receipt]; + [receipts_string appendString:receiptWithId]; + transactionId++; + } + } + return receipts_string; +} + +- (BOOL)areAllEventsImplicit +{ + for (NSDictionary *event in _mutableEvents) { + if (![[event valueForKey:FBSDK_APPEVENTSTATE_ISIMPLICIT_KEY] boolValue]) { + return NO; + } + } + return YES; +} + +- (BOOL)isCompatibleWithAppEventsState:(FBSDKAppEventsState *)appEventsState +{ + return ([self isCompatibleWithTokenString:appEventsState.tokenString appID:appEventsState.appID]); +} + +- (BOOL)isCompatibleWithTokenString:(NSString *)tokenString appID:(NSString *)appID +{ + // token strings can be nil (e.g., no user token) but appIDs should not. + BOOL tokenCompatible = ([self.tokenString isEqualToString:tokenString] || + (self.tokenString == nil && tokenString == nil)); + return (tokenCompatible && + [self.appID isEqualToString:appID]); +} + +- (NSString *)JSONStringForEvents:(BOOL)includeImplicitEvents +{ + [FBSDKEventDeactivationManager processEvents:_mutableEvents]; + + NSMutableArray *events = [[NSMutableArray alloc] initWithCapacity:_mutableEvents.count]; + for (NSDictionary *eventAndImplicitFlag in _mutableEvents) { + if (!includeImplicitEvents && [eventAndImplicitFlag[FBSDK_APPEVENTSTATE_ISIMPLICIT_KEY] boolValue]) { + continue; + } + NSMutableDictionary *event = eventAndImplicitFlag[@"event"]; + NSAssert(event != nil, @"event cannot be nil"); + [event removeObjectForKey:FBSDK_APPEVENTSTATE_RECEIPTDATA_KEY]; + + [events addObject:event]; + } + + return [FBSDKBasicUtility JSONStringForObject:events error:NULL invalidObjectHandler:NULL]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.h new file mode 100644 index 0000000..046ff21 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +@class FBSDKAppEventsState; + +NS_SWIFT_NAME(AppEventsStateManager) +@interface FBSDKAppEventsStateManager : NSObject + ++ (void)clearPersistedAppEventsStates; + +// reads all saved event states, appends the param, and writes them all. ++ (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState; + +// returns the array of saved app event states and deletes them. ++ (NSArray *)retrievePersistedAppEventsStates; + + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.m new file mode 100644 index 0000000..294b558 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.m @@ -0,0 +1,79 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAppEventsStateManager.h" + +#import + +#import "FBSDKAppEventsState.h" +#import "FBSDKAppEventsUtility.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +// A quick optimization to allow returning empty array if we know there are no persisted events. +static BOOL g_canSkipDiskCheck = NO; + +@implementation FBSDKAppEventsStateManager + ++ (void)clearPersistedAppEventsStates +{ + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + logEntry:@"FBSDKAppEvents Persist: Clearing"]; + [[NSFileManager defaultManager] removeItemAtPath:[[self class] filePath] + error:NULL]; + g_canSkipDiskCheck = YES; +} + ++ (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState +{ + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKAppEvents Persist: Writing %lu events", (unsigned long)appEventsState.events.count]; + + if (!appEventsState.events.count) { + return; + } + NSMutableArray *existingEvents = [NSMutableArray arrayWithArray:[[self class] retrievePersistedAppEventsStates]]; + [existingEvents addObject:appEventsState]; + + [NSKeyedArchiver archiveRootObject:existingEvents toFile:[[self class] filePath]]; + g_canSkipDiskCheck = NO; +} + ++ (NSArray *)retrievePersistedAppEventsStates +{ + NSMutableArray *eventsStates = [NSMutableArray array]; + if (!g_canSkipDiskCheck) { + [eventsStates addObjectsFromArray:[NSKeyedUnarchiver unarchiveObjectWithFile:[[self class] filePath]]]; + + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKAppEvents Persist: Read %lu event states. First state has %lu events", + (unsigned long)eventsStates.count, + (unsigned long)(eventsStates.count > 0 ? ((FBSDKAppEventsState *)eventsStates[0]).events.count : 0)]; + [[self class] clearPersistedAppEventsStates]; + } + return eventsStates; +} + +#pragma mark - Private Helpers + ++ (NSString *)filePath +{ + return [FBSDKBasicUtility persistenceFilePath:@"com-facebook-sdk-AppEventsPersistedEvents.json"]; +} +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.h new file mode 100644 index 0000000..6b0baa2 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.h @@ -0,0 +1,66 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +@class FBSDKAccessToken; + +typedef NS_ENUM(NSUInteger, FBSDKAdvertisingTrackingStatus) +{ + FBSDKAdvertisingTrackingAllowed, + FBSDKAdvertisingTrackingDisallowed, + FBSDKAdvertisingTrackingUnspecified +} NS_SWIFT_NAME(AppEventsUtility.AdvertisingTrackingStatus); + +typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushReason) +{ + FBSDKAppEventsFlushReasonExplicit, + FBSDKAppEventsFlushReasonTimer, + FBSDKAppEventsFlushReasonSessionChange, + FBSDKAppEventsFlushReasonPersistedEvents, + FBSDKAppEventsFlushReasonEventThreshold, + FBSDKAppEventsFlushReasonEagerlyFlushingEvent +} NS_SWIFT_NAME(AppEventsUtility.FlushReason); + +NS_SWIFT_NAME(AppEventsUtility) +@interface FBSDKAppEventsUtility : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +@property (class, nonatomic, copy, readonly) NSString *advertiserID; +@property (class, nonatomic, assign, readonly) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; +@property (class, nonatomic, strong, readonly) NSString *attributionID; +@property (class, nonatomic, assign, readonly) long unixTimeNow; +@property (class, nonatomic, assign, readonly) BOOL isDebugBuild; + ++ (NSMutableDictionary *)activityParametersDictionaryForEvent:(NSString *)eventCategory + implicitEventsOnly:(BOOL)implicitEventsOnly + shouldAccessAdvertisingID:(BOOL)shouldAccessAdvertisingID; + ++ (void)ensureOnMainThread:(NSString *)methodName className:(NSString *)className; ++ (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; ++ (void)logAndNotify:(NSString *)msg allowLogAsDeveloperError:(BOOL)allowLogAsDeveloperError; ++ (void)logAndNotify:(NSString *)msg; ++ (NSString *)tokenStringToUseFor:(FBSDKAccessToken *)token; ++ (BOOL)validateIdentifier:(NSString *)identifier; ++ (id)getVariable:(NSString *)variableName fromInstance:(NSObject *)instance; ++ (NSNumber *)getNumberValue:(NSString *)text; ++ (BOOL)isSensitiveUserData:(NSString *)text; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.m new file mode 100644 index 0000000..a353aa5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.m @@ -0,0 +1,430 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAppEventsUtility.h" + +#import + +#import + +#import "FBSDKAccessToken.h" +#import "FBSDKAppEvents.h" +#import "FBSDKAppEventsDeviceInfo.h" +#import "FBSDKConstants.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKError.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" +#import "FBSDKTimeSpentData.h" + +#define FBSDK_APPEVENTSUTILITY_ANONYMOUSIDFILENAME @"com-facebook-sdk-PersistedAnonymousID.json" +#define FBSDK_APPEVENTSUTILITY_ANONYMOUSID_KEY @"anon_id" +#define FBSDK_APPEVENTSUTILITY_MAX_IDENTIFIER_LENGTH 40 + +@implementation FBSDKAppEventsUtility + ++ (NSMutableDictionary *)activityParametersDictionaryForEvent:(NSString *)eventCategory + implicitEventsOnly:(BOOL)implicitEventsOnly + shouldAccessAdvertisingID:(BOOL)shouldAccessAdvertisingID { + NSMutableDictionary *parameters = [NSMutableDictionary dictionary]; + parameters[@"event"] = eventCategory; + +#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0 + NSString *attributionID = [[self class] attributionID]; // Only present on iOS 6 and below. + [FBSDKBasicUtility dictionary:parameters setObject:attributionID forKey:@"attribution"]; +#endif + + if (!implicitEventsOnly && shouldAccessAdvertisingID) { + NSString *advertiserID = [[self class] advertiserID]; + [FBSDKBasicUtility dictionary:parameters setObject:advertiserID forKey:@"advertiser_id"]; + } + + parameters[FBSDK_APPEVENTSUTILITY_ANONYMOUSID_KEY] = [FBSDKBasicUtility anonymousID]; + + FBSDKAdvertisingTrackingStatus advertisingTrackingStatus = [[self class] advertisingTrackingStatus]; + if (advertisingTrackingStatus != FBSDKAdvertisingTrackingUnspecified) { + BOOL allowed = (advertisingTrackingStatus == FBSDKAdvertisingTrackingAllowed); + parameters[@"advertiser_tracking_enabled"] = @(allowed).stringValue; + } + if (advertisingTrackingStatus == FBSDKAdvertisingTrackingAllowed) { + NSString *userData = [FBSDKAppEvents getUserData]; + if (userData){ + parameters[@"ud"] = userData; + } + } + + parameters[@"application_tracking_enabled"] = @(!FBSDKSettings.limitEventAndDataUsage).stringValue; + + NSString *userID = [FBSDKAppEvents userID]; + if (userID) { + parameters[@"app_user_id"] = userID; + } + + [FBSDKAppEventsDeviceInfo extendDictionaryWithDeviceInfo:parameters]; + + static dispatch_once_t fetchBundleOnce; + static NSMutableArray *urlSchemes; + + dispatch_once(&fetchBundleOnce, ^{ + NSBundle *mainBundle = [NSBundle mainBundle]; + urlSchemes = [[NSMutableArray alloc] init]; + for (NSDictionary *fields in [mainBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]) { + NSArray *schemesForType = fields[@"CFBundleURLSchemes"]; + if (schemesForType) { + [urlSchemes addObjectsFromArray:schemesForType]; + } + } + }); + + if (urlSchemes.count > 0) { + parameters[@"url_schemes"] = [FBSDKBasicUtility JSONStringForObject:urlSchemes error:NULL invalidObjectHandler:NULL]; + } + + return parameters; +} + ++ (NSString *)advertiserID +{ + if (!FBSDKSettings.isAdvertiserIDCollectionEnabled) { + return nil; + } + + NSString *result = nil; + + Class ASIdentifierManagerClass = fbsdkdfl_ASIdentifierManagerClass(); + if ([ASIdentifierManagerClass class]) { + ASIdentifierManager *manager = [ASIdentifierManagerClass sharedManager]; + result = manager.advertisingIdentifier.UUIDString; + } + + return result; +} + ++ (FBSDKAdvertisingTrackingStatus)advertisingTrackingStatus +{ + static dispatch_once_t fetchAdvertisingTrackingStatusOnce; + static FBSDKAdvertisingTrackingStatus status; + + dispatch_once(&fetchAdvertisingTrackingStatusOnce, ^{ + status = FBSDKAdvertisingTrackingUnspecified; + Class ASIdentifierManagerClass = fbsdkdfl_ASIdentifierManagerClass(); + if ([ASIdentifierManagerClass class]) { + ASIdentifierManager *manager = [ASIdentifierManagerClass sharedManager]; + if (manager) { + status = manager.advertisingTrackingEnabled ? FBSDKAdvertisingTrackingAllowed : FBSDKAdvertisingTrackingDisallowed; + } + } + }); + + return status; +} + ++ (NSString *)attributionID +{ +#if TARGET_OS_TV + return nil; +#else + return [UIPasteboard pasteboardWithName:@"fb_app_attribution" create:NO].string; +#endif +} + +#pragma mark - Internal, for testing + ++ (void)clearLibraryFiles +{ + [[NSFileManager defaultManager] removeItemAtPath:[[self class] persistenceFilePath:FBSDK_APPEVENTSUTILITY_ANONYMOUSIDFILENAME] + error:NULL]; + [[NSFileManager defaultManager] removeItemAtPath:[[self class] persistenceFilePath:FBSDKTimeSpentFilename] + error:NULL]; +} + ++ (void)ensureOnMainThread:(NSString *)methodName className:(NSString *)className +{ + FBSDKConditionalLog([NSThread isMainThread], + FBSDKLoggingBehaviorDeveloperErrors, + @"*** <%@, %@> is not called on the main thread. This can lead to errors.", + methodName, + className); +} + ++ (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason +{ + NSString *result = @"Unknown"; + switch (flushReason) { + case FBSDKAppEventsFlushReasonExplicit: + result = @"Explicit"; + break; + case FBSDKAppEventsFlushReasonTimer: + result = @"Timer"; + break; + case FBSDKAppEventsFlushReasonSessionChange: + result = @"SessionChange"; + break; + case FBSDKAppEventsFlushReasonPersistedEvents: + result = @"PersistedEvents"; + break; + case FBSDKAppEventsFlushReasonEventThreshold: + result = @"EventCountThreshold"; + break; + case FBSDKAppEventsFlushReasonEagerlyFlushingEvent: + result = @"EagerlyFlushingEvent"; + break; + } + return result; +} + ++ (void)logAndNotify:(NSString *)msg +{ + [[self class] logAndNotify:msg allowLogAsDeveloperError:YES]; +} + ++ (void)logAndNotify:(NSString *)msg allowLogAsDeveloperError:(BOOL)allowLogAsDeveloperError +{ + NSString *behaviorToLog = FBSDKLoggingBehaviorAppEvents; + if (allowLogAsDeveloperError) { + if ([FBSDKSettings.loggingBehaviors containsObject:FBSDKLoggingBehaviorDeveloperErrors]) { + // Rather than log twice, prefer 'DeveloperErrors' if it's set over AppEvents. + behaviorToLog = FBSDKLoggingBehaviorDeveloperErrors; + } + } + + [FBSDKLogger singleShotLogEntry:behaviorToLog logEntry:msg]; + NSError *error = [FBSDKError errorWithCode:FBSDKErrorAppEventsFlush message:msg]; + [[NSNotificationCenter defaultCenter] postNotificationName:FBSDKAppEventsLoggingResultNotification object:error]; +} + ++ (BOOL)matchString:(NSString *)string + firstCharacterSet:(NSCharacterSet *)firstCharacterSet +restOfStringCharacterSet:(NSCharacterSet *)restOfStringCharacterSet +{ + if (string.length == 0) { + return NO; + } + for (NSUInteger i = 0; i < string.length; i++) { + const unichar c = [string characterAtIndex:i]; + if (i == 0) { + if (![firstCharacterSet characterIsMember:c]) { + return NO; + } + } else { + if (![restOfStringCharacterSet characterIsMember:c]) { + return NO; + } + } + } + return YES; +} + ++ (BOOL)regexValidateIdentifier:(NSString *)identifier +{ + static NSCharacterSet *firstCharacterSet; + static NSCharacterSet *restOfStringCharacterSet; + static dispatch_once_t onceToken; + static NSMutableSet *cachedIdentifiers; + dispatch_once(&onceToken, ^{ + NSMutableCharacterSet *mutableSet = [NSMutableCharacterSet alphanumericCharacterSet]; + [mutableSet addCharactersInString:@"_"]; + firstCharacterSet = [mutableSet copy]; + + [mutableSet addCharactersInString:@"- "]; + restOfStringCharacterSet = [mutableSet copy]; + cachedIdentifiers = [[NSMutableSet alloc] init]; + }); + + @synchronized(self) { + if (![cachedIdentifiers containsObject:identifier]) { + if ([self matchString:identifier + firstCharacterSet:firstCharacterSet + restOfStringCharacterSet:restOfStringCharacterSet]) { + [cachedIdentifiers addObject:identifier]; + } else { + return NO; + } + } + } + return YES; +} + ++ (BOOL)validateIdentifier:(NSString *)identifier +{ + if (identifier == nil || identifier.length == 0 || identifier.length > FBSDK_APPEVENTSUTILITY_MAX_IDENTIFIER_LENGTH || ![[self class] regexValidateIdentifier:identifier]) { + [[self class] logAndNotify:[NSString stringWithFormat:@"Invalid identifier: '%@'. Must be between 1 and %d characters, and must be contain only alphanumerics, _, - or spaces, starting with alphanumeric or _.", + identifier, FBSDK_APPEVENTSUTILITY_MAX_IDENTIFIER_LENGTH]]; + return NO; + } + + return YES; +} + +// Given a candidate token (which may be nil), find the real token to string to use. +// Precedence: 1) provided token, 2) current token, 3) app | client token, 4) fully anonymous session. ++ (NSString *)tokenStringToUseFor:(FBSDKAccessToken *)token +{ + if (!token) { + token = [FBSDKAccessToken currentAccessToken]; + } + + NSString *appID = [FBSDKAppEvents loggingOverrideAppID] ?: token.appID ?: [FBSDKSettings appID]; + NSString *tokenString = token.tokenString; + if (!tokenString || ![appID isEqualToString:token.appID]) { + // If there's an logging override app id present, then we don't want to use the client token since the client token + // is intended to match up with the primary app id (and AppEvents doesn't require a client token). + NSString *clientTokenString = [FBSDKSettings clientToken]; + if (clientTokenString && appID && [appID isEqualToString:token.appID]){ + tokenString = [NSString stringWithFormat:@"%@|%@", appID, clientTokenString]; + } else if (appID) { + tokenString = nil; + } + } + return tokenString; +} + ++ (long)unixTimeNow +{ + return (long)round([NSDate date].timeIntervalSince1970); +} + ++ (id)getVariable:(NSString *)variableName fromInstance:(NSObject *)instance { + Ivar ivar = class_getInstanceVariable([instance class], variableName.UTF8String); + if (ivar != NULL) { + const char *encoding = ivar_getTypeEncoding(ivar); + if (encoding != NULL && encoding[0] == '@') { + return object_getIvar(instance, ivar); + } + } + + return nil; +} + ++ (NSNumber *)getNumberValue:(NSString *)text { + NSNumber *value = @0; + + NSLocale *locale = [NSLocale currentLocale]; + + NSString *ds = [locale objectForKey:NSLocaleDecimalSeparator] ?: @"."; + NSString *gs = [locale objectForKey:NSLocaleGroupingSeparator] ?: @","; + NSString *separators = [ds stringByAppendingString:gs]; + + NSString *regex = [NSString stringWithFormat:@"[+-]?([0-9]+[%1$@]?)?[%1$@]?([0-9]+[%1$@]?)+", separators]; + NSRegularExpression *re = [NSRegularExpression regularExpressionWithPattern:regex + options:0 + error:nil]; + NSTextCheckingResult *match = [re firstMatchInString:text + options:0 + range:NSMakeRange(0, text.length)]; + if (match) { + NSString *validText = [text substringWithRange:match.range]; + NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init]; + formatter.locale = locale; + formatter.numberStyle = NSNumberFormatterDecimalStyle; + + value = [formatter numberFromString:validText]; + if (nil == value) { + value = @(validText.floatValue); + } + } + + return value; +} + ++ (BOOL)isDebugBuild { +#if TARGET_IPHONE_SIMULATOR + return YES; +#else + BOOL isDevelopment = NO; + + // There is no provisioning profile in AppStore Apps. + @try + { + NSData *data = [NSData dataWithContentsOfFile:[NSBundle.mainBundle pathForResource:@"embedded" ofType:@"mobileprovision"]]; + if (data) { + const char *bytes = [data bytes]; + NSMutableString *profile = [[NSMutableString alloc] initWithCapacity:data.length]; + for (NSUInteger i = 0; i < data.length; i++) { + [profile appendFormat:@"%c", bytes[i]]; + } + // Look for debug value, if detected we're in a development build. + NSString *cleared = [[profile componentsSeparatedByCharactersInSet:NSCharacterSet.whitespaceAndNewlineCharacterSet] componentsJoinedByString:@""]; + isDevelopment = ([cleared rangeOfString:@"get-task-allow"].length > 0); + } + + return isDevelopment; + } + @catch(NSException *exception) + { + + } + + return NO; +#endif +} + ++ (BOOL)isSensitiveUserData:(NSString *)text +{ + if (0 == text.length) { + return NO; + } + + return [self isEmailAddress:text] || [self isCreditCardNumber:text]; +} + ++ (BOOL)isCreditCardNumber:(NSString *)text +{ + text = [[text componentsSeparatedByCharactersInSet:[NSCharacterSet.decimalDigitCharacterSet invertedSet]] componentsJoinedByString:@""]; + + if (text.doubleValue == 0) { + return NO; + } + + if (text.length < 9 || text.length > 21) { + return NO; + } + + const char *chars = [text cStringUsingEncoding:NSUTF8StringEncoding]; + if (NULL == chars) { + return NO; + } + + BOOL isOdd = YES; + int oddSum = 0; + int evenSum = 0; + + for (int i = (int)text.length - 1; i >= 0; i--) { + int digit = chars[i] - '0'; + + if (isOdd) + oddSum += digit; + else + evenSum += digit / 5 + (2 * digit) % 10; + + isOdd = !isOdd; + } + + return ((oddSum + evenSum) % 10 == 0); +} + ++ (BOOL)isEmailAddress:(NSString *)text +{ + NSString *pattern = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; + NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:pattern options:NSRegularExpressionCaseInsensitive error:nil]; + NSUInteger matches = [regex numberOfMatchesInString:text options:0 range:NSMakeRange(0, [text length])]; + return matches > 0; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.h new file mode 100644 index 0000000..79eb205 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import +#import + +NS_SWIFT_NAME(HybridAppEventsScriptMessageHandler) +@interface FBSDKHybridAppEventsScriptMessageHandler : NSObject + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.m new file mode 100644 index 0000000..40709d9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.m @@ -0,0 +1,74 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKHybridAppEventsScriptMessageHandler.h" + +#if SWIFT_PACKAGE +#import "FBSDKAppEvents.h" +#else +#import +#endif + +#import "FBSDKAppEvents+Internal.h" + +NSString *const FBSDKAppEventsWKWebViewMessagesPixelReferralParamKey = @"_fb_pixel_referral_id"; + +@class WKUserContentController; + +@implementation FBSDKHybridAppEventsScriptMessageHandler + +- (void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message { + + if ([message.name isEqualToString:FBSDKAppEventsWKWebViewMessagesHandlerKey]) { + NSString *event = message.body[FBSDKAppEventsWKWebViewMessagesEventKey]; + if (event.length > 0) { + NSString *stringedParams = message.body[FBSDKAppEventsWKWebViewMessagesParamsKey]; + NSMutableDictionary *params = nil; + NSError *jsonParseError = nil; + if ([stringedParams isKindOfClass:[NSString class]]) { + params = [NSJSONSerialization JSONObjectWithData:[stringedParams dataUsingEncoding:NSUTF8StringEncoding] + options:NSJSONReadingMutableContainers + error:&jsonParseError + ]; + } + NSString *pixelID = message.body[FBSDKAppEventsWKWebViewMessagesPixelIDKey]; + if (pixelID == nil) { + [FBSDKAppEventsUtility logAndNotify:@"Can't bridge an event without a referral Pixel ID. Check your webview Pixel configuration."]; + return; + } + if (jsonParseError != nil || ![params isKindOfClass:[NSDictionary class]] || params == nil) { + [FBSDKAppEventsUtility logAndNotify:@"Could not find parameters for your Pixel request. Check your webview Pixel configuration."]; + params = [[NSMutableDictionary alloc] initWithObjectsAndKeys:pixelID, FBSDKAppEventsWKWebViewMessagesPixelReferralParamKey, nil]; + } + else { + params[FBSDKAppEventsWKWebViewMessagesPixelReferralParamKey] = pixelID; + } + [FBSDKAppEvents logInternalEvent:event + parameters:params + isImplicitlyLogged:NO]; + } + } +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.h new file mode 100644 index 0000000..aae6d63 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.h @@ -0,0 +1,26 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +// Class to encapsulate implicit logging of purchase events +NS_SWIFT_NAME(PaymentObserver) +@interface FBSDKPaymentObserver : NSObject ++ (void)startObservingTransactions; ++ (void)stopObservingTransactions; +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.m new file mode 100644 index 0000000..95ee563 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.m @@ -0,0 +1,547 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKPaymentObserver.h" + +#import + +#import "FBSDKCoreKit+Internal.h" + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +static NSString *const FBSDKPaymentObserverOriginalTransactionKey = @"com.facebook.appevents.PaymentObserver.originalTransaction"; +static NSString *const FBSDKPaymentObserverDelimiter = @","; + +static NSString *const FBSDKAppEventParameterImplicitlyLoggedPurchase = @"_implicitlyLogged"; +static NSString *const FBSDKAppEventNamePurchaseFailed = @"fb_mobile_purchase_failed"; +static NSString *const FBSDKAppEventNamePurchaseRestored = @"fb_mobile_purchase_restored"; +static NSString *const FBSDKAppEventParameterNameInAppPurchaseType = @"fb_iap_product_type"; +static NSString *const FBSDKAppEventParameterNameProductTitle = @"fb_content_title"; +static NSString *const FBSDKAppEventParameterNameOriginalTransactionID = @"fb_original_transaction_id"; +static NSString *const FBSDKAppEventParameterNameTransactionID = @"fb_transaction_id"; +static NSString *const FBSDKAppEventParameterNameTransactionDate = @"fb_transaction_date"; +static NSString *const FBSDKAppEventParameterNameSubscriptionPeriod = @"fb_iap_subs_period"; +static NSString *const FBSDKAppEventParameterNameIsStartTrial = @"fb_iap_is_start_trial"; +static NSString *const FBSDKAppEventParameterNameHasFreeTrial = @"fb_iap_has_free_trial"; +static NSString *const FBSDKAppEventParameterNameTrialPeriod = @"fb_iap_trial_period"; +static NSString *const FBSDKAppEventParameterNameTrialPrice = @"fb_iap_trial_price"; +static int const FBSDKMaxParameterValueLength = 100; +static NSMutableArray *g_pendingRequestors; + +static NSString *const FBSDKGateKeeperAppEventsIfAutoLogSubs = @"app_events_if_auto_log_subs"; + +@interface FBSDKPaymentProductRequestor : NSObject + +@property (nonatomic, retain) SKPaymentTransaction *transaction; + +- (instancetype)initWithTransaction:(SKPaymentTransaction*)transaction; +- (void)resolveProducts; + +@end + +@interface FBSDKPaymentObserver() +@end + +@implementation FBSDKPaymentObserver +{ + BOOL _observingTransactions; +} + ++ (void)startObservingTransactions +{ + [[self singleton] startObservingTransactions]; +} + ++ (void)stopObservingTransactions +{ + [[self singleton] stopObservingTransactions]; +} + +#pragma mark - Internal Methods + ++ (FBSDKPaymentObserver *)singleton +{ + static dispatch_once_t pred; + static FBSDKPaymentObserver *shared = nil; + + dispatch_once(&pred, ^{ + shared = [[FBSDKPaymentObserver alloc] init]; + }); + return shared; +} + +- (instancetype) init +{ + self = [super init]; + if (self) { + _observingTransactions = NO; + } + return self; +} + +- (void)startObservingTransactions +{ + @synchronized (self) { + if (!_observingTransactions) { + [(SKPaymentQueue *)[fbsdkdfl_SKPaymentQueueClass() defaultQueue] addTransactionObserver:self]; + _observingTransactions = YES; + } + } +} + +- (void)stopObservingTransactions +{ + @synchronized (self) { + if (_observingTransactions) { + [(SKPaymentQueue *)[fbsdkdfl_SKPaymentQueueClass() defaultQueue] removeTransactionObserver:self]; + _observingTransactions = NO; + } + } +} + +- (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions +{ + for (SKPaymentTransaction *transaction in transactions) { + switch (transaction.transactionState) { + case SKPaymentTransactionStatePurchasing: + case SKPaymentTransactionStatePurchased: + case SKPaymentTransactionStateFailed: + case SKPaymentTransactionStateRestored: + [self handleTransaction:transaction]; + break; + case SKPaymentTransactionStateDeferred: + break; + } + } +} + +- (void)handleTransaction:(SKPaymentTransaction *)transaction +{ + FBSDKPaymentProductRequestor *productRequest = [[FBSDKPaymentProductRequestor alloc] initWithTransaction:transaction]; + [productRequest resolveProducts]; +} + +@end + +@interface FBSDKPaymentProductRequestor() +@property (nonatomic, retain) SKProductsRequest *productRequest; +@end + +@implementation FBSDKPaymentProductRequestor +{ + NSMutableSet *_originalTransactionSet; + NSSet *_eventsWithReceipt; + NSDateFormatter *_formatter; +} + ++ (void)initialize +{ + if ([self class] == [FBSDKPaymentProductRequestor class]) { + g_pendingRequestors = [[NSMutableArray alloc] init]; + } +} + +- (instancetype)initWithTransaction:(SKPaymentTransaction*)transaction +{ + self = [super init]; + if (self) { + _transaction = transaction; + _formatter = [[NSDateFormatter alloc] init]; + _formatter.dateFormat = @"yyyy-MM-dd HH:mm:ssZ"; + NSString *data = [[NSUserDefaults standardUserDefaults] stringForKey:FBSDKPaymentObserverOriginalTransactionKey]; + _eventsWithReceipt = [NSSet setWithArray:@[FBSDKAppEventNamePurchased, FBSDKAppEventNameSubscribe, + FBSDKAppEventNameStartTrial]]; + if (data) { + _originalTransactionSet = [NSMutableSet setWithArray:[data componentsSeparatedByString:FBSDKPaymentObserverDelimiter]]; + } else { + _originalTransactionSet = [[NSMutableSet alloc] init]; + } + } + return self; +} + +- (void)setProductRequest:(SKProductsRequest *)productRequest +{ + if (productRequest != _productRequest) { + if (_productRequest) { + _productRequest.delegate = nil; + } + _productRequest = productRequest; + } +} + +- (void)resolveProducts +{ + NSString *productId = self.transaction.payment.productIdentifier; + NSSet *productIdentifiers = [NSSet setWithObjects:productId, nil]; + self.productRequest = [[fbsdkdfl_SKProductsRequestClass() alloc] initWithProductIdentifiers:productIdentifiers]; + self.productRequest.delegate = self; + @synchronized(g_pendingRequestors) { + [g_pendingRequestors addObject:self]; + } + [self.productRequest start]; +} + +- (NSString *)getTruncatedString:(NSString *)inputString +{ + if (!inputString) { + return @""; + } + + return inputString.length <= FBSDKMaxParameterValueLength ? inputString : [inputString substringToIndex:FBSDKMaxParameterValueLength]; +} + +- (void)logTransactionEvent:(SKProduct *)product +{ + if ([self isSubscription:product] && + [FBSDKGateKeeperManager boolForKey:FBSDKGateKeeperAppEventsIfAutoLogSubs + defaultValue:NO]) { + [self logImplicitSubscribeTransaction:self.transaction ofProduct:product]; + } else { + [self logImplicitPurchaseTransaction:self.transaction ofProduct:product]; + } +} + +- (BOOL)isSubscription:(SKProduct *)product +{ +#if !TARGET_OS_TV +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_1 + if (@available(iOS 11.2, *)) { + return (product.subscriptionPeriod != nil) && ((unsigned long)product.subscriptionPeriod.numberOfUnits > 0); + } +#endif +#endif + return NO; +} + +- (NSMutableDictionary *)getEventParametersOfProduct:(SKProduct *)product + withTransaction:(SKPaymentTransaction *)transaction +{ + NSString *transactionID = nil; + NSString *transactionDate = nil; + switch (transaction.transactionState) { + case SKPaymentTransactionStatePurchasing: + break; + case SKPaymentTransactionStatePurchased: + transactionID = self.transaction.transactionIdentifier; + transactionDate = [_formatter stringFromDate:self.transaction.transactionDate]; + break; + case SKPaymentTransactionStateFailed: + break; + case SKPaymentTransactionStateRestored: + transactionDate = [_formatter stringFromDate:self.transaction.transactionDate]; + break; + default: break; + } + SKPayment *payment = transaction.payment; + NSMutableDictionary *eventParameters = [NSMutableDictionary dictionaryWithDictionary: @{ + FBSDKAppEventParameterNameContentID: payment.productIdentifier ?: @"", + FBSDKAppEventParameterNameNumItems: @(payment.quantity), + FBSDKAppEventParameterNameTransactionDate: transactionDate ?: @"", + }]; + if (product) { + [eventParameters addEntriesFromDictionary: @{ + FBSDKAppEventParameterNameCurrency: [product.priceLocale objectForKey:NSLocaleCurrencyCode], + FBSDKAppEventParameterNameNumItems: @(payment.quantity), + FBSDKAppEventParameterNameProductTitle: [self getTruncatedString:product.localizedTitle], + FBSDKAppEventParameterNameDescription: [self getTruncatedString:product.localizedDescription], + }]; + if (transactionID) { + eventParameters[FBSDKAppEventParameterNameTransactionID] = transactionID; + } + } + +#if !TARGET_OS_TV +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_1 + if (@available(iOS 11.2, *)) { + if ([self isSubscription:product]) { + // subs inapp + eventParameters[FBSDKAppEventParameterNameSubscriptionPeriod] = [self durationOfSubscriptionPeriod:product.subscriptionPeriod]; + eventParameters[FBSDKAppEventParameterNameInAppPurchaseType] = @"subs"; + eventParameters[FBSDKAppEventParameterNameIsStartTrial] = [self isStartTrial:transaction ofProduct:product] ? @"1" : @"0"; + // trial information for subs + SKProductDiscount *discount = product.introductoryPrice; + if (discount) { + if (discount.paymentMode == SKProductDiscountPaymentModeFreeTrial) { + eventParameters[FBSDKAppEventParameterNameHasFreeTrial] = @"1"; + } else { + eventParameters[FBSDKAppEventParameterNameHasFreeTrial] = @"0"; + } + eventParameters[FBSDKAppEventParameterNameTrialPeriod] = [self durationOfSubscriptionPeriod:discount.subscriptionPeriod]; + eventParameters[FBSDKAppEventParameterNameTrialPrice] = discount.price; + } + } else { + eventParameters[FBSDKAppEventParameterNameInAppPurchaseType] = @"inapp"; + } + } +#endif +#endif + return eventParameters; +} + +- (void)appendOriginalTransactionID:(NSString *)transactionID +{ + if (!transactionID) { + return; + } + [_originalTransactionSet addObject:transactionID]; + [[NSUserDefaults standardUserDefaults] setObject:[[_originalTransactionSet allObjects] componentsJoinedByString:FBSDKPaymentObserverDelimiter] + forKey:FBSDKPaymentObserverOriginalTransactionKey]; +} + +- (void)clearOriginalTransactionID:(NSString *)transactionID +{ + if (!transactionID) { + return; + } + [_originalTransactionSet removeObject:transactionID]; + [[NSUserDefaults standardUserDefaults] setObject:[[_originalTransactionSet allObjects] componentsJoinedByString:FBSDKPaymentObserverDelimiter] + forKey:FBSDKPaymentObserverOriginalTransactionKey]; +} + +- (BOOL)isStartTrial:(SKPaymentTransaction *)transaction + ofProduct:(SKProduct *)product +{ +#if !TARGET_OS_TV +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_1 +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_4 +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_12_1 + // promotional offer starting from iOS 12.2 + if (@available(iOS 12.2, *)) { + SKPaymentDiscount *paymentDiscount = transaction.payment.paymentDiscount; + if (paymentDiscount) { + NSArray *discounts = product.discounts; + for (SKProductDiscount *discount in discounts) { + if (discount.paymentMode == SKProductDiscountPaymentModeFreeTrial && + [paymentDiscount.identifier isEqualToString:discount.identifier]) { + return YES; + } + } + } + } +#endif +#endif + // introductory offer starting from iOS 11.2 + if (@available(iOS 11.2, *)) { + if (product.introductoryPrice && + product.introductoryPrice.paymentMode == SKProductDiscountPaymentModeFreeTrial) { + NSString *originalTransactionID = transaction.originalTransaction.transactionIdentifier; + // only consider the very first trial transaction as start trial + if (!originalTransactionID) { + return YES; + } + } + } +#endif +#endif + return NO; +} + +- (BOOL)hasStartTrial:(SKProduct *)product +{ +#if !TARGET_OS_TV +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_1 +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_4 +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_12_1 + // promotional offer starting from iOS 12.2 + if (@available(iOS 12.2, *)) { + NSArray *discounts = product.discounts; + for (SKProductDiscount *discount in discounts) { + if (discount.paymentMode == SKProductDiscountPaymentModeFreeTrial) { + return YES; + } + } + } +#endif +#endif + // introductory offer starting from iOS 11.2 + if (@available(iOS 11.2, *)) { + if (product.introductoryPrice && (product.introductoryPrice.paymentMode == SKProductDiscountPaymentModeFreeTrial)) { + return YES; + } + } +#endif +#endif + return NO; +} + +- (NSString *)durationOfSubscriptionPeriod:(id)subcriptionPeriod +{ +#if !TARGET_OS_TV +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_11_1 + if (@available(iOS 11.2, *)) { + if (subcriptionPeriod && [subcriptionPeriod isKindOfClass:[SKProductSubscriptionPeriod class]]) { + SKProductSubscriptionPeriod *period = (SKProductSubscriptionPeriod *)subcriptionPeriod; + NSString *unit = nil; + switch (period.unit) { + case SKProductPeriodUnitDay: unit = @"D"; break; + case SKProductPeriodUnitWeek: unit = @"W"; break; + case SKProductPeriodUnitMonth: unit = @"M"; break; + case SKProductPeriodUnitYear: unit = @"Y"; break; + } + return [NSString stringWithFormat:@"P%lu%@", (unsigned long)period.numberOfUnits, unit]; + } + } +#endif +#endif + return nil; +} + +- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response +{ + NSArray* products = response.products; + NSArray* invalidProductIdentifiers = response.invalidProductIdentifiers; + if (products.count + invalidProductIdentifiers.count != 1) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKPaymentObserver: Expect to resolve one product per request"]; + } + SKProduct *product = nil; + if (products.count) { + product = products[0]; + } + [self logTransactionEvent:product]; +} + +- (void)requestDidFinish:(SKRequest *)request +{ + [self cleanUp]; +} + +- (void)request:(SKRequest *)request didFailWithError:(NSError *)error +{ + [self logTransactionEvent:nil]; + [self cleanUp]; +} + +- (void)cleanUp +{ + @synchronized(g_pendingRequestors) { + [g_pendingRequestors removeObject:self]; + } +} + +- (void)logImplicitSubscribeTransaction:(SKPaymentTransaction *)transaction + ofProduct:(SKProduct *)product +{ + NSString *eventName = nil; + NSString *originalTransactionID = transaction.originalTransaction.transactionIdentifier; + switch (transaction.transactionState) { + case SKPaymentTransactionStatePurchasing: + eventName = @"SubscriptionInitiatedCheckout"; + break; + case SKPaymentTransactionStatePurchased: + if ([self isStartTrial:transaction ofProduct:product]) { + eventName = FBSDKAppEventNameStartTrial; + [self clearOriginalTransactionID:originalTransactionID]; + } else { + if (originalTransactionID && [_originalTransactionSet containsObject:originalTransactionID]) { + return; + } + eventName = FBSDKAppEventNameSubscribe; + [self appendOriginalTransactionID:(originalTransactionID ?: transaction.transactionIdentifier)]; + } + break; + case SKPaymentTransactionStateFailed: + eventName = @"SubscriptionFailed"; + break; + case SKPaymentTransactionStateRestored: + eventName = @"SubscriptionRestore"; + break; + case SKPaymentTransactionStateDeferred: + return; + } + + double totalAmount = 0; + if (product) { + totalAmount = transaction.payment.quantity * product.price.doubleValue; + } + + [self logImplicitTransactionEvent:eventName + valueToSum:totalAmount + parameters:[self getEventParametersOfProduct:product withTransaction:transaction]]; +} + +- (void)logImplicitPurchaseTransaction:(SKPaymentTransaction *)transaction + ofProduct:(SKProduct *)product +{ + NSString *eventName = nil; + switch (transaction.transactionState) { + case SKPaymentTransactionStatePurchasing: + eventName = FBSDKAppEventNameInitiatedCheckout; + break; + case SKPaymentTransactionStatePurchased: + eventName = FBSDKAppEventNamePurchased; + break; + case SKPaymentTransactionStateFailed: + eventName = FBSDKAppEventNamePurchaseFailed; + break; + case SKPaymentTransactionStateRestored: + eventName = FBSDKAppEventNamePurchaseRestored; + break; + case SKPaymentTransactionStateDeferred: + return; + } + + double totalAmount = 0; + if (product) { + totalAmount = transaction.payment.quantity * product.price.doubleValue; + } + + [self logImplicitTransactionEvent:eventName + valueToSum:totalAmount + parameters:[self getEventParametersOfProduct:product withTransaction:transaction]]; +} + +- (void)logImplicitTransactionEvent:(NSString *)eventName + valueToSum:(double)valueToSum + parameters:(NSDictionary *)parameters +{ + NSMutableDictionary *eventParameters = [NSMutableDictionary dictionaryWithDictionary:parameters]; + + if ([_eventsWithReceipt containsObject:eventName]) { + NSData* receipt = [self fetchDeviceReceipt]; + if (receipt) { + NSString *base64encodedReceipt = [receipt base64EncodedStringWithOptions:0]; + eventParameters[@"receipt_data"] = base64encodedReceipt; + } + } + + eventParameters[FBSDKAppEventParameterImplicitlyLoggedPurchase] = @"1"; + [FBSDKAppEvents logEvent:eventName + valueToSum:valueToSum + parameters:eventParameters]; + + // Unless the behavior is set to only allow explicit flushing, we go ahead and flush, since purchase events + // are relatively rare and relatively high value and worth getting across on wire right away. + if ([FBSDKAppEvents flushBehavior] != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonEagerlyFlushingEvent]; + } +} + +// Fetch the current receipt for this application. +- (NSData*)fetchDeviceReceipt +{ + NSURL *receiptURL = [NSBundle bundleForClass:[self class]].appStoreReceiptURL; + NSData *receipt = [NSData dataWithContentsOfURL:receiptURL]; + return receipt; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.h new file mode 100644 index 0000000..0eb583e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +FOUNDATION_EXPORT NSString *const FBSDKTimeSpentFilename; + +// Class to encapsulate persisting of time spent data collected by [FBSDKAppEvents activateApp]. The activate app App Event is +// logged when restore: is called with sufficient time since the last deactivation. +NS_SWIFT_NAME(TimeSpentData) +@interface FBSDKTimeSpentData : NSObject + ++ (void)suspend; ++ (void)restore:(BOOL)calledFromActivateApp; + ++ (void)setSourceApplication:(NSString *)sourceApplication openURL:(NSURL *)url; ++ (void)setSourceApplication:(NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink; ++ (void)registerAutoResetSourceApplication; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.m new file mode 100644 index 0000000..d57c7e9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.m @@ -0,0 +1,319 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKTimeSpentData.h" + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKAppEventsUtility.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfigurationManager.h" +#import "FBSDKSettings.h" + + +// Filename and keys for session length +NSString *const FBSDKTimeSpentFilename = @"com-facebook-sdk-AppEventsTimeSpent.json"; +static NSString *const FBSDKTimeSpentPersistKeySessionSecondsSpent = @"secondsSpentInCurrentSession"; +static NSString *const FBSDKTimeSpentPersistKeySessionNumInterruptions = @"numInterruptions"; +static NSString *const FBSDKTimeSpentPersistKeyLastSuspendTime = @"lastSuspendTime"; +static NSString *const FBSDKTimeSpentPersistKeySessionID = @"sessionID"; + +static NSString *const FBSDKAppEventNameActivatedApp = @"fb_mobile_activate_app"; +static NSString *const FBSDKAppEventNameDeactivatedApp = @"fb_mobile_deactivate_app"; +static NSString *const FBSDKAppEventParameterNameSessionInterruptions = @"fb_mobile_app_interruptions"; +static NSString *const FBSDKAppEventParameterNameTimeBetweenSessions = @"fb_mobile_time_between_sessions"; +static NSString *const FBSDKAppEventParameterNameSessionID = @"_session_id"; + + +static const int SECS_PER_MIN = 60; +static const int SECS_PER_HOUR = 60 * SECS_PER_MIN; +static const int SECS_PER_DAY = 24 * SECS_PER_HOUR; + +static NSString *g_sourceApplication; +static BOOL g_isOpenedFromAppLink; + +// Will be translated and displayed in App Insights. Need to maintain same number and value of quanta on the server. +static const long INACTIVE_SECONDS_QUANTA[] = +{ + 5 * SECS_PER_MIN, + 15 * SECS_PER_MIN, + 30 * SECS_PER_MIN, + 1 * SECS_PER_HOUR, + 6 * SECS_PER_HOUR, + 12 * SECS_PER_HOUR, + 1 * SECS_PER_DAY, + 2 * SECS_PER_DAY, + 3 * SECS_PER_DAY, + 7 * SECS_PER_DAY, + 14 * SECS_PER_DAY, + 21 * SECS_PER_DAY, + 28 * SECS_PER_DAY, + 60 * SECS_PER_DAY, + 90 * SECS_PER_DAY, + 120 * SECS_PER_DAY, + 150 * SECS_PER_DAY, + 180 * SECS_PER_DAY, + 365 * SECS_PER_DAY, + LONG_MAX, // keep as LONG_MAX to guarantee loop will terminate +}; + +/** + * This class encapsulates the notion of an app 'session' - the length of time that the user has + * spent in the app that can be considered a single usage of the app. Apps may be frequently interrupted + * do to other device activity, like a text message, so this class allows those interruptions to be smoothed + * out and the time actually spent in the app excluding this interruption time to be accumulated. Also, + * once a certain amount of time has gone by where the app is not in the foreground, we consider the + * session to be complete, and a new session beginning. When this occurs, we log a 'deactivate app' event + * with the duration of the previous session as the 'value' of this event, along with the number of + * interruptions from that previous session as an event parameter. + */ +@implementation FBSDKTimeSpentData +{ + BOOL _isCurrentlyLoaded; + BOOL _shouldLogActivateEvent; + BOOL _shouldLogDeactivateEvent; + long _secondsSpentInCurrentSession; + long _timeSinceLastSuspend; + int _numInterruptionsInCurrentSession; + long _lastRestoreTime; + long _lastSuspendTime; + NSString *_sessionID; +} + +// +// Public methods +// + ++ (void)suspend +{ + [self.singleton instanceSuspend]; +} + ++ (void)restore:(BOOL)calledFromActivateApp +{ + [self.singleton instanceRestore:calledFromActivateApp]; +} + +// +// Internal methods +// ++ (FBSDKTimeSpentData *)singleton +{ + static dispatch_once_t pred; + static FBSDKTimeSpentData *shared = nil; + + dispatch_once(&pred, ^{ + shared = [[FBSDKTimeSpentData alloc] init]; + }); + return shared; +} + +// Calculate and persist time spent data for this instance of the app activation. +- (void)instanceSuspend +{ + + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + if (!_isCurrentlyLoaded) { + FBSDKConditionalLog(YES, FBSDKLoggingBehaviorInformational, @"[FBSDKTimeSpentData suspend] invoked without corresponding restore"); + return; + } + + long now = [FBSDKAppEventsUtility unixTimeNow]; + long timeSinceRestore = now - _lastRestoreTime; + + // Can happen if the clock on the device is changed + if (timeSinceRestore < 0) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"Clock skew detected"]; + timeSinceRestore = 0; + } + + _secondsSpentInCurrentSession += timeSinceRestore; + + NSDictionary *timeSpentData = + @{ + FBSDKTimeSpentPersistKeySessionSecondsSpent : @(_secondsSpentInCurrentSession), + FBSDKTimeSpentPersistKeySessionNumInterruptions : @(_numInterruptionsInCurrentSession), + FBSDKTimeSpentPersistKeyLastSuspendTime : @(now), + FBSDKTimeSpentPersistKeySessionID : _sessionID, + }; + + NSString *content = [FBSDKBasicUtility JSONStringForObject:timeSpentData error:NULL invalidObjectHandler:NULL]; + + [content writeToFile:[FBSDKBasicUtility persistenceFilePath:FBSDKTimeSpentFilename] + atomically:YES + encoding:NSASCIIStringEncoding + error:nil]; + + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKTimeSpentData Persist: %@", content]; + + _isCurrentlyLoaded = NO; +} + + +// Called during activation - either through an explicit 'activateApp' call or implicitly when the app is foregrounded. +// In both cases, we restore the persisted event data. In the case of the activateApp, we log an 'app activated' +// event if there's been enough time between the last deactivation and now. +- (void)instanceRestore:(BOOL)calledFromActivateApp +{ + + [FBSDKAppEventsUtility ensureOnMainThread:NSStringFromSelector(_cmd) className:NSStringFromClass([self class])]; + + // It's possible to call this multiple times during the time the app is in the foreground. If this is the case, + // just restore persisted data the first time. + if (!_isCurrentlyLoaded) { + + NSString *content = + [[NSString alloc] initWithContentsOfFile:[FBSDKBasicUtility persistenceFilePath:FBSDKTimeSpentFilename] + usedEncoding:nil + error:nil]; + + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorAppEvents + formatString:@"FBSDKTimeSpentData Restore: %@", content]; + + long now = [FBSDKAppEventsUtility unixTimeNow]; + if (!content) { + + // Nothing persisted, so this is the first launch. + _sessionID = [NSUUID UUID].UUIDString; + _secondsSpentInCurrentSession = 0; + _numInterruptionsInCurrentSession = 0; + _lastSuspendTime = 0; + + // We want to log the app activation event on the first launch, but not the deactivate event + _shouldLogActivateEvent = YES; + _shouldLogDeactivateEvent = NO; + + } else { + + NSDictionary *results = [FBSDKBasicUtility objectForJSONString:content error:NULL]; + + _lastSuspendTime = [results[FBSDKTimeSpentPersistKeyLastSuspendTime] longValue]; + + _timeSinceLastSuspend = now - _lastSuspendTime; + _secondsSpentInCurrentSession = [results[FBSDKTimeSpentPersistKeySessionSecondsSpent] intValue]; + _sessionID = results[FBSDKTimeSpentPersistKeySessionID] ? : [NSUUID UUID].UUIDString; + _numInterruptionsInCurrentSession = [results[FBSDKTimeSpentPersistKeySessionNumInterruptions] intValue]; + _shouldLogActivateEvent = (_timeSinceLastSuspend > [FBSDKServerConfigurationManager cachedServerConfiguration].sessionTimoutInterval); + + // Other than the first launch, we always log the last session's deactivate with this session's activate. + _shouldLogDeactivateEvent = _shouldLogActivateEvent; + + if (!_shouldLogDeactivateEvent) { + // If we're not logging, then the time we spent deactivated is considered another interruption. But cap it + // so errant or test uses doesn't blow out the cardinality on the backend processing + _numInterruptionsInCurrentSession = MIN(_numInterruptionsInCurrentSession + 1, 200); + } + + } + + _lastRestoreTime = now; + _isCurrentlyLoaded = YES; + + if (calledFromActivateApp) { + // It's important to log deactivate first to reset sessionID + if (_shouldLogDeactivateEvent) { + [FBSDKAppEvents logEvent:FBSDKAppEventNameDeactivatedApp + valueToSum:_secondsSpentInCurrentSession + parameters:[self appEventsParametersForDeactivate]]; + + // We've logged the session stats, now reset. + _secondsSpentInCurrentSession = 0; + _numInterruptionsInCurrentSession = 0; + _sessionID = [NSUUID UUID].UUIDString; + } + + if (_shouldLogActivateEvent) { + [FBSDKAppEvents logEvent:FBSDKAppEventNameActivatedApp + parameters:[self appEventsParametersForActivate]]; + // Unless the behavior is set to only allow explicit flushing, we go ahead and flush. App launch + // events are critical to Analytics so we don't want to lose them. + if ([FBSDKAppEvents flushBehavior] != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonEagerlyFlushingEvent]; + } + } + } + } +} + +- (NSDictionary *)appEventsParametersForActivate +{ + return @{ + FBSDKAppEventParameterLaunchSource: [[self class] getSourceApplication], + FBSDKAppEventParameterNameSessionID: _sessionID, + }; +} + +- (NSDictionary *)appEventsParametersForDeactivate +{ + int quantaIndex = 0; + while (_timeSinceLastSuspend > INACTIVE_SECONDS_QUANTA[quantaIndex]) { + quantaIndex++; + } + + NSMutableDictionary *params = [@{ FBSDKAppEventParameterNameSessionInterruptions : @(_numInterruptionsInCurrentSession), + FBSDKAppEventParameterNameTimeBetweenSessions : [NSString stringWithFormat:@"session_quanta_%d", quantaIndex], + FBSDKAppEventParameterLaunchSource: [[self class] getSourceApplication], + FBSDKAppEventParameterNameSessionID : _sessionID ?: @"", + } mutableCopy]; + if (_lastSuspendTime) { + params[FBSDKAppEventParameterLogTime] = @(_lastSuspendTime); + } + return [params copy]; +} + ++ (void)setSourceApplication:(NSString *)sourceApplication openURL:(NSURL *)url +{ + [self setSourceApplication:sourceApplication + isFromAppLink:[FBSDKInternalUtility dictionaryFromFBURL:url][@"al_applink_data"] != nil]; +} + ++ (void)setSourceApplication:(NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink +{ + g_isOpenedFromAppLink = isFromAppLink; + g_sourceApplication = sourceApplication; +} + ++ (NSString *)getSourceApplication +{ + NSString *openType = @"Unclassified"; + if (g_isOpenedFromAppLink) { + openType = @"AppLink"; + } + return (g_sourceApplication ? + [NSString stringWithFormat:@"%@(%@)", openType, g_sourceApplication] + : openType); +} + ++ (void)resetSourceApplication +{ + g_sourceApplication = nil; + g_isOpenedFromAppLink = NO; +} + ++ (void)registerAutoResetSourceApplication +{ + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(resetSourceApplication) + name:UIApplicationDidEnterBackgroundNotification + object:nil]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.h new file mode 100644 index 0000000..c026685 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.h @@ -0,0 +1,48 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKAppEvents+Internal.h" + +NS_ASSUME_NONNULL_BEGIN + +NS_SWIFT_NAME(UserDataStore) +@interface FBSDKUserDataStore : NSObject + ++ (void)setAndHashUserEmail:(nullable NSString *)email + firstName:(nullable NSString *)firstName + lastName:(nullable NSString *)lastName + phone:(nullable NSString *)phone + dateOfBirth:(nullable NSString *)dateOfBirth + gender:(nullable NSString *)gender + city:(nullable NSString *)city + state:(nullable NSString *)state + zip:(nullable NSString *)zip + country:(nullable NSString *)country; ++ (void)setAndHashData:(nullable NSString *)data + forType:(FBSDKAppEventUserDataType)type; ++ (void)setHashData:(nullable NSString *)hashData + forType:(FBSDKAppEventUserDataType)type; ++ (nullable NSString *)getHashedData; ++ (nullable NSString *)getHashedDataForType:(FBSDKAppEventUserDataType)type; ++ (void)clearDataForType:(FBSDKAppEventUserDataType)type; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.m new file mode 100644 index 0000000..f49832e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.m @@ -0,0 +1,199 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKUserDataStore.h" + +#import "FBSDKAppEventsUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" +#import "FBSDKUtility.h" + +static NSString *const FBSDKUserDataKey = @"com.facebook.appevents.UserDataStore.userData"; + +static NSMutableDictionary *hashedUserData; +static dispatch_queue_t serialQueue; + +@implementation FBSDKUserDataStore + ++ (void)initialize +{ + serialQueue = dispatch_queue_create("com.facebook.appevents.UserDataStore", DISPATCH_QUEUE_SERIAL); + NSString *userData = [[NSUserDefaults standardUserDefaults] stringForKey:FBSDKUserDataKey]; + if (userData) { + hashedUserData = (NSMutableDictionary *)[NSJSONSerialization JSONObjectWithData:[userData dataUsingEncoding:NSUTF8StringEncoding] + options:NSJSONReadingMutableContainers + error:nil]; + } + if (!hashedUserData) { + hashedUserData = [[NSMutableDictionary alloc] init]; + } +} + ++ (void)setAndHashUserEmail:(nullable NSString *)email + firstName:(nullable NSString *)firstName + lastName:(nullable NSString *)lastName + phone:(nullable NSString *)phone + dateOfBirth:(nullable NSString *)dateOfBirth + gender:(nullable NSString *)gender + city:(nullable NSString *)city + state:(nullable NSString *)state + zip:(nullable NSString *)zip + country:(nullable NSString *)country +{ + NSMutableDictionary *ud = [[NSMutableDictionary alloc] init]; + if (email) { + ud[FBSDKAppEventEmail] = [FBSDKUserDataStore encryptData:email type:FBSDKAppEventEmail]; + } + if (firstName) { + ud[FBSDKAppEventFirstName] = [FBSDKUserDataStore encryptData:firstName type:FBSDKAppEventFirstName]; + } + if (lastName) { + ud[FBSDKAppEventLastName] = [FBSDKUserDataStore encryptData:lastName type:FBSDKAppEventLastName]; + } + if (phone) { + ud[FBSDKAppEventPhone] = [FBSDKUserDataStore encryptData:phone type:FBSDKAppEventPhone]; + } + if (dateOfBirth) { + ud[FBSDKAppEventDateOfBirth] = [FBSDKUserDataStore encryptData:dateOfBirth type:FBSDKAppEventDateOfBirth]; + } + if (gender) { + ud[FBSDKAppEventGender] = [FBSDKUserDataStore encryptData:gender type:FBSDKAppEventGender]; + } + if (city) { + ud[FBSDKAppEventCity] = [FBSDKUserDataStore encryptData:city type:FBSDKAppEventCity]; + } + if (state) { + ud[FBSDKAppEventState] = [FBSDKUserDataStore encryptData:state type:FBSDKAppEventState]; + } + if (zip) { + ud[FBSDKAppEventZip] = [FBSDKUserDataStore encryptData:zip type:FBSDKAppEventZip]; + } + if (country) { + ud[FBSDKAppEventCountry] = [FBSDKUserDataStore encryptData:country type:FBSDKAppEventCountry]; + } + + dispatch_async(serialQueue, ^{ + hashedUserData = [ud mutableCopy]; + [[NSUserDefaults standardUserDefaults] setObject:[FBSDKUserDataStore stringByHashedData:hashedUserData] + forKey:FBSDKUserDataKey]; + }); +} + ++ (void)setAndHashData:(nullable NSString *)data + forType:(FBSDKAppEventUserDataType)type +{ + [FBSDKUserDataStore setHashData:[FBSDKUserDataStore encryptData:data type:type] + forType:type]; +} + ++ (void)setHashData:(nullable NSString *)hashData + forType:(FBSDKAppEventUserDataType)type +{ + dispatch_async(serialQueue, ^{ + if (!hashData) { + [hashedUserData removeObjectForKey:type]; + } else { + hashedUserData[type] = hashData; + } + [[NSUserDefaults standardUserDefaults] setObject:[FBSDKUserDataStore stringByHashedData:hashedUserData] + forKey:FBSDKUserDataKey]; + }); +} + ++ (void)clearDataForType:(FBSDKAppEventUserDataType)type +{ + [FBSDKUserDataStore setAndHashData:nil forType:type]; +} + ++ (NSString *)getHashedData +{ + __block NSString *hashedUserDataString; + dispatch_sync(serialQueue, ^{ + hashedUserDataString = [FBSDKUserDataStore stringByHashedData:hashedUserData]; + }); + return hashedUserDataString; +} + ++ (NSString *)getHashedDataForType:(FBSDKAppEventUserDataType)type +{ + __block NSString *hashedData; + dispatch_sync(serialQueue, ^{ + hashedData = [hashedUserData objectForKey:type]; + }); + return hashedData; +} + ++ (NSString *)stringByHashedData:(id)hashedData +{ + NSError *error; + NSData *jsonData = [NSJSONSerialization dataWithJSONObject:hashedData + options:0 + error:&error]; + if (jsonData) { + return [[NSString alloc] initWithData:jsonData + encoding:NSUTF8StringEncoding]; + } else { + [FBSDKAppEventsUtility logAndNotify:[NSString stringWithFormat:@"Invalid json object: %@", error]]; + return @""; + } +} + ++ (NSString *)encryptData:(NSString *)data + type:(FBSDKAppEventUserDataType)type +{ + if (data.length == 0 || [FBSDKUserDataStore maybeSHA256Hashed:data]) { + return data; + } + return [FBSDKUtility SHA256Hash:[FBSDKUserDataStore normalizeData:data type:type]]; +} + ++ (NSString *)normalizeData:(NSString *)data + type:(FBSDKAppEventUserDataType)type +{ + NSString *normalizedData = @""; + NSSet *set = [NSSet setWithArray: + @[FBSDKAppEventEmail, FBSDKAppEventFirstName, FBSDKAppEventLastName, FBSDKAppEventCity, FBSDKAppEventState, FBSDKAppEventCountry]]; + if ([set containsObject:type]) { + normalizedData = [data stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; + normalizedData = normalizedData.lowercaseString; + } else if ([type isEqualToString:FBSDKAppEventPhone]) { + NSError *error = nil; + NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[^0-9]" + options:NSRegularExpressionCaseInsensitive + error:&error + ]; + normalizedData = [regex stringByReplacingMatchesInString:data + options:0 + range:NSMakeRange(0, data.length) + withTemplate:@"" + ]; + } else if ([type isEqualToString:FBSDKAppEventGender]) { + NSString *temp = [data stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; + temp = temp.lowercaseString; + normalizedData = temp.length > 0 ? [temp substringToIndex:1]: @""; + } + return normalizedData; +} + ++ (BOOL)maybeSHA256Hashed:(NSString *)data +{ + NSRange range = [data rangeOfString:@"[A-Fa-f0-9]{64}" options:NSRegularExpressionSearch]; + return (data.length == 64) && (range.location != NSNotFound); +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.h new file mode 100644 index 0000000..6adebf6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +typedef void (^FBSDKDownloadCompletionBlock)(BOOL success); + +@interface FBSDKModelManager : NSObject + ++ (void)enable; ++ (nullable NSDictionary *)getRules; ++ (nullable NSString *)getWeightsPath:(NSString *_Nonnull)useCaseKey; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.m new file mode 100644 index 0000000..314fe5e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.m @@ -0,0 +1,233 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKModelManager.h" + +#import "FBSDKAddressFilterManager.h" +#import "FBSDKAddressInferencer.h" +#import "FBSDKEventInferencer.h" +#import "FBSDKFeatureExtractor.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKSettings.h" +#import "FBSDKSuggestedEventsIndexer.h" +#import "FBSDKTypeUtility.h" +#import "FBSDKViewHierarchyMacros.h" + +#define FBSDK_ML_MODEL_PATH @"models" + +static NSString *const MODEL_INFO_KEY= @"com.facebook.sdk:FBSDKModelInfo"; +static NSString *const ASSET_URI_KEY = @"asset_uri"; +static NSString *const RULES_URI_KEY = @"rules_uri"; +static NSString *const THRESHOLDS_KEY = @"thresholds"; +static NSString *const USE_CASE_KEY = @"use_case"; +static NSString *const VERSION_ID_KEY = @"version_id"; +static NSString *const MODEL_DATA_KEY = @"data"; +static NSString *const ADDRESS_FILTERING_KEY = @"DATA_DETECTION_ADDRESS"; + +static NSString *_directoryPath; +static NSMutableDictionary *_modelInfo; + +@implementation FBSDKModelManager + ++ (void)enable +{ + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + NSString *languageCode = [[NSLocale currentLocale] objectForKey:NSLocaleLanguageCode]; + // If the languageCode could not be fetched successfully, it's regarded as "en" by default. + if (languageCode && ![languageCode isEqualToString:@"en"]) { + return; + } + + NSString *dirPath = [NSTemporaryDirectory() stringByAppendingPathComponent:FBSDK_ML_MODEL_PATH]; + if (![[NSFileManager defaultManager] fileExistsAtPath:dirPath]) { + [[NSFileManager defaultManager] createDirectoryAtPath:dirPath withIntermediateDirectories:NO attributes:NULL error:NULL]; + } + _directoryPath = dirPath; + + // fetch api + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] + initWithGraphPath:[NSString stringWithFormat:@"%@/model_asset", [FBSDKSettings appID]]]; + + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (error) { + return; + } + NSDictionary *resultDictionary = [FBSDKTypeUtility dictionaryValue:result]; + NSDictionary *modelInfo = [self convertToDictionary:resultDictionary[MODEL_DATA_KEY]]; + if (!modelInfo) { + return; + } + // update cache + [[NSUserDefaults standardUserDefaults] setObject:modelInfo forKey:MODEL_INFO_KEY]; + + [FBSDKFeatureManager checkFeature:FBSDKFeatureSuggestedEvents completionBlock:^(BOOL enabled) { + if (enabled) { + [self getModelAndRules:SUGGEST_EVENT_KEY handler:^(BOOL success){ + if (success) { + [FBSDKEventInferencer loadWeights]; + [FBSDKFeatureExtractor loadRules]; + [FBSDKSuggestedEventsIndexer enable]; + } + }]; + } + }]; + [FBSDKFeatureManager checkFeature:FBSDKFeaturePIIFiltering completionBlock:^(BOOL enabled) { + if (enabled) { + [self getModelAndRules:ADDRESS_FILTERING_KEY handler:^(BOOL success){ + if (success) { + [FBSDKAddressInferencer loadWeights]; + [FBSDKAddressInferencer initializeDenseFeature]; + [FBSDKAddressFilterManager enable]; + } + }]; + } + }]; + }]; + }); +} + ++ (void)getModelAndRules:(NSString *)useCaseKey + handler:(FBSDKDownloadCompletionBlock)handler +{ + dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); + dispatch_group_t group = dispatch_group_create(); + _modelInfo = [[NSUserDefaults standardUserDefaults] objectForKey:MODEL_INFO_KEY]; + if (!_modelInfo || !_directoryPath) { + if (handler) { + handler(NO); + return; + } + } + NSDictionary *model = [_modelInfo objectForKey:useCaseKey]; + + if (!model) { + if (handler) { + handler(NO); + return; + } + } + + // clear old model files + NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:_directoryPath error:nil]; + NSString *prefixWithVersion = [NSString stringWithFormat:@"%@_%@", useCaseKey, model[VERSION_ID_KEY]]; + + for (NSString *file in files) { + if ([file hasPrefix:useCaseKey] && ![file hasPrefix:prefixWithVersion]) { + [[NSFileManager defaultManager] removeItemAtPath:[_directoryPath stringByAppendingPathComponent:file] error:nil]; + } + } + + // download model asset + NSString *assetUrlString = [model objectForKey:ASSET_URI_KEY]; + NSString *assetFilePath; + if (assetUrlString.length > 0) { + assetFilePath = [_directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@_%@.weights", useCaseKey, model[VERSION_ID_KEY]]]; + [self download:assetUrlString filePath:assetFilePath queue:queue group:group]; + } + + // download rules + NSString *rulesUrlString = [model objectForKey:RULES_URI_KEY]; + NSString *rulesFilePath; + // rules are optional and rulesUrlString may be empty + if (rulesUrlString.length > 0) { + rulesFilePath = [_directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@_%@.rules", useCaseKey, model[VERSION_ID_KEY]]]; + [self download:rulesUrlString filePath:rulesFilePath queue:queue group:group]; + } + dispatch_group_notify(group, dispatch_get_main_queue(), ^{ + if (handler) { + if ([[NSFileManager defaultManager] fileExistsAtPath:assetFilePath] && (!rulesUrlString || (rulesUrlString && [[NSFileManager defaultManager] fileExistsAtPath:rulesFilePath]))) { + handler(YES); + return; + } + handler(NO); + } + }); +} + ++ (void)download:(NSString *)urlString + filePath:(NSString *)filePath + queue:(dispatch_queue_t)queue + group:(dispatch_group_t)group +{ + if (!filePath || [[NSFileManager defaultManager] fileExistsAtPath:filePath]) { + return; + } + dispatch_group_async(group, queue, ^{ + NSURL *url = [NSURL URLWithString:urlString]; + NSData *urlData = [NSData dataWithContentsOfURL:url]; + if (urlData) { + [urlData writeToFile:filePath atomically:YES]; + } + }); +} + ++ (nullable NSMutableDictionary *)convertToDictionary:(NSArray *> *)models +{ + if ([models count] == 0) { + return nil; + } + NSMutableDictionary *modelInfo = [NSMutableDictionary dictionary]; + for (NSDictionary *model in models) { + if (model[USE_CASE_KEY]) { + [modelInfo addEntriesFromDictionary:@{model[USE_CASE_KEY]:model}]; + } + } + return modelInfo; +} + ++ (nullable NSDictionary *)getRules +{ + NSDictionary *cachedModelInfo = [[NSUserDefaults standardUserDefaults] objectForKey:MODEL_INFO_KEY]; + if (!cachedModelInfo) { + return nil; + } + NSDictionary *model = [cachedModelInfo objectForKey:SUGGEST_EVENT_KEY]; + if (model && model[VERSION_ID_KEY]) { + NSString *filePath = [_directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@_%@.rules", SUGGEST_EVENT_KEY, model[VERSION_ID_KEY]]]; + if (filePath) { + NSData *ruelsData = [NSData dataWithContentsOfFile:filePath]; + NSDictionary *rules = [NSJSONSerialization JSONObjectWithData:ruelsData options:0 error:nil]; + return rules; + } + } + return nil; +} + ++ (nullable NSString *)getWeightsPath:(NSString *_Nonnull)useCaseKey +{ + NSDictionary *cachedModelInfo = [[NSUserDefaults standardUserDefaults] objectForKey:MODEL_INFO_KEY]; + if (!cachedModelInfo || !_directoryPath) { + return nil; + } + NSDictionary *model = [cachedModelInfo objectForKey:useCaseKey]; + if (model && model[VERSION_ID_KEY]) { + return [_directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@_%@.weights", useCaseKey, model[VERSION_ID_KEY]]]; + } + return nil; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelRuntime.hpp b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelRuntime.hpp new file mode 100644 index 0000000..2b5cfe5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelRuntime.hpp @@ -0,0 +1,310 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#include +#include +#include +#include +#include + +#import + +#include "FBSDKStandaloneModel.hpp" + +#define SEQ_LEN 128 +#define ALPHABET_SIZE 256 +#define EMBEDDING_SIZE 64 +#define DENSE_FEATURE_LEN 30 + +const int CONV_BLOCKS[3][3] = {{32, 2, SEQ_LEN - 1}, {32, 3, SEQ_LEN - 2}, {32, 5, SEQ_LEN - 4}}; + +namespace mat1 { + static void relu(float *data, int len) { + float min = 0; + float max = FLT_MAX; + vDSP_vclip(data, 1, &min, &max, data, 1, len); + } + + static void concatenate(float *dst, float *a, float *b, int a_len, int b_len) { + memcpy(dst, a, a_len * sizeof(float)); + memcpy(dst + a_len, b, b_len * sizeof(float)); + } + + static void softmax(float *data, int n) { + int i = 0; + float max = FLT_MIN; + float sum = 0; + + for (i = 0; i < n; i++) { + if (data[i] > max) { + max = data[i]; + } + } + + for (i = 0; i < n; i++){ + data[i] = expf(data[i] - max); + } + + for (i = 0; i < n; i++){ + sum += data[i]; + } + + for (i = 0; i < n; i++){ + data[i] = data[i] / sum; + } + } + + static float* embedding(int *a, float *b, int n_examples, int seq_length, int embedding_size) { + int i,j,k,val; + float* res = (float *)malloc(sizeof(float) * (n_examples * seq_length * embedding_size)); + for (i = 0; i < n_examples; i++) { + for (j = 0; j < seq_length; j++) { + val = a[i * seq_length + j]; + for (k = 0; k < embedding_size; k++) { + res[(embedding_size * seq_length) * i + embedding_size * j + k] = b[val * embedding_size + k]; + } + } + } + return res; + } + + /* + a shape: n_examples, in_vector_size + b shape: n_examples, out_vector_size + c shape: out_vector_size + return shape: n_examples, out_vector_size + */ + static float* dense(float *a, float *b, float *c, int n_examples, int in_vector_size, int out_vector_size) { + int i,j; + float *m_res = (float *)malloc(sizeof(float) * (n_examples * out_vector_size)); + vDSP_mmul(a, 1, b, 1, m_res, 1, n_examples, out_vector_size, in_vector_size); + for (i = 0; i < n_examples; i++) { + for (j = 0; j < out_vector_size; j++) { + m_res[i * out_vector_size + j] += c[j]; + } + } + return m_res; + } + + /* + x shape: n_examples, seq_len, input_size + w shape: kernel_size, input_size, output_size + return shape: n_examples, seq_len - kernel_size + 1, output_size + */ + static float* conv1D(float *x, float *w, int n_examples, int seq_len, int input_size, int kernel_size, int output_size) { + int n, o, i, k, m; + float sum; + float *res = (float *)malloc(sizeof(float) * (n_examples * (seq_len - kernel_size + 1) * output_size)); + float *temp_x = (float *)malloc(sizeof(float) * (kernel_size * input_size)); + float *temp_w = (float *)malloc(sizeof(float) * (kernel_size * input_size)); + for (n = 0; n < n_examples; n++){ + for (o = 0; o < output_size; o++){ + for (i = 0; i < seq_len - kernel_size + 1; i++) { + sum = 0; + for (m = 0; m < kernel_size; m++) { + for (k = 0; k < input_size; k++) { + temp_x[m * input_size + k] = x[n * (seq_len * input_size) + (m + i) * input_size + k]; + temp_w[m * input_size + k] = w[(m * input_size + k) * output_size + o]; + } + } + vDSP_dotpr(temp_x, 1, temp_w, 1, &sum, kernel_size * input_size); + res[(n * (output_size * (seq_len - kernel_size + 1)) + i * output_size + o)] = sum; + } + } + } + free(temp_x); + free(temp_w); + return res; + } + + /* + input shape: n_examples, len, n_channel + return shape: n_examples, len - pool_size + 1, n_channel + */ + static float* maxPool1D(float *input, int n_examples, int input_len, int n_channel, int pool_size) { + int res_len = input_len - pool_size + 1; + float* res = (float *)calloc(n_examples * res_len * n_channel, sizeof(float)); + + for (int n = 0; n < n_examples; n++) { + for (int c = 0; c < n_channel; c++) { + for (int i = 0; i < res_len; i++) { + for (int r = i; r < i + pool_size; r++) { + int res_pos = n * (n_channel * res_len) + i * n_channel + c; + int input_pos = n * (n_channel * input_len) + r * n_channel + c; + if (r == i) { + res[res_pos] = input[input_pos]; + } else { + res[res_pos] = fmax(res[res_pos], input[input_pos]); + } + } + } + } + } + return res; + } + + static int* vectorize(const char *texts, int str_len, int max_len) { + int *res = (int *)malloc(sizeof(int) * max_len); + for (int i = 0; i < max_len; i++) { + if (i < str_len){ + res[i] = static_cast(texts[i]); + } else { + res[i] = 0; + } + } + return res; + } + + /* + input shape: m, n + return shape: n, m + */ + static float* transpose2D(float *input, int m, int n) { + float *transposed = (float *)malloc(sizeof(float) * m * n); + for (int i = 0; i < m; i++){ + for (int j = 0; j < n; j++) { + transposed[j * m + i] = input[i * n + j]; + } + } + return transposed; + } + + /* + input shape: m, n, p + return shape: p, n, m + */ + static float* transpose3D(float *input, int64_t m, int n, int p) { + float *transposed = (float *)malloc((size_t)(sizeof(float) * m * n * p)); + for (int i = 0; i < m; i++){ + for (int j = 0; j < n; j++) { + for (int k = 0; k < p; k++) { + transposed[k * m * n + j * m + i] = input[i * n * p + j * p + k]; + } + } + } + return transposed; + } + + static float* add(float *a, float *b, int m, int n, int p) { + for(int i = 0; i < m * n; i++){ + for(int j = 0; j < p; j++){ + a[i * p + j] += b[j]; + } + } + return a; + } + + static float* predictOnText(const char *texts, std::unordered_map& weights, float *df) { + int *x; + float *embed_x; + float *dense1_x; + float *dense2_x; + float *dense3_x; + float *c1; + float *c2; + float *c3; + float *ca; + float *cb; + float *cc; + + mat::MTensor& embed_t = weights.at("embed.weight"); + mat::MTensor& conv1w_t = weights.at("convs.0.weight"); // (32, 64, 2) + mat::MTensor& conv2w_t = weights.at("convs.1.weight"); + mat::MTensor& conv3w_t = weights.at("convs.2.weight"); + mat::MTensor& conv1b_t = weights.at("convs.0.bias"); + mat::MTensor& conv2b_t = weights.at("convs.1.bias"); + mat::MTensor& conv3b_t = weights.at("convs.2.bias"); + mat::MTensor& fc1w_t = weights.at("fc1.weight"); // (128, 126) + mat::MTensor& fc1b_t = weights.at("fc1.bias"); // 128 + mat::MTensor& fc2w_t = weights.at("fc2.weight"); // (64, 128) + mat::MTensor& fc2b_t = weights.at("fc2.bias"); // 64 + mat::MTensor& fc3w_t = weights.at("fc3.weight"); // (2, 64) or (4, 64) + mat::MTensor& fc3b_t = weights.at("fc3.bias"); // 2 or 4 + + float *embed_weight = embed_t.data(); + float *convs_0_weight = transpose3D(conv1w_t.data(), (int)conv1w_t.size(0), (int)conv1w_t.size(1), (int)conv1w_t.size(2)); // (2, 64, 32) + float *convs_1_weight = transpose3D(conv2w_t.data(), (int)conv2w_t.size(0), (int)conv2w_t.size(1), (int)conv2w_t.size(2)); + float *convs_2_weight = transpose3D(conv3w_t.data(), (int)conv3w_t.size(0), (int)conv3w_t.size(1), (int)conv3w_t.size(2)); + float *convs_0_bias = conv1b_t.data(); + float *convs_1_bias = conv2b_t.data(); + float *convs_2_bias = conv3b_t.data(); + float *fc1_weight = transpose2D(fc1w_t.data(), (int)fc1w_t.size(0), (int)fc1w_t.size(1)); + float *fc2_weight = transpose2D(fc2w_t.data(), (int)fc2w_t.size(0), (int)fc2w_t.size(1)); + float *fc3_weight = transpose2D(fc3w_t.data(), (int)fc3w_t.size(0), (int)fc3w_t.size(1)); + float *fc1_bias = fc1b_t.data(); + float *fc2_bias = fc2b_t.data(); + float *fc3_bias = fc3b_t.data(); + + // vectorize text + x = vectorize(texts, (int)strlen(texts), SEQ_LEN); + + // embedding + embed_x = embedding(x, embed_weight, 1, SEQ_LEN, EMBEDDING_SIZE); // (1, 128, 64) + free(x); + + // conv1D + c1 = conv1D(embed_x, convs_0_weight, 1, SEQ_LEN, EMBEDDING_SIZE, (int)conv1w_t.size(2), (int)conv1w_t.size(0)); // (1, 127, 32) CONV_BLOCKS[0][1], CONV_BLOCKS[0][0] + c2 = conv1D(embed_x, convs_1_weight, 1, SEQ_LEN, EMBEDDING_SIZE, (int)conv2w_t.size(2), (int)conv2w_t.size(0)); // (1, 126, 32) + c3 = conv1D(embed_x, convs_2_weight, 1, SEQ_LEN, EMBEDDING_SIZE, (int)conv3w_t.size(2), (int)conv3w_t.size(0)); // (1, 124, 32) + free(embed_x); + + // add bias + add(c1, convs_0_bias, 1, (int)(SEQ_LEN - conv1w_t.size(2) + 1), (int)conv1w_t.size(0)); + add(c2, convs_1_bias, 1, (int)(SEQ_LEN - conv2w_t.size(2) + 1), (int)conv2w_t.size(0)); + add(c3, convs_2_bias, 1, (int)(SEQ_LEN - conv3w_t.size(2) + 1), (int)conv3w_t.size(0)); + + // relu + relu(c1, (int)(SEQ_LEN - conv1w_t.size(2) + 1) * (int)conv1w_t.size(0)); + relu(c2, (int)(SEQ_LEN - conv2w_t.size(2) + 1) * (int)conv2w_t.size(0)); + relu(c3, (int)(SEQ_LEN - conv3w_t.size(2) + 1) * (int)conv3w_t.size(0)); + + // max pooling + ca = maxPool1D(c1, 1, (int)(SEQ_LEN - conv1w_t.size(2) + 1), (int)conv1w_t.size(0), (int)(SEQ_LEN - conv1w_t.size(2) + 1)); // (1, 1, 32) + cb = maxPool1D(c2, 1, (int)(SEQ_LEN - conv2w_t.size(2) + 1), (int)conv2w_t.size(0), (int)(SEQ_LEN - conv2w_t.size(2) + 1)); // (1, 1, 32) + cc = maxPool1D(c3, 1, (int)(SEQ_LEN - conv3w_t.size(2) + 1), (int)conv3w_t.size(0), (int)(SEQ_LEN - conv3w_t.size(2) + 1)); // (1, 1, 32) + free(c1); + free(c2); + free(c3); + + // concatenate + float *concat = (float *)malloc((size_t)(sizeof(float) * (conv1w_t.size(0) + conv2w_t.size(0) + conv3w_t.size(0) + 30))); + concatenate(concat, ca, cb, (int)conv1w_t.size(0), (int)conv2w_t.size(0)); + concatenate(concat + conv1w_t.size(0) + conv2w_t.size(0), cc, df, (int)conv3w_t.size(0), 30); + free(ca); + free(cb); + free(cc); + + // dense + relu + dense1_x = dense(concat, fc1_weight, fc1_bias, 1, (int)fc1w_t.size(1), (int)fc1w_t.size(0)); + free(concat); + relu(dense1_x, (int)fc1b_t.size(0)); + dense2_x = dense(dense1_x, fc2_weight, fc2_bias, 1, (int)fc2w_t.size(1), (int)fc2w_t.size(0)); + relu(dense2_x, (int)fc2b_t.size(0)); + free(dense1_x); + dense3_x = dense(dense2_x, fc3_weight, fc3_bias, 1, (int)fc3w_t.size(1), (int)fc3w_t.size(0)); + free(dense2_x); + softmax(dense3_x, (int)fc3b_t.size(0)); + return dense3_x; + } +} + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.h new file mode 100644 index 0000000..3012e8e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +@interface FBSDKModelUtility : NSObject + ++ (NSString *)normalizeText:(NSString *)text; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.m new file mode 100644 index 0000000..9c1bff6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.m @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKModelUtility.h" + +@implementation FBSDKModelUtility : NSObject + ++ (NSString *)normalizeText:(NSString *)text +{ + NSMutableArray *tokens = [[text componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] mutableCopy]; + [tokens removeObject:@""]; + return [tokens componentsJoinedByString: @" "]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKStandaloneModel.hpp b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKStandaloneModel.hpp new file mode 100644 index 0000000..2cec108 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKStandaloneModel.hpp @@ -0,0 +1,152 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#import + +// minimal aten implementation +#define MAT_ALWAYS_INLINE inline __attribute__((always_inline)) +namespace mat { + + template + class MTensorAccessor { + public: + MAT_ALWAYS_INLINE + MTensorAccessor(T* data, const int64_t* sizes, const int64_t* strides) + : data_(data), sizes_(sizes), strides_(strides) {} + + MAT_ALWAYS_INLINE MTensorAccessor operator[](int64_t i) { + return MTensorAccessor( + this->data_ + this->strides_[0] * i, + this->sizes_ + 1, + this->strides_ + 1); + } + T* data_; + private: + const int64_t* sizes_; + const int64_t* strides_; + }; + + template + class MTensorAccessor { + public: + MAT_ALWAYS_INLINE + MTensorAccessor(T* data, const int64_t* sizes, const int64_t* strides) + : data_(data), sizes_(sizes), strides_(strides) {} + + MAT_ALWAYS_INLINE T& operator[](int64_t i) { + // assume stride==1 in innermost dimension. + // DCHECK_EQ(strides_[0], 1); + return this->data_[i]; + } + T* data_; + + private: + const int64_t* sizes_; + const int64_t* strides_; + }; + + static void* MAllocateMemory(size_t nbytes) { + void* ptr = nullptr; + assert(nbytes > 0); +#ifdef __ANDROID__ + ptr = memalign(64, nbytes); +#else + const int ret = posix_memalign(&ptr, 64, nbytes); + (void)ret; + assert(ret == 0); +#endif + return ptr; + } + + static void MFreeMemory(void* ptr) { + free(ptr); + } + + static void MCheckPtr(void* ptr) { + if (ptr) { + MFreeMemory(ptr); + } + } + + class MTensor { + public: + MTensor(){}; + MTensor(const std::vector& sizes) { + auto strides = std::vector(sizes.size()); + strides[strides.size() - 1] = 1; + for (auto i = static_cast(strides.size()) - 2; i >= 0; --i) { + strides[i] = strides[i + 1] * sizes[i + 1]; + } + strides_ = strides; + sizes_ = sizes; + // assume float32 storage. + size_t nbytes = sizeof(float); + for (auto size : sizes) { + nbytes *= size; + } + storage_ = std::shared_ptr(MAllocateMemory(nbytes), MCheckPtr); + } + + int64_t size(int dim) { + return sizes_[dim]; + } + + const std::vector& sizes() const { + return sizes_; + } + + const std::vector& strides() const { + return strides_; + } + + template + T* data() { + return static_cast(storage_.get()); + } + + template + MTensorAccessor accessor() { + return MTensorAccessor(data(), sizes().data(), strides().data()); + } + + private: + std::vector sizes_; + std::vector strides_; + std::shared_ptr storage_; + }; + + static MTensor mempty(const std::vector& sizes) { + return MTensor(sizes); + } +} // namespace mat + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.h new file mode 100644 index 0000000..c6245d8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +@interface FBSDKAddressFilterManager : NSObject + ++ (void)enable; ++ (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.m new file mode 100644 index 0000000..a9f1d25 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.m @@ -0,0 +1,69 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAddressFilterManager.h" + +#import "FBSDKAddressInferencer.h" +#import "FBSDKBasicUtility.h" +#import "FBSDKGateKeeperManager.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" + +static BOOL isAddressFilterEnabled = NO; +static BOOL isSampleEnabled = NO; + +@implementation FBSDKAddressFilterManager + ++ (void)enable +{ + isAddressFilterEnabled = YES; + isSampleEnabled = [FBSDKGateKeeperManager boolForKey:@"FBSDKFeatureAddressDetectionSample" defaultValue:false]; +} + ++ (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters +{ + if (!isAddressFilterEnabled || parameters.count == 0) { + return parameters; + } + NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:parameters]; + NSMutableDictionary *addressParams = [NSMutableDictionary dictionary]; + + for (NSString *key in [parameters keyEnumerator]) { + NSString *valueString =[FBSDKTypeUtility stringValue:parameters[key]]; + BOOL shouldFilter = [FBSDKAddressInferencer shouldFilterParam:valueString]; + if (shouldFilter) { + [addressParams setObject:isSampleEnabled ? valueString : @"" forKey:key]; + [params removeObjectForKey:key]; + } + } + if ([addressParams count] > 0) { + NSString *addressParamsJSONString = [FBSDKBasicUtility JSONStringForObject:addressParams + error:NULL + invalidObjectHandler:NULL]; + [FBSDKBasicUtility dictionary:params setObject:addressParamsJSONString forKey:@"_onDeviceParams"]; + } + return [params copy]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.h new file mode 100644 index 0000000..e95ecd2 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKAddressInferencer : NSObject + ++ (void)initializeDenseFeature; ++ (void)loadWeights; ++ (BOOL)shouldFilterParam:(nullable NSString *)param; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.mm b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.mm new file mode 100644 index 0000000..6d16318 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.mm @@ -0,0 +1,213 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAddressInferencer.h" + +#import "FBSDKModelManager.h" +#import "FBSDKModelRuntime.hpp" +#import "FBSDKModelUtility.h" +#import "FBSDKStandaloneModel.hpp" + +#include + +static NSString *const MODEL_INFO_KEY= @"com.facebook.sdk:FBSDKModelInfo"; +static NSString *const THRESHOLDS_KEY = @"thresholds"; +static NSString *const DATA_DETECTION_ADDRESS_KEY = @"DATA_DETECTION_ADDRESS"; +static NSDictionary *const WEIGHTS_INFO = @{@"embed.weight" : @[@(256), @(64)], + @"convs.0.weight" : @[@(32), @(64), @(2)], + @"convs.0.bias" : @[@(32)], + @"convs.1.weight" : @[@(32), @(64), @(3)], + @"convs.1.bias" : @[@(32)], + @"convs.2.weight" : @[@(32), @(64), @(5)], + @"convs.2.bias" : @[@(32)], + @"fc1.weight": @[@(128), @(126)], + @"fc1.bias": @[@(128)], + @"fc2.weight": @[@(64), @(128)], + @"fc2.bias": @[@(64)], + @"fc3.weight": @[@(2), @(64)], + @"fc3.bias": @[@(2)]}; + +static NSDictionary *const WEIGHTS_KEYS = @{@"embedding.weight": @"embed.weight", + @"dense1.weight": @"fc1.weight", + @"dense2.weight": @"fc2.weight", + @"dense3.weight": @"fc3.weight", + @"dense1.bias": @"fc1.bias", + @"dense2.bias": @"fc2.bias", + @"dense3.bias": @"fc3.bias"}; + +@implementation FBSDKAddressInferencer : NSObject + +static std::unordered_map _weights; +static std::vector _denseFeature; + ++ (void)initializeDenseFeature +{ + std::vector dense_feature(30); + std::fill(dense_feature.begin(), dense_feature.end(), 0); + _denseFeature = dense_feature; +} + ++ (void)loadWeights +{ + NSString *path = [FBSDKModelManager getWeightsPath:DATA_DETECTION_ADDRESS_KEY]; + if (!path) { + return; + } + NSData *latestData = [NSData dataWithContentsOfFile:path + options:NSDataReadingMappedIfSafe + error:nil]; + if (!latestData) { + return; + } + std::unordered_map weights = [self loadWeights:latestData]; + if ([self validateWeights:weights]) { + _weights = weights; + } +} + ++ (bool)validateWeights: (std::unordered_map) weights +{ + if (WEIGHTS_INFO.count != weights.size()) { + return false; + } + try { + for (NSString *key in WEIGHTS_INFO) { + if (weights.count(std::string([key UTF8String])) == 0) { + return false; + } + mat::MTensor tensor = weights[std::string([key UTF8String])]; + const std::vector& actualSize = tensor.sizes(); + NSArray *expectedSize = WEIGHTS_INFO[key]; + if (actualSize.size() != expectedSize.count) { + return false; + } + for (int i = 0; i < expectedSize.count; i++) { + if((int)actualSize[i] != (int)[expectedSize[i] intValue]) { + return false; + } + } + } + } catch (const std::exception &e) { + return false; + } + return true; +} + ++ (std::unordered_map)loadWeights:(NSData *)weightsData{ + std::unordered_map weights; + + const void *data = weightsData.bytes; + NSUInteger totalLength = weightsData.length; + + int totalFloats = 0; + if (weightsData.length < 4) { + // Make sure data length is valid + return weights; + } + try { + int length; + memcpy(&length, data, 4); + if (length + 4 > totalLength) { + // Make sure data length is valid + return weights; + } + + char *json = (char *)data + 4; + NSDictionary *info = [NSJSONSerialization JSONObjectWithData:[NSData dataWithBytes:json length:length] + options:0 + error:nil]; + NSArray *keys = [[info allKeys] sortedArrayUsingComparator:^NSComparisonResult(NSString *key1, NSString *key2) { + return [key1 compare:key2]; + }]; + + float *floats = (float *)(json + length); + for (NSString *key in keys) { + NSString *finalKey = key; + NSString *mapping = [WEIGHTS_KEYS objectForKey:key]; + if (mapping) { + finalKey = mapping; + } + std::string s_name([finalKey UTF8String]); + + std::vector v_shape; + NSArray *shape = [info objectForKey:key]; + int count = 1; + for (NSNumber *_s in shape) { + int i = [_s intValue]; + v_shape.push_back(i); + count *= i; + } + + totalFloats += count; + + if ((4 + length + totalFloats * 4) > totalLength) { + // Make sure data length is valid + break; + } + mat::MTensor tensor = mat::mempty(v_shape); + float *tensor_data = tensor.data(); + memcpy(tensor_data, floats, sizeof(float) * count); + floats += count; + + weights[s_name] = tensor; + } + } catch (const std::exception &e) {} + + return weights; +} + ++ (BOOL)shouldFilterParam:(nullable NSString *)param +{ + if (!param || _weights.size() == 0 || _denseFeature.size() == 0) { + return false; + } + + NSString *text = [FBSDKModelUtility normalizeText:param]; + const char *bytes = [text UTF8String]; + if ((int)strlen(bytes) == 0) { + return false; + } + float *predictedRaw; + NSMutableDictionary *modelInfo = [[NSUserDefaults standardUserDefaults] objectForKey:MODEL_INFO_KEY]; + if (!modelInfo) { + return false; + } + NSDictionary * addressModelInfo = [modelInfo objectForKey:DATA_DETECTION_ADDRESS_KEY]; + if (!addressModelInfo) { + return false; + } + NSMutableArray *thresholds = [addressModelInfo objectForKey:THRESHOLDS_KEY]; + float threshold = [thresholds[0] floatValue]; + try { + predictedRaw = mat1::predictOnText(bytes, _weights, &_denseFeature[0]); + if (!predictedRaw[1]) { + return false; + } + return predictedRaw[1] >= threshold; + } catch (const std::exception &e) { + return false; + } +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.h new file mode 100644 index 0000000..6c70282 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKRestrictiveDataFilterManager : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (void)enable; ++ (void)updateFilters:(nullable NSDictionary *)restrictiveParams; ++ (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters + eventName:(NSString *)eventName; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.m new file mode 100644 index 0000000..df7d5a4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.m @@ -0,0 +1,146 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKRestrictiveDataFilterManager.h" + +#import "FBSDKBasicUtility.h" +#import "FBSDKTypeUtility.h" + +static NSString *const RESTRICTIVE_PARAM_KEY = @"restrictive_param"; + +@interface FBSDKRestrictiveEventFilter : NSObject + +@property (nonatomic, readonly, copy) NSString *eventName; +@property (nonatomic, readonly, copy) NSDictionary *restrictiveParams; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +-(instancetype)initWithEventName:(NSString *)eventName + restrictiveParams:(NSDictionary *)restrictiveParams; + +@end + +@implementation FBSDKRestrictiveEventFilter + +-(instancetype)initWithEventName:(NSString *)eventName + restrictiveParams:(NSDictionary *)restrictiveParams +{ + self = [super init]; + if (self) { + _eventName = eventName; + _restrictiveParams = restrictiveParams; + } + + return self; +} + +@end + +@implementation FBSDKRestrictiveDataFilterManager + +static BOOL isRestrictiveEventFilterEnabled = NO; + +static NSMutableArray *_params; + ++ (void)updateFilters:(nullable NSDictionary *)restrictiveParams +{ + if (!isRestrictiveEventFilterEnabled) { + return; + } + if (restrictiveParams.count > 0) { + [_params removeAllObjects]; + NSMutableArray *eventFilterArray = [NSMutableArray array]; + for (NSString *eventName in restrictiveParams.allKeys) { + NSDictionary *eventInfo = restrictiveParams[eventName]; + if (!eventInfo) { + return; + } + if (eventInfo[RESTRICTIVE_PARAM_KEY]) { + FBSDKRestrictiveEventFilter *restrictiveEventFilter = [[FBSDKRestrictiveEventFilter alloc] initWithEventName:eventName + restrictiveParams:eventInfo[RESTRICTIVE_PARAM_KEY]]; + [eventFilterArray addObject:restrictiveEventFilter]; + } + } + _params = eventFilterArray; + } +} + ++ (nullable NSString *)getMatchedDataTypeWithEventName:(NSString *)eventName + paramKey:(NSString *)paramKey +{ + // match by params in custom events with event name + for (FBSDKRestrictiveEventFilter *filter in _params) { + if ([filter.eventName isEqualToString:eventName]) { + NSString *type = [FBSDKTypeUtility stringValue:filter.restrictiveParams[paramKey]]; + if (type) { + return type; + } + } + } + return nil; +} + ++ (NSDictionary *)processParameters:(NSDictionary *)parameters + eventName:(NSString *)eventName +{ + if (!isRestrictiveEventFilterEnabled) { + return parameters; + } + if (parameters) { + NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:parameters]; + NSMutableDictionary *restrictedParams = [NSMutableDictionary dictionary]; + + for (NSString *key in [parameters keyEnumerator]) { + NSString *type = [FBSDKRestrictiveDataFilterManager getMatchedDataTypeWithEventName:eventName + paramKey:key]; + if (type) { + [restrictedParams setObject:type forKey:key]; + [params removeObjectForKey:key]; + } + } + + if ([[restrictedParams allKeys] count] > 0) { + NSString *restrictedParamsJSONString = [FBSDKBasicUtility JSONStringForObject:restrictedParams + error:NULL + invalidObjectHandler:NULL]; + [FBSDKBasicUtility dictionary:params setObject:restrictedParamsJSONString forKey:@"_restrictedParams"]; + } + + return [params copy]; + } + + return nil; +} + ++ (void)enable +{ + isRestrictiveEventFilterEnabled = YES; +} + +#pragma mark Helper functions + ++ (BOOL)isMatchedWithPattern:(NSString *)pattern + text:(NSString *)text +{ + NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:pattern options:NSRegularExpressionCaseInsensitive error:nil]; + NSUInteger matches = [regex numberOfMatchesInString:text options:0 range:NSMakeRange(0, text.length)]; + return matches > 0; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.h new file mode 100644 index 0000000..cbcb2a5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.h @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKEventInferencer : NSObject + ++ (void)loadWeights; ++ (NSDictionary *)predict:(NSString *)buttonText + viewTree:(NSMutableDictionary *)viewTree + withLog:(BOOL)isPrint; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.mm b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.mm new file mode 100644 index 0000000..aa4f183 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.mm @@ -0,0 +1,227 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKEventInferencer.h" + +#import + +#import "FBSDKFeatureExtractor.h" +#import "FBSDKModelManager.h" +#import "FBSDKModelRuntime.hpp" +#import "FBSDKModelUtility.h" +#import "FBSDKViewHierarchyMacros.h" + +#include + +static NSString *const MODEL_INFO_KEY= @"com.facebook.sdk:FBSDKModelInfo"; +static NSString *const THRESHOLDS_KEY = @"thresholds"; +static NSString *const SUGGESTED_EVENT[4] = {@"fb_mobile_add_to_cart", @"fb_mobile_complete_registration", @"other", @"fb_mobile_purchase"}; +static NSDictionary *const DEFAULT_PREDICTION = @{SUGGEST_EVENT_KEY: SUGGESTED_EVENTS_OTHER}; +static NSDictionary *const WEIGHTS_INFO = @{@"embed.weight" : @[@(256), @(64)], + @"convs.0.weight" : @[@(32), @(64), @(2)], + @"convs.0.bias" : @[@(32)], + @"convs.1.weight" : @[@(32), @(64), @(3)], + @"convs.1.bias" : @[@(32)], + @"convs.2.weight" : @[@(32), @(64), @(5)], + @"convs.2.bias" : @[@(32)], + @"fc1.weight": @[@(128), @(126)], + @"fc1.bias": @[@(128)], + @"fc2.weight": @[@(64), @(128)], + @"fc2.bias": @[@(64)], + @"fc3.weight": @[@(4), @(64)], + @"fc3.bias": @[@(4)]}; + +static std::unordered_map _weights; + +@implementation FBSDKEventInferencer : NSObject + ++ (void)loadWeights +{ + NSString *path = [FBSDKModelManager getWeightsPath:SUGGEST_EVENT_KEY]; + if (!path) { + return; + } + NSData *latestData = [NSData dataWithContentsOfFile:path + options:NSDataReadingMappedIfSafe + error:nil]; + if (!latestData) { + return; + } + std::unordered_map weights = [self loadWeights:latestData]; + if ([self validateWeights:weights]) { + _weights = weights; + } +} + ++ (bool)validateWeights: (std::unordered_map) weights +{ + if (WEIGHTS_INFO.count != weights.size()) { + return false; + } + try { + for (NSString *key in WEIGHTS_INFO) { + if (weights.count(std::string([key UTF8String])) == 0) { + return false; + } + mat::MTensor tensor = weights[std::string([key UTF8String])]; + const std::vector& actualSize = tensor.sizes(); + NSArray *expectedSize = WEIGHTS_INFO[key]; + if (actualSize.size() != expectedSize.count) { + return false; + } + for (int i = 0; i < expectedSize.count; i++) { + if((int)actualSize[i] != (int)[expectedSize[i] intValue]) { + return false; + } + } + } + } catch (const std::exception &e) { + return false; + } + return true; +} + ++ (std::unordered_map)loadWeights:(NSData *)weightsData{ + std::unordered_map weights; + try { + const void *data = weightsData.bytes; + NSUInteger totalLength = weightsData.length; + + int totalFloats = 0; + if (weightsData.length < 4) { + // Make sure data length is valid + return weights; + } + + int length; + memcpy(&length, data, 4); + if (length + 4 > totalLength) { + // Make sure data length is valid + return weights; + } + + char *json = (char *)data + 4; + NSDictionary *info = [NSJSONSerialization JSONObjectWithData:[NSData dataWithBytes:json length:length] + options:0 + error:nil]; + NSArray *keys = [[info allKeys] sortedArrayUsingComparator:^NSComparisonResult(NSString *key1, NSString *key2) { + return [key1 compare:key2]; + }]; + + float *floats = (float *)(json + length); + for (NSString *key in keys) { + std::string s_name([key UTF8String]); + + std::vector v_shape; + NSArray *shape = [info objectForKey:key]; + int count = 1; + for (NSNumber *_s in shape) { + int i = [_s intValue]; + v_shape.push_back(i); + count *= i; + } + + totalFloats += count; + + if ((4 + length + totalFloats * 4) > totalLength) { + // Make sure data length is valid + break; + } + mat::MTensor tensor = mat::mempty(v_shape); + float *tensor_data = tensor.data(); + memcpy(tensor_data, floats, sizeof(float) * count); + floats += count; + + weights[s_name] = tensor; + } + } catch(const std::exception &e) {} + + return weights; +} + ++ (NSDictionary *)predict:(NSString *)buttonText + viewTree:(NSMutableDictionary *)viewTree + withLog:(BOOL)isPrint +{ + if (buttonText.length == 0 || _weights.size() == 0) { + return DEFAULT_PREDICTION; + } + try { + // Get bytes tensor + NSString *textFeature = [FBSDKModelUtility normalizeText:[FBSDKFeatureExtractor getTextFeature:buttonText withScreenName:viewTree[@"screenname"]]]; + if (textFeature.length == 0) { + return DEFAULT_PREDICTION; + } + const char *bytes = [textFeature UTF8String]; + if ((int)strlen(bytes) == 0) { + return DEFAULT_PREDICTION; + } + + // Get dense tensor + std::vector dense_tensor_shape; + dense_tensor_shape.push_back(1); + dense_tensor_shape.push_back(30); + mat::MTensor dense_tensor = mat::mempty(dense_tensor_shape); + float *dense_tensor_data = dense_tensor.data(); + float *dense_data = [FBSDKFeatureExtractor getDenseFeatures:viewTree]; + if (!dense_data) { + return DEFAULT_PREDICTION; + } + + NSMutableDictionary *result = [[NSMutableDictionary alloc] init]; + + // Get dense feature string + NSMutableArray *denseDataArray = [NSMutableArray array]; + for (int i=0; i < 30; i++) { + [denseDataArray addObject:[NSNumber numberWithFloat: dense_data[i]]]; + } + [result setObject:[denseDataArray componentsJoinedByString:@","] forKey:DENSE_FEATURE_KEY]; + + memcpy(dense_tensor_data, dense_data, sizeof(float) * 30); + free(dense_data); + float *res = mat1::predictOnText(bytes, _weights, dense_tensor_data); + NSMutableDictionary *modelInfo = [[NSUserDefaults standardUserDefaults] objectForKey:MODEL_INFO_KEY]; + if (!modelInfo) { + return DEFAULT_PREDICTION; + } + NSDictionary * suggestedEventModelInfo = [modelInfo objectForKey:SUGGEST_EVENT_KEY]; + if (!suggestedEventModelInfo) { + return DEFAULT_PREDICTION; + } + NSMutableArray *thresholds = [suggestedEventModelInfo objectForKey:THRESHOLDS_KEY]; + if (thresholds.count < 4) { + return DEFAULT_PREDICTION; + } + + for (int i = 0; i < thresholds.count; i++){ + if ((float)res[i] >= (float)[thresholds[i] floatValue]) { + [result setObject:SUGGESTED_EVENT[i] forKey:SUGGEST_EVENT_KEY]; + return result; + } + } + } catch (const std::exception &e) {} + return DEFAULT_PREDICTION; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.h new file mode 100644 index 0000000..6207abd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.h @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKFeatureExtractor : NSObject + ++ (void)loadRules; ++ (NSString *)getTextFeature:(NSString *)text + withScreenName:(NSString *)screenName; ++ (float *)getDenseFeatures:(NSDictionary *)viewHierarchy; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.m new file mode 100644 index 0000000..71954bc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.m @@ -0,0 +1,345 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKFeatureExtractor.h" + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKModelManager.h" + +#define REGEX_CR_PASSWORD_FIELD @"password" +#define REGEX_CR_HAS_CONFIRM_PASSWORD_FIELD @"(?i)(confirm.*password)|(password.*(confirmation|confirm)|confirmation)" +#define REGEX_CR_HAS_LOG_IN_KEYWORDS @"(?i)(sign in)|login|signIn" +#define REGEX_CR_HAS_SIGN_ON_KEYWORDS @"(?i)(sign.*(up|now)|registration|" \ +@"register|(create|apply).*(profile|account)|open.*account|" \ +@"account.*(open|creation|application)|enroll|join.*now)" +#define REGEX_ADD_TO_CART_BUTTON_TEXT @"(?i)add to(\\s|\\Z)|update(\\s|\\Z)|cart" +#define REGEX_ADD_TO_CART_PAGE_TITLE @"(?i)add to(\\s|\\Z)|update(\\s|\\Z)|cart|shop|buy" + +static NSDictionary *_languageInfo; +static NSDictionary *_eventInfo; +static NSDictionary *_textTypeInfo; +static NSDictionary *_rules; + +void sum(float *val0, float *val1); + +@implementation FBSDKFeatureExtractor + ++ (void)initialize +{ + _languageInfo = @{ + @"ENGLISH" : @"1", + @"GERMAN" : @"2", + @"SPANISH" : @"3", + @"JAPANESE" : @"4" + }; + _eventInfo = @{ + @"VIEW_CONTENT" : @"0", + @"SEARCH" : @"1", + @"ADD_TO_CART" : @"2", + @"ADD_TO_WISHLIST" : @"3", + @"INITIATE_CHECKOUT" : @"4", + @"ADD_PAYMENT_INFO" : @"5", + @"PURCHASE" : @"6", + @"LEAD" : @"7", + @"COMPLETE_REGISTRATION" : @"8" + }; + _textTypeInfo = @{ + @"BUTTON_TEXT": @"1", + @"PAGE_TITLE": @"2", + @"RESOLVED_DOCUMENT_LINK": @"3", + @"BUTTON_ID": @"4" + }; +} + ++ (void)loadRules +{ + _rules = [FBSDKModelManager getRules]; +} + ++ (NSString *)getTextFeature:(NSString *)text + withScreenName:(NSString *)screenName +{ + // use "|" and "," to separate different text based on the rule of how text processed during training + NSString *appName = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleNameKey]; + return [[NSString stringWithFormat:@"%@ | %@, %@", appName, screenName, text] lowercaseString]; +} + ++ (float *)getDenseFeatures:(NSDictionary *)viewHierarchy +{ + if (!_rules) { + return nil; + } + NSMutableArray *> *viewTree = [viewHierarchy[VIEW_HIERARCHY_VIEW_KEY] mutableCopy]; + NSString *screenName = viewHierarchy[VIEW_HIERARCHY_SCREEN_NAME_KEY]; + NSMutableArray *> *siblings = [NSMutableArray array]; + + [self pruneTree:[viewTree[0] mutableCopy] siblings:siblings]; + + float *result = [self parseFeatures:viewTree[0]]; + + NSMutableDictionary *interactedNode; + for (NSMutableDictionary *node in siblings) { + if ([[node objectForKey:VIEW_HIERARCHY_IS_INTERACTED_KEY] boolValue]) { + interactedNode = node; + } + } + + NSString *viewTreeString = [[NSString alloc] initWithData:[NSJSONSerialization dataWithJSONObject:viewTree options:0 error:nil] encoding:NSUTF8StringEncoding]; + + float *nonparseResult = [self nonparseFeatures:interactedNode siblings:siblings screenname:screenName viewTreeString:viewTreeString]; + sum(result, nonparseResult); + free(nonparseResult); + + return result; +} + +#pragma mark - Helper functions ++ (BOOL)pruneTree:(NSMutableDictionary *)node siblings:(NSMutableArray *)siblings +{ + // If it's interacted, don't prune away the children and just return. + BOOL isInteracted = [[node objectForKey:VIEW_HIERARCHY_IS_INTERACTED_KEY] boolValue]; + if (isInteracted) { + return true; + } + + NSMutableArray *> *newChildren = [NSMutableArray array]; + // If a child is interacted, we're at the right level and we want to grab everything + BOOL isChildInteracted = NO; + BOOL isDescendantInteracted = NO; + + NSMutableArray *> *childviews = [node objectForKey:VIEW_HIERARCHY_CHILD_VIEWS_KEY]; + for (NSMutableDictionary *child in childviews) { + if ([child[VIEW_HIERARCHY_IS_INTERACTED_KEY] boolValue]) { + isChildInteracted = YES; + isDescendantInteracted = YES; + } + } + + if (isChildInteracted) { + [siblings addObjectsFromArray:childviews]; + } else { + for (NSMutableDictionary *c in childviews) { + NSMutableDictionary *child = [c mutableCopy]; + if ([self pruneTree:child siblings:siblings]) { + isDescendantInteracted = YES; + [newChildren addObject:child]; + } + } + node[VIEW_HIERARCHY_CHILD_VIEWS_KEY] = newChildren; + } + + return isDescendantInteracted; +} + ++ (float *)nonparseFeatures:(NSMutableDictionary *)node + siblings:(NSMutableArray *)siblings + screenname:(NSString *)screenname + viewTreeString:(NSString *)viewTreeString +{ + float *densefeat = (float *)calloc(30, sizeof(float)); + + densefeat[3] = MAX((float)siblings.count - 1, 0); + + densefeat[9] = [siblings filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id _Nullable evaluatedObject, NSDictionary * _Nullable bindings) { + return [self isButton:evaluatedObject]; + }]].count; + if ([self isButton:node]) { + densefeat[9] -= 1; + } + + densefeat[13] = -1; + densefeat[14] = -1; + + NSString *pageTitle = screenname ?: @""; + NSString *formFieldsJSON = viewTreeString; + NSString *buttonID = @""; + NSString *buttonText = @""; + + if ([self isButton:node]) { + NSMutableString *buttonTextString = [NSMutableString string]; + NSMutableString *buttonHintString = [NSMutableString string]; + [self update:node text:buttonTextString hint:buttonHintString]; + buttonText = (NSString *)buttonTextString; + buttonID = (NSString *)buttonHintString; + } + + // Regex features + densefeat[15] = [self regexMatch:@"ENGLISH" event:@"COMPLETE_REGISTRATION" textType:@"BUTTON_TEXT" matchText:buttonText]; + densefeat[16] = [self regexMatch:@"ENGLISH" event:@"COMPLETE_REGISTRATION" textType:@"PAGE_TITLE" matchText:pageTitle]; + densefeat[17] = [self regexMatch:@"ENGLISH" event:@"COMPLETE_REGISTRATION" textType:@"BUTTON_ID" matchText:buttonID]; + + densefeat[18] = [formFieldsJSON containsString:REGEX_CR_PASSWORD_FIELD] ? 1.0 : 0.0; + + densefeat[19] = [self regextMatch:REGEX_CR_HAS_CONFIRM_PASSWORD_FIELD text:formFieldsJSON]; + densefeat[20] = [self regextMatch:REGEX_CR_HAS_LOG_IN_KEYWORDS text:formFieldsJSON]; + densefeat[21] = [self regextMatch:REGEX_CR_HAS_SIGN_ON_KEYWORDS text:formFieldsJSON]; + + // Purchase specific features + densefeat[22] = [self regexMatch:@"ENGLISH" event:@"PURCHASE" textType:@"BUTTON_TEXT" matchText:buttonText]; + densefeat[24] = [self regexMatch:@"ENGLISH" event:@"PURCHASE" textType:@"PAGE_TITLE" matchText:pageTitle]; + + // AddToCart specific features + densefeat[25] = [self regextMatch:REGEX_ADD_TO_CART_BUTTON_TEXT text:buttonText]; + densefeat[27] = [self regextMatch:REGEX_ADD_TO_CART_PAGE_TITLE text:pageTitle]; + + // Lead specific features + densefeat[28] = [self regexMatch:@"ENGLISH" event:@"LEAD" textType:@"BUTTON_TEXT" matchText:buttonText]; + densefeat[29] = [self regexMatch:@"ENGLISH" event:@"LEAD" textType:@"PAGE_TITLE" matchText:pageTitle]; + + return densefeat; +} + ++ (float *)parseFeatures:(NSMutableDictionary *)node +{ + float *densefeat = (float *)calloc(30, sizeof(float)); + + NSString *text = [node[VIEW_HIERARCHY_TEXT_KEY] lowercaseString] ?: @""; + NSString *hint = [node[VIEW_HIERARCHY_HINT_KEY] lowercaseString] ?: @""; + NSString *className = [node[VIEW_HIERARCHY_CLASS_NAME_KEY] lowercaseString] ?: @""; + + if ([self foundIndicators:[@"$,amount,price,total" componentsSeparatedByString:@","] + inValues:@[text, hint]]) { + densefeat[0] += 1.0; + } + + if ([self foundIndicators:[@"password,pwd" componentsSeparatedByString:@","] + inValues:@[text, hint]]) { + densefeat[1] += 1.0; + } + + if ([self foundIndicators:[@"phone,tel" componentsSeparatedByString:@","] + inValues:@[text, hint]]) { + densefeat[2] += 1.0; + } + + if ([self foundIndicators:@[@"search"] + inValues:@[text, hint]]) { + densefeat[4] += 1.0; + } + + // Input field with general text + if ([className containsString:@"text"] && [className containsString:@"edit"]) { + densefeat[5] += 1.0; + } + + // Input field with number or phone + if (([className containsString:@"num"] || [className containsString:@"phone"]) && [className containsString:@"edit"]) { + densefeat[6] += 1.0; + } + + if ([hint containsString:@"email"] || [text containsString:@"@"]) { + densefeat[7] += 1.0; + } + + // Check Box + if ([className containsString:@"checkbox"]) { + densefeat[8] += 1.0; + } + + if ([self foundIndicators:[@"complete,confirm,done,submit" componentsSeparatedByString:@","] + inValues:@[text]]) { + densefeat[10] += 1.0; + } + + densefeat[11] = 0.0; + + // Radio Button + if ([className containsString:@"radio"] && [className containsString:@"button"]) { + densefeat[12] += 1.0; + } + + NSMutableArray *> *childviews = node[VIEW_HIERARCHY_CHILD_VIEWS_KEY]; + + for (int i = 0; i < childviews.count; i++) { + sum(densefeat, [self parseFeatures:childviews[i]]); + } + + return densefeat; +} + +void sum(float *val0, float *val1) { + for (int i = 0; i < 30; i++) { + val0[i] += val1[i]; + } +} + ++ (BOOL)isButton:(NSDictionary *)node +{ + int classtypebitmask = [[node objectForKey:VIEW_HIERARCHY_CLASS_TYPE_BITMASK_KEY] intValue]; + return (classtypebitmask & FBCodelessClassBitmaskUIButton) > 0; +} + ++ (void)update:(NSDictionary *)node + text:(NSMutableString *)buttonTextString + hint:(NSMutableString *)buttonHintString +{ + NSString *text = [node[VIEW_HIERARCHY_TEXT_KEY] lowercaseString]; + NSString *hint = [node[VIEW_HIERARCHY_HINT_KEY] lowercaseString]; + + if (text.length > 0) { + [buttonTextString appendFormat:@"%@ ", text]; + } + if (hint.length > 0) { + [buttonHintString appendFormat:@"%@ ", hint]; + } + + NSMutableArray *> *childviews = node[VIEW_HIERARCHY_CHILD_VIEWS_KEY]; + for (NSMutableDictionary *child in childviews) { + [self update:child text:buttonTextString hint:buttonHintString]; + } +} + ++ (BOOL)foundIndicators:(NSArray *)indicators inValues:(NSArray *)values +{ + for (NSString *indicator in indicators) { + for (NSString *value in values) { + if ([value containsString:indicator]) { + return YES; + } + } + } + + return NO; +} + ++ (float)regextMatch:(NSString *)pattern text:(NSString *)text +{ + NSRegularExpression *re = [NSRegularExpression regularExpressionWithPattern:pattern options:0 error:nil]; + NSRange range = NSMakeRange(0, text.length); + NSArray *matched = [re matchesInString:text options:0 range:range]; + return matched.count > 0 ? 1.0 : 0.0; +} + ++ (float)regexMatch:(NSString *)language + event:(NSString *)event + textType:(NSString *)textType + matchText:(NSString *)matchText +{ + NSString *pattern = _rules[@"rulesForLanguage"][_languageInfo[language]] + [@"rulesForEvent"][_eventInfo[event]] + [@"positiveRules"][_textTypeInfo[textType]]; + return [self regextMatch:pattern text:matchText]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.h new file mode 100644 index 0000000..d8eaed6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKSuggestedEventsIndexer : NSObject + ++ (void)enable; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.m new file mode 100644 index 0000000..55b0c4e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.m @@ -0,0 +1,271 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKSuggestedEventsIndexer.h" + +#import +#import +#import + +#import + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKEventInferencer.h" + +NSString * const OptInEvents = @"production_events"; +NSString * const UnconfirmedEvents = @"eligible_for_prediction_events"; + +static NSMutableArray *> *_viewTrees; +static NSMutableSet *_optInEvents; +static NSMutableSet *_unconfirmedEvents; + +@implementation FBSDKSuggestedEventsIndexer + ++ (void)initialize +{ + _viewTrees = [NSMutableArray array]; + _optInEvents = [NSMutableSet set]; + _unconfirmedEvents = [NSMutableSet set]; +} + ++ (void)enable +{ + [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:^(FBSDKServerConfiguration *serverConfiguration, NSError *error) { + if (error) { + return; + } + + NSDictionary *suggestedEventsSetting = serverConfiguration.suggestedEventsSetting; + if ([suggestedEventsSetting isKindOfClass:[NSNull class]] || !suggestedEventsSetting[OptInEvents] || !suggestedEventsSetting[UnconfirmedEvents]) { + return; + } + + [_optInEvents addObjectsFromArray:suggestedEventsSetting[OptInEvents]]; + [_unconfirmedEvents addObjectsFromArray:suggestedEventsSetting[UnconfirmedEvents]]; + + [FBSDKSuggestedEventsIndexer setup]; + }]; +} + ++ (void)setup +{ + // won't do the model prediction when there is no opt-in event and unconfirmed event + if (_optInEvents.count == 0 && _unconfirmedEvents.count == 0) { + return; + } + + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + + // swizzle UIButton + [FBSDKSwizzler swizzleSelector:@selector(didMoveToWindow) onClass:[UIButton class] withBlock:^(UIButton *button) { + if (button.window) { + [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchDown]; + } + } named:@"suggested_events"]; + + // UITableView + void (^tableViewBlock)(UITableView *tableView, + SEL cmd, + id delegate) = + ^(UITableView *tableView, SEL cmd, id delegate) { + [self handleView:tableView withDelegate:delegate]; + }; + [FBSDKSwizzler swizzleSelector:@selector(setDelegate:) + onClass:[UITableView class] + withBlock:tableViewBlock + named:@"suggested_events"]; + + // UICollectionView + void (^collectionViewBlock)(UICollectionView *collectionView, + SEL cmd, + id delegate) = + ^(UICollectionView *collectionView, SEL cmd, id delegate) { + [self handleView:collectionView withDelegate:delegate]; + }; + [FBSDKSwizzler swizzleSelector:@selector(setDelegate:) + onClass:[UICollectionView class] + withBlock:collectionViewBlock + named:@"suggested_events"]; + + fb_dispatch_on_main_thread(^{ + [self rematchBindings]; + }); + }); +} + ++ (void)rematchBindings { + NSArray *windows = [UIApplication sharedApplication].windows; + for (UIWindow *window in windows) { + [self matchSubviewsIn:window]; + } +} + ++ (void)matchSubviewsIn:(UIView *)view { + if (!view) { + return; + } + + for (UIView *subview in view.subviews) { + + if ([subview isKindOfClass:[UITableView class]]) { + UITableView *tableView = (UITableView *)subview; + [self handleView:tableView withDelegate:tableView.delegate]; + } else if ([subview isKindOfClass:[UICollectionView class]]) { + UICollectionView *collectionView = (UICollectionView *)subview; + [self handleView:collectionView withDelegate:collectionView.delegate]; + } else if ([subview isKindOfClass:[UIButton class]]) { + [(UIButton *)subview addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchDown]; + } + + if (![subview isKindOfClass:[UIControl class]]) { + [self matchSubviewsIn:subview]; + } + } +} + ++ (void)buttonClicked:(UIButton *)button +{ + [self predictEvent:button withText:[FBSDKViewHierarchy getText:button]]; +} + ++ (void)handleView:(UIView *)view withDelegate:(id)delegate +{ + if (!delegate) { + return; + } + + if ([view isKindOfClass:[UITableView class]] + && [delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)]) { + void (^block)(id, SEL, id, id) = ^(id target, SEL command, UITableView *tableView, NSIndexPath *indexPath) { + UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; + [self predictEvent:cell withText:[self getTextFromContentView:[cell contentView]]]; + }; + [FBSDKSwizzler swizzleSelector:@selector(tableView:didSelectRowAtIndexPath:) + onClass:[delegate class] + withBlock:block + named:@"suggested_events"]; + } else if ([view isKindOfClass:[UICollectionView class]] + && [delegate respondsToSelector:@selector(collectionView:didSelectItemAtIndexPath:)]) { + void (^block)(id, SEL, id, id) = ^(id target, SEL command, UICollectionView *collectionView, NSIndexPath *indexPath) { + UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath]; + [self predictEvent:cell withText:[self getTextFromContentView:[cell contentView]]]; + }; + [FBSDKSwizzler swizzleSelector:@selector(collectionView:didSelectItemAtIndexPath:) + onClass:[delegate class] + withBlock:block + named:@"suggested_events"]; + } +} + ++ (void)predictEvent:(NSObject *)obj withText:(NSString *)text +{ + if (text.length > 100 || text.length == 0 || [FBSDKAppEventsUtility isSensitiveUserData: text]) { + return; + } + + NSMutableArray *> *trees = [NSMutableArray array]; + + fb_dispatch_on_main_thread(^{ + NSArray *windows = [UIApplication sharedApplication].windows; + for (UIWindow *window in windows) { + NSDictionary *tree = [FBSDKViewHierarchy recursiveCaptureTree:window withObject:obj]; + if (tree) { + if (window.isKeyWindow) { + [trees insertObject:tree atIndex:0]; + } else { + [trees addObject:tree]; + } + } + } + NSMutableDictionary *treeInfo = [NSMutableDictionary dictionary]; + + NSString *screenName = nil; + UIViewController *topMostViewController = [FBSDKInternalUtility topMostViewController]; + if (topMostViewController) { + screenName = NSStringFromClass([topMostViewController class]); + } + + treeInfo[VIEW_HIERARCHY_VIEW_KEY] = trees; + treeInfo[VIEW_HIERARCHY_SCREEN_NAME_KEY] = screenName ?: @""; + + [_viewTrees addObject:treeInfo]; + + NSDictionary *viewTree = [_viewTrees lastObject]; + + fb_dispatch_on_default_thread(^{ + NSDictionary *result = [FBSDKEventInferencer predict:text viewTree:[viewTree mutableCopy] withLog:YES]; + NSString *event = result[SUGGEST_EVENT_KEY]; + if (!event || [event isEqualToString:SUGGESTED_EVENTS_OTHER]) { + return; + } + if ([_optInEvents containsObject:event]) { + [FBSDKAppEvents logEvent:event + parameters:@{@"_is_suggested_event": @"1", + @"_button_text": text + }]; + } else if ([_unconfirmedEvents containsObject:event]) { + // Only send back not confirmed events to advertisers + [self logSuggestedEvent:event withText:text withDenseFeature:result[DENSE_FEATURE_KEY] ?: @""]; + } + }); + }); +} + +#pragma mark - Helper Methods + ++ (NSString *)getTextFromContentView:(UIView *)contentView +{ + NSMutableArray *textArray = [NSMutableArray array]; + for (UIView *subView in [contentView subviews]) { + NSString *label = [FBSDKViewHierarchy getText:subView]; + if (label.length > 0) { + [textArray addObject:label]; + } + } + return [textArray componentsJoinedByString:@" "]; +} + ++ (void)logSuggestedEvent:(NSString *)event withText:(NSString *)text withDenseFeature:(NSString *)denseFeature +{ + NSString *metadata = [FBSDKBasicUtility JSONStringForObject:@{@"button_text": text, + @"dense": denseFeature, + } + error:nil + invalidObjectHandler:nil]; + if (!metadata) { + return; + } + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] + initWithGraphPath:[NSString stringWithFormat:@"%@/suggested_events", [FBSDKSettings appID]] + parameters: @{@"event_name": event, + @"metadata": metadata, + } + HTTPMethod:FBSDKHTTPMethodPOST]; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {}]; + return; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.h new file mode 100644 index 0000000..99db73a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.h @@ -0,0 +1,74 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +typedef NS_ENUM(NSUInteger, FBCodelessClassBitmask) { + /** Indicates that the class is subclass of UIControl */ + FBCodelessClassBitmaskUIControl = 1 << 3, + /** Indicates that the class is subclass of UIControl */ + FBCodelessClassBitmaskUIButton = 1 << 4, + /** Indicates that the class is ReactNative Button */ + FBCodelessClassBitmaskReactNativeButton = 1 << 6, + /** Indicates that the class is UITableViewCell */ + FBCodelessClassBitmaskUITableViewCell = 1 << 7, + /** Indicates that the class is UICollectionViewCell */ + FBCodelessClassBitmaskUICollectionViewCell = 1 << 8, + /** Indicates that the class is UILabel */ + FBCodelessClassBitmaskLabel = 1 << 10, + /** Indicates that the class is UITextView or UITextField*/ + FBCodelessClassBitmaskInput = 1 << 11, + /** Indicates that the class is UIPicker*/ + FBCodelessClassBitmaskPicker = 1 << 12, + /** Indicates that the class is UISwitch*/ + FBCodelessClassBitmaskSwitch = 1 << 13, + /** Indicates that the class is UIViewController*/ + FBCodelessClassBitmaskUIViewController = 1 << 17, +}; + +extern void fb_dispatch_on_main_thread(dispatch_block_t block); +extern void fb_dispatch_on_default_thread(dispatch_block_t block); + +NS_SWIFT_NAME(ViewHierarchy) +@interface FBSDKViewHierarchy : NSObject + ++ (NSObject *)getParent:(NSObject *)obj; ++ (NSArray *)getChildren:(NSObject *)obj; ++ (NSArray *)getPath:(NSObject *)obj; ++ (NSMutableDictionary *)getDetailAttributesOf:(NSObject *)obj; + ++ (NSString *)getText:(NSObject *)obj; ++ (NSString *)getHint:(NSObject *)obj; ++ (NSIndexPath *)getIndexPath:(NSObject *)obj; ++ (NSUInteger)getClassBitmask:(NSObject *)obj; ++ (UITableView *)getParentTableView:(UIView *)cell; ++ (UICollectionView *)getParentCollectionView:(UIView *)cell; ++ (NSInteger)getTag:(NSObject *)obj; ++ (NSNumber *)getViewReactTag:(UIView *)view; + ++ (NSDictionary *)recursiveCaptureTree:(NSObject *)obj withObject:(NSObject *)interact; + ++ (BOOL)isUserInputView:(NSObject *)obj; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.m new file mode 100644 index 0000000..e3aa150 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.m @@ -0,0 +1,662 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKViewHierarchy.h" + +#import + +#import + +#import "FBSDKCodelessPathComponent.h" +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKViewHierarchyMacros.h" + +#define MAX_VIEW_HIERARCHY_LEVEL 35 + +void fb_dispatch_on_main_thread(dispatch_block_t block) { + if (block != nil) { + if ([NSThread isMainThread]) { + block(); + } else { + dispatch_async(dispatch_get_main_queue(), block); + } + } +} + +void fb_dispatch_on_default_thread(dispatch_block_t block) { + if (block != nil) { + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), block); + } +} + +@implementation FBSDKViewHierarchy + ++ (NSArray*)getChildren:(NSObject*)obj +{ + if ([obj isKindOfClass:[UIControl class]]) { + return nil; + } + + NSMutableArray *children = [NSMutableArray array]; + + // children of window should be viewcontroller + if ([obj isKindOfClass:[UIWindow class]]) { + UIViewController *rootVC = ((UIWindow *)obj).rootViewController; + NSArray *subviews = ((UIWindow *)obj).subviews; + for (UIView *child in subviews) { + if (child != rootVC.view) { + UIViewController *vc = [FBSDKViewHierarchy getParentViewController:child]; + if (vc != nil && vc.view == child) { + [children addObject:vc]; + } else { + [children addObject:child]; + } + } else { + if (rootVC) { + [children addObject:rootVC]; + } + } + } + } else if ([obj isKindOfClass:[UIView class]]) { + NSArray *subviews = [((UIView *)obj).subviews copy]; + for (UIView *child in subviews) { + UIViewController *vc = [FBSDKViewHierarchy getParentViewController:child]; + if (vc && vc.view == child) { + [children addObject:vc]; + } else { + [children addObject:child]; + } + } + } else if ([obj isKindOfClass:[UINavigationController class]]) { + UIViewController *vc = ((UINavigationController*)obj).visibleViewController; + UIViewController *tc = ((UINavigationController*)obj).topViewController; + NSArray *nextChildren = [FBSDKViewHierarchy getChildren:((UIViewController*)obj).view]; + for (NSObject *child in nextChildren) { + if (tc && [self isView:child superViewOfView:tc.view]) { + [children addObject:tc]; + } else if (vc && [self isView:child superViewOfView:vc.view]) { + [children addObject:vc]; + } else { + if (child != vc.view && child != tc.view) { + [children addObject:child]; + } else { + if (vc && child == vc.view) { + [children addObject:vc]; + } else if (tc && child == tc.view) { + [children addObject:tc]; + } + } + } + } + + if (vc && ![children containsObject:vc]) { + [children addObject:vc]; + } + } else if ([obj isKindOfClass:[UITabBarController class]]) { + UIViewController *vc = ((UITabBarController *)obj).selectedViewController; + NSArray *nextChildren = [FBSDKViewHierarchy getChildren:((UIViewController*)obj).view]; + for (NSObject *child in nextChildren) { + if (vc && [self isView:child superViewOfView:vc.view]) { + [children addObject:vc]; + } else { + if (vc && child == vc.view) { + [children addObject:vc]; + } else { + [children addObject:child]; + } + } + } + + if (vc && ![children containsObject:vc]) { + [children addObject:vc]; + } + } else if ([obj isKindOfClass:[UIViewController class]]) { + UIViewController *vc = (UIViewController *)obj; + if (vc.isViewLoaded) { + NSArray *nextChildren = [FBSDKViewHierarchy getChildren:vc.view]; + if (nextChildren.count > 0) { + [children addObjectsFromArray:nextChildren]; + } + } + for (NSObject *child in vc.childViewControllers) { + [children addObject:child]; + } + UIViewController *presentedVC = vc.presentedViewController; + if (presentedVC) { + [children addObject:presentedVC]; + } + } + return children; +} + ++ (NSObject *)getParent:(NSObject *)obj +{ + if ([obj isKindOfClass:[UIView class]]) { + UIView *superview = ((UIView *)obj).superview; + UIViewController *superviewViewController = [FBSDKViewHierarchy + getParentViewController:superview]; + if (superviewViewController && superviewViewController.view == superview) { + return superviewViewController; + } + if (superview && superview != obj) { + return superview; + } + } + else if ([obj isKindOfClass:[UIViewController class]]) { + UIViewController *vc = (UIViewController *)obj; + UIViewController *parentVC = vc.parentViewController; + UIViewController *presentingVC = vc.presentingViewController; + UINavigationController *nav = vc.navigationController; + UITabBarController *tab = vc.tabBarController; + + if (nav) { + return nav; + } + + if (tab) { + return tab; + } + + if (parentVC) { + return parentVC; + } + + if (presentingVC && presentingVC.presentedViewController == vc) { + return presentingVC; + } + + // Return parent of view of UIViewController + NSObject *viewParent = [FBSDKViewHierarchy getParent:vc.view]; + if (viewParent) { + return viewParent; + } + } + return nil; +} + ++ (NSArray *)getPath:(NSObject *)obj +{ + return [FBSDKViewHierarchy getPath:obj limit:MAX_VIEW_HIERARCHY_LEVEL]; +} + ++ (NSArray *)getPath:(NSObject *)obj limit:(int)limit +{ + if (!obj || limit <= 0) { + return nil; + } + + NSMutableArray *path; + + NSObject *parent = [FBSDKViewHierarchy getParent:obj]; + if (parent) { + NSArray *parentPath = [FBSDKViewHierarchy getPath:parent limit:limit - 1]; + path = [NSMutableArray arrayWithArray:parentPath]; + } else { + path = [NSMutableArray array]; + } + + NSDictionary *componentInfo = [FBSDKViewHierarchy getAttributesOf:obj parent:parent]; + + FBSDKCodelessPathComponent *pathComponent = [[FBSDKCodelessPathComponent alloc] + initWithJSON:componentInfo]; + [path addObject:pathComponent]; + + return [NSArray arrayWithArray:path]; +} + ++ (NSDictionary *)getAttributesOf:(NSObject *)obj parent:(NSObject *)parent +{ + NSMutableDictionary *componentInfo = [NSMutableDictionary dictionary]; + componentInfo[CODELESS_MAPPING_CLASS_NAME_KEY] = NSStringFromClass([obj class]); + + if (![FBSDKViewHierarchy isUserInputView:obj]) { + NSString *text = [FBSDKViewHierarchy getText:obj]; + if (text) { + componentInfo[CODELESS_MAPPING_TEXT_KEY] = text; + } + } else { + componentInfo[CODELESS_MAPPING_TEXT_KEY] = @""; + componentInfo[CODELESS_MAPPING_IS_USER_INPUT_KEY] = @YES; + } + + NSString *hint = [FBSDKViewHierarchy getHint:obj]; + if (hint) { + componentInfo[CODELESS_MAPPING_HINT_KEY] = hint; + } + + NSIndexPath *indexPath = [FBSDKViewHierarchy getIndexPath:obj]; + if (indexPath) { + componentInfo[CODELESS_MAPPING_SECTION_KEY] = @(indexPath.section); + componentInfo[CODELESS_MAPPING_ROW_KEY] = @(indexPath.row); + } + + if (parent != nil) { + NSArray *children = [FBSDKViewHierarchy getChildren:parent]; + NSUInteger index = [children indexOfObject:obj]; + if (index != NSNotFound) { + componentInfo[CODELESS_MAPPING_INDEX_KEY] = @(index); + } + } else { + componentInfo[CODELESS_MAPPING_INDEX_KEY] = @0; + } + + componentInfo[CODELESS_VIEW_TREE_TAG_KEY] = @([FBSDKViewHierarchy getTag:obj]); + + return [componentInfo copy]; +} + ++ (NSMutableDictionary *)getDetailAttributesOf:(NSObject *)obj +{ + return [self getDetailAttributesOf:obj withHash:YES]; +} + ++ (NSMutableDictionary *)getDetailAttributesOf:(NSObject *)obj withHash:(BOOL)hash +{ + if (!obj) { + return nil; + } + + NSObject *parent = [FBSDKViewHierarchy getParent:obj]; + + NSDictionary *simpleAttributes = [FBSDKViewHierarchy getAttributesOf:obj parent:parent]; + + NSMutableDictionary *result = [NSMutableDictionary dictionaryWithDictionary:simpleAttributes]; + + NSString *className = NSStringFromClass([obj class]); + result[VIEW_HIERARCHY_CLASS_NAME_KEY] = className; + + NSUInteger classBitmask = [FBSDKViewHierarchy getClassBitmask:obj]; + result[VIEW_HIERARCHY_CLASS_TYPE_BITMASK_KEY] = [NSString stringWithFormat:@"%lu", (unsigned long)classBitmask]; + + if ([obj isKindOfClass:[UIControl class]]) { + // Get actions of UIControl + UIControl *control = (UIControl *)obj; + NSMutableSet *actions = [NSMutableSet set]; + NSSet *targets = control.allTargets; + for (NSObject *target in targets) { + NSArray *ary = [control actionsForTarget:target forControlEvent:0]; + if (ary.count > 0) { + [actions addObjectsFromArray:ary]; + } + } + if (targets.count > 0) { + result[CODELESS_VIEW_TREE_ACTIONS_KEY] = actions.allObjects; + } + } + + result[CODELESS_VIEW_TREE_DIMENSION_KEY] = [FBSDKViewHierarchy getDimensionOf:obj]; + + NSDictionary *textStyle = [FBSDKViewHierarchy getTextStyle:obj]; + if (textStyle) { + result[CODELESS_VIEW_TREE_TEXT_STYLE_KEY] = textStyle; + } + + if (hash) { + // hash text and hint + result[VIEW_HIERARCHY_TEXT_KEY] = [FBSDKUtility SHA256Hash:result[VIEW_HIERARCHY_TEXT_KEY]]; + result[VIEW_HIERARCHY_HINT_KEY] = [FBSDKUtility SHA256Hash:result[VIEW_HIERARCHY_HINT_KEY]]; + } + + return result; +} + ++ (NSIndexPath *)getIndexPath:(NSObject *)obj +{ + NSIndexPath *indexPath = nil; + + if ([obj isKindOfClass:[UITableViewCell class]]) { + UITableView *tableView = [FBSDKViewHierarchy getParentTableView:(UIView *)obj]; + indexPath = [tableView indexPathForCell:(UITableViewCell *)obj]; + } else if ([obj isKindOfClass:[UICollectionViewCell class]]) { + UICollectionView *collectionView = [FBSDKViewHierarchy getParentCollectionView:(UIView *)obj]; + indexPath = [collectionView indexPathForCell:(UICollectionViewCell *)obj]; + } + + return indexPath; +} + ++ (NSString *)getText:(NSObject *)obj +{ + NSString *text = nil; + + if ([obj isKindOfClass:[UIButton class]]) { + text = ((UIButton *)obj).currentTitle; + } else if ([obj isKindOfClass:[UITextView class]] || + [obj isKindOfClass:[UITextField class]] || + [obj isKindOfClass:[UILabel class]]) { + text = ((UILabel *)obj).text; + } else if ([obj isKindOfClass:[UIPickerView class]]) { + UIPickerView *picker = (UIPickerView *)obj; + NSInteger sections = picker.numberOfComponents; + NSMutableArray *titles = [NSMutableArray array]; + + for (NSInteger i = 0; i < sections; i++) { + NSInteger row = [picker selectedRowInComponent:i]; + NSString *title; + if ([picker.delegate + respondsToSelector:@selector(pickerView:titleForRow:forComponent:)]) { + title = [picker.delegate pickerView:picker titleForRow:row forComponent:i]; + } else if ([picker.delegate + respondsToSelector:@selector(pickerView:attributedTitleForRow:forComponent:)]) { + title = [picker.delegate + pickerView:picker + attributedTitleForRow:row forComponent:i].string; + } + [titles addObject:title ?: @""]; + } + + if (titles.count > 0) { + text = [FBSDKBasicUtility JSONStringForObject:titles + error:NULL + invalidObjectHandler:NULL]; + } + } else if ([obj isKindOfClass:[UIDatePicker class]]) { + UIDatePicker *picker = (UIDatePicker *)obj; + NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; + formatter.dateFormat = @"yyyy-MM-dd HH:mm:ssZ"; + text = [formatter stringFromDate:picker.date]; + } else if ([obj isKindOfClass:objc_lookUpClass("RCTTextView")]) { + NSTextStorage *textStorage = [FBSDKAppEventsUtility getVariable:@"_textStorage" + fromInstance:obj]; + if (textStorage) { + text = textStorage.string; + } + } else if ([obj isKindOfClass:objc_lookUpClass("RCTBaseTextInputView")]) { + NSAttributedString *attributedText = [FBSDKAppEventsUtility getVariable:@"attributedText" + fromInstance:obj]; + text = attributedText.string; + } + + return text.length > 0 ? text : nil; +} + ++ (NSDictionary *)getTextStyle:(NSObject *)obj +{ + UIFont *font = nil; + if ([obj isKindOfClass:[UIButton class]]) { + font = ((UIButton *)obj).titleLabel.font; + } else if ([obj isKindOfClass:[UILabel class]]) { + font = ((UILabel *)obj).font; + } else if ([obj isKindOfClass:[UITextField class]]) { + font = ((UITextField *)obj).font; + } else if ([obj isKindOfClass:[UITextView class]]) { + font = ((UITextView *)obj).font; + } + + if (font) { + UIFontDescriptorSymbolicTraits traits = font.fontDescriptor.symbolicTraits; + BOOL isBold = (traits & UIFontDescriptorTraitBold) != 0; + BOOL isItalic = (traits & UIFontDescriptorTraitItalic) != 0; + CGFloat fontSize = font.pointSize; + + return @{ + CODELESS_VIEW_TREE_TEXT_IS_BOLD_KEY: @(isBold), + CODELESS_VIEW_TREE_TEXT_IS_ITALIC_KEY: @(isItalic), + CODELESS_VIEW_TREE_TEXT_SIZE_KEY: @(fontSize) + }; + } + + return nil; +} + ++ (NSString *)getHint:(NSObject *)obj +{ + NSString *hint = nil; + + if ([obj isKindOfClass:[UITextField class]]) { + hint = ((UITextField *)obj).placeholder; + } else if ([obj isKindOfClass:[UINavigationController class]]) { + UIViewController *top = ((UINavigationController *)obj).topViewController; + if (top) { + hint = NSStringFromClass([top class]); + } + } + + return hint.length > 0 ? hint : nil; +} + ++ (NSUInteger)getClassBitmask:(NSObject *)obj +{ + NSUInteger bitmask = 0; + + if ([obj isKindOfClass:[UIView class]]) { + if ([obj isKindOfClass:[UIControl class]]) { + bitmask |= FBCodelessClassBitmaskUIControl; + if ([obj isKindOfClass:[UIButton class]]) { + bitmask |= FBCodelessClassBitmaskUIButton; + } else if ([obj isKindOfClass:[UISwitch class]]) { + bitmask |= FBCodelessClassBitmaskSwitch; + }else if ([obj isKindOfClass:[UIDatePicker class]]) { + bitmask |= FBCodelessClassBitmaskPicker; + } + } else if ([obj isKindOfClass:[UITableViewCell class]]) { + bitmask |= FBCodelessClassBitmaskUITableViewCell; + } else if ([obj isKindOfClass:[UICollectionViewCell class]]) { + bitmask |= FBCodelessClassBitmaskUICollectionViewCell; + } else if ([obj isKindOfClass:[UIPickerView class]]) { + bitmask |= FBCodelessClassBitmaskPicker; + } else if ([obj isKindOfClass:[UILabel class]]) { + bitmask |= FBCodelessClassBitmaskLabel; + } + + if ([FBSDKViewHierarchy isRCTButton:((UIView *)obj)]) { + bitmask |= FBCodelessClassBitmaskReactNativeButton; + } + + // Check selector of UITextInput protocol instead of checking conformsToProtocol + if ([obj respondsToSelector:@selector(textInRange:)]) { + bitmask |= FBCodelessClassBitmaskInput; + } + } else if ([obj isKindOfClass:[UIViewController class]]) { + bitmask |= FBCodelessClassBitmaskUIViewController; + } + + return bitmask; +} + ++ (BOOL)isUserInputView:(NSObject *)obj +{ + if (obj && [obj conformsToProtocol:@protocol(UITextInput)]) { + id input = (id)obj; + if ([input respondsToSelector:@selector(isSecureTextEntry)] + && input.secureTextEntry) { + return YES; + } else { + if ([input respondsToSelector:@selector(keyboardType)]) { + switch (input.keyboardType) { + case UIKeyboardTypePhonePad: + case UIKeyboardTypeEmailAddress: + return YES; + default: break; + } + } + } + } + + NSString *text = [FBSDKViewHierarchy getText:obj]; + return text && [FBSDKAppEventsUtility isSensitiveUserData:text]; +} + ++ (NSDictionary *)recursiveCaptureTree:(NSObject *)obj withObject:(NSObject *)interact +{ + if (!obj) { + return nil; + } + + NSMutableDictionary *result = [FBSDKViewHierarchy getDetailAttributesOf:obj withHash:NO]; + + NSArray *children = [FBSDKViewHierarchy getChildren:obj]; + NSMutableArray *> *childrenTrees = [NSMutableArray array]; + for (NSObject *child in children) { + NSDictionary *objTree = [self recursiveCaptureTree:child withObject:interact]; + [childrenTrees addObject:objTree]; + } + + if (childrenTrees.count > 0) { + [result setObject:[childrenTrees copy] forKey:VIEW_HIERARCHY_CHILD_VIEWS_KEY]; + } + if (obj == interact) { + [result setObject:[NSNumber numberWithBool:YES] forKey:VIEW_HIERARCHY_IS_INTERACTED_KEY]; + } + return [result copy]; +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wundeclared-selector" ++ (BOOL)isRCTButton:(UIView *)view +{ + if (view == nil) { + return NO; + } + + Class classRCTView = objc_lookUpClass(ReactNativeClassRCTView); + if (classRCTView && [view isKindOfClass:classRCTView] && + [view respondsToSelector:@selector(reactTagAtPoint:)] && + [view respondsToSelector:@selector(reactTag)] && + view.userInteractionEnabled) { + // We check all its subviews locations and the view is clickable if there exists one that mathces reactTagAtPoint + for (UIView *subview in view.subviews) { + if (subview && ![subview isKindOfClass:classRCTView]) { + NSNumber *reactTag = [view performSelector:@selector(reactTagAtPoint:) + withObject:[NSValue valueWithCGPoint:subview.frame.origin]]; + NSNumber *subviewReactTag = [FBSDKViewHierarchy getViewReactTag:subview]; + if (reactTag != nil && subviewReactTag != nil && [reactTag isEqualToNumber:subviewReactTag]) { + return YES; + } + } + } + } + + return NO; +} + ++ (NSNumber *)getViewReactTag:(UIView *)view +{ + if (view != nil && [view respondsToSelector:@selector(reactTag)]) { + NSNumber *reactTag = [view performSelector:@selector(reactTag)]; + if (reactTag != nil && [reactTag isKindOfClass:[NSNumber class]]) { + return reactTag; + } + } + + return nil; +} +#pragma clang diagnostic pop + ++ (BOOL)isView:(NSObject *)obj1 superViewOfView:(UIView *)obj2 +{ + if (![obj1 isKindOfClass:[UIView class]] + || ![obj2 isKindOfClass:[UIView class]]) { + return NO; + } + UIView *view1 = (UIView *)obj1; + UIView *view2 = (UIView *)obj2; + UIView *superview = view2; + while (superview) { + superview = superview.superview; + if (superview == view1) { + return YES; + } + } + + return NO; +} + ++ (UIViewController *)getParentViewController:(UIView *)view +{ + UIResponder *parentResponder = view; + + while (parentResponder) { + parentResponder = parentResponder.nextResponder; + if ([parentResponder isKindOfClass:[UIViewController class]]) { + return (UIViewController *)parentResponder; + } + } + + return nil; +} + ++ (UITableView *)getParentTableView:(UIView *)cell +{ + UIView *superview = cell.superview; + while (superview) { + if ([superview isKindOfClass:[UITableView class]]) { + return (UITableView *)superview; + } + superview = superview.superview; + } + return nil; +} + ++ (UICollectionView *)getParentCollectionView:(UIView *)cell +{ + UIView *superview = cell.superview; + while (superview) { + if ([superview isKindOfClass:[UICollectionView class]]) { + return (UICollectionView *)superview; + } + superview = superview.superview; + } + return nil; +} + ++ (NSInteger)getTag:(NSObject *)obj +{ + if ([obj isKindOfClass:[UIView class]]) { + return ((UIView *)obj).tag; + } else if ([obj isKindOfClass:[UIViewController class]]) { + return ((UIViewController *)obj).view.tag; + } + + return 0; +} + ++ (NSDictionary *)getDimensionOf:(NSObject *)obj +{ + UIView *view = nil; + + if ([obj isKindOfClass:[UIView class]]) { + view = (UIView *)obj; + } else if ([obj isKindOfClass:[UIViewController class]]) { + view = ((UIViewController *)obj).view; + } + + CGRect frame = view.frame; + CGPoint offset = CGPointZero; + + if ([view isKindOfClass:[UIScrollView class]]) + offset = ((UIScrollView *)view).contentOffset; + + return @{ + CODELESS_VIEW_TREE_TOP_KEY: @((int)frame.origin.y), + CODELESS_VIEW_TREE_LEFT_KEY: @((int)frame.origin.x), + CODELESS_VIEW_TREE_WIDTH_KEY: @((int)frame.size.width), + CODELESS_VIEW_TREE_HEIGHT_KEY: @((int)frame.size.height), + CODELESS_VIEW_TREE_OFFSET_X_KEY: @((int)offset.x), + CODELESS_VIEW_TREE_OFFSET_Y_KEY: @((int)offset.y), + CODELESS_VIEW_TREE_VISIBILITY_KEY: view.isHidden ? @4 : @0 + }; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchyMacros.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchyMacros.h new file mode 100644 index 0000000..a81f113 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchyMacros.h @@ -0,0 +1,102 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. +#ifndef FBSDKViewHierarchyMacros_h +#define FBSDKViewHierarchyMacros_h + +// keys for event binding path compoenent +#define CODELESS_MAPPING_METHOD_KEY @"method" +#define CODELESS_MAPPING_EVENT_NAME_KEY @"event_name" +#define CODELESS_MAPPING_EVENT_TYPE_KEY @"event_type" +#define CODELESS_MAPPING_APP_VERSION_KEY @"app_version" +#define CODELESS_MAPPING_PATH_KEY @"path" +#define CODELESS_MAPPING_PATH_TYPE_KEY @"path_type" +#define CODELESS_MAPPING_CLASS_NAME_KEY @"class_name" +#define CODELESS_MAPPING_MATCH_BITMASK_KEY @"match_bitmask" +#define CODELESS_MAPPING_ID_KEY @"id" +#define CODELESS_MAPPING_INDEX_KEY @"index" +#define CODELESS_MAPPING_IS_USER_INPUT_KEY @"is_user_input" +#define CODELESS_MAPPING_SECTION_KEY @"section" +#define CODELESS_MAPPING_ROW_KEY @"row" +#define CODELESS_MAPPING_TEXT_KEY @"text" +#define CODELESS_MAPPING_TAG_KEY @"tag" +#define CODELESS_MAPPING_DESC_KEY @"description" +#define CODELESS_MAPPING_HINT_KEY @"hint" +#define CODELESS_MAPPING_PARAMETERS_KEY @"parameters" +#define CODELESS_MAPPING_PARAMETER_NAME_KEY @"name" +#define CODELESS_MAPPING_PARAMETER_VALUE_KEY @"value" + +#define CODELESS_MAPPING_PARENT_CLASS_NAME @".." +#define CODELESS_MAPPING_CURRENT_CLASS_NAME @"." + +#define ReactNativeClassRCTView "RCTView" +#define ReactNativeClassRCTRootView "RCTRootView" + +#define CODELESS_INDEXING_UPLOAD_INTERVAL_IN_SECONDS 1 +#define CODELESS_INDEXING_STATUS_KEY @"is_app_indexing_enabled" +#define CODELESS_INDEXING_SESSION_ID_KEY @"device_session_id" +#define CODELESS_INDEXING_APP_VERSION_KEY @"app_version" +#define CODELESS_INDEXING_SDK_VERSION_KEY @"sdk_version" +#define CODELESS_INDEXING_PLATFORM_KEY @"platform" +#define CODELESS_INDEXING_TREE_KEY @"tree" +#define CODELESS_INDEXING_SCREENSHOT_KEY @"screenshot" +#define CODELESS_INDEXING_EXT_INFO_KEY @"extinfo" + +#define CODELESS_INDEXING_ENDPOINT @"app_indexing" +#define CODELESS_INDEXING_SESSION_ENDPOINT @"app_indexing_session" + +#define CODELESS_SETUP_ENABLED_FIELD @"auto_event_setup_enabled" +#define CODELESS_SETUP_ENABLED_KEY @"codeless_setup_enabled" +#define CODELESS_SETTING_KEY @"com.facebook.sdk:codelessSetting%@" +#define CODELESS_SETTING_TIMESTAMP_KEY @"codeless_setting_timestamp" +#define CODELESS_SETTING_CACHE_TIMEOUT (7 * 24 * 60 * 60) + +// keys for view tree +#define CODELESS_VIEW_TREE_DESC_KEY @"description" +#define CODELESS_VIEW_TREE_DIMENSION_KEY @"dimension" +#define CODELESS_VIEW_TREE_TAG_KEY @"tag" +#define CODELESS_VIEW_TREE_ACTIONS_KEY @"actions" + +#define CODELESS_VIEW_TREE_TOP_KEY @"top" +#define CODELESS_VIEW_TREE_LEFT_KEY @"left" +#define CODELESS_VIEW_TREE_WIDTH_KEY @"width" +#define CODELESS_VIEW_TREE_HEIGHT_KEY @"height" +#define CODELESS_VIEW_TREE_OFFSET_X_KEY @"scrollx" +#define CODELESS_VIEW_TREE_OFFSET_Y_KEY @"scrolly" +#define CODELESS_VIEW_TREE_VISIBILITY_KEY @"visibility" + +#define CODELESS_VIEW_TREE_TEXT_STYLE_KEY @"text_style" +#define CODELESS_VIEW_TREE_TEXT_IS_BOLD_KEY @"is_bold" +#define CODELESS_VIEW_TREE_TEXT_IS_ITALIC_KEY @"is_italic" +#define CODELESS_VIEW_TREE_TEXT_SIZE_KEY @"font_size" + +// keys for view hierarchy +#define VIEW_HIERARCHY_CHILD_VIEWS_KEY @"childviews" +#define VIEW_HIERARCHY_CLASS_NAME_KEY @"classname" +#define VIEW_HIERARCHY_CLASS_TYPE_BITMASK_KEY @"classtypebitmask" +#define VIEW_HIERARCHY_HINT_KEY @"hint" +#define VIEW_HIERARCHY_IS_INTERACTED_KEY @"is_interacted" +#define VIEW_HIERARCHY_SCREEN_NAME_KEY @"screenname" +#define VIEW_HIERARCHY_TEXT_KEY @"text" +#define VIEW_HIERARCHY_VIEW_KEY @"view" + +// keys for suggested events +#define DENSE_FEATURE_KEY @"DENSE_FEATURE" +#define SUGGEST_EVENT_KEY @"SUGGEST_EVENT" +#define SUGGESTED_EVENTS_OTHER @"other" + +#endif /* FBSDKCodelessMacros_h */ diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.h new file mode 100644 index 0000000..9d681b2 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.h @@ -0,0 +1,75 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLinkTarget.h" + +NS_ASSUME_NONNULL_BEGIN + +/** The version of the App Link protocol that this library supports */ +FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion +NS_SWIFT_NAME(AppLinkVersion); + +/** + Contains App Link metadata relevant for navigation on this device + derived from the HTML at a given URL. + */ +NS_SWIFT_NAME(AppLink) +@interface FBSDKAppLink : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Creates a FBSDKAppLink with the given list of FBSDKAppLinkTargets and target URL. + + Generally, this will only be used by implementers of the FBSDKAppLinkResolving protocol, + as these implementers will produce App Link metadata for a given URL. + + @param sourceURL the URL from which this App Link is derived + @param targets an ordered list of FBSDKAppLinkTargets for this platform derived + from App Link metadata. + @param webURL the fallback web URL, if any, for the app link. + */ ++ (instancetype)appLinkWithSourceURL:(nullable NSURL *)sourceURL + targets:(NSArray *)targets + webURL:(nullable NSURL *)webURL +NS_SWIFT_NAME(init(sourceURL:targets:webURL:)); + +/** The URL from which this FBSDKAppLink was derived */ +@property (nonatomic, strong, readonly, nullable) NSURL *sourceURL; + +/** + The ordered list of targets applicable to this platform that will be used + for navigation. + */ +@property (nonatomic, copy, readonly) NSArray *targets; + +/** The fallback web URL to use if no targets are installed on this device. */ +@property (nonatomic, strong, readonly, nullable) NSURL *webURL; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.m new file mode 100644 index 0000000..a1ea9d2 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.m @@ -0,0 +1,76 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLink_Internal.h" + +NSString *const FBSDKAppLinkDataParameterName = @"al_applink_data"; +NSString *const FBSDKAppLinkTargetKeyName = @"target_url"; +NSString *const FBSDKAppLinkUserAgentKeyName = @"user_agent"; +NSString *const FBSDKAppLinkExtrasKeyName = @"extras"; +NSString *const FBSDKAppLinkRefererAppLink = @"referer_app_link"; +NSString *const FBSDKAppLinkRefererAppName = @"app_name"; +NSString *const FBSDKAppLinkRefererUrl = @"url"; +NSString *const FBSDKAppLinkVersionKeyName = @"version"; +NSString *const FBSDKAppLinkVersion = @"1.0"; + +@interface FBSDKAppLink () + +@property (nonatomic, strong) NSURL *sourceURL; +@property (nonatomic, copy) NSArray *targets; +@property (nonatomic, strong) NSURL *webURL; + +@property (nonatomic, assign, getter=isBackToReferrer) BOOL backToReferrer; + +@end + +@implementation FBSDKAppLink + ++ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL + targets:(NSArray *)targets + webURL:(NSURL *)webURL + isBackToReferrer:(BOOL)isBackToReferrer { + FBSDKAppLink *link = [[self alloc] initWithIsBackToReferrer:isBackToReferrer]; + link.sourceURL = sourceURL; + link.targets = [targets copy]; + link.webURL = webURL; + return link; +} + ++ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL + targets:(NSArray *)targets + webURL:(NSURL *)webURL { + return [self appLinkWithSourceURL:sourceURL + targets:targets + webURL:webURL + isBackToReferrer:NO]; +} + +- (FBSDKAppLink *)initWithIsBackToReferrer:(BOOL)backToReferrer { + if ((self = [super init])) { + _backToReferrer = backToReferrer; + } + return self; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.h new file mode 100644 index 0000000..4905ca7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.h @@ -0,0 +1,147 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkResolving.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + The result of calling navigate on a FBSDKAppLinkNavigation + */ +typedef NS_ENUM(NSInteger, FBSDKAppLinkNavigationType) { + /** Indicates that the navigation failed and no app was opened */ + FBSDKAppLinkNavigationTypeFailure, + /** Indicates that the navigation succeeded by opening the URL in the browser */ + FBSDKAppLinkNavigationTypeBrowser, + /** Indicates that the navigation succeeded by opening the URL in an app on the device */ + FBSDKAppLinkNavigationTypeApp +} NS_SWIFT_NAME(AppLinkNavigation.Type); + +/** + Describes the callback for appLinkFromURLInBackground. + @param navType the FBSDKAppLink representing the deferred App Link + @param error the error during the request, if any + + */ +typedef void (^FBSDKAppLinkNavigationBlock)(FBSDKAppLinkNavigationType navType, NSError * _Nullable error) +NS_SWIFT_NAME(AppLinkNavigationBlock); + +/** + Represents a pending request to navigate to an App Link. Most developers will + simply use navigateToURLInBackground: to open a URL, but developers can build + custom requests with additional navigation and app data attached to them by + creating FBSDKAppLinkNavigations themselves. + */ +NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension") +NS_SWIFT_NAME(AppLinkNavigation) +@interface FBSDKAppLinkNavigation : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + The default resolver to be used for App Link resolution. If the developer has not set one explicitly, + a basic, built-in FBSDKWebViewAppLinkResolver will be used. + */ +@property (class, nonatomic, strong) id defaultResolver +NS_SWIFT_NAME(default); + +/** + The extras for the AppLinkNavigation. This will generally contain application-specific + data that should be passed along with the request, such as advertiser or affiliate IDs or + other such metadata relevant on this device. + */ +@property (nonatomic, copy, readonly) NSDictionary *extras; + +/** + The al_applink_data for the AppLinkNavigation. This will generally contain data common to + navigation attempts such as back-links, user agents, and other information that may be used + in routing and handling an App Link request. + */ +@property (nonatomic, copy, readonly) NSDictionary *appLinkData; + +/** The AppLink to navigate to */ +@property (nonatomic, strong, readonly) FBSDKAppLink *appLink; + +/** + Return navigation type for current instance. + No-side-effect version of navigate: + */ +@property (nonatomic, readonly) FBSDKAppLinkNavigationType navigationType; + +/** Creates an AppLinkNavigation with the given link, extras, and App Link data */ ++ (instancetype)navigationWithAppLink:(FBSDKAppLink *)appLink + extras:(NSDictionary *)extras + appLinkData:(NSDictionary *)appLinkData +NS_SWIFT_NAME(init(appLink:extras:appLinkData:)); + +/** + Creates an NSDictionary with the correct format for iOS callback URLs, + to be used as 'appLinkData' argument in the call to navigationWithAppLink:extras:appLinkData: + */ ++ (NSDictionary *> *)callbackAppLinkDataForAppWithName:(NSString *)appName + url:(NSString *)url +NS_SWIFT_NAME(callbackAppLinkData(forApp:url:)); + +/** Performs the navigation */ +- (FBSDKAppLinkNavigationType)navigate:(NSError **)error +__attribute__((swift_error(nonnull_error))); + +/** Returns a FBSDKAppLink for the given URL */ ++ (void)resolveAppLink:(NSURL *)destination handler:(FBSDKAppLinkBlock)handler; + +/** Returns a FBSDKAppLink for the given URL using the given App Link resolution strategy */ ++ (void)resolveAppLink:(NSURL *)destination + resolver:(id)resolver + handler:(FBSDKAppLinkBlock)handler; + +/** Navigates to a FBSDKAppLink and returns whether it opened in-app or in-browser */ ++ (FBSDKAppLinkNavigationType)navigateToAppLink:(FBSDKAppLink *)link error:(NSError **)error +__attribute__((swift_error(nonnull_error))); + +/** + Returns a FBSDKAppLinkNavigationType based on a FBSDKAppLink. + It's essentially a no-side-effect version of navigateToAppLink:error:, + allowing apps to determine flow based on the link type (e.g. open an + internal web view instead of going straight to the browser for regular links.) + */ ++ (FBSDKAppLinkNavigationType)navigationTypeForLink:(FBSDKAppLink *)link; + +/** Navigates to a URL (an asynchronous action) and returns a FBSDKNavigationType */ ++ (void)navigateToURL:(NSURL *)destination handler:(FBSDKAppLinkNavigationBlock)handler; + +/** + Navigates to a URL (an asynchronous action) using the given App Link resolution + strategy and returns a FBSDKNavigationType + */ ++ (void)navigateToURL:(NSURL *)destination + resolver:(id)resolver + handler:(FBSDKAppLinkNavigationBlock)handler; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.m new file mode 100644 index 0000000..4cce021 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.m @@ -0,0 +1,300 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkNavigation.h" + +#import "FBSDKAppLinkTarget.h" +#import "FBSDKAppLink_Internal.h" +#import "FBSDKMeasurementEvent_Internal.h" +#import "FBSDKSettings.h" +#import "FBSDKWebViewAppLinkResolver.h" + +FOUNDATION_EXPORT NSString *const FBSDKAppLinkDataParameterName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkTargetKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkUserAgentKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkExtrasKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersionKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppLink; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererUrl; + +static id defaultResolver; + +@interface FBSDKAppLinkNavigation () + +@property (nonatomic, copy) NSDictionary *extras; +@property (nonatomic, copy) NSDictionary *appLinkData; +@property (nonatomic, strong) FBSDKAppLink *appLink; + +@end + +@implementation FBSDKAppLinkNavigation + ++ (instancetype)navigationWithAppLink:(FBSDKAppLink *)appLink + extras:(NSDictionary *)extras + appLinkData:(NSDictionary *)appLinkData { + FBSDKAppLinkNavigation *navigation = [[self alloc] init]; + navigation.appLink = appLink; + navigation.extras = extras; + navigation.appLinkData = appLinkData; + return navigation; +} + ++ (NSDictionary *> *)callbackAppLinkDataForAppWithName:(NSString *)appName + url:(NSString *)url { + return @{FBSDKAppLinkRefererAppLink: @{FBSDKAppLinkRefererAppName: appName, FBSDKAppLinkRefererUrl: url}}; +} + +- (NSString *)stringByEscapingQueryString:(NSString *)string { + return [string stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]; +} + +- (NSURL *)appLinkURLWithTargetURL:(NSURL *)targetUrl error:(NSError **)error { + NSMutableDictionary *appLinkData = + [NSMutableDictionary dictionaryWithDictionary:self.appLinkData ?: @{}]; + + // Add applink protocol data + if (!appLinkData[FBSDKAppLinkUserAgentKeyName]) { + appLinkData[FBSDKAppLinkUserAgentKeyName] = [NSString stringWithFormat:@"FBSDK %@", FBSDKSettings.sdkVersion]; + } + if (!appLinkData[FBSDKAppLinkVersionKeyName]) { + appLinkData[FBSDKAppLinkVersionKeyName] = FBSDKAppLinkVersion; + } + if (self.appLink.sourceURL.absoluteString) { + appLinkData[FBSDKAppLinkTargetKeyName] = self.appLink.sourceURL.absoluteString; + } + appLinkData[FBSDKAppLinkExtrasKeyName] = self.extras ?: @{}; + + // JSON-ify the applink data + NSError *jsonError = nil; + NSData *jsonBlob = [NSJSONSerialization dataWithJSONObject:appLinkData options:0 error:&jsonError]; + if (!jsonError) { + NSString *jsonString = [[NSString alloc] initWithData:jsonBlob encoding:NSUTF8StringEncoding]; + NSString *encoded = [self stringByEscapingQueryString:jsonString]; + + NSString *endUrlString = [NSString stringWithFormat:@"%@%@%@=%@", + targetUrl.absoluteString, + targetUrl.query ? @"&" : @"?", + FBSDKAppLinkDataParameterName, + encoded]; + + return [NSURL URLWithString:endUrlString]; + } else { + if (error) { + *error = jsonError; + } + + // If there was an error encoding the app link data, fail hard. + return nil; + } +} + +- (FBSDKAppLinkNavigationType)navigate:(NSError **)error { + NSURL *openedURL = nil; + NSError *encodingError = nil; + FBSDKAppLinkNavigationType retType = FBSDKAppLinkNavigationTypeFailure; + + // Find the first eligible/launchable target in the FBSDKAppLink. + for (FBSDKAppLinkTarget *target in self.appLink.targets) { + NSURL *appLinkAppURL = [self appLinkURLWithTargetURL:target.URL error:&encodingError]; + if (encodingError || !appLinkAppURL) { + if (error) { + *error = encodingError; + } + } else if ([[UIApplication sharedApplication] openURL:appLinkAppURL]) { + retType = FBSDKAppLinkNavigationTypeApp; + openedURL = appLinkAppURL; + break; + } + } + + if (!openedURL && self.appLink.webURL) { + // Fall back to opening the url in the browser if available. + NSURL *appLinkBrowserURL = [self appLinkURLWithTargetURL:self.appLink.webURL error:&encodingError]; + if (encodingError || !appLinkBrowserURL) { + // If there was an error encoding the app link data, fail hard. + if (error) { + *error = encodingError; + } + } else if ([[UIApplication sharedApplication] openURL:appLinkBrowserURL]) { + // This was a browser navigation. + retType = FBSDKAppLinkNavigationTypeBrowser; + openedURL = appLinkBrowserURL; + } + } + + [self postAppLinkNavigateEventNotificationWithTargetURL:openedURL + error:error ? *error : nil + type:retType]; + return retType; +} + +- (void)postAppLinkNavigateEventNotificationWithTargetURL:(NSURL *)outputURL error:(NSError *)error type:(FBSDKAppLinkNavigationType)type { + NSString *const EVENT_YES_VAL = @"1"; + NSString *const EVENT_NO_VAL = @"0"; + NSMutableDictionary *logData = + [[NSMutableDictionary alloc] init]; + + NSString *outputURLScheme = outputURL.scheme; + NSString *outputURLString = outputURL.absoluteString; + if (outputURLScheme) { + logData[@"outputURLScheme"] = outputURLScheme; + } + if (outputURLString) { + logData[@"outputURL"] = outputURLString; + } + + NSString *sourceURLString = self.appLink.sourceURL.absoluteString; + NSString *sourceURLHost = self.appLink.sourceURL.host; + NSString *sourceURLScheme = self.appLink.sourceURL.scheme; + if (sourceURLString) { + logData[@"sourceURL"] = sourceURLString; + } + if (sourceURLHost) { + logData[@"sourceHost"] = sourceURLHost; + } + if (sourceURLScheme) { + logData[@"sourceScheme"] = sourceURLScheme; + } + if (error.localizedDescription) { + logData[@"error"] = error.localizedDescription; + } + NSString *success = nil; //no + NSString *linkType = nil; // unknown; + switch (type) { + case FBSDKAppLinkNavigationTypeFailure: + success = EVENT_NO_VAL; + linkType = @"fail"; + break; + case FBSDKAppLinkNavigationTypeBrowser: + success = EVENT_YES_VAL; + linkType = @"web"; + break; + case FBSDKAppLinkNavigationTypeApp: + success = EVENT_YES_VAL; + linkType = @"app"; + break; + default: + break; + } + if (success) { + logData[@"success"] = success; + } + if (linkType) { + logData[@"type"] = linkType; + } + + if (self.appLink.backToReferrer) { + [FBSDKMeasurementEvent postNotificationForEventName:FBSDKAppLinkNavigateBackToReferrerEventName args:logData]; + } else { + [FBSDKMeasurementEvent postNotificationForEventName:FBSDKAppLinkNavigateOutEventName args:logData]; + } +} + ++ (void)resolveAppLink:(NSURL *)destination + resolver:(id)resolver + handler:(FBSDKAppLinkBlock)handler { + [resolver appLinkFromURL:destination handler:handler]; +} + ++ (void)resolveAppLink:(NSURL *)destination handler:(FBSDKAppLinkBlock)handler { + [self resolveAppLink:destination resolver:[self defaultResolver] handler:handler]; +} + ++ (void)navigateToURL:(NSURL *)destination handler:(FBSDKAppLinkNavigationBlock)handler { + [self navigateToURL:destination resolver:[self defaultResolver] handler:handler]; +} + ++ (void)navigateToURL:(NSURL *)destination + resolver:(id)resolver + handler:(FBSDKAppLinkNavigationBlock)handler { + + dispatch_async(dispatch_get_main_queue(), ^{ + [self resolveAppLink:destination + resolver:resolver + handler:^(FBSDKAppLink * _Nullable appLink, NSError * _Nullable error) { + if (error) { + handler(FBSDKAppLinkNavigationTypeFailure, error); + return; + } + + NSError *navigateError = nil; + FBSDKAppLinkNavigationType result = [self navigateToAppLink:appLink error:&navigateError]; + handler(result, navigateError); + }]; + }); +} + ++ (FBSDKAppLinkNavigationType)navigateToAppLink:(FBSDKAppLink *)link error:(NSError **)error { + return [[FBSDKAppLinkNavigation navigationWithAppLink:link + extras:@{} + appLinkData:@{}] navigate:error]; +} + ++ (FBSDKAppLinkNavigationType)navigationTypeForLink:(FBSDKAppLink *)link { + return [[self navigationWithAppLink:link extras:@{} appLinkData:@{}] navigationType]; +} + +- (FBSDKAppLinkNavigationType)navigationType { + FBSDKAppLinkTarget *eligibleTarget = nil; + for (FBSDKAppLinkTarget *target in self.appLink.targets) { + if ([[UIApplication sharedApplication] canOpenURL:target.URL]) { + eligibleTarget = target; + break; + } + } + + if (eligibleTarget != nil) { + NSURL *appLinkURL = [self appLinkURLWithTargetURL:eligibleTarget.URL error:nil]; + if (appLinkURL != nil) { + return FBSDKAppLinkNavigationTypeApp; + } else { + return FBSDKAppLinkNavigationTypeFailure; + } + } + + if (self.appLink.webURL != nil) { + NSURL *appLinkURL = [self appLinkURLWithTargetURL:eligibleTarget.URL error:nil]; + if (appLinkURL != nil) { + return FBSDKAppLinkNavigationTypeBrowser; + } else { + return FBSDKAppLinkNavigationTypeFailure; + } + } + + return FBSDKAppLinkNavigationTypeFailure; +} + ++ (id)defaultResolver { + if (defaultResolver) { + return defaultResolver; + } + return [FBSDKWebViewAppLinkResolver sharedInstance]; +} + ++ (void)setDefaultResolver:(id)resolver { + defaultResolver = resolver; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.h new file mode 100644 index 0000000..88898b6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.h @@ -0,0 +1,72 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLinkResolving.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + Describes the callback for appLinkFromURLInBackground. + @param appLinks the FBSDKAppLinks representing the deferred App Links + @param error the error during the request, if any + */ +typedef void (^FBSDKAppLinksBlock)(NSDictionary * appLinks, + NSError * _Nullable error) +NS_SWIFT_NAME(AppLinksBlock); + +/** + + Provides an implementation of the FBSDKAppLinkResolving protocol that uses the Facebook App Link + Index API to resolve App Links given a URL. It also provides an additional helper method that can resolve + multiple App Links in a single call. + + Usage of this type requires a client token. See `[FBSDKSettings setClientToken:]` + */ + +NS_SWIFT_NAME(AppLinkResolver) +@interface FBSDKAppLinkResolver : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Asynchronously resolves App Link data for a given array of URLs. + + @param urls The URLs to resolve into an App Link. + @param handler The completion block that will return an App Link for the given URL. + */ +- (void)appLinksFromURLs:(NSArray *)urls handler:(FBSDKAppLinksBlock)handler +NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension"); + +/** + Allocates and initializes a new instance of FBSDKAppLinkResolver. + */ ++ (instancetype)resolver +NS_SWIFT_NAME(init()); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.m new file mode 100644 index 0000000..93167f8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.m @@ -0,0 +1,180 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkResolver.h" + +#import + +#import "FBSDKAccessToken.h" +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkTarget.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKUtility.h" + +static NSString *const kURLKey = @"url"; +static NSString *const kIOSAppStoreIdKey = @"app_store_id"; +static NSString *const kIOSAppNameKey = @"app_name"; +static NSString *const kWebKey = @"web"; +static NSString *const kIOSKey = @"ios"; +static NSString *const kIPhoneKey = @"iphone"; +static NSString *const kIPadKey = @"ipad"; +static NSString *const kShouldFallbackKey = @"should_fallback"; +static NSString *const kAppLinksKey = @"app_links"; + +@interface FBSDKAppLinkResolver () + +@property (nonatomic, strong) NSMutableDictionary *cachedFBSDKAppLinks; +@property (nonatomic, assign) UIUserInterfaceIdiom userInterfaceIdiom; +@end + +@implementation FBSDKAppLinkResolver + ++ (void)initialize +{ + if (self == [FBSDKAppLinkResolver class]) { + } +} + +- (instancetype)initWithUserInterfaceIdiom:(UIUserInterfaceIdiom)userInterfaceIdiom +{ + if (self = [super init]) { + self.cachedFBSDKAppLinks = [NSMutableDictionary dictionary]; + self.userInterfaceIdiom = userInterfaceIdiom; + } + return self; +} + +- (void)appLinkFromURL:(NSURL *)url handler:(FBSDKAppLinkBlock)handler +{ + [self appLinksFromURLs:@[url] handler:^(NSDictionary *urls, NSError * _Nullable error) { + handler(urls[url], error); + }]; +} + +- (void)appLinksFromURLs:(NSArray *)urls handler:(FBSDKAppLinksBlock)handler +{ + if (![FBSDKSettings clientToken] && ![FBSDKAccessToken currentAccessToken]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"A user access token or clientToken is required to use FBAppLinkResolver"]; + } + NSMutableDictionary *appLinks = [NSMutableDictionary dictionary]; + NSMutableArray *toFind = [NSMutableArray array]; + NSMutableArray *toFindStrings = [NSMutableArray array]; + + @synchronized (self.cachedFBSDKAppLinks) { + for (NSURL *url in urls) { + if (self.cachedFBSDKAppLinks[url]) { + appLinks[url] = self.cachedFBSDKAppLinks[url]; + } else { + [toFind addObject:url]; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + NSString *toFindString = [url.absoluteString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; +#pragma clang diagnostic pop + if (toFindString) { + [toFindStrings addObject:toFindString]; + } + } + } + } + if (toFind.count == 0) { + // All of the URLs have already been found. + handler(_cachedFBSDKAppLinks, nil); + } + NSMutableArray *fields = [NSMutableArray arrayWithObject:kIOSKey]; + + NSString *idiomSpecificField = nil; + + switch (self.userInterfaceIdiom) { + case UIUserInterfaceIdiomPad: + idiomSpecificField = kIPadKey; + break; + case UIUserInterfaceIdiomPhone: + idiomSpecificField = kIPhoneKey; + break; + default: + break; + } + if (idiomSpecificField) { + [fields addObject:idiomSpecificField]; + } + NSString *path = [NSString stringWithFormat:@"?fields=%@.fields(%@)&ids=%@", + kAppLinksKey, + [fields componentsJoinedByString:@","], + [toFindStrings componentsJoinedByString:@","]]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:path + parameters:nil + flags:FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | FBSDKGraphRequestFlagDisableErrorRecovery]; + + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (error) { + handler(@{}, error); + return; + } + for (NSURL *url in toFind) { + id nestedObject = result[url.absoluteString][kAppLinksKey]; + NSMutableArray *rawTargets = [NSMutableArray array]; + if (idiomSpecificField) { + [rawTargets addObjectsFromArray:nestedObject[idiomSpecificField]]; + } + [rawTargets addObjectsFromArray:nestedObject[kIOSKey]]; + + NSMutableArray *targets = [NSMutableArray arrayWithCapacity:rawTargets.count]; + for (id rawTarget in rawTargets) { + [targets addObject:[FBSDKAppLinkTarget appLinkTargetWithURL:[NSURL URLWithString:rawTarget[kURLKey]] + appStoreId:rawTarget[kIOSAppStoreIdKey] + appName:rawTarget[kIOSAppNameKey]]]; + } + + id webTarget = nestedObject[kWebKey]; + NSString *webFallbackString = webTarget[kURLKey]; + NSURL *fallbackUrl = webFallbackString ? [NSURL URLWithString:webFallbackString] : url; + + NSNumber *shouldFallback = webTarget[kShouldFallbackKey]; + if (shouldFallback != nil && !shouldFallback.boolValue) { + fallbackUrl = nil; + } + + FBSDKAppLink *link = [FBSDKAppLink appLinkWithSourceURL:url + targets:targets + webURL:fallbackUrl]; + @synchronized (self.cachedFBSDKAppLinks) { + self.cachedFBSDKAppLinks[url] = link; + } + appLinks[url] = link; + } + handler(appLinks, nil); + }]; +} + ++ (instancetype)resolver +{ + return [[self alloc] initWithUserInterfaceIdiom:UI_USER_INTERFACE_IDIOM()]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolving.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolving.h new file mode 100644 index 0000000..623a644 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolving.h @@ -0,0 +1,60 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAppLink; + +/** + Describes the callback for appLinkFromURLInBackground. + @param appLink the FBSDKAppLink representing the deferred App Link + @param error the error during the request, if any + + */ +typedef void (^FBSDKAppLinkBlock)(FBSDKAppLink * _Nullable appLink, NSError * _Nullable error) +NS_SWIFT_NAME(AppLinkBlock); + + +/** + Implement this protocol to provide an alternate strategy for resolving + App Links that may include pre-fetching, caching, or querying for App Link + data from an index provided by a service provider. + */ +NS_SWIFT_NAME(AppLinkResolving) +@protocol FBSDKAppLinkResolving + +/** + Asynchronously resolves App Link data for a given URL. + + @param url The URL to resolve into an App Link. + @param handler The completion block that will return an App Link for the given URL. + */ +- (void)appLinkFromURL:(NSURL *)url handler:(FBSDKAppLinkBlock)handler +NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension"); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.h new file mode 100644 index 0000000..e54b047 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.h @@ -0,0 +1,114 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLinkReturnToRefererView.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAppLink; +@class FBSDKAppLinkReturnToRefererController; + +/** + Protocol that a class can implement in order to be notified when the user has navigated back + to the referer of an App Link. + */ +NS_SWIFT_NAME(AppLinkReturnToRefererControllerDelegate) +@protocol FBSDKAppLinkReturnToRefererControllerDelegate + +@optional + +/** Called when the user has tapped to navigate, but before the navigation has been performed. */ +- (void)returnToRefererController:(FBSDKAppLinkReturnToRefererController *)controller + willNavigateToAppLink:(FBSDKAppLink *)appLink +NS_SWIFT_NAME(return(to:willNavigateTo:)); + +/** Called after the navigation has been attempted, with an indication of whether the referer + app link was successfully opened. */ +- (void)returnToRefererController:(FBSDKAppLinkReturnToRefererController *)controller + didNavigateToAppLink:(FBSDKAppLink *)url + type:(FBSDKAppLinkNavigationType)type +NS_SWIFT_NAME(return(to:didNavigateTo:type:)); + +@end + +/** + A controller class that implements default behavior for a FBSDKAppLinkReturnToRefererView, including + the ability to display the view above the navigation bar for navigation-based apps. + */ +NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension") +NS_SWIFT_NAME(AppLinkReturnToRefererController) +@interface FBSDKAppLinkReturnToRefererController : NSObject + +/** + The delegate that will be notified when the user navigates back to the referer. + */ +@property (nonatomic, weak, nullable) id delegate; + +/** + The FBSDKAppLinkReturnToRefererView this controller is controlling. + */ +@property (nonatomic, strong) FBSDKAppLinkReturnToRefererView *view; + +/** + Initializes a controller suitable for controlling a FBSDKAppLinkReturnToRefererView that is to be displayed + contained within another UIView (i.e., not displayed above the navigation bar). + */ +- (instancetype)init NS_DESIGNATED_INITIALIZER; + +/** + Initializes a controller suitable for controlling a FBSDKAppLinkReturnToRefererView that is to be displayed + displayed above the navigation bar. + + @param navController The Navigation Controller for display above + */ +- (instancetype)initForDisplayAboveNavController:(UINavigationController *)navController +NS_SWIFT_NAME(init(navController:)); + +/** + Removes the view entirely from the navigation controller it is currently displayed in. + */ +- (void)removeFromNavController; + +/** + Shows the FBSDKAppLinkReturnToRefererView with the specified referer information. If nil or missing data, + the view will not be displayed. */ +- (void)showViewForRefererAppLink:(FBSDKAppLink *)refererAppLink +NS_SWIFT_NAME(showView(forReferer:)); + +/** + Shows the FBSDKAppLinkReturnToRefererView with referer information extracted from the specified URL. + If nil or missing referer App Link data, the view will not be displayed. */ +- (void)showViewForRefererURL:(NSURL *)url +NS_SWIFT_NAME(showView(forReferer:)); + +/** + Closes the view, possibly animating it. + */ +- (void)closeViewAnimated:(BOOL)animated; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.m new file mode 100644 index 0000000..4e0cf29 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.m @@ -0,0 +1,244 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkReturnToRefererController.h" + +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkReturnToRefererView_Internal.h" +#import "FBSDKURL_Internal.h" + +static const CFTimeInterval kFBSDKViewAnimationDuration = 0.25f; + +@implementation FBSDKAppLinkReturnToRefererController { + UINavigationController *_navigationController; + FBSDKAppLinkReturnToRefererView *_view; +} + +#pragma mark - Object lifecycle + +- (instancetype)init { + return [super init]; +} + +- (instancetype)initForDisplayAboveNavController:(UINavigationController *)navController { + self = [self init]; + if (self) { + _navigationController = navController; + + if (_navigationController != nil) { + NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; + [nc addObserver:self + selector:@selector(statusBarFrameWillChange:) + name:UIApplicationWillChangeStatusBarFrameNotification + object:nil]; + [nc addObserver:self + selector:@selector(statusBarFrameDidChange:) + name:UIApplicationDidChangeStatusBarFrameNotification + object:nil]; + [nc addObserver:self + selector:@selector(orientationDidChange:) + name:UIDeviceOrientationDidChangeNotification + object:nil]; + } + } + return self; +} + +- (void)dealloc { + _view.delegate = nil; + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - Public API + +- (FBSDKAppLinkReturnToRefererView *)view { + if (!_view) { + self.view = [[FBSDKAppLinkReturnToRefererView alloc] initWithFrame:CGRectZero]; + if (_navigationController) { + [_navigationController.view addSubview:_view]; + } + } + return _view; +} + +- (void)setView:(FBSDKAppLinkReturnToRefererView *)view { + if (_view != view) { + _view.delegate = nil; + } + + _view = view; + _view.delegate = self; + + if (_navigationController) { + _view.includeStatusBarInSize = FBSDKIncludeStatusBarInSizeAlways; + } +} + +- (void)showViewForRefererAppLink:(FBSDKAppLink *)refererAppLink { + self.view.refererAppLink = refererAppLink; + + [_view sizeToFit]; + + if (_navigationController) { + if (!_view.closed) { + dispatch_async(dispatch_get_main_queue(), ^{ + [self moveNavigationBar]; + }); + } + } +} + +- (void)showViewForRefererURL:(NSURL *)url { + FBSDKAppLink *appLink = [FBSDKURL URLForRenderBackToReferrerBarURL:url].appLinkReferer; + [self showViewForRefererAppLink:appLink]; +} + +- (void)removeFromNavController { + if (_navigationController) { + [_view removeFromSuperview]; + _navigationController = nil; + } +} + +#pragma mark - FBSDKAppLinkReturnToRefererViewDelegate + +- (void)returnToRefererViewDidTapInsideCloseButton:(FBSDKAppLinkReturnToRefererView *)view { + [self closeViewAnimated:YES explicitlyClosed:YES]; +} + +- (void)returnToRefererViewDidTapInsideLink:(FBSDKAppLinkReturnToRefererView *)view + link:(FBSDKAppLink *)link { + [self openRefererAppLink:link]; + [self closeViewAnimated:NO explicitlyClosed:NO]; +} + +#pragma mark - Private + +- (void)statusBarFrameWillChange:(NSNotification *)notification { + NSValue *rectValue = [notification.userInfo valueForKey:UIApplicationStatusBarFrameUserInfoKey]; + CGRect newFrame; + [rectValue getValue:&newFrame]; + + if (_navigationController && !_view.closed) { + if (CGRectGetHeight(newFrame) == 40) { + UIViewAnimationOptions options = UIViewAnimationOptionBeginFromCurrentState; + [UIView animateWithDuration:kFBSDKViewAnimationDuration delay:0.0 options:options animations:^{ + self->_view.frame = CGRectMake(0.0, 0.0, CGRectGetWidth(self->_view.bounds), 0.0); + } completion:nil]; + } + } +} + +- (void)statusBarFrameDidChange:(NSNotification *)notification { + NSValue *rectValue = [notification.userInfo valueForKey:UIApplicationStatusBarFrameUserInfoKey]; + CGRect newFrame; + [rectValue getValue:&newFrame]; + + if (_navigationController && !_view.closed) { + if (CGRectGetHeight(newFrame) == 40) { + UIViewAnimationOptions options = UIViewAnimationOptionBeginFromCurrentState; + [UIView animateWithDuration:kFBSDKViewAnimationDuration delay:0.0 options:options animations:^{ + [self->_view sizeToFit]; + [self moveNavigationBar]; + } completion:nil]; + } + } +} + +- (void)orientationDidChange:(NSNotificationCenter *)notification { + if (_navigationController && !_view.closed && CGRectGetHeight(_view.bounds) > 0) { + dispatch_async(dispatch_get_main_queue(), ^{ + [self moveNavigationBar]; + }); + } +} + +- (void)moveNavigationBar { + if (_view.closed || !_view.refererAppLink) { + return; + } + + [self updateNavigationBarY:CGRectGetHeight(_view.bounds)]; +} + +- (void)updateNavigationBarY:(CGFloat)y { + UINavigationBar *navigationBar = _navigationController.navigationBar; + CGRect navigationBarFrame = navigationBar.frame; + CGFloat oldContainerViewY = CGRectGetMaxY(navigationBarFrame); + navigationBarFrame.origin.y = y; + navigationBar.frame = navigationBarFrame; + + CGFloat dy = CGRectGetMaxY(navigationBarFrame) - oldContainerViewY; + UIView *containerView = _navigationController.visibleViewController.view.superview; + containerView.frame = UIEdgeInsetsInsetRect(containerView.frame, UIEdgeInsetsMake(dy, 0.0, 0.0, 0.0)); +} + +- (void)closeViewAnimated:(BOOL)animated { + [self closeViewAnimated:animated explicitlyClosed:YES]; +} + +- (void)closeViewAnimated:(BOOL)animated explicitlyClosed:(BOOL)explicitlyClosed { + void (^closer)(void) = ^{ + if (self->_navigationController) { + [self updateNavigationBarY:self->_view.statusBarHeight]; + } + + CGRect frame = self->_view.frame; + frame.size.height = 0.0; + self->_view.frame = frame; + }; + + if (animated) { + [UIView animateWithDuration:kFBSDKViewAnimationDuration animations:^{ + closer(); + } completion:^(BOOL finished) { + if (explicitlyClosed) { + self->_view.closed = YES; + } + }]; + } else { + closer(); + if (explicitlyClosed) { + self->_view.closed = YES; + } + } +} + +- (void)openRefererAppLink:(FBSDKAppLink *)refererAppLink { + if (refererAppLink) { + id delegate = _delegate; + if ([delegate respondsToSelector:@selector(returnToRefererController:willNavigateToAppLink:)]) { + [delegate returnToRefererController:self willNavigateToAppLink:refererAppLink]; + } + + NSError *error = nil; + FBSDKAppLinkNavigationType type = [FBSDKAppLinkNavigation navigateToAppLink:refererAppLink error:&error]; + + if ([delegate respondsToSelector:@selector(returnToRefererController:didNavigateToAppLink:type:)]) { + [delegate returnToRefererController:self didNavigateToAppLink:refererAppLink type:type]; + } + } +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.h new file mode 100644 index 0000000..7293e75 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.h @@ -0,0 +1,99 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLinkNavigation.h" + +NS_ASSUME_NONNULL_BEGIN + +typedef NS_ENUM(NSUInteger, FBSDKIncludeStatusBarInSize) { + FBSDKIncludeStatusBarInSizeNever, + FBSDKIncludeStatusBarInSizeAlways, +} NS_SWIFT_NAME(FBAppLinkReturnToRefererView.StatusBarSizeInclude); + +@class FBSDKAppLinkReturnToRefererView; +@class FBSDKURL; + +/** + Protocol that a class can implement in order to be notified when the user has navigated back + to the referer of an App Link. + */ +NS_SWIFT_NAME(AppLinkReturnToRefererViewDelegate) +@protocol FBSDKAppLinkReturnToRefererViewDelegate + +/** + Called when the user has tapped inside the close button. + */ +- (void)returnToRefererViewDidTapInsideCloseButton:(FBSDKAppLinkReturnToRefererView *)view +NS_SWIFT_NAME(returnToRefererViewDidTapInsideCloseButton(_:)); + +/** + Called when the user has tapped inside the App Link portion of the view. + */ +- (void)returnToRefererViewDidTapInsideLink:(FBSDKAppLinkReturnToRefererView *)view + link:(FBSDKAppLink *)link +NS_SWIFT_NAME(returnToRefererView(_:didTapInside:)); + +@end + +/** + Provides a UIView that displays a button allowing users to navigate back to the + application that launched the App Link currently being handled, if the App Link + contained referer data. The user can also close the view by clicking a close button + rather than navigating away. If the view is provided an App Link that does not contain + referer data, it will have zero size and no UI will be displayed. + */ +NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension") +NS_SWIFT_NAME(FBAppLinkReturnToRefererView) +@interface FBSDKAppLinkReturnToRefererView : UIView + +/** + The delegate that will be notified when the user navigates back to the referer. + */ +@property (nonatomic, weak, nullable) id delegate; + +/** + The color of the text label and close button. + */ +@property (nonatomic, strong) UIColor *textColor; + +@property (nonatomic, strong) FBSDKAppLink *refererAppLink; + +/** + Indicates whether to extend the size of the view to include the current status bar + size, for use in scenarios where the view might extend under the status bar on iOS 7 and + above; this property has no effect on earlier versions of iOS. + */ +@property (nonatomic, assign) FBSDKIncludeStatusBarInSize includeStatusBarInSize +NS_SWIFT_NAME(statusBarSizeInclude); + +/** + Indicates whether the user has closed the view by clicking the close button. + */ +@property (nonatomic, assign, getter=isClosed) BOOL closed; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.m new file mode 100644 index 0000000..227300c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.m @@ -0,0 +1,272 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkReturnToRefererView.h" + +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkTarget.h" + +static const CGFloat FBSDKMarginX = 8.5f; +static const CGFloat FBSDKMarginY = 8.5f; + +static NSString *const FBSDKRefererAppLink = @"referer_app_link"; +static NSString *const FBSDKRefererAppName = @"app_name"; +static NSString *const FBSDKRefererUrl = @"url"; +static const CGFloat FBSDKCloseButtonWidth = 12.0; +static const CGFloat FBSDKCloseButtonHeight = 12.0; + +@interface FBSDKAppLinkReturnToRefererView () + +@property (nonatomic, strong) UILabel *labelView; +@property (nonatomic, strong) UIButton *closeButton; +@property (nonatomic, strong) UITapGestureRecognizer *insideTapGestureRecognizer; + +@end + +@implementation FBSDKAppLinkReturnToRefererView { + BOOL _explicitlyHidden; +} + +#pragma mark - Initialization + +- (instancetype)initWithFrame:(CGRect)frame { + self = [super initWithFrame:frame]; + if (self) { + [self commonInit]; + [self sizeToFit]; + } + return self; +} + +- (instancetype)initWithCoder:(NSCoder *)aDecoder { + self = [super initWithCoder:aDecoder]; + if (self) { + [self commonInit]; + } + return self; +} + +- (void)commonInit { + // Initialization code + _includeStatusBarInSize = FBSDKIncludeStatusBarInSizeAlways; + + // iOS 7 system blue color + self.backgroundColor = [UIColor colorWithRed:0.0f green:122.0f / 255.0f blue:1.0f alpha:1.0f]; + self.textColor = [UIColor whiteColor]; + self.clipsToBounds = YES; + + [self initViews]; +} + +- (void)initViews { + if (!_labelView && !_closeButton) { + _closeButton = [UIButton buttonWithType:UIButtonTypeCustom]; + _closeButton.backgroundColor = [UIColor clearColor]; + _closeButton.userInteractionEnabled = YES; + _closeButton.clipsToBounds = YES; + _closeButton.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin; + _closeButton.contentMode = UIViewContentModeCenter; + [_closeButton addTarget:self action:@selector(closeButtonTapped:) forControlEvents:UIControlEventTouchUpInside]; + + [self addSubview:_closeButton]; + + _labelView = [[UILabel alloc] initWithFrame:CGRectZero]; + _labelView.font = [UIFont systemFontOfSize:[UIFont smallSystemFontSize]]; + _labelView.textColor = [UIColor whiteColor]; + _labelView.backgroundColor = [UIColor clearColor]; + _labelView.textAlignment = NSTextAlignmentCenter; + _labelView.clipsToBounds = YES; + [self updateLabelText]; + [self addSubview:_labelView]; + + _insideTapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onTapInside:)]; + _labelView.userInteractionEnabled = YES; + [_labelView addGestureRecognizer:_insideTapGestureRecognizer]; + + [self updateColors]; + } +} + +#pragma mark - Layout + +- (CGSize)intrinsicContentSize { + CGSize size = self.bounds.size; + if (_closed || !self.hasRefererData) { + size.height = 0.0; + } else { + CGSize labelSize = [_labelView sizeThatFits:size]; + size = CGSizeMake(size.width, labelSize.height + 2 * FBSDKMarginY + self.statusBarHeight); + } + return size; +} + +- (void)layoutSubviews { + [super layoutSubviews]; + + CGRect bounds = self.bounds; + + _labelView.preferredMaxLayoutWidth = _labelView.bounds.size.width; + CGSize labelSize = [_labelView sizeThatFits:bounds.size]; + _labelView.frame = CGRectMake(FBSDKMarginX, + CGRectGetMaxY(bounds) - labelSize.height - 1.5f * FBSDKMarginY, + CGRectGetMaxX(bounds) - FBSDKCloseButtonWidth - 3 * FBSDKMarginX, + labelSize.height + FBSDKMarginY); + + _closeButton.frame = CGRectMake(CGRectGetMaxX(bounds) - FBSDKCloseButtonWidth - 2 * FBSDKMarginX, + _labelView.center.y - FBSDKCloseButtonHeight / 2.0f - FBSDKMarginY, + FBSDKCloseButtonWidth + 2 * FBSDKMarginX, + FBSDKCloseButtonHeight + 2 * FBSDKMarginY); +} + +- (CGSize)sizeThatFits:(CGSize)size { + if (_closed || !self.hasRefererData) { + size = CGSizeMake(size.width, 0.0); + } else { + CGSize labelSize = [_labelView sizeThatFits:size]; + size = CGSizeMake(size.width, labelSize.height + 2 * FBSDKMarginY + self.statusBarHeight); + } + return size; +} + +- (CGFloat)statusBarHeight { + UIApplication *application = [UIApplication sharedApplication]; + + BOOL include; + switch (_includeStatusBarInSize) { + case FBSDKIncludeStatusBarInSizeAlways: + include = YES; + break; + case FBSDKIncludeStatusBarInSizeNever: + include = NO; + break; + } + if (include && !application.statusBarHidden) { + BOOL landscape = UIInterfaceOrientationIsLandscape(application.statusBarOrientation); + CGRect statusBarFrame = application.statusBarFrame; + return landscape ? CGRectGetWidth(statusBarFrame) : CGRectGetHeight(statusBarFrame); + } + + return 0; +} + +#pragma mark - Public API + +- (void)setIncludeStatusBarInSize:(FBSDKIncludeStatusBarInSize)includeStatusBarInSize { + _includeStatusBarInSize = includeStatusBarInSize; + [self setNeedsLayout]; + [self invalidateIntrinsicContentSize]; +} + +- (void)setTextColor:(UIColor *)textColor { + _textColor = textColor; + [self updateColors]; +} + +- (void)setRefererAppLink:(FBSDKAppLink *)refererAppLink { + _refererAppLink = refererAppLink; + [self updateLabelText]; + [self updateHidden]; + [self invalidateIntrinsicContentSize]; +} + +- (void)setClosed:(BOOL)closed { + if (_closed != closed) { + _closed = closed; + [self updateHidden]; + [self invalidateIntrinsicContentSize]; + } +} + +- (void)setHidden:(BOOL)hidden { + _explicitlyHidden = hidden; + [self updateHidden]; +} + +#pragma mark - Private + +- (void)updateLabelText { + NSString *appName = (_refererAppLink && _refererAppLink.targets[0]) ? _refererAppLink.targets[0].appName : nil; + _labelView.text = [self localizedLabelForReferer:appName]; +} + +- (void)updateColors { + UIImage *closeButtonImage = [self drawCloseButtonImageWithColor:_textColor]; + + _labelView.textColor = _textColor; + [_closeButton setImage:closeButtonImage forState:UIControlStateNormal]; +} + +- (UIImage *)drawCloseButtonImageWithColor:(UIColor *)color { + + UIGraphicsBeginImageContextWithOptions(CGSizeMake(FBSDKCloseButtonWidth, FBSDKCloseButtonHeight), NO, 0.0f); + + CGContextRef context = UIGraphicsGetCurrentContext(); + + CGContextSetStrokeColorWithColor(context, color.CGColor); + CGContextSetFillColorWithColor(context, color.CGColor); + + CGContextSetLineWidth(context, 1.25f); + + CGFloat inset = 0.5f; + + CGContextMoveToPoint(context, inset, inset); + CGContextAddLineToPoint(context, FBSDKCloseButtonWidth - inset, FBSDKCloseButtonHeight - inset); + CGContextStrokePath(context); + + CGContextMoveToPoint(context, FBSDKCloseButtonWidth - inset, inset); + CGContextAddLineToPoint(context, inset, FBSDKCloseButtonHeight - inset); + CGContextStrokePath(context); + + UIImage *result = UIGraphicsGetImageFromCurrentImageContext(); + UIGraphicsEndImageContext(); + + return result; +} + +- (NSString *)localizedLabelForReferer:(NSString *)refererName { + if (!refererName) { + return nil; + } + + NSString *format = NSLocalizedString(@"Touch to return to %1$@", @"Format for the string to return to a calling app."); + return [NSString stringWithFormat:format, refererName]; +} + +- (BOOL)hasRefererData { + return _refererAppLink && _refererAppLink.targets[0]; +} + +- (void)closeButtonTapped:(id)sender { + [_delegate returnToRefererViewDidTapInsideCloseButton:self]; +} + +- (void)onTapInside:(UIGestureRecognizer *)sender { + [_delegate returnToRefererViewDidTapInsideLink:self link:_refererAppLink]; +} + +- (void)updateHidden { + super.hidden = _explicitlyHidden || _closed || !self.hasRefererData; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.h new file mode 100644 index 0000000..efcb244 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.h @@ -0,0 +1,56 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Represents a target defined in App Link metadata, consisting of at least + a URL, and optionally an App Store ID and name. + */ +NS_SWIFT_NAME(AppLinkTarget) +@interface FBSDKAppLinkTarget : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** Creates a FBSDKAppLinkTarget with the given app site and target URL. */ ++ (instancetype)appLinkTargetWithURL:(nullable NSURL *)url + appStoreId:(nullable NSString *)appStoreId + appName:(NSString *)appName +NS_SWIFT_NAME(init(url:appStoreId:appName:)); + +/** The URL prefix for this app link target */ +@property (nonatomic, strong, readonly, nullable) NSURL *URL; + +/** The app ID for the app store */ +@property (nonatomic, copy, readonly, nullable) NSString *appStoreId; + +/** The name of the app */ +@property (nonatomic, copy, readonly) NSString *appName; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.m new file mode 100644 index 0000000..0a98717 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.m @@ -0,0 +1,47 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkTarget.h" + +@interface FBSDKAppLinkTarget () + +@property (nonatomic, strong) NSURL *URL; +@property (nonatomic, copy) NSString *appStoreId; +@property (nonatomic, copy) NSString *appName; + +@end + +@implementation FBSDKAppLinkTarget + ++ (instancetype)appLinkTargetWithURL:(NSURL *)url + appStoreId:(NSString *)appStoreId + appName:(NSString *)appName { + FBSDKAppLinkTarget *target = [[self alloc] init]; + target.URL = url; + target.appStoreId = appStoreId; + target.appName = appName; + return target; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.h new file mode 100644 index 0000000..86c5121 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.h @@ -0,0 +1,93 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Describes the callback for fetchDeferredAppLink. + @param url the url representing the deferred App Link + @param error the error during the request, if any + + + The url may also have a fb_click_time_utc query parameter that + represents when the click occurred that caused the deferred App Link to be created. + */ +typedef void (^FBSDKURLBlock)(NSURL *_Nullable url, NSError *_Nullable error) +NS_SWIFT_NAME(URLBlock); + + +/** + Class containing App Links related utility methods. + */ +NS_SWIFT_NAME(AppLinkUtility) +@interface FBSDKAppLinkUtility : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Call this method from the main thread to fetch deferred applink data if you use Mobile App + Engagement Ads (https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads-engagement). + This may require a network round trip. If successful, the handler is invoked with the link + data (this will only return a valid URL once, and future calls will result in a nil URL + value in the callback). + + @param handler the handler to be invoked if there is deferred App Link data + + + The handler may contain an NSError instance to capture any errors. In the + common case where there simply was no app link data, the NSError instance will be nil. + + This method should only be called from a location that occurs after any launching URL has + been processed (e.g., you should call this method from your application delegate's + applicationDidBecomeActive:). + */ ++ (void)fetchDeferredAppLink:(nullable FBSDKURLBlock)handler; + +/* + Call this method to fetch promotion code from the url, if it's present. + + @param url App Link url that was passed to the app. + + @return Promotion code string. + + + Call this method to fetch App Invite Promotion Code from applink if present. + This can be used to fetch the promotion code that was associated with the invite when it + was created. This method should be called with the url from the openURL method. +*/ ++ (nullable NSString *)appInvitePromotionCodeFromURL:(NSURL *)url; + +/** + Check whether the scheme is defined in the app's URL schemes. + @param scheme the scheme of App Link URL + @return YES if the scheme is defined, otherwise NO. +*/ ++ (BOOL)isMatchURLScheme:(NSString *)scheme; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.m new file mode 100644 index 0000000..5267111 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.m @@ -0,0 +1,125 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkUtility.h" + +#import "FBSDKAppEventsUtility.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" +#import "FBSDKURL.h" +#import "FBSDKUtility.h" + +static NSString *const FBSDKLastDeferredAppLink = @"com.facebook.sdk:lastDeferredAppLink%@"; +static NSString *const FBSDKDeferredAppLinkEvent = @"DEFERRED_APP_LINK"; + +@implementation FBSDKAppLinkUtility {} + ++ (void)fetchDeferredAppLink:(FBSDKURLBlock)handler +{ + NSAssert([NSThread isMainThread], @"FBSDKAppLink fetchDeferredAppLink: must be invoked from main thread."); + + NSString *appID = [FBSDKSettings appID]; + + // Deferred app links are only currently used for engagement ads, thus we consider the app to be an advertising one. + // If this is considered for organic, non-ads scenarios, we'll need to retrieve the FBAppEventsUtility.shouldAccessAdvertisingID + // before we make this call. + NSMutableDictionary *deferredAppLinkParameters = + [FBSDKAppEventsUtility activityParametersDictionaryForEvent:FBSDKDeferredAppLinkEvent + implicitEventsOnly:NO + shouldAccessAdvertisingID:YES]; + + FBSDKGraphRequest *deferredAppLinkRequest = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/activities", appID, nil] + parameters:deferredAppLinkParameters + tokenString:nil + version:nil + HTTPMethod:FBSDKHTTPMethodPOST]; + + [deferredAppLinkRequest startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, + id result, + NSError *error) { + NSURL *applinkURL = nil; + if (!error) { + NSString *appLinkString = result[@"applink_url"]; + if (appLinkString) { + applinkURL = [NSURL URLWithString:appLinkString]; + + NSString *createTimeUtc = result[@"click_time"]; + if (createTimeUtc) { + // append/translate the create_time_utc so it can be used by clients + NSString *modifiedURLString = [applinkURL.absoluteString + stringByAppendingFormat:@"%@fb_click_time_utc=%@", + (applinkURL.query) ? @"&" : @"?" , + createTimeUtc]; + applinkURL = [NSURL URLWithString:modifiedURLString]; + } + } + } + + if (handler) { + dispatch_async(dispatch_get_main_queue(), ^{ + handler(applinkURL, error); + }); + } + }]; +} + ++ (NSString *)appInvitePromotionCodeFromURL:(NSURL *)url +{ + FBSDKURL *parsedUrl = [FBSDKURL URLWithURL:url]; + NSDictionary *extras = parsedUrl.appLinkExtras; + if (extras) { + NSString *deeplinkContextString = extras[@"deeplink_context"]; + + // Parse deeplinkContext and extract promo code + if (deeplinkContextString.length > 0) { + NSError *error = nil; + NSDictionary *deeplinkContextData = [FBSDKBasicUtility objectForJSONString:deeplinkContextString error:&error]; + if (!error && [deeplinkContextData isKindOfClass:[NSDictionary class]]) { + return deeplinkContextData[@"promo_code"]; + } + } + } + + return nil; + +} + ++ (BOOL)isMatchURLScheme:(NSString *)scheme +{ + if (!scheme) { + return NO; + } + for(NSDictionary *urlType in [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleURLTypes"]) + { + for(NSString *urlScheme in urlType[@"CFBundleURLSchemes"]) { + if([urlScheme caseInsensitiveCompare:scheme] == NSOrderedSame) { + return YES; + } + } + } + return NO; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.h new file mode 100644 index 0000000..4ba20cc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.h @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKAppLinkResolving.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + A reference implementation for an App Link resolver that uses a hidden WKWebView + to parse the HTML containing App Link metadata. + */ +NS_SWIFT_NAME(WebViewAppLinkResolver) +@interface FBSDKWebViewAppLinkResolver : NSObject + +/** + Gets the instance of a FBSDKWebViewAppLinkResolver. + */ +@property (class, nonatomic, readonly, strong) FBSDKWebViewAppLinkResolver *sharedInstance +NS_SWIFT_NAME(shared); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.m new file mode 100644 index 0000000..c8e7211 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.m @@ -0,0 +1,325 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKWebViewAppLinkResolver.h" + +#import +#import + +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkTarget.h" + +/** + Describes the callback for appLinkFromURLInBackground. + @param result the results from following redirects + @param error the error during the request, if any + + */ +typedef void (^FBSDKURLFollowRedirectsBlock)(NSDictionary *result, NSError * _Nullable error) +NS_SWIFT_NAME(URLFollowRedirectsBlock); + +// Defines JavaScript to extract app link tags from HTML content +static NSString *const FBSDKWebViewAppLinkResolverTagExtractionJavaScript = @"" +"(function() {" +" var metaTags = document.getElementsByTagName('meta');" +" var results = [];" +" for (var i = 0; i < metaTags.length; i++) {" +" var property = metaTags[i].getAttribute('property');" +" if (property && property.substring(0, 'al:'.length) === 'al:') {" +" var tag = { \"property\": metaTags[i].getAttribute('property') };" +" if (metaTags[i].hasAttribute('content')) {" +" tag['content'] = metaTags[i].getAttribute('content');" +" }" +" results.push(tag);" +" }" +" }" +" return JSON.stringify(results);" +"})()"; +static NSString *const FBSDKWebViewAppLinkResolverIOSURLKey = @"url"; +static NSString *const FBSDKWebViewAppLinkResolverIOSAppStoreIdKey = @"app_store_id"; +static NSString *const FBSDKWebViewAppLinkResolverIOSAppNameKey = @"app_name"; +static NSString *const FBSDKWebViewAppLinkResolverDictionaryValueKey = @"_value"; +static NSString *const FBSDKWebViewAppLinkResolverPreferHeader = @"Prefer-Html-Meta-Tags"; +static NSString *const FBSDKWebViewAppLinkResolverMetaTagPrefix = @"al"; +static NSString *const FBSDKWebViewAppLinkResolverWebKey = @"web"; +static NSString *const FBSDKWebViewAppLinkResolverIOSKey = @"ios"; +static NSString *const FBSDKWebViewAppLinkResolverIPhoneKey = @"iphone"; +static NSString *const FBSDKWebViewAppLinkResolverIPadKey = @"ipad"; +static NSString *const FBSDKWebViewAppLinkResolverWebURLKey = @"url"; +static NSString *const FBSDKWebViewAppLinkResolverShouldFallbackKey = @"should_fallback"; + +@interface FBSDKWebViewAppLinkResolverWebViewDelegate : NSObject + +@property (nonatomic, copy) void (^didFinishLoad)(WKWebView *webView); +@property (nonatomic, copy) void (^didFailLoadWithError)(WKWebView *webView, NSError *error); +@property (nonatomic, assign) BOOL hasLoaded; + +@end + +@implementation FBSDKWebViewAppLinkResolverWebViewDelegate + +- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation +{ + if (self.didFinishLoad) { + self.didFinishLoad(webView); + } +} + +- (void)webView:(WKWebView *)webView didFailNavigation:(WKNavigation *)navigation withError:(NSError *)error +{ + if (self.didFailLoadWithError) { + self.didFailLoadWithError(webView, error); + } +} + +- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler +{ + if (self.hasLoaded) { + self.didFinishLoad(webView); + decisionHandler(WKNavigationActionPolicyCancel); + } + + self.hasLoaded = YES; + decisionHandler(WKNavigationActionPolicyAllow); +} + +@end + +@implementation FBSDKWebViewAppLinkResolver + ++ (instancetype)sharedInstance { + static id instance; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + instance = [[self alloc] init]; + }); + return instance; +} + +- (void)followRedirects:(NSURL *)url handler:(FBSDKURLFollowRedirectsBlock)handler +{ + // This task will be resolved with either the redirect NSURL + // or a dictionary with the response data to be returned. + void (^completion)(NSURLResponse *response, NSData *data, NSError *error) = ^(NSURLResponse *response, NSData *data, NSError *error) { + if (error) { + handler(nil, error); + return; + } + + if ([response isKindOfClass:[NSHTTPURLResponse class]]) { + NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; + + // NSURLConnection usually follows redirects automatically, but the + // documentation is unclear what the default is. This helps it along. + if (httpResponse.statusCode >= 300 && httpResponse.statusCode < 400) { + NSString *redirectString = httpResponse.allHeaderFields[@"Location"]; + NSURL *redirectURL = [NSURL URLWithString:redirectString]; + [self followRedirects:redirectURL handler:handler]; + return; + } + } + + handler(@{ @"response" : response, @"data" : data }, nil); + }; + + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request setValue:FBSDKWebViewAppLinkResolverMetaTagPrefix forHTTPHeaderField:FBSDKWebViewAppLinkResolverPreferHeader]; + + NSURLSession *session = [NSURLSession sharedSession]; + [[session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { + completion(response, data, error); + }] resume]; +} + +- (void)appLinkFromURL:(NSURL *)url handler:(FBSDKAppLinkBlock)handler +{ + dispatch_async(dispatch_get_main_queue(), ^{ + [self followRedirects:url handler:^(NSDictionary *result, NSError * _Nullable error) { + + if (error) { + handler(nil, error); + return; + } + + NSData *responseData = result[@"data"]; + NSHTTPURLResponse *response = result[@"response"]; + + WKWebView *webView = [[WKWebView alloc] init]; + + FBSDKWebViewAppLinkResolverWebViewDelegate *listener = [[FBSDKWebViewAppLinkResolverWebViewDelegate alloc] init]; + __block FBSDKWebViewAppLinkResolverWebViewDelegate *retainedListener = listener; + listener.didFinishLoad = ^(WKWebView *view) { + if (retainedListener) { + [self getALDataFromLoadedPage:view handler:^(NSDictionary *ogData) { + [view removeFromSuperview]; + view.navigationDelegate = nil; + retainedListener = nil; + handler([self appLinkFromALData:ogData destination:url], nil); + }]; + } + }; + listener.didFailLoadWithError = ^(WKWebView *view, NSError *loadError) { + if (retainedListener) { + [view removeFromSuperview]; + view.navigationDelegate = nil; + retainedListener = nil; + handler(nil, loadError); + } + }; + webView.navigationDelegate = listener; + webView.hidden = YES; + if (@available(iOS 9.0, *)) { + [webView loadData:responseData + MIMEType:response.MIMEType + characterEncodingName:response.textEncodingName + baseURL:response.URL]; + } else { + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request setValue:FBSDKWebViewAppLinkResolverMetaTagPrefix forHTTPHeaderField:FBSDKWebViewAppLinkResolverPreferHeader]; + [webView loadRequest:request]; + } + + UIWindow *window = [UIApplication sharedApplication].windows.firstObject; + [window addSubview:webView]; + }]; + }); +} + +/* + Builds up a data structure filled with the app link data from the meta tags on a page. + The structure of this object is a dictionary where each key holds an array of app link + data dictionaries. Values are stored in a key called "_value". + */ +- (NSDictionary *)parseALData:(NSArray *> *)dataArray { + NSMutableDictionary *al = [NSMutableDictionary dictionary]; + for (NSDictionary *tag in dataArray) { + NSString *name = tag[@"property"]; + if (![name isKindOfClass:[NSString class]]) { + continue; + } + NSArray *nameComponents = [name componentsSeparatedByString:@":"]; + if (![nameComponents[0] isEqualToString:FBSDKWebViewAppLinkResolverMetaTagPrefix]) { + continue; + } + NSMutableDictionary *root = al; + for (NSUInteger i = 1; i < nameComponents.count; i++) { + NSMutableArray *> *children = root[nameComponents[i]]; + if (!children) { + children = [NSMutableArray array]; + root[nameComponents[i]] = children; + } + NSMutableDictionary *child = children.lastObject; + if (!child || i == nameComponents.count - 1) { + child = [NSMutableDictionary dictionary]; + [children addObject:child]; + } + root = child; + } + if (tag[@"content"]) { + root[FBSDKWebViewAppLinkResolverDictionaryValueKey] = tag[@"content"]; + } + } + return al; +} + +- (void)getALDataFromLoadedPage:(WKWebView *)webView + handler:(void (^)(NSDictionary *))handler +{ + // Run some JavaScript in the webview to fetch the meta tags. + [webView evaluateJavaScript:FBSDKWebViewAppLinkResolverTagExtractionJavaScript + completionHandler:^(id _Nullable evaluateResult, NSError * _Nullable error) { + NSString *jsonString = [evaluateResult isKindOfClass:[NSString class]] ? evaluateResult : nil; + error = nil; + NSArray *> *arr = + [NSJSONSerialization JSONObjectWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] + options:0 + error:&error]; + handler([self parseALData:arr]); + }]; +} + +/* + Converts app link data into a FBSDKAppLink containing the targets relevant for this platform. + */ +- (FBSDKAppLink *)appLinkFromALData:(NSDictionary *)appLinkDict destination:(NSURL *)destination { + NSMutableArray *linkTargets = [NSMutableArray array]; + + NSArray *platformData = nil; + + const UIUserInterfaceIdiom idiom = UI_USER_INTERFACE_IDIOM(); + if (idiom == UIUserInterfaceIdiomPad) { + platformData = @[ appLinkDict[FBSDKWebViewAppLinkResolverIPadKey] ?: @{}, + appLinkDict[FBSDKWebViewAppLinkResolverIOSKey] ?: @{} ]; + } else if (idiom == UIUserInterfaceIdiomPhone) { + platformData = @[ appLinkDict[FBSDKWebViewAppLinkResolverIPhoneKey] ?: @{}, + appLinkDict[FBSDKWebViewAppLinkResolverIOSKey] ?: @{} ]; + } else { + // Future-proofing. Other User Interface idioms should only hit ios. + platformData = @[ appLinkDict[FBSDKWebViewAppLinkResolverIOSKey] ?: @{} ]; + } + + for (NSArray *platformObjects in platformData) { + for (NSDictionary *platformDict in platformObjects) { + // The schema requires a single url/app store id/app name, + // but we could find multiple of them. We'll make a best effort + // to interpret this data. + NSArray *> *urls = platformDict[FBSDKWebViewAppLinkResolverIOSURLKey]; + NSArray *> *appStoreIds = platformDict[FBSDKWebViewAppLinkResolverIOSAppStoreIdKey]; + NSArray *> *appNames = platformDict[FBSDKWebViewAppLinkResolverIOSAppNameKey]; + + NSUInteger maxCount = MAX(urls.count, MAX(appStoreIds.count, appNames.count)); + + for (NSUInteger i = 0; i < maxCount; i++) { + NSString *urlString = urls[i][FBSDKWebViewAppLinkResolverDictionaryValueKey]; + NSURL *url = urlString ? [NSURL URLWithString:urlString] : nil; + NSString *appStoreId = appStoreIds[i][FBSDKWebViewAppLinkResolverDictionaryValueKey]; + NSString *appName = appNames[i][FBSDKWebViewAppLinkResolverDictionaryValueKey]; + FBSDKAppLinkTarget *target = [FBSDKAppLinkTarget appLinkTargetWithURL:url + appStoreId:appStoreId + appName:appName]; + [linkTargets addObject:target]; + } + } + } + + NSDictionary *webDict = appLinkDict[FBSDKWebViewAppLinkResolverWebKey][0]; + NSString *webUrlString = webDict[FBSDKWebViewAppLinkResolverWebURLKey][0][FBSDKWebViewAppLinkResolverDictionaryValueKey]; + NSString *shouldFallbackString = webDict[FBSDKWebViewAppLinkResolverShouldFallbackKey][0][FBSDKWebViewAppLinkResolverDictionaryValueKey]; + + NSURL *webUrl = destination; + + if (shouldFallbackString && + [@[ @"no", @"false", @"0" ] containsObject:shouldFallbackString.lowercaseString]) { + webUrl = nil; + } + if (webUrl && webUrlString) { + webUrl = [NSURL URLWithString:webUrlString]; + } + + return [FBSDKAppLink appLinkWithSourceURL:destination + targets:linkTargets + webURL:webUrl]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.h new file mode 100644 index 0000000..1695690 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +NS_SWIFT_NAME(MeasurementEventListener) +@interface FBSDKMeasurementEventListener : NSObject + +@property (class, nonatomic, strong, readonly) FBSDKMeasurementEventListener *defaultListener +NS_SWIFT_NAME(default); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.m new file mode 100644 index 0000000..00710d1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.m @@ -0,0 +1,92 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMeasurementEventListener.h" + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKTimeSpentData.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +static NSNotificationName const FBSDKMeasurementEventNotification = @"com.facebook.facebook-objc-sdk.measurement_event"; + +#else + +static NSString *const FBSDKMeasurementEventNotification = @"com.facebook.facebook-objc-sdk.measurement_event"; + +#endif + +static NSString *const FBSDKMeasurementEventName = @"event_name"; +static NSString *const FBSDKMeasurementEventArgs = @"event_args"; +static NSString *const FBSDKMeasurementEventPrefix = @"bf_"; + +@implementation FBSDKMeasurementEventListener + ++ (instancetype)defaultListener +{ + static dispatch_once_t dispatchOnceLocker = 0; + static FBSDKMeasurementEventListener *defaultListener = nil; + dispatch_once(&dispatchOnceLocker, ^{ + defaultListener = [[self alloc] init]; + NSNotificationCenter *center = [NSNotificationCenter defaultCenter]; + [center addObserver:defaultListener + selector:@selector(logFBAppEventForNotification:) + name:FBSDKMeasurementEventNotification + object:nil]; + }); + return defaultListener; +} + +- (void)logFBAppEventForNotification:(NSNotification *)note +{ + // when catch al_nav_in event, we set source application for FBAppEvents. + if ([note.userInfo[FBSDKMeasurementEventName] isEqualToString:@"al_nav_in"]) { + NSString *sourceApplication = note.userInfo[FBSDKMeasurementEventArgs][@"sourceApplication"]; + if (sourceApplication) { + [FBSDKTimeSpentData setSourceApplication:sourceApplication isFromAppLink:YES]; + } + } + NSDictionary *eventArgs = note.userInfo[FBSDKMeasurementEventArgs]; + NSMutableDictionary *logData = [[NSMutableDictionary alloc] init]; + for (NSString *key in eventArgs.allKeys) { + NSError *error = nil; + NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"[^0-9a-zA-Z _-]" options:0 error:&error]; + NSString *safeKey = [regex stringByReplacingMatchesInString:key + options:0 + range:NSMakeRange(0, key.length) + withTemplate:@"-"]; + safeKey = [safeKey stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@" -"]]; + logData[safeKey] = eventArgs[key]; + } + [FBSDKAppEvents logInternalEvent:[FBSDKMeasurementEventPrefix stringByAppendingString:note.userInfo[FBSDKMeasurementEventName]] + parameters:logData + isImplicitlyLogged:YES]; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.h new file mode 100644 index 0000000..169abe3 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKCrashObserving.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKCrashHandler : NSObject + ++ (void)disable; ++ (void)addObserver:(id)observer; ++ (void)removeObserver:(id)observer; ++ (void)clearCrashReportFiles; ++ (NSString *)getFBSDKVersion; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m new file mode 100644 index 0000000..3bd50e6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m @@ -0,0 +1,347 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKCrashHandler.h" + +#import + +#import + +#import "FBSDKLibAnalyzer.h" + +#define FBSDK_MAX_CRASH_LOGS 5 +#define FBSDK_CRASH_PATH_NAME @"instrument" +#ifndef FBSDK_VERSION_STRING +#define FBSDK_VERSION_STRING @"5.15.1" +#endif + +static NSUncaughtExceptionHandler *previousExceptionHandler = NULL; +static NSString *mappingTableIdentifier = NULL; +static NSString *directoryPath; + +NSString *const kFBSDKAppVersion = @"app_version"; +NSString *const kFBSDKCallstack = @"callstack"; +NSString *const kFBSDKCrashReason = @"reason"; +NSString *const kFBSDKCrashTimestamp = @"timestamp"; +NSString *const kFBSDKDeviceModel = @"device_model"; +NSString *const kFBSDKDeviceOSVersion = @"device_os_version"; + +NSString *const kFBSDKMapingTable = @"mapping_table"; +NSString *const kFBSDKMappingTableIdentifier = @"mapping_table_identifier"; + +@implementation FBSDKCrashHandler + +static NSHashTable> *_observers; +static NSArray *> *_processedCrashLogs; +static BOOL _isTurnedOff; + +# pragma mark - Class Methods + ++ (void)initialize +{ + NSString *dirPath = [NSTemporaryDirectory() stringByAppendingPathComponent:FBSDK_CRASH_PATH_NAME]; + if (![[NSFileManager defaultManager] fileExistsAtPath:dirPath]) { + [[NSFileManager defaultManager] createDirectoryAtPath:dirPath withIntermediateDirectories:NO attributes:NULL error:NULL]; + } + directoryPath = dirPath; + NSString *identifier = [[NSUUID UUID] UUIDString]; + mappingTableIdentifier = [identifier stringByReplacingOccurrencesOfString:@"-" withString:@""]; + _observers = [[NSHashTable alloc] init]; +} + ++ (void)sendCrashLogs +{ + NSArray> *observers = [_observers copy]; + for (id observer in observers) { + if (observer && [observer respondsToSelector:@selector(didReceiveCrashLogs:)]) { + NSArray *> *filteredCrashLogs = [self filterCrashLogs:observer.prefixes]; + [observer didReceiveCrashLogs:filteredCrashLogs]; + } + } +} + ++ (NSArray *> *)filterCrashLogs:(NSArray *)prefixList +{ + NSMutableArray *> *crashLogs = [NSMutableArray array]; + for (NSDictionary *crashLog in _processedCrashLogs) { + NSArray *callstack = crashLog[kFBSDKCallstack]; + if ([self callstack:callstack containsPrefix:prefixList]) { + [crashLogs addObject:crashLog]; + } + } + return crashLogs; +} + ++ (BOOL)callstack:(NSArray *)callstack + containsPrefix:(NSArray *)prefixList +{ + NSString *callStackString = [callstack componentsJoinedByString:@""]; + for (NSString *prefix in prefixList) { + if ([callStackString containsString:prefix]) { + return YES; + } + } + return NO; +} + ++ (void)disable +{ + _isTurnedOff = YES; + [FBSDKCrashHandler uninstallExceptionsHandler]; + _observers = nil; +} + ++ (void)addObserver:(id)observer +{ + if (_isTurnedOff || ![self isSafeToGenerateMapping]) { + return; + } + static dispatch_once_t onceToken = 0; + dispatch_once(&onceToken, ^{ + [FBSDKCrashHandler installExceptionsHandler]; + _processedCrashLogs = [self getProcessedCrashLogs]; + }); + if (![_observers containsObject:observer]) { + [_observers addObject:observer]; + [self generateMethodMapping:observer]; + [self sendCrashLogs]; + } +} + ++ (void)removeObserver:(id)observer +{ + if ([_observers containsObject:observer]) { + [_observers removeObject:observer]; + if (_observers.count == 0) { + [FBSDKCrashHandler uninstallExceptionsHandler]; + } + } +} + +# pragma mark handler function + ++ (void)installExceptionsHandler +{ + NSUncaughtExceptionHandler *currentHandler = NSGetUncaughtExceptionHandler(); + + if (currentHandler != FBSDKExceptionHandler) { + previousExceptionHandler = currentHandler; + NSSetUncaughtExceptionHandler(&FBSDKExceptionHandler); + } +} + ++ (void)uninstallExceptionsHandler +{ + NSSetUncaughtExceptionHandler(previousExceptionHandler); + previousExceptionHandler = nil; +} + +static void FBSDKExceptionHandler(NSException *exception) +{ + [FBSDKCrashHandler saveException:exception]; + if (previousExceptionHandler) { + previousExceptionHandler(exception); + } +} + +#pragma mark - Storage + ++ (void)saveException:(NSException *)exception +{ + if (exception.callStackSymbols && exception.name) { + NSArray *stackSymbols = [NSArray arrayWithArray:exception.callStackSymbols]; + [self saveCrashLog:@{ + kFBSDKCallstack : stackSymbols, + kFBSDKCrashReason : exception.name, + }]; + } +} + ++ (void)saveSignal:(int)signal withCallStack:(NSArray *)callStack +{ + if (callStack) { + NSString *signalDescription = [NSString stringWithCString:strsignal(signal) encoding:NSUTF8StringEncoding] ?: [NSString stringWithFormat:@"SIGNUM(%i)", signal]; + [self saveCrashLog:@{ + kFBSDKCallstack : callStack, + kFBSDKCrashReason : signalDescription, + }]; + } +} + ++ (NSArray *> *)getProcessedCrashLogs +{ + NSArray *> *crashLogs = [self loadCrashLogs]; + if (0 == crashLogs.count) { + [self clearCrashReportFiles]; + return nil; + } + NSMutableArray *> *processedCrashLogs = [NSMutableArray array]; + + for (NSDictionary *crashLog in crashLogs) { + NSArray *callstack = crashLog[kFBSDKCallstack]; + NSData *data = [self loadLibData:crashLog]; + if (!data) { + continue; + } + NSDictionary *methodMapping = [NSJSONSerialization JSONObjectWithData:data + options:kNilOptions + error:nil]; + NSArray *symbolicatedCallstack = [FBSDKLibAnalyzer symbolicateCallstack:callstack methodMapping:methodMapping]; + NSMutableDictionary *symbolicatedCrashLog = [NSMutableDictionary dictionaryWithDictionary:crashLog]; + if (symbolicatedCallstack) { + [symbolicatedCrashLog setObject:symbolicatedCallstack forKey:kFBSDKCallstack]; + [symbolicatedCrashLog removeObjectForKey:kFBSDKMappingTableIdentifier]; + [processedCrashLogs addObject:symbolicatedCrashLog]; + } + } + return processedCrashLogs; +} + ++ (NSArray *> *)loadCrashLogs +{ + NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directoryPath error:NULL]; + NSArray *fileNames = [[self getCrashLogFileNames:files] sortedArrayUsingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2){ + return [obj2 compare:obj1]; + }]; + NSMutableArray *> *crashLogArray = [NSMutableArray array]; + + for (NSUInteger i = 0; i < MIN(fileNames.count, FBSDK_MAX_CRASH_LOGS); i++) { + NSData *data = [self loadCrashLog:fileNames[i]]; + if (!data) { + continue; + } + NSDictionary* crashLog = [NSJSONSerialization JSONObjectWithData:data + options:kNilOptions + error:nil]; + if (crashLog) { + [crashLogArray addObject:crashLog]; + } + } + return [crashLogArray copy]; +} + ++ (nullable NSData *)loadCrashLog:(NSString *)fileName +{ + return [NSData dataWithContentsOfFile:[directoryPath stringByAppendingPathComponent:fileName] options:NSDataReadingMappedIfSafe error:nil]; +} + ++ (void)clearCrashReportFiles +{ + NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directoryPath error:nil]; + + for (NSUInteger i = 0; i < files.count; i++) { + // remove all crash related files except for the current mapping table + if ([files[i] hasPrefix:@"crash_"] && ![files[i] containsString:mappingTableIdentifier]) { + [[NSFileManager defaultManager] removeItemAtPath:[directoryPath stringByAppendingPathComponent:files[i]] error:nil]; + } + } +} + ++ (NSArray *)getCrashLogFileNames:(NSArray *)files +{ + NSMutableArray *fileNames = [NSMutableArray array]; + + for (NSString *fileName in files) { + if ([fileName hasPrefix:@"crash_log_"] && [fileName hasSuffix:@".json"]) { + [fileNames addObject:fileName]; + } + } + + return fileNames; +} + ++ (void)saveCrashLog:(NSDictionary *)crashLog +{ + NSMutableDictionary *completeCrashLog = [NSMutableDictionary dictionaryWithDictionary:crashLog]; + NSString *currentTimestamp = [NSString stringWithFormat:@"%.0lf", [[NSDate date] timeIntervalSince1970]]; + + [completeCrashLog setObject:currentTimestamp forKey:kFBSDKCrashTimestamp]; + [completeCrashLog setObject:mappingTableIdentifier forKey:kFBSDKMappingTableIdentifier]; + + NSBundle *mainBundle = [NSBundle mainBundle]; + NSString *version = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"]; + NSString *build = [mainBundle objectForInfoDictionaryKey:@"CFBundleVersion"]; + [completeCrashLog setObject:[NSString stringWithFormat:@"%@(%@)", version, build] forKey:kFBSDKAppVersion]; + + struct utsname systemInfo; + uname(&systemInfo); + [completeCrashLog setObject:@(systemInfo.machine) forKey:kFBSDKDeviceModel]; + + [completeCrashLog setObject:[UIDevice currentDevice].systemVersion forKey:kFBSDKDeviceOSVersion]; + + NSData *data = [NSJSONSerialization dataWithJSONObject:completeCrashLog options:0 error:nil]; + + [data writeToFile:[self getPathToCrashFile:currentTimestamp] + atomically:YES]; +} + ++ (void)generateMethodMapping:(id)observer +{ + if (observer.prefixes.count == 0) { + return; + } + [[NSUserDefaults standardUserDefaults] setObject:mappingTableIdentifier forKey:kFBSDKMappingTableIdentifier]; + NSDictionary *methodMapping = [FBSDKLibAnalyzer getMethodsTable:observer.prefixes + frameworks:observer.frameworks]; + if (methodMapping.count > 0){ + NSData *data = [NSJSONSerialization dataWithJSONObject:methodMapping options:0 error:nil]; + [data writeToFile:[self getPathToLibDataFile:mappingTableIdentifier] + atomically:YES]; + } +} + ++ (nullable NSData *)loadLibData:(NSDictionary *)crashLog +{ + NSString *identifier = [crashLog objectForKey:kFBSDKMappingTableIdentifier]; + return [NSData dataWithContentsOfFile:[self getPathToLibDataFile:identifier] options:NSDataReadingMappedIfSafe error:nil]; +} + ++ (NSString *)getPathToCrashFile:(NSString *)timestamp +{ + return [directoryPath stringByAppendingPathComponent: + [NSString stringWithFormat:@"crash_log_%@.json", timestamp]]; +} + ++ (NSString *)getPathToLibDataFile:(NSString *)identifier +{ + return [directoryPath stringByAppendingPathComponent: + [NSString stringWithFormat:@"crash_lib_data_%@.json", identifier]]; + +} + ++ (BOOL)isSafeToGenerateMapping +{ +#if TARGET_OS_SIMULATOR + return YES; +#else + NSString *identifier = [[NSUserDefaults standardUserDefaults] objectForKey:kFBSDKMappingTableIdentifier]; + //first app start + if (!identifier) { + return YES; + } + + return [[NSFileManager defaultManager] fileExistsAtPath:[self getPathToLibDataFile:identifier]]; +#endif +} + ++ (NSString *)getFBSDKVersion +{ + return FBSDK_VERSION_STRING; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashObserving.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashObserving.h new file mode 100644 index 0000000..070416c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashObserving.h @@ -0,0 +1,34 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@protocol FBSDKCrashObserving + +@property (nonatomic, copy) NSArray *prefixes; +@property (nonatomic, copy, nullable) NSArray *frameworks; + +@optional + +- (void)didReceiveCrashLogs:(NSArray *> *)crashLogs; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.h new file mode 100644 index 0000000..e6873ad --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKLibAnalyzer : NSObject + ++ (NSDictionary *)getMethodsTable:(NSArray *)prefixes + frameworks:(NSArray * _Nullable)frameworks; ++ (nullable NSArray *)symbolicateCallstack:(NSArray *)callstack + methodMapping:(NSDictionary *)methodMapping; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.m new file mode 100644 index 0000000..1ede1d8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.m @@ -0,0 +1,227 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKLibAnalyzer.h" + +#import + +@implementation FBSDKLibAnalyzer + +static NSMutableDictionary *_methodMapping; + ++ (void)initialize +{ + _methodMapping = [NSMutableDictionary dictionary]; +} + ++ (NSDictionary *)getMethodsTable:(NSArray *)prefixes + frameworks:(NSArray *)frameworks +{ + NSArray *allClasses = [self getClassNames:prefixes frameworks:frameworks]; + for (NSString *className in allClasses) { + Class class = NSClassFromString(className); + if (class) { + [self addClass:class isClassMethod:NO]; + [self addClass:object_getClass(class) isClassMethod:YES]; + } + } + @synchronized (_methodMapping) { + return [_methodMapping copy]; + } +} + +#pragma mark - private methods + ++ (NSArray *)getClassNames:(NSArray *)prefixes + frameworks:(NSArray *)frameworks +{ + NSMutableArray *classNames = [NSMutableArray new]; + // from main bundle + [classNames addObjectsFromArray:[self getClassesFrom:[[NSBundle mainBundle] executablePath] + prefixes:prefixes]]; + // from dynamic libraries + if (frameworks.count > 0) { + unsigned int count = 0; + const char **images = objc_copyImageNames(&count); + for (int i = 0; i < count; i++) { + NSString *image = [NSString stringWithUTF8String:images[i]]; + for (NSString *framework in frameworks) { + if ([image containsString:framework]) { + [classNames addObjectsFromArray:[self getClassesFrom:image + prefixes:nil]]; + } + } + } + free(images); + } + + return [classNames copy]; +} + ++ (NSArray *)getClassesFrom:(NSString *)image + prefixes:(NSArray *)prefixes +{ + NSMutableArray *classNames = [NSMutableArray array]; + unsigned int count = 0; + const char **classes = objc_copyClassNamesForImage([image UTF8String], &count); + for (unsigned int i = 0; i < count; i++){ + NSString *className = [NSString stringWithUTF8String:classes[i]]; + if (prefixes.count > 0) { + for (NSString *prefix in prefixes) { + if ([className hasPrefix:prefix]) { + [classNames addObject:className]; + break; + } + } + } else { + [classNames addObject:className]; + } + } + free(classes); + return [classNames copy]; +} + ++ (void)addClass:(Class)class + isClassMethod:(BOOL)isClassMethod +{ + unsigned int methodsCount = 0; + Method *methods = class_copyMethodList(class, &methodsCount); + + NSString *methodType = isClassMethod ? @"+" : @"-"; + + for (unsigned int i = 0; i < methodsCount; i++) { + Method method = methods[i]; + + if (method) { + SEL selector = method_getName(method); + + IMP methodImplementation = class_getMethodImplementation(class, selector); + NSString *methodAddress = [NSString stringWithFormat:@"0x%010lx", (unsigned long)methodImplementation]; + NSString *methodName = [NSString stringWithFormat:@"%@[%@ %@]", + methodType, + NSStringFromClass(class), + NSStringFromSelector(selector)]; + + if (methodAddress && methodName) { + @synchronized (_methodMapping) { + [_methodMapping setObject:methodName forKey:methodAddress]; + } + } + } + } + free(methods); +} + ++ (NSArray *)symbolicateCallstack:(NSArray *)callstack + methodMapping:(NSDictionary *)methodMapping +{ + if (!callstack || !methodMapping) { + return nil; + } + NSArray *sortedAllAddress = [methodMapping.allKeys sortedArrayUsingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2) { + return [obj1 compare:obj2]; + }]; + + BOOL containsFBSDKFunction = NO; + NSInteger nonSDKMethodCount = 0; + NSMutableArray *symbolicatedCallstack = [NSMutableArray array]; + + for (NSUInteger i = 0; i < callstack.count; i++){ + NSString *rawAddress = [self getAddress:callstack[i]]; + NSString *addressString = [NSString stringWithFormat:@"0x%@",[rawAddress substringWithRange:NSMakeRange(rawAddress.length - 10, 10)]]; + NSString *methodAddress = [self searchMethod:addressString sortedAllAddress:sortedAllAddress]; + + if (methodAddress) { + containsFBSDKFunction = YES; + nonSDKMethodCount == 0 ?: [symbolicatedCallstack addObject:[NSString stringWithFormat:@"(%ld DEV METHODS)", (long)nonSDKMethodCount]]; + nonSDKMethodCount = 0; + NSString *methodName = [methodMapping objectForKey:methodAddress]; + + // filter out cxx_destruct + if ([methodName containsString:@".cxx_destruct"]) { + return nil; + } + [symbolicatedCallstack addObject:[NSString stringWithFormat:@"%@%@", methodName, [self getOffset:addressString secondString:methodAddress]]]; + } else { + nonSDKMethodCount++; + } + } + nonSDKMethodCount == 0 ?: [symbolicatedCallstack addObject:[NSString stringWithFormat:@"(%ld DEV METHODS)", (long)nonSDKMethodCount]]; + + return containsFBSDKFunction ? symbolicatedCallstack : nil; +} + ++ (NSString *)getAddress:(NSString *)callstackEntry +{ + NSArray *components = [callstackEntry componentsSeparatedByString:@" "]; + for (NSString *component in components) { + if ([component containsString:@"0x"]) { + return component; + } + } + return nil; +} + ++ (NSString *)getOffset:(NSString *)firstString + secondString:(NSString *)secondString +{ + if (!firstString || !secondString) { + return nil; + } + unsigned long long first = 0, second = 0; + NSScanner *scanner = [NSScanner scannerWithString:firstString]; + [scanner scanHexLongLong:&first]; + + scanner = [NSScanner scannerWithString:secondString]; + [scanner scanHexLongLong:&second]; + + unsigned long long difference = first - second; + return [NSString stringWithFormat:@"+%llu", difference]; +} + ++ (NSString *)searchMethod:(NSString *)address + sortedAllAddress:(NSArray *)sortedAllAddress +{ + if (0 == sortedAllAddress.count) { + return nil; + } + NSString *lowestAddress = sortedAllAddress[0]; + NSString *highestAddress = sortedAllAddress[sortedAllAddress.count - 1]; + + if ([address compare:lowestAddress] == NSOrderedAscending || [address compare:highestAddress] == NSOrderedDescending) { + return nil; + } + + if ([address compare:lowestAddress] == NSOrderedSame) { + return lowestAddress; + } + + if ([address compare:highestAddress] == NSOrderedSame) { + return highestAddress; + } + + NSUInteger index = [sortedAllAddress indexOfObject:address + inSortedRange:NSMakeRange(0, sortedAllAddress.count - 1) + options:NSBinarySearchingInsertionIndex + usingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2) { + return [obj1 compare:obj2]; + }]; + return sortedAllAddress[index - 1]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.h new file mode 100644 index 0000000..078d3f7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.h @@ -0,0 +1,135 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Describes the callback for appLinkFromURLInBackground. + @param object the FBSDKAppLink representing the deferred App Link + @param stop the error during the request, if any + + */ +typedef id _Nullable (^FBSDKInvalidObjectHandler)(id object, BOOL *stop) +NS_SWIFT_NAME(InvalidObjectHandler); + +@interface FBSDKBasicUtility : NSObject + +/** + Converts an object into a JSON string. + @param object The object to convert to JSON. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. + @return A JSON string or nil if the object cannot be converted to JSON. + */ ++ (nullable NSString *)JSONStringForObject:(id)object + error:(NSError *__autoreleasing *)errorRef + invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; + +/** + Sets an object for a key in a dictionary if it is not nil. + @param dictionary The dictionary to set the value for. + @param object The value to set. + @param key The key to set the value for. + */ ++ (void)dictionary:(NSMutableDictionary *)dictionary + setObject:(nullable id)object + forKey:(nullable id)key; + +/** + Sets an object for a key in a dictionary if it is not nil. + @param dictionary The dictionary to set the value for. + @param object The value to set after serializing to JSON. + @param key The key to set the value for. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return NO if an error occurred while serializing the object, otherwise YES. + */ ++ (BOOL)dictionary:(NSMutableDictionary *)dictionary +setJSONStringForObject:(id)object + forKey:(id)key + error:(NSError *__autoreleasing *)errorRef; + +/** + Adds an object to an array if it is not nil. + @param array The array to add the object to. + @param object The object to add to the array. + */ ++ (void)array:(NSMutableArray *)array addObject:(nullable id)object; + +/** + Converts a JSON string into an object + @param string The JSON string to convert. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string + cannot be converted. + */ ++ (nullable id)objectForJSONString:(NSString *)string error:(NSError *__autoreleasing *)errorRef; + +/** + Constructs a query string from a dictionary. + @param dictionary The dictionary with key/value pairs for the query string. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. + @return Query string representation of the parameters. + */ ++ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary + error:(NSError *__autoreleasing *)errorRef + invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; + +/** + Converts simple value types to the string equivalent for serializing to a request query or body. + @param value The value to be converted. + @return The value that may have been converted if able (otherwise the input param). + */ ++ (id)convertRequestValue:(id)value; + +/** + Encodes a value for an URL. + @param value The value to encode. + @return The encoded value. + */ ++ (NSString *)URLEncode:(NSString *)value; + +/** + Parses a query string into a dictionary. + @param queryString The query string value. + @return A dictionary with the key/value pairs. + */ ++ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString; + +/** + Decodes a value from an URL. + @param value The value to decode. + @return The decoded value. + */ ++ (NSString *)URLDecode:(NSString *)value; + +/** + Gzip data with default compression level if possible. + @param data The raw data. + @return nil if unable to gzip the data, otherwise gzipped data. + */ ++ (nullable NSData *)gzip:(NSData *)data; + ++ (NSString *)anonymousID; ++ (NSString *)persistenceFilePath:(NSString *)filename; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.m new file mode 100644 index 0000000..522b175 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.m @@ -0,0 +1,341 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKBasicUtility.h" + +#import + +#import "FBSDKTypeUtility.h" + +#define kChunkSize 1024 + +static NSString *const FBSDK_BASICUTILITY_ANONYMOUSIDFILENAME = @"com-facebook-sdk-PersistedAnonymousID.json"; +static NSString *const FBSDK_BASICUTILITY_ANONYMOUSID_KEY = @"anon_id"; + +@protocol BASIC_FBSDKError + ++ (NSError *)invalidArgumentErrorWithName:(NSString *)name value:(id)value message:(NSString *)message; + +@end + +@implementation FBSDKBasicUtility + ++ (NSString *)JSONStringForObject:(id)object + error:(NSError *__autoreleasing *)errorRef + invalidObjectHandler:(FBSDKInvalidObjectHandler)invalidObjectHandler +{ + if (invalidObjectHandler || ![NSJSONSerialization isValidJSONObject:object]) { + object = [self _convertObjectToJSONObject:object invalidObjectHandler:invalidObjectHandler stop:NULL]; + if (![NSJSONSerialization isValidJSONObject:object]) { + if (errorRef != NULL) { + Class FBSDKErrorClass = NSClassFromString(@"FBSDKError"); + if ([FBSDKErrorClass respondsToSelector:@selector(invalidArgumentErrorWithName:value:message:)]) { + *errorRef = [FBSDKErrorClass invalidArgumentErrorWithName:@"object" + value:object + message:@"Invalid object for JSON serialization."]; + } + } + return nil; + } + } + NSData *data = [NSJSONSerialization dataWithJSONObject:object options:0 error:errorRef]; + if (!data) { + return nil; + } + return [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; +} + ++ (BOOL)dictionary:(NSMutableDictionary *)dictionary +setJSONStringForObject:(id)object + forKey:(id)key + error:(NSError *__autoreleasing *)errorRef +{ + if (!object || !key) { + return YES; + } + NSString *JSONString = [self JSONStringForObject:object error:errorRef invalidObjectHandler:NULL]; + if (!JSONString) { + return NO; + } + [self dictionary:dictionary setObject:JSONString forKey:key]; + return YES; +} + ++ (id)_convertObjectToJSONObject:(id)object + invalidObjectHandler:(FBSDKInvalidObjectHandler)invalidObjectHandler + stop:(BOOL *)stopRef +{ + __block BOOL stop = NO; + if ([object isKindOfClass:[NSString class]] || [object isKindOfClass:[NSNumber class]]) { + // good to go, keep the object + } else if ([object isKindOfClass:[NSURL class]]) { + object = ((NSURL *)object).absoluteString; + } else if ([object isKindOfClass:[NSDictionary class]]) { + NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init]; + [(NSDictionary *)object enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *dictionaryStop) { + [self dictionary:dictionary + setObject:[self _convertObjectToJSONObject:obj invalidObjectHandler:invalidObjectHandler stop:&stop] + forKey:[FBSDKTypeUtility stringValue:key]]; + if (stop) { + *dictionaryStop = YES; + } + }]; + object = dictionary; + } else if ([object isKindOfClass:[NSArray class]]) { + NSMutableArray *array = [[NSMutableArray alloc] init]; + for (id obj in (NSArray *)object) { + id convertedObj = [self _convertObjectToJSONObject:obj invalidObjectHandler:invalidObjectHandler stop:&stop]; + [self array:array addObject:convertedObj]; + if (stop) { + break; + } + } + object = array; + } else { + object = invalidObjectHandler(object, stopRef); + } + if (stopRef != NULL) { + *stopRef = stop; + } + return object; +} + ++ (void)dictionary:(NSMutableDictionary *)dictionary setObject:(id)object forKey:(id)key +{ + if (object && key) { + dictionary[key] = object; + } +} + ++ (void)array:(NSMutableArray *)array addObject:(id)object +{ + if (object) { + [array addObject:object]; + } +} + ++ (id)objectForJSONString:(NSString *)string error:(NSError *__autoreleasing *)errorRef +{ + NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding]; + if (!data) { + if (errorRef != NULL) { + *errorRef = nil; + } + return nil; + } + return [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:errorRef]; +} + ++ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary + error:(NSError *__autoreleasing *)errorRef + invalidObjectHandler:(FBSDKInvalidObjectHandler)invalidObjectHandler +{ + NSMutableString *queryString = [[NSMutableString alloc] init]; + __block BOOL hasParameters = NO; + if (dictionary) { + NSMutableArray *keys = [dictionary.allKeys mutableCopy]; + // remove non-string keys, as they are not valid + [keys filterUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) { + return [evaluatedObject isKindOfClass:[NSString class]]; + }]]; + // sort the keys so that the query string order is deterministic + [keys sortUsingSelector:@selector(compare:)]; + BOOL stop = NO; + for (NSString *key in keys) { + id value = [self convertRequestValue:dictionary[key]]; + if ([value isKindOfClass:[NSString class]]) { + value = [self URLEncode:value]; + } + if (invalidObjectHandler && ![value isKindOfClass:[NSString class]]) { + value = invalidObjectHandler(value, &stop); + if (stop) { + break; + } + } + if (value) { + if (hasParameters) { + [queryString appendString:@"&"]; + } + [queryString appendFormat:@"%@=%@", key, value]; + hasParameters = YES; + } + } + } + if (errorRef != NULL) { + *errorRef = nil; + } + return (queryString.length ? [queryString copy] : nil); +} + ++ (id)convertRequestValue:(id)value +{ + if ([value isKindOfClass:[NSNumber class]]) { + value = ((NSNumber *)value).stringValue; + } else if ([value isKindOfClass:[NSURL class]]) { + value = ((NSURL *)value).absoluteString; + } + return value; +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" ++ (NSString *)URLEncode:(NSString *)value +{ + return (__bridge_transfer NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, + (CFStringRef)value, + NULL, // characters to leave unescaped + CFSTR(":!*();@/&?+$,='"), + kCFStringEncodingUTF8); +} + +#pragma clang diagnostic pop + ++ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString +{ + NSMutableDictionary *result = [[NSMutableDictionary alloc] init]; + NSArray *parts = [queryString componentsSeparatedByString:@"&"]; + + for (NSString *part in parts) { + if (part.length == 0) { + continue; + } + + NSRange index = [part rangeOfString:@"="]; + NSString *key; + NSString *value; + + if (index.location == NSNotFound) { + key = part; + value = @""; + } else { + key = [part substringToIndex:index.location]; + value = [part substringFromIndex:index.location + index.length]; + } + + key = [self URLDecode:key]; + value = [self URLDecode:value]; + if (key && value) { + result[key] = value; + } + } + return result; +} + ++ (NSString *)URLDecode:(NSString *)value +{ + value = [value stringByReplacingOccurrencesOfString:@"+" withString:@" "]; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + value = [value stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; +#pragma clang diagnostic pop + return value; +} + ++ (NSData *)gzip:(NSData *)data +{ + const void *bytes = data.bytes; + const NSUInteger length = data.length; + + if (!bytes || !length) { + return nil; + } + +#if defined(__LP64__) && __LP64__ + if (length > UINT_MAX) { + return nil; + } +#endif + + // initialze stream + z_stream stream; + bzero(&stream, sizeof(z_stream)); + + if (deflateInit2(&stream, -1, Z_DEFLATED, 31, 8, Z_DEFAULT_STRATEGY) != Z_OK) { + return nil; + } + stream.avail_in = (uint)length; + stream.next_in = (Bytef *)bytes; + + int retCode; + NSMutableData *result = [NSMutableData dataWithCapacity:(length / 4)]; + unsigned char output[kChunkSize]; + do { + stream.avail_out = kChunkSize; + stream.next_out = output; + retCode = deflate(&stream, Z_FINISH); + if (retCode != Z_OK && retCode != Z_STREAM_END) { + deflateEnd(&stream); + return nil; + } + unsigned size = kChunkSize - stream.avail_out; + if (size > 0) { + [result appendBytes:output length:size]; + } + } while (retCode == Z_OK); + + deflateEnd(&stream); + + return result; +} + ++ (NSString *)anonymousID +{ + // Grab previously written anonymous ID and, if none have been generated, create and + // persist a new one which will remain associated with this app. + NSString *result = [[self class] retrievePersistedAnonymousID]; + if (!result) { + // Generate a new anonymous ID. Create as a UUID, but then prepend the fairly + // arbitrary 'XZ' to the front so it's easily distinguishable from IDFA's which + // will only contain hex. + result = [NSString stringWithFormat:@"XZ%@", [NSUUID UUID].UUIDString]; + + [self persistAnonymousID:result]; + } + return result; +} + ++ (NSString *)retrievePersistedAnonymousID +{ + NSString *file = [[self class] persistenceFilePath:FBSDK_BASICUTILITY_ANONYMOUSIDFILENAME]; + NSString *content = [[NSString alloc] initWithContentsOfFile:file + encoding:NSASCIIStringEncoding + error:nil]; + NSDictionary *results = [FBSDKBasicUtility objectForJSONString:content error:NULL]; + return results[FBSDK_BASICUTILITY_ANONYMOUSID_KEY]; +} + ++ (NSString *)persistenceFilePath:(NSString *)filename +{ + NSSearchPathDirectory directory = NSLibraryDirectory; + NSArray *paths = NSSearchPathForDirectoriesInDomains(directory, NSUserDomainMask, YES); + NSString *docDirectory = paths[0]; + return [docDirectory stringByAppendingPathComponent:filename]; +} + ++ (void)persistAnonymousID:(NSString *)anonymousID +{ + NSDictionary *data = @{ FBSDK_BASICUTILITY_ANONYMOUSID_KEY : anonymousID }; + NSString *content = [self JSONStringForObject:data error:NULL invalidObjectHandler:NULL]; + + [content writeToFile:[[self class] persistenceFilePath:FBSDK_BASICUTILITY_ANONYMOUSIDFILENAME] + atomically:YES + encoding:NSASCIIStringEncoding + error:nil]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.h new file mode 100644 index 0000000..6e36ed0 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(TypeUtility) +@interface FBSDKTypeUtility : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (NSArray *)arrayValue:(id)object; ++ (BOOL)boolValue:(id)object; ++ (NSDictionary *)dictionaryValue:(id)object; ++ (NSInteger)integerValue:(id)object; ++ (id)objectValue:(id)object; ++ (NSString *)stringValue:(id)object; ++ (NSTimeInterval)timeIntervalValue:(id)object; ++ (NSUInteger)unsignedIntegerValue:(id)object; ++ (NSURL *)URLValue:(id)object; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.m new file mode 100644 index 0000000..baf61c3 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.m @@ -0,0 +1,121 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKTypeUtility.h" + +@implementation FBSDKTypeUtility + +#pragma mark - Class Methods + ++ (NSArray *)arrayValue:(id)object +{ + return (NSArray *)[self _objectValue:object ofClass:[NSArray class]]; +} + ++ (BOOL)boolValue:(id)object +{ + if ([object isKindOfClass:[NSNumber class]]) { + // @0 or @NO returns NO, otherwise YES + return ((NSNumber *)object).boolValue; + } else if ([object isKindOfClass:[NSString class]]) { + // Returns YES on encountering one of "Y", "y", "T", "t", or a digit 1-9, otherwise NO + return ((NSString *)object).boolValue; + } else { + return ([self objectValue:object] != nil); + } +} + ++ (NSDictionary *)dictionaryValue:(id)object +{ + return (NSDictionary *)[self _objectValue:object ofClass:[NSDictionary class]]; +} + ++ (NSInteger)integerValue:(id)object +{ + if ([object isKindOfClass:[NSNumber class]]) { + return ((NSNumber *)object).integerValue; + } else if ([object isKindOfClass:[NSString class]]) { + return ((NSString *)object).integerValue; + } else { + return 0; + } +} + ++ (id)objectValue:(id)object +{ + return ([object isKindOfClass:[NSNull class]] ? nil : object); +} + ++ (NSString *)stringValue:(id)object +{ + if ([object isKindOfClass:[NSString class]]) { + return (NSString *)object; + } else if ([object isKindOfClass:[NSNumber class]]) { + return ((NSNumber *)object).stringValue; + } else if ([object isKindOfClass:[NSURL class]]) { + return ((NSURL *)object).absoluteString; + } else { + return nil; + } +} + ++ (NSTimeInterval)timeIntervalValue:(id)object +{ + if ([object isKindOfClass:[NSNumber class]]) { + return ((NSNumber *)object).doubleValue; + } else if ([object isKindOfClass:[NSString class]]) { + return ((NSString *)object).doubleValue; + } else { + return 0; + } +} + ++ (NSUInteger)unsignedIntegerValue:(id)object +{ + if ([object isKindOfClass:[NSNumber class]]) { + return ((NSNumber *)object).unsignedIntegerValue; + } else { + // there is no direct support for strings containing unsigned values > NSIntegerMax - not worth writing ourselves + // right now, so just cap unsigned values at NSIntegerMax until we have a need for larger + NSInteger integerValue = [self integerValue:object]; + if (integerValue < 0) { + integerValue = 0; + } + return (NSUInteger)integerValue; + } +} + ++ (NSURL *)URLValue:(id)object +{ + if ([object isKindOfClass:[NSURL class]]) { + return (NSURL *)object; + } else if ([object isKindOfClass:[NSString class]]) { + return [NSURL URLWithString:(NSString *)object]; + } else { + return nil; + } +} + +#pragma mark - Helper Methods + ++ (id)_objectValue:(id)object ofClass:(Class)expectedClass +{ + return ([object isKindOfClass:expectedClass] ? object : nil); +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.h new file mode 100644 index 0000000..34707dc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.h @@ -0,0 +1,45 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKURLSessionTask.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKURLSession : NSObject + +@property (atomic, strong, nullable) NSURLSession *session; +@property (nonatomic, weak, nullable) id delegate; +@property (nonatomic, retain, nullable) NSOperationQueue *delegateQueue; + +- (instancetype)initWithDelegate:(id)delegate + delegateQueue:(NSOperationQueue *)delegateQueue; + +- (void)executeURLRequest:(NSURLRequest *)request + completionHandler:(FBSDKURLSessionTaskBlock)handler; + +- (void)updateSessionWithBlock:(dispatch_block_t)block; + +- (void)invalidateAndCancel; + +- (BOOL)valid; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.m new file mode 100644 index 0000000..cde4f15 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.m @@ -0,0 +1,71 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKURLSession.h" + +#import "FBSDKBasicUtility.h" +#import "FBSDKURLSessionTask.h" + +@implementation FBSDKURLSession + +- (instancetype)initWithDelegate:(id)delegate + delegateQueue:(NSOperationQueue *)queue +{ + if ((self = [super init])) { + self.delegate = delegate; + self.delegateQueue = queue; + } + return self; +} + +- (void)executeURLRequest:(NSURLRequest *)request + completionHandler:(FBSDKURLSessionTaskBlock)handler +{ + if (!self.valid) { + [self updateSessionWithBlock:^{ + FBSDKURLSessionTask *task = [[FBSDKURLSessionTask alloc] initWithRequest:request fromSession:self.session completionHandler:handler]; + [task start]; + }]; + } else { + FBSDKURLSessionTask *task = [[FBSDKURLSessionTask alloc] initWithRequest:request fromSession:self.session completionHandler:handler]; + [task start]; + } +} + +- (void)updateSessionWithBlock:(dispatch_block_t)block +{ + if (!self.valid) { + self.session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] + delegate:_delegate + delegateQueue:_delegateQueue]; + } + block(); +} + +- (void)invalidateAndCancel +{ + [self.session invalidateAndCancel]; + self.session = nil; +} + +- (BOOL)valid +{ + return self.session != nil; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.h new file mode 100644 index 0000000..252d8b4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.h @@ -0,0 +1,45 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +typedef void (^FBSDKURLSessionTaskBlock)(NSData *responseData, + NSURLResponse *response, + NSError *error) +NS_SWIFT_NAME(URLSessionTaskBlock); + +NS_SWIFT_NAME(URLSessionTask) +@interface FBSDKURLSessionTask : NSObject + +@property (nonatomic, strong) NSURLSessionTask *task; +@property (atomic, readonly) NSURLSessionTaskState state; +@property (nonatomic, strong, readonly) NSDate *requestStartDate; +@property (nonatomic, copy) FBSDKURLSessionTaskBlock handler; +@property (nonatomic, assign) uint64_t requestStartTime; +@property (nonatomic, assign) NSUInteger loggerSerialNumber; + ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithRequest:(NSURLRequest *)request + fromSession:(NSURLSession *)session + completionHandler:(FBSDKURLSessionTaskBlock)handler; + +- (void)start; +- (void)cancel; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.m new file mode 100644 index 0000000..35f404a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.m @@ -0,0 +1,60 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKURLSessionTask.h" + +@implementation FBSDKURLSessionTask + +- (instancetype)init +{ + if ((self = [super init])) { + _requestStartDate = [NSDate date]; + } + return self; +} + +- (instancetype)initWithRequest:(NSURLRequest *)request + fromSession:(NSURLSession *)session + completionHandler:(FBSDKURLSessionTaskBlock)handler +{ + if ((self = [self init])) { + self.requestStartTime = (uint64_t)([self.requestStartDate timeIntervalSince1970] * 1000); + self.task = [session dataTaskWithRequest:request completionHandler:handler]; + } + return self; +} + +- (NSURLSessionTaskState)state +{ + return self.task.state; +} + +#pragma mark - Task State + +- (void)start +{ + [self.task resume]; +} + +- (void)cancel +{ + [self.task cancel]; + self.handler = nil; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h new file mode 100644 index 0000000..82a9b3d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h @@ -0,0 +1,274 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKCopying.h" + +#ifdef BUCK +#import +#else +#import "FBSDKGraphRequestConnection.h" +#endif + +NS_ASSUME_NONNULL_BEGIN + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +/** + Notification indicating that the `currentAccessToken` has changed. + + the userInfo dictionary of the notification will contain keys + `FBSDKAccessTokenChangeOldKey` and + `FBSDKAccessTokenChangeNewKey`. + */ +FOUNDATION_EXPORT NSNotificationName const FBSDKAccessTokenDidChangeNotification +NS_SWIFT_NAME(AccessTokenDidChange); + +#else + +/** + Notification indicating that the `currentAccessToken` has changed. + + the userInfo dictionary of the notification will contain keys + `FBSDKAccessTokenChangeOldKey` and + `FBSDKAccessTokenChangeNewKey`. + */ +FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidChangeNotification +NS_SWIFT_NAME(AccessTokenDidChangeNotification); +#endif + +/** + A key in the notification's userInfo that will be set + if and only if the user ID changed between the old and new tokens. + + Token refreshes can occur automatically with the SDK + which do not change the user. If you're only interested in user + changes (such as logging out), you should check for the existence + of this key. The value is a NSNumber with a boolValue. + + On a fresh start of the app where the SDK reads in the cached value + of an access token, this key will also exist since the access token + is moving from a null state (no user) to a non-null state (user). + */ +FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidChangeUserIDKey +NS_SWIFT_NAME(AccessTokenDidChangeUserIDKey); + +/* + key in notification's userInfo object for getting the old token. + + If there was no old token, the key will not be present. + */ +FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeOldKey +NS_SWIFT_NAME(AccessTokenChangeOldKey); + +/* + key in notification's userInfo object for getting the new token. + + If there is no new token, the key will not be present. + */ +FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeNewKey +NS_SWIFT_NAME(AccessTokenChangeNewKey); + +/* + A key in the notification's userInfo that will be set + if and only if the token has expired. + */ +FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidExpireKey +NS_SWIFT_NAME(AccessTokenDidExpireKey); + + +/** + Represents an immutable access token for using Facebook services. + */ +NS_SWIFT_NAME(AccessToken) +@interface FBSDKAccessToken : NSObject + + +/** + The "global" access token that represents the currently logged in user. + + The `currentAccessToken` is a convenient representation of the token of the + current user and is used by other SDK components (like `FBSDKLoginManager`). + */ +@property (class, nonatomic, copy, nullable) FBSDKAccessToken *currentAccessToken; + +/** + Returns YES if currentAccessToken is not nil AND currentAccessToken is not expired + + */ +@property (class, nonatomic, assign, readonly, getter=isCurrentAccessTokenActive) BOOL currentAccessTokenIsActive; + +/** + Returns the app ID. + */ +@property (nonatomic, copy, readonly) NSString *appID; + +/** + Returns the expiration date for data access + */ +@property (nonatomic, copy, readonly) NSDate *dataAccessExpirationDate; + +/** + Returns the known declined permissions. + */ +@property (nonatomic, copy, readonly) NSSet *declinedPermissions +NS_REFINED_FOR_SWIFT; + +/** + Returns the known declined permissions. + */ +@property (nonatomic, copy, readonly) NSSet *expiredPermissions +NS_REFINED_FOR_SWIFT; + +/** + Returns the expiration date. + */ +@property (nonatomic, copy, readonly) NSDate *expirationDate; + +/** + Returns the known granted permissions. + */ +@property (nonatomic, copy, readonly) NSSet *permissions +NS_REFINED_FOR_SWIFT; + +/** + Returns the date the token was last refreshed. +*/ +@property (nonatomic, copy, readonly) NSDate *refreshDate; + +/** + Returns the opaque token string. + */ +@property (nonatomic, copy, readonly) NSString *tokenString; + +/** + Returns the user ID. + */ +@property (nonatomic, copy, readonly) NSString *userID; + +/** + The graph domain where this access token is valid. + */ +@property (nonatomic, copy, readonly) NSString *graphDomain; + +/** + Returns whether the access token is expired by checking its expirationDate property + */ +@property (readonly, assign, nonatomic, getter=isExpired) BOOL expired; + +/** + Returns whether user data access is still active for the given access token + */ +@property (readonly, assign, nonatomic, getter=isDataAccessExpired) BOOL dataAccessExpired; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Initializes a new instance. + @param tokenString the opaque token string. + @param permissions the granted permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param declinedPermissions the declined permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param expiredPermissions the expired permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param appID the app ID. + @param userID the user ID. + @param expirationDate the optional expiration date (defaults to distantFuture). + @param refreshDate the optional date the token was last refreshed (defaults to today). + @param dataAccessExpirationDate the date which data access will expire for the given user + (defaults to distantFuture). + + This initializer should only be used for advanced apps that + manage tokens explicitly. Typical login flows only need to use `FBSDKLoginManager` + along with `+currentAccessToken`. + */ +- (instancetype)initWithTokenString:(NSString *)tokenString + permissions:(NSArray *)permissions + declinedPermissions:(NSArray *)declinedPermissions + expiredPermissions:(NSArray *)expiredPermissions + appID:(NSString *)appID + userID:(NSString *)userID + expirationDate:(nullable NSDate *)expirationDate + refreshDate:(nullable NSDate *)refreshDate + dataAccessExpirationDate:(nullable NSDate *)dataAccessExpirationDate +NS_DESIGNATED_INITIALIZER; + +/** + Convenience initializer. + @param tokenString the opaque token string. + @param permissions the granted permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param declinedPermissions the declined permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param expiredPermissions the expired permissions. Note this is converted to NSSet and is only + an NSArray for the convenience of literal syntax. + @param appID the app ID. + @param userID the user ID. + @param expirationDate the optional expiration date (defaults to distantFuture). + @param refreshDate the optional date the token was last refreshed (defaults to today). + @param dataAccessExpirationDate the date which data access will expire for the given user + (defaults to distantFuture). + @param graphDomain the domain this access token can be used in. + + This initializer should only be used for advanced apps that + manage tokens explicitly. Typical login flows only need to use `FBSDKLoginManager` + along with `+currentAccessToken`. + */ +- (instancetype)initWithTokenString:(NSString *)tokenString + permissions:(NSArray *)permissions + declinedPermissions:(NSArray *)declinedPermissions + expiredPermissions:(NSArray *)expiredPermissions + appID:(NSString *)appID + userID:(NSString *)userID + expirationDate:(nullable NSDate *)expirationDate + refreshDate:(nullable NSDate *)refreshDate + dataAccessExpirationDate:(nullable NSDate *)dataAccessExpirationDate + graphDomain:(nullable NSString *)graphDomain; + +/** + Convenience getter to determine if a permission has been granted + @param permission The permission to check. + */ +- (BOOL)hasGranted:(NSString *)permission +NS_SWIFT_NAME(hasGranted(permission:)); + +/** + Compares the receiver to another FBSDKAccessToken + @param token The other token + @return YES if the receiver's values are equal to the other token's values; otherwise NO + */ +- (BOOL)isEqualToAccessToken:(FBSDKAccessToken *)token; + +/** + Refresh the current access token's permission state and extend the token's expiration date, + if possible. + @param completionHandler an optional callback handler that can surface any errors related to permission refreshing. + + On a successful refresh, the currentAccessToken will be updated so you typically only need to + observe the `FBSDKAccessTokenDidChangeNotification` notification. + + If a token is already expired, it cannot be refreshed. + */ ++ (void)refreshCurrentAccessToken:(nullable FBSDKGraphRequestBlock)completionHandler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m new file mode 100644 index 0000000..f60249c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m @@ -0,0 +1,277 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAccessToken.h" + +#import "FBSDKGraphRequestPiggybackManager.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKMath.h" +#import "FBSDKSettings+Internal.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSNotificationName const FBSDKAccessTokenDidChangeNotification = @"com.facebook.sdk.FBSDKAccessTokenData.FBSDKAccessTokenDidChangeNotification"; + +#else + +NSString *const FBSDKAccessTokenDidChangeNotification = @"com.facebook.sdk.FBSDKAccessTokenData.FBSDKAccessTokenDidChangeNotification"; + +#endif + +NSString *const FBSDKAccessTokenDidChangeUserIDKey = @"FBSDKAccessTokenDidChangeUserIDKey"; +NSString *const FBSDKAccessTokenChangeNewKey = @"FBSDKAccessToken"; +NSString *const FBSDKAccessTokenChangeOldKey = @"FBSDKAccessTokenOld"; +NSString *const FBSDKAccessTokenDidExpireKey = @"FBSDKAccessTokenDidExpireKey"; + +static FBSDKAccessToken *g_currentAccessToken; + +#define FBSDK_ACCESSTOKEN_TOKENSTRING_KEY @"tokenString" +#define FBSDK_ACCESSTOKEN_PERMISSIONS_KEY @"permissions" +#define FBSDK_ACCESSTOKEN_DECLINEDPERMISSIONS_KEY @"declinedPermissions" +#define FBSDK_ACCESSTOKEN_EXPIREDPERMISSIONS_KEY @"expiredPermissions" +#define FBSDK_ACCESSTOKEN_APPID_KEY @"appID" +#define FBSDK_ACCESSTOKEN_USERID_KEY @"userID" +#define FBSDK_ACCESSTOKEN_REFRESHDATE_KEY @"refreshDate" +#define FBSDK_ACCESSTOKEN_EXPIRATIONDATE_KEY @"expirationDate" +#define FBSDK_ACCESSTOKEN_DATA_EXPIRATIONDATE_KEY @"dataAccessExpirationDate" +#define FBSDK_ACCESSTOKEN_GRAPH_DOMAIN_KEY @"graphDomain" + +@implementation FBSDKAccessToken + +- (instancetype)initWithTokenString:(NSString *)tokenString + permissions:(NSArray *)permissions + declinedPermissions:(NSArray *)declinedPermissions + expiredPermissions:(NSArray *)expiredPermissions + appID:(NSString *)appID + userID:(NSString *)userID + expirationDate:(NSDate *)expirationDate + refreshDate:(NSDate *)refreshDate + dataAccessExpirationDate:(NSDate *)dataAccessExpirationDate +{ + if ((self = [super init])) { + _tokenString = [tokenString copy]; + _permissions = [NSSet setWithArray:permissions]; + _declinedPermissions = [NSSet setWithArray:declinedPermissions]; + _expiredPermissions = [NSSet setWithArray:expiredPermissions]; + _appID = [appID copy]; + _userID = [userID copy]; + _expirationDate = [expirationDate copy] ?: [NSDate distantFuture]; + _refreshDate = [refreshDate copy] ?: [NSDate date]; + _dataAccessExpirationDate = [dataAccessExpirationDate copy] ?: [NSDate distantFuture]; + } + return self; +} + +- (instancetype)initWithTokenString:(NSString *)tokenString + permissions:(NSArray *)permissions + declinedPermissions:(NSArray *)declinedPermissions + expiredPermissions:(NSArray *)expiredPermissions + appID:(NSString *)appID + userID:(NSString *)userID + expirationDate:(NSDate *)expirationDate + refreshDate:(NSDate *)refreshDate + dataAccessExpirationDate:(NSDate *)dataAccessExpirationDate + graphDomain:(NSString *)graphDomain +{ + FBSDKAccessToken *accessToken = + [self + initWithTokenString:tokenString + permissions:permissions + declinedPermissions:declinedPermissions + expiredPermissions:expiredPermissions + appID:appID + userID:userID + expirationDate:expirationDate + refreshDate:refreshDate + dataAccessExpirationDate:dataAccessExpirationDate]; + + if (accessToken != nil) { + accessToken->_graphDomain = [graphDomain copy]; + } + + return accessToken; +} + +- (BOOL)hasGranted:(NSString *)permission +{ + return [self.permissions containsObject:permission]; + +} + +- (BOOL)isDataAccessExpired +{ + return [self.dataAccessExpirationDate compare:NSDate.date] == NSOrderedAscending; +} + +- (BOOL)isExpired +{ + return [self.expirationDate compare:NSDate.date] == NSOrderedAscending; +} + ++ (FBSDKAccessToken *)currentAccessToken +{ + return g_currentAccessToken; +} + ++ (void)setCurrentAccessToken:(FBSDKAccessToken *)token +{ + if (token != g_currentAccessToken) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; + [FBSDKBasicUtility dictionary:userInfo setObject:token forKey:FBSDKAccessTokenChangeNewKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:g_currentAccessToken forKey:FBSDKAccessTokenChangeOldKey]; + // We set this flag also when the current Access Token was not valid, since there might be legacy code relying on it + if (![g_currentAccessToken.userID isEqualToString:token.userID] || !self.isCurrentAccessTokenActive) { + userInfo[FBSDKAccessTokenDidChangeUserIDKey] = @YES; + } + + g_currentAccessToken = token; + + // Only need to keep current session in web view for the case when token is current + // When token is abandoned cookies must to be cleaned up immediately + if (token == nil) { + [FBSDKInternalUtility deleteFacebookCookies]; + } + + [FBSDKSettings accessTokenCache].accessToken = token; + [[NSNotificationCenter defaultCenter] postNotificationName:FBSDKAccessTokenDidChangeNotification + object:[self class] + userInfo:userInfo]; + } +} + ++ (BOOL)isCurrentAccessTokenActive +{ + FBSDKAccessToken *currentAccessToken = [self currentAccessToken]; + return currentAccessToken != nil && !currentAccessToken.isExpired; +} + ++ (void)refreshCurrentAccessToken:(FBSDKGraphRequestBlock)completionHandler +{ + if ([FBSDKAccessToken currentAccessToken]) { + FBSDKGraphRequestConnection *connection = [[FBSDKGraphRequestConnection alloc] init]; + [FBSDKGraphRequestPiggybackManager addRefreshPiggyback:connection permissionHandler:completionHandler]; + [connection start]; + } else if (completionHandler) { + completionHandler(nil, nil, [FBSDKError + errorWithCode:FBSDKErrorAccessTokenRequired + message:@"No current access token to refresh"]); + } +} + +#pragma mark - Equality + +- (NSUInteger)hash +{ + NSUInteger subhashes[] = { + self.tokenString.hash, + self.permissions.hash, + self.declinedPermissions.hash, + self.expiredPermissions.hash, + self.appID.hash, + self.userID.hash, + self.refreshDate.hash, + self.expirationDate.hash, + self.dataAccessExpirationDate.hash, + self.graphDomain.hash + }; + return [FBSDKMath hashWithIntegerArray:subhashes count:sizeof(subhashes) / sizeof(subhashes[0])]; +} + +- (BOOL)isEqual:(id)object +{ + if (self == object) { + return YES; + } + if (![object isKindOfClass:[FBSDKAccessToken class]]) { + return NO; + } + return [self isEqualToAccessToken:(FBSDKAccessToken *)object]; +} + +- (BOOL)isEqualToAccessToken:(FBSDKAccessToken *)token +{ + return (token && + [FBSDKInternalUtility object:self.tokenString isEqualToObject:token.tokenString] && + [FBSDKInternalUtility object:self.permissions isEqualToObject:token.permissions] && + [FBSDKInternalUtility object:self.declinedPermissions isEqualToObject:token.declinedPermissions] && + [FBSDKInternalUtility object:self.expiredPermissions isEqualToObject:token.expiredPermissions] && + [FBSDKInternalUtility object:self.appID isEqualToObject:token.appID] && + [FBSDKInternalUtility object:self.userID isEqualToObject:token.userID] && + [FBSDKInternalUtility object:self.refreshDate isEqualToObject:token.refreshDate] && + [FBSDKInternalUtility object:self.expirationDate isEqualToObject:token.expirationDate] && + [FBSDKInternalUtility object:self.dataAccessExpirationDate isEqualToObject:token.dataAccessExpirationDate] && + [FBSDKInternalUtility object:self.graphDomain isEqualToObject:token.graphDomain]); +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + // we're immutable. + return self; +} + +#pragma mark NSCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (instancetype)initWithCoder:(NSCoder *)decoder +{ + NSString *appID = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ACCESSTOKEN_APPID_KEY]; + NSSet *declinedPermissions = [decoder decodeObjectOfClass:[NSSet class] forKey:FBSDK_ACCESSTOKEN_DECLINEDPERMISSIONS_KEY]; + NSSet *expiredPermissions = [decoder decodeObjectOfClass:[NSSet class] forKey:FBSDK_ACCESSTOKEN_EXPIREDPERMISSIONS_KEY]; + NSSet *permissions = [decoder decodeObjectOfClass:[NSSet class] forKey:FBSDK_ACCESSTOKEN_PERMISSIONS_KEY]; + NSString *tokenString = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ACCESSTOKEN_TOKENSTRING_KEY]; + NSString *userID = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ACCESSTOKEN_USERID_KEY]; + NSDate *refreshDate = [decoder decodeObjectOfClass:[NSDate class] forKey:FBSDK_ACCESSTOKEN_REFRESHDATE_KEY]; + NSDate *expirationDate = [decoder decodeObjectOfClass:[NSDate class] forKey:FBSDK_ACCESSTOKEN_EXPIRATIONDATE_KEY]; + NSDate *dataAccessExpirationDate = [decoder decodeObjectOfClass:[NSDate class] forKey:FBSDK_ACCESSTOKEN_DATA_EXPIRATIONDATE_KEY]; + NSString *graphDomain = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ACCESSTOKEN_GRAPH_DOMAIN_KEY]; + + return + [self + initWithTokenString:tokenString + permissions:permissions.allObjects + declinedPermissions:declinedPermissions.allObjects + expiredPermissions:expiredPermissions.allObjects + appID:appID + userID:userID + expirationDate:expirationDate + refreshDate:refreshDate + dataAccessExpirationDate:dataAccessExpirationDate + graphDomain:graphDomain]; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:self.appID forKey:FBSDK_ACCESSTOKEN_APPID_KEY]; + [encoder encodeObject:self.declinedPermissions forKey:FBSDK_ACCESSTOKEN_DECLINEDPERMISSIONS_KEY]; + [encoder encodeObject:self.expiredPermissions forKey:FBSDK_ACCESSTOKEN_EXPIREDPERMISSIONS_KEY]; + [encoder encodeObject:self.permissions forKey:FBSDK_ACCESSTOKEN_PERMISSIONS_KEY]; + [encoder encodeObject:self.tokenString forKey:FBSDK_ACCESSTOKEN_TOKENSTRING_KEY]; + [encoder encodeObject:self.userID forKey:FBSDK_ACCESSTOKEN_USERID_KEY]; + [encoder encodeObject:self.expirationDate forKey:FBSDK_ACCESSTOKEN_EXPIRATIONDATE_KEY]; + [encoder encodeObject:self.refreshDate forKey:FBSDK_ACCESSTOKEN_REFRESHDATE_KEY]; + [encoder encodeObject:self.dataAccessExpirationDate forKey:FBSDK_ACCESSTOKEN_DATA_EXPIRATIONDATE_KEY]; + [encoder encodeObject:self.graphDomain forKey:FBSDK_ACCESSTOKEN_GRAPH_DOMAIN_KEY]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h new file mode 100644 index 0000000..f090480 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h @@ -0,0 +1,112 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + + The FBSDKApplicationDelegate is designed to post process the results from Facebook Login + or Facebook Dialogs (or any action that requires switching over to the native Facebook + app or Safari). + + + + The methods in this class are designed to mirror those in UIApplicationDelegate, and you + should call them in the respective methods in your AppDelegate implementation. + */ +NS_SWIFT_NAME(ApplicationDelegate) +@interface FBSDKApplicationDelegate : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Gets the singleton instance. + */ +@property (class, nonatomic, readonly, strong) FBSDKApplicationDelegate *sharedInstance +NS_SWIFT_NAME(shared); + +/** + Call this method from the [UIApplicationDelegate application:openURL:sourceApplication:annotation:] method + of the AppDelegate for your app. It should be invoked for the proper processing of responses during interaction + with the native Facebook app or Safari as part of SSO authorization flow or Facebook dialogs. + + @param application The application as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:]. + + @param url The URL as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:]. + + @param sourceApplication The sourceApplication as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:]. + + @param annotation The annotation as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:]. + + @return YES if the url was intended for the Facebook SDK, NO if not. + */ +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(nullable NSString *)sourceApplication + annotation:(nullable id)annotation; + +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_9_0 +/** + Call this method from the [UIApplicationDelegate application:openURL:options:] method + of the AppDelegate for your app. It should be invoked for the proper processing of responses during interaction + with the native Facebook app or Safari as part of SSO authorization flow or Facebook dialogs. + + @param application The application as passed to [UIApplicationDelegate application:openURL:options:]. + + @param url The URL as passed to [UIApplicationDelegate application:openURL:options:]. + + @param options The options dictionary as passed to [UIApplicationDelegate application:openURL:options:]. + + @return YES if the url was intended for the Facebook SDK, NO if not. + */ +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + options:(NSDictionary *)options; +#endif + +/** + Call this method from the [UIApplicationDelegate application:didFinishLaunchingWithOptions:] method + of the AppDelegate for your app. It should be invoked for the proper use of the Facebook SDK. + As part of SDK initialization basic auto logging of app events will occur, this can be +controlled via 'FacebookAutoLogAppEventsEnabled' key in the project info plist file. + + @param application The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. + + @param launchOptions The launchOptions as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. + + @return YES if the url was intended for the Facebook SDK, NO if not. + */ +- (BOOL)application:(UIApplication *)application +didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions; + +/** + Call this method to manually initialize SDK. + As we initialize SDK automatically, this should only be called when auto initialization is disabled, this can be + controlled via 'FacebookAutoInitEnabled' key in the project info plist file. + + @param launchOptions The launchOptions as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. + Could be nil if you don't call this function from [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. + */ ++ (void)initializeSDK:(nullable NSDictionary *)launchOptions; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m new file mode 100644 index 0000000..3e00da6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m @@ -0,0 +1,428 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKApplicationDelegate.h" +#import "FBSDKApplicationDelegate+Internal.h" + +#import + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKConstants.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKError.h" +#import "FBSDKEventDeactivationManager.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKGateKeeperManager.h" +#import "FBSDKInstrumentManager.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfigurationManager.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKTimeSpentData.h" + +#if !TARGET_OS_TV +#import "FBSDKMeasurementEventListener.h" +#import "FBSDKContainerViewController.h" +#import "FBSDKProfile+Internal.h" +#endif + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSNotificationName const FBSDKApplicationDidBecomeActiveNotification = @"com.facebook.sdk.FBSDKApplicationDidBecomeActiveNotification"; + +#else + +NSString *const FBSDKApplicationDidBecomeActiveNotification = @"com.facebook.sdk.FBSDKApplicationDidBecomeActiveNotification"; + +#endif + +static NSString *const FBSDKAppLinkInboundEvent = @"fb_al_inbound"; +static NSString *const FBSDKKitsBitmaskKey = @"com.facebook.sdk.kits.bitmask"; +static BOOL g_isSDKInitialized = NO; +static UIApplicationState _applicationState; + +@implementation FBSDKApplicationDelegate +{ + NSHashTable> *_applicationObservers; + BOOL _isAppLaunched; +} + +#pragma mark - Class Methods + ++ (void)load +{ + if ([FBSDKSettings isAutoInitEnabled]) { + // when the app becomes active by any means, kick off the initialization. + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(initializeWithLaunchData:) + name:UIApplicationDidFinishLaunchingNotification + object:nil]; + } +} + +// Initialize SDK listeners +// Don't call this function in any place else. It should only be called when the class is loaded. ++ (void)initializeWithLaunchData:(NSNotification *)note +{ + [self initializeSDK:note.userInfo]; + // Remove the observer + [[NSNotificationCenter defaultCenter] removeObserver:self + name:UIApplicationDidFinishLaunchingNotification + object:nil]; +} + ++ (void)initializeSDK:(NSDictionary *)launchOptions +{ + if (g_isSDKInitialized) { + // Do nothing if initialized already + return; + } + + g_isSDKInitialized = YES; + + FBSDKApplicationDelegate *delegate = [self sharedInstance]; + + NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter]; + [defaultCenter addObserver:delegate selector:@selector(applicationDidEnterBackground:) name:UIApplicationDidEnterBackgroundNotification object:nil]; + [defaultCenter addObserver:delegate selector:@selector(applicationDidBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil]; + + [[FBSDKAppEvents singleton] registerNotifications]; + + [delegate application:[UIApplication sharedApplication] didFinishLaunchingWithOptions:launchOptions]; + + [FBSDKFeatureManager checkFeature:FBSDKFeatureInstrument completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKInstrumentManager enable]; + } + }]; + + [FBSDKFeatureManager checkFeature:FBSDKFeatureRestrictiveDataFiltering completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKRestrictiveDataFilterManager enable]; + } + }]; + + [FBSDKFeatureManager checkFeature:FBSDKFeatureEventDeactivation completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKEventDeactivationManager enable]; + } + }]; + +#if !TARGET_OS_TV + // Register Listener for App Link measurement events + [FBSDKMeasurementEventListener defaultListener]; + [delegate _logIfAutoAppLinkEnabled]; +#endif + // Set the SourceApplication for time spent data. This is not going to update the value if the app has already launched. + [FBSDKTimeSpentData setSourceApplication:launchOptions[UIApplicationLaunchOptionsSourceApplicationKey] + openURL:launchOptions[UIApplicationLaunchOptionsURLKey]]; + // Register on UIApplicationDidEnterBackgroundNotification events to reset source application data when app backgrounds. + [FBSDKTimeSpentData registerAutoResetSourceApplication]; + + [FBSDKInternalUtility validateFacebookReservedURLSchemes]; +} + ++ (FBSDKApplicationDelegate *)sharedInstance +{ + static FBSDKApplicationDelegate *_sharedInstance; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _sharedInstance = [[self alloc] init]; + }); + return _sharedInstance; +} + +#pragma mark - Object Lifecycle + +- (instancetype)init +{ + if ((self = [super init]) != nil) { + _applicationObservers = [[NSHashTable alloc] init]; + } + return self; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - UIApplicationDelegate + +#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_9_0 +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + options:(NSDictionary *)options +{ + if (@available(iOS 9.0, *)) { + return [self application:application + openURL:url + sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey] + annotation:options[UIApplicationOpenURLOptionsAnnotationKey]]; + } + + return NO; +} +#endif + +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(NSString *)sourceApplication + annotation:(id)annotation +{ + if (sourceApplication != nil && ![sourceApplication isKindOfClass:[NSString class]]) { + @throw [NSException exceptionWithName:NSInvalidArgumentException + reason:@"Expected 'sourceApplication' to be NSString. Please verify you are passing in 'sourceApplication' from your app delegate (not the UIApplication* parameter). If your app delegate implements iOS 9's application:openURL:options:, you should pass in options[UIApplicationOpenURLOptionsSourceApplicationKey]. " + userInfo:nil]; + } + [FBSDKTimeSpentData setSourceApplication:sourceApplication openURL:url]; + + BOOL handled = NO; + NSArray> *observers = [_applicationObservers allObjects]; + for (id observer in observers) { + if ([observer respondsToSelector:@selector(application:openURL:sourceApplication:annotation:)]) { + if ([observer application:application + openURL:url + sourceApplication:sourceApplication + annotation:annotation]) { + handled = YES; + } + } + } + + if (handled) { + return YES; + } + + [self _logIfAppLinkEvent:url]; + + return NO; +} + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + if ([self isAppLaunched]) { + return NO; + } + + _isAppLaunched = YES; + FBSDKAccessToken *cachedToken = [FBSDKSettings accessTokenCache].accessToken; + [FBSDKAccessToken setCurrentAccessToken:cachedToken]; + // fetch app settings + [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:NULL]; + + if (FBSDKSettings.isAutoLogAppEventsEnabled) { + [self _logSDKInitialize]; + } +#if !TARGET_OS_TV + FBSDKProfile *cachedProfile = [FBSDKProfile fetchCachedProfile]; + [FBSDKProfile setCurrentProfile:cachedProfile]; +#endif + NSArray> *observers = [_applicationObservers allObjects]; + BOOL handled = NO; + for (id observer in observers) { + if ([observer respondsToSelector:@selector(application:didFinishLaunchingWithOptions:)]) { + if ([observer application:application didFinishLaunchingWithOptions:launchOptions]) { + handled = YES; + } + } + } + + return handled; +} + +- (void)applicationDidEnterBackground:(NSNotification *)notification +{ + _applicationState = UIApplicationStateBackground; + NSArray> *observers = [_applicationObservers allObjects]; + for (id observer in observers) { + if ([observer respondsToSelector:@selector(applicationDidEnterBackground:)]) { + [observer applicationDidEnterBackground:notification.object]; + } + } +} + +- (void)applicationDidBecomeActive:(NSNotification *)notification +{ + _applicationState = UIApplicationStateActive; + // Auto log basic events in case autoLogAppEventsEnabled is set + if (FBSDKSettings.isAutoLogAppEventsEnabled) { + [FBSDKAppEvents activateApp]; + } + + NSArray> *observers = [_applicationObservers copy]; + for (id observer in observers) { + if ([observer respondsToSelector:@selector(applicationDidBecomeActive:)]) { + [observer applicationDidBecomeActive:notification.object]; + } + } +} + +#pragma mark - Internal Methods + +#pragma mark - FBSDKApplicationObserving + +- (void)addObserver:(id)observer +{ + if (![_applicationObservers containsObject:observer]) { + [_applicationObservers addObject:observer]; + } +} + +- (void)removeObserver:(id)observer +{ + if ([_applicationObservers containsObject:observer]) { + [_applicationObservers removeObject:observer]; + } +} + ++ (UIApplicationState)applicationState +{ + return _applicationState; +} + +#pragma mark - Helper Methods + +- (void)_logIfAppLinkEvent:(NSURL *)url +{ + if (!url) { + return; + } + NSDictionary *params = [FBSDKBasicUtility dictionaryWithQueryString:url.query]; + NSString *applinkDataString = params[@"al_applink_data"]; + if (!applinkDataString) { + return; + } + + NSDictionary *applinkData = [FBSDKBasicUtility objectForJSONString:applinkDataString error:NULL]; + if (!applinkData) { + return; + } + + NSString *targetURLString = applinkData[@"target_url"]; + NSURL *targetURL = [targetURLString isKindOfClass:[NSString class]] ? [NSURL URLWithString:targetURLString] : nil; + + NSMutableDictionary *logData = [[NSMutableDictionary alloc] init]; + [FBSDKBasicUtility dictionary:logData setObject:targetURL.absoluteString forKey:@"targetURL"]; + [FBSDKBasicUtility dictionary:logData setObject:targetURL.host forKey:@"targetURLHost"]; + + NSDictionary *refererData = applinkData[@"referer_data"]; + if (refererData) { + [FBSDKBasicUtility dictionary:logData setObject:refererData[@"target_url"] forKey:@"referralTargetURL"]; + [FBSDKBasicUtility dictionary:logData setObject:refererData[@"url"] forKey:@"referralURL"]; + [FBSDKBasicUtility dictionary:logData setObject:refererData[@"app_name"] forKey:@"referralAppName"]; + } + [FBSDKBasicUtility dictionary:logData setObject:url.absoluteString forKey:@"inputURL"]; + [FBSDKBasicUtility dictionary:logData setObject:url.scheme forKey:@"inputURLScheme"]; + + [FBSDKAppEvents logInternalEvent:FBSDKAppLinkInboundEvent + parameters:logData + isImplicitlyLogged:YES]; +} + +- (void)_logSDKInitialize +{ + NSDictionary *metaInfo = [NSDictionary dictionaryWithObjects:@[@"login_lib_included", + @"marketing_lib_included", + @"messenger_lib_included", + @"places_lib_included", + @"share_lib_included", + @"tv_lib_included"] + forKeys:@[@"FBSDKLoginManager", + @"FBSDKAutoLog", + @"FBSDKMessengerButton", + @"FBSDKPlacesManager", + @"FBSDKShareDialog", + @"FBSDKTVInterfaceFactory"]]; + + NSInteger bitmask = 0; + NSInteger bit = 0; + NSMutableDictionary *params = NSMutableDictionary.new; + params[@"core_lib_included"] = @1; + for (NSString *className in metaInfo.allKeys) { + NSString *keyName = [metaInfo objectForKey:className]; + if (objc_lookUpClass([className UTF8String])) { + params[keyName] = @1; + bitmask |= 1 << bit; + } + bit++; + } + + // Tracking if the consuming Application is using Swift + id delegate = [UIApplication sharedApplication].delegate; + NSString const *className = NSStringFromClass([delegate class]); + if ([className componentsSeparatedByString:@"."].count > 1) { + params[@"is_using_swift"] = @YES; + } + + void (^checkViewForSwift)(void) = ^void () + { + // Additional check to see if the consuming application perhaps was + // originally an objc project but is now using Swift + UIViewController *topMostViewController = [FBSDKInternalUtility topMostViewController]; + NSString const *vcClassName = NSStringFromClass([topMostViewController class]); + if ([vcClassName componentsSeparatedByString:@"."].count > 1) { + params[@"is_using_swift"] = @YES; + } + }; + + if ([NSThread isMainThread]) { + checkViewForSwift(); + } else { + dispatch_sync(dispatch_get_main_queue(), ^{ + checkViewForSwift(); + }); + } + + NSInteger existingBitmask = [[NSUserDefaults standardUserDefaults] integerForKey:FBSDKKitsBitmaskKey]; + if (existingBitmask != bitmask) { + [[NSUserDefaults standardUserDefaults] setInteger:bitmask forKey:FBSDKKitsBitmaskKey]; + [FBSDKAppEvents logInternalEvent:@"fb_sdk_initialize" + parameters:params + isImplicitlyLogged:NO]; + } +} + +- (void)_logIfAutoAppLinkEnabled +{ +#if !TARGET_OS_TV + NSNumber *enabled = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"FBSDKAutoAppLinkEnabled"]; + if (enabled.boolValue) { + NSMutableDictionary *params = [[NSMutableDictionary alloc] init]; + if (![FBSDKAppLinkUtility isMatchURLScheme:[NSString stringWithFormat:@"fb%@", [FBSDKSettings appID]]]) { + NSString *warning = @"You haven't set the Auto App Link URL scheme: fb"; + params[@"SchemeWarning"] = warning; + NSLog(@"%@", warning); + } + [FBSDKAppEvents logInternalEvent:@"fb_auto_applink" parameters:params isImplicitlyLogged:YES]; + } +#endif +} + ++ (BOOL)isSDKInitialized +{ + return [FBSDKSettings isAutoInitEnabled] || g_isSDKInitialized; +} + +// Wrapping this makes it mockable and enables testability +- (BOOL)isAppLaunched { + return _isAppLaunched; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h new file mode 100644 index 0000000..bf5f004 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + A base class for common SDK buttons. + */ +NS_SWIFT_NAME(FBButton) +@interface FBSDKButton : UIButton + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m new file mode 100644 index 0000000..10b073f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m @@ -0,0 +1,465 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKButton.h" +#import "FBSDKButton+Subclass.h" + +#import "FBSDKAccessToken.h" +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKAppEvents.h" +#import "FBSDKApplicationDelegate+Internal.h" +#import "FBSDKLogo.h" +#import "FBSDKUIUtility.h" +#import "FBSDKViewImpressionTracker.h" + +#define HEIGHT_TO_FONT_SIZE 0.47 +#define HEIGHT_TO_MARGIN 0.27 +#define HEIGHT_TO_PADDING 0.23 +#define HEIGHT_TO_TEXT_PADDING_CORRECTION 0.08 + +@implementation FBSDKButton +{ + BOOL _skipIntrinsicContentSizing; + BOOL _isExplicitlyDisabled; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithFrame:(CGRect)frame +{ + if ((self = [super initWithFrame:frame])) { + _skipIntrinsicContentSizing = YES; + [self configureButton]; + _skipIntrinsicContentSizing = NO; + } + return self; +} + +- (void)awakeFromNib +{ + [super awakeFromNib]; + _skipIntrinsicContentSizing = YES; + [self configureButton]; + _skipIntrinsicContentSizing = NO; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - Properties + +- (void)setEnabled:(BOOL)enabled +{ + _isExplicitlyDisabled = !enabled; + [self checkImplicitlyDisabled]; +} + +#pragma mark - Layout + +- (CGRect)imageRectForContentRect:(CGRect)contentRect +{ + if (self.hidden || CGRectIsEmpty(self.bounds)) { + return CGRectZero; + } + CGRect imageRect = UIEdgeInsetsInsetRect(contentRect, self.imageEdgeInsets); + CGFloat margin = [self _marginForHeight:[self _heightForContentRect:contentRect]]; + imageRect = CGRectInset(imageRect, margin, margin); + imageRect.size.width = CGRectGetHeight(imageRect); + return imageRect; +} + +- (CGSize)intrinsicContentSize +{ + if (_skipIntrinsicContentSizing) { + return CGSizeZero; + } + _skipIntrinsicContentSizing = YES; + CGSize size = [self sizeThatFits:CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX)]; + _skipIntrinsicContentSizing = NO; + return size; +} + +- (void)layoutSubviews +{ + // automatic impression tracking if the button conforms to FBSDKButtonImpressionTracking + if ([self conformsToProtocol:@protocol(FBSDKButtonImpressionTracking)]) { + NSString *eventName = ((id)self).impressionTrackingEventName; + NSString *identifier = ((id)self).impressionTrackingIdentifier; + NSDictionary *parameters = ((id)self).analyticsParameters; + if (eventName && identifier) { + FBSDKViewImpressionTracker *impressionTracker = [FBSDKViewImpressionTracker impressionTrackerWithEventName:eventName]; + [impressionTracker logImpressionWithIdentifier:identifier parameters:parameters]; + } + } + [super layoutSubviews]; +} + +- (CGSize)sizeThatFits:(CGSize)size +{ + if (self.hidden) { + return CGSizeZero; + } + CGSize normalSize = [self sizeThatFits:size title:[self titleForState:UIControlStateNormal]]; + CGSize selectedSize = [self sizeThatFits:size title:[self titleForState:UIControlStateSelected]]; + return CGSizeMake(MAX(normalSize.width, selectedSize.width), MAX(normalSize.height, selectedSize.height)); +} + +- (void)sizeToFit +{ + CGRect bounds = self.bounds; + bounds.size = [self sizeThatFits:CGSizeMake(CGFLOAT_MAX, CGFLOAT_MAX)]; + self.bounds = bounds; +} + +- (CGRect)titleRectForContentRect:(CGRect)contentRect +{ + if (self.hidden || CGRectIsEmpty(self.bounds)) { + return CGRectZero; + } + CGRect imageRect = [self imageRectForContentRect:contentRect]; + CGFloat height = [self _heightForContentRect:contentRect]; + CGFloat padding = [self _paddingForHeight:height]; + CGFloat titleX = CGRectGetMaxX(imageRect) + padding; + CGRect titleRect = CGRectMake(titleX, 0.0, CGRectGetWidth(contentRect) - titleX, CGRectGetHeight(contentRect)); + + UIEdgeInsets titleEdgeInsets = UIEdgeInsetsZero; + if (!self.layer.needsLayout) { + UILabel *titleLabel = self.titleLabel; + if (titleLabel.textAlignment == NSTextAlignmentCenter) { + // if the text is centered, we need to adjust the frame for the titleLabel based on the size of the text in order + // to keep the text centered in the button without adding extra blank space to the right when unnecessary + // 1. the text fits centered within the button without colliding with the image (imagePaddingWidth) + // 2. the text would run into the image, so adjust the insets to effectively left align it (textPaddingWidth) + CGSize titleSize = FBSDKTextSize(titleLabel.text, + titleLabel.font, + titleRect.size, + titleLabel.lineBreakMode); + CGFloat titlePaddingWidth = (CGRectGetWidth(titleRect) - titleSize.width) / 2; + CGFloat imagePaddingWidth = titleX / 2; + CGFloat inset = MIN(titlePaddingWidth, imagePaddingWidth); + titleEdgeInsets.left -= inset; + titleEdgeInsets.right += inset; + } + } + return UIEdgeInsetsInsetRect(titleRect, titleEdgeInsets); +} + +#pragma mark - Subclass Methods + +- (void)logTapEventWithEventName:(NSString *)eventName parameters:(NSDictionary *)parameters +{ + [FBSDKAppEvents logInternalEvent:eventName + parameters:parameters + isImplicitlyLogged:YES + accessToken:[FBSDKAccessToken currentAccessToken]]; +} + +- (void)checkImplicitlyDisabled +{ + BOOL enabled = !_isExplicitlyDisabled && !self.implicitlyDisabled; + BOOL currentEnabled = self.enabled; + super.enabled = enabled; + if (currentEnabled != enabled) { + [self invalidateIntrinsicContentSize]; + [self setNeedsLayout]; + } +} + +- (void)configureButton +{ + [self configureWithIcon:[self defaultIcon] + title:nil + backgroundColor:[self defaultBackgroundColor] + highlightedColor:[self defaultHighlightedColor]]; +} + +- (void)configureWithIcon:(FBSDKIcon *)icon + title:(NSString *)title + backgroundColor:(UIColor *)backgroundColor + highlightedColor:(UIColor *)highlightedColor +{ + [self _configureWithIcon:icon + title:title + backgroundColor:backgroundColor + highlightedColor:highlightedColor + selectedTitle:nil + selectedIcon:nil + selectedColor:nil + selectedHighlightedColor:nil]; +} + +- (void)configureWithIcon:(FBSDKIcon *)icon + title:(NSString *)title + backgroundColor:(UIColor *)backgroundColor + highlightedColor:(UIColor *)highlightedColor + selectedTitle:(NSString *)selectedTitle + selectedIcon:(FBSDKIcon *)selectedIcon + selectedColor:(UIColor *)selectedColor + selectedHighlightedColor:(UIColor *)selectedHighlightedColor +{ + [self _configureWithIcon:icon + title:title + backgroundColor:backgroundColor + highlightedColor:highlightedColor + selectedTitle:selectedTitle + selectedIcon:selectedIcon + selectedColor:selectedColor + selectedHighlightedColor:selectedHighlightedColor]; +} + +- (UIColor *)defaultBackgroundColor +{ + return [UIColor colorWithRed:24.0/255.0 green:119.0/255.0 blue:242.0/255.0 alpha:1.0]; +} + +- (UIColor *)defaultDisabledColor +{ + return [UIColor colorWithRed:189.0/255.0 green:193.0/255.0 blue:201.0/255.0 alpha:1.0]; +} + +- (UIFont *)defaultFont +{ + return [UIFont systemFontOfSize:14]; +} + +- (UIColor *)defaultHighlightedColor +{ + return [UIColor colorWithRed:21.0/255.0 green:105.0/255.0 blue:214.0/255.0 alpha:1.0]; +} + +- (FBSDKIcon *)defaultIcon +{ + return [[FBSDKLogo alloc] init]; +} + +- (UIColor *)defaultSelectedColor +{ + return [self defaultBackgroundColor]; +} + +- (UIColor *)highlightedContentColor +{ + return [UIColor colorWithRed:218.0/255.0 green:221.0/255.0 blue:226.0/255.0 alpha:1.0]; +} + +- (BOOL)isImplicitlyDisabled +{ + return NO; +} + +- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title +{ + UIFont *font = self.titleLabel.font; + CGFloat height = [self _heightForFont:font]; + + UIEdgeInsets contentEdgeInsets = self.contentEdgeInsets; + + CGSize constrainedContentSize = FBSDKEdgeInsetsInsetSize(size, contentEdgeInsets); + + CGSize titleSize = FBSDKTextSize(title, font, constrainedContentSize, self.titleLabel.lineBreakMode); + + CGFloat padding = [self _paddingForHeight:height]; + CGFloat textPaddingCorrection = [self _textPaddingCorrectionForHeight:height]; + CGSize contentSize = CGSizeMake(height + padding + titleSize.width - textPaddingCorrection, height); + return FBSDKEdgeInsetsOutsetSize(contentSize, contentEdgeInsets); +} + +#pragma mark - Helper Methods + +- (void)_applicationDidBecomeActiveNotification:(NSNotification *)notification +{ + [self checkImplicitlyDisabled]; +} + +- (UIImage *)_backgroundImageWithColor:(UIColor *)color cornerRadius:(CGFloat)cornerRadius scale:(CGFloat)scale +{ + CGFloat size = 1.0 + 2 * cornerRadius; + UIGraphicsBeginImageContextWithOptions(CGSizeMake(size, size), NO, scale); + CGContextRef context = UIGraphicsGetCurrentContext(); + CGContextSetFillColorWithColor(context, color.CGColor); + CGMutablePathRef path = CGPathCreateMutable(); + CGPathMoveToPoint(path, NULL, cornerRadius + 1.0, 0.0); + CGPathAddArcToPoint(path, NULL, size, 0.0, size, cornerRadius, cornerRadius); + CGPathAddLineToPoint(path, NULL, size, cornerRadius + 1.0); + CGPathAddArcToPoint(path, NULL, size, size, cornerRadius + 1.0, size, cornerRadius); + CGPathAddLineToPoint(path, NULL, cornerRadius, size); + CGPathAddArcToPoint(path, NULL, 0.0, size, 0.0, cornerRadius + 1.0, cornerRadius); + CGPathAddLineToPoint(path, NULL, 0.0, cornerRadius); + CGPathAddArcToPoint(path, NULL, 0.0, 0.0, cornerRadius, 0.0, cornerRadius); + CGPathCloseSubpath(path); + CGContextAddPath(context, path); + CGPathRelease(path); + CGContextFillPath(context); + UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); + UIGraphicsEndImageContext(); +#if TARGET_OS_TV + return [image resizableImageWithCapInsets:UIEdgeInsetsMake(cornerRadius, cornerRadius, cornerRadius, cornerRadius) + resizingMode:UIImageResizingModeStretch]; +#else + return [image stretchableImageWithLeftCapWidth:cornerRadius topCapHeight:cornerRadius]; +#endif +} + +- (void)_configureWithIcon:(FBSDKIcon *)icon + title:(NSString *)title + backgroundColor:(UIColor *)backgroundColor + highlightedColor:(UIColor *)highlightedColor + selectedTitle:(NSString *)selectedTitle + selectedIcon:(FBSDKIcon *)selectedIcon + selectedColor:(UIColor *)selectedColor + selectedHighlightedColor:(UIColor *)selectedHighlightedColor +{ + [self checkImplicitlyDisabled]; + + if (!icon) { + icon = [self defaultIcon]; + } + if (!selectedIcon) { + selectedIcon = [self defaultIcon]; + } + if (!backgroundColor) { + backgroundColor = [self defaultBackgroundColor]; + } + if (!highlightedColor) { + highlightedColor = [self defaultHighlightedColor]; + } + if (!selectedColor) { + selectedColor = [self defaultSelectedColor]; + } + if (!selectedHighlightedColor) { + selectedHighlightedColor = highlightedColor; + } + + self.adjustsImageWhenDisabled = NO; + self.adjustsImageWhenHighlighted = NO; + self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentFill; + self.contentVerticalAlignment = UIControlContentVerticalAlignmentFill; + self.tintColor = [UIColor whiteColor]; + + BOOL forceSizeToFit = CGRectIsEmpty(self.bounds); + + CGFloat scale = [UIScreen mainScreen].scale; + UIImage *backgroundImage; + + backgroundImage = [self _backgroundImageWithColor:backgroundColor cornerRadius:3.0 scale:scale]; + [self setBackgroundImage:backgroundImage forState:UIControlStateNormal]; +#if TARGET_OS_TV + [self setBackgroundImage:backgroundImage forState:UIControlStateFocused]; +#endif + + backgroundImage = [self _backgroundImageWithColor:highlightedColor cornerRadius:3.0 scale:scale]; + [self setBackgroundImage:backgroundImage forState:UIControlStateHighlighted]; + + backgroundImage = [self _backgroundImageWithColor:[self defaultDisabledColor] cornerRadius:3.0 scale:scale]; + [self setBackgroundImage:backgroundImage forState:UIControlStateDisabled]; + + if (selectedColor) { + backgroundImage = [self _backgroundImageWithColor:selectedColor cornerRadius:3.0 scale:scale]; + [self setBackgroundImage:backgroundImage forState:UIControlStateSelected]; + } + + if (selectedHighlightedColor) { + backgroundImage = [self _backgroundImageWithColor:selectedHighlightedColor cornerRadius:3.0 scale:scale]; + [self setBackgroundImage:backgroundImage forState:UIControlStateSelected | UIControlStateHighlighted]; +#if TARGET_OS_TV + [self setBackgroundImage:backgroundImage forState:UIControlStateSelected | UIControlStateFocused]; +#endif + } + + [self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; + [self setTitleColor:[self highlightedContentColor] forState: UIControlStateHighlighted | UIControlStateSelected]; + + [self setTitle:title forState:UIControlStateNormal]; +#if TARGET_OS_TV + [self setTitle:title forState:UIControlStateFocused]; +#endif + if (selectedTitle) { + [self setTitle:selectedTitle forState:UIControlStateSelected]; + [self setTitle:selectedTitle forState:UIControlStateSelected | UIControlStateHighlighted]; +#if TARGET_OS_TV + [self setTitle:selectedTitle forState:UIControlStateSelected | UIControlStateFocused]; +#endif + } + + UILabel *titleLabel = self.titleLabel; + titleLabel.lineBreakMode = NSLineBreakByClipping; + UIFont *font = [self defaultFont]; + titleLabel.font = font; + + CGSize imageSize = CGSizeMake(font.pointSize, font.pointSize); + UIImage *image = [icon imageWithSize:imageSize]; + image = [image resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch]; + [self setImage:image forState:UIControlStateNormal]; +#if TARGET_OS_TV + [self setImage:image forState:UIControlStateFocused]; +#endif + + if (selectedIcon) { + UIImage *selectedImage = [selectedIcon imageWithSize:imageSize]; + selectedImage = [selectedImage resizableImageWithCapInsets:UIEdgeInsetsZero + resizingMode:UIImageResizingModeStretch]; + [self setImage:selectedImage forState:UIControlStateSelected]; + [self setImage:selectedImage forState:UIControlStateSelected | UIControlStateHighlighted]; +#if TARGET_OS_TV + [self setImage:selectedImage forState:UIControlStateSelected | UIControlStateFocused]; +#endif + } + + if (forceSizeToFit) { + [self sizeToFit]; + } + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(_applicationDidBecomeActiveNotification:) + name:FBSDKApplicationDidBecomeActiveNotification + object:[FBSDKApplicationDelegate sharedInstance]]; +} + +- (CGFloat)_fontSizeForHeight:(CGFloat)height +{ + return floorf(height * HEIGHT_TO_FONT_SIZE); +} + +- (CGFloat)_heightForContentRect:(CGRect)contentRect +{ + UIEdgeInsets contentEdgeInsets = self.contentEdgeInsets; + return contentEdgeInsets.top + CGRectGetHeight(contentRect) + contentEdgeInsets.bottom; +} + +- (CGFloat)_heightForFont:(UIFont *)font +{ + return floorf(font.pointSize / (1 - 2 * HEIGHT_TO_MARGIN)); +} + +- (CGFloat)_marginForHeight:(CGFloat)height +{ + return floorf(height * HEIGHT_TO_MARGIN); +} + +- (CGFloat)_paddingForHeight:(CGFloat)height +{ + return roundf(height * HEIGHT_TO_PADDING) - [self _textPaddingCorrectionForHeight:height]; +} + +- (CGFloat)_textPaddingCorrectionForHeight:(CGFloat)height +{ + return floorf(height * HEIGHT_TO_TEXT_PADDING_CORRECTION); +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h new file mode 100644 index 0000000..fbed266 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h @@ -0,0 +1,375 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +/** + The error domain for all errors from FBSDKCoreKit. + + Error codes from the SDK in the range 0-99 are reserved for this domain. + */ +FOUNDATION_EXPORT NSErrorDomain const FBSDKErrorDomain +NS_SWIFT_NAME(ErrorDomain); + +#else + +/** + The error domain for all errors from FBSDKCoreKit. + + Error codes from the SDK in the range 0-99 are reserved for this domain. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorDomain +NS_SWIFT_NAME(ErrorDomain); + +#endif + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_11_0 + +/* + @methodgroup error userInfo keys + */ + +/** + The userInfo key for the invalid collection for errors with FBSDKErrorInvalidArgument. + + If the invalid argument is a collection, the collection can be found with this key and the individual + invalid item can be found with FBSDKErrorArgumentValueKey. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentCollectionKey +NS_SWIFT_NAME(ErrorArgumentCollectionKey); + +/** + The userInfo key for the invalid argument name for errors with FBSDKErrorInvalidArgument. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentNameKey +NS_SWIFT_NAME(ErrorArgumentNameKey); + +/** + The userInfo key for the invalid argument value for errors with FBSDKErrorInvalidArgument. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentValueKey +NS_SWIFT_NAME(ErrorArgumentValueKey); + +/** + The userInfo key for the message for developers in NSErrors that originate from the SDK. + + The developer message will not be localized and is not intended to be presented within the app. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorDeveloperMessageKey +NS_SWIFT_NAME(ErrorDeveloperMessageKey); + +/** + The userInfo key describing a localized description that can be presented to the user. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedDescriptionKey +NS_SWIFT_NAME(ErrorLocalizedDescriptionKey); + +/** + The userInfo key describing a localized title that can be presented to the user, used with `FBSDKLocalizedErrorDescriptionKey`. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedTitleKey +NS_SWIFT_NAME(ErrorLocalizedTitleKey); + +/* + @methodgroup FBSDKGraphRequest error userInfo keys + */ + +/** + The userInfo key describing the error category, for error recovery purposes. + + See `FBSDKGraphErrorRecoveryProcessor` and `[FBSDKGraphRequest disableErrorRecovery]`. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorKey +NS_SWIFT_NAME(GraphRequestErrorKey); + +/* + The userInfo key for the Graph API error code. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorCodeKey +NS_SWIFT_NAME(GraphRequestErrorGraphErrorCodeKey); + +/* + The userInfo key for the Graph API error subcode. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorSubcodeKey +NS_SWIFT_NAME(GraphRequestErrorGraphErrorSubcodeKey); + +/* + The userInfo key for the HTTP status code. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorHTTPStatusCodeKey +NS_SWIFT_NAME(GraphRequestErrorHTTPStatusCodeKey); + +/* + The userInfo key for the raw JSON response. + */ +FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorParsedJSONResponseKey +NS_SWIFT_NAME(GraphRequestErrorParsedJSONResponseKey); + +#else + +/* + @methodgroup error userInfo keys + */ + +/** + The userInfo key for the invalid collection for errors with FBSDKErrorInvalidArgument. + + If the invalid argument is a collection, the collection can be found with this key and the individual + invalid item can be found with FBSDKErrorArgumentValueKey. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorArgumentCollectionKey +NS_SWIFT_NAME(ErrorArgumentCollectionKey); + +/** + The userInfo key for the invalid argument name for errors with FBSDKErrorInvalidArgument. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorArgumentNameKey +NS_SWIFT_NAME(ErrorArgumentNameKey); + +/** + The userInfo key for the invalid argument value for errors with FBSDKErrorInvalidArgument. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorArgumentValueKey +NS_SWIFT_NAME(ErrorArgumentValueKey); + +/** + The userInfo key for the message for developers in NSErrors that originate from the SDK. + + The developer message will not be localized and is not intended to be presented within the app. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorDeveloperMessageKey +NS_SWIFT_NAME(ErrorDeveloperMessageKey); + +/** + The userInfo key describing a localized description that can be presented to the user. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorLocalizedDescriptionKey +NS_SWIFT_NAME(ErrorLocalizedDescriptionKey); + +/** + The userInfo key describing a localized title that can be presented to the user, used with `FBSDKLocalizedErrorDescriptionKey`. + */ +FOUNDATION_EXPORT NSString *const FBSDKErrorLocalizedTitleKey +NS_SWIFT_NAME(ErrorLocalizedTitleKey); + +/* + @methodgroup FBSDKGraphRequest error userInfo keys + */ + +/** + The userInfo key describing the error category, for error recovery purposes. + + See `FBSDKGraphErrorRecoveryProcessor` and `[FBSDKGraphRequest disableErrorRecovery]`. + */ +FOUNDATION_EXPORT NSString *const FBSDKGraphRequestErrorKey +NS_SWIFT_NAME(GraphRequestErrorKey); + +/* + The userInfo key for the Graph API error code. + */ +FOUNDATION_EXPORT NSString *const FBSDKGraphRequestErrorGraphErrorCodeKey +NS_SWIFT_NAME(GraphRequestErrorGraphErrorCodeKey); + +/* + The userInfo key for the Graph API error subcode. + */ +FOUNDATION_EXPORT NSString *const FBSDKGraphRequestErrorGraphErrorSubcodeKey +NS_SWIFT_NAME(GraphRequestErrorGraphErrorSubcodeKey); + +/* + The userInfo key for the HTTP status code. + */ +FOUNDATION_EXPORT NSString *const FBSDKGraphRequestErrorHTTPStatusCodeKey +NS_SWIFT_NAME(GraphRequestErrorHTTPStatusCodeKey); + +/* + The userInfo key for the raw JSON response. + */ +FOUNDATION_EXPORT NSString *const FBSDKGraphRequestErrorParsedJSONResponseKey +NS_SWIFT_NAME(GraphRequestErrorParsedJSONResponseKey); + +#endif + +/* + @methodgroup Common Code Block typedefs + */ + +/** + Success Block + */ +typedef void (^FBSDKCodeBlock)(void) +NS_SWIFT_NAME(CodeBlock); + +/** + Error Block + */ +typedef void (^FBSDKErrorBlock)(NSError *_Nullable error) +NS_SWIFT_NAME(ErrorBlock); + +/** + Success Block + */ +typedef void (^FBSDKSuccessBlock)(BOOL success, NSError *_Nullable error) +NS_SWIFT_NAME(SuccessBlock); + +/* + @methodgroup Enums + */ + +#ifndef NS_ERROR_ENUM +#define NS_ERROR_ENUM(_domain, _name) \ +enum _name: NSInteger _name; \ +enum __attribute__((ns_error_domain(_domain))) _name: NSInteger +#endif + +/** + FBSDKCoreError + Error codes for FBSDKErrorDomain. + */ +typedef NS_ERROR_ENUM(FBSDKErrorDomain, FBSDKCoreError) +{ + /** + Reserved. + */ + FBSDKErrorReserved = 0, + + /** + The error code for errors from invalid encryption on incoming encryption URLs. + */ + FBSDKErrorEncryption, + + /** + The error code for errors from invalid arguments to SDK methods. + */ + FBSDKErrorInvalidArgument, + + /** + The error code for unknown errors. + */ + FBSDKErrorUnknown, + + /** + A request failed due to a network error. Use NSUnderlyingErrorKey to retrieve + the error object from the NSURLSession for more information. + */ + FBSDKErrorNetwork, + + /** + The error code for errors encountered during an App Events flush. + */ + FBSDKErrorAppEventsFlush, + + /** + An endpoint that returns a binary response was used with FBSDKGraphRequestConnection. + + Endpoints that return image/jpg, etc. should be accessed using NSURLRequest + */ + FBSDKErrorGraphRequestNonTextMimeTypeReturned, + + /** + The operation failed because the server returned an unexpected response. + + You can get this error if you are not using the most recent SDK, or you are accessing a version of the + Graph API incompatible with the current SDK. + */ + FBSDKErrorGraphRequestProtocolMismatch, + + /** + The Graph API returned an error. + + See below for useful userInfo keys (beginning with FBSDKGraphRequestError*) + */ + FBSDKErrorGraphRequestGraphAPI, + + /** + The specified dialog configuration is not available. + + This error may signify that the configuration for the dialogs has not yet been downloaded from the server + or that the dialog is unavailable. Subsequent attempts to use the dialog may succeed as the configuration is loaded. + */ + FBSDKErrorDialogUnavailable, + + /** + Indicates an operation failed because a required access token was not found. + */ + FBSDKErrorAccessTokenRequired, + + /** + Indicates an app switch (typically for a dialog) failed because the destination app is out of date. + */ + FBSDKErrorAppVersionUnsupported, + + /** + Indicates an app switch to the browser (typically for a dialog) failed. + */ + FBSDKErrorBrowserUnavailable, + + /** + Indicates that a bridge api interaction was interrupted. + */ + FBSDKErrorBridgeAPIInterruption, +} NS_SWIFT_NAME(CoreError); + +/** + FBSDKGraphRequestError + Describes the category of Facebook error. See `FBSDKGraphRequestErrorKey`. + */ +typedef NS_ENUM(NSUInteger, FBSDKGraphRequestError) +{ + /** The default error category that is not known to be recoverable. Check `FBSDKLocalizedErrorDescriptionKey` for a user facing message. */ + FBSDKGraphRequestErrorOther = 0, + /** Indicates the error is temporary (such as server throttling). While a recoveryAttempter will be provided with the error instance, the attempt is guaranteed to succeed so you can simply retry the operation if you do not want to present an alert. */ + FBSDKGraphRequestErrorTransient = 1, + /** Indicates the error can be recovered (such as requiring a login). A recoveryAttempter will be provided with the error instance that can take UI action. */ + FBSDKGraphRequestErrorRecoverable = 2 +} NS_SWIFT_NAME(GraphRequestError); + +/** + a formal protocol very similar to the informal protocol NSErrorRecoveryAttempting + */ +NS_SWIFT_UNAVAILABLE("") +@protocol FBSDKErrorRecoveryAttempting + +/** + attempt the recovery + @param error the error + @param recoveryOptionIndex the selected option index + @param delegate the delegate + @param didRecoverSelector the callback selector, see discussion. + @param contextInfo context info to pass back to callback selector, see discussion. + + + Given that an error alert has been presented document-modally to the user, and the user has chosen one of the error's recovery options, attempt recovery from the error, and send the selected message to the specified delegate. The option index is an index into the error's array of localized recovery options. The method selected by didRecoverSelector must have the same signature as: + + - (void)didPresentErrorWithRecovery:(BOOL)didRecover contextInfo:(void *)contextInfo; + + The value passed for didRecover must be YES if error recovery was completely successful, NO otherwise. + */ +- (void)attemptRecoveryFromError:(NSError *)error + optionIndex:(NSUInteger)recoveryOptionIndex + delegate:(nullable id)delegate + didRecoverSelector:(SEL)didRecoverSelector + contextInfo:(nullable void *)contextInfo; +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m new file mode 100644 index 0000000..756a122 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m @@ -0,0 +1,64 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKConstants.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSErrorDomain const FBSDKErrorDomain = @"com.facebook.sdk.core"; + +#else + +NSString *const FBSDKErrorDomain = @"com.facebook.sdk.core"; + +#endif + + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSErrorUserInfoKey const FBSDKErrorArgumentCollectionKey = @"com.facebook.sdk:FBSDKErrorArgumentCollectionKey"; +NSErrorUserInfoKey const FBSDKErrorArgumentNameKey = @"com.facebook.sdk:FBSDKErrorArgumentNameKey"; +NSErrorUserInfoKey const FBSDKErrorArgumentValueKey = @"com.facebook.sdk:FBSDKErrorArgumentValueKey"; +NSErrorUserInfoKey const FBSDKErrorDeveloperMessageKey = @"com.facebook.sdk:FBSDKErrorDeveloperMessageKey"; +NSErrorUserInfoKey const FBSDKErrorLocalizedDescriptionKey = @"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey"; +NSErrorUserInfoKey const FBSDKErrorLocalizedTitleKey = @"com.facebook.sdk:FBSDKErrorLocalizedErrorTitleKey"; + +NSErrorUserInfoKey const FBSDKGraphRequestErrorKey = @"com.facebook.sdk:FBSDKGraphRequestErrorKey"; +NSErrorUserInfoKey const FBSDKGraphRequestErrorCategoryKey = @"com.facebook.sdk:FBSDKGraphRequestErrorCategoryKey"; +NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorCodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey"; +NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorSubcodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorSubcodeKey"; +NSErrorUserInfoKey const FBSDKGraphRequestErrorHTTPStatusCodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorHTTPStatusCodeKey"; +NSErrorUserInfoKey const FBSDKGraphRequestErrorParsedJSONResponseKey = @"com.facebook.sdk:FBSDKGraphRequestErrorParsedJSONResponseKey"; + +#else + +NSString *const FBSDKErrorArgumentCollectionKey = @"com.facebook.sdk:FBSDKErrorArgumentCollectionKey"; +NSString *const FBSDKErrorArgumentNameKey = @"com.facebook.sdk:FBSDKErrorArgumentNameKey"; +NSString *const FBSDKErrorArgumentValueKey = @"com.facebook.sdk:FBSDKErrorArgumentValueKey"; +NSString *const FBSDKErrorDeveloperMessageKey = @"com.facebook.sdk:FBSDKErrorDeveloperMessageKey"; +NSString *const FBSDKErrorLocalizedDescriptionKey = @"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey"; +NSString *const FBSDKErrorLocalizedTitleKey = @"com.facebook.sdk:FBSDKErrorLocalizedErrorTitleKey"; + +NSString *const FBSDKGraphRequestErrorKey = @"com.facebook.sdk:FBSDKGraphRequestErrorCategoryKey"; +NSString *const FBSDKGraphRequestErrorCategoryKey = @"com.facebook.sdk:FBSDKGraphRequestErrorCategoryKey"; +NSString *const FBSDKGraphRequestErrorGraphErrorCodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey"; +NSString *const FBSDKGraphRequestErrorGraphErrorSubcodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorSubcodeKey"; +NSString *const FBSDKGraphRequestErrorHTTPStatusCodeKey = @"com.facebook.sdk:FBSDKGraphRequestErrorHTTPStatusCodeKey"; +NSString *const FBSDKGraphRequestErrorParsedJSONResponseKey = @"com.facebook.sdk:FBSDKGraphRequestErrorParsedJSONResponseKey"; + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h new file mode 100644 index 0000000..fc938bb --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Extension protocol for NSCopying that adds the copy method, which is implemented on NSObject. + + NSObject implicitly conforms to this protocol. + */ +NS_SWIFT_NAME(Copying) +@protocol FBSDKCopying + +/** + Implemented by NSObject as a convenience to copyWithZone:. + @return A copy of the receiver. + */ +- (id)copy; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h new file mode 100644 index 0000000..216f0e1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -0,0 +1,96 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#ifdef BUCK + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#if !TARGET_OS_TV +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#else +#import +#import +#endif + +#else + +#import "FBSDKAccessToken.h" +#import "FBSDKAppEvents.h" +#import "FBSDKApplicationDelegate.h" +#import "FBSDKButton.h" +#import "FBSDKConstants.h" +#import "FBSDKCopying.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKGraphRequestDataAttachment.h" +#import "FBSDKSettings.h" +#import "FBSDKTestUsersManager.h" +#import "FBSDKUtility.h" + +#if !TARGET_OS_TV +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkNavigation.h" +#import "FBSDKAppLinkResolver.h" +#import "FBSDKAppLinkResolving.h" +#import "FBSDKAppLinkReturnToRefererController.h" +#import "FBSDKAppLinkReturnToRefererView.h" +#import "FBSDKAppLinkTarget.h" +#import "FBSDKAppLinkUtility.h" +#import "FBSDKGraphErrorRecoveryProcessor.h" +#import "FBSDKMeasurementEvent.h" +#import "FBSDKMutableCopying.h" +#import "FBSDKProfile.h" +#import "FBSDKProfilePictureView.h" +#import "FBSDKURL.h" +#import "FBSDKWebViewAppLinkResolver.h" +#else +#import "FBSDKDeviceButton.h" +#import "FBSDKDeviceViewControllerBase.h" +#endif + +#endif + +#define FBSDK_VERSION_STRING @"5.15.1" +#define FBSDK_TARGET_PLATFORM_VERSION @"v5.0" diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.h new file mode 100644 index 0000000..d340050 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKButton.h" + +NS_ASSUME_NONNULL_BEGIN + +/* + An internal base class for device related flows. + + This is an internal API that should not be used directly and is subject to change. + */ +NS_SWIFT_NAME(FBDeviceButton) +@interface FBSDKDeviceButton : FBSDKButton + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.m new file mode 100644 index 0000000..383dd42 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.m @@ -0,0 +1,147 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKDeviceButton.h" + +#import + +#import "FBSDKCoreKit+Internal.h" + +static const CGFloat kFBLogoSize = 54.0; +static const CGFloat kFBLogoLeftMargin = 36.0; +static const CGFloat kRightMargin = 12.0; +static const CGFloat kPreferredPaddingBetweenLogoTitle = 44.0; + +@implementation FBSDKDeviceButton + +#pragma mark - Layout + +- (void)didUpdateFocusInContext:(UIFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator +{ + [super didUpdateFocusInContext:context withAnimationCoordinator:coordinator]; + + if (self == context.nextFocusedView) { + [coordinator addCoordinatedAnimations:^{ + self.transform = CGAffineTransformMakeScale(1.05, 1.05); + self.layer.shadowOpacity = 0.5; + } completion:NULL]; + } else if (self == context.previouslyFocusedView) { + [coordinator addCoordinatedAnimations:^{ + self.transform = CGAffineTransformMakeScale(1.0, 1.0); + self.layer.shadowOpacity = 0; + } completion:NULL]; + } +} + +- (CGRect)imageRectForContentRect:(CGRect)contentRect +{ + CGFloat centerY = CGRectGetMidY(contentRect); + CGFloat y = centerY - (kFBLogoSize / 2.0); + return CGRectMake(kFBLogoLeftMargin, y, kFBLogoSize, kFBLogoSize); +} + +- (CGRect)titleRectForContentRect:(CGRect)contentRect +{ + if (self.hidden || CGRectIsEmpty(self.bounds)) { + return CGRectZero; + } + CGRect imageRect = [self imageRectForContentRect:contentRect]; + CGFloat titleX = CGRectGetMaxX(imageRect); + CGRect rect = CGRectMake(titleX, 0, CGRectGetWidth(contentRect) - titleX - kRightMargin, CGRectGetHeight(contentRect)); + + if (!self.layer.needsLayout) { + CGSize titleSize = [FBSDKMath ceilForSize:[self.titleLabel.attributedText boundingRectWithSize:contentRect.size + options:(NSStringDrawingUsesDeviceMetrics | + NSStringDrawingUsesLineFragmentOrigin | + NSStringDrawingUsesFontLeading) + context:NULL].size]; + CGFloat titlePadding = ( CGRectGetWidth(rect) - titleSize.width ) / 2; + if (titlePadding > titleX) { + // if there's room to re-center the text, do so. + rect = CGRectMake(kRightMargin, 0, CGRectGetWidth(contentRect) - kRightMargin - kRightMargin, CGRectGetHeight(contentRect)); + } + } + + return rect; +} + +#pragma mark - FBSDKButton + +- (UIFont *)defaultFont +{ + return [UIFont systemFontOfSize:38]; +} + +- (CGSize)sizeThatFits:(CGSize)size attributedTitle:(NSAttributedString *)title +{ + CGSize titleSize = [FBSDKMath ceilForSize:[title boundingRectWithSize:size + options:(NSStringDrawingUsesDeviceMetrics | + NSStringDrawingUsesLineFragmentOrigin | + NSStringDrawingUsesFontLeading) + context:NULL].size]; + CGFloat logoAndTitleWidth = kFBLogoSize + kPreferredPaddingBetweenLogoTitle + titleSize.width + kPreferredPaddingBetweenLogoTitle; + CGFloat height = 108; + CGSize contentSize = CGSizeMake(kFBLogoLeftMargin + logoAndTitleWidth + kRightMargin, + height); + return contentSize; +} + +- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title +{ + return [self sizeThatFits:size attributedTitle:[self attributedTitleStringFromString:title]]; +} + +#pragma mark - Subclasses + +- (NSAttributedString *)attributedTitleStringFromString:(NSString *)string +{ + if (!string) { + return nil; + } + NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init]; + style.alignment = NSTextAlignmentCenter; + style.lineBreakMode = NSLineBreakByClipping; + NSMutableAttributedString *attributedString = + [[NSMutableAttributedString alloc] initWithString:string + attributes:@{ + NSParagraphStyleAttributeName: style, + NSFontAttributeName: [self defaultFont], + NSForegroundColorAttributeName: [UIColor whiteColor] + }]; + // Now find all the spaces and widen their kerning. + NSRange range = NSMakeRange(0, string.length); + while (range.location != NSNotFound) { + NSRange spaceRange = [string rangeOfString:@" " options:0 range:range]; + if (spaceRange.location == NSNotFound) { + break; + } + [attributedString addAttribute:NSKernAttributeName + value:@2.7 + range:spaceRange]; + range = NSMakeRange(spaceRange.location + 1, string.length - spaceRange.location - 1); + } + return attributedString; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.h new file mode 100644 index 0000000..335fa59 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.h @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +/* + An internal base class for device related flows. + + This is an internal API that should not be used directly and is subject to change. +*/ +NS_SWIFT_NAME(FBDeviceViewControllerBase) +@interface FBSDKDeviceViewControllerBase : UIViewController +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.m new file mode 100644 index 0000000..be6ed49 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.m @@ -0,0 +1,135 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKDeviceViewControllerBase+Internal.h" + +#import "FBSDKCoreKit+Internal.h" + +#import "FBSDKSmartDeviceDialogView.h" +#import "FBSDKModalFormPresentationController.h" + +static const NSTimeInterval kAnimationDurationTimeInterval = .5; + +/* +Subclasses should generally: +- override viewDidDisappear to handle cancellations +- assign `deviceDialogView.confirmationCode` to set the code +*/ +@implementation FBSDKDeviceViewControllerBase + +- (instancetype)init +{ + if ((self = [super init])) { + self.transitioningDelegate = self; + self.modalPresentationStyle = UIModalPresentationCustom; + } + return self; +} + +- (void)loadView +{ + CGRect frame = [UIScreen mainScreen].bounds; + BOOL smartLoginEnabled = ([FBSDKServerConfigurationManager cachedServerConfiguration].smartLoginOptions & FBSDKServerConfigurationSmartLoginOptionsEnabled); + FBSDKDeviceDialogView *deviceView = + (smartLoginEnabled ? + [[FBSDKSmartDeviceDialogView alloc] initWithFrame:frame] : + [[FBSDKDeviceDialogView alloc] initWithFrame:frame] ); + deviceView.delegate = self; + self.view = deviceView; +} + +- (FBSDKDeviceDialogView *)deviceDialogView +{ + return (FBSDKDeviceDialogView *)self.view; +} + +#pragma mark - UIViewControllerAnimatedTransitioning + +// Extract this out to another class if we have other similar transitions. +- (NSTimeInterval)transitionDuration:(id)transitionContext +{ + return kAnimationDurationTimeInterval; +} + +- (void)animateTransition:(id)transitionContext +{ + if ([self isBeingPresented]) { + UIView *presentedView = [transitionContext viewForKey:UITransitionContextToViewKey]; + // animate the view to slide in from bottom + presentedView.center = CGPointMake(presentedView.center.x, presentedView.center.y + CGRectGetHeight(presentedView.bounds)); + UIView *containerView = [transitionContext containerView]; + [containerView addSubview:presentedView]; + [UIView animateWithDuration:kAnimationDurationTimeInterval + delay:0 + usingSpringWithDamping:1 + initialSpringVelocity:0 + options:UIViewAnimationOptionCurveEaseOut + animations:^{ + presentedView.center = CGPointMake(presentedView.center.x, presentedView.center.y - CGRectGetHeight(presentedView.bounds)); + } completion:^(BOOL finished) { + [transitionContext completeTransition:finished]; + }]; + } else { + UIView *presentedView = [transitionContext viewForKey:UITransitionContextFromViewKey]; + // animate the view to slide out to the bottom + [UIView animateWithDuration:kAnimationDurationTimeInterval + delay:0 + usingSpringWithDamping:1 + initialSpringVelocity:0 + options:UIViewAnimationOptionCurveEaseIn + animations:^{ + presentedView.center = CGPointMake(presentedView.center.x, presentedView.center.y + CGRectGetHeight(presentedView.bounds)); + } completion:^(BOOL finished) { + [transitionContext completeTransition:finished]; + }]; + } +} + +#pragma mark - UIViewControllerTransitioningDelegate + +- (id)animationControllerForDismissedController:(UIViewController *)dismissed +{ + return self; +} + +- (id)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source +{ + return self; +} + +- (UIPresentationController *)presentationControllerForPresentedViewController:(UIViewController *)presented + presentingViewController:(UIViewController *)presenting + sourceViewController:(UIViewController *)source +{ + return [[FBSDKModalFormPresentationController alloc] initWithPresentedViewController:presented + presentingViewController:presenting]; +} + +#pragma mark - FBSDKDeviceDialogViewDelegate + +- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView +{ + [self dismissViewControllerAnimated:YES completion:NULL]; +} +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.h new file mode 100644 index 0000000..7bd2da9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.h @@ -0,0 +1,81 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +/** The name of the notification posted by FBSDKMeasurementEvent */ +FOUNDATION_EXPORT NSNotificationName const FBSDKMeasurementEventNotification +NS_SWIFT_NAME(MeasurementEvent); + +#else + +/** The name of the notification posted by FBSDKMeasurementEvent */ +FOUNDATION_EXPORT NSString *const FBSDKMeasurementEventNotification +NS_SWIFT_NAME(MeasurementEventNotification); + +#endif + +/** Defines keys in the userInfo object for the notification named FBSDKMeasurementEventNotificationName */ +/** The string field for the name of the event */ +FOUNDATION_EXPORT NSString *const FBSDKMeasurementEventNameKey +NS_SWIFT_NAME(MeasurementEventNameKey); +/** The dictionary field for the arguments of the event */ +FOUNDATION_EXPORT NSString *const FBSDKMeasurementEventArgsKey +NS_SWIFT_NAME(MeasurementEventArgsKey); + +/** Events raised by FBSDKMeasurementEvent for Applink */ +/** + The name of the event posted when [FBSDKURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL. + */ +FOUNDATION_EXPORT NSString *const FBSDKAppLinkParseEventName +NS_SWIFT_NAME(AppLinkParseEventName); + +/** + The name of the event posted when [FBSDKURL URLWithInboundURL:] is called successfully. + This represents parsing an inbound app link URL from a different application + */ +FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateInEventName +NS_SWIFT_NAME(AppLinkNavigateInEventName); + +/** The event raised when the user navigates from your app to other apps */ +FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateOutEventName +NS_SWIFT_NAME(AppLinkNavigateOutEventName); + +/** + The event raised when the user navigates out from your app and back to the referrer app. + e.g when the user leaves your app after tapping the back-to-referrer navigation bar + */ +FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateBackToReferrerEventName +NS_SWIFT_NAME(AppLinkNavigateBackToReferrerEventName); + +NS_SWIFT_NAME(MeasurementEvent) +@interface FBSDKMeasurementEvent : NSObject + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.m new file mode 100644 index 0000000..e678777 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.m @@ -0,0 +1,88 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMeasurementEvent_Internal.h" + +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSNotificationName const FBSDKMeasurementEventNotification = @"com.facebook.facebook-objc-sdk.measurement_event"; + +#else + +NSString *const FBSDKMeasurementEventNotification = @"com.facebook.facebook-objc-sdk.measurement_event"; + +#endif + +NSString *const FBSDKMeasurementEventNotificationName = @"com.facebook.facebook-objc-sdk.measurement_event"; + +NSString *const FBSDKMeasurementEventNameKey = @"event_name"; +NSString *const FBSDKMeasurementEventArgsKey = @"event_args"; + +/** app Link Event raised by this FBSDKURL */ +NSString *const FBSDKAppLinkParseEventName = @"al_link_parse"; +NSString *const FBSDKAppLinkNavigateInEventName = @"al_nav_in"; + +/** AppLink events raised in this class */ +NSString *const FBSDKAppLinkNavigateOutEventName = @"al_nav_out"; +NSString *const FBSDKAppLinkNavigateBackToReferrerEventName = @"al_ref_back_out"; + +@implementation FBSDKMeasurementEvent { + NSString *_name; + NSDictionary *_args; +} + +- (void)postNotification { + if (!_name) { + [FBSDKLogger + singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"Warning: Missing event name when logging FBSDK measurement event.\nIgnoring this event in logging."]; + return; + } + NSNotificationCenter *center = [NSNotificationCenter defaultCenter]; + NSDictionary *userInfo = @{FBSDKMeasurementEventNameKey : _name, + FBSDKMeasurementEventArgsKey : _args}; + + [center postNotificationName:FBSDKMeasurementEventNotification + object:self + userInfo:userInfo]; +} + +- (instancetype)initEventWithName:(NSString *)name + args:(NSDictionary *)args { + if ((self = [super init])) { + _name = name; + _args = args ? args : @{}; + } + return self; +} + ++ (void)postNotificationForEventName:(NSString *)name + args:(NSDictionary *)args { + [[[self alloc] initEventWithName:name args:args] postNotification]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h new file mode 100644 index 0000000..7efaeeb --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h @@ -0,0 +1,47 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKCopying.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject. + + NSObject implicitly conforms to this protocol. + */ +NS_SWIFT_NAME(MutableCopying) +@protocol FBSDKMutableCopying + +/** + Implemented by NSObject as a convenience to mutableCopyWithZone:. + @return A mutable copy of the receiver. + */ +- (id)mutableCopy; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h new file mode 100644 index 0000000..d1b1551 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h @@ -0,0 +1,197 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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." + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKProfilePictureView.h" + +@class FBSDKProfile; + +NS_ASSUME_NONNULL_BEGIN + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +/** + Notification indicating that the `currentProfile` has changed. + + the userInfo dictionary of the notification will contain keys + `FBSDKProfileChangeOldKey` and + `FBSDKProfileChangeNewKey`. + */ +FOUNDATION_EXPORT NSNotificationName const FBSDKProfileDidChangeNotification +NS_SWIFT_NAME(ProfileDidChange); + +#else + +/** + Notification indicating that the `currentProfile` has changed. + + the userInfo dictionary of the notification will contain keys + `FBSDKProfileChangeOldKey` and + `FBSDKProfileChangeNewKey`. + */ +FOUNDATION_EXPORT NSString *const FBSDKProfileDidChangeNotification +NS_SWIFT_NAME(ProfileDidChangeNotification); + +#endif + +/* key in notification's userInfo object for getting the old profile. + + If there was no old profile, the key will not be present. + */ +FOUNDATION_EXPORT NSString *const FBSDKProfileChangeOldKey +NS_SWIFT_NAME(ProfileChangeOldKey); + +/* key in notification's userInfo object for getting the new profile. + + If there is no new profile, the key will not be present. + */ +FOUNDATION_EXPORT NSString *const FBSDKProfileChangeNewKey +NS_SWIFT_NAME(ProfileChangeNewKey); + +/** + Describes the callback for loadCurrentProfileWithCompletion. + @param profile the FBSDKProfile + @param error the error during the request, if any + + */ +typedef void (^FBSDKProfileBlock)(FBSDKProfile *_Nullable profile, NSError *_Nullable error) +NS_SWIFT_NAME(ProfileBlock); + +/** + Represents an immutable Facebook profile + + This class provides a global "currentProfile" instance to more easily + add social context to your application. When the profile changes, a notification is + posted so that you can update relevant parts of your UI and is persisted to NSUserDefaults. + + Typically, you will want to call `enableUpdatesOnAccessTokenChange:YES` so that + it automatically observes changes to the `[FBSDKAccessToken currentAccessToken]`. + + You can use this class to build your own `FBSDKProfilePictureView` or in place of typical requests to "/me". + */ +NS_SWIFT_NAME(Profile) +@interface FBSDKProfile : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + initializes a new instance. + @param userID the user ID + @param firstName the user's first name + @param middleName the user's middle name + @param lastName the user's last name + @param name the user's complete name + @param linkURL the link for this profile + @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. + */ +- (instancetype)initWithUserID:(NSString *)userID + firstName:(nullable NSString *)firstName + middleName:(nullable NSString *)middleName + lastName:(nullable NSString *)lastName + name:(nullable NSString *)name + linkURL:(nullable NSURL *)linkURL + refreshDate:(nullable NSDate *)refreshDate NS_DESIGNATED_INITIALIZER; + +/** + The current profile instance and posts the appropriate notification + if the profile parameter is different than the receiver. + + This persists the profile to NSUserDefaults. + */ + +/// The current profile +@property (class, nonatomic, strong, nullable) FBSDKProfile *currentProfile +NS_SWIFT_NAME(current); + +/** + The user id + */ +@property (nonatomic, copy, readonly) NSString *userID; +/** + The user's first name + */ +@property (nonatomic, copy, readonly, nullable) NSString *firstName; +/** + The user's middle name + */ +@property (nonatomic, copy, readonly, nullable) NSString *middleName; +/** + The user's last name + */ +@property (nonatomic, copy, readonly, nullable) NSString *lastName; +/** + The user's complete name + */ +@property (nonatomic, copy, readonly, nullable) NSString *name; +/** + A URL to the user's profile. + + Consider using `FBSDKAppLinkResolver` to resolve this + to an app link to link directly to the user's profile in the Facebook app. + */ +@property (nonatomic, readonly, nullable) NSURL *linkURL; + +/** + The last time the profile data was fetched. + */ +@property (nonatomic, readonly) NSDate *refreshDate; + +/** + Indicates if `currentProfile` will automatically observe `FBSDKAccessTokenDidChangeNotification` notifications + @param enable YES is observing + + If observing, this class will issue a graph request for public profile data when the current token's userID + differs from the current profile. You can observe `FBSDKProfileDidChangeNotification` for when the profile is updated. + + Note that if `[FBSDKAccessToken currentAccessToken]` is unset, the `currentProfile` instance remains. It's also possible + for `currentProfile` to return nil until the data is fetched. + */ ++ (void)enableUpdatesOnAccessTokenChange:(BOOL)enable +NS_SWIFT_NAME(enableUpdatesOnAccessTokenChange(_:)); + +/** + Loads the current profile and passes it to the completion block. + @param completion The block to be executed once the profile is loaded + + If the profile is already loaded, this method will call the completion block synchronously, otherwise it + will begin a graph request to update `currentProfile` and then call the completion block when finished. + */ ++ (void)loadCurrentProfileWithCompletion:(nullable FBSDKProfileBlock)completion; + +/** + A convenience method for returning a complete `NSURL` for retrieving the user's profile image. + @param mode The picture mode + @param size The height and width. This will be rounded to integer precision. + */ +- (nullable NSURL *)imageURLForPictureMode:(FBSDKProfilePictureMode)mode size:(CGSize)size +NS_SWIFT_NAME(imageURL(forMode:size:)); + +/** + Returns YES if the profile is equivalent to the receiver. + @param profile the profile to compare to. + */ +- (BOOL)isEqualToProfile:(FBSDKProfile *)profile; +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m new file mode 100644 index 0000000..b4fcd87 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m @@ -0,0 +1,295 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKProfile+Internal.h" + +#import "FBSDKCoreKit+Internal.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +NSNotificationName const FBSDKProfileDidChangeNotification = @"com.facebook.sdk.FBSDKProfile.FBSDKProfileDidChangeNotification";; + +#else + +NSString *const FBSDKProfileDidChangeNotification = @"com.facebook.sdk.FBSDKProfile.FBSDKProfileDidChangeNotification";; + +#endif + +NSString *const FBSDKProfileChangeOldKey = @"FBSDKProfileOld"; +NSString *const FBSDKProfileChangeNewKey = @"FBSDKProfileNew"; +static NSString *const FBSDKProfileUserDefaultsKey = @"com.facebook.sdk.FBSDKProfile.currentProfile"; +static FBSDKProfile *g_currentProfile; + +#define FBSDKPROFILE_USERID_KEY @"userID" +#define FBSDKPROFILE_FIRSTNAME_KEY @"firstName" +#define FBSDKPROFILE_MIDDLENAME_KEY @"middleName" +#define FBSDKPROFILE_LASTNAME_KEY @"lastName" +#define FBSDKPROFILE_NAME_KEY @"name" +#define FBSDKPROFILE_LINKURL_KEY @"linkURL" +#define FBSDKPROFILE_REFRESHDATE_KEY @"refreshDate" + +// Once a day +#define FBSDKPROFILE_STALE_IN_SECONDS (60 * 60 * 24) + +@implementation FBSDKProfile + +- (instancetype)initWithUserID:(NSString *)userID + firstName:(NSString *)firstName + middleName:(NSString *)middleName + lastName:(NSString *)lastName + name:(NSString *)name + linkURL:(NSURL *)linkURL + refreshDate:(NSDate *)refreshDate +{ + if ((self = [super init])) { + _userID = [userID copy]; + _firstName = [firstName copy]; + _middleName = [middleName copy]; + _lastName = [lastName copy]; + _name = [name copy]; + _linkURL = [linkURL copy]; + _refreshDate = [refreshDate copy] ?: [NSDate date]; + } + return self; +} + ++ (FBSDKProfile *)currentProfile +{ + return g_currentProfile; +} + ++ (void)setCurrentProfile:(FBSDKProfile *)profile +{ + if (profile != g_currentProfile && ![profile isEqualToProfile:g_currentProfile]) { + [[self class] cacheProfile:profile]; + NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; + + [FBSDKBasicUtility dictionary:userInfo setObject:profile forKey:FBSDKProfileChangeNewKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:g_currentProfile forKey:FBSDKProfileChangeOldKey]; + g_currentProfile = profile; + [[NSNotificationCenter defaultCenter] postNotificationName:FBSDKProfileDidChangeNotification + object:[self class] + userInfo:userInfo]; + } +} + +- (NSURL *)imageURLForPictureMode:(FBSDKProfilePictureMode)mode size:(CGSize)size +{ + NSString *type; + switch (mode) { + case FBSDKProfilePictureModeNormal: type = @"normal"; break; + case FBSDKProfilePictureModeSquare: type = @"square"; break; + } + + NSString *path = [NSString stringWithFormat:@"%@/picture?type=%@&width=%d&height=%d", + _userID, + type, + (int) roundf(size.width), + (int) roundf(size.height)]; + + return [FBSDKInternalUtility facebookURLWithHostPrefix:@"graph" + path:path + queryParameters:@{} + error:NULL]; +} + ++ (void)enableUpdatesOnAccessTokenChange:(BOOL)enable +{ + if (enable) { + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(observeChangeAccessTokenChange:) + name:FBSDKAccessTokenDidChangeNotification + object:nil]; + } else { + [[NSNotificationCenter defaultCenter] removeObserver:self]; + } +} + ++ (void)loadCurrentProfileWithCompletion:(FBSDKProfileBlock)completion +{ + [self loadProfileWithToken:[FBSDKAccessToken currentAccessToken] completion:completion]; +} + +#pragma mark - NSCopying + +- (instancetype)copyWithZone:(NSZone *)zone +{ + //immutable + return self; +} + +#pragma mark - Equality + +- (NSUInteger)hash +{ + NSUInteger subhashes[] = { + self.userID.hash, + self.firstName.hash, + self.middleName.hash, + self.lastName.hash, + self.name.hash, + self.linkURL.hash, + self.refreshDate.hash + }; + return [FBSDKMath hashWithIntegerArray:subhashes count:sizeof(subhashes) / sizeof(subhashes[0])]; +} + +- (BOOL)isEqual:(id)object +{ + if (self == object) { + return YES; + } + if (![object isKindOfClass:[FBSDKProfile class]]){ + return NO; + } + return [self isEqualToProfile:object]; +} + +- (BOOL)isEqualToProfile:(FBSDKProfile *)profile +{ + return ([_userID isEqualToString:profile.userID] && + [_firstName isEqualToString:profile.firstName] && + [_middleName isEqualToString:profile.middleName] && + [_lastName isEqualToString:profile.lastName] && + [_name isEqualToString:profile.name] && + [_linkURL isEqual:profile.linkURL] && + [_refreshDate isEqualToDate:profile.refreshDate]); +} +#pragma mark NSCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (instancetype)initWithCoder:(NSCoder *)decoder +{ + NSString *userID = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDKPROFILE_USERID_KEY]; + NSString *firstName = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDKPROFILE_FIRSTNAME_KEY]; + NSString *middleName = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDKPROFILE_MIDDLENAME_KEY]; + NSString *lastName = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDKPROFILE_LASTNAME_KEY]; + NSString *name = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDKPROFILE_NAME_KEY]; + NSURL *linkURL = [decoder decodeObjectOfClass:[NSURL class] forKey:FBSDKPROFILE_LINKURL_KEY]; + NSDate *refreshDate = [decoder decodeObjectOfClass:[NSURL class] forKey:FBSDKPROFILE_REFRESHDATE_KEY]; + return [self initWithUserID:userID + firstName:firstName + middleName:middleName + lastName:lastName + name:name + linkURL:linkURL + refreshDate:refreshDate]; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:self.userID forKey:FBSDKPROFILE_USERID_KEY]; + [encoder encodeObject:self.firstName forKey:FBSDKPROFILE_FIRSTNAME_KEY]; + [encoder encodeObject:self.middleName forKey:FBSDKPROFILE_MIDDLENAME_KEY]; + [encoder encodeObject:self.lastName forKey:FBSDKPROFILE_LASTNAME_KEY]; + [encoder encodeObject:self.name forKey:FBSDKPROFILE_NAME_KEY]; + [encoder encodeObject:self.linkURL forKey:FBSDKPROFILE_LINKURL_KEY]; + [encoder encodeObject:self.refreshDate forKey:FBSDKPROFILE_REFRESHDATE_KEY]; +} + +#pragma mark - Private + ++ (void)loadProfileWithToken:(FBSDKAccessToken *)token completion:(FBSDKProfileBlock)completion +{ + static FBSDKGraphRequestConnection *executingRequestConnection = nil; + + BOOL isStale = [[NSDate date] timeIntervalSinceDate:g_currentProfile.refreshDate] > FBSDKPROFILE_STALE_IN_SECONDS; + if (token && + (isStale || ![g_currentProfile.userID isEqualToString:token.userID])) { + FBSDKProfile *expectedCurrentProfile = g_currentProfile; + + NSString *graphPath = @"me?fields=id,first_name,middle_name,last_name,name,link"; + [executingRequestConnection cancel]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:graphPath + parameters:nil + flags:FBSDKGraphRequestFlagDoNotInvalidateTokenOnError | FBSDKGraphRequestFlagDisableErrorRecovery]; + executingRequestConnection = [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (expectedCurrentProfile != g_currentProfile) { + // current profile has already changed since request was started. Let's not overwrite. + if (completion != NULL) { + completion(nil, nil); + } + return; + } + FBSDKProfile *profile = nil; + if (!error) { + profile = [[FBSDKProfile alloc] initWithUserID:result[@"id"] + firstName:result[@"first_name"] + middleName:result[@"middle_name"] + lastName:result[@"last_name"] + name:result[@"name"] + linkURL:[NSURL URLWithString:result[@"link"]] + refreshDate:[NSDate date]]; + } + [[self class] setCurrentProfile:profile]; + if (completion != NULL) { + completion(profile, error); + } + }]; + } else if (completion != NULL) { + completion(g_currentProfile, nil); + } +} + ++ (void)observeChangeAccessTokenChange:(NSNotification *)notification +{ + FBSDKAccessToken *token = notification.userInfo[FBSDKAccessTokenChangeNewKey]; + [self loadProfileWithToken:token completion:NULL]; +} + +@end + +@implementation FBSDKProfile(Internal) + ++ (void)cacheProfile:(FBSDKProfile *)profile +{ + NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; + if (profile) { + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:profile]; + [userDefaults setObject:data forKey:FBSDKProfileUserDefaultsKey]; + } else { + [userDefaults removeObjectForKey:FBSDKProfileUserDefaultsKey]; + } + [userDefaults synchronize]; +} + ++ (FBSDKProfile *)fetchCachedProfile +{ + NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; + NSData *data = [userDefaults objectForKey:FBSDKProfileUserDefaultsKey]; + if (data != nil) { + @try { + return [NSKeyedUnarchiver unarchiveObjectWithData:data]; + } @catch (NSException *exception) { + return nil; + } + } + return nil; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h new file mode 100644 index 0000000..c5a1672 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h @@ -0,0 +1,89 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +@class FBSDKProfile; + +NS_ASSUME_NONNULL_BEGIN + +/** + FBSDKProfilePictureMode enum + Defines the aspect ratio mode for the source image of the profile picture. + */ +typedef NS_ENUM(NSUInteger, FBSDKProfilePictureMode) +{ + /** + A square cropped version of the image will be included in the view. + */ + FBSDKProfilePictureModeSquare, + /** + The original picture's aspect ratio will be used for the source image in the view. + */ + FBSDKProfilePictureModeNormal, +} NS_SWIFT_NAME(Profile.PictureMode); + +/** + A view to display a profile picture. + */ +NS_SWIFT_NAME(FBProfilePictureView) +@interface FBSDKProfilePictureView : UIView + +/** + Create a new instance of `FBSDKProfilePictureView`. + + - Parameter frame: Frame rectangle for the view. + - Parameter profile: Optional profile to display a picture for. + */ +- (instancetype)initWithFrame:(CGRect)frame + profile:(FBSDKProfile * _Nullable)profile; + +/** + Create a new instance of `FBSDKProfilePictureView`. + + - Parameter profile: Optional profile to display a picture for. + */ +- (instancetype)initWithProfile:(FBSDKProfile * _Nullable)profile; + +/** + The mode for the receiver to determine the aspect ratio of the source image. + */ +@property (nonatomic, assign) FBSDKProfilePictureMode pictureMode; + +/** + The profile ID to show the picture for. + */ +@property (nonatomic, copy) NSString *profileID; + +/** + Explicitly marks the receiver as needing to update the image. + + This method is called whenever any properties that affect the source image are modified, but this can also + be used to trigger a manual update of the image if it needs to be re-downloaded. + */ +- (void)setNeedsImageUpdate; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m new file mode 100644 index 0000000..c77339d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m @@ -0,0 +1,388 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKProfilePictureView.h" + +#import "FBSDKAccessToken.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKMaleSilhouetteIcon.h" +#import "FBSDKMath.h" +#import "FBSDKUtility.h" + +@interface FBSDKProfilePictureViewState : NSObject + +- (instancetype)initWithProfileID:(NSString *)profileID + size:(CGSize)size + scale:(CGFloat)scale + pictureMode:(FBSDKProfilePictureMode)pictureMode + imageShouldFit:(BOOL)imageShouldFit; + +@property (nonatomic, assign, readonly) BOOL imageShouldFit; +@property (nonatomic, assign, readonly) FBSDKProfilePictureMode pictureMode; +@property (nonatomic, copy, readonly) NSString *profileID; +@property (nonatomic, assign, readonly) CGFloat scale; +@property (nonatomic, assign, readonly) CGSize size; + +- (BOOL)isEqualToState:(FBSDKProfilePictureViewState *)other; +- (BOOL)isValidForState:(FBSDKProfilePictureViewState *)other; + +@end + +@implementation FBSDKProfilePictureViewState + +- (instancetype)initWithProfileID:(NSString *)profileID + size:(CGSize)size + scale:(CGFloat)scale + pictureMode:(FBSDKProfilePictureMode)pictureMode + imageShouldFit:(BOOL)imageShouldFit +{ + if ((self = [super init])) { + _profileID = [profileID copy]; + _size = size; + _scale = scale; + _pictureMode = pictureMode; + _imageShouldFit = imageShouldFit; + } + return self; +} + +- (NSUInteger)hash +{ + NSUInteger subhashes[] = { + (NSUInteger)_imageShouldFit, + (NSUInteger)_size.width, + (NSUInteger)_size.height, + (NSUInteger)_scale, + (NSUInteger)_pictureMode, + _profileID.hash, + }; + return [FBSDKMath hashWithIntegerArray:subhashes count:sizeof(subhashes) / sizeof(subhashes[0])]; +} + +- (BOOL)isEqual:(id)object +{ + if (![object isKindOfClass:[FBSDKProfilePictureViewState class]]) { + return NO; + } + FBSDKProfilePictureViewState *other = (FBSDKProfilePictureViewState *)object; + return [self isEqualToState:other]; +} + +- (BOOL)isEqualToState:(FBSDKProfilePictureViewState *)other +{ + return ([self isValidForState:other] && + CGSizeEqualToSize(_size, other->_size) && + (_scale == other->_scale)); +} + +- (BOOL)isValidForState:(FBSDKProfilePictureViewState *)other +{ + return (other != nil && + (_imageShouldFit == other->_imageShouldFit) && + (_pictureMode == other->_pictureMode) && + [FBSDKInternalUtility object:_profileID isEqualToObject:other->_profileID]); +} + +@end + +@implementation FBSDKProfilePictureView +{ + BOOL _hasProfileImage; + UIImageView *_imageView; + FBSDKProfilePictureViewState *_lastState; + BOOL _needsImageUpdate; + BOOL _placeholderImageIsValid; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithFrame:(CGRect)frame +{ + if ((self = [super initWithFrame:frame])) { + [self _configureProfilePictureView]; + } + return self; +} + +- (instancetype)initWithCoder:(NSCoder *)decoder +{ + if ((self = [super initWithCoder:decoder])) { + [self _configureProfilePictureView]; + } + return self; +} + +- (instancetype)initWithFrame:(CGRect)frame + profile:(FBSDKProfile *)profile +{ + if ((self = [super initWithFrame:frame])) { + _profileID = [profile.userID copy]; + + [self setNeedsImageUpdate]; + } + return self; +} + +- (instancetype)initWithProfile:(FBSDKProfile *)profile +{ + return [self initWithFrame:CGRectZero profile:profile]; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - Properties + +- (void)setBounds:(CGRect)bounds +{ + dispatch_async(dispatch_get_main_queue(), ^{ + CGRect currentBounds = self.bounds; + if (!CGRectEqualToRect(currentBounds, bounds)) { + super.bounds = bounds; + if (!CGSizeEqualToSize(currentBounds.size, bounds.size)) { + self->_placeholderImageIsValid = NO; + [self setNeedsImageUpdate]; + } + } + }); +} + +- (UIViewContentMode)contentMode +{ + return _imageView.contentMode; +} + +- (void)setContentMode:(UIViewContentMode)contentMode +{ + if (_imageView.contentMode != contentMode) { + _imageView.contentMode = contentMode; + super.contentMode = contentMode; + [self setNeedsImageUpdate]; + } +} + +- (void)setMode:(FBSDKProfilePictureMode)pictureMode +{ + if (_pictureMode != pictureMode) { + _pictureMode = pictureMode; + [self setNeedsImageUpdate]; + } +} + +- (void)setProfileID:(NSString *)profileID +{ + if (![FBSDKInternalUtility object:_profileID isEqualToObject:profileID]) { + _profileID = [profileID copy]; + _placeholderImageIsValid = NO; + [self setNeedsImageUpdate]; + } +} + +#pragma mark - Public Methods + +- (void)setNeedsImageUpdate +{ + dispatch_async(dispatch_get_main_queue(), ^{ + if (!self->_imageView || CGRectIsEmpty(self.bounds)) { + // we can't do anything with an empty view, so just bail out until we have a size + return; + } + + // ensure that we have an image. do this here so we can draw the placeholder image synchronously if we don't have one + if (!self->_placeholderImageIsValid && !self->_hasProfileImage) { + [self _setPlaceholderImage]; + } + + // debounce calls to needsImage against the main runloop + if (self->_needsImageUpdate) { + return; + } + self->_needsImageUpdate = YES; + [self _needsImageUpdate]; + }); +} + +#pragma mark - Helper Methods + +- (void)_accessTokenDidChangeNotification:(NSNotification *)notification +{ + if (![_profileID isEqualToString:@"me"] || !notification.userInfo[FBSDKAccessTokenDidChangeUserIDKey]) { + return; + } + _lastState = nil; + [self setNeedsImageUpdate]; +} + +- (void)_configureProfilePictureView +{ + _imageView = [[UIImageView alloc] initWithFrame:self.bounds]; + _imageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight); + [self addSubview:_imageView]; + + _profileID = @"me"; + self.backgroundColor = [UIColor whiteColor]; + self.contentMode = UIViewContentModeScaleAspectFit; + self.userInteractionEnabled = NO; + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(_accessTokenDidChangeNotification:) + name:FBSDKAccessTokenDidChangeNotification + object:nil]; + + [self setNeedsImageUpdate]; +} + +- (BOOL)_imageShouldFit +{ + switch (self.contentMode) { + case UIViewContentModeBottom: + case UIViewContentModeBottomLeft: + case UIViewContentModeBottomRight: + case UIViewContentModeCenter: + case UIViewContentModeLeft: + case UIViewContentModeRedraw: + case UIViewContentModeRight: + case UIViewContentModeScaleAspectFit: + case UIViewContentModeTop: + case UIViewContentModeTopLeft: + case UIViewContentModeTopRight: + return YES; + case UIViewContentModeScaleAspectFill: + case UIViewContentModeScaleToFill: + return NO; + } +} + +- (CGSize)_imageSize:(BOOL)imageShouldFit scale:(CGFloat)scale +{ + // get the image size based on the contentMode and pictureMode + CGSize size = self.bounds.size; + switch (_pictureMode) { + case FBSDKProfilePictureModeSquare:{ + CGFloat imageSize; + if (imageShouldFit) { + imageSize = MIN(size.width, size.height); + } else { + imageSize = MAX(size.width, size.height); + } + size = CGSizeMake(imageSize, imageSize); + break; + } + case FBSDKProfilePictureModeNormal: + // use the bounds size + break; + } + + // adjust for the screen scale + size = CGSizeMake(size.width * scale, size.height * scale); + + return size; +} + +- (void)_needsImageUpdate +{ + _needsImageUpdate = NO; + + if (!_profileID) { + if (!_placeholderImageIsValid) { + [self _setPlaceholderImage]; + } + return; + } + + // if the current image is no longer representative of the current state, clear the current value out; otherwise, + // leave the current value until the new resolution image is downloaded + BOOL imageShouldFit = [self _imageShouldFit]; + UIScreen *screen = self.window.screen ?: [UIScreen mainScreen]; + CGFloat scale = screen.scale; + CGSize imageSize = [self _imageSize:imageShouldFit scale:scale]; + FBSDKProfilePictureViewState *state = [[FBSDKProfilePictureViewState alloc] initWithProfileID:_profileID + size:imageSize + scale:scale + pictureMode:_pictureMode + imageShouldFit:imageShouldFit]; + if (![_lastState isValidForState:state]) { + [self _setPlaceholderImage]; + } + _lastState = state; + + FBSDKAccessToken *accessToken = [FBSDKAccessToken currentAccessToken]; + if ([state.profileID isEqualToString:@"me"] && !accessToken) { + return; + } + + NSString *path = [[NSString alloc] initWithFormat:@"/%@/picture", [FBSDKUtility URLEncode:state.profileID]]; + CGSize size = state.size; + NSMutableDictionary *parameters = [[NSMutableDictionary alloc] init]; + parameters[@"width"] = @(size.width); + parameters[@"height"] = @(size.height); + [FBSDKBasicUtility dictionary:parameters setObject:accessToken.tokenString forKey:@"access_token"]; + NSURL *imageURL = [FBSDKInternalUtility facebookURLWithHostPrefix:@"graph" path:path queryParameters:parameters error:NULL]; + + __weak FBSDKProfilePictureView *weakSelf = self; + + NSURLRequest *request = [[NSURLRequest alloc] initWithURL:imageURL]; + NSURLSession *session = [NSURLSession sharedSession]; + [[session + dataTaskWithRequest:request + completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { + if (!error && data.length) { + [weakSelf _updateImageWithData:data state:state]; + } + }] resume]; +} + +- (void)_setPlaceholderImage +{ + UIColor *fillColor = [UIColor colorWithRed:157.0/255.0 green:177.0/255.0 blue:204.0/255.0 alpha:1.0]; + _placeholderImageIsValid = YES; + _hasProfileImage = NO; + + dispatch_async(dispatch_get_main_queue(), ^{ + self->_imageView.image = [[[FBSDKMaleSilhouetteIcon alloc] initWithColor:fillColor] imageWithSize:self->_imageView.bounds.size]; + }); +} + +- (void)_updateImageWithData:(NSData *)data state:(FBSDKProfilePictureViewState *)state +{ + // make sure we haven't updated the state since we began fetching the image + if (![state isValidForState:_lastState]) { + return; + } + + UIImage *image = [[UIImage alloc] initWithData:data scale:state.scale]; + if (image) { + _hasProfileImage = YES; + dispatch_async(dispatch_get_main_queue(), ^{ + self->_imageView.image = image; + }); + } else { + _hasProfileImage = NO; + _placeholderImageIsValid = NO; + [self setNeedsImageUpdate]; + } +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h new file mode 100644 index 0000000..a6f1464 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h @@ -0,0 +1,213 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/* + * Constants defining logging behavior. Use with <[FBSDKSettings setLoggingBehavior]>. + */ + +/// typedef for FBSDKAppEventName +typedef NSString *const FBSDKLoggingBehavior NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(LoggingBehavior); + +/** Include access token in logging. */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorAccessTokens; + +/** Log performance characteristics */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorPerformanceCharacteristics; + +/** Log FBSDKAppEvents interactions */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorAppEvents; + +/** Log Informational occurrences */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorInformational; + +/** Log cache errors. */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorCacheErrors; + +/** Log errors from SDK UI controls */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorUIControlErrors; + +/** Log debug warnings from API response, i.e. when friends fields requested, but user_friends permission isn't granted. */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugWarning; + +/** Log warnings from API response, i.e. when requested feature will be deprecated in next version of API. + Info is the lowest level of severity, using it will result in logging all previously mentioned levels. + */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugInfo; + +/** Log errors from SDK network requests */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorNetworkRequests; + +/** Log errors likely to be preventable by the developer. This is in the default set of enabled logging behaviors. */ +FOUNDATION_EXPORT FBSDKLoggingBehavior FBSDKLoggingBehaviorDeveloperErrors; + +NS_SWIFT_NAME(Settings) +@interface FBSDKSettings : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Retrieve the current iOS SDK version. + */ +@property (class, nonatomic, copy, readonly) NSString *sdkVersion; + +/** + Retrieve the current default Graph API version. + */ +@property (class, nonatomic, copy, readonly) NSString *defaultGraphAPIVersion; + +/** + The quality of JPEG images sent to Facebook from the SDK, + expressed as a value from 0.0 to 1.0. + + If not explicitly set, the default is 0.9. + + @see [UIImageJPEGRepresentation](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIKitFunctionReference/#//apple_ref/c/func/UIImageJPEGRepresentation) */ +@property (class, nonatomic, assign) CGFloat JPEGCompressionQuality +NS_SWIFT_NAME(jpegCompressionQuality); + +/** + Controls sdk auto initailization. + If not explicitly set, the default is true + */ +@property (class, nonatomic, assign, getter=isAutoInitEnabled) BOOL autoInitEnabled; + +/** + Controls sdk crash report + If not explicitly set, the default is true + */ +@property (class, nonatomic, assign, getter=isInstrumentEnabled) BOOL instrumentEnabled +__attribute((deprecated("This attribute is no longer used, use autoLogAppEventsEnabled instead."))); + +/** + Controls the auto logging of basic app events, such as activateApp and deactivateApp. + If not explicitly set, the default is true + */ +@property (class, nonatomic, assign, getter=isAutoLogAppEventsEnabled) BOOL autoLogAppEventsEnabled; + +/** + Controls the fb_codeless_debug logging event + If not explicitly set, the default is true + */ +@property (class, nonatomic, assign, getter=isCodelessDebugLogEnabled) BOOL codelessDebugLogEnabled; + +/** + Controls the fb_codeless_debug logging event + If not explicitly set, the default is true + */ +@property (class, nonatomic, assign, getter=isAdvertiserIDCollectionEnabled) BOOL advertiserIDCollectionEnabled; + +/** + Whether data such as that generated through FBSDKAppEvents and sent to Facebook + should be restricted from being used for other than analytics and conversions. + Defaults to NO. This value is stored on the device and persists across app launches. + */ +@property (class, nonatomic, assign, getter=shouldLimitEventAndDataUsage) BOOL limitEventAndDataUsage; + +/** + A convenient way to toggle error recovery for all FBSDKGraphRequest instances created after this is set. + */ +@property (class, nonatomic, assign, getter=isGraphErrorRecoveryEnabled) BOOL graphErrorRecoveryEnabled; + +/** + The Facebook App ID used by the SDK. + + If not explicitly set, the default will be read from the application's plist (FacebookAppID). + */ +@property (class, nonatomic, copy, nullable) NSString *appID; + +/** + The default url scheme suffix used for sessions. + + If not explicitly set, the default will be read from the application's plist (FacebookUrlSchemeSuffix). + */ +@property (class, nonatomic, copy, nullable) NSString *appURLSchemeSuffix; + +/** + The Client Token that has been set via [FBSDKSettings setClientToken]. + This is needed for certain API calls when made anonymously, without a user-based access token. + + The Facebook App's "client token", which, for a given appid can be found in the Security + section of the Advanced tab of the Facebook App settings found at + + If not explicitly set, the default will be read from the application's plist (FacebookClientToken). + */ +@property (class, nonatomic, copy, nullable) NSString *clientToken; + +/** + The Facebook Display Name used by the SDK. + + This should match the Display Name that has been set for the app with the corresponding Facebook App ID, + in the Facebook App Dashboard. + + If not explicitly set, the default will be read from the application's plist (FacebookDisplayName). + */ +@property (class, nonatomic, copy, nullable) NSString *displayName; + +/** + The Facebook domain part. This can be used to change the Facebook domain + (e.g. @"beta") so that requests will be sent to `graph.beta.facebook.com` + + If not explicitly set, the default will be read from the application's plist (FacebookDomainPart). + */ +@property (class, nonatomic, copy, nullable) NSString *facebookDomainPart; + +/** + The current Facebook SDK logging behavior. This should consist of strings + defined as constants with FBSDKLoggingBehavior*. + + This should consist a set of strings indicating what information should be logged + defined as constants with FBSDKLoggingBehavior*. Set to an empty set in order to disable all logging. + + You can also define this via an array in your app plist with key "FacebookLoggingBehavior" or add and remove individual values via enableLoggingBehavior: or disableLogginBehavior: + + The default is a set consisting of FBSDKLoggingBehaviorDeveloperErrors + */ +@property (class, nonatomic, copy) NSSet *loggingBehaviors +NS_REFINED_FOR_SWIFT; + +/** + Overrides the default Graph API version to use with `FBSDKGraphRequests`. This overrides `FBSDK_TARGET_PLATFORM_VERSION`. + + The string should be of the form `@"v2.7"`. + + Defaults to `FBSDK_TARGET_PLATFORM_VERSION`. +*/ +@property (class, nonatomic, copy, null_resettable) NSString *graphAPIVersion; + +/** + Enable a particular Facebook SDK logging behavior. + + @param loggingBehavior The LoggingBehavior to enable. This should be a string defined as a constant with FBSDKLoggingBehavior*. + */ ++ (void)enableLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; + +/** + Disable a particular Facebook SDK logging behavior. + + @param loggingBehavior The LoggingBehavior to disable. This should be a string defined as a constant with FBSDKLoggingBehavior*. + */ ++ (void)disableLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m new file mode 100644 index 0000000..03af6f1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m @@ -0,0 +1,384 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKSettings+Internal.h" + +#import "FBSDKAccessTokenCache.h" +#import "FBSDKAccessTokenExpirer.h" +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKCoreKit.h" + +#define FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(TYPE, PLIST_KEY, GETTER, SETTER, DEFAULT_VALUE, ENABLE_CACHE) \ +static TYPE *g_##PLIST_KEY = nil; \ ++ (TYPE *)GETTER \ +{ \ + if (!g_##PLIST_KEY && ENABLE_CACHE) { \ + g_##PLIST_KEY = [[[NSUserDefaults standardUserDefaults] objectForKey:@#PLIST_KEY] copy]; \ + } \ + if (!g_##PLIST_KEY) { \ + g_##PLIST_KEY = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@#PLIST_KEY] copy] ?: DEFAULT_VALUE; \ + } \ + return g_##PLIST_KEY; \ +} \ ++ (void)SETTER:(TYPE *)value { \ + g_##PLIST_KEY = [value copy]; \ + if (ENABLE_CACHE) { \ + if (value) { \ + [[NSUserDefaults standardUserDefaults] setObject:value forKey:@#PLIST_KEY]; \ + } else { \ + [[NSUserDefaults standardUserDefaults] removeObjectForKey:@#PLIST_KEY]; \ + } \ + } \ + [FBSDKSettings _logIfSDKSettingsChanged]; \ +} + +FBSDKLoggingBehavior FBSDKLoggingBehaviorAccessTokens = @"include_access_tokens"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorPerformanceCharacteristics = @"perf_characteristics"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorAppEvents = @"app_events"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorInformational = @"informational"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorCacheErrors = @"cache_errors"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorUIControlErrors = @"ui_control_errors"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorDeveloperErrors = @"developer_errors"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugWarning = @"graph_api_debug_warning"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorGraphAPIDebugInfo = @"graph_api_debug_info"; +FBSDKLoggingBehavior FBSDKLoggingBehaviorNetworkRequests = @"network_requests"; + +static NSObject *g_tokenCache; +static NSMutableSet *g_loggingBehaviors; +static NSString *const FBSDKSettingsLimitEventAndDataUsage = @"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage"; +static NSString *const FBSDKSettingsBitmask = @"com.facebook.sdk:FBSDKSettingsBitmask"; +static BOOL g_disableErrorRecovery; +static NSString *g_userAgentSuffix; +static NSString *g_defaultGraphAPIVersion; +static FBSDKAccessTokenExpirer *g_accessTokenExpirer; + +// +// Warning messages for App Event Flags +// + +static NSString *const autoLogAppEventsEnabledNotSetWarning = + @": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want " + "to collect app install, app launch and in-app purchase events automatically. To request user consent " + "before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. " + "Learn more: https://developers.facebook.com/docs/app-events/getting-started-app-events-ios#disable-auto-events."; +static NSString *const advertiserIDCollectionEnabledNotSetWarning = + @": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if " + "you want to collect Advertiser ID for better advertising and analytics results. To request user consent " + "before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. " + "Learn more: https://developers.facebook.com/docs/app-events/getting-started-app-events-ios#disable-auto-events."; +static NSString *const advertiserIDCollectionEnabledFalseWarning = + @": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app " + "events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results."; + +@implementation FBSDKSettings + ++ (void)initialize +{ + if (self == [FBSDKSettings class]) { + g_tokenCache = [[FBSDKAccessTokenCache alloc] init]; + g_accessTokenExpirer = [[FBSDKAccessTokenExpirer alloc] init]; + + [FBSDKSettings _logWarnings]; + [FBSDKSettings _logIfSDKSettingsChanged]; + } +} + +#pragma mark - Plist Configuration Settings + +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookAppID, appID, setAppID, nil, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookUrlSchemeSuffix, appURLSchemeSuffix, setAppURLSchemeSuffix, nil, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookClientToken, clientToken, setClientToken, nil, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookDisplayName, displayName, setDisplayName, nil, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookDomainPart, facebookDomainPart, setFacebookDomainPart, nil, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookJpegCompressionQuality, _JPEGCompressionQualityNumber, _setJPEGCompressionQualityNumber, @0.9, NO); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookAutoInitEnabled, _autoInitEnabled, _setAutoInitEnabled, @1, YES); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookInstrumentEnabled, _instrumentEnabled, _setInstrumentEnabled, @1, YES); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookAutoLogAppEventsEnabled, _autoLogAppEventsEnabled, _setAutoLogAppEventsEnabled, @1, YES); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookAdvertiserIDCollectionEnabled, _advertiserIDCollectionEnabled, _setAdvertiserIDCollectionEnabled, @1, YES); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookCodelessDebugLogEnabled, _codelessDebugLogEnabled, + _setCodelessDebugLogEnabled, @0, YES); + ++ (BOOL)isGraphErrorRecoveryEnabled +{ + return !g_disableErrorRecovery; +} + ++ (void)setGraphErrorRecoveryEnabled:(BOOL)graphErrorRecoveryEnabled +{ + g_disableErrorRecovery = !graphErrorRecoveryEnabled; +} + ++ (CGFloat)JPEGCompressionQuality +{ + return [self _JPEGCompressionQualityNumber].floatValue; +} + ++ (void)setJPEGCompressionQuality:(CGFloat)JPEGCompressionQuality +{ + [self _setJPEGCompressionQualityNumber:@(JPEGCompressionQuality)]; +} + ++ (BOOL)isAutoInitEnabled +{ + return [self _autoInitEnabled].boolValue; +} + ++ (void)setAutoInitEnabled:(BOOL)autoInitEnabled +{ + [self _setAutoInitEnabled:@(autoInitEnabled)]; + if (autoInitEnabled) { + [FBSDKApplicationDelegate initializeSDK:nil]; + } +} + ++ (BOOL)isInstrumentEnabled +{ + return [self _instrumentEnabled].boolValue; +} + ++ (void)setInstrumentEnabled:(BOOL)instrumentEnabled +{ + [self _setInstrumentEnabled:@(instrumentEnabled)]; +} + ++ (BOOL)isCodelessDebugLogEnabled +{ + return [self _codelessDebugLogEnabled].boolValue; +} + ++ (void)setCodelessDebugLogEnabled:(BOOL)codelessDebugLogEnabled +{ + [self _setCodelessDebugLogEnabled:@(codelessDebugLogEnabled)]; +} + ++ (BOOL)isAutoLogAppEventsEnabled +{ + return [self _autoLogAppEventsEnabled].boolValue; +} + ++ (void)setAutoLogAppEventsEnabled:(BOOL)autoLogAppEventsEnabled +{ + [self _setAutoLogAppEventsEnabled:@(autoLogAppEventsEnabled)]; +} + ++ (BOOL)isAdvertiserIDCollectionEnabled +{ + return [self _advertiserIDCollectionEnabled].boolValue; +} + ++ (void)setAdvertiserIDCollectionEnabled:(BOOL)advertiserIDCollectionEnabled +{ + [self _setAdvertiserIDCollectionEnabled:@(advertiserIDCollectionEnabled)]; +} + ++ (BOOL)shouldLimitEventAndDataUsage +{ + NSNumber *storedValue = [[NSUserDefaults standardUserDefaults] objectForKey:FBSDKSettingsLimitEventAndDataUsage]; + if (storedValue == nil) { + return NO; + } + return storedValue.boolValue; +} + ++ (void)setLimitEventAndDataUsage:(BOOL)limitEventAndDataUsage +{ + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + [defaults setObject:@(limitEventAndDataUsage) forKey:FBSDKSettingsLimitEventAndDataUsage]; + [defaults synchronize]; +} + ++ (NSSet *)loggingBehaviors +{ + if (!g_loggingBehaviors) { + NSArray *bundleLoggingBehaviors = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"FacebookLoggingBehavior"]; + if (bundleLoggingBehaviors) { + g_loggingBehaviors = [[NSMutableSet alloc] initWithArray:bundleLoggingBehaviors]; + } else { + // Establish set of default enabled logging behaviors. You can completely disable logging by + // specifying an empty array for FacebookLoggingBehavior in your Info.plist. + g_loggingBehaviors = [[NSMutableSet alloc] initWithObjects:FBSDKLoggingBehaviorDeveloperErrors, nil]; + } + } + return [g_loggingBehaviors copy]; +} + ++ (void)setLoggingBehaviors:(NSSet *)loggingBehaviors +{ + if (![g_loggingBehaviors isEqualToSet:loggingBehaviors]) { + g_loggingBehaviors = [loggingBehaviors mutableCopy]; + + [self updateGraphAPIDebugBehavior]; + } +} + ++ (void)enableLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior +{ + if (!g_loggingBehaviors) { + [self loggingBehaviors]; + } + [g_loggingBehaviors addObject:loggingBehavior]; + [self updateGraphAPIDebugBehavior]; +} + ++ (void)disableLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior +{ + if (!g_loggingBehaviors) { + [self loggingBehaviors]; + } + [g_loggingBehaviors removeObject:loggingBehavior]; + [self updateGraphAPIDebugBehavior]; +} + +#pragma mark - Readonly Configuration Settings + ++ (NSString *)sdkVersion +{ + return FBSDK_VERSION_STRING; +} + +#pragma mark - Internal + ++ (NSObject *)accessTokenCache +{ + return g_tokenCache; +} + ++ (void)setAccessTokenCache:(NSObject *)cache +{ + if (g_tokenCache != cache) { + g_tokenCache = cache; + } +} + ++ (NSString *)userAgentSuffix +{ + return g_userAgentSuffix; +} + ++ (void)setUserAgentSuffix:(NSString *)suffix +{ + if (![g_userAgentSuffix isEqualToString:suffix]) { + g_userAgentSuffix = suffix; + } +} + ++ (void)setGraphAPIVersion:(NSString *)version +{ + if (![g_defaultGraphAPIVersion isEqualToString:version]) + { + g_defaultGraphAPIVersion = version; + } +} + ++ (NSString *)defaultGraphAPIVersion +{ + return FBSDK_TARGET_PLATFORM_VERSION; +} + ++ (NSString *)graphAPIVersion +{ + return g_defaultGraphAPIVersion ?: self.defaultGraphAPIVersion; +} + ++ (NSNumber *)appEventSettingsForPlistKey:(NSString *)plistKey + defaultValue:(NSNumber *)defaultValue +{ + return [[[NSBundle mainBundle] objectForInfoDictionaryKey:plistKey] copy] ?: defaultValue; +} + ++ (NSNumber *)appEventSettingsForUserDefaultsKey:(NSString *)userDefaultsKey + defaultValue:(NSNumber *)defaultValue +{ + NSData *data = [[NSUserDefaults standardUserDefaults] objectForKey:userDefaultsKey]; + if ([data isKindOfClass:[NSNumber class]]) { + return (NSNumber *)data; + } + return defaultValue; +} + ++ (void)_logWarnings +{ + NSBundle *mainBundle = [NSBundle mainBundle]; + // Log warnings for App Event Flags + if (![mainBundle objectForInfoDictionaryKey:@"FacebookAutoLogAppEventsEnabled"]) { + NSLog(autoLogAppEventsEnabledNotSetWarning); + } + if (![mainBundle objectForInfoDictionaryKey:@"FacebookAdvertiserIDCollectionEnabled"]) { + NSLog(advertiserIDCollectionEnabledNotSetWarning); + } + if (![FBSDKSettings isAdvertiserIDCollectionEnabled]) { + NSLog(advertiserIDCollectionEnabledFalseWarning); + } +} + ++ (void)_logIfSDKSettingsChanged +{ + NSInteger bitmask = 0; + NSInteger bit = 0; + bitmask |= ([FBSDKSettings isAutoInitEnabled] ? 1 : 0) << bit++; + bitmask |= ([FBSDKSettings isAutoLogAppEventsEnabled] ? 1 : 0) << bit++; + bitmask |= ([FBSDKSettings isAdvertiserIDCollectionEnabled] ? 1 : 0) << bit++; + + NSInteger previousBitmask = [[NSUserDefaults standardUserDefaults] integerForKey:FBSDKSettingsBitmask]; + if (previousBitmask != bitmask) { + [[NSUserDefaults standardUserDefaults] setInteger:bitmask forKey:FBSDKSettingsBitmask]; + + NSArray *keys = @[@"FacebookAutoInitEnabled", + @"FacebookAutoLogAppEventsEnabled", + @"FacebookAdvertiserIDCollectionEnabled"]; + NSArray *defaultValues = @[@YES, @YES, @YES]; + NSInteger initialBitmask = 0; + NSInteger usageBitmask = 0; + for (int i = 0; i < keys.count; i++) { + NSNumber *plistValue = [[NSBundle mainBundle] objectForInfoDictionaryKey:keys[i]]; + BOOL initialValue = [(plistValue ?: defaultValues[i]) boolValue]; + initialBitmask |= (initialValue ? 1 : 0) << i; + usageBitmask |= (plistValue != nil ? 1 : 0) << i; + } + [FBSDKAppEvents logInternalEvent:@"fb_sdk_settings_changed" + parameters:@{@"usage": @(usageBitmask), + @"initial": @(initialBitmask), + @"previous":@(previousBitmask), + @"current": @(bitmask)} + isImplicitlyLogged:YES]; + } +} + +#pragma mark - Internal - Graph API Debug + ++ (void)updateGraphAPIDebugBehavior +{ + // Enable Warnings everytime Info is enabled + if ([g_loggingBehaviors containsObject:FBSDKLoggingBehaviorGraphAPIDebugInfo] + && ![g_loggingBehaviors containsObject:FBSDKLoggingBehaviorGraphAPIDebugWarning]) { + [g_loggingBehaviors addObject:FBSDKLoggingBehaviorGraphAPIDebugWarning]; + } +} + ++ (NSString *)graphAPIDebugParamValue +{ + if ([[self loggingBehaviors] containsObject:FBSDKLoggingBehaviorGraphAPIDebugInfo]) { + return @"info"; + } else if ([[self loggingBehaviors] containsObject:FBSDKLoggingBehaviorGraphAPIDebugWarning]) { + return @"warning"; + } + + return nil; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h new file mode 100644 index 0000000..8b5ed3e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h @@ -0,0 +1,110 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKConstants.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAccessToken; + +/** + Callback block for returning an array of FBSDKAccessToken instances (and possibly `NSNull` instances); or an error. + */ +typedef void (^FBSDKAccessTokensBlock)(NSArray *tokens, NSError *_Nullable error) +NS_SWIFT_NAME(AccessTokensBlock); + + +/** + Provides methods for managing test accounts for testing Facebook integration. + + + Facebook allows developers to create test accounts for testing their applications' + Facebook integration (see https://developers.facebook.com/docs/test_users/). This class + simplifies use of these accounts for writing tests. It is not designed for use in + production application code. + + This class will make Graph API calls on behalf of your app to manage test accounts and requires + an app id and app secret. You will typically use this class to write unit or integration tests. + Make sure you NEVER include your app secret in your production app. + */ +NS_SWIFT_NAME(TestUsersManager) +@interface FBSDKTestUsersManager : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + construct or return the shared instance + @param appID the Facebook app id + @param appSecret the Facebook app secret + */ ++ (instancetype)sharedInstanceForAppID:(NSString *)appID appSecret:(NSString *)appSecret +NS_SWIFT_NAME(shared(forAppID:appSecret:)); + +/** + retrieve FBSDKAccessToken instances for test accounts with the specific permissions. + @param arraysOfPermissions an array of permissions sets, such as @[ [NSSet setWithObject:@"email"], [NSSet setWithObject:@"user_birthday"]] + if you needed two test accounts with email and birthday permissions, respectively. You can pass in empty nested sets + if you need two arbitrary test accounts. + @param createIfNotFound if YES, new test accounts are created if no test accounts existed that fit the permissions + requirement + @param handler the callback to invoke which will return an array of `FBAccessTokenData` instances or an `NSError`. + If param `createIfNotFound` is NO, the array may contain `[NSNull null]` instances. + + + If you are requesting test accounts with differing number of permissions, try to order + `arrayOfPermissionsArrays` so that the most number of permissions come first to minimize creation of new + test accounts. + */ +- (void)requestTestAccountTokensWithArraysOfPermissions:(NSArray *> *)arraysOfPermissions + createIfNotFound:(BOOL)createIfNotFound + completionHandler:(nullable FBSDKAccessTokensBlock)handler +NS_SWIFT_NAME(requestTestAccountTokens(withPermissions:createIfNotFound:completionHandler:)); + +/** + add a test account with the specified permissions + @param permissions the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] + @param handler the callback handler + */ +- (void)addTestAccountWithPermissions:(NSSet *)permissions + completionHandler:(nullable FBSDKAccessTokensBlock)handler; + +/** + remove a test account for the given user id + @param userId the user id + @param handler the callback handler + */ +- (void)removeTestAccount:(NSString *)userId + completionHandler:(nullable FBSDKErrorBlock)handler; + +/** + Make two test users friends with each other. + @param first the token of the first user + @param second the token of the second user + @param callback the callback handler + */ +- (void)makeFriendsWithFirst:(FBSDKAccessToken *)first + second:(FBSDKAccessToken *)second + callback:(nullable FBSDKErrorBlock)callback +NS_SWIFT_NAME(makeFriends(first:second:callback:)); + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m new file mode 100644 index 0000000..32a15ed --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m @@ -0,0 +1,330 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKTestUsersManager.h" + +#import "FBSDKCoreKit+Internal.h" + +static NSString *const kFBGraphAPITestUsersPathFormat = @"%@/accounts/test-users"; +static NSString *const kAccountsDictionaryTokenKey = @"access_token"; +static NSString *const kAccountsDictionaryPermissionsKey = @"permissions"; +static NSMutableDictionary *gInstancesDictionary; + +@interface FBSDKTestUsersManager() +- (instancetype)initWithAppID:(NSString *)appID appSecret:(NSString *)appSecret NS_DESIGNATED_INITIALIZER; +@end + +@implementation FBSDKTestUsersManager +{ + NSString *_appID; + NSString *_appSecret; + // dictionary with format like: + // { user_id : { kAccountsDictionaryTokenKey : "token", + // kAccountsDictionaryPermissionsKey : [ permissions ] } + NSMutableDictionary *_accounts; +} + +- (instancetype)initWithAppID:(NSString *)appID appSecret:(NSString *)appSecret { + if ((self = [super init])) { + _appID = [appID copy]; + _appSecret = [appSecret copy]; + _accounts = [NSMutableDictionary dictionary]; + } + return self; +} + ++ (instancetype)sharedInstanceForAppID:(NSString *)appID appSecret:(NSString *)appSecret { + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + gInstancesDictionary = [NSMutableDictionary dictionary]; + }); + + NSString *instanceKey = [NSString stringWithFormat:@"%@|%@", appID, appSecret]; + if (!gInstancesDictionary[instanceKey]) { + gInstancesDictionary[instanceKey] = [[FBSDKTestUsersManager alloc] initWithAppID:appID appSecret:appSecret]; + } + return gInstancesDictionary[instanceKey]; +} + +- (void)requestTestAccountTokensWithArraysOfPermissions:(NSArray *> *)arraysOfPermissions + createIfNotFound:(BOOL)createIfNotFound + completionHandler:(FBSDKAccessTokensBlock)handler { + arraysOfPermissions = arraysOfPermissions ?: @[[NSSet set]]; + + // wrap work in a block so that we can chain it to after a fetch of existing accounts if we need to. + void (^helper)(NSError *) = ^(NSError *error){ + if (error) { + if (handler) { + handler(@[], error); + } + return; + } + NSMutableArray *tokenDatum = [NSMutableArray arrayWithCapacity:arraysOfPermissions.count]; + NSMutableSet *collectedUserIds = [NSMutableSet setWithCapacity:arraysOfPermissions.count]; + __block BOOL canInvokeHandler = YES; + __weak id weakSelf = self; + [arraysOfPermissions enumerateObjectsUsingBlock:^(NSSet *desiredPermissions, NSUInteger idx, BOOL *stop) { + NSArray* userIdAndTokenPair = [self userIdAndTokenOfExistingAccountWithPermissions:desiredPermissions skip:collectedUserIds]; + if (!userIdAndTokenPair) { + if (createIfNotFound) { + [self addTestAccountWithPermissions:desiredPermissions + completionHandler:^(NSArray *tokens, NSError *addError) { + if (addError) { + if (handler) { + handler(@[], addError); + } + } else { + [weakSelf requestTestAccountTokensWithArraysOfPermissions:arraysOfPermissions + createIfNotFound:createIfNotFound + completionHandler:handler]; + } + }]; + // stop the enumeration (ane flag so that callback to addTestAccount* will resolve our handler now). + canInvokeHandler = NO; + *stop = YES; + return; + } else { + [tokenDatum addObject:[NSNull null]]; + } + } else { + NSString *userId = userIdAndTokenPair[0]; + NSString *tokenString = userIdAndTokenPair[1]; + [collectedUserIds addObject:userId]; + [tokenDatum addObject:[self tokenDataForTokenString:tokenString + permissions:desiredPermissions + userId:userId]]; + } + }]; + + if (canInvokeHandler && handler) { + handler(tokenDatum, nil); + } + }; + if (_accounts.count == 0) { + [self fetchExistingTestAccountsWithAfterCursor:nil handler:helper]; + } else { + helper(NULL); + } +} + +- (void)addTestAccountWithPermissions:(NSSet *)permissions + completionHandler:(FBSDKAccessTokensBlock)handler { + NSDictionary *params = @{ + @"installed" : @"true", + @"permissions" : [permissions.allObjects componentsJoinedByString:@","], + @"access_token" : self.appAccessToken + }; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:kFBGraphAPITestUsersPathFormat, _appID] + parameters:params + tokenString:[self appAccessToken] + version:nil + HTTPMethod:FBSDKHTTPMethodPOST]; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (error) { + if (handler) { + handler(@[], error); + } + } else { + NSMutableDictionary *accountData = [NSMutableDictionary dictionaryWithCapacity:2]; + accountData[kAccountsDictionaryPermissionsKey] = [NSSet setWithSet:permissions]; + accountData[kAccountsDictionaryTokenKey] = result[@"access_token"]; + self->_accounts[result[@"id"]] = accountData; + + if (handler) { + FBSDKAccessToken *token = [self tokenDataForTokenString:accountData[kAccountsDictionaryTokenKey] + permissions:permissions + userId:result[@"id"]]; + handler(@[token], nil); + } + } + }]; +} + +- (void)makeFriendsWithFirst:(FBSDKAccessToken *)first second:(FBSDKAccessToken *)second callback:(FBSDKErrorBlock)callback +{ + __block int expectedCount = 2; + void (^complete)(NSError *) = ^(NSError *error) { + // ignore if they're already friends or pending request + if ([error.userInfo[FBSDKGraphRequestErrorGraphErrorCodeKey] integerValue] == 522 || + [error.userInfo[FBSDKGraphRequestErrorGraphErrorCodeKey] integerValue] == 520) { + error = nil; + } + if (--expectedCount == 0 || error) { + callback(error); + } + }; + FBSDKGraphRequest *one = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/friends/%@", first.userID, second.userID] + parameters:@{} + tokenString:first.tokenString + version:nil + HTTPMethod:FBSDKHTTPMethodPOST]; + FBSDKGraphRequest *two = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/friends/%@", second.userID, first.userID] + parameters:@{} + tokenString:second.tokenString + version:nil + HTTPMethod:FBSDKHTTPMethodPOST]; + FBSDKGraphRequestConnection *conn = [[FBSDKGraphRequestConnection alloc] init]; + [conn addRequest:one + batchEntryName:@"first" + completionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + complete(error); + }]; + [conn addRequest:two + batchParameters:@{ @"depends_on" : @"first"} + completionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + complete(error); + }]; + [conn start]; +} + +- (void)removeTestAccount:(NSString *)userId completionHandler:(FBSDKErrorBlock)handler { + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:userId + parameters:@{} + tokenString:self.appAccessToken + version:nil + HTTPMethod:@"DELETE"]; + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (handler) { + handler(error); + } + }]; + [_accounts removeObjectForKey:userId]; +} + +#pragma mark - private methods +- (FBSDKAccessToken *)tokenDataForTokenString:(NSString *)tokenString permissions:(NSSet *)permissions userId:(NSString *)userId{ + return [[FBSDKAccessToken alloc] initWithTokenString:tokenString + permissions:permissions.allObjects + declinedPermissions:@[] + expiredPermissions:@[] + appID:_appID + userID:userId + expirationDate:nil + refreshDate:nil + dataAccessExpirationDate:nil + graphDomain:nil]; +} + +- (NSArray *)userIdAndTokenOfExistingAccountWithPermissions:(NSSet *)permissions skip:(NSSet *)setToSkip { + __block NSString *userId = nil; + __block NSString *token = nil; + + [_accounts enumerateKeysAndObjectsUsingBlock:^(NSString *key, NSDictionary *accountData, BOOL *stop) { + if ([setToSkip containsObject:key]) { + return; + } + NSSet *accountPermissions = accountData[kAccountsDictionaryPermissionsKey]; + if ([permissions isSubsetOfSet:accountPermissions]) { + token = accountData[kAccountsDictionaryTokenKey]; + userId = key; + *stop = YES; + } + }]; + if (userId && token) { + return @[userId, token]; + } else { + return nil; + } +} + +- (NSString *)appAccessToken { + return [NSString stringWithFormat:@"%@|%@", _appID, _appSecret]; +} + +- (void)fetchExistingTestAccountsWithAfterCursor:(NSString *)after handler:(FBSDKErrorBlock)handler { + FBSDKGraphRequestConnection *connection = [[FBSDKGraphRequestConnection alloc] init]; + FBSDKGraphRequest *requestForAccountIds = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:kFBGraphAPITestUsersPathFormat, _appID] + parameters:@{@"limit" : @"50", + @"after" : after ?: @"", + @"fields": @"" + } + tokenString:self.appAccessToken + version:nil + HTTPMethod:FBSDKHTTPMethodGET]; + __block NSString *afterCursor = nil; + __block NSInteger expectedTestAccounts = 0; + FBSDKGraphRequestConnection *permissionConnection = [[FBSDKGraphRequestConnection alloc] init]; + [connection addRequest:requestForAccountIds completionHandler:^(FBSDKGraphRequestConnection *innerConnection, id result, NSError *error) { + if (error) { + if (handler) { + handler(error); + } + // on errors, clear out accounts since it may be in a bad state + [self->_accounts removeAllObjects]; + return; + } else { + for (NSDictionary *account in result[@"data"]) { + NSString *userId = account[@"id"]; + NSString *token = account[@"access_token"]; + if (userId && token) { + self->_accounts[userId] = [NSMutableDictionary dictionaryWithCapacity:2]; + self->_accounts[userId][kAccountsDictionaryTokenKey] = token; + expectedTestAccounts++; + [permissionConnection addRequest:[[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@?fields=permissions", userId] + parameters:@{} + tokenString:self.appAccessToken + version:nil + HTTPMethod:FBSDKHTTPMethodGET] + completionHandler:^(FBSDKGraphRequestConnection *innerConnection2, id innerResult, NSError *innerError) { + if (self->_accounts.count == 0) { + // indicates an earlier error that was already passed to handler, so just short circuit. + return; + } + if (innerError) { + if (handler) { + handler(innerError); + } + [self->_accounts removeAllObjects]; + return; + } else { + NSMutableSet *grantedPermissions = [NSMutableSet set]; + NSArray *resultPermissionsDictionaries = innerResult[@"permissions"][@"data"]; + [resultPermissionsDictionaries enumerateObjectsUsingBlock:^(NSDictionary *obj, NSUInteger idx, BOOL *stop) { + if ([obj[@"status"] isEqualToString:@"granted"]) { + [grantedPermissions addObject:obj[@"permission"]]; + } + }]; + self->_accounts[userId][kAccountsDictionaryPermissionsKey] = grantedPermissions; + } + expectedTestAccounts--; + if (!expectedTestAccounts) { + if (afterCursor) { + [self fetchExistingTestAccountsWithAfterCursor:afterCursor handler:handler]; + } else if (handler) { + handler(nil); + } + } + } + ]; + } + } + afterCursor = result[@"paging"][@"cursors"][@"after"]; + } + + if (expectedTestAccounts) { + // finished fetching ids and tokens, now kick off the request for all the permissions + [permissionConnection start]; + } else { + if (handler) { + handler(nil); + } + } + }]; + [connection start]; +} +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h new file mode 100644 index 0000000..969d8e0 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h @@ -0,0 +1,104 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAppLink; + +/** + Provides a set of utilities for working with NSURLs, such as parsing of query parameters + and handling for App Link requests. + */ +NS_SWIFT_NAME(AppLinkURL) +@interface FBSDKURL : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Creates a link target from a raw URL. + On success, this posts the FBSDKAppLinkParseEventName measurement event. If you are constructing the FBSDKURL within your application delegate's + application:openURL:sourceApplication:annotation:, you should instead use URLWithInboundURL:sourceApplication: + to support better FBSDKMeasurementEvent notifications + @param url The instance of `NSURL` to create FBSDKURL from. + */ ++ (instancetype)URLWithURL:(NSURL *)url +NS_SWIFT_NAME(init(url:)); + +/** + Creates a link target from a raw URL received from an external application. This is typically called from the app delegate's + application:openURL:sourceApplication:annotation: and will post the FBSDKAppLinkNavigateInEventName measurement event. + @param url The instance of `NSURL` to create FBSDKURL from. + @param sourceApplication the bundle ID of the app that is requesting your app to open the URL. The same sourceApplication in application:openURL:sourceApplication:annotation: + */ ++ (instancetype)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication +NS_SWIFT_NAME(init(inboundURL:sourceApplication:)); + +/** + Gets the target URL. If the link is an App Link, this is the target of the App Link. + Otherwise, it is the url that created the target. + */ +@property (nonatomic, strong, readonly) NSURL *targetURL; + +/** + Gets the query parameters for the target, parsed into an NSDictionary. + */ +@property (nonatomic, strong, readonly) NSDictionary *targetQueryParameters; + +/** + If this link target is an App Link, this is the data found in al_applink_data. + Otherwise, it is nil. + */ +@property (nonatomic, strong, readonly, nullable) NSDictionary *appLinkData; + +/** + If this link target is an App Link, this is the data found in extras. + */ +@property (nonatomic, strong, readonly, nullable) NSDictionary *appLinkExtras; + +/** + The App Link indicating how to navigate back to the referer app, if any. + */ +@property (nonatomic, strong, readonly, nullable) FBSDKAppLink *appLinkReferer; + +/** + The URL that was used to create this FBSDKURL. + */ +@property (nonatomic, strong, readonly) NSURL *inputURL; + +/** + The query parameters of the inputURL, parsed into an NSDictionary. + */ +@property (nonatomic, strong, readonly) NSDictionary *inputQueryParameters; + +/** + The flag indicating whether the URL comes from auto app link +*/ +@property (nonatomic, readonly, getter=isAutoAppLink) BOOL isAutoAppLink; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m new file mode 100644 index 0000000..958f4f7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m @@ -0,0 +1,165 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKURL_Internal.h" + +#import "FBSDKAppLinkTarget.h" +#import "FBSDKAppLink_Internal.h" +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKMeasurementEvent_Internal.h" +#import "FBSDKSettings.h" + +NSString *const AutoAppLinkFlagKey = @"is_auto_applink"; + +@implementation FBSDKURL + +- (instancetype)initWithURL:(NSURL *)url forOpenInboundURL:(BOOL)forOpenURLEvent sourceApplication:(NSString *)sourceApplication forRenderBackToReferrerBar:(BOOL)forRenderBackToReferrerBar { + self = [super init]; + if (!self) return nil; + + _inputURL = url; + _targetURL = url; + + // Parse the query string parameters for the base URL + NSDictionary *baseQuery = [FBSDKURL queryParametersForURL:url]; + _inputQueryParameters = baseQuery; + _targetQueryParameters = baseQuery; + + // Check for applink_data + NSString *appLinkDataString = baseQuery[FBSDKAppLinkDataParameterName]; + if (appLinkDataString) { + // Try to parse the JSON + NSError *error = nil; + NSDictionary *applinkData = + [NSJSONSerialization JSONObjectWithData:[appLinkDataString dataUsingEncoding:NSUTF8StringEncoding] + options:0 + error:&error]; + if (!error && [applinkData isKindOfClass:[NSDictionary class]]) { + // If the version is not specified, assume it is 1. + NSString *version = applinkData[FBSDKAppLinkVersionKeyName] ?: @"1.0"; + NSString *target = applinkData[FBSDKAppLinkTargetKeyName]; + if ([version isKindOfClass:[NSString class]] && + [version isEqual:FBSDKAppLinkVersion]) { + // There's applink data! The target should actually be the applink target. + _appLinkData = applinkData; + id applinkExtras = applinkData[FBSDKAppLinkExtrasKeyName]; + if (applinkExtras && [applinkExtras isKindOfClass:[NSDictionary class]]) { + _appLinkExtras = applinkExtras; + } + _targetURL = ([target isKindOfClass:[NSString class]] ? [NSURL URLWithString:target] : url); + _targetQueryParameters = [FBSDKURL queryParametersForURL:_targetURL]; + + NSDictionary *refererAppLink = _appLinkData[FBSDKAppLinkRefererAppLink]; + NSString *refererURLString = refererAppLink[FBSDKAppLinkRefererUrl]; + NSString *refererAppName = refererAppLink[FBSDKAppLinkRefererAppName]; + + if (refererURLString && refererAppName) { + FBSDKAppLinkTarget *appLinkTarget = [FBSDKAppLinkTarget appLinkTargetWithURL:[NSURL URLWithString:refererURLString] + appStoreId:nil + appName:refererAppName]; + _appLinkReferer = [FBSDKAppLink appLinkWithSourceURL:[NSURL URLWithString:refererURLString] + targets:@[ appLinkTarget ] + webURL:nil + isBackToReferrer:YES]; + } + + // Raise Measurement Event + NSString *const EVENT_YES_VAL = @"1"; + NSString *const EVENT_NO_VAL = @"0"; + NSMutableDictionary *logData = [[NSMutableDictionary alloc] init]; + logData[@"version"] = version; + if (refererURLString) { + logData[@"refererURL"] = refererURLString; + } + if (refererAppName) { + logData[@"refererAppName"] = refererAppName; + } + if (sourceApplication) { + logData[@"sourceApplication"] = sourceApplication; + } + if (_targetURL.absoluteString) { + logData[@"targetURL"] = _targetURL.absoluteString; + } + if (_inputURL.absoluteString) { + logData[@"inputURL"] = _inputURL.absoluteString; + } + if (_inputURL.scheme) { + logData[@"inputURLScheme"] = _inputURL.scheme; + } + logData[@"forRenderBackToReferrerBar"] = forRenderBackToReferrerBar ? EVENT_YES_VAL : EVENT_NO_VAL; + logData[@"forOpenUrl"] = forOpenURLEvent ? EVENT_YES_VAL : EVENT_NO_VAL; + [FBSDKMeasurementEvent postNotificationForEventName:FBSDKAppLinkParseEventName args:logData]; + if (forOpenURLEvent) { + [FBSDKMeasurementEvent postNotificationForEventName:FBSDKAppLinkNavigateInEventName args:logData]; + } + } + } + } + + return self; +} + +- (BOOL)isAutoAppLink { + NSString *host = self.targetURL.host; + NSString *scheme = self.targetURL.scheme; + NSString *expectedHost = @"applinks"; + NSString *expectedScheme = [NSString stringWithFormat:@"fb%@", FBSDKSettings.appID]; + BOOL autoFlag = [self.appLinkData[AutoAppLinkFlagKey] boolValue]; + return autoFlag && [expectedHost isEqual:host] && [expectedScheme isEqual:scheme]; +} + ++ (instancetype)URLWithURL:(NSURL *)url { + return [[FBSDKURL alloc] initWithURL:url forOpenInboundURL:NO sourceApplication:nil forRenderBackToReferrerBar:NO]; +} + ++ (instancetype)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication { + return [[FBSDKURL alloc] initWithURL:url forOpenInboundURL:YES sourceApplication:sourceApplication forRenderBackToReferrerBar:NO]; +} + ++ (instancetype)URLForRenderBackToReferrerBarURL:(NSURL *)url { + return [[FBSDKURL alloc] initWithURL:url forOpenInboundURL:NO sourceApplication:nil forRenderBackToReferrerBar:YES]; +} + ++ (NSDictionary *)queryParametersForURL:(NSURL *)url { + NSMutableDictionary *parameters = [NSMutableDictionary dictionary]; + NSString *query = url.query; + if ([query isEqualToString:@""]) { + return @{}; + } + NSArray *queryComponents = [query componentsSeparatedByString:@"&"]; + for (NSString *component in queryComponents) { + NSRange equalsLocation = [component rangeOfString:@"="]; + if (equalsLocation.location == NSNotFound) { + // There's no equals, so associate the key with NSNull + parameters[[FBSDKBasicUtility URLDecode:component]] = [NSNull null]; + } else { + NSString *key = [FBSDKBasicUtility URLDecode:[component substringToIndex:equalsLocation.location]]; + NSString *value = [FBSDKBasicUtility URLDecode:[component substringFromIndex:equalsLocation.location + 1]]; + parameters[key] = value; + } + } + return [NSDictionary dictionaryWithDictionary:parameters]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h new file mode 100644 index 0000000..13c4a5d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h @@ -0,0 +1,91 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Class to contain common utility methods. + */ +NS_SWIFT_NAME(Utility) +@interface FBSDKUtility : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Parses a query string into a dictionary. + @param queryString The query string value. + @return A dictionary with the key/value pairs. + */ ++ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString +NS_SWIFT_NAME(dictionary(withQuery:)); + +/** + Constructs a query string from a dictionary. + @param dictionary The dictionary with key/value pairs for the query string. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return Query string representation of the parameters. + */ ++ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary + error:(NSError **)errorRef +NS_SWIFT_NAME(query(from:)) +__attribute__((swift_error(nonnull_error))); + +/** + Decodes a value from an URL. + @param value The value to decode. + @return The decoded value. + */ ++ (NSString *)URLDecode:(NSString *)value +NS_SWIFT_NAME(decode(urlString:)); + +/** + Encodes a value for an URL. + @param value The value to encode. + @return The encoded value. + */ ++ (NSString *)URLEncode:(NSString *)value +NS_SWIFT_NAME(encode(urlString:)); + +/** + Creates a timer using Grand Central Dispatch. + @param interval The interval to fire the timer, in seconds. + @param block The code block to execute when timer is fired. + @return The dispatch handle. + */ ++ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block; + +/** + Stop a timer that was started by startGCDTimerWithInterval. + @param timer The dispatch handle received from startGCDTimerWithInterval. + */ ++ (void)stopGCDTimer:(dispatch_source_t)timer; + +/** + Get SHA256 hased string of NSString/NSData + + @param input The data that needs to be hashed, it could be NSString or NSData. + */ ++ (nullable NSString *)SHA256Hash:(nullable NSObject *)input +NS_SWIFT_NAME(sha256Hash(_:)); + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m new file mode 100644 index 0000000..8a32c66 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m @@ -0,0 +1,97 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKUtility.h" + +#import + +#import "FBSDKInternalUtility.h" + +@implementation FBSDKUtility + ++ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString +{ + return [FBSDKBasicUtility dictionaryWithQueryString:queryString]; +} + ++ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary error:(NSError **)errorRef +{ + return [FBSDKBasicUtility queryStringWithDictionary:dictionary error:errorRef invalidObjectHandler:NULL]; +} + ++ (NSString *)URLDecode:(NSString *)value +{ + return [FBSDKBasicUtility URLDecode:value]; +} + ++ (NSString *)URLEncode:(NSString *)value +{ + return [FBSDKBasicUtility URLEncode:value]; +} + ++ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block +{ + dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, // source type + 0, // handle + 0, // mask + dispatch_get_main_queue()); // queue + + dispatch_source_set_timer(timer, // dispatch source + dispatch_time(DISPATCH_TIME_NOW, interval * NSEC_PER_SEC), // start + interval * NSEC_PER_SEC, // interval + 0 * NSEC_PER_SEC); // leeway + + dispatch_source_set_event_handler(timer, block); + + dispatch_resume(timer); + + return timer; +} + ++ (void)stopGCDTimer:(dispatch_source_t)timer +{ + if (timer) { + dispatch_source_cancel(timer); + } +} + ++ (NSString *)SHA256Hash:(NSObject *)input +{ + NSData *data = nil; + + if ([input isKindOfClass:[NSData class]]) { + data = (NSData *)input; + } else if ([input isKindOfClass:[NSString class]]) { + data = [(NSString *)input dataUsingEncoding:NSUTF8StringEncoding]; + } + + if (!data) { + return nil; + } + + uint8_t digest[CC_SHA256_DIGEST_LENGTH]; + CC_SHA256(data.bytes, (CC_LONG)data.length, digest); + NSMutableString *hashed = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2]; + for (int i = 0; i < CC_SHA256_DIGEST_LENGTH; i++) { + [hashed appendFormat:@"%02x", digest[i]]; + } + + return [hashed copy]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.h new file mode 100644 index 0000000..e57c797 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.h @@ -0,0 +1,124 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#ifdef BUCK +#import +#else +#import "FBSDKConstants.h" +#endif + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKGraphErrorRecoveryProcessor; +@class FBSDKGraphRequest; + +/** + Defines a delegate for `FBSDKGraphErrorRecoveryProcessor`. + */ +NS_SWIFT_NAME(GraphErrorRecoveryProcessorDelegate) +@protocol FBSDKGraphErrorRecoveryProcessorDelegate + +/** + Indicates the error recovery has been attempted. + @param processor the processor instance. + @param didRecover YES if the recovery was successful. + @param error the error that that was attempted to be recovered from. + */ +- (void)processorDidAttemptRecovery:(FBSDKGraphErrorRecoveryProcessor *)processor + didRecover:(BOOL)didRecover + error:(nullable NSError *)error; + +@optional +/** + Indicates the processor is about to process the error. + @param processor the processor instance. + @param error the error is about to be processed. + + return NO if the processor should not process the error. For example, + if you want to prevent alerts of localized messages but otherwise perform retries and recoveries, + you could return NO for errors where userInfo[FBSDKGraphRequestErrorKey] equal to FBSDKGraphRequestErrorOther + */ +- (BOOL)processorWillProcessError:(FBSDKGraphErrorRecoveryProcessor *)processor + error:(nullable NSError *)error; + +@end + +NS_ASSUME_NONNULL_END + +NS_ASSUME_NONNULL_BEGIN + +/** + Defines a type that can process Facebook NSErrors with best practices. + + Facebook NSErrors can contain FBSDKErrorRecoveryAttempting instances to recover from errors, or + localized messages to present to the user. This class will process the instances as follows: + + 1. If the error is temporary as indicated by FBSDKGraphRequestErrorKey, assume the recovery succeeded and + notify the delegate. + 2. If a FBSDKErrorRecoveryAttempting instance is available, display an alert (dispatched to main thread) + with the recovery options and call the instance's [ attemptRecoveryFromError:optionIndex:...]. + 3. If a FBSDKErrorRecoveryAttempting is not available, check the userInfo for FBSDKLocalizedErrorDescriptionKey + and present that in an alert (dispatched to main thread). + + By default, FBSDKGraphRequests use this type to process errors and retry the request upon a successful + recovery. + + Note that Facebook recovery attempters can present UI or even cause app switches (such as to login). Any such + work is dispatched to the main thread (therefore your request handlers may then run on the main thread). + + Login recovery requires FBSDKLoginKit. Login will prompt the user + for all permissions last granted. If any are declined on the new request, the recovery is not successful but + the `[FBSDKAccessToken currentAccessToken]` might still have been updated. + . + */ +NS_SWIFT_UNAVAILABLE("") +@interface FBSDKGraphErrorRecoveryProcessor : NSObject + +/** + Gets the delegate. Note this is a strong reference, and is nil'ed out after recovery is complete. + */ +@property (nonatomic, strong, readonly, nullable) iddelegate; + +/** + Attempts to process the error, return YES if the error can be processed. + @param error the error to process. + @param request the related request that may be reissued. + @param delegate the delegate that will be retained until recovery is complete. + */ +- (BOOL)processError:(NSError *)error + request:(FBSDKGraphRequest *)request + delegate:(nullable id)delegate; + +/** + The callback for FBSDKErrorRecoveryAttempting + @param didRecover if the recovery succeeded + @param contextInfo unused + */ +- (void)didPresentErrorWithRecovery:(BOOL)didRecover contextInfo:(nullable void *)contextInfo; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.m new file mode 100644 index 0000000..cd15ffb --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.m @@ -0,0 +1,153 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKGraphErrorRecoveryProcessor.h" + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKErrorRecoveryAttempter.h" + +@interface FBSDKGraphErrorRecoveryProcessor() +{ + FBSDKErrorRecoveryAttempter *_recoveryAttempter; + NSError *_error; +} + +@property (nonatomic, strong, nullable) iddelegate; + +@end + +@implementation FBSDKGraphErrorRecoveryProcessor + +- (BOOL)processError:(NSError *)error request:(FBSDKGraphRequest *)request delegate:(id)delegate +{ + self.delegate = delegate; + if ([self.delegate respondsToSelector:@selector(processorWillProcessError:error:)]) { + if (![self.delegate processorWillProcessError:self error:error]) { + return NO; + } + } + + FBSDKGraphRequestError errorCategory = [error.userInfo[FBSDKGraphRequestErrorKey] unsignedIntegerValue]; + switch (errorCategory) { + case FBSDKGraphRequestErrorTransient : + [self.delegate processorDidAttemptRecovery:self didRecover:YES error:nil]; + self.delegate = nil; + return YES; + case FBSDKGraphRequestErrorRecoverable : + if ([request.tokenString isEqualToString:[FBSDKAccessToken currentAccessToken].tokenString]) { + _recoveryAttempter = error.recoveryAttempter; + + // Set up a block to do the typical recovery work so that we can chain it for ios auth special cases. + // the block returns YES if recovery UI is started (meaning we wait for the alertviewdelegate to resume control flow). + BOOL (^standardRecoveryWork)(void) = ^BOOL{ + NSArray *recoveryOptionsTitles = error.userInfo[NSLocalizedRecoveryOptionsErrorKey]; + if (recoveryOptionsTitles.count > 0 && self->_recoveryAttempter) { + NSString *recoverySuggestion = error.userInfo[NSLocalizedRecoverySuggestionErrorKey]; + self->_error = error; + dispatch_async(dispatch_get_main_queue(), ^{ + [self displayAlertWithRecoverySuggestion:recoverySuggestion recoveryOptionsTitles:recoveryOptionsTitles]; + }); + return YES; + } + return NO; + }; + + return standardRecoveryWork(); + } + return NO; + case FBSDKGraphRequestErrorOther : + if ([request.tokenString isEqualToString:[FBSDKAccessToken currentAccessToken].tokenString]) { + NSString *message = error.userInfo[FBSDKErrorLocalizedDescriptionKey]; + NSString *title = error.userInfo[FBSDKErrorLocalizedTitleKey]; + if (message) { + dispatch_async(dispatch_get_main_queue(), ^{ + NSString *localizedOK = + NSLocalizedStringWithDefaultValue(@"ErrorRecovery.Alert.OK", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"OK", + @"The title of the label to dismiss the alert when presenting user facing error messages"); + [self displayAlertWithTitle:title message:message cancelButtonTitle:localizedOK]; + }); + } + } + return NO; + } + return NO; +} + +#pragma mark - UIAlertController support + +- (void)displayAlertWithRecoverySuggestion:(NSString *)recoverySuggestion recoveryOptionsTitles:(NSArray *)recoveryOptionsTitles +{ + UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil + message:recoverySuggestion + preferredStyle:UIAlertControllerStyleAlert]; + for (NSUInteger i = 0; i < recoveryOptionsTitles.count; i++) { + NSString *title = recoveryOptionsTitles[i]; + UIAlertAction *option = [UIAlertAction actionWithTitle:title + style:UIAlertActionStyleDefault + handler:^(UIAlertAction * _Nonnull action) { + [self->_recoveryAttempter attemptRecoveryFromError:self->_error + optionIndex:i + delegate:self + didRecoverSelector:@selector(didPresentErrorWithRecovery:contextInfo:) + contextInfo:nil]; + }]; + [alertController addAction:option]; + } + UIViewController *topMostViewController = [FBSDKInternalUtility topMostViewController]; + [topMostViewController presentViewController:alertController + animated:YES + completion:nil]; +} + +- (void)displayAlertWithTitle:(NSString *)title message:(NSString *)message cancelButtonTitle:(NSString *)localizedOK +{ + UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil + message:message + preferredStyle:UIAlertControllerStyleAlert]; + UIAlertAction *OKAction = [UIAlertAction actionWithTitle:localizedOK + style:UIAlertActionStyleCancel + handler:^(UIAlertAction * _Nonnull action) { + [self->_recoveryAttempter attemptRecoveryFromError:self->_error + optionIndex:0 + delegate:self + didRecoverSelector:@selector(didPresentErrorWithRecovery:contextInfo:) + contextInfo:nil]; + }]; + [alertController addAction:OKAction]; + UIViewController *topMostViewController = [FBSDKInternalUtility topMostViewController]; + [topMostViewController presentViewController:alertController + animated:YES + completion:nil]; +} + +#pragma mark - FBSDKErrorRecoveryAttempting "delegate" + +- (void)didPresentErrorWithRecovery:(BOOL)didRecover contextInfo:(void *)contextInfo +{ + [self.delegate processorDidAttemptRecovery:self didRecover:didRecover error:_error]; + self.delegate = nil; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.h new file mode 100644 index 0000000..28f8581 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.h @@ -0,0 +1,158 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKGraphRequestConnection.h" + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKAccessToken; + +/// typedef for FBSDKHTTPMethod +typedef NSString *const FBSDKHTTPMethod NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(HTTPMethod); + +/// GET Request +FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodGET NS_SWIFT_NAME(get); + +/// POST Request +FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodPOST NS_SWIFT_NAME(post); + +/// DELETE Request +FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodDELETE NS_SWIFT_NAME(delete); + +/** + Represents a request to the Facebook Graph API. + + + `FBSDKGraphRequest` encapsulates the components of a request (the + Graph API path, the parameters, error recovery behavior) and should be + used in conjunction with `FBSDKGraphRequestConnection` to issue the request. + + Nearly all Graph APIs require an access token. Unless specified, the + `[FBSDKAccessToken currentAccessToken]` is used. Therefore, most requests + will require login first (see `FBSDKLoginManager` in FBSDKLoginKit.framework). + + A `- start` method is provided for convenience for single requests. + + By default, FBSDKGraphRequest will attempt to recover any errors returned from + Facebook. You can disable this via `disableErrorRecovery:`. + + @see FBSDKGraphErrorRecoveryProcessor + */ +NS_SWIFT_NAME(GraphRequest) +@interface FBSDKGraphRequest : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. + @param graphPath the graph path (e.g., @"me"). + */ +- (instancetype)initWithGraphPath:(NSString *)graphPath; + +/** + Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. + @param graphPath the graph path (e.g., @"me"). + @param method the HTTP method. Empty String defaults to @"GET". + */ +- (instancetype)initWithGraphPath:(NSString *)graphPath + HTTPMethod:(FBSDKHTTPMethod)method; + +/** + Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. + @param graphPath the graph path (e.g., @"me"). + @param parameters the optional parameters dictionary. + */ +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters; + +/** + Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. + @param graphPath the graph path (e.g., @"me"). + @param parameters the optional parameters dictionary. + @param method the HTTP method. Empty String defaults to @"GET". + */ +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + HTTPMethod:(FBSDKHTTPMethod)method; + +/** + Initializes a new instance. + @param graphPath the graph path (e.g., @"me"). + @param parameters the optional parameters dictionary. + @param tokenString the token string to use. Specifying nil will cause no token to be used. + @param version the optional Graph API version (e.g., @"v2.0"). nil defaults to `[FBSDKSettings graphAPIVersion]`. + @param method the HTTP method. Empty String defaults to @"GET". + */ +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + tokenString:(nullable NSString *)tokenString + version:(nullable NSString *)version + HTTPMethod:(FBSDKHTTPMethod)method +NS_DESIGNATED_INITIALIZER; + +/** + The request parameters. + */ +@property (nonatomic, copy) NSDictionary *parameters; + +/** + The access token string used by the request. + */ +@property (nonatomic, copy, readonly, nullable) NSString *tokenString; + +/** + The Graph API endpoint to use for the request, for example "me". + */ +@property (nonatomic, copy, readonly) NSString *graphPath; + +/** + The HTTPMethod to use for the request, for example "GET" or "POST". + */ +@property (nonatomic, copy, readonly) FBSDKHTTPMethod HTTPMethod; + +/** + The Graph API version to use (e.g., "v2.0") + */ +@property (nonatomic, copy, readonly) NSString *version; + +/** + If set, disables the automatic error recovery mechanism. + @param disable whether to disable the automatic error recovery mechanism + + By default, non-batched FBSDKGraphRequest instances will automatically try to recover + from errors by constructing a `FBSDKGraphErrorRecoveryProcessor` instance that + re-issues the request on successful recoveries. The re-issued request will call the same + handler as the receiver but may occur with a different `FBSDKGraphRequestConnection` instance. + + This will override [FBSDKSettings setGraphErrorRecoveryDisabled:]. + */ +- (void)setGraphErrorRecoveryDisabled:(BOOL)disable +NS_SWIFT_NAME(setGraphErrorRecovery(disabled:)); + +/** + Starts a connection to the Graph API. + @param handler The handler block to call when the request completes. + */ +- (FBSDKGraphRequestConnection *)startWithCompletionHandler:(nullable FBSDKGraphRequestBlock)handler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.m new file mode 100644 index 0000000..569357c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.m @@ -0,0 +1,225 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequest+Internal.h" + +#import + +#import "FBSDKAccessToken.h" +#import "FBSDKCoreKit.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKGraphRequestDataAttachment.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings+Internal.h" + +// constants +FBSDKHTTPMethod FBSDKHTTPMethodGET = @"GET"; +FBSDKHTTPMethod FBSDKHTTPMethodPOST = @"POST"; +FBSDKHTTPMethod FBSDKHTTPMethodDELETE = @"DELETE"; + +@interface FBSDKGraphRequest() +@property (nonatomic, assign) FBSDKGraphRequestFlags flags; +@property (nonatomic, copy, readwrite) FBSDKHTTPMethod HTTPMethod; +@end + +@implementation FBSDKGraphRequest + +@synthesize HTTPMethod; + +- (instancetype)initWithGraphPath:(NSString *)graphPath { + return [self initWithGraphPath:graphPath parameters:@{}]; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + HTTPMethod:(FBSDKHTTPMethod)method { + return [self initWithGraphPath:graphPath parameters:@{} HTTPMethod:method]; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters { + return [self initWithGraphPath:graphPath + parameters:parameters + flags:FBSDKGraphRequestFlagNone]; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + HTTPMethod:(FBSDKHTTPMethod)method { + return [self initWithGraphPath:graphPath + parameters:parameters + tokenString:[FBSDKAccessToken currentAccessToken].tokenString + version:nil + HTTPMethod:method]; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + flags:(FBSDKGraphRequestFlags)flags { + return [self initWithGraphPath:graphPath + parameters:parameters + tokenString:[FBSDKAccessToken currentAccessToken].tokenString + HTTPMethod:FBSDKHTTPMethodGET + flags:flags]; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + tokenString:(NSString *)tokenString + HTTPMethod:(FBSDKHTTPMethod)method + flags:(FBSDKGraphRequestFlags)flags { + if ((self = [self initWithGraphPath:graphPath + parameters:parameters + tokenString:tokenString + version:[FBSDKSettings graphAPIVersion] + HTTPMethod:method])) { + self.flags |= flags; + } + return self; +} + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + tokenString:(NSString *)tokenString + version:(NSString *)version + HTTPMethod:(FBSDKHTTPMethod)method { + if ((self = [super init])) { + _tokenString = tokenString ? [tokenString copy] : nil; + _version = version ? [version copy] : [FBSDKSettings graphAPIVersion]; + _graphPath = [graphPath copy]; + self.HTTPMethod = method.length > 0 ? [method copy] : FBSDKHTTPMethodGET; + _parameters = parameters ?: @{}; + if (!FBSDKSettings.isGraphErrorRecoveryEnabled) { + _flags = FBSDKGraphRequestFlagDisableErrorRecovery; + } + } + return self; +} + +- (BOOL)isGraphErrorRecoveryDisabled +{ + return (self.flags & FBSDKGraphRequestFlagDisableErrorRecovery); +} + +- (void)setGraphErrorRecoveryDisabled:(BOOL)disable +{ + if (disable) { + self.flags |= FBSDKGraphRequestFlagDisableErrorRecovery; + } else { + self.flags &= ~FBSDKGraphRequestFlagDisableErrorRecovery; + } +} + +- (BOOL)hasAttachments +{ + __block BOOL hasAttachments = NO; + [self.parameters enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) { + if ([FBSDKGraphRequest isAttachment:obj]) { + hasAttachments = YES; + *stop = YES; + } + }]; + return hasAttachments; +} + ++ (BOOL)isAttachment:(id)item +{ + return ([item isKindOfClass:[UIImage class]] || + [item isKindOfClass:[NSData class]] || + [item isKindOfClass:[FBSDKGraphRequestDataAttachment class]]); +} + + ++ (NSString *)serializeURL:(NSString *)baseUrl + params:(NSDictionary *)params { + return [self serializeURL:baseUrl params:params httpMethod:FBSDKHTTPMethodGET]; +} + ++ (NSString *)serializeURL:(NSString *)baseUrl + params:(NSDictionary *)params + httpMethod:(NSString *)httpMethod { + return [self serializeURL:baseUrl params:params httpMethod:httpMethod forBatch:NO]; +} + ++ (NSString *)serializeURL:(NSString *)baseUrl + params:(NSDictionary *)params + httpMethod:(NSString *)httpMethod + forBatch:(BOOL)forBatch { + params = [self preprocessParams: params]; + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + NSURL *parsedURL = [NSURL URLWithString:[baseUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; +#pragma clang pop + + if ([httpMethod isEqualToString:FBSDKHTTPMethodPOST] && !forBatch) { + return baseUrl; + } + + NSString *queryPrefix = parsedURL.query ? @"&" : @"?"; + + NSString *query = [FBSDKBasicUtility queryStringWithDictionary:params error:NULL invalidObjectHandler:^id(id object, BOOL *stop) { + if ([self isAttachment:object]) { + if ([httpMethod isEqualToString:FBSDKHTTPMethodGET]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"can not use GET to upload a file"]; + } + return nil; + } + return object; + }]; + return [NSString stringWithFormat:@"%@%@%@", baseUrl, queryPrefix, query]; +} + ++ (NSDictionary *)preprocessParams:(NSDictionary *)params +{ + NSString *debugValue = [FBSDKSettings graphAPIDebugParamValue]; + if (debugValue) { + NSMutableDictionary *mutableParams = [NSMutableDictionary dictionaryWithDictionary:params]; + mutableParams[@"debug"] = debugValue; + return mutableParams; + } + + return params; +} + +- (FBSDKGraphRequestConnection *)startWithCompletionHandler:(FBSDKGraphRequestBlock)handler +{ + FBSDKGraphRequestConnection *connection = [[FBSDKGraphRequestConnection alloc] init]; + [connection addRequest:self completionHandler:handler]; + [connection start]; + return connection; +} + +#pragma mark - Debugging helpers + +- (NSString *)description +{ + NSMutableString *result = [NSMutableString stringWithFormat:@"<%@: %p", + NSStringFromClass([self class]), + self]; + if (self.graphPath) { + [result appendFormat:@", graphPath: %@", self.graphPath]; + } + if (self.HTTPMethod) { + [result appendFormat:@", HTTPMethod: %@", self.HTTPMethod]; + } + [result appendFormat:@", parameters: %@>", self.parameters.description]; + return result; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.h new file mode 100644 index 0000000..bdab4dc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.h @@ -0,0 +1,310 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + The key in the result dictionary for requests to old versions of the Graph API + whose response is not a JSON object. + + + When a request returns a non-JSON response (such as a "true" literal), that response + will be wrapped into a dictionary using this const as the key. This only applies for very few Graph API + prior to v2.1. + */ +FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty +NS_SWIFT_NAME(NonJSONResponseProperty); + +@class FBSDKGraphRequest; +@class FBSDKGraphRequestConnection; + +/** + FBSDKGraphRequestBlock + + A block that is passed to addRequest to register for a callback with the results of that + request once the connection completes. + + Pass a block of this type when calling addRequest. This will be called once + the request completes. The call occurs on the UI thread. + + @param connection The `FBSDKGraphRequestConnection` that sent the request. + + @param result The result of the request. This is a translation of + JSON data to `NSDictionary` and `NSArray` objects. This + is nil if there was an error. + + @param error The `NSError` representing any error that occurred. + + */ +typedef void (^FBSDKGraphRequestBlock)(FBSDKGraphRequestConnection *_Nullable connection, + id _Nullable result, + NSError *_Nullable error) +NS_SWIFT_NAME(GraphRequestBlock); + +/** + @protocol + + The `FBSDKGraphRequestConnectionDelegate` protocol defines the methods used to receive network + activity progress information from a . + */ +NS_SWIFT_NAME(GraphRequestConnectionDelegate) +@protocol FBSDKGraphRequestConnectionDelegate + +@optional + +/** + @method + + Tells the delegate the request connection will begin loading + + + + If the is created using one of the convenience factory methods prefixed with + start, the object returned from the convenience method has already begun loading and this method + will not be called when the delegate is set. + + @param connection The request connection that is starting a network request + */ +- (void)requestConnectionWillBeginLoading:(FBSDKGraphRequestConnection *)connection; + +/** + @method + + Tells the delegate the request connection finished loading + + + + If the request connection completes without a network error occurring then this method is called. + Invocation of this method does not indicate success of every made, only that the + request connection has no further activity. Use the error argument passed to the FBSDKGraphRequestBlock + block to determine success or failure of each . + + This method is invoked after the completion handler for each . + + @param connection The request connection that successfully completed a network request + */ +- (void)requestConnectionDidFinishLoading:(FBSDKGraphRequestConnection *)connection; + +/** + @method + + Tells the delegate the request connection failed with an error + + + + If the request connection fails with a network error then this method is called. The `error` + argument specifies why the network connection failed. The `NSError` object passed to the + FBSDKGraphRequestBlock block may contain additional information. + + @param connection The request connection that successfully completed a network request + @param error The `NSError` representing the network error that occurred, if any. May be nil + in some circumstances. Consult the `NSError` for the for reliable + failure information. + */ +- (void)requestConnection:(FBSDKGraphRequestConnection *)connection + didFailWithError:(NSError *)error; + +/** + @method + + Tells the delegate how much data has been sent and is planned to send to the remote host + + + + The byte count arguments refer to the aggregated objects, not a particular . + + Like `NSURLSession`, the values may change in unexpected ways if data needs to be resent. + + @param connection The request connection transmitting data to a remote host + @param bytesWritten The number of bytes sent in the last transmission + @param totalBytesWritten The total number of bytes sent to the remote host + @param totalBytesExpectedToWrite The total number of bytes expected to send to the remote host + */ +- (void)requestConnection:(FBSDKGraphRequestConnection *)connection + didSendBodyData:(NSInteger)bytesWritten + totalBytesWritten:(NSInteger)totalBytesWritten +totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite; + +@end + +/** + + The `FBSDKGraphRequestConnection` represents a single connection to Facebook to service a request. + + + + The request settings are encapsulated in a reusable object. The + `FBSDKGraphRequestConnection` object encapsulates the concerns of a single communication + e.g. starting a connection, canceling a connection, or batching requests. + + */ +NS_SWIFT_NAME(GraphRequestConnection) +@interface FBSDKGraphRequestConnection : NSObject + +/** + The default timeout on all FBSDKGraphRequestConnection instances. Defaults to 60 seconds. + */ +@property (class, nonatomic, assign) NSTimeInterval defaultConnectionTimeout; + +/** + The delegate object that receives updates. + */ +@property (nonatomic, weak, nullable) id delegate; + +/** + Gets or sets the timeout interval to wait for a response before giving up. + */ +@property (nonatomic, assign) NSTimeInterval timeout; + +/** + The raw response that was returned from the server. (readonly) + + + + This property can be used to inspect HTTP headers that were returned from + the server. + + The property is nil until the request completes. If there was a response + then this property will be non-nil during the FBSDKGraphRequestBlock callback. + */ +@property (nonatomic, retain, readonly, nullable) NSHTTPURLResponse *urlResponse; + +/** + Determines the operation queue that is used to call methods on the connection's delegate. + + By default, a connection is scheduled on the current thread in the default mode when it is created. + You cannot reschedule a connection after it has started. + */ +@property (nonatomic, retain) NSOperationQueue *delegateQueue; + +/** + @methodgroup Class methods + */ + +/** + @methodgroup Adding requests + */ + +/** + @method + + This method adds an object to this connection. + + @param request A request to be included in the round-trip when start is called. + @param handler A handler to call back when the round-trip completes or times out. + + The completion handler is retained until the block is called upon the + completion or cancellation of the connection. + */ +- (void)addRequest:(FBSDKGraphRequest *)request + completionHandler:(FBSDKGraphRequestBlock)handler; + +/** + @method + + This method adds an object to this connection. + + @param request A request to be included in the round-trip when start is called. + + @param handler A handler to call back when the round-trip completes or times out. + The handler will be invoked on the main thread. + + @param name A name for this request. This can be used to feed + the results of one request to the input of another in the same + `FBSDKGraphRequestConnection` as described in + [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). + + The completion handler is retained until the block is called upon the + completion or cancellation of the connection. This request can be named + to allow for using the request's response in a subsequent request. + */ +- (void)addRequest:(FBSDKGraphRequest *)request + batchEntryName:(NSString *)name + completionHandler:(FBSDKGraphRequestBlock)handler; + +/** + @method + + This method adds an object to this connection. + + @param request A request to be included in the round-trip when start is called. + + @param handler A handler to call back when the round-trip completes or times out. + + @param batchParameters The dictionary of parameters to include for this request + as described in [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). + Examples include "depends_on", "name", or "omit_response_on_success". + + The completion handler is retained until the block is called upon the + completion or cancellation of the connection. This request can be named + to allow for using the request's response in a subsequent request. + */ +- (void)addRequest:(FBSDKGraphRequest *)request + batchParameters:(nullable NSDictionary *)batchParameters + completionHandler:(FBSDKGraphRequestBlock)handler; + +/** + @methodgroup Instance methods + */ + +/** + @method + + Signals that a connection should be logically terminated as the + application is no longer interested in a response. + + Synchronously calls any handlers indicating the request was cancelled. Cancel + does not guarantee that the request-related processing will cease. It + does promise that all handlers will complete before the cancel returns. A call to + cancel prior to a start implies a cancellation of all requests associated + with the connection. + */ +- (void)cancel; + +/** + @method + + This method starts a connection with the server and is capable of handling all of the + requests that were added to the connection. + + + By default, a connection is scheduled on the current thread in the default mode when it is created. + See `setDelegateQueue:` for other options. + + This method cannot be called twice for an `FBSDKGraphRequestConnection` instance. + */ +- (void)start; + +/** + @method + + Overrides the default version for a batch request + + The SDK automatically prepends a version part, such as "v2.0" to API paths in order to simplify API versioning + for applications. If you want to override the version part while using batch requests on the connection, call + this method to set the version for the batch request. + + @param version This is a string in the form @"v2.0" which will be used for the version part of an API path + */ +- (void)overrideGraphAPIVersion:(NSString *)version; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.m new file mode 100644 index 0000000..ffb1116 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.m @@ -0,0 +1,1169 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequestConnection+Internal.h" + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKConstants.h" +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKError.h" +#import "FBSDKErrorConfiguration.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKGraphRequestBody.h" +#import "FBSDKGraphRequestDataAttachment.h" +#import "FBSDKGraphRequestMetadata.h" +#import "FBSDKGraphRequestPiggybackManager.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKURLSessionTask.h" + +NSString *const FBSDKNonJSONResponseProperty = @"FACEBOOK_NON_JSON_RESULT"; + +// URL construction constants +static NSString *const kGraphURLPrefix = @"graph."; +static NSString *const kGraphVideoURLPrefix = @"graph-video."; + +static NSString *const kBatchKey = @"batch"; +static NSString *const kBatchMethodKey = @"method"; +static NSString *const kBatchRelativeURLKey = @"relative_url"; +static NSString *const kBatchAttachmentKey = @"attached_files"; +static NSString *const kBatchFileNamePrefix = @"file"; +static NSString *const kBatchEntryName = @"name"; + +static NSString *const kAccessTokenKey = @"access_token"; +#if TARGET_OS_TV +static NSString *const kSDK = @"tvos"; +static NSString *const kUserAgentBase = @"FBtvOSSDK"; +#else +static NSString *const kSDK = @"ios"; +static NSString *const kUserAgentBase = @"FBiOSSDK"; +#endif +static NSString *const kBatchRestMethodBaseURL = @"method/"; + +static NSTimeInterval g_defaultTimeout = 60.0; + +static FBSDKErrorConfiguration *g_errorConfiguration; + +#if !TARGET_OS_TV +static FBSDKAccessToken *_CreateExpiredAccessToken(FBSDKAccessToken *accessToken) +{ + if (accessToken == nil) { + return nil; + } + if (accessToken.isExpired) { + return accessToken; + } + NSDate *expirationDate = [NSDate dateWithTimeIntervalSinceNow:-1]; + return [[FBSDKAccessToken alloc] initWithTokenString:accessToken.tokenString + permissions:accessToken.permissions.allObjects + declinedPermissions:accessToken.declinedPermissions.allObjects + expiredPermissions:accessToken.expiredPermissions.allObjects + appID:accessToken.appID + userID:accessToken.userID + expirationDate:expirationDate + refreshDate:expirationDate + dataAccessExpirationDate:expirationDate + graphDomain:accessToken.graphDomain]; +} +#endif + +// ---------------------------------------------------------------------------- +// FBSDKGraphRequestConnectionState + +typedef NS_ENUM(NSUInteger, FBSDKGraphRequestConnectionState) +{ + kStateCreated, + kStateSerialized, + kStateStarted, + kStateCompleted, + kStateCancelled, +}; + +// ---------------------------------------------------------------------------- +// Private properties and methods + +@interface FBSDKGraphRequestConnection () < +NSURLSessionDataDelegate +#if !TARGET_OS_TV +, FBSDKGraphErrorRecoveryProcessorDelegate +#endif +> + +@property (nonatomic, retain) NSMutableArray *requests; +@property (nonatomic, assign) FBSDKGraphRequestConnectionState state; +@property (nonatomic, strong) FBSDKLogger *logger; +@property (nonatomic, assign) uint64_t requestStartTime; + +@end + +// ---------------------------------------------------------------------------- +// FBSDKGraphRequestConnection + +@implementation FBSDKGraphRequestConnection +{ + NSString *_overrideVersionPart; + NSUInteger _expectingResults; + NSOperationQueue *_delegateQueue; + FBSDKURLSession *_session; +#if !TARGET_OS_TV + FBSDKGraphRequestMetadata *_recoveringRequestMetadata; + FBSDKGraphErrorRecoveryProcessor *_errorRecoveryProcessor; +#endif +} + +- (instancetype)init +{ + if ((self = [super init])) { + _requests = [[NSMutableArray alloc] init]; + _timeout = g_defaultTimeout; + _state = kStateCreated; + _logger = [[FBSDKLogger alloc] initWithLoggingBehavior:FBSDKLoggingBehaviorNetworkRequests]; + _session = [[FBSDKURLSession alloc] initWithDelegate:self delegateQueue:_delegateQueue]; + } + return self; +} + +- (void)dealloc +{ + [self.session invalidateAndCancel]; +} + +#pragma mark - Public + ++ (void)setDefaultConnectionTimeout:(NSTimeInterval)defaultTimeout +{ + if (defaultTimeout >= 0) { + g_defaultTimeout = defaultTimeout; + } +} + ++ (NSTimeInterval)defaultConnectionTimeout { + return g_defaultTimeout; +} + +- (void)addRequest:(FBSDKGraphRequest *)request + completionHandler:(FBSDKGraphRequestBlock)handler +{ + [self addRequest:request batchEntryName:@"" completionHandler:handler]; +} + +- (void)addRequest:(FBSDKGraphRequest *)request + batchEntryName:(NSString *)name + completionHandler:(FBSDKGraphRequestBlock)handler +{ + NSDictionary *batchParams = name.length > 0 ? @{kBatchEntryName : name } : nil; + [self addRequest:request batchParameters:batchParams completionHandler:handler]; +} + +- (void)addRequest:(FBSDKGraphRequest *)request + batchParameters:(NSDictionary *)batchParameters + completionHandler:(FBSDKGraphRequestBlock)handler +{ + if (self.state != kStateCreated) { + @throw [NSException exceptionWithName:NSInternalInconsistencyException + reason:@"Cannot add requests once started or if a URLRequest is set" + userInfo:nil]; + } + FBSDKGraphRequestMetadata *metadata = [[FBSDKGraphRequestMetadata alloc] initWithRequest:request + completionHandler:handler + batchParameters:batchParameters]; + + [self.requests addObject:metadata]; +} + +- (void)cancel +{ + self.state = kStateCancelled; + [self.session invalidateAndCancel]; +} + +- (void)overrideGraphAPIVersion:(NSString *)version +{ + if (![_overrideVersionPart isEqualToString:version]) { + _overrideVersionPart = [version copy]; + } +} + +- (void)start +{ + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + g_errorConfiguration = [[FBSDKErrorConfiguration alloc] initWithDictionary:nil]; + }); + + if (![FBSDKApplicationDelegate isSDKInitialized]) { + NSString *msg = @"FBSDKGraphRequestConnection cannot be started before Facebook SDK initialized."; + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"%@", msg]; + self.state = kStateCancelled; + [self completeFBSDKURLSessionWithResponse:nil + data:nil + networkError:[FBSDKError unknownErrorWithMessage:msg]]; + + return; + } + + //optimistically check for updated server configuration; + g_errorConfiguration = [FBSDKServerConfigurationManager cachedServerConfiguration].errorConfiguration ?: g_errorConfiguration; + + if (self.state != kStateCreated && self.state != kStateSerialized) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"FBSDKGraphRequestConnection cannot be started again."]; + return; + } + [FBSDKGraphRequestPiggybackManager addPiggybackRequests:self]; + NSMutableURLRequest *request = [self requestWithBatch:self.requests timeout:_timeout]; + + self.state = kStateStarted; + + [self logRequest:request bodyLength:0 bodyLogger:nil attachmentLogger:nil]; + _requestStartTime = [FBSDKInternalUtility currentTimeInMilliseconds]; + + FBSDKURLSessionTaskBlock completionHanlder = ^(NSData *responseDataV1, NSURLResponse *responseV1, NSError *errorV1) { + FBSDKURLSessionTaskBlock handler = ^(NSData *responseDataV2, + NSURLResponse *responseV2, + NSError *errorV2) { + [self completeFBSDKURLSessionWithResponse:responseV2 + data:responseDataV2 + networkError:errorV2]; + }; + + if(errorV1) { + [self taskDidCompleteWithError:errorV1 handler:handler]; + } else { + [self taskDidCompleteWithResponse:responseV1 data:responseDataV1 requestStartTime:self.requestStartTime handler:handler]; + } + }; + [self.session executeURLRequest:request completionHandler:completionHanlder]; + + id delegate = self.delegate; + if ([delegate respondsToSelector:@selector(requestConnectionWillBeginLoading:)]) { + if (_delegateQueue) { + [_delegateQueue addOperationWithBlock:^{ + [delegate requestConnectionWillBeginLoading:self]; + }]; + } else { + [delegate requestConnectionWillBeginLoading:self]; + } + } +} + +- (NSOperationQueue *)delegateQueue +{ + return _delegateQueue; +} + +- (void)setDelegateQueue:(NSOperationQueue *)queue +{ + _session.delegateQueue = queue; + _delegateQueue = queue; +} + +- (FBSDKURLSession *)session +{ + return _session; +} + +#pragma mark - Private methods (request generation) + +// +// Adds request data to a batch in a format expected by the JsonWriter. +// Binary attachments are referenced by name in JSON and added to the +// attachments dictionary. +// +- (void)addRequest:(FBSDKGraphRequestMetadata *)metadata + toBatch:(NSMutableArray *)batch + attachments:(NSMutableDictionary *)attachments + batchToken:(NSString *)batchToken +{ + NSMutableDictionary *requestElement = [[NSMutableDictionary alloc] init]; + + if (metadata.batchParameters) { + [requestElement addEntriesFromDictionary:metadata.batchParameters]; + } + + if (batchToken) { + NSMutableDictionary *params = [NSMutableDictionary + dictionaryWithDictionary:metadata.request.parameters]; + params[kAccessTokenKey] = batchToken; + metadata.request.parameters = params; + [self registerTokenToOmitFromLog:batchToken]; + } + + NSString *urlString = [self urlStringForSingleRequest:metadata.request forBatch:YES]; + requestElement[kBatchRelativeURLKey] = urlString; + requestElement[kBatchMethodKey] = metadata.request.HTTPMethod; + + NSMutableArray *attachmentNames = [NSMutableArray array]; + + [metadata.request.parameters enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) { + if ([FBSDKGraphRequest isAttachment:value]) { + NSString *name = [NSString stringWithFormat:@"%@%lu", + kBatchFileNamePrefix, + (unsigned long)attachments.count]; + [attachmentNames addObject:name]; + attachments[name] = value; + } + }]; + + if (attachmentNames.count) { + requestElement[kBatchAttachmentKey] = [attachmentNames componentsJoinedByString:@","]; + } + + [batch addObject:requestElement]; +} + +- (void)appendAttachments:(NSDictionary *)attachments + toBody:(FBSDKGraphRequestBody *)body + addFormData:(BOOL)addFormData + logger:(FBSDKLogger *)logger +{ + [attachments enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) { + value = [FBSDKBasicUtility convertRequestValue:value]; + if ([value isKindOfClass:[NSString class]]) { + if (addFormData) { + [body appendWithKey:key formValue:(NSString *)value logger:logger]; + } + } else if ([value isKindOfClass:[UIImage class]]) { + [body appendWithKey:key imageValue:(UIImage *)value logger:logger]; + } else if ([value isKindOfClass:[NSData class]]) { + [body appendWithKey:key dataValue:(NSData *)value logger:logger]; + } else if ([value isKindOfClass:[FBSDKGraphRequestDataAttachment class]]) { + [body appendWithKey:key dataAttachmentValue:(FBSDKGraphRequestDataAttachment *)value logger:logger]; + } else { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors formatString:@"Unsupported FBSDKGraphRequest attachment:%@, skipping.", value]; + } + }]; +} + +// +// Serializes all requests in the batch to JSON and appends the result to +// body. Also names all attachments that need to go as separate blocks in +// the body of the request. +// +// All the requests are serialized into JSON, with any binary attachments +// named and referenced by name in the JSON. +// +- (void)appendJSONRequests:(NSArray *)requests + toBody:(FBSDKGraphRequestBody *)body + andNameAttachments:(NSMutableDictionary *)attachments + logger:(FBSDKLogger *)logger +{ + NSMutableArray *batch = [[NSMutableArray alloc] init]; + NSString *batchToken = nil; + for (FBSDKGraphRequestMetadata *metadata in requests) { + NSString *individualToken = [self accessTokenWithRequest:metadata.request]; + BOOL isClientToken = [FBSDKSettings clientToken] && [individualToken hasSuffix:[FBSDKSettings clientToken]]; + if (!batchToken && + !isClientToken) { + batchToken = individualToken; + } + [self addRequest:metadata + toBatch:batch + attachments:attachments + batchToken:[batchToken isEqualToString:individualToken] ? nil : individualToken]; + } + + NSString *jsonBatch = [FBSDKBasicUtility JSONStringForObject:batch error:NULL invalidObjectHandler:NULL]; + + [body appendWithKey:kBatchKey formValue:jsonBatch logger:logger]; + if (batchToken) { + [body appendWithKey:kAccessTokenKey formValue:batchToken logger:logger]; + } +} + +- (BOOL)_shouldWarnOnMissingFieldsParam:(FBSDKGraphRequest *)request +{ + NSString *minVersion = @"2.4"; + NSString *version = request.version; + if (!version) { + return YES; + } + if ([version hasPrefix:@"v"]) { + version = [version substringFromIndex:1]; + } + + NSComparisonResult result = [version compare:minVersion options:NSNumericSearch]; + + // if current version is the same as minVersion, or if the current version is > minVersion + return (result == NSOrderedSame) || (result == NSOrderedDescending); +} + +// Validate that all GET requests after v2.4 have a "fields" param +- (void)_validateFieldsParamForGetRequests:(NSArray *)requests +{ + for (FBSDKGraphRequestMetadata *metadata in requests) { + FBSDKGraphRequest *request = metadata.request; + if ([request.HTTPMethod.uppercaseString isEqualToString:@"GET"] && + [self _shouldWarnOnMissingFieldsParam:request] && + !request.parameters[@"fields"] && + [request.graphPath rangeOfString:@"fields="].location == NSNotFound) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"starting with Graph API v2.4, GET requests for /%@ should contain an explicit \"fields\" parameter", request.graphPath]; + } + } +} + +// +// Generates a NSURLRequest based on the contents of self.requests, and sets +// options on the request. Chooses between URL-based request for a single +// request and JSON-based request for batches. +// +- (NSMutableURLRequest *)requestWithBatch:(NSArray *)requests + timeout:(NSTimeInterval)timeout +{ + FBSDKGraphRequestBody *body = [[FBSDKGraphRequestBody alloc] init]; + FBSDKLogger *bodyLogger = [[FBSDKLogger alloc] initWithLoggingBehavior:_logger.loggingBehavior]; + FBSDKLogger *attachmentLogger = [[FBSDKLogger alloc] initWithLoggingBehavior:_logger.loggingBehavior]; + + NSMutableURLRequest *request; + + if (requests.count == 0) { + [[NSException exceptionWithName:NSInvalidArgumentException + reason:@"FBSDKGraphRequestConnection: Must have at least one request or urlRequest not specified." + userInfo:nil] + raise]; + + } + + [self _validateFieldsParamForGetRequests:requests]; + + if (requests.count == 1) { + FBSDKGraphRequestMetadata *metadata = requests[0]; + NSURL *url = [NSURL URLWithString:[self urlStringForSingleRequest:metadata.request forBatch:NO]]; + request = [NSMutableURLRequest requestWithURL:url + cachePolicy:NSURLRequestUseProtocolCachePolicy + timeoutInterval:timeout]; + + // HTTP methods are case-sensitive; be helpful in case someone provided a mixed case one. + NSString *httpMethod = metadata.request.HTTPMethod.uppercaseString; + request.HTTPMethod = httpMethod; + [self appendAttachments:metadata.request.parameters + toBody:body + addFormData:[httpMethod isEqualToString:@"POST"] + logger:attachmentLogger]; + } else { + // Find the session with an app ID and use that as the batch_app_id. If we can't + // find one, try to load it from the plist. As a last resort, pass 0. + NSString *batchAppID = [FBSDKSettings appID]; + if (!batchAppID || batchAppID.length == 0) { + // The Graph API batch method requires either an access token or batch_app_id. + // If we can't determine an App ID to use for the batch, we can't issue it. + [[NSException exceptionWithName:NSInternalInconsistencyException + reason:@"FBSDKGraphRequestConnection: [FBSDKSettings appID] must be specified for batch requests" + userInfo:nil] + raise]; + } + + [body appendWithKey:@"batch_app_id" formValue:batchAppID logger:bodyLogger]; + + NSMutableDictionary *attachments = [[NSMutableDictionary alloc] init]; + + [self appendJSONRequests:requests + toBody:body + andNameAttachments:attachments + logger:bodyLogger]; + + [self appendAttachments:attachments + toBody:body + addFormData:NO + logger:attachmentLogger]; + + NSURL *url = [FBSDKInternalUtility + facebookURLWithHostPrefix:kGraphURLPrefix + path:@"" + queryParameters:@{} + defaultVersion:_overrideVersionPart + error:NULL]; + + request = [NSMutableURLRequest requestWithURL:url + cachePolicy:NSURLRequestUseProtocolCachePolicy + timeoutInterval:timeout]; + request.HTTPMethod = @"POST"; + } + + NSData *compressedData; + if ([request.HTTPMethod isEqualToString:@"POST"] && (compressedData = [body compressedData])) { + request.HTTPBody = compressedData; + [request setValue:@"gzip" forHTTPHeaderField:@"Content-Encoding"]; + } else { + request.HTTPBody = body.data; + } + [request setValue:[FBSDKGraphRequestConnection userAgent] forHTTPHeaderField:@"User-Agent"]; + [request setValue:[body mimeContentType] forHTTPHeaderField:@"Content-Type"]; + [request setHTTPShouldHandleCookies:NO]; + + [self logRequest:request bodyLength:(request.HTTPBody.length / 1024) bodyLogger:bodyLogger attachmentLogger:attachmentLogger]; + + return request; +} + +// +// Generates a URL for a batch containing only a single request, +// and names all attachments that need to go in the body of the +// request. +// +// The URL contains all parameters that are not body attachments, +// including the session key if present. +// +// Attachments are named and referenced by name in the URL. +// +- (NSString *)urlStringForSingleRequest:(FBSDKGraphRequest *)request forBatch:(BOOL)forBatch +{ + NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:request.parameters]; + params[@"format"] = @"json"; + params[@"sdk"] = kSDK; + params[@"include_headers"] = @"false"; + + request.parameters = params; + + NSString *baseURL; + if (forBatch) { + baseURL = request.graphPath; + } else { + NSString *token = [self accessTokenWithRequest:request]; + if (token) { + [params setValue:token forKey:kAccessTokenKey]; + request.parameters = params; + [self registerTokenToOmitFromLog:token]; + } + + NSString *prefix = kGraphURLPrefix; + // We special case a graph post to /videos and send it to graph-video.facebook.com + // We only do this for non batch post requests + NSString *graphPath = request.graphPath.lowercaseString; + if ([request.HTTPMethod.uppercaseString isEqualToString:@"POST"] && + [graphPath hasSuffix:@"/videos"]) { + graphPath = [graphPath stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"/"]]; + NSArray *components = [graphPath componentsSeparatedByString:@"/"]; + if (components.count == 2) { + prefix = kGraphVideoURLPrefix; + } + } + + baseURL = [FBSDKInternalUtility + facebookURLWithHostPrefix:prefix + path:request.graphPath + queryParameters:@{} + defaultVersion:request.version + error:NULL].absoluteString; + } + + NSString *url = [FBSDKGraphRequest serializeURL:baseURL + params:request.parameters + httpMethod:request.HTTPMethod + forBatch:forBatch]; + return url; +} + +#pragma mark - Private methods (response parsing) + +- (void)completeFBSDKURLSessionWithResponse:(NSURLResponse *)response + data:(NSData *)data + networkError:(NSError *)error +{ + if (self.state != kStateCancelled) { + NSAssert(self.state == kStateStarted, + @"Unexpected state %lu in completeWithResponse", + (unsigned long)self.state); + self.state = kStateCompleted; + } + + NSArray *results = nil; + _urlResponse = (NSHTTPURLResponse *)response; + if (response) { + NSAssert([response isKindOfClass:[NSHTTPURLResponse class]], + @"Expected NSHTTPURLResponse, got %@", + response); + + NSInteger statusCode = _urlResponse.statusCode; + + if (!error && [response.MIMEType hasPrefix:@"image"]) { + error = [FBSDKError errorWithCode:FBSDKErrorGraphRequestNonTextMimeTypeReturned + message:@"Response is a non-text MIME type; endpoints that return images and other " + @"binary data should be fetched using NSURLRequest and NSURLSession"]; + } else { + results = [self parseJSONResponse:data + error:&error + statusCode:statusCode]; + } + } else if (!error) { + error = [FBSDKError errorWithCode:FBSDKErrorUnknown + message:@"Missing NSURLResponse"]; + } + + if (!error) { + if (self.requests.count != results.count) { + error = [FBSDKError errorWithCode:FBSDKErrorGraphRequestProtocolMismatch + message:@"Unexpected number of results returned from server."]; + } else { + [_logger appendFormat:@"Response <#%lu>\nDuration: %llu msec\nSize: %lu kB\nResponse Body:\n%@\n\n", + (unsigned long)_logger.loggerSerialNumber, + [FBSDKInternalUtility currentTimeInMilliseconds] - _requestStartTime, + (unsigned long)data.length, + results]; + } + } + + if (error) { + [_logger appendFormat:@"Response <#%lu> :\n%@\n%@\n", + (unsigned long)_logger.loggerSerialNumber, + error.localizedDescription, + error.userInfo]; + } + [_logger emitToNSLog]; + + [self completeWithResults:results networkError:error]; + + [self.session invalidateAndCancel]; +} + +// +// If there is one request, the JSON is the response. +// If there are multiple requests, the JSON has an array of dictionaries whose +// body property is the response. +// [{ "code":200, +// "body":"JSON-response-as-a-string" }, +// { "code":200, +// "body":"JSON-response-as-a-string" }] +// +// In both cases, this function returns an NSArray containing the results. +// The NSArray looks just like the multiple request case except the body +// value is converted from a string to parsed JSON. +// +- (NSArray *)parseJSONResponse:(NSData *)data + error:(NSError **)error + statusCode:(NSInteger)statusCode +{ + // Graph API can return "true" or "false", which is not valid JSON. + // Translate that before asking JSON parser to look at it. + NSString *responseUTF8 = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; + NSMutableArray *results = [[NSMutableArray alloc] init];; + id response = [self parseJSONOrOtherwise:responseUTF8 error:error]; + + if (responseUTF8 == nil) { + NSString *base64Data = data.length != 0 ? [data base64EncodedStringWithOptions:0] : @""; + if (base64Data != nil) { + [FBSDKAppEvents logInternalEvent:@"fb_response_invalid_utf8" + isImplicitlyLogged:YES]; + } + } + + NSDictionary *responseError = nil; + if (!response) { + if ((error != NULL) && (*error == nil)) { + *error = [self errorWithCode:FBSDKErrorUnknown + statusCode:statusCode + parsedJSONResponse:nil + innerError:nil + message:@"The server returned an unexpected response."]; + } + } else if (self.requests.count == 1) { + // response is the entry, so put it in a dictionary under "body" and add + // that to array of responses. + [results addObject:@{ + @"code":@(statusCode), + @"body":response + }]; + } else if ([response isKindOfClass:[NSArray class]]) { + // response is the array of responses, but the body element of each needs + // to be decoded from JSON. + for (id item in response) { + // Don't let errors parsing one response stop us from parsing another. + NSError *batchResultError = nil; + if (![item isKindOfClass:[NSDictionary class]]) { + [results addObject:item]; + } else { + NSMutableDictionary *result = [((NSDictionary *)item) mutableCopy]; + if (result[@"body"]) { + result[@"body"] = [self parseJSONOrOtherwise:result[@"body"] error:&batchResultError]; + } + [results addObject:result]; + } + if (batchResultError) { + // We'll report back the last error we saw. + *error = batchResultError; + } + } + } else if ([response isKindOfClass:[NSDictionary class]] && + (responseError = [FBSDKTypeUtility dictionaryValue:response[@"error"]]) != nil && + [responseError[@"type"] isEqualToString:@"OAuthException"]) { + // if there was one request then return the only result. if there were multiple requests + // but only one error then the server rejected the batch access token + NSDictionary *result = @{ + @"code":@(statusCode), + @"body":response + }; + + for (NSUInteger resultIndex = 0, resultCount = self.requests.count; resultIndex < resultCount; ++resultIndex) { + [results addObject:result]; + } + } else if (error != NULL) { + *error = [self errorWithCode:FBSDKErrorGraphRequestProtocolMismatch + statusCode:statusCode + parsedJSONResponse:results + innerError:nil + message:nil]; + } + + return results; +} + +- (id)parseJSONOrOtherwise:(NSString *)utf8 + error:(NSError **)error +{ + id parsed = nil; + if (!(*error) && [utf8 isKindOfClass:[NSString class]]) { + parsed = [FBSDKBasicUtility objectForJSONString:utf8 error:error]; + // if we fail parse we attempt a re-parse of a modified input to support results in the form "foo=bar", "true", etc. + // which is shouldn't be necessary since Graph API v2.1. + if (*error) { + // we round-trip our hand-wired response through the parser in order to remain + // consistent with the rest of the output of this function (note, if perf turns out + // to be a problem -- unlikely -- we can return the following dictionary outright) + NSDictionary *original = @{ FBSDKNonJSONResponseProperty : utf8 }; + NSString *jsonrep = [FBSDKBasicUtility JSONStringForObject:original error:NULL invalidObjectHandler:NULL]; + NSError *reparseError = nil; + parsed = [FBSDKBasicUtility objectForJSONString:jsonrep error:&reparseError]; + if (!reparseError) { + *error = nil; + } + } + } + return parsed; +} + +- (void)completeWithResults:(NSArray *)results + networkError:(NSError *)networkError +{ + NSUInteger count = self.requests.count; + _expectingResults = count; + NSUInteger disabledRecoveryCount = 0; + for (FBSDKGraphRequestMetadata *metadata in self.requests) { + if (metadata.request.graphErrorRecoveryDisabled) { + disabledRecoveryCount++; + } + } +#if !TARGET_OS_TV + BOOL isSingleRequestToRecover = (count - disabledRecoveryCount == 1); +#endif + + [self.requests enumerateObjectsUsingBlock:^(FBSDKGraphRequestMetadata *metadata, NSUInteger i, BOOL *stop) { + id result = networkError ? nil : results[i]; + NSError *resultError = networkError ?: [self errorFromResult:result request:metadata.request]; + + id body = nil; + if (!resultError && [result isKindOfClass:[NSDictionary class]]) { + NSDictionary *resultDictionary = [FBSDKTypeUtility dictionaryValue:result]; + body = [FBSDKTypeUtility dictionaryValue:resultDictionary[@"body"]]; + } + +#if !TARGET_OS_TV + if (resultError && !metadata.request.graphErrorRecoveryDisabled && isSingleRequestToRecover) { + self->_recoveringRequestMetadata = metadata; + self->_errorRecoveryProcessor = [[FBSDKGraphErrorRecoveryProcessor alloc] init]; + if ([self->_errorRecoveryProcessor processError:resultError request:metadata.request delegate:self]) { + return; + } + } +#endif + + [self processResultBody:body error:resultError metadata:metadata canNotifyDelegate:networkError == nil]; + }]; + + if (networkError) { + if ([_delegate respondsToSelector:@selector(requestConnection:didFailWithError:)]) { + [_delegate requestConnection:self didFailWithError:networkError]; + } + } +} + +- (void)processResultBody:(NSDictionary *)body error:(NSError *)error metadata:(FBSDKGraphRequestMetadata *)metadata canNotifyDelegate:(BOOL)canNotifyDelegate +{ + void (^finishAndInvokeCompletionHandler)(void) = ^{ + NSDictionary *graphDebugDict = body[@"__debug__"]; + if ([graphDebugDict isKindOfClass:[NSDictionary class]]) { + [self processResultDebugDictionary: graphDebugDict]; + } + [metadata invokeCompletionHandlerForConnection:self withResults:body error:error]; + + if (--self->_expectingResults == 0) { + if (canNotifyDelegate && [self->_delegate respondsToSelector:@selector(requestConnectionDidFinishLoading:)]) { + [self->_delegate requestConnectionDidFinishLoading:self]; + } + } + }; + +#if !TARGET_OS_TV + void (^clearToken)(NSInteger) = ^(NSInteger errorSubcode){ + if (metadata.request.flags & FBSDKGraphRequestFlagDoNotInvalidateTokenOnError) { + return; + } + if (errorSubcode == 493) { + [FBSDKAccessToken setCurrentAccessToken:_CreateExpiredAccessToken([FBSDKAccessToken currentAccessToken])]; + } else { + [FBSDKAccessToken setCurrentAccessToken:nil]; + } + + }; + + NSString *metadataTokenString = metadata.request.tokenString; + NSString *currentTokenString = [FBSDKAccessToken currentAccessToken].tokenString; + + if ([metadataTokenString isEqualToString:currentTokenString]) { + NSInteger errorCode = [error.userInfo[FBSDKGraphRequestErrorGraphErrorCodeKey] integerValue]; + NSInteger errorSubcode = [error.userInfo[FBSDKGraphRequestErrorGraphErrorSubcodeKey] integerValue]; + if (errorCode == 190 || errorCode == 102) { + clearToken(errorSubcode); + } + } +#endif + // this is already on the queue since we are currently in the NSURLSession callback. + finishAndInvokeCompletionHandler(); +} + +- (void)processResultDebugDictionary:(NSDictionary *)dict +{ + NSArray *messages = [FBSDKTypeUtility arrayValue:dict[@"messages"]]; + if (!messages.count) { + return; + } + + [messages enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { + NSDictionary *messageDict = [FBSDKTypeUtility dictionaryValue:obj]; + NSString *message = [FBSDKTypeUtility stringValue:messageDict[@"message"]]; + NSString *type = [FBSDKTypeUtility stringValue:messageDict[@"type"]]; + NSString *link = [FBSDKTypeUtility stringValue:messageDict[@"link"]]; + if (!message || !type) { + return; + } + + NSString *loggingBehavior = FBSDKLoggingBehaviorGraphAPIDebugInfo; + if ([type isEqualToString:@"warning"]) { + loggingBehavior = FBSDKLoggingBehaviorGraphAPIDebugWarning; + } + if (link) { + message = [message stringByAppendingFormat:@" Link: %@", link]; + } + + [FBSDKLogger singleShotLogEntry:loggingBehavior logEntry:message]; + }]; + +} + +- (NSError *)errorFromResult:(id)result request:(FBSDKGraphRequest *)request +{ + if ([result isKindOfClass:[NSDictionary class]]) { + NSDictionary *errorDictionary = [FBSDKTypeUtility dictionaryValue:result[@"body"]][@"error"]; + + if ([errorDictionary isKindOfClass:[NSDictionary class]]) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"code"] forKey:FBSDKGraphRequestErrorGraphErrorCodeKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_subcode"] forKey:FBSDKGraphRequestErrorGraphErrorSubcodeKey]; + //"message" is preferred over error_msg or error_reason. + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_msg"] forKey:FBSDKErrorDeveloperMessageKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_reason"] forKey:FBSDKErrorDeveloperMessageKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"message"] forKey:FBSDKErrorDeveloperMessageKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_user_title"] forKey:FBSDKErrorLocalizedTitleKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_user_msg"] forKey:FBSDKErrorLocalizedDescriptionKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:errorDictionary[@"error_user_msg"] forKey:NSLocalizedDescriptionKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:result[@"code"] forKey:FBSDKGraphRequestErrorHTTPStatusCodeKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:result forKey:FBSDKGraphRequestErrorParsedJSONResponseKey]; + + FBSDKErrorRecoveryConfiguration *recoveryConfiguration = [g_errorConfiguration + recoveryConfigurationForCode:[userInfo[FBSDKGraphRequestErrorGraphErrorCodeKey] stringValue] + subcode:[userInfo[FBSDKGraphRequestErrorGraphErrorSubcodeKey] stringValue] + request:request]; + if ([errorDictionary[@"is_transient"] boolValue]) { + userInfo[FBSDKGraphRequestErrorKey] = @(FBSDKGraphRequestErrorTransient); + } else { + [FBSDKBasicUtility dictionary:userInfo setObject:@(recoveryConfiguration.errorCategory) forKey:FBSDKGraphRequestErrorKey]; + } + [FBSDKBasicUtility dictionary:userInfo setObject:recoveryConfiguration.localizedRecoveryDescription forKey:NSLocalizedRecoverySuggestionErrorKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:recoveryConfiguration.localizedRecoveryOptionDescriptions forKey:NSLocalizedRecoveryOptionsErrorKey]; + FBSDKErrorRecoveryAttempter *attempter = [FBSDKErrorRecoveryAttempter recoveryAttempterFromConfiguration:recoveryConfiguration]; + [FBSDKBasicUtility dictionary:userInfo setObject:attempter forKey:NSRecoveryAttempterErrorKey]; + + return [FBSDKError errorWithCode:FBSDKErrorGraphRequestGraphAPI + userInfo:userInfo + message:nil + underlyingError:nil]; + } + } + + return nil; +} + +- (NSError *)errorWithCode:(FBSDKCoreError)code + statusCode:(NSInteger)statusCode + parsedJSONResponse:(id)response + innerError:(NSError *)innerError + message:(NSString *)message { + NSMutableDictionary *userInfo = [[NSMutableDictionary alloc] init]; + userInfo[FBSDKGraphRequestErrorHTTPStatusCodeKey] = @(statusCode); + + if (response) { + userInfo[FBSDKGraphRequestErrorParsedJSONResponseKey] = response; + } + + if (innerError) { + userInfo[FBSDKGraphRequestErrorParsedJSONResponseKey] = innerError; + } + + if (message) { + userInfo[FBSDKErrorDeveloperMessageKey] = message; + } + + NSError *error = [[NSError alloc] + initWithDomain:FBSDKErrorDomain + code:code + userInfo:userInfo]; + + return error; +} + +#pragma mark - Private methods (logging and completion) + +- (void)logAndInvokeHandler:(FBSDKURLSessionTaskBlock)handler + error:(NSError *)error +{ + if (error) { + NSString *logEntry = [NSString + stringWithFormat:@"FBSDKURLSessionTask <#%lu>:\n Error: '%@'\n%@\n", + (unsigned long)[FBSDKLogger generateSerialNumber], + error.localizedDescription, + error.userInfo]; + + [self logMessage:logEntry]; + } + + [self invokeHandler:handler error:error response:nil responseData:nil]; +} + +- (void)logAndInvokeHandler:(FBSDKURLSessionTaskBlock)handler + response:(NSURLResponse *)response + responseData:(NSData *)responseData + requestStartTime:(uint64_t)requestStartTime +{ + // Basic logging just prints out the URL. FBSDKGraphRequest logging provides more details. + NSString *mimeType = response.MIMEType; + NSMutableString *mutableLogEntry = [NSMutableString stringWithFormat:@"FBSDKGraphRequestConnection <#%lu>:\n Duration: %llu msec\nResponse Size: %lu kB\n MIME type: %@\n", + (unsigned long)[FBSDKLogger generateSerialNumber], + [FBSDKInternalUtility currentTimeInMilliseconds] - requestStartTime, + (unsigned long)responseData.length / 1024, + mimeType]; + + if ([mimeType isEqualToString:@"text/javascript"]) { + NSString *responseUTF8 = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; + [mutableLogEntry appendFormat:@" Response:\n%@\n\n", responseUTF8]; + } + + [self logMessage:mutableLogEntry]; + + [self invokeHandler:handler error:nil response:response responseData:responseData]; +} + +- (void)invokeHandler:(FBSDKURLSessionTaskBlock)handler + error:(NSError *)error + response:(NSURLResponse *)response + responseData:(NSData *)responseData +{ + if (handler != nil) { + dispatch_async(dispatch_get_main_queue(), ^{ + handler(responseData, response, error); + }); + } +} + +- (void)logMessage:(NSString *)message +{ + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorNetworkRequests formatString:@"%@", message]; +} + +- (void)taskDidCompleteWithResponse:(NSURLResponse *)response + data:(NSData *)data + requestStartTime:(uint64_t)requestStartTime + handler:(FBSDKURLSessionTaskBlock)handler +{ + @try { + [self logAndInvokeHandler:handler + response:response + responseData:data + requestStartTime:requestStartTime]; + } @finally {} +} + +- (void)taskDidCompleteWithError:(NSError *)error + handler:(FBSDKURLSessionTaskBlock)handler +{ + @try { + if ([error.domain isEqualToString:NSURLErrorDomain] && error.code == kCFURLErrorSecureConnectionFailed) { + NSOperatingSystemVersion iOS9Version = { .majorVersion = 9, .minorVersion = 0, .patchVersion = 0 }; + if ([FBSDKInternalUtility isOSRunTimeVersionAtLeast:iOS9Version]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"WARNING: FBSDK secure network request failed. Please verify you have configured your " + "app for Application Transport Security compatibility described at https://developers.facebook.com/docs/ios/ios9"]; + } + } + [self logAndInvokeHandler:handler error:error]; + } @finally {} +} + +#pragma mark - Private methods (miscellaneous) + +- (void)logRequest:(NSMutableURLRequest *)request + bodyLength:(NSUInteger)bodyLength + bodyLogger:(FBSDKLogger *)bodyLogger + attachmentLogger:(FBSDKLogger *)attachmentLogger +{ + if (_logger.isActive) { + [_logger appendFormat:@"Request <#%lu>:\n", (unsigned long)_logger.loggerSerialNumber]; + [_logger appendKey:@"URL" value:request.URL.absoluteString]; + [_logger appendKey:@"Method" value:request.HTTPMethod]; + [_logger appendKey:@"UserAgent" value:[request valueForHTTPHeaderField:@"User-Agent"]]; + [_logger appendKey:@"MIME" value:[request valueForHTTPHeaderField:@"Content-Type"]]; + + if (bodyLength != 0) { + [_logger appendKey:@"Body Size" value:[NSString stringWithFormat:@"%lu kB", (unsigned long)bodyLength / 1024]]; + } + + if (bodyLogger != nil) { + [_logger appendKey:@"Body (w/o attachments)" value:bodyLogger.contents]; + } + + if (attachmentLogger != nil) { + [_logger appendKey:@"Attachments" value:attachmentLogger.contents]; + } + + [_logger appendString:@"\n"]; + + [_logger emitToNSLog]; + } +} + +- (NSString *)accessTokenWithRequest:(FBSDKGraphRequest *)request +{ + NSString *token = request.tokenString ?: request.parameters[kAccessTokenKey]; + if (!token && !(request.flags & FBSDKGraphRequestFlagSkipClientToken) && [FBSDKSettings clientToken].length > 0) { + return [NSString stringWithFormat:@"%@|%@", [FBSDKSettings appID], [FBSDKSettings clientToken]]; + } + return token; +} + +- (void)registerTokenToOmitFromLog:(NSString *)token +{ + if (![FBSDKSettings.loggingBehaviors containsObject:FBSDKLoggingBehaviorAccessTokens]) { + [FBSDKLogger registerStringToReplace:token replaceWith:@"ACCESS_TOKEN_REMOVED"]; + } +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-performSelector-leaks" ++ (NSString *)userAgent +{ + static NSString *agent = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + agent = [NSString stringWithFormat:@"%@.%@", kUserAgentBase, FBSDK_VERSION_STRING]; + }); + NSString *agentWithSuffix = nil; + if ([FBSDKSettings userAgentSuffix]) { + agentWithSuffix = [NSString stringWithFormat:@"%@/%@", agent, [FBSDKSettings userAgentSuffix]]; + } + if (@available(iOS 13.0, *)) { + NSProcessInfo *processInfo = [NSProcessInfo processInfo]; + SEL selector = NSSelectorFromString(@"isMacCatalystApp"); + if (selector && [processInfo respondsToSelector:selector] && [processInfo performSelector:selector]) { + return [NSString stringWithFormat:@"%@/%@", agentWithSuffix ?: agent, @"macOS"]; + } + } + + return agentWithSuffix ?: agent; +} +#pragma clang diagnostic pop + +#pragma mark - NSURLSessionDataDelegate + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task + didSendBodyData:(int64_t)bytesSent + totalBytesSent:(int64_t)totalBytesSent +totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend +{ + id delegate = self.delegate; + + if ([delegate respondsToSelector:@selector(requestConnection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:)]) { + [delegate requestConnection:self + didSendBodyData:(NSUInteger)bytesSent + totalBytesWritten:(NSUInteger)totalBytesSent + totalBytesExpectedToWrite:(NSUInteger)totalBytesExpectedToSend]; + } +} + +#pragma mark - FBSDKGraphErrorRecoveryProcessorDelegate + +#if !TARGET_OS_TV +- (void)processorDidAttemptRecovery:(FBSDKGraphErrorRecoveryProcessor *)processor didRecover:(BOOL)didRecover error:(NSError *)error +{ + if (didRecover) { + FBSDKGraphRequest *originalRequest = _recoveringRequestMetadata.request; + FBSDKGraphRequest *retryRequest = [[FBSDKGraphRequest alloc] initWithGraphPath:originalRequest.graphPath + parameters:originalRequest.parameters + tokenString:[FBSDKAccessToken currentAccessToken].tokenString + version:originalRequest.version + HTTPMethod:originalRequest.HTTPMethod]; + // prevent further attempts at recovery (i.e., additional retries). + [retryRequest setGraphErrorRecoveryDisabled:YES]; + FBSDKGraphRequestMetadata *retryMetadata = [[FBSDKGraphRequestMetadata alloc] initWithRequest:retryRequest completionHandler:_recoveringRequestMetadata.completionHandler batchParameters:_recoveringRequestMetadata.batchParameters]; + [retryRequest startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *retriedError) { + [self processResultBody:result error:retriedError metadata:retryMetadata canNotifyDelegate:YES]; + self->_errorRecoveryProcessor = nil; + self->_recoveringRequestMetadata = nil; + }]; + } else { + [self processResultBody:nil error:error metadata:_recoveringRequestMetadata canNotifyDelegate:YES]; + _errorRecoveryProcessor = nil; + _recoveringRequestMetadata = nil; + } +} +#endif + +#pragma mark - Debugging helpers + +- (NSString *)description +{ + NSMutableString *result = [NSMutableString stringWithFormat:@"<%@: %p, %lu request(s): (\n", + NSStringFromClass([self class]), + self, + (unsigned long)self.requests.count]; + BOOL comma = NO; + for (FBSDKGraphRequestMetadata *metadata in self.requests) { + FBSDKGraphRequest *request = metadata.request; + if (comma) { + [result appendString:@",\n"]; + } + [result appendString:request.description]; + comma = YES; + } + [result appendString:@"\n)>"]; + return result; + +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.h new file mode 100644 index 0000000..ea07c78 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.h @@ -0,0 +1,60 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + A container class for data attachments so that additional metadata can be provided about the attachment. + */ +NS_SWIFT_NAME(GraphRequestDataAttachment) +@interface FBSDKGraphRequestDataAttachment : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Initializes the receiver with the attachment data and metadata. + @param data The attachment data (retained, not copied) + @param filename The filename for the attachment + @param contentType The content type for the attachment + */ +- (instancetype)initWithData:(NSData *)data + filename:(NSString *)filename + contentType:(NSString *)contentType +NS_DESIGNATED_INITIALIZER; + +/** + The content type for the attachment. + */ +@property (nonatomic, copy, readonly) NSString *contentType; + +/** + The attachment data. + */ +@property (nonatomic, strong, readonly) NSData *data; + +/** + The filename for the attachment. + */ +@property (nonatomic, copy, readonly) NSString *filename; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.m new file mode 100644 index 0000000..9a61611 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.m @@ -0,0 +1,33 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequestDataAttachment.h" + +@implementation FBSDKGraphRequestDataAttachment + +- (instancetype)initWithData:(NSData *)data filename:(NSString *)filename contentType:(NSString *)contentType +{ + if ((self = [super init])) { + _data = data; + _filename = [filename copy]; + _contentType = [contentType copy]; + } + return self; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h new file mode 100644 index 0000000..ccc976e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h @@ -0,0 +1,52 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(Base64) +@interface FBSDKBase64 : NSObject + +/** + Decodes a base-64 encoded string. + @param string The base-64 encoded string. + @return NSData containing the decoded bytes. + */ ++ (NSData *)decodeAsData:(NSString *)string; + +/** + Decodes a base-64 encoded string into a string. + @param string The base-64 encoded string. + @return NSString with the decoded UTF-8 value. + */ ++ (NSString *)decodeAsString:(NSString *)string; + +/** + Encodes data into a string. + @param data The data to be encoded. + @return The base-64 encoded string. + */ ++ (NSString *)encodeData:(NSData *)data; + +/** + Encodes string into a base-64 representation. + @param string The string to be encoded. + @return The base-64 encoded string. + */ ++ (NSString *)encodeString:(NSString *)string; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m new file mode 100644 index 0000000..dd81d5a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m @@ -0,0 +1,99 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKBase64.h" + +@implementation FBSDKBase64 + +static FBSDKBase64 *_decoder; +static FBSDKBase64 *_encoder; + +#pragma mark - Class Methods + ++ (void)initialize +{ + if (self == [FBSDKBase64 class]) { + _decoder = [[FBSDKBase64 alloc] init]; + _encoder = [[FBSDKBase64 alloc] init]; + } +} + ++ (NSData *)decodeAsData:(NSString *)string +{ + return [_decoder decodeAsData:string]; +} + ++ (NSString *)decodeAsString:(NSString *)string +{ + return [_decoder decodeAsString:string]; +} + ++ (NSString *)encodeData:(NSData *)data +{ + return [_encoder encodeData:data]; +} + ++ (NSString *)encodeString:(NSString *)string +{ + return [_encoder encodeString:string]; +} + +#pragma mark - Object Lifecycle + +#pragma mark - Implementation Methods + +- (NSData *)decodeAsData:(NSString *)string +{ + if (!string) { + return nil; + } + // This padding will be appended before stripping unknown characters, so if there are unknown characters of count % 4 + // it will not be able to decode. Since we assume valid base64 data, we will take this as is. + int needPadding = string.length % 4; + if (needPadding > 0) { + needPadding = 4 - needPadding; + string = [string stringByPaddingToLength:string.length+needPadding withString:@"=" startingAtIndex:0]; + } + + return [[NSData alloc] initWithBase64EncodedString:string options:NSDataBase64DecodingIgnoreUnknownCharacters]; +} + +- (NSString *)decodeAsString:(NSString *)string +{ + NSData *data = [self decodeAsData:string]; + if (!data) { + return nil; + } + return [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; +} + +- (NSString *)encodeData:(NSData *)data +{ + if (!data) { + return nil; + } + + return [data base64EncodedStringWithOptions:0]; +} + +- (NSString *)encodeString:(NSString *)string +{ + return [self encodeData:[string dataUsingEncoding:NSUTF8StringEncoding]]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.h new file mode 100644 index 0000000..6a461dc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.h @@ -0,0 +1,67 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCoreKit.h" +#else +#import +#endif + +#import "FBSDKBridgeAPIProtocol.h" +#import "FBSDKBridgeAPIProtocolType.h" +#import "FBSDKBridgeAPIRequest.h" +#import "FBSDKBridgeAPIResponse.h" +#import "FBSDKURLOpening.h" + +NS_ASSUME_NONNULL_BEGIN + +typedef void (^FBSDKBridgeAPIResponseBlock)(FBSDKBridgeAPIResponse *response) +NS_SWIFT_NAME(BridgeAPIResponseBlock); + +@interface FBSDKBridgeAPI : NSObject + +- (void)openBridgeAPIRequest:(FBSDKBridgeAPIRequest *)request + useSafariViewController:(BOOL)useSafariViewController + fromViewController:(nullable UIViewController *)fromViewController + completionBlock:(FBSDKBridgeAPIResponseBlock)completionBlock; + +- (void)openURLWithSafariViewController:(NSURL *)url + sender:(nullable id)sender + fromViewController:(UIViewController *)fromViewController + handler:(FBSDKSuccessBlock)handler; + +- (void)openURL:(NSURL *)url + sender:(nullable id)sender + handler:(FBSDKSuccessBlock)handler; + +@property (class, nonatomic, readonly, strong) FBSDKBridgeAPI *sharedInstance +NS_SWIFT_NAME(shared); +@property (nonatomic, readonly, getter=isActive) BOOL active; + + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m new file mode 100644 index 0000000..77949a3 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m @@ -0,0 +1,458 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPI.h" + +#import "FBSDKCoreKit+Internal.h" + +typedef void (^FBSDKAuthenticationCompletionHandler)(NSURL *_Nullable callbackURL, NSError *_Nullable error); + +@protocol FBSDKAuthenticationSession + +- (instancetype)initWithURL:(NSURL *)URL callbackURLScheme:(nullable NSString *)callbackURLScheme completionHandler:(FBSDKAuthenticationCompletionHandler)completionHandler; +- (BOOL)start; +- (void)cancel; +@optional +- (void)setPresentationContextProvider:(id)presentationContextProvider; + +@end + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000 +#import +@interface FBSDKBridgeAPI() +#else +@interface FBSDKBridgeAPI() +#endif + +@end + +@implementation FBSDKBridgeAPI { + FBSDKBridgeAPIRequest *_pendingRequest; + FBSDKBridgeAPIResponseBlock _pendingRequestCompletionBlock; + id _pendingURLOpen; + id _authenticationSession NS_AVAILABLE_IOS(11_0); + FBSDKAuthenticationCompletionHandler _authenticationSessionCompletionHandler NS_AVAILABLE_IOS(11_0); + + BOOL _expectingBackground; + BOOL _isRequestingSFAuthenticationSession; + UIViewController *_safariViewController; + BOOL _isDismissingSafariViewController; + BOOL _isAppLaunched; +} + ++ (void)load +{ + [[FBSDKApplicationDelegate sharedInstance] addObserver:[FBSDKBridgeAPI sharedInstance]]; +} + ++ (FBSDKBridgeAPI *)sharedInstance +{ + static FBSDKBridgeAPI *_sharedInstance; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _sharedInstance = [[self alloc] init]; + }); + return _sharedInstance; +} + +- (void)applicationDidBecomeActive:(UIApplication *)application +{ + // _expectingBackground can be YES if the caller started doing work (like login) + // within the app delegate's lifecycle like openURL, in which case there + // might have been a "didBecomeActive" event pending that we want to ignore. + BOOL notExpectingBackground = !_expectingBackground && !_safariViewController && !_isDismissingSafariViewController && !_isRequestingSFAuthenticationSession; + if (notExpectingBackground) { + _active = YES; + + [_pendingURLOpen applicationDidBecomeActive:application]; + [self _cancelBridgeRequest]; + + [[NSNotificationCenter defaultCenter] postNotificationName:FBSDKApplicationDidBecomeActiveNotification object:self]; + } +} + +- (void)applicationDidEnterBackground:(UIApplication *)application +{ + _isRequestingSFAuthenticationSession = NO; + _active = NO; + _expectingBackground = NO; +} + +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(NSString *)sourceApplication + annotation:(id)annotation +{ + id pendingURLOpen = _pendingURLOpen; + BOOL canOpenURL = [pendingURLOpen canOpenURL:url + forApplication:application + sourceApplication:sourceApplication + annotation:annotation]; + + void (^completePendingOpenURLBlock)(void) = ^{ + self->_pendingURLOpen = nil; + [pendingURLOpen application:application + openURL:url + sourceApplication:sourceApplication + annotation:annotation]; + self->_isDismissingSafariViewController = NO; + }; + // if they completed a SFVC flow, dismiss it. + if (_safariViewController) { + _isDismissingSafariViewController = YES; + [_safariViewController.presentingViewController dismissViewControllerAnimated:YES + completion:completePendingOpenURLBlock]; + _safariViewController = nil; + } else { + if (@available(iOS 11.0, *)) { + if (_authenticationSession != nil) { + [_authenticationSession cancel]; + _authenticationSession = nil; + + // This check is needed in case another sdk / message / ad etc... tries to open the app + // during the login flow. + // This dismisses the authentication browser without triggering any login callbacks. + // Hence we need to explicitly call the authentication session's completion handler. + if (!canOpenURL) { + NSString *errorMessage = [[NSString alloc] + initWithFormat:@"Login attempt cancelled by alternate call to openURL from: %@", + url]; + NSError *loginError = [[NSError alloc] + initWithDomain:FBSDKErrorDomain + code:FBSDKErrorBridgeAPIInterruption + userInfo:@{FBSDKErrorLocalizedDescriptionKey: errorMessage}]; + _authenticationSessionCompletionHandler(url, loginError); + _authenticationSessionCompletionHandler = nil; + } + } + } + completePendingOpenURLBlock(); + } + + if (canOpenURL) { + return YES; + } + + if ([self _handleBridgeAPIResponseURL:url sourceApplication:sourceApplication]) { + return YES; + } + + return NO; +} + +- (BOOL)application:(UIApplication *)application +didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + NSURL *launchedURL = launchOptions[UIApplicationLaunchOptionsURLKey]; + NSString *sourceApplication = launchOptions[UIApplicationLaunchOptionsSourceApplicationKey]; + + if (launchedURL && + sourceApplication) { + Class loginManagerClass = NSClassFromString(@"FBSDKLoginManager"); + if (loginManagerClass) { + id annotation = launchOptions[UIApplicationLaunchOptionsAnnotationKey]; + id loginManager = [[loginManagerClass alloc] init]; + return [loginManager application:application + openURL:launchedURL + sourceApplication:sourceApplication + annotation:annotation]; + } + } + + return NO; +} + +#pragma mark - Internal Methods + +- (void)openURL:(NSURL *)url sender:(id)sender handler:(FBSDKSuccessBlock)handler +{ + _expectingBackground = YES; + _pendingURLOpen = sender; + dispatch_async(dispatch_get_main_queue(), ^{ + // Dispatch openURL calls to prevent hangs if we're inside the current app delegate's openURL flow already + NSOperatingSystemVersion iOS10Version = { .majorVersion = 10, .minorVersion = 0, .patchVersion = 0 }; + if ([FBSDKInternalUtility isOSRunTimeVersionAtLeast:iOS10Version]) { + if (@available(iOS 10.0, *)) { + [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:^(BOOL success) { + handler(success, nil); + }]; + } + } else { + BOOL opened = [[UIApplication sharedApplication] openURL:url]; + + if ([url.scheme hasPrefix:@"http"] && !opened) { + NSOperatingSystemVersion iOS8Version = { .majorVersion = 8, .minorVersion = 0, .patchVersion = 0 }; + if (![FBSDKInternalUtility isOSRunTimeVersionAtLeast:iOS8Version]) { + // Safari openURL calls can wrongly return NO on iOS 7 so manually overwrite that case to YES. + // Otherwise we would rather trust in the actual result of openURL + opened = YES; + } + } + if (handler) { + handler(opened, nil); + } + } + }); +} + +- (void)openBridgeAPIRequest:(FBSDKBridgeAPIRequest *)request + useSafariViewController:(BOOL)useSafariViewController + fromViewController:(UIViewController *)fromViewController + completionBlock:(FBSDKBridgeAPIResponseBlock)completionBlock +{ + if (!request) { + return; + } + NSError *error; + NSURL *requestURL = [request requestURL:&error]; + if (!requestURL) { + FBSDKBridgeAPIResponse *response = [FBSDKBridgeAPIResponse bridgeAPIResponseWithRequest:request error:error]; + completionBlock(response); + return; + } + _pendingRequest = request; + _pendingRequestCompletionBlock = [completionBlock copy]; + void (^handler)(BOOL, NSError *) = ^(BOOL openedURL, NSError *anError) { + if (!openedURL) { + self->_pendingRequest = nil; + self->_pendingRequestCompletionBlock = nil; + NSError *openedURLError; + if ([request.scheme hasPrefix:@"http"]) { + openedURLError = [FBSDKError errorWithCode:FBSDKErrorBrowserUnavailable + message:@"the app switch failed because the browser is unavailable"]; + } else { + openedURLError = [FBSDKError errorWithCode:FBSDKErrorAppVersionUnsupported + message:@"the app switch failed because the destination app is out of date"]; + } + FBSDKBridgeAPIResponse *response = [FBSDKBridgeAPIResponse bridgeAPIResponseWithRequest:request + error:openedURLError]; + completionBlock(response); + return; + } + }; + if (useSafariViewController) { + [self openURLWithSafariViewController:requestURL sender:nil fromViewController:fromViewController handler:handler]; + } else { + [self openURL:requestURL sender:nil handler:handler]; + } +} + +- (void)openURLWithSafariViewController:(NSURL *)url + sender:(id)sender + fromViewController:(UIViewController *)fromViewController + handler:(FBSDKSuccessBlock)handler +{ + if (![url.scheme hasPrefix:@"http"]) { + [self openURL:url sender:sender handler:handler]; + return; + } + + _expectingBackground = NO; + _pendingURLOpen = sender; + + if (@available(iOS 11.0, *)) { + if ([sender isAuthenticationURL:url]) { + [self _setSessionCompletionHandlerFromHandler:handler]; + [self _openURLWithAuthenticationSession:url]; + return; + } + } + + // trying to dynamically load SFSafariViewController class + // so for the cases when it is available we can send users through Safari View Controller flow + // in cases it is not available regular flow will be selected + Class SFSafariViewControllerClass = fbsdkdfl_SFSafariViewControllerClass(); + + if (SFSafariViewControllerClass) { + UIViewController *parent = fromViewController ?: [FBSDKInternalUtility topMostViewController]; + if (parent == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"There are no valid ViewController to present SafariViewController with", nil]; + return; + } + + NSURLComponents *components = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO]; + NSURLQueryItem *sfvcQueryItem = [[NSURLQueryItem alloc] initWithName:@"sfvc" value:@"1"]; + components.queryItems = [components.queryItems arrayByAddingObject:sfvcQueryItem]; + url = components.URL; + FBSDKContainerViewController *container = [[FBSDKContainerViewController alloc] init]; + container.delegate = self; + if (parent.transitionCoordinator != nil) { + // Wait until the transition is finished before presenting SafariVC to avoid a blank screen. + [parent.transitionCoordinator animateAlongsideTransition:NULL completion:^(id context) { + // Note SFVC init must occur inside block to avoid blank screen. + self->_safariViewController = [[SFSafariViewControllerClass alloc] initWithURL:url]; + // Disable dismissing with edge pan gesture + self->_safariViewController.modalPresentationStyle = UIModalPresentationOverFullScreen; + [self->_safariViewController performSelector:@selector(setDelegate:) withObject:self]; + [container displayChildController:self->_safariViewController]; + [parent presentViewController:container animated:YES completion:nil]; + }]; + } else { + _safariViewController = [[SFSafariViewControllerClass alloc] initWithURL:url]; + // Disable dismissing with edge pan gesture + _safariViewController.modalPresentationStyle = UIModalPresentationOverFullScreen; + [_safariViewController performSelector:@selector(setDelegate:) withObject:self]; + [container displayChildController:_safariViewController]; + [parent presentViewController:container animated:YES completion:nil]; + } + + // Assuming Safari View Controller always opens + if (handler) { + handler(YES, nil); + } + } else { + [self openURL:url sender:sender handler:handler]; + } +} + +- (void)_openURLWithAuthenticationSession:(NSURL *)url +{ + Class AuthenticationSessionClass = fbsdkdfl_ASWebAuthenticationSessionClass(); + + if (!AuthenticationSessionClass) { + AuthenticationSessionClass = fbsdkdfl_SFAuthenticationSessionClass(); + } + + if (AuthenticationSessionClass != nil) { + if (_authenticationSession != nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"There is already a request for authenticated session. Cancelling active SFAuthenticationSession before starting the new one.", nil]; + [_authenticationSession cancel]; + } + _authenticationSession = [[AuthenticationSessionClass alloc] initWithURL:url + callbackURLScheme:[FBSDKInternalUtility appURLScheme] + completionHandler:_authenticationSessionCompletionHandler]; + if (@available(iOS 13.0, *)) { + if ([_authenticationSession respondsToSelector:@selector(setPresentationContextProvider:)]) { + [_authenticationSession setPresentationContextProvider:self]; + } + } + _isRequestingSFAuthenticationSession = YES; + [_authenticationSession start]; + } +} + +- (void)_setSessionCompletionHandlerFromHandler:(void(^)(BOOL, NSError *))handler +{ + __weak FBSDKBridgeAPI *weakSelf = self; + _authenticationSessionCompletionHandler = ^ (NSURL *aURL, NSError *error) { + FBSDKBridgeAPI *strongSelf = weakSelf; + strongSelf->_isRequestingSFAuthenticationSession = NO; + handler(error == nil, error); + if (error == nil) { + [strongSelf application:[UIApplication sharedApplication] openURL:aURL sourceApplication:@"com.apple" annotation:nil]; + } + strongSelf->_authenticationSession = nil; + strongSelf->_authenticationSessionCompletionHandler = nil; + }; +} + +#pragma mark -- SFSafariViewControllerDelegate + +// This means the user tapped "Done" which we should treat as a cancellation. +- (void)safariViewControllerDidFinish:(UIViewController *)safariViewController +{ + if (_pendingURLOpen) { + id pendingURLOpen = _pendingURLOpen; + + _pendingURLOpen = nil; + + [pendingURLOpen application:nil + openURL:nil + sourceApplication:nil + annotation:nil]; + } + [self _cancelBridgeRequest]; + _safariViewController = nil; +} + +#pragma mark -- FBSDKContainerViewControllerDelegate + +- (void)viewControllerDidDisappear:(FBSDKContainerViewController *)viewController animated:(BOOL)animated +{ + if (_safariViewController) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"**ERROR**:\n The SFSafariViewController's parent view controller was dismissed.\n" + "This can happen if you are triggering login from a UIAlertController. Instead, make sure your top most view " + "controller will not be prematurely dismissed."]; + [self safariViewControllerDidFinish:_safariViewController]; + } +} + +#pragma mark - Helper Methods + +- (BOOL)_handleBridgeAPIResponseURL:(NSURL *)responseURL sourceApplication:(NSString *)sourceApplication +{ + FBSDKBridgeAPIRequest *request = _pendingRequest; + FBSDKBridgeAPIResponseBlock completionBlock = _pendingRequestCompletionBlock; + _pendingRequest = nil; + _pendingRequestCompletionBlock = NULL; + if (![responseURL.scheme isEqualToString:[FBSDKInternalUtility appURLScheme]]) { + return NO; + } + if (![responseURL.host isEqualToString:@"bridge"]) { + return NO; + } + if (!request) { + return NO; + } + if (!completionBlock) { + return YES; + } + NSError *error; + FBSDKBridgeAPIResponse *response = [FBSDKBridgeAPIResponse bridgeAPIResponseWithRequest:request + responseURL:responseURL + sourceApplication:sourceApplication + error:&error]; + if (response) { + completionBlock(response); + return YES; + } else if (error) { + completionBlock([FBSDKBridgeAPIResponse bridgeAPIResponseWithRequest:request error:error]); + return YES; + } else { + return NO; + } +} + +- (void)_cancelBridgeRequest +{ + if (_pendingRequest && _pendingRequestCompletionBlock) { + _pendingRequestCompletionBlock([FBSDKBridgeAPIResponse bridgeAPIResponseCancelledWithRequest:_pendingRequest]); + } + _pendingRequest = nil; + _pendingRequestCompletionBlock = NULL; +} + +#pragma mark - ASWebAuthenticationPresentationContextProviding +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000 +- (ASPresentationAnchor)presentationAnchorForWebAuthenticationSession:(ASWebAuthenticationSession *)session API_AVAILABLE(ios(13.0)){ +#else +- (UIWindow *)presentationAnchorForWebAuthenticationSession:(id)session API_AVAILABLE(ios(11.0)) { +#endif + return UIApplication.sharedApplication.keyWindow; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h new file mode 100644 index 0000000..a109f68 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h @@ -0,0 +1,49 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKBridgeAPIProtocolType.h" + +@class FBSDKBridgeAPIRequest; + +FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIAppIDKey; +FOUNDATION_EXPORT NSString *const FBSDKBridgeAPISchemeSuffixKey; +FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIVersionKey; + +NS_SWIFT_NAME(BridgeAPIProtocol) +@protocol FBSDKBridgeAPIProtocol + +- (NSURL *)requestURLWithActionID:(NSString *)actionID + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + error:(NSError *__autoreleasing *)errorRef; +- (NSDictionary *)responseParametersForActionID:(NSString *)actionID + queryParameters:(NSDictionary *)queryParameters + cancelled:(BOOL *)cancelledRef + error:(NSError *__autoreleasing *)errorRef; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h new file mode 100644 index 0000000..00f2bc5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +typedef NS_ENUM(NSUInteger, FBSDKBridgeAPIProtocolType) +{ + FBSDKBridgeAPIProtocolTypeNative, + FBSDKBridgeAPIProtocolTypeWeb, +} NS_SWIFT_NAME(BridgeAPIProtocol.Type); + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h new file mode 100644 index 0000000..74c7809 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h @@ -0,0 +1,41 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIProtocol.h" +#import "FBSDKBridgeAPIRequest.h" + +@interface FBSDKBridgeAPIRequest () + +- (instancetype)initWithProtocol:(id)protocol + protocolType:(FBSDKBridgeAPIProtocolType)protocolType + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + userInfo:(NSDictionary *)userInfo +NS_DESIGNATED_INITIALIZER; + +@property (nonatomic, strong, readonly) id protocol; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h new file mode 100644 index 0000000..bbc25d6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h @@ -0,0 +1,57 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCopying.h" +#else +#import +#endif + +#import "FBSDKBridgeAPIProtocolType.h" + +NS_SWIFT_NAME(BridgeAPIRequest) +@interface FBSDKBridgeAPIRequest : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; ++ (instancetype)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + userInfo:(NSDictionary *)userInfo; + +@property (nonatomic, copy, readonly) NSString *actionID; +@property (nonatomic, copy, readonly) NSString *methodName; +@property (nonatomic, copy, readonly) NSString *methodVersion; +@property (nonatomic, copy, readonly) NSDictionary *parameters; +@property (nonatomic, assign, readonly) FBSDKBridgeAPIProtocolType protocolType; +@property (nonatomic, copy, readonly) NSString *scheme; +@property (nonatomic, copy, readonly) NSDictionary *userInfo; + +- (NSURL *)requestURL:(NSError *__autoreleasing *)errorRef; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m new file mode 100644 index 0000000..fb8f2ca --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m @@ -0,0 +1,157 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIRequest.h" +#import "FBSDKBridgeAPIRequest+Private.h" + +#import "FBSDKBridgeAPIProtocolNativeV1.h" +#import "FBSDKBridgeAPIProtocolWebV1.h" +#import "FBSDKBridgeAPIProtocolWebV2.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" + +NSString *const FBSDKBridgeAPIAppIDKey = @"app_id"; +NSString *const FBSDKBridgeAPISchemeSuffixKey = @"scheme_suffix"; +NSString *const FBSDKBridgeAPIVersionKey = @"version"; + +@implementation FBSDKBridgeAPIRequest + +#pragma mark - Class Methods + ++ (instancetype)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + userInfo:(NSDictionary *)userInfo +{ + return [[self alloc] initWithProtocol:[self _protocolForType:protocolType scheme:scheme] + protocolType:protocolType + scheme:scheme + methodName:methodName + methodVersion:methodVersion + parameters:parameters + userInfo:userInfo]; +} + ++ (NSDictionary *)protocolMap +{ + static NSDictionary *_protocolMap; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _protocolMap = @{ + @(FBSDKBridgeAPIProtocolTypeNative): @{ + FBSDK_CANOPENURL_FACEBOOK:[[FBSDKBridgeAPIProtocolNativeV1 alloc] initWithAppScheme:@"fbapi20130214"], + FBSDK_CANOPENURL_MESSENGER:[[FBSDKBridgeAPIProtocolNativeV1 alloc] initWithAppScheme:@"fb-messenger-share-api"], + FBSDK_CANOPENURL_MSQRD_PLAYER:[[FBSDKBridgeAPIProtocolNativeV1 alloc] initWithAppScheme:@"msqrdplayer-api20170208"] + }, + @(FBSDKBridgeAPIProtocolTypeWeb): @{ + @"https": [[FBSDKBridgeAPIProtocolWebV1 alloc] init], + @"web": [[FBSDKBridgeAPIProtocolWebV2 alloc] init] + }, + }; + }); + return _protocolMap; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithProtocol:(id)protocol + protocolType:(FBSDKBridgeAPIProtocolType)protocolType + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + userInfo:(NSDictionary *)userInfo +{ + if (!protocol) { + return nil; + } + if ((self = [super init])) { + _protocol = protocol; + _protocolType = protocolType; + _scheme = [scheme copy]; + _methodName = [methodName copy]; + _methodVersion = [methodVersion copy]; + _parameters = [parameters copy]; + _userInfo = [userInfo copy]; + + _actionID = [NSUUID UUID].UUIDString; + } + return self; +} + +#pragma mark - Public Methods + +- (NSURL *)requestURL:(NSError *__autoreleasing *)errorRef +{ + NSURL *requestURL = [_protocol requestURLWithActionID:self.actionID + scheme:self.scheme + methodName:self.methodName + methodVersion:self.methodVersion + parameters:self.parameters + error:errorRef]; + if (!requestURL) { + return nil; + } + + [FBSDKInternalUtility validateURLSchemes]; + + NSDictionary *requestQueryParameters = [FBSDKBasicUtility dictionaryWithQueryString:requestURL.query]; + NSMutableDictionary *queryParameters = [[NSMutableDictionary alloc] initWithDictionary:requestQueryParameters]; + [FBSDKBasicUtility dictionary:queryParameters setObject:[FBSDKSettings appID] forKey:FBSDKBridgeAPIAppIDKey]; + [FBSDKBasicUtility dictionary:queryParameters + setObject:[FBSDKSettings appURLSchemeSuffix] + forKey:FBSDKBridgeAPISchemeSuffixKey]; + requestURL = [FBSDKInternalUtility URLWithScheme:requestURL.scheme + host:requestURL.host + path:requestURL.path + queryParameters:queryParameters + error:errorRef]; + return requestURL; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + return self; +} + ++ (id)_protocolForType:(FBSDKBridgeAPIProtocolType)type scheme:(NSString *)scheme +{ + id protocol = [self protocolMap][@(type)][scheme]; + if (type == FBSDKBridgeAPIProtocolTypeWeb) { + return protocol; + } + NSURLComponents *components = [[NSURLComponents alloc] init]; + components.scheme = scheme; + components.path = @"/"; + if ([[UIApplication sharedApplication] canOpenURL:components.URL]) { + return protocol; + } + return nil; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h new file mode 100644 index 0000000..8cbe0cd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h @@ -0,0 +1,53 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCopying.h" +#else +#import +#endif + +#import "FBSDKBridgeAPIRequest.h" + +NS_SWIFT_NAME(BridgeAPIResponse) +@interface FBSDKBridgeAPIResponse : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (instancetype)bridgeAPIResponseWithRequest:(FBSDKBridgeAPIRequest *)request error:(NSError *)error; ++ (instancetype)bridgeAPIResponseWithRequest:(FBSDKBridgeAPIRequest *)request + responseURL:(NSURL *)responseURL + sourceApplication:(NSString *)sourceApplication + error:(NSError *__autoreleasing *)errorRef; ++ (instancetype)bridgeAPIResponseCancelledWithRequest:(FBSDKBridgeAPIRequest *)request; + +@property (nonatomic, assign, readonly, getter=isCancelled) BOOL cancelled; +@property (nonatomic, copy, readonly) NSError *error; +@property (nonatomic, copy, readonly) FBSDKBridgeAPIRequest *request; +@property (nonatomic, copy, readonly) NSDictionary *responseParameters; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m new file mode 100644 index 0000000..e630cdd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m @@ -0,0 +1,131 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIResponse.h" + +#import "FBSDKBridgeAPIProtocol.h" +#import "FBSDKBridgeAPIProtocolType.h" +#import "FBSDKBridgeAPIRequest+Private.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKTypeUtility.h" + +@interface FBSDKBridgeAPIResponse () +- (instancetype)initWithRequest:(FBSDKBridgeAPIRequest *)request + responseParameters:(NSDictionary *)responseParameters + cancelled:(BOOL)cancelled + error:(NSError *)error +NS_DESIGNATED_INITIALIZER; +@end + +@implementation FBSDKBridgeAPIResponse + +#pragma mark - Class Methods + ++ (instancetype)bridgeAPIResponseWithRequest:(FBSDKBridgeAPIRequest *)request error:(NSError *)error +{ + return [[self alloc] initWithRequest:request + responseParameters:nil + cancelled:NO + error:error]; +} + ++ (instancetype)bridgeAPIResponseWithRequest:(FBSDKBridgeAPIRequest *)request + responseURL:(NSURL *)responseURL + sourceApplication:(NSString *)sourceApplication + error:(NSError *__autoreleasing *)errorRef +{ + FBSDKBridgeAPIProtocolType protocolType = request.protocolType; + switch (protocolType) { + case FBSDKBridgeAPIProtocolTypeNative:{ + if (@available(iOS 13, *)) { + break; + } else { + if (![FBSDKInternalUtility isFacebookBundleIdentifier:sourceApplication]) { + return nil; + } + break; + } + } + case FBSDKBridgeAPIProtocolTypeWeb:{ + if (![FBSDKInternalUtility isSafariBundleIdentifier:sourceApplication]) { + return nil; + } + break; + } + } + NSDictionary *const queryParameters = [FBSDKBasicUtility dictionaryWithQueryString:responseURL.query]; + if (!queryParameters) { + return nil; + } + id protocol = request.protocol; + BOOL cancelled; + NSError *error; + NSDictionary *responseParameters = [protocol responseParametersForActionID:request.actionID + queryParameters:queryParameters + cancelled:&cancelled + error:&error]; + if (errorRef != NULL) { + *errorRef = error; + } + if (!responseParameters) { + return nil; + } + return [[self alloc] initWithRequest:request + responseParameters:responseParameters + cancelled:cancelled + error:error]; +} + ++ (instancetype)bridgeAPIResponseCancelledWithRequest:(FBSDKBridgeAPIRequest *)request +{ + return [[self alloc] initWithRequest:request + responseParameters:nil + cancelled:YES + error:nil]; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithRequest:(FBSDKBridgeAPIRequest *)request + responseParameters:(NSDictionary *)responseParameters + cancelled:(BOOL)cancelled + error:(NSError *)error +{ + if ((self = [super init])) { + _request = [request copy]; + _responseParameters = [responseParameters copy]; + _cancelled = cancelled; + _error = [error copy]; + } + return self; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + return self; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h new file mode 100644 index 0000000..ec52281 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h @@ -0,0 +1,48 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +NS_SWIFT_NAME(URLOpening) +@protocol FBSDKURLOpening + +// Implementations should make sure they can handle nil parameters +// which is possible in SafariViewController. +// see canOpenURL below. +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(NSString *)sourceApplication + annotation:(id)annotation; + +// create a different handler to return YES/NO if the receiver can process the above openURL:. +// This is separated so that we can process the openURL: in callbacks, while still returning +// the result of canOpenURL synchronously in FBSDKApplicationDelegate +- (BOOL)canOpenURL:(NSURL *)url + forApplication:(UIApplication *)application + sourceApplication:(NSString *)sourceApplication + annotation:(id)annotation; + +- (void)applicationDidBecomeActive:(UIApplication *)application; + +- (BOOL)isAuthenticationURL:(NSURL *)url; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h new file mode 100644 index 0000000..48da81d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h @@ -0,0 +1,78 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKBridgeAPIProtocol.h" + +typedef struct +{ + __unsafe_unretained NSString *bridgeArgs; + __unsafe_unretained NSString *methodArgs; + __unsafe_unretained NSString *methodVersion; +} FBSDKBridgeAPIProtocolNativeV1OutputKeysStruct; +FOUNDATION_EXPORT const FBSDKBridgeAPIProtocolNativeV1OutputKeysStruct FBSDKBridgeAPIProtocolNativeV1OutputKeys; + +typedef struct +{ + __unsafe_unretained NSString *actionID; + __unsafe_unretained NSString *appIcon; + __unsafe_unretained NSString *appName; + __unsafe_unretained NSString *sdkVersion; +} FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeysStruct; +FOUNDATION_EXPORT const FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeysStruct FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys; + +typedef struct +{ + __unsafe_unretained NSString *bridgeArgs; + __unsafe_unretained NSString *methodResults; +} FBSDKBridgeAPIProtocolNativeV1InputKeysStruct; +FOUNDATION_EXPORT const FBSDKBridgeAPIProtocolNativeV1InputKeysStruct FBSDKBridgeAPIProtocolNativeV1InputKeys; + +typedef struct +{ + __unsafe_unretained NSString *actionID; + __unsafe_unretained NSString *error; +} FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeysStruct; +FOUNDATION_EXPORT const FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeysStruct FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeys; + +NS_SWIFT_NAME(BridgeAPIProtocolNativeV1) +@interface FBSDKBridgeAPIProtocolNativeV1 : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithAppScheme:(NSString *)appScheme; +- (instancetype)initWithAppScheme:(NSString *)appScheme + pasteboard:(UIPasteboard *)pasteboard + dataLengthThreshold:(NSUInteger)dataLengthThreshold + includeAppIcon:(BOOL)includeAppIcon +NS_DESIGNATED_INITIALIZER; + +@property (nonatomic, copy, readonly) NSString *appScheme; +@property (nonatomic, assign, readonly) NSUInteger dataLengthThreshold; +@property (nonatomic, assign, readonly, getter=shouldIncludeAppIcon) BOOL includeAppIcon; +@property (nonatomic, strong, readonly) UIPasteboard *pasteboard; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m new file mode 100644 index 0000000..0bdce35 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m @@ -0,0 +1,341 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIProtocolNativeV1.h" + +#import + +#import "FBSDKApplicationDelegate+Internal.h" +#import "FBSDKBase64.h" +#import "FBSDKBridgeAPIRequest.h" +#import "FBSDKConstants.h" +#import "FBSDKError.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" + +#define FBSDKBridgeAPIProtocolNativeV1BridgeMaxBase64DataLengthThreshold (1024 * 16) + +const FBSDKBridgeAPIProtocolNativeV1OutputKeysStruct FBSDKBridgeAPIProtocolNativeV1OutputKeys = +{ + .bridgeArgs = @"bridge_args", + .methodArgs = @"method_args", + .methodVersion = @"version", +}; + +const FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeysStruct FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys = +{ + .actionID = @"action_id", + .appIcon = @"app_icon", + .appName = @"app_name", + .sdkVersion = @"sdk_version", +}; + +const FBSDKBridgeAPIProtocolNativeV1InputKeysStruct FBSDKBridgeAPIProtocolNativeV1InputKeys = +{ + .bridgeArgs = @"bridge_args", + .methodResults = @"method_results", +}; + +const FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeysStruct FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeys = +{ + .actionID = @"action_id", + .error = @"error", +}; + +static const struct +{ + __unsafe_unretained NSString *isBase64; + __unsafe_unretained NSString *isPasteboard; + __unsafe_unretained NSString *tag; + __unsafe_unretained NSString *value; +} FBSDKBridgeAPIProtocolNativeV1DataKeys = +{ + .isBase64 = @"isBase64", + .isPasteboard = @"isPasteboard", + .tag = @"tag", + .value = @"fbAppBridgeType_jsonReadyValue", +}; + +static NSString *const FBSDKBridgeAPIProtocolNativeV1DataPasteboardKey = @"com.facebook.Facebook.FBAppBridgeType"; + +static const struct +{ + __unsafe_unretained NSString *data; + __unsafe_unretained NSString *image; +} FBSDKBridgeAPIProtocolNativeV1DataTypeTags = +{ + .data = @"data", + // we serialize jpegs but use png for backward compatibility - it is any image format that UIImage can handle + .image = @"png", +}; + +static const struct +{ + __unsafe_unretained NSString *code; + __unsafe_unretained NSString *domain; + __unsafe_unretained NSString *userInfo; +} FBSDKBridgeAPIProtocolNativeV1ErrorKeys = +{ + .code = @"code", + .domain = @"domain", + .userInfo = @"user_info", +}; + +@implementation FBSDKBridgeAPIProtocolNativeV1 + +#pragma mark - Object Lifecycle + +- (instancetype)initWithAppScheme:(NSString *)appScheme +{ + return [self initWithAppScheme:appScheme + pasteboard:[UIPasteboard generalPasteboard] + dataLengthThreshold:FBSDKBridgeAPIProtocolNativeV1BridgeMaxBase64DataLengthThreshold + includeAppIcon:YES]; +} + +- (instancetype)initWithAppScheme:(NSString *)appScheme + pasteboard:(UIPasteboard *)pasteboard + dataLengthThreshold:(NSUInteger)dataLengthThreshold + includeAppIcon:(BOOL)includeAppIcon +{ + if ((self = [super init])) { + _appScheme = [appScheme copy]; + _pasteboard = pasteboard; + _dataLengthThreshold = dataLengthThreshold; + _includeAppIcon = includeAppIcon; + } + return self; +} + +#pragma mark - FBSDKBridgeAPIProtocol + +- (NSURL *)requestURLWithActionID:(NSString *)actionID + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + error:(NSError *__autoreleasing *)errorRef +{ + NSString *const host = @"dialog"; + NSString *const path = [@"/" stringByAppendingString:methodName]; + + NSMutableDictionary *const queryParameters = [[NSMutableDictionary alloc] init]; + [FBSDKBasicUtility dictionary:queryParameters setObject:methodVersion + forKey:FBSDKBridgeAPIProtocolNativeV1OutputKeys.methodVersion]; + + if (parameters.count) { + NSString *const parametersString = [self _JSONStringForObject:parameters enablePasteboard:YES error:errorRef]; + if (!parametersString) { + return nil; + } + NSString *const escapedParametersString = [parametersString stringByReplacingOccurrencesOfString:@"&" + withString:@"%26" + options:NSCaseInsensitiveSearch + range:NSMakeRange(0, + parametersString.length)]; + [FBSDKBasicUtility dictionary:queryParameters + setObject:escapedParametersString + forKey:FBSDKBridgeAPIProtocolNativeV1OutputKeys.methodArgs]; + } + + NSDictionary *const bridgeParameters = [self _bridgeParametersWithActionID:actionID error:errorRef]; + if (!bridgeParameters) { + return nil; + } + NSString *const bridgeParametersString = [self _JSONStringForObject:bridgeParameters enablePasteboard:NO error:errorRef]; + if (!bridgeParametersString) { + return nil; + } + [FBSDKBasicUtility dictionary:queryParameters + setObject:bridgeParametersString + forKey:FBSDKBridgeAPIProtocolNativeV1OutputKeys.bridgeArgs]; + + + return [FBSDKInternalUtility URLWithScheme:self.appScheme + host:host + path:path + queryParameters:queryParameters + error:errorRef]; +} + +- (NSDictionary *)responseParametersForActionID:(NSString *)actionID + queryParameters:(NSDictionary *)queryParameters + cancelled:(BOOL *)cancelledRef + error:(NSError *__autoreleasing *)errorRef +{ + if (cancelledRef != NULL) { + *cancelledRef = NO; + } + if (errorRef != NULL) { + *errorRef = nil; + } + NSError *error; + NSString *bridgeParametersJSON = queryParameters[FBSDKBridgeAPIProtocolNativeV1InputKeys.bridgeArgs]; + NSDictionary *bridgeParameters = [FBSDKBasicUtility objectForJSONString:bridgeParametersJSON error:&error]; + bridgeParameters = [FBSDKTypeUtility dictionaryValue:bridgeParameters]; + if (!bridgeParameters) { + if (error && (errorRef != NULL)) { + *errorRef = [FBSDKError invalidArgumentErrorWithName:FBSDKBridgeAPIProtocolNativeV1InputKeys.bridgeArgs + value:bridgeParametersJSON + message:@"Invalid bridge_args." + underlyingError:error]; + } + return nil; + } + NSString *responseActionID = bridgeParameters[FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeys.actionID]; + responseActionID = [FBSDKTypeUtility stringValue:responseActionID]; + if (![responseActionID isEqualToString:actionID]) { + return nil; + } + NSDictionary *errorDictionary = bridgeParameters[FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeys.error]; + errorDictionary = [FBSDKTypeUtility dictionaryValue:errorDictionary]; + if (errorDictionary) { + error = [self _errorWithDictionary:errorDictionary]; + if (errorRef != NULL) { + *errorRef = error; + } + return nil; + } + NSString *resultParametersJSON = queryParameters[FBSDKBridgeAPIProtocolNativeV1InputKeys.methodResults]; + NSDictionary *resultParameters = [FBSDKBasicUtility objectForJSONString:resultParametersJSON error:&error]; + if (!resultParameters) { + if (errorRef != NULL) { + *errorRef = [FBSDKError invalidArgumentErrorWithName:FBSDKBridgeAPIProtocolNativeV1InputKeys.methodResults + value:resultParametersJSON + message:@"Invalid method_results." + underlyingError:error]; + } + return nil; + } + if (cancelledRef != NULL) { + NSString *completionGesture = [FBSDKTypeUtility stringValue:resultParameters[@"completionGesture"]]; + *cancelledRef = [completionGesture isEqualToString:@"cancel"]; + } + return resultParameters; +} + +#pragma mark - Helper Methods + +- (UIImage *)_appIcon +{ + if (!_includeAppIcon) { + return nil; + } + NSArray *files = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIcons"] + [@"CFBundlePrimaryIcon"] + [@"CFBundleIconFiles"]; + if (!files.count) { + return nil; + } + return [UIImage imageNamed:files[0]]; +} + +- (NSDictionary *)_bridgeParametersWithActionID:(NSString *)actionID error:(NSError *__autoreleasing *)errorRef +{ + NSMutableDictionary *bridgeParameters = [[NSMutableDictionary alloc] init]; + [FBSDKBasicUtility dictionary:bridgeParameters setObject:actionID + forKey:FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys.actionID]; + [FBSDKBasicUtility dictionary:bridgeParameters setObject:[self _appIcon] + forKey:FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys.appIcon]; + [FBSDKBasicUtility dictionary:bridgeParameters setObject:[FBSDKSettings displayName] + forKey:FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys.appName]; + [FBSDKBasicUtility dictionary:bridgeParameters setObject:[FBSDKSettings sdkVersion] + forKey:FBSDKBridgeAPIProtocolNativeV1BridgeParameterOutputKeys.sdkVersion]; + return bridgeParameters; +} + +- (NSError *)_errorWithDictionary:(NSDictionary *)dictionary +{ + if (!dictionary) { + return nil; + } + NSString *domain = [FBSDKTypeUtility stringValue:dictionary[FBSDKBridgeAPIProtocolNativeV1ErrorKeys.domain]] ?: + FBSDKErrorDomain; + NSInteger code = [FBSDKTypeUtility integerValue:dictionary[FBSDKBridgeAPIProtocolNativeV1ErrorKeys.code]] ?: + FBSDKErrorUnknown; + NSDictionary *userInfo = [FBSDKTypeUtility dictionaryValue:dictionary[FBSDKBridgeAPIProtocolNativeV1ErrorKeys.userInfo]]; + return [NSError errorWithDomain:domain code:code userInfo:userInfo]; +} + +- (NSString *)_JSONStringForObject:(id)object enablePasteboard:(BOOL)enablePasteboard error:(NSError **)errorRef +{ + __block BOOL didAddToPasteboard = NO; + return [FBSDKBasicUtility JSONStringForObject:object error:errorRef invalidObjectHandler:^id(id invalidObject, BOOL *stop) { + NSString *dataTag = FBSDKBridgeAPIProtocolNativeV1DataTypeTags.data; + if ([invalidObject isKindOfClass:[UIImage class]]) { + UIImage *image = (UIImage *)invalidObject; + // due to backward compatibility, we must send UIImage as NSData even though UIPasteboard can handle UIImage + invalidObject = UIImageJPEGRepresentation(image, [FBSDKSettings JPEGCompressionQuality]); + dataTag = FBSDKBridgeAPIProtocolNativeV1DataTypeTags.image; + } + if ([invalidObject isKindOfClass:[NSData class]]) { + NSData *data = (NSData *)invalidObject; + NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init]; + if (didAddToPasteboard || !enablePasteboard || !self->_pasteboard || (data.length < self->_dataLengthThreshold)) { + dictionary[FBSDKBridgeAPIProtocolNativeV1DataKeys.isBase64] = @YES; + dictionary[FBSDKBridgeAPIProtocolNativeV1DataKeys.tag] = dataTag; + [FBSDKBasicUtility dictionary:dictionary + setObject:[FBSDKBase64 encodeData:data] + forKey:FBSDKBridgeAPIProtocolNativeV1DataKeys.value]; + } else { + dictionary[FBSDKBridgeAPIProtocolNativeV1DataKeys.isPasteboard] = @YES; + dictionary[FBSDKBridgeAPIProtocolNativeV1DataKeys.tag] = dataTag; + dictionary[FBSDKBridgeAPIProtocolNativeV1DataKeys.value] = self->_pasteboard.name; + [self->_pasteboard setData:data forPasteboardType:FBSDKBridgeAPIProtocolNativeV1DataPasteboardKey]; + // this version of the protocol only supports a single item on the pasteboard, so if when we add an item, make + // sure we don't add another item + didAddToPasteboard = YES; + // if we are adding this to the general pasteboard, then we want to remove it when we are done with the share. + // the Facebook app will not clear the value with this version of the protocol, so we should do it when the app + // becomes active again + NSString *pasteboardName = self->_pasteboard.name; + if ([pasteboardName isEqualToString:UIPasteboardNameGeneral] || + [pasteboardName isEqualToString:UIPasteboardNameFind]) { + [[self class] clearData:data fromPasteboardOnApplicationDidBecomeActive:self->_pasteboard]; + } + } + return dictionary; + } else if ([invalidObject isKindOfClass:[NSURL class]]) { + return ((NSURL *)invalidObject).absoluteString; + } + return invalidObject; + }]; +} + ++ (void)clearData:(NSData *)data fromPasteboardOnApplicationDidBecomeActive:(UIPasteboard *)pasteboard +{ + void(^notificationBlock)(NSNotification *) = ^(NSNotification *note){ + NSData *pasteboardData = [pasteboard dataForPasteboardType:FBSDKBridgeAPIProtocolNativeV1DataPasteboardKey]; + if ([data isEqualToData:pasteboardData]) { + [pasteboard setData:[NSData data] forPasteboardType:FBSDKBridgeAPIProtocolNativeV1DataPasteboardKey]; + } + }; + [[NSNotificationCenter defaultCenter] addObserverForName:FBSDKApplicationDidBecomeActiveNotification + object:[FBSDKApplicationDelegate sharedInstance] + queue:nil + usingBlock:notificationBlock]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h new file mode 100644 index 0000000..5127fc8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKBridgeAPIProtocol.h" + +NS_SWIFT_NAME(BridgeAPIProtocolWebV1) +@interface FBSDKBridgeAPIProtocolWebV1 : NSObject + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m new file mode 100644 index 0000000..7258808 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m @@ -0,0 +1,121 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIProtocolWebV1.h" + +#import + +#import "FBSDKBase64.h" +#import "FBSDKBridgeAPIRequest.h" +#import "FBSDKError.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" + +#define FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_ACTION_ID_KEY @"action_id" +#define FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_BRIDGE_ARGS_KEY @"bridge_args" + +@implementation FBSDKBridgeAPIProtocolWebV1 + +#pragma mark - FBSDKBridgeAPIProtocol + +- (NSURL *)requestURLWithActionID:(NSString *)actionID + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + error:(NSError *__autoreleasing *)errorRef +{ + NSMutableDictionary *queryParameters = [[NSMutableDictionary alloc] initWithDictionary:parameters]; + queryParameters[@"display"] = @"touch"; + NSString *bridgeArgs = [FBSDKBasicUtility JSONStringForObject:@{ FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_ACTION_ID_KEY: actionID } + error:NULL + invalidObjectHandler:NULL]; + NSDictionary *redirectQueryParameters = @{ FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_BRIDGE_ARGS_KEY: bridgeArgs }; + NSURL *redirectURL = [FBSDKInternalUtility appURLWithHost:@"bridge" + path:methodName + queryParameters:redirectQueryParameters + error:NULL]; + [FBSDKBasicUtility dictionary:queryParameters setObject:redirectURL forKey:@"redirect_uri"]; + [queryParameters addEntriesFromDictionary:parameters]; + return [FBSDKInternalUtility facebookURLWithHostPrefix:@"m" + path:[@"/dialog/" stringByAppendingString:methodName] + queryParameters:queryParameters + error:NULL]; +} + +- (NSDictionary *)responseParametersForActionID:(NSString *)actionID + queryParameters:(NSDictionary *)queryParameters + cancelled:(BOOL *)cancelledRef + error:(NSError *__autoreleasing *)errorRef +{ + if (errorRef != NULL) { + *errorRef = nil; + } + NSInteger errorCode = [FBSDKTypeUtility integerValue:queryParameters[@"error_code"]]; + switch (errorCode) { + case 0:{ + // good to go, handle the other codes and bail + break; + } + case 4201:{ + return @{ + @"completionGesture": @"cancel", + }; + break; + } + default:{ + if (errorRef != NULL) { + *errorRef = [FBSDKError errorWithCode:errorCode + message:[FBSDKTypeUtility stringValue:queryParameters[@"error_message"]]]; + } + return nil; + break; + } + } + + NSError *error; + NSString *bridgeParametersJSON = [FBSDKTypeUtility stringValue:queryParameters[FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_BRIDGE_ARGS_KEY]]; + NSDictionary *bridgeParameters = [FBSDKBasicUtility objectForJSONString:bridgeParametersJSON error:&error]; + if (!bridgeParameters) { + if (error && (errorRef != NULL)) { + *errorRef = [FBSDKError invalidArgumentErrorWithName:FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_BRIDGE_ARGS_KEY + value:bridgeParametersJSON + message:nil + underlyingError:error]; + } + return nil; + } + NSString *responseActionID = bridgeParameters[FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_ACTION_ID_KEY]; + responseActionID = [FBSDKTypeUtility stringValue:responseActionID]; + if (![responseActionID isEqualToString:actionID]) { + return nil; + } + NSMutableDictionary *resultParameters = [queryParameters mutableCopy]; + [resultParameters removeObjectForKey:FBSDK_BRIDGE_API_PROTOCOL_WEB_V1_BRIDGE_ARGS_KEY]; + resultParameters[@"didComplete"] = @YES; + return resultParameters; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h new file mode 100644 index 0000000..19e7a58 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKBridgeAPIProtocol.h" + +NS_SWIFT_NAME(BridgeAPIProtocolWebV2) +@interface FBSDKBridgeAPIProtocolWebV2 : NSObject + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m new file mode 100644 index 0000000..9f36ec5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m @@ -0,0 +1,135 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKBridgeAPIProtocolWebV2.h" + +#import "FBSDKBridgeAPIProtocolNativeV1.h" +#import "FBSDKDialogConfiguration.h" +#import "FBSDKError.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfigurationManager.h" + +@implementation FBSDKBridgeAPIProtocolWebV2 +{ + FBSDKBridgeAPIProtocolNativeV1 *_nativeProtocol; +} + +#pragma mark - Object Lifecycle + +- (instancetype)init +{ + if ((self = [super init])) { + _nativeProtocol = [[FBSDKBridgeAPIProtocolNativeV1 alloc] initWithAppScheme:nil + pasteboard:nil + dataLengthThreshold:0 + includeAppIcon:NO]; + } + return self; +} + +#pragma mark - FBSDKBridgeAPIProtocol + +- (NSURL *)_redirectURLWithActionID:(NSString *)actionID methodName:(NSString *)methodName error:(NSError **)errorRef +{ + NSDictionary *queryParameters = nil; + if (actionID) { + NSDictionary *bridgeArgs = @{ FBSDKBridgeAPIProtocolNativeV1BridgeParameterInputKeys.actionID: actionID }; + NSString *bridgeArgsString = [FBSDKBasicUtility JSONStringForObject:bridgeArgs + error:NULL + invalidObjectHandler:NULL]; + queryParameters = @{ FBSDKBridgeAPIProtocolNativeV1InputKeys.bridgeArgs: bridgeArgsString }; + } + return [FBSDKInternalUtility appURLWithHost:@"bridge" path:methodName queryParameters:queryParameters error:errorRef]; +} + +- (NSURL *)_requestURLForDialogConfiguration:(FBSDKDialogConfiguration *)dialogConfiguration error:(NSError **)errorRef +{ + NSURL *requestURL = dialogConfiguration.URL; + if (!requestURL.scheme) { + requestURL = [FBSDKInternalUtility facebookURLWithHostPrefix:@"m" + path:requestURL.path + queryParameters:@{} + defaultVersion:@"" + error:errorRef]; + } + return requestURL; +} + +- (NSURL *)requestURLWithActionID:(NSString *)actionID + scheme:(NSString *)scheme + methodName:(NSString *)methodName + methodVersion:(NSString *)methodVersion + parameters:(NSDictionary *)parameters + error:(NSError *__autoreleasing *)errorRef +{ + FBSDKServerConfiguration *serverConfiguration = [FBSDKServerConfigurationManager cachedServerConfiguration]; + FBSDKDialogConfiguration *dialogConfiguration = [serverConfiguration dialogConfigurationForDialogName:methodName]; + if (!dialogConfiguration) { + if (errorRef != NULL) { + *errorRef = [FBSDKError errorWithCode:FBSDKErrorDialogUnavailable message:nil]; + } + return nil; + } + + NSURL *requestURL = [_nativeProtocol requestURLWithActionID:actionID + scheme:scheme + methodName:methodName + methodVersion:methodVersion + parameters:parameters error:errorRef]; + if (!requestURL) { + return nil; + } + + NSMutableDictionary *queryParameters = [[FBSDKBasicUtility dictionaryWithQueryString:requestURL.query] mutableCopy]; + queryParameters[@"ios_bundle_id"] = [NSBundle mainBundle].bundleIdentifier; + NSURL *redirectURL = [self _redirectURLWithActionID:nil methodName:methodName error:errorRef]; + if (!redirectURL) { + return nil; + } + queryParameters[@"redirect_url"] = redirectURL; + + requestURL = [self _requestURLForDialogConfiguration:dialogConfiguration error:errorRef]; + if (!requestURL) { + return nil; + } + return [FBSDKInternalUtility URLWithScheme:requestURL.scheme + host:requestURL.host + path:requestURL.path + queryParameters:queryParameters + error:errorRef]; +} + +- (NSDictionary *)responseParametersForActionID:(NSString *)actionID + queryParameters:(NSDictionary *)queryParameters + cancelled:(BOOL *)cancelledRef + error:(NSError *__autoreleasing *)errorRef +{ + return [_nativeProtocol responseParametersForActionID:actionID + queryParameters:queryParameters + cancelled:cancelledRef + error:errorRef]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h new file mode 100644 index 0000000..226bb9b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(Crypto) +@interface FBSDKCrypto : NSObject + +/** + Generate numOfBytes random data. + + This calls the system-provided function SecRandomCopyBytes, based on /dev/random. + */ ++ (NSData *)randomBytes:(NSUInteger)numOfBytes; + +/** + * Generate numOfBytes random data, base64-encoded. + * This calls the system-provided function SecRandomCopyBytes, based on /dev/random. + */ ++ (NSString *)randomString:(NSUInteger)numOfBytes; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m new file mode 100644 index 0000000..f9365b8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m @@ -0,0 +1,53 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKCrypto.h" + +#import "FBSDKBase64.h" +#import "FBSDKDynamicFrameworkLoader.h" + +static inline void FBSDKCryptoBlankData(NSData *data) +{ + if (!data) { + return; + } + bzero((void *) [data bytes], [data length]); +} + +@implementation FBSDKCrypto + ++ (NSData *)randomBytes:(NSUInteger)numOfBytes +{ + uint8_t *buffer = malloc(numOfBytes); + int result = fbsdkdfl_SecRandomCopyBytes([FBSDKDynamicFrameworkLoader loadkSecRandomDefault], numOfBytes, buffer); + if (result != 0) { + free(buffer); + return nil; + } + return [NSData dataWithBytesNoCopy:buffer length:numOfBytes]; +} + ++ (NSString *)randomString:(NSUInteger)numOfBytes +{ + NSData *randomStringData = [FBSDKCrypto randomBytes:numOfBytes]; + NSString *randomString = [FBSDKBase64 encodeData:randomStringData]; + FBSDKCryptoBlankData(randomStringData); + return randomString; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceButton+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceButton+Internal.h new file mode 100644 index 0000000..d9c41d4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceButton+Internal.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +#if SWIFT_PACKAGE +#import "FBSDKDeviceButton.h" +#else +#import +#endif + +@interface FBSDKDeviceButton () + +- (NSAttributedString *)attributedTitleStringFromString:(NSString *)string; +- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title; +- (CGSize)sizeThatFits:(CGSize)size attributedTitle:(NSAttributedString *)title; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.h new file mode 100644 index 0000000..a8199c8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.h @@ -0,0 +1,47 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +NS_SWIFT_NAME(DeviceDialogViewDelegate) +@protocol FBSDKDeviceDialogViewDelegate; + +// internal class, APIs are subject to change. +NS_SWIFT_NAME(FBDeviceDialogView) +@interface FBSDKDeviceDialogView : UIView + +@property (nonatomic, weak) id delegate; +@property (nonatomic, copy) NSString *confirmationCode; + +// override point for subclasses. +- (void)buildView; + +@end + +NS_SWIFT_NAME(DeviceDialogViewDelegate) +@protocol FBSDKDeviceDialogViewDelegate + +- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.m new file mode 100644 index 0000000..6cdce27 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.m @@ -0,0 +1,227 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKDeviceDialogView.h" + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKDeviceUtilities.h" + +@implementation FBSDKDeviceDialogView +{ + UIActivityIndicatorView *_spinner; + UILabel *_confirmationCodeLabel; + UIImageView *_qrImageView; +} + +- (instancetype)initWithFrame:(CGRect)frame +{ + if ((self = [super initWithFrame:frame])) { + [self buildView]; + [self setNeedsUpdateConstraints]; + } + return self; +} + +#pragma mark - Properties + +- (void)setConfirmationCode:(NSString *)confirmationCode +{ + if (![_confirmationCode isEqualToString:confirmationCode]) { + if (confirmationCode == nil) { + _confirmationCodeLabel.text = @""; + _confirmationCodeLabel.hidden = YES; + _qrImageView.hidden = YES; + [_spinner startAnimating]; + } else { + [_spinner stopAnimating]; + _confirmationCodeLabel.text = confirmationCode; + _confirmationCodeLabel.hidden = NO; + _qrImageView.hidden = NO; + [_qrImageView setImage:[FBSDKDeviceUtilities buildQRCodeWithAuthorizationCode:confirmationCode]]; + } + } +} + +#pragma mark - Helpers + +- (void)buildView +{ + // This is a "static" view with just a cancel button so add all the constraints here + // rather than properly override `updateConstraints`. + const CGFloat kWidth = 1080; + const CGFloat kHeight = 820; + const CGFloat kVerticalSpaceBetweenHeaderViewAndInstructionLabel = 102; + const CGFloat kVerticalSpaceBetweenCancelButtonAndButtomAnchor = 117; + const CGFloat kDialogHeaderViewHeight = 309; + const CGFloat kLogoSize = 44; + const CGFloat kLogoMargin = 30; + const CGFloat kInstructionTextHorizontalMargin = 151; + const CGFloat kConfirmationCodeFontSize = 108; + const CGFloat kFontColorValue = 119.0/255.0; + const CGFloat kInstructionFontSize = 36; + const CGFloat kQRCodeMargin = 50; + const CGFloat kQRCodeSize = 200; + + // build the container view. + UIView *dialogView = [[UIView alloc] init]; + dialogView.layer.cornerRadius = 3; + dialogView.translatesAutoresizingMaskIntoConstraints = NO; + dialogView.clipsToBounds = YES; + dialogView.backgroundColor = [UIColor whiteColor]; + [self addSubview:dialogView]; + [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES;; + [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + [dialogView.widthAnchor constraintEqualToConstant:kWidth].active = YES; + [dialogView.heightAnchor constraintEqualToConstant:kHeight].active = YES; + + // build the header container view (which will contain the logo and code). + UIView *dialogHeaderView = [[UIView alloc] init]; + dialogHeaderView.translatesAutoresizingMaskIntoConstraints = NO; + dialogHeaderView.backgroundColor = [UIColor colorWithRed:226.0/255.0 green:231.0/255.0 blue:235.0/255.0 alpha:0.85]; + [dialogView addSubview:dialogHeaderView]; + [dialogHeaderView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor].active = YES; + [dialogHeaderView.trailingAnchor constraintEqualToAnchor:dialogView.trailingAnchor].active = YES; + [dialogHeaderView.heightAnchor constraintEqualToConstant:kDialogHeaderViewHeight].active = YES; + [dialogHeaderView.topAnchor constraintEqualToAnchor:dialogView.topAnchor].active = YES; + + // build the logo. + CGSize imageSize = CGSizeMake(kLogoSize, kLogoSize); + FBSDKLogo *logoHelper =[[FBSDKLogo alloc] initWithColor:[UIColor colorWithRed:66.0/255.0 green:103.0/255.0 blue:178.0/255.0 alpha:1]]; + UIImage *image = [logoHelper imageWithSize:imageSize]; + image = [image resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch]; + UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; + imageView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogHeaderView addSubview:imageView]; + [imageView.widthAnchor constraintEqualToConstant:kLogoSize].active = YES; + [imageView.heightAnchor constraintEqualToConstant:kLogoSize].active = YES; + [imageView.topAnchor constraintEqualToAnchor:dialogHeaderView.topAnchor constant:kLogoMargin].active = YES; + [imageView.leadingAnchor constraintEqualToAnchor:dialogHeaderView.leadingAnchor constant:kLogoMargin].active = YES; + + // build the activity spinner + _spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; + _spinner.translatesAutoresizingMaskIntoConstraints = NO; + [dialogHeaderView addSubview:_spinner]; + [NSLayoutConstraint constraintWithItem:_spinner attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + [NSLayoutConstraint constraintWithItem:_spinner attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + [_spinner.widthAnchor constraintEqualToConstant:kConfirmationCodeFontSize].active = YES; + [_spinner.heightAnchor constraintEqualToConstant:kConfirmationCodeFontSize].active = YES; + [_spinner startAnimating]; + + // build the confirmation code (which replaces the spinner when the code is available). + _confirmationCodeLabel = [[UILabel alloc] init]; + _confirmationCodeLabel.translatesAutoresizingMaskIntoConstraints = NO; + _confirmationCodeLabel.textColor = logoHelper.color; + _confirmationCodeLabel.font = [UIFont systemFontOfSize:kConfirmationCodeFontSize weight:UIFontWeightLight]; + _confirmationCodeLabel.textAlignment = NSTextAlignmentCenter; + [_confirmationCodeLabel sizeToFit]; + [dialogHeaderView addSubview:_confirmationCodeLabel]; + [NSLayoutConstraint constraintWithItem:_confirmationCodeLabel attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + [NSLayoutConstraint constraintWithItem:_confirmationCodeLabel attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + _confirmationCodeLabel.hidden = YES; + + // Build the QR code view + _qrImageView = [[UIImageView alloc] initWithImage:[FBSDKDeviceUtilities buildQRCodeWithAuthorizationCode:NULL]]; + _qrImageView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogView addSubview:_qrImageView]; + + [_qrImageView.topAnchor constraintEqualToAnchor:dialogHeaderView.bottomAnchor + constant:kQRCodeMargin].active = YES; + [_qrImageView.bottomAnchor constraintEqualToAnchor:_qrImageView.topAnchor + constant:kQRCodeSize].active = YES; + [_qrImageView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor + constant:kQRCodeMargin].active = YES; + [_qrImageView.trailingAnchor constraintEqualToAnchor:_qrImageView.leadingAnchor + constant:kQRCodeSize].active = YES; + + // build the instructions UILabel + UILabel *instructionLabel = [[UILabel alloc] init]; + instructionLabel.translatesAutoresizingMaskIntoConstraints = NO; + NSString *localizedFormatString = NSLocalizedStringWithDefaultValue(@"DeviceLogin.LogInPrompt", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"Visit %@ and enter your code.", + @"The format string for device login instructions"); + NSString *const deviceLoginURLString = @"facebook.com/device"; + NSString *instructionString = [NSString localizedStringWithFormat:localizedFormatString, deviceLoginURLString]; + NSMutableParagraphStyle *instructionLabelParagraphStyle = [[NSMutableParagraphStyle alloc] init]; + instructionLabelParagraphStyle.lineHeightMultiple = 1.1; + NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:instructionString + attributes:@{ NSParagraphStyleAttributeName : instructionLabelParagraphStyle }]; + NSRange range = [instructionString rangeOfString:deviceLoginURLString]; + [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightMedium] range:range]; + instructionLabel.font = [UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightLight]; + instructionLabel.attributedText = attributedString; + instructionLabel.numberOfLines = 0; + instructionLabel.textAlignment = NSTextAlignmentCenter; + [instructionLabel sizeToFit]; + instructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; + [dialogView addSubview:instructionLabel]; + [instructionLabel.topAnchor constraintEqualToAnchor:dialogHeaderView.bottomAnchor + constant:kVerticalSpaceBetweenHeaderViewAndInstructionLabel].active = YES; + [instructionLabel.leadingAnchor constraintEqualToAnchor:_qrImageView.trailingAnchor + constant:kQRCodeMargin].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:instructionLabel.trailingAnchor + constant:kInstructionTextHorizontalMargin].active = YES; + + // build the container view for the cancel button. + UIView *buttonContainerView = [[UIView alloc] init]; + buttonContainerView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogView addSubview:buttonContainerView]; + [NSLayoutConstraint constraintWithItem:buttonContainerView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + + [buttonContainerView.heightAnchor constraintEqualToConstant:100].active = YES; + [buttonContainerView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor + constant:400].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:buttonContainerView.trailingAnchor + constant:400].active = YES; + [dialogView.bottomAnchor constraintEqualToAnchor:buttonContainerView.bottomAnchor + constant:kVerticalSpaceBetweenCancelButtonAndButtomAnchor].active = YES; + + // build the cancel button. + UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem]; + button.layer.cornerRadius = 4.0; + button.translatesAutoresizingMaskIntoConstraints = NO; + [button setTitle:NSLocalizedStringWithDefaultValue(@"LoginButton.CancelLogout", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"Cancel", + @"The label for the FBSDKLoginButton action sheet to cancel logging out") + forState:UIControlStateNormal]; + button.titleLabel.font = instructionLabel.font; + [buttonContainerView addSubview:button]; + [button.leadingAnchor constraintEqualToAnchor:buttonContainerView.leadingAnchor].active = YES; + [button.trailingAnchor constraintEqualToAnchor:buttonContainerView.trailingAnchor].active = YES; + [button.topAnchor constraintEqualToAnchor:buttonContainerView.topAnchor].active = YES; + [button.bottomAnchor constraintEqualToAnchor:buttonContainerView.bottomAnchor].active = YES; + [button setTitleColor:[UIColor colorWithWhite:kFontColorValue alpha:1] forState:UIControlStateNormal]; + + [button addTarget:self action:@selector(_cancelButtonTap:) forControlEvents:UIControlEventPrimaryActionTriggered]; +} + +- (void)_cancelButtonTap:(id)sender +{ + [self.delegate deviceDialogViewDidCancel:self]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.h new file mode 100644 index 0000000..90b626b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +NS_SWIFT_NAME(DeviceUtilities) +@interface FBSDKDeviceUtilities : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (UIImage *)buildQRCodeWithAuthorizationCode:(NSString *)authorizationCode; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.m new file mode 100644 index 0000000..bbe0a1c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.m @@ -0,0 +1,52 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKDeviceUtilities.h" + +@implementation FBSDKDeviceUtilities + ++ (UIImage *)buildQRCodeWithAuthorizationCode:(NSString *)authorizationCode +{ + NSString *authorizationUri = @"https://facebook.com/device"; + if ([authorizationUri length] > 0) { + authorizationUri = [NSString stringWithFormat:@"https://facebook.com/device?user_code=%@&qr=1", authorizationCode]; + } + NSData *qrCodeData = [authorizationUri dataUsingEncoding:NSISOLatin1StringEncoding]; + + CIFilter *qrCodeFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"]; + [qrCodeFilter setValue:qrCodeData forKey:@"inputMessage"]; + [qrCodeFilter setValue:@"M" forKey:@"inputCorrectionLevel"]; + + CIImage *qrCodeImage = qrCodeFilter.outputImage; + CGRect qrImageSize = CGRectIntegral(qrCodeImage.extent); + CGSize qrOutputSize = CGSizeMake(200, 200); + + CIImage *resizedImage = + [qrCodeImage imageByApplyingTransform: CGAffineTransformMakeScale(qrOutputSize.width / CGRectGetWidth(qrImageSize), + qrOutputSize.height / CGRectGetHeight(qrImageSize))]; + + return [UIImage imageWithCIImage:resizedImage]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceViewControllerBase+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceViewControllerBase+Internal.h new file mode 100644 index 0000000..020b4e9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceViewControllerBase+Internal.h @@ -0,0 +1,53 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#if SWIFT_PACKAGE +#import "FBSDKDeviceViewControllerBase.h" +#else +#import +#endif + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKDeviceDialogView.h" + +@class FBSDKDeviceDialogView; + +NS_ASSUME_NONNULL_BEGIN + +/* + An internal base class for device related flows. + + This is an internal API that should not be used directly and is subject to change. +*/ +@interface FBSDKDeviceViewControllerBase()< +UIViewControllerAnimatedTransitioning, +UIViewControllerTransitioningDelegate, +FBSDKDeviceDialogViewDelegate +> + +@property (nonatomic, strong, readonly) FBSDKDeviceDialogView *deviceDialogView; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.h new file mode 100644 index 0000000..0dcf0a1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.h @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +// Custom UIPresentationController that is similar to +// UIModalPresentationFormSheet style (which is not available +// on tvOS). +NS_SWIFT_NAME(FBModalFormPresentationController) +@interface FBSDKModalFormPresentationController : UIPresentationController + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.m new file mode 100644 index 0000000..e49e69a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.m @@ -0,0 +1,83 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKModalFormPresentationController.h" + +@implementation FBSDKModalFormPresentationController { + UIView *_dimmedView; +} + +- (UIView *)dimmedView +{ + if (!_dimmedView) { + _dimmedView = [[UIView alloc] initWithFrame:self.containerView.bounds]; + _dimmedView.backgroundColor = [UIColor colorWithWhite:0 alpha:.6]; + } + return _dimmedView; +} + +#pragma mark - UIPresentationController overrides + +- (void)presentationTransitionWillBegin +{ + [self.containerView addSubview:[self dimmedView]]; + [self.containerView addSubview:[self presentedView]]; + [self.presentingViewController.transitionCoordinator + animateAlongsideTransition:^(id _Nonnull context) { + [self dimmedView].alpha = 1.0; + } completion:NULL]; +} + +- (void)presentationTransitionDidEnd:(BOOL)completed +{ + if (!completed) { + [[self dimmedView] removeFromSuperview]; + } +} + +- (void)dismissalTransitionWillBegin +{ + [self.presentingViewController.transitionCoordinator + animateAlongsideTransition:^(id _Nonnull context) { + [self dimmedView].alpha = 0; + } completion:NULL]; +} + +- (void)dismissalTransitionDidEnd:(BOOL)completed +{ + if (completed) { + [[self dimmedView] removeFromSuperview]; + } +} + +// technically not necessary for tvOS yet since there's no resizing. +- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id)coordinator +{ + [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator]; + [coordinator animateAlongsideTransition:^(id _Nonnull context) { + [self dimmedView].frame = self.containerView.bounds; + } completion:NULL]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.h new file mode 100644 index 0000000..eb9576b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import + +#import "FBSDKDeviceDialogView.h" + +NS_SWIFT_NAME(FBSmartDeviceDialogView) +@interface FBSDKSmartDeviceDialogView : FBSDKDeviceDialogView + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m new file mode 100644 index 0000000..4308012 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m @@ -0,0 +1,276 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if TARGET_OS_TV + +#import "FBSDKSmartDeviceDialogView.h" + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKDeviceUtilities.h" + +@implementation FBSDKSmartDeviceDialogView +{ + UIActivityIndicatorView *_spinner; + UILabel *_confirmationCodeLabel; + UIImageView *_qrImageView; +} + +- (instancetype)initWithFrame:(CGRect)frame +{ + if ((self = [super initWithFrame:frame])) { + [self _buildView]; + } + return self; +} + +#pragma mark - Overrides + +- (void)setConfirmationCode:(NSString *)confirmationCode +{ + if (![self.confirmationCode isEqualToString:confirmationCode]) { + if (confirmationCode == nil) { + _confirmationCodeLabel.text = @""; + _confirmationCodeLabel.hidden = YES; + _qrImageView.hidden = YES; + [_spinner startAnimating]; + } else { + [_spinner stopAnimating]; + _confirmationCodeLabel.text = confirmationCode; + _confirmationCodeLabel.hidden = NO; + _qrImageView.hidden = NO; + [_qrImageView setImage:[FBSDKDeviceUtilities buildQRCodeWithAuthorizationCode:confirmationCode]]; + } + } +} + +- (void)buildView +{ + //intentionally blank. +} + +#pragma mark - Helpers + +- (void)_buildView +{ + // This is a "static" view with just a cancel button so add all the constraints here + // rather than properly override `updateConstraints`. + const CGFloat kWidth = 1080; + const CGFloat kVerticalSpaceBetweenHeaderViewAndInstructionLabel = 50; + const CGFloat kDialogHeaderViewHeight = 250; + const CGFloat kLogoSize = 44; + const CGFloat kLogoMargin = 30; + const CGFloat kInstructionTextHorizontalMargin = 100; + const CGFloat kConfirmationCodeFontSize = 108; + const CGFloat kFontColorValue = 119.0/255.0; + const CGFloat kInstructionFontSize = 32; + const CGFloat kVerticalMarginOrLabel = 40; + const CGFloat kQRCodeSize = 200; + const CGFloat kQRCodeMargin = (kWidth - kQRCodeSize) / 2; + + // build the container view. + UIView *dialogView = [[UIView alloc] init]; + dialogView.layer.cornerRadius = 3; + dialogView.translatesAutoresizingMaskIntoConstraints = NO; + dialogView.clipsToBounds = YES; + dialogView.backgroundColor = [UIColor whiteColor]; + [self addSubview:dialogView]; + [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES;; + [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + [dialogView.widthAnchor constraintEqualToConstant:kWidth].active = YES; + + // build the header container view (which will contain the logo and code). + UIView *dialogHeaderView = [[UIView alloc] init]; + dialogHeaderView.translatesAutoresizingMaskIntoConstraints = NO; + dialogHeaderView.backgroundColor = [UIColor colorWithRed:226.0/255.0 green:231.0/255.0 blue:235.0/255.0 alpha:0.85]; + [dialogView addSubview:dialogHeaderView]; + [dialogHeaderView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor].active = YES; + [dialogHeaderView.trailingAnchor constraintEqualToAnchor:dialogView.trailingAnchor].active = YES; + [dialogHeaderView.heightAnchor constraintEqualToConstant:kDialogHeaderViewHeight].active = YES; + [dialogHeaderView.topAnchor constraintEqualToAnchor:dialogView.topAnchor].active = YES; + + // build the logo. + CGSize imageSize = CGSizeMake(kLogoSize, kLogoSize); + FBSDKLogo *logoHelper =[[FBSDKLogo alloc] initWithColor:[UIColor colorWithRed:66.0/255.0 green:103.0/255.0 blue:178.0/255.0 alpha:1]]; + UIImage *image = [logoHelper imageWithSize:imageSize]; + image = [image resizableImageWithCapInsets:UIEdgeInsetsZero resizingMode:UIImageResizingModeStretch]; + UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; + imageView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogHeaderView addSubview:imageView]; + [imageView.widthAnchor constraintEqualToConstant:kLogoSize].active = YES; + [imageView.heightAnchor constraintEqualToConstant:kLogoSize].active = YES; + [imageView.topAnchor constraintEqualToAnchor:dialogHeaderView.topAnchor constant:kLogoMargin].active = YES; + [imageView.leadingAnchor constraintEqualToAnchor:dialogHeaderView.leadingAnchor constant:kLogoMargin].active = YES; + + // build the activity spinner + _spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; + _spinner.translatesAutoresizingMaskIntoConstraints = NO; + [dialogHeaderView addSubview:_spinner]; + [NSLayoutConstraint constraintWithItem:_spinner attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + [NSLayoutConstraint constraintWithItem:_spinner attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + [_spinner.widthAnchor constraintEqualToConstant:kConfirmationCodeFontSize].active = YES; + [_spinner.heightAnchor constraintEqualToConstant:kConfirmationCodeFontSize].active = YES; + [_spinner startAnimating]; + + // build the confirmation code (which replaces the spinner when the code is available). + _confirmationCodeLabel = [[UILabel alloc] init]; + _confirmationCodeLabel.translatesAutoresizingMaskIntoConstraints = NO; + _confirmationCodeLabel.textColor = logoHelper.color; + _confirmationCodeLabel.font = [UIFont systemFontOfSize:kConfirmationCodeFontSize weight:UIFontWeightLight]; + _confirmationCodeLabel.textAlignment = NSTextAlignmentCenter; + [_confirmationCodeLabel sizeToFit]; + [dialogHeaderView addSubview:_confirmationCodeLabel]; + [NSLayoutConstraint constraintWithItem:_confirmationCodeLabel attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + [NSLayoutConstraint constraintWithItem:_confirmationCodeLabel attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:dialogHeaderView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; + _confirmationCodeLabel.hidden = YES; + + // build the smartlogin instructions + UILabel *smartInstructionLabel = [[UILabel alloc] init]; + smartInstructionLabel.translatesAutoresizingMaskIntoConstraints = NO; + NSString *smartInstructionString = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInPrompt", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"To connect your account, open the Facebook app on your mobile device and check for notifications.", + @"Instructions telling the user to open their Facebook app on a mobile device and check for a login notification."); + + NSMutableParagraphStyle *instructionLabelParagraphStyle = [[NSMutableParagraphStyle alloc] init]; + instructionLabelParagraphStyle.lineHeightMultiple = 1.3; + NSMutableAttributedString *attributedSmartString = [[NSMutableAttributedString alloc] initWithString:smartInstructionString + attributes:@{ NSParagraphStyleAttributeName : instructionLabelParagraphStyle }]; + + UIFont *instructionFont = [UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightLight]; + smartInstructionLabel.font = instructionFont; + smartInstructionLabel.attributedText = attributedSmartString; + smartInstructionLabel.numberOfLines = 0; + smartInstructionLabel.textAlignment = NSTextAlignmentCenter; + [smartInstructionLabel sizeToFit]; + + smartInstructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; + [dialogView addSubview:smartInstructionLabel]; + [smartInstructionLabel.topAnchor constraintEqualToAnchor:dialogHeaderView.bottomAnchor + constant:kVerticalSpaceBetweenHeaderViewAndInstructionLabel].active = YES; + [smartInstructionLabel.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor constant:kInstructionTextHorizontalMargin].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:smartInstructionLabel.trailingAnchor constant:kInstructionTextHorizontalMargin].active = YES; + + // build 'or' label + UILabel *orInstructionLabel = [[UILabel alloc] init]; + orInstructionLabel.translatesAutoresizingMaskIntoConstraints = NO; + orInstructionLabel.font = [UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightBold]; + orInstructionLabel.text = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInOrLabel", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"-- OR --", + @"The 'or' string for smart login instructions");; + orInstructionLabel.numberOfLines = 0; + orInstructionLabel.textAlignment = NSTextAlignmentCenter; + [orInstructionLabel sizeToFit]; + orInstructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; + [dialogView addSubview:orInstructionLabel]; + [orInstructionLabel.topAnchor constraintEqualToAnchor:smartInstructionLabel.bottomAnchor constant:kVerticalMarginOrLabel].active = YES; + + [orInstructionLabel.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor constant:kInstructionTextHorizontalMargin].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:orInstructionLabel.trailingAnchor constant:kInstructionTextHorizontalMargin].active = YES; + + // Build the QR code view + _qrImageView = [[UIImageView alloc] initWithImage:[FBSDKDeviceUtilities buildQRCodeWithAuthorizationCode:NULL]]; + _qrImageView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogView addSubview:_qrImageView]; + + [_qrImageView.topAnchor constraintEqualToAnchor:orInstructionLabel.bottomAnchor + constant:kVerticalMarginOrLabel].active = YES; + [_qrImageView.bottomAnchor constraintEqualToAnchor:_qrImageView.topAnchor + constant:kQRCodeSize].active = YES; + [_qrImageView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor + constant:kQRCodeMargin].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:_qrImageView.trailingAnchor + constant:kQRCodeMargin].active = YES; + + // build the instructions UILabel + UILabel *instructionLabel = [[UILabel alloc] init]; + instructionLabel.translatesAutoresizingMaskIntoConstraints = NO; + NSString *localizedFormatString = NSLocalizedStringWithDefaultValue(@"DeviceLogin.LogInPrompt", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"Visit %@ and enter the code shown above.", + @"The format string for device login instructions"); + + NSString *const deviceLoginURLString = @"facebook.com/device"; + NSString *instructionString = [NSString localizedStringWithFormat:localizedFormatString, deviceLoginURLString]; + NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:instructionString + attributes:@{ NSParagraphStyleAttributeName : instructionLabelParagraphStyle }]; + NSRange range = [instructionString rangeOfString:deviceLoginURLString]; + [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightMedium] range:range]; + instructionLabel.font = instructionFont; + instructionLabel.attributedText = attributedString; + instructionLabel.numberOfLines = 0; + instructionLabel.textAlignment = NSTextAlignmentCenter; + [instructionLabel sizeToFit]; + instructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; + [dialogView addSubview:instructionLabel]; + [instructionLabel.topAnchor constraintEqualToAnchor:_qrImageView.bottomAnchor + constant:kVerticalMarginOrLabel].active = YES; + [instructionLabel.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor + constant:kInstructionTextHorizontalMargin].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:instructionLabel.trailingAnchor + constant:kInstructionTextHorizontalMargin].active = YES; + + // build the container view for the cancel button. + UIView *buttonContainerView = [[UIView alloc] init]; + buttonContainerView.translatesAutoresizingMaskIntoConstraints = NO; + [dialogView addSubview:buttonContainerView]; + [NSLayoutConstraint constraintWithItem:buttonContainerView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:dialogView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES; + [buttonContainerView.heightAnchor constraintEqualToConstant:60].active = YES; + [buttonContainerView.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor + constant:400].active = YES; + [dialogView.trailingAnchor constraintEqualToAnchor:buttonContainerView.trailingAnchor + constant:400].active = YES; + [buttonContainerView.topAnchor constraintEqualToAnchor:instructionLabel.bottomAnchor + constant:kVerticalMarginOrLabel].active = YES; + [dialogView.bottomAnchor constraintEqualToAnchor:buttonContainerView.bottomAnchor + constant:kVerticalMarginOrLabel].active = YES; + + // build the cancel button. + UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem]; + button.layer.cornerRadius = 4.0; + button.translatesAutoresizingMaskIntoConstraints = NO; + [button setTitle:NSLocalizedStringWithDefaultValue(@"LoginButton.CancelLogout", + @"FacebookSDK", + [FBSDKInternalUtility bundleForStrings], + @"Cancel", + @"The label for the FBSDKLoginButton action sheet to cancel logging out") + forState:UIControlStateNormal]; + button.titleLabel.font = instructionLabel.font; + [buttonContainerView addSubview:button]; + [button.leadingAnchor constraintEqualToAnchor:buttonContainerView.leadingAnchor].active = YES; + [button.trailingAnchor constraintEqualToAnchor:buttonContainerView.trailingAnchor].active = YES; + [button.topAnchor constraintEqualToAnchor:buttonContainerView.topAnchor].active = YES; + [button.bottomAnchor constraintEqualToAnchor:buttonContainerView.bottomAnchor].active = YES; + [button setTitleColor:[UIColor colorWithWhite:kFontColorValue alpha:1] forState:UIControlStateNormal]; + + [button addTarget:self action:@selector(_cancelButtonTap:) forControlEvents:UIControlEventPrimaryActionTriggered]; +} + +- (void)_cancelButtonTap:(id)sender +{ + [self.delegate deviceDialogViewDidCancel:self]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h new file mode 100644 index 0000000..af47bbc --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKConstants.h" +#else +#import +#endif + +@class FBSDKErrorRecoveryConfiguration; + +NS_SWIFT_NAME(ErrorRecoveryAttempter) +@interface FBSDKErrorRecoveryAttempter : NSObject + +// can return nil if configuration is not supported. ++ (instancetype)recoveryAttempterFromConfiguration:(FBSDKErrorRecoveryConfiguration *)configuration; + +@end + +@interface FBSDKErrorRecoveryAttempter (Protected) +- (void)completeRecovery:(BOOL)didRecover delegate:(id)delegate didRecoverSelector:(SEL)didRecoverSelector contextInfo:(void *)contextInfo; +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m new file mode 100644 index 0000000..07aa418 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m @@ -0,0 +1,56 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorRecoveryAttempter.h" + +#import "_FBSDKTemporaryErrorRecoveryAttempter.h" +#import "FBSDKErrorRecoveryConfiguration.h" + +@implementation FBSDKErrorRecoveryAttempter + ++ (instancetype)recoveryAttempterFromConfiguration:(FBSDKErrorRecoveryConfiguration *)configuration +{ + if (configuration.errorCategory == FBSDKGraphRequestErrorTransient) { + return [[_FBSDKTemporaryErrorRecoveryAttempter alloc] init]; + } else if (configuration.errorCategory == FBSDKGraphRequestErrorOther) { + return nil; + } + if ([configuration.recoveryActionName isEqualToString:@"login"]) { + Class loginRecoveryAttmpterClass = NSClassFromString(@"_FBSDKLoginRecoveryAttempter"); + if (loginRecoveryAttmpterClass) { + return [[loginRecoveryAttmpterClass alloc] init]; + } + } + return nil; +} + +- (void)attemptRecoveryFromError:(NSError *)error optionIndex:(NSUInteger)recoveryOptionIndex delegate:(id)delegate didRecoverSelector:(SEL)didRecoverSelector contextInfo:(void *)contextInfo +{ + // should be implemented by subclasses. +} +@end + +@implementation FBSDKErrorRecoveryAttempter(Protected) + +- (void)completeRecovery:(BOOL)didRecover delegate:(id)delegate didRecoverSelector:(SEL)didRecoverSelector contextInfo:(void *)contextInfo +{ + void (*callback)(id, SEL, BOOL, void *) = (void *)[delegate methodForSelector:didRecoverSelector]; + (*callback)(delegate, didRecoverSelector, didRecover, contextInfo); +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h new file mode 100644 index 0000000..21ad040 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h @@ -0,0 +1,23 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorRecoveryAttempter.h" + +@interface _FBSDKTemporaryErrorRecoveryAttempter : FBSDKErrorRecoveryAttempter + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m new file mode 100644 index 0000000..bb555aa --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m @@ -0,0 +1,28 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "_FBSDKTemporaryErrorRecoveryAttempter.h" + +@implementation _FBSDKTemporaryErrorRecoveryAttempter + +- (void)attemptRecoveryFromError:(NSError *)error optionIndex:(NSUInteger)recoveryOptionIndex delegate:(id)delegate didRecoverSelector:(SEL)didRecoverSelector contextInfo:(void *)contextInfo +{ + [super completeRecovery:YES delegate:delegate didRecoverSelector:didRecoverSelector contextInfo:contextInfo]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLinkReturnToRefererView_Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLinkReturnToRefererView_Internal.h new file mode 100644 index 0000000..6c5d328 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLinkReturnToRefererView_Internal.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLinkReturnToRefererView.h" + +@interface FBSDKAppLinkReturnToRefererView (Internal) + +- (CGFloat)statusBarHeight; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLink_Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLink_Internal.h new file mode 100644 index 0000000..78cfe3c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLink_Internal.h @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAppLink.h" + +FOUNDATION_EXPORT NSString *const FBSDKAppLinkDataParameterName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkTargetKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkUserAgentKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkExtrasKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersionKeyName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppLink; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppName; +FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererUrl; + +@interface FBSDKAppLink (Internal) + ++ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL + targets:(NSArray *)targets + webURL:(NSURL *)webURL + isBackToReferrer:(BOOL)isBackToReferrer; + +/** return if this AppLink is to go back to referrer. */ +@property (nonatomic, assign, readonly, getter=isBackToReferrer) BOOL backToReferrer; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h new file mode 100644 index 0000000..d194a2d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h @@ -0,0 +1,50 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKApplicationDelegate.h" +#else +#import +#endif + +#import "FBSDKCoreKit+Internal.h" + +NS_ASSUME_NONNULL_BEGIN + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 + +FOUNDATION_EXPORT NSNotificationName const FBSDKApplicationDidBecomeActiveNotification; + +#else + +FOUNDATION_EXPORT NSString *const FBSDKApplicationDidBecomeActiveNotification; + +#endif + +@interface FBSDKApplicationDelegate () + +- (void)addObserver:(id)observer; +- (void)removeObserver:(id)observer; ++ (BOOL)isSDKInitialized; ++ (UIApplicationState)applicationState; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationObserving.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationObserving.h new file mode 100644 index 0000000..9eba4ce --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationObserving.h @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@protocol FBSDKApplicationObserving + +@optional +- (void)applicationDidBecomeActive:(nullable UIApplication *)application; +- (void)applicationDidEnterBackground:(nullable UIApplication *)application; +- (BOOL)application:(UIApplication *)application +didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions; + +- (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(nullable NSString *)sourceApplication + annotation:(nullable id)annotation; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h new file mode 100644 index 0000000..a987504 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKAudioResourceLoader : NSObject + ++ (instancetype)sharedLoader; + +- (BOOL)loadSound:(NSError *__autoreleasing *)errorRef; +- (void)playSound; + +@end + +@interface FBSDKAudioResourceLoader (Subclass) + +@property (class, nonatomic, copy, nullable, readonly) NSString *name; +@property (class, nonatomic, copy, nullable, readonly) NSData *data; +@property (class, nonatomic, assign, readonly) NSUInteger version; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m new file mode 100644 index 0000000..2d1cafe --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m @@ -0,0 +1,157 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKAudioResourceLoader.h" + +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +@implementation FBSDKAudioResourceLoader +{ + NSFileManager *_fileManager; + NSURL *_fileURL; + SystemSoundID _systemSoundID; +} + +#pragma mark - Class Methods + ++ (instancetype)sharedLoader +{ + static NSMutableDictionary *_loaderCache = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _loaderCache = [[NSMutableDictionary alloc] init]; + }); + + NSString *name = [self name]; + FBSDKAudioResourceLoader *loader; + @synchronized(_loaderCache) { + loader = _loaderCache[name]; + if (!loader) { + loader = [[self alloc] init]; + NSError *error = nil; + if ([loader loadSound:&error]) { + _loaderCache[name] = loader; + } else { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"%@ error: %@", self, error]; + } + } + } + + return loader; +} + +#pragma mark - Object Lifecycle + +- (instancetype)init +{ + if ((self = [super init])) { + _fileManager = [[NSFileManager alloc] init]; + } + return self; +} + +- (void)dealloc +{ + fbsdkdfl_AudioServicesDisposeSystemSoundID(_systemSoundID); +} + +#pragma mark - Public API + +- (BOOL)loadSound:(NSError **)errorRef +{ + NSURL *fileURL = [self _fileURL:errorRef]; + + if (![_fileManager fileExistsAtPath:fileURL.path]) { + NSData *data = [[self class] data]; + if (![data writeToURL:fileURL options:NSDataWritingAtomic error:errorRef]) { + return NO; + } + } + + OSStatus status = fbsdkdfl_AudioServicesCreateSystemSoundID((__bridge CFURLRef)fileURL, &_systemSoundID); + return (status == kAudioServicesNoError); +} + +- (void)playSound +{ + if ((_systemSoundID == 0) && ![self loadSound:NULL]) { + return; + } + fbsdkdfl_AudioServicesPlaySystemSound(_systemSoundID); +} + +#pragma mark - Helper Methods + +- (NSURL *)_fileURL:(NSError **)errorRef +{ + if (_fileURL) { + return _fileURL; + } + + NSURL *baseURL = [_fileManager URLForDirectory:NSCachesDirectory + inDomain:NSUserDomainMask + appropriateForURL:nil + create:YES + error:errorRef]; + if (!baseURL) { + return nil; + } + + NSURL *directoryURL = [baseURL URLByAppendingPathComponent:@"fb_audio" isDirectory:YES]; + NSURL *versionURL = [directoryURL URLByAppendingPathComponent:[NSString stringWithFormat:@"%lu", (unsigned long)[[self class] version]] + isDirectory:YES]; + if (![_fileManager createDirectoryAtURL:versionURL withIntermediateDirectories:YES attributes:nil error:errorRef]) { + return nil; + } + + _fileURL = [[versionURL URLByAppendingPathComponent:[[self class] name]] copy]; + + return _fileURL; +} + +@end + +@implementation FBSDKAudioResourceLoader (Subclass) + +#pragma mark - Subclass Methods + ++ (NSString *)name +{ + return nil; +} + ++ (NSUInteger)version +{ + return 0; +} + ++ (NSData *)data +{ + return nil; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h new file mode 100644 index 0000000..17fa527 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h @@ -0,0 +1,47 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class FBSDKContainerViewController; + +NS_SWIFT_NAME(ContainerViewControllerDelegate) +@protocol FBSDKContainerViewControllerDelegate + +- (void)viewControllerDidDisappear:(FBSDKContainerViewController *)viewController animated:(BOOL)animated; + +@end + +NS_SWIFT_NAME(FBContainerViewController) +@interface FBSDKContainerViewController : UIViewController + +@property (nonatomic, weak, nullable) id delegate; + +- (void)displayChildController:(UIViewController *)childController; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m new file mode 100644 index 0000000..b5a62eb --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m @@ -0,0 +1,84 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKContainerViewController.h" + +@implementation FBSDKContainerViewController + +- (void)viewDidDisappear:(BOOL)animated +{ + [super viewDidDisappear:animated]; + if ([self.delegate respondsToSelector:@selector(viewControllerDidDisappear:animated:)]) { + [self.delegate viewControllerDidDisappear:self animated:animated]; + } +} + +- (void)displayChildController:(UIViewController *)childController +{ + [self addChildViewController:childController]; + UIView *view = self.view; + UIView *childView = childController.view; + childView.translatesAutoresizingMaskIntoConstraints = NO; + childView.frame = view.frame; + [view addSubview:childView]; + + [view addConstraints: + @[ + [NSLayoutConstraint constraintWithItem:childView + attribute:NSLayoutAttributeTop + relatedBy:NSLayoutRelationEqual + toItem:view + attribute:NSLayoutAttributeTop + multiplier:1.0 + constant:0.0], + + [NSLayoutConstraint constraintWithItem:childView + attribute:NSLayoutAttributeBottom + relatedBy:NSLayoutRelationEqual + toItem:view + attribute:NSLayoutAttributeBottom + multiplier:1.0 + constant:0.0], + + [NSLayoutConstraint constraintWithItem:childView + attribute:NSLayoutAttributeLeading + relatedBy:NSLayoutRelationEqual + toItem:view + attribute:NSLayoutAttributeLeading + multiplier:1.0 + constant:0.0], + + [NSLayoutConstraint constraintWithItem:childView + attribute:NSLayoutAttributeTrailing + relatedBy:NSLayoutRelationEqual + toItem:view + attribute:NSLayoutAttributeTrailing + multiplier:1.0 + constant:0.0], + ]]; + + [childController didMoveToParentViewController:self]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h new file mode 100644 index 0000000..cd5a902 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h @@ -0,0 +1,171 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCoreKit.h" +#else +#import +#endif + +#if defined FBSDKCOCOAPODS || defined BUCK + +#if !TARGET_OS_TV +#import "FBSDKViewHierarchy.h" +#import "FBSDKViewHierarchyMacros.h" +#import "FBSDKCodelessIndexer.h" +#import "FBSDKMetadataIndexer.h" +#import "FBSDKSuggestedEventsIndexer.h" +#import "FBSDKCrypto.h" +#import "FBSDKAudioResourceLoader.h" +#import "FBSDKContainerViewController.h" +#import "FBSDKBridgeAPI.h" +#import "FBSDKMonotonicTime.h" +#import "FBSDKTriStateBOOL.h" +#import "FBSDKCloseIcon.h" +#import "FBSDKColor.h" +#import "FBSDKMaleSilhouetteIcon.h" +#import "FBSDKUIUtility.h" +#import "FBSDKViewImpressionTracker.h" +#import "FBSDKWebDialog.h" +#else +#import "FBSDKDeviceButton+Internal.h" +#import "FBSDKDeviceDialogView.h" +#import "FBSDKSmartDeviceDialogView.h" +#import "FBSDKDeviceViewControllerBase+Internal.h" +#import "FBSDKModalFormPresentationController.h" +#endif + +#import "FBSDKAppEvents+Internal.h" +#import "FBSDKAppEventsState.h" +#import "FBSDKAppEventsStateManager.h" +#import "FBSDKAppEventsUtility.h" +#import "FBSDKRestrictiveDataFilterManager.h" +#import "FBSDKTimeSpentData.h" +#import "FBSDKUserDataStore.h" +#import "FBSDKBase64.h" +#import "FBSDKErrorRecoveryAttempter.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKApplicationObserving.h" +#import "FBSDKApplicationDelegate+Internal.h" +#import "FBSDKDeviceRequestsHelper.h" +#import "FBSDKError.h" +#import "FBSDKImageDownloader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKMath.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKSwizzler.h" +#import "FBSDKTypeUtility.h" +#import "FBSDKBasicUtility.h" +#import "FBSDKURLSession.h" +#import "FBSDKURLSessionTask.h" +#import "FBSDKCrashHandler.h" +#import "FBSDKLibAnalyzer.h" +#import "FBSDKCrashObserving.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKGraphRequestConnection+Internal.h" +#import "FBSDKGraphRequestMetadata.h" +#import "FBSDKDialogConfiguration.h" +#import "FBSDKServerConfiguration+Internal.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfigurationManager+Internal.h" +#import "FBSDKServerConfigurationManager.h" +#import "FBSDKGateKeeperManager.h" +#import "FBSDKAccessTokenCache.h" +#import "FBSDKAccessTokenCaching.h" +#import "FBSDKKeychainStore.h" +#import "FBSDKKeychainStoreViaBundleID.h" +#import "FBSDKButton+Subclass.h" +#import "FBSDKIcon.h" +#import "FBSDKLogo.h" + +#else + +#if !TARGET_OS_TV +#import "../AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.h" +#import "../AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchyMacros.h" +#import "../AppEvents/Internal/Codeless/FBSDKCodelessIndexer.h" +#import "../AppEvents/Internal/AAM/FBSDKMetadataIndexer.h" +#import "../AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.h" +#import "Cryptography/FBSDKCrypto.h" +#import "FBSDKAudioResourceLoader.h" +#import "FBSDKContainerViewController.h" +#import "BridgeAPI/FBSDKBridgeAPI.h" +#import "FBSDKMonotonicTime.h" +#import "FBSDKTriStateBOOL.h" +#import "UI/FBSDKCloseIcon.h" +#import "UI/FBSDKColor.h" +#import "UI/FBSDKMaleSilhouetteIcon.h" +#import "UI/FBSDKUIUtility.h" +#import "UI/FBSDKViewImpressionTracker.h" +#import "WebDialog/FBSDKWebDialog.h" +#else +#import "Device/FBSDKDeviceButton+Internal.h" +#import "Device/FBSDKDeviceDialogView.h" +#import "Device/FBSDKSmartDeviceDialogView.h" +#import "Device/FBSDKDeviceViewControllerBase+Internal.h" +#import "Device/FBSDKModalFormPresentationController.h" +#endif + +#import "../AppEvents/Internal/FBSDKAppEvents+Internal.h" +#import "../AppEvents/Internal/FBSDKAppEventsState.h" +#import "../AppEvents/Internal/FBSDKAppEventsStateManager.h" +#import "../AppEvents/Internal/FBSDKAppEventsUtility.h" +#import "../AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.h" +#import "../AppEvents/Internal/FBSDKTimeSpentData.h" +#import "../AppEvents/Internal/FBSDKUserDataStore.h" +#import "Base64/FBSDKBase64.h" +#import "ErrorRecovery/FBSDKErrorRecoveryAttempter.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKApplicationObserving.h" +#import "FBSDKApplicationDelegate+Internal.h" +#import "FBSDKDeviceRequestsHelper.h" +#import "FBSDKError.h" +#import "FBSDKImageDownloader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKMath.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKSwizzler.h" +#import "../Basics/Internal/FBSDKTypeUtility.h" +#import "../Basics/Internal/FBSDKBasicUtility.h" +#import "../Basics/Internal/FBSDKURLSession.h" +#import "../Basics/Internal/FBSDKURLSessionTask.h" +#import "../Basics/Instrument/FBSDKCrashHandler.h" +#import "../Basics/Instrument/FBSDKLibAnalyzer.h" +#import "../Basics/Instrument/FBSDKCrashObserving.h" +#import "Network/FBSDKGraphRequest+Internal.h" +#import "Network/FBSDKGraphRequestConnection+Internal.h" +#import "Network/FBSDKGraphRequestMetadata.h" +#import "ServerConfiguration/FBSDKDialogConfiguration.h" +#import "ServerConfiguration/FBSDKServerConfiguration+Internal.h" +#import "ServerConfiguration/FBSDKServerConfiguration.h" +#import "ServerConfiguration/FBSDKServerConfigurationManager+Internal.h" +#import "ServerConfiguration/FBSDKServerConfigurationManager.h" +#import "ServerConfiguration/FBSDKGateKeeperManager.h" +#import "TokenCaching/FBSDKAccessTokenCache.h" +#import "TokenCaching/FBSDKAccessTokenCaching.h" +#import "TokenCaching/FBSDKKeychainStore.h" +#import "TokenCaching/FBSDKKeychainStoreViaBundleID.h" +#import "UI/FBSDKButton+Subclass.h" +#import "UI/FBSDKIcon.h" +#import "UI/FBSDKLogo.h" + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h new file mode 100644 index 0000000..04f821f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h @@ -0,0 +1,62 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +#define FBSDK_DEVICE_INFO_PARAM @"device_info" + +/* + @class + + Helper class for device requests mDNS broadcasts. Note this is only intended for + internal consumption. + */ +NS_SWIFT_NAME(DeviceRequestsHelper) +@interface FBSDKDeviceRequestsHelper : NSObject + +/** + Get device info to include with the GraphRequest + */ +@property (class, nonatomic, copy, readonly) NSString *getDeviceInfo; + +/** + Start the mDNS advertisement service for a device request + @param loginCode The login code associated with the action for the device request. + @return True if the service broadcast was successfully started. + */ ++ (BOOL)startAdvertisementService:(NSString *)loginCode withDelegate:(id)delegate; + +/** + Check if a service delegate is registered with particular advertisement service + @param delegate The delegate to check if registered. + @param service The advertisement service to check for. + @return True if the service is the one the delegate registered with. + */ ++ (BOOL)isDelegate:(id)delegate forAdvertisementService:(NSNetService *)service; + +/** + Stop the mDNS advertisement service for a device request + @param delegate The delegate registered with the service. + */ ++ (void)cleanUpAdvertisementService:(id)delegate; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.m new file mode 100644 index 0000000..c2f5d53 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.m @@ -0,0 +1,122 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKDeviceRequestsHelper.h" + +#import + +#import + +#import "FBSDKCoreKit+Internal.h" + +#define FBSDK_DEVICE_INFO_DEVICE @"device" +#define FBSDK_DEVICE_INFO_MODEL @"model" +#define FBSDK_HEADER @"fbsdk" +#if !TARGET_OS_TV +#define FBSDK_FLAVOR @"ios" +#else +#define FBSDK_FLAVOR @"tvos" +#endif +#define FBSDK_SERVICE_TYPE @"_fb._tcp." + +static NSMapTable *g_mdnsAdvertisementServices; + +@implementation FBSDKDeviceRequestsHelper + +#pragma mark - Class Methods + ++ (void)initialize { + // We use weak to strong in order to retain the advertisement services + // without having to pass them back to the delegate that started them + // Note that in case the delegate is destroyed before it had a chance to + // stop the service, the service will continue broadcasting until the map + // resizes itself and releases the service, causing it to stop + g_mdnsAdvertisementServices = [NSMapTable weakToStrongObjectsMapTable]; +} + ++ (NSString *)getDeviceInfo +{ + struct utsname systemInfo; + uname(&systemInfo); + NSDictionary *deviceInfo = @{ + FBSDK_DEVICE_INFO_DEVICE: @(systemInfo.machine), + FBSDK_DEVICE_INFO_MODEL: [UIDevice currentDevice].model, + }; + NSError *err; + NSData *jsonDeviceInfo = [NSJSONSerialization dataWithJSONObject:deviceInfo + options:0 + error:&err]; + + return [[NSString alloc] initWithData:jsonDeviceInfo encoding:NSUTF8StringEncoding]; +} + ++ (BOOL)startAdvertisementService:(NSString *)loginCode withDelegate:(id)delegate +{ + static NSString *sdkVersion = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + // Dots in the version will mess up the bonjour DNS record parsing + sdkVersion = [[FBSDKSettings sdkVersion] stringByReplacingOccurrencesOfString:@"." withString:@"|"]; + if (sdkVersion.length > 10 || + ![[NSCharacterSet decimalDigitCharacterSet] characterIsMember:[sdkVersion characterAtIndex:0]]) { + sdkVersion = @"dev"; + } + }); + NSString *serviceName = [NSString stringWithFormat:@"%@_%@_%@", + FBSDK_HEADER, + [NSString stringWithFormat:@"%@-%@", + FBSDK_FLAVOR, + sdkVersion + ], + loginCode + ]; + if (serviceName.length > 60) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:@"serviceName exceeded 60 characters"]; + } + NSNetService *mdnsAdvertisementService = [[NSNetService alloc] + initWithDomain:@"local." + type:FBSDK_SERVICE_TYPE + name:serviceName + port:0]; + mdnsAdvertisementService.delegate = delegate; + [mdnsAdvertisementService publishWithOptions:NSNetServiceNoAutoRename | NSNetServiceListenForConnections]; + [FBSDKAppEvents logInternalEvent:FBSDKAppEventNameFBSDKSmartLoginService + isImplicitlyLogged:YES]; + [g_mdnsAdvertisementServices setObject:mdnsAdvertisementService forKey:delegate]; + + return YES; +} + ++ (BOOL)isDelegate:(id)delegate forAdvertisementService:(NSNetService *)service +{ + NSNetService *mdnsAdvertisementService = [g_mdnsAdvertisementServices objectForKey:delegate]; + return (mdnsAdvertisementService == service); +} + ++ (void)cleanUpAdvertisementService:(id)delegate +{ + NSNetService *mdnsAdvertisementService = [g_mdnsAdvertisementServices objectForKey:delegate]; + if (mdnsAdvertisementService != nil) { + // We are not interested in the stop publish event + mdnsAdvertisementService.delegate = nil; + [mdnsAdvertisementService stop]; + [g_mdnsAdvertisementServices removeObjectForKey:delegate]; + } +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h new file mode 100644 index 0000000..35d002c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h @@ -0,0 +1,244 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#pragma mark - Security APIs + +// These are local wrappers around the corresponding methods in Security/SecRandom.h +FOUNDATION_EXPORT int fbsdkdfl_SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes); + +// These are local wrappers around Keychain API +FOUNDATION_EXPORT OSStatus fbsdkdfl_SecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate); +FOUNDATION_EXPORT OSStatus fbsdkdfl_SecItemAdd(CFDictionaryRef attributes, CFTypeRef _Nullable * _Nullable result); +FOUNDATION_EXPORT OSStatus fbsdkdfl_SecItemCopyMatching(CFDictionaryRef query, CFTypeRef _Nullable * _Nullable result); +FOUNDATION_EXPORT OSStatus fbsdkdfl_SecItemDelete(CFDictionaryRef query); + +#pragma mark - Social Constants + +FOUNDATION_EXPORT NSString *fbsdkdfl_SLServiceTypeFacebook(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_SLServiceTypeTwitter(void); + +#pragma mark - Social Classes + +FOUNDATION_EXPORT Class fbsdkdfl_SLComposeViewControllerClass(void); + +#pragma mark - MessageUI Classes + +FOUNDATION_EXPORT Class fbsdkdfl_MFMailComposeViewControllerClass(void); +FOUNDATION_EXPORT Class fbsdkdfl_MFMessageComposeViewControllerClass(void); + +#pragma mark - QuartzCore Classes + +FOUNDATION_EXPORT Class fbsdkdfl_CATransactionClass(void); + +#pragma mark - QuartzCore APIs + +// These are local wrappers around the corresponding transform methods from QuartzCore.framework/CATransform3D.h +FOUNDATION_EXPORT CATransform3D fbsdkdfl_CATransform3DMakeScale (CGFloat sx, CGFloat sy, CGFloat sz); +FOUNDATION_EXPORT CATransform3D fbsdkdfl_CATransform3DMakeTranslation (CGFloat tx, CGFloat ty, CGFloat tz); +FOUNDATION_EXPORT CATransform3D fbsdkdfl_CATransform3DConcat (CATransform3D a, CATransform3D b); + +FOUNDATION_EXPORT const CATransform3D fbsdkdfl_CATransform3DIdentity; + +#pragma mark - AudioToolbox APIs + +// These are local wrappers around the corresponding methods in AudioToolbox/AudioToolbox.h +FOUNDATION_EXPORT OSStatus fbsdkdfl_AudioServicesCreateSystemSoundID(CFURLRef inFileURL, SystemSoundID *outSystemSoundID); +FOUNDATION_EXPORT OSStatus fbsdkdfl_AudioServicesDisposeSystemSoundID(SystemSoundID inSystemSoundID); +FOUNDATION_EXPORT void fbsdkdfl_AudioServicesPlaySystemSound(SystemSoundID inSystemSoundID); + +#pragma mark - AdSupport Classes + +FOUNDATION_EXPORT Class fbsdkdfl_ASIdentifierManagerClass(void); + +#pragma mark - SafariServices Classes + +FOUNDATION_EXPORT Class fbsdkdfl_SFSafariViewControllerClass(void); +FOUNDATION_EXPORT Class fbsdkdfl_SFAuthenticationSessionClass(void); + +#pragma mark - AuthenticationServices Classes + +FOUNDATION_EXPORT Class fbsdkdfl_ASWebAuthenticationSessionClass(void); + +#pragma mark - Accounts Constants + +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookAppIdKey(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookAudienceEveryone(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookAudienceFriends(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookAudienceKey(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookAudienceOnlyMe(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_ACFacebookPermissionsKey(void); + +#pragma mark - Accounts Classes + +FOUNDATION_EXPORT Class fbsdkdfl_ACAccountStoreClass(void); + +#pragma mark - StoreKit classes + +FOUNDATION_EXPORT Class fbsdkdfl_SKPaymentQueueClass(void); +FOUNDATION_EXPORT Class fbsdkdfl_SKProductsRequestClass(void); + +#pragma mark - AssetsLibrary Classes + +FOUNDATION_EXPORT Class fbsdkdfl_ALAssetsLibraryClass(void); + +#pragma mark - CoreTelephony Classes + +FOUNDATION_EXPORT Class fbsdkdfl_CTTelephonyNetworkInfoClass(void); + +#pragma mark - CoreImage + +FOUNDATION_EXPORT Class fbsdkdfl_CIImageClass(void); +FOUNDATION_EXPORT Class fbsdkdfl_CIFilterClass(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_kCIInputImageKey(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_kCIInputRadiusKey(void); +FOUNDATION_EXPORT NSString *fbsdkdfl_kCIOutputImageKey(void); + +#pragma mark - Photos.framework + +FOUNDATION_EXPORT Class fbsdkdfl_PHPhotoLibrary(void); +FOUNDATION_EXPORT Class fbsdkdfl_PHAssetChangeRequest(void); + +#pragma mark - MobileCoreServices + +FOUNDATION_EXPORT CFStringRef fbsdkdfl_UTTypeCopyPreferredTagWithClass(CFStringRef inUTI, + CFStringRef inTagClass); +FOUNDATION_EXPORT CFStringRef fbsdkdfl_kUTTagClassMIMEType(void); +FOUNDATION_EXPORT CFStringRef fbsdkdfl_kUTTypeJPEG(void); +FOUNDATION_EXPORT CFStringRef fbsdkdfl_kUTTypePNG(void); + +#pragma mark - WebKit Classes + +FOUNDATION_EXPORT Class fbsdkdfl_WKWebViewClass(void); +FOUNDATION_EXPORT Class fbsdkdfl_WKUserScriptClass(void); + +/** + + This class provides a way to load constants and methods from Apple Frameworks in a dynamic + fashion. It allows the SDK to be just dragged into a project without having to specify additional + frameworks to link against. It is an internal class and not to be used by 3rd party developers. + + As new types are needed, they should be added and strongly typed. + */ +NS_SWIFT_NAME(DynamicFrameworkLoader) +@interface FBSDKDynamicFrameworkLoader : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +#pragma mark - Security Constants + +/** + Load the kSecRandomDefault value from the Security Framework + + @return The kSecRandomDefault value or nil. + */ ++ (SecRandomRef)loadkSecRandomDefault; + +/** + Load the kSecAttrAccessible value from the Security Framework + + @return The kSecAttrAccessible value or nil. + */ ++ (CFTypeRef)loadkSecAttrAccessible; + +/** + Load the kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value from the Security Framework + + @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. + */ ++ (CFTypeRef)loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly; + +/** + Load the kSecAttrAccount value from the Security Framework + + @return The kSecAttrAccount value or nil. + */ ++ (CFTypeRef)loadkSecAttrAccount; + +/** + Load the kSecAttrService value from the Security Framework + + @return The kSecAttrService value or nil. + */ ++ (CFTypeRef)loadkSecAttrService; + +/** + Load the kSecAttrGeneric value from the Security Framework + + @return The kSecAttrGeneric value or nil. + */ ++ (CFTypeRef)loadkSecAttrGeneric; + +/** + Load the kSecValueData value from the Security Framework + + @return The kSecValueData value or nil. + */ ++ (CFTypeRef)loadkSecValueData; + +/** + Load the kSecClassGenericPassword value from the Security Framework + + @return The kSecClassGenericPassword value or nil. + */ ++ (CFTypeRef)loadkSecClassGenericPassword; + +/** + Load the kSecAttrAccessGroup value from the Security Framework + + @return The kSecAttrAccessGroup value or nil. + */ ++ (CFTypeRef)loadkSecAttrAccessGroup; + +/** + Load the kSecMatchLimitOne value from the Security Framework + + @return The kSecMatchLimitOne value or nil. + */ ++ (CFTypeRef)loadkSecMatchLimitOne; + +/** + Load the kSecMatchLimit value from the Security Framework + + @return The kSecMatchLimit value or nil. + */ ++ (CFTypeRef)loadkSecMatchLimit; + +/** + Load the kSecReturnData value from the Security Framework + + @return The kSecReturnData value or nil. + */ ++ (CFTypeRef)loadkSecReturnData; + +/** + Load the kSecClass value from the Security Framework + + @return The kSecClass value or nil. + */ ++ (CFTypeRef)loadkSecClass; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h new file mode 100644 index 0000000..6a01e44 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h @@ -0,0 +1,98 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +NS_SWIFT_NAME(SDKError) +@interface FBSDKError : NSObject + ++ (NSError *)errorWithCode:(NSInteger)code message:(nullable NSString *)message; + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain code:(NSInteger)code message:(nullable NSString *)message; + ++ (NSError *)errorWithCode:(NSInteger)code + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain + code:(NSInteger)code + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)errorWithCode:(NSInteger)code + userInfo:(nullable NSDictionary *)userInfo + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain + code:(NSInteger)code + userInfo:(nullable NSDictionary *)userInfo + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)invalidArgumentErrorWithName:(NSString *)name + value:(nullable id)value + message:(nullable NSString *)message; + ++ (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain + name:(NSString *)name + value:(nullable id)value + message:(nullable NSString *)message; + ++ (NSError *)invalidArgumentErrorWithName:(NSString *)name + value:(nullable id)value + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain + name:(NSString *)name + value:(nullable id)value + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)invalidCollectionErrorWithName:(NSString *)name + collection:(id)collection + item:(id)item + message:(nullable NSString *)message; + ++ (NSError *)invalidCollectionErrorWithName:(NSString *)name + collection:(id)collection + item:(id)item + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)requiredArgumentErrorWithName:(NSString *)name message:(nullable NSString *)message; + ++ (NSError *)requiredArgumentErrorWithDomain:(NSErrorDomain)domain + name:(NSString *)name + message:(nullable NSString *)message; + ++ (NSError *)requiredArgumentErrorWithName:(NSString *)name + message:(nullable NSString *)message + underlyingError:(nullable NSError *)underlyingError; + ++ (NSError *)unknownErrorWithMessage:(NSString *)message; + ++ (BOOL)isNetworkError:(NSError *)error; ++ (void)enableErrorReport; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m new file mode 100644 index 0000000..10bbafe --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m @@ -0,0 +1,212 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKError.h" + +#import "FBSDKConstants.h" +#import "FBSDKErrorReport.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" + +@implementation FBSDKError + +static BOOL isErrorReportEnabled = NO; + +#pragma mark - Class Methods + ++ (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message +{ + return [self errorWithCode:code message:message underlyingError:nil]; +} + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain code:(NSInteger)code message:(NSString *)message +{ + return [self errorWithDomain:domain code:code message:message underlyingError:nil]; +} + ++ (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message underlyingError:(NSError *)underlyingError +{ + return [self errorWithCode:code userInfo:@{} message:message underlyingError:underlyingError]; +} + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain + code:(NSInteger)code + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + return [self errorWithDomain:domain code:code userInfo:@{} message:message underlyingError:underlyingError]; +} + ++ (NSError *)errorWithCode:(NSInteger)code + userInfo:(NSDictionary *)userInfo + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + return [self errorWithDomain:FBSDKErrorDomain + code:code + userInfo:userInfo + message:message + underlyingError:underlyingError]; +} + ++ (NSError *)errorWithDomain:(NSErrorDomain)domain + code:(NSInteger)code + userInfo:(NSDictionary *)userInfo + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + NSMutableDictionary *fullUserInfo = [[NSMutableDictionary alloc] initWithDictionary:userInfo]; + [FBSDKBasicUtility dictionary:fullUserInfo setObject:message forKey:FBSDKErrorDeveloperMessageKey]; + [FBSDKBasicUtility dictionary:fullUserInfo setObject:underlyingError forKey:NSUnderlyingErrorKey]; + userInfo = fullUserInfo.count ? [fullUserInfo copy] : nil; + if (isErrorReportEnabled) { + [FBSDKErrorReport saveError:code errorDomain:domain message:message]; + } + + return [[NSError alloc] initWithDomain:domain code:code userInfo:userInfo]; +} + ++ (NSError *)invalidArgumentErrorWithName:(NSString *)name value:(id)value message:(NSString *)message +{ + return [self invalidArgumentErrorWithName:name value:value message:message underlyingError:nil]; +} + ++ (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain + name:(NSString *)name + value:(id)value + message:(NSString *)message +{ + return [self invalidArgumentErrorWithDomain:domain name:name value:value message:message underlyingError:nil]; +} + ++ (NSError *)invalidArgumentErrorWithName:(NSString *)name + value:(id)value + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + return [self invalidArgumentErrorWithDomain:FBSDKErrorDomain + name:name + value:value + message:message + underlyingError:underlyingError]; +} ++ (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain + name:(NSString *)name + value:(id)value + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + if (!message) { + message = [[NSString alloc] initWithFormat:@"Invalid value for %@: %@", name, value]; + } + NSMutableDictionary *userInfo = [[NSMutableDictionary alloc] init]; + [FBSDKBasicUtility dictionary:userInfo setObject:name forKey:FBSDKErrorArgumentNameKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:value forKey:FBSDKErrorArgumentValueKey]; + return [self errorWithDomain:domain + code:FBSDKErrorInvalidArgument + userInfo:userInfo + message:message + underlyingError:underlyingError]; +} + ++ (NSError *)invalidCollectionErrorWithName:(NSString *)name + collection:(id)collection + item:(id)item + message:(NSString *)message +{ + return [self invalidCollectionErrorWithName:name collection:collection item:item message:message underlyingError:nil]; +} + ++ (NSError *)invalidCollectionErrorWithName:(NSString *)name + collection:(id)collection + item:(id)item + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + if (!message) { + message = + [[NSString alloc] initWithFormat:@"Invalid item (%@) found in collection for %@: %@", item, name, collection]; + } + NSMutableDictionary *userInfo = [[NSMutableDictionary alloc] init]; + [FBSDKBasicUtility dictionary:userInfo setObject:name forKey:FBSDKErrorArgumentNameKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:item forKey:FBSDKErrorArgumentValueKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:collection forKey:FBSDKErrorArgumentCollectionKey]; + return [self errorWithCode:FBSDKErrorInvalidArgument + userInfo:userInfo + message:message + underlyingError:underlyingError]; +} + ++ (NSError *)requiredArgumentErrorWithName:(NSString *)name message:(NSString *)message +{ + return [self requiredArgumentErrorWithName:name message:message underlyingError:nil]; +} + ++ (NSError *)requiredArgumentErrorWithDomain:(NSErrorDomain)domain name:(NSString *)name message:(NSString *)message +{ + if (!message) { + message = [[NSString alloc] initWithFormat:@"Value for %@ is required.", name]; + } + return [self invalidArgumentErrorWithDomain:domain name:name value:nil message:message underlyingError:nil]; +} + ++ (NSError *)requiredArgumentErrorWithName:(NSString *)name + message:(NSString *)message + underlyingError:(NSError *)underlyingError +{ + if (!message) { + message = [[NSString alloc] initWithFormat:@"Value for %@ is required.", name]; + } + return [self invalidArgumentErrorWithName:name value:nil message:message underlyingError:underlyingError]; +} + ++ (NSError *)unknownErrorWithMessage:(NSString *)message +{ + return [self errorWithCode:FBSDKErrorUnknown userInfo:@{} message:message underlyingError:nil]; +} + ++ (BOOL)isNetworkError:(NSError *)error +{ + NSError *innerError = error.userInfo[NSUnderlyingErrorKey]; + if (innerError && [self isNetworkError:innerError]) { + return YES; + } + + switch (error.code) { + case NSURLErrorTimedOut: + case NSURLErrorCannotFindHost: + case NSURLErrorCannotConnectToHost: + case NSURLErrorNetworkConnectionLost: + case NSURLErrorDNSLookupFailed: + case NSURLErrorNotConnectedToInternet: + case NSURLErrorInternationalRoamingOff: + case NSURLErrorCallIsActive: + case NSURLErrorDataNotAllowed: + return YES; + default: + return NO; + } +} + ++ (void)enableErrorReport +{ + isErrorReportEnabled = YES; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.h new file mode 100644 index 0000000..4ca6f68 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.h @@ -0,0 +1,85 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + FBSDKFeature enum + Defines features in SDK + + Sample: + FBSDKFeatureAppEvents = 0x00010000, + ^ ^ ^ ^ + | | | | + kit | | | + feature | | + sub-feature | + sub-sub-feature + 1st byte: kit + 2nd byte: feature + 3rd byte: sub-feature + 4th byte: sub-sub-feature + */ +typedef NS_ENUM(NSUInteger, FBSDKFeature) +{ + // Features in CoreKit + /** Essential of CoreKit */ + FBSDKFeatureCore = 0x00000000, + /** App Events */ + FBSDKFeatureAppEvents = 0x00010000, + FBSDKFeatureCodelessEvents = 0x00010100, + FBSDKFeatureRestrictiveDataFiltering = 0x00010200, + FBSDKFeatureAAM = 0x00010300, + FBSDKFeaturePrivacyProtection = 0x00010400, + FBSDKFeatureSuggestedEvents = 0x00010401, + FBSDKFeaturePIIFiltering = 0x00010402, + FBSDKFeatureEventDeactivation = 0x00010500, + /** Instrument */ + FBSDKFeatureInstrument = 0x00020000, + FBSDKFeatureCrashReport = 0x00020100, + FBSDKFeatureCrashShield = 0x00020101, + FBSDKFeatureErrorReport = 0x00020200, + + + // Features in LoginKit + /** Essential of LoginKit */ + FBSDKFeatureLogin = 0x01000000, + + // Features in ShareKit + /** Essential of ShareKit */ + FBDSDKFeatureShare = 0x02000000, + + // Features in PlacesKit + /** Essential of PlacesKit */ + FBSDKFeaturePlaces = 0x03000000, + +} NS_SWIFT_NAME(SDKFeature); + +typedef void (^FBSDKFeatureManagerBlock)(BOOL enabled); + +@interface FBSDKFeatureManager : NSObject + ++ (void)checkFeature:(FBSDKFeature)feature + completionBlock:(FBSDKFeatureManagerBlock)completionBlock; ++ (void)disableFeature:(NSString *)featureName; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.m new file mode 100644 index 0000000..b3cf57c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.m @@ -0,0 +1,130 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKFeatureManager.h" + +#import "ServerConfiguration/FBSDKGateKeeperManager.h" + +#import "FBSDKSettings.h" + +static NSString *const FBSDKFeatureManagerPrefix = @"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature"; + +@implementation FBSDKFeatureManager + ++ (void)checkFeature:(FBSDKFeature)feature + completionBlock:(FBSDKFeatureManagerBlock)completionBlock +{ + // check locally first + NSString *version = [[NSUserDefaults standardUserDefaults] valueForKey:[FBSDKFeatureManagerPrefix stringByAppendingString:[self featureName:feature]]]; + if (version && [version isEqualToString:[FBSDKSettings sdkVersion]]) { + return; + } + // check gk + [FBSDKGateKeeperManager loadGateKeepers:^(NSError * _Nullable error) { + if (completionBlock) { + completionBlock([FBSDKFeatureManager isEnabled:feature]); + } + }]; +} + ++ (BOOL)isEnabled:(FBSDKFeature)feature +{ + if (FBSDKFeatureCore == feature) { + return YES; + } + + FBSDKFeature parentFeature = [self getParentFeature:feature]; + if (parentFeature == feature) { + return [self checkGK:feature]; + } else { + return [FBSDKFeatureManager isEnabled:parentFeature] && [self checkGK:feature]; + } +} + ++ (void)disableFeature:(NSString *)featureName +{ + [[NSUserDefaults standardUserDefaults] setObject:[FBSDKSettings sdkVersion] forKey:[FBSDKFeatureManagerPrefix stringByAppendingString:featureName]]; +} + ++ (FBSDKFeature)getParentFeature:(FBSDKFeature)feature +{ + if ((feature & 0xFF) > 0) { + return feature & 0xFFFFFF00; + } else if ((feature & 0xFF00) > 0) { + return feature & 0xFFFF0000; + } else if ((feature & 0xFF0000) > 0) { + return feature & 0xFF000000; + } else return 0; +} + ++ (BOOL)checkGK:(FBSDKFeature)feature +{ + NSString *key = [NSString stringWithFormat:@"FBSDKFeature%@", [self featureName:feature]]; + BOOL defaultValue = [self defaultStatus:feature]; + + return [FBSDKGateKeeperManager boolForKey:key + defaultValue:defaultValue]; +} + ++ (NSString *)featureName:(FBSDKFeature)feature +{ + NSString *featureName; + switch (feature) { + case FBSDKFeatureCore: featureName = @"CoreKit"; break; + case FBSDKFeatureAppEvents: featureName = @"AppEvents"; break; + case FBSDKFeatureCodelessEvents: featureName = @"CodelessEvents"; break; + case FBSDKFeatureRestrictiveDataFiltering: featureName = @"RestrictiveDataFiltering"; break; + case FBSDKFeatureAAM: featureName = @"AAM"; break; + case FBSDKFeaturePrivacyProtection: featureName = @"PrivacyProtection"; break; + case FBSDKFeatureSuggestedEvents: featureName = @"SuggestedEvents"; break; + case FBSDKFeaturePIIFiltering: featureName = @"PIIFiltering"; break; + case FBSDKFeatureEventDeactivation: featureName = @"EventDeactivation"; break; + case FBSDKFeatureInstrument: featureName = @"Instrument"; break; + case FBSDKFeatureCrashReport: featureName = @"CrashReport"; break; + case FBSDKFeatureCrashShield: featureName = @"CrashShield"; break; + case FBSDKFeatureErrorReport: featureName = @"ErrorReport"; break; + + case FBSDKFeatureLogin: featureName = @"LoginKit"; break; + + case FBDSDKFeatureShare: featureName = @"ShareKit"; break; + + case FBSDKFeaturePlaces: featureName = @"PlacesKit"; break; + } + + return featureName; +} + ++ (BOOL)defaultStatus:(FBSDKFeature)feature +{ + switch (feature) { + case FBSDKFeatureRestrictiveDataFiltering: + case FBSDKFeatureEventDeactivation: + case FBSDKFeatureInstrument: + case FBSDKFeatureCrashReport: + case FBSDKFeatureCrashShield: + case FBSDKFeatureErrorReport: + case FBSDKFeatureAAM: + case FBSDKFeaturePrivacyProtection: + case FBSDKFeatureSuggestedEvents: + case FBSDKFeaturePIIFiltering: + return NO; + default: return YES; + } +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.h new file mode 100644 index 0000000..6e4ed1d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.h @@ -0,0 +1,54 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + Describes the callback for downloadImageWithURL:ttl:completion:. + @param image the optional image returned + */ +typedef void (^FBSDKImageDownloadBlock)(UIImage *_Nullable image) +NS_SWIFT_NAME(ImageDownloadBlock); + +/* + simple class to manage image downloads + + this class is not smart enough to dedupe identical requests in flight. + */ +NS_SWIFT_NAME(ImageDownloader) +@interface FBSDKImageDownloader : NSObject + +@property (class, nonatomic, strong, readonly) FBSDKImageDownloader *sharedInstance; + +/* + download an image or retrieve it from cache + @param url the url to download + @param ttl the amount of time (in seconds) that using a cached version is acceptable. + @param completion the callback with the image - for simplicity nil is returned rather than surfacing an error. + */ +- (void)downloadImageWithURL:(NSURL *)url + ttl:(NSTimeInterval)ttl + completion:(nullable FBSDKImageDownloadBlock)completion; + +- (void)removeAll; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.m new file mode 100644 index 0000000..9b8f428 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.m @@ -0,0 +1,101 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKImageDownloader.h" + +static NSString *const kImageDirectory = @"fbsdkimages"; +static NSString *const kCachedResponseUserInfoKeyTimestamp = @"timestamp"; + +@implementation FBSDKImageDownloader { + NSURLCache *_urlCache; +} + ++ (FBSDKImageDownloader *)sharedInstance +{ + static FBSDKImageDownloader *instance; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + instance = [[FBSDKImageDownloader alloc] init]; + }); + return instance; +} + +- (instancetype)init +{ + if ((self = [super init])) { +#if TARGET_OS_MACCATALYST + _urlCache = [[NSURLCache alloc] initWithMemoryCapacity:1024*1024*8 + diskCapacity:1024*1024*100 + directoryURL:[NSURL URLWithString:kImageDirectory]]; +#else + _urlCache = [[NSURLCache alloc] initWithMemoryCapacity:1024*1024*8 + diskCapacity:1024*1024*100 + diskPath:kImageDirectory]; +#endif + } + return self; +} + +- (void)removeAll +{ + [_urlCache removeAllCachedResponses]; +} + +- (void)downloadImageWithURL:(NSURL *)url + ttl:(NSTimeInterval)ttl + completion:(FBSDKImageDownloadBlock)completion +{ + NSURLRequest *request = [NSURLRequest requestWithURL:url]; + NSCachedURLResponse *cachedResponse = [_urlCache cachedResponseForRequest:request]; + NSDate *modificationDate = cachedResponse.userInfo[kCachedResponseUserInfoKeyTimestamp]; + BOOL isExpired = ([[modificationDate dateByAddingTimeInterval:ttl] compare:[NSDate date]] == NSOrderedAscending); + + void (^completionWrapper)(NSCachedURLResponse *) = ^(NSCachedURLResponse *responseData){ + if (completion != NULL) { + UIImage *image = [UIImage imageWithData:responseData.data]; + completion(image); + } + }; + + if (cachedResponse == nil || isExpired) { + NSURLSession *session = [NSURLSession sharedSession]; + NSURLSessionDataTask *task = [session dataTaskWithRequest:request + completionHandler: + ^(NSData *data, NSURLResponse *response, NSError *error) { + if ([response isKindOfClass:[NSHTTPURLResponse class]] && + ((NSHTTPURLResponse *)response).statusCode == 200 && + error == nil && + data != nil) { + NSCachedURLResponse *responseToCache = + [[NSCachedURLResponse alloc] initWithResponse:response + data:data + userInfo:@{ kCachedResponseUserInfoKeyTimestamp : [NSDate date] } + storagePolicy:NSURLCacheStorageAllowed]; + [self->_urlCache storeCachedResponse:responseToCache forRequest:request]; + completionWrapper(responseToCache); + } else if (completion != NULL) { + completion(nil); + } + }]; + [task resume]; + } else { + completionWrapper(cachedResponse); + } +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h new file mode 100644 index 0000000..c84f6c1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h @@ -0,0 +1,316 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKCoreKit+Internal.h" + +NS_ASSUME_NONNULL_BEGIN + +#define FBSDK_CANOPENURL_FACEBOOK @"fbauth2" +#define FBSDK_CANOPENURL_FBAPI @"fbapi" +#define FBSDK_CANOPENURL_MESSENGER @"fb-messenger-share-api" +#define FBSDK_CANOPENURL_MSQRD_PLAYER @"msqrdplayer" +#define FBSDK_CANOPENURL_SHARE_EXTENSION @"fbshareextension" + +typedef NS_ENUM(int32_t, FBSDKUIKitVersion) +{ + FBSDKUIKitVersion_6_0 = 0x0944, + FBSDKUIKitVersion_6_1 = 0x094C, + FBSDKUIKitVersion_7_0 = 0x0B57, + FBSDKUIKitVersion_7_1 = 0x0B77, + FBSDKUIKitVersion_8_0 = 0x0CF6, +} NS_SWIFT_NAME(FBUIKit.Version); + +/** + Describes the callback for appLinkFromURLInBackground. + @param object the FBSDKAppLink representing the deferred App Link + @param stop the error during the request, if any + + */ +typedef id _Nullable (^FBSDKInvalidObjectHandler)(id object, BOOL *stop) +NS_SWIFT_NAME(InvalidObjectHandler); + + + +NS_SWIFT_NAME(InternalUtility) +@interface FBSDKInternalUtility : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Constructs the scheme for apps that come to the current app through the bridge. + */ +@property (class, nonatomic, copy, readonly) NSString *appURLScheme; + +/** + Returns bundle for returning localized strings + + We assume a convention of a bundle named FBSDKStrings.bundle, otherwise we + return the main bundle. + */ +@property (class, nonatomic, strong, readonly) NSBundle *bundleForStrings; + +/** + Gets the milliseconds since the Unix Epoch. + + Changes in the system clock will affect this value. + @return The number of milliseconds since the Unix Epoch. + */ +@property (class, nonatomic, assign, readonly) uint64_t currentTimeInMilliseconds; + +/** + The version of the operating system on which the process is executing. + */ +@property (class, nonatomic, assign, readonly) NSOperatingSystemVersion operatingSystemVersion; + +/** + Tests whether the orientation should be manually adjusted for views outside of the root view controller. + + With the legacy layout the developer must worry about device orientation when working with views outside of + the window's root view controller and apply the correct rotation transform and/or swap a view's width and height + values. If the application was linked with UIKit on iOS 7 or earlier or the application is running on iOS 7 or earlier + then we need to use the legacy layout code. Otherwise if the application was linked with UIKit on iOS 8 or later and + the application is running on iOS 8 or later, UIKit handles all of the rotation complexity and the origin is always in + the top-left and no rotation transform is necessary. + @return YES if if the orientation must be manually adjusted, otherwise NO. + */ +@property (class, nonatomic, assign, readonly) BOOL shouldManuallyAdjustOrientation; + +/* + Checks if the app is Unity. + */ +@property (class, nonatomic, assign, readonly) BOOL isUnity; + +/** + Constructs an URL for the current app. + @param host The host for the URL. + @param path The path for the URL. + @param queryParameters The query parameters for the URL. This will be converted into a query string. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return The app URL. + */ ++ (NSURL *)appURLWithHost:(NSString *)host + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef; + +/** + Parses an FB url's query params (and potentially fragment) into a dictionary. + @param url The FB url. + @return A dictionary with the key/value pairs. + */ ++ (NSDictionary *)dictionaryFromFBURL:(NSURL *)url; + +/** + Constructs a Facebook URL. + @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. + @param path The path for the URL. This may or may not include a version. + @param queryParameters The query parameters for the URL. This will be converted into a query string. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return The Facebook URL. + */ ++ (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef; + +/** + Constructs a Facebook URL. + @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. + @param path The path for the URL. This may or may not include a version. + @param queryParameters The query parameters for the URL. This will be converted into a query string. + @param defaultVersion A version to add to the URL if none is found in the path. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return The Facebook URL. + */ ++ (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + defaultVersion:(NSString *)defaultVersion + error:(NSError *__autoreleasing *)errorRef; + +/** + Tests whether the supplied URL is a valid URL for opening in the browser. + @param URL The URL to test. + @return YES if the URL refers to an http or https resource, otherwise NO. + */ ++ (BOOL)isBrowserURL:(NSURL *)URL; + +/** + Tests whether the supplied bundle identifier references a Facebook app. + @param bundleIdentifier The bundle identifier to test. + @return YES if the bundle identifier refers to a Facebook app, otherwise NO. + */ ++ (BOOL)isFacebookBundleIdentifier:(NSString *)bundleIdentifier; + +/** + Tests whether the operating system is at least the specified version. + @param version The version to test against. + @return YES if the operating system is greater than or equal to the specified version, otherwise NO. + */ ++ (BOOL)isOSRunTimeVersionAtLeast:(NSOperatingSystemVersion)version; + +/** + Tests whether the supplied bundle identifier references the Safari app. + @param bundleIdentifier The bundle identifier to test. + @return YES if the bundle identifier refers to the Safari app, otherwise NO. + */ ++ (BOOL)isSafariBundleIdentifier:(NSString *)bundleIdentifier; + +/** + Tests whether the UIKit version that the current app was linked to is at least the specified version. + @param version The version to test against. + @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. + */ ++ (BOOL)isUIKitLinkTimeVersionAtLeast:(FBSDKUIKitVersion)version; + +/** + Tests whether the UIKit version in the runtime is at least the specified version. + @param version The version to test against. + @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. + */ ++ (BOOL)isUIKitRunTimeVersionAtLeast:(FBSDKUIKitVersion)version; + +/** + Checks equality between 2 objects. + + Checks for pointer equality, nils, isEqual:. + @param object The first object to compare. + @param other The second object to compare. + @return YES if the objects are equal, otherwise NO. + */ ++ (BOOL)object:(id)object isEqualToObject:(id)other; + +/** + Constructs an NSURL. + @param scheme The scheme for the URL. + @param host The host for the URL. + @param path The path for the URL. + @param queryParameters The query parameters for the URL. This will be converted into a query string. + @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. + @return The URL. + */ ++ (nullable NSURL *)URLWithScheme:(NSString *)scheme + host:(NSString *)host + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef; + +/** + * Deletes all the cookies in the NSHTTPCookieStorage for Facebook web dialogs + */ ++ (void)deleteFacebookCookies; + +/** + Extracts permissions from a response fetched from me/permissions + @param responseObject the response + @param grantedPermissions the set to add granted permissions to + @param declinedPermissions the set to add declined permissions to. + */ ++ (void)extractPermissionsFromResponse:(NSDictionary *)responseObject + grantedPermissions:(NSMutableSet *)grantedPermissions + declinedPermissions:(NSMutableSet *)declinedPermissions + expiredPermissions:(NSMutableSet *)expiredPermissions; + +/** + Registers a transient object so that it will not be deallocated until unregistered + @param object The transient object + */ ++ (void)registerTransientObject:(id)object; + +/** + Unregisters a transient object that was previously registered with registerTransientObject: + @param object The transient object + */ ++ (void)unregisterTransientObject:(__weak id)object; + +/** + validates that the app ID is non-nil, throws an NSException if nil. + */ ++ (void)validateAppID; + +/** + Validates that the client access token is non-nil, otherwise - throws an NSException otherwise. + Returns the composed client access token. + */ ++ (NSString *)validateRequiredClientAccessToken; + +/** + validates that the right URL schemes are registered, throws an NSException if not. + */ ++ (void)validateURLSchemes; + +/** + validates that Facebook reserved URL schemes are not registered, throws an NSException if they are. + */ ++ (void)validateFacebookReservedURLSchemes; + +/** + Attempts to find the first UIViewController in the view's responder chain. Returns nil if not found. + */ ++ (nullable UIViewController *)viewControllerForView:(UIView *)view; + +/** + returns true if the url scheme is registered in the CFBundleURLTypes + */ ++ (BOOL)isRegisteredURLScheme:(NSString *)urlScheme; + +/** + returns the current key window + */ ++ (nullable UIWindow *)findWindow; + +/** + returns currently displayed top view controller. + */ ++ (nullable UIViewController *)topMostViewController; + +/** + Converts NSData to a hexadecimal UTF8 String. + */ ++ (nullable NSString *)hexadecimalStringFromData:(NSData *)data; + +/* + Checks if the permission is a publish permission. + */ ++ (BOOL)isPublishPermission:(NSString *)permission; + +#pragma mark - FB Apps Installed + +@property (class, nonatomic, assign, readonly) BOOL isFacebookAppInstalled; +@property (class, nonatomic, assign, readonly) BOOL isMessengerAppInstalled; +@property (class, nonatomic, assign, readonly) BOOL isMSQRDPlayerAppInstalled; + ++ (void)checkRegisteredCanOpenURLScheme:(NSString *)urlScheme; ++ (BOOL)isRegisteredCanOpenURLScheme:(NSString *)urlScheme; + +#define FBSDKConditionalLog(condition, loggingBehavior, desc, ...) \ +{ \ + if (!(condition)) { \ + NSString *msg = [NSString stringWithFormat:(desc), ##__VA_ARGS__]; \ + [FBSDKLogger singleShotLogEntry:loggingBehavior logEntry:msg]; \ + } \ +} + +#define FB_BASE_URL @"facebook.com" + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m new file mode 100644 index 0000000..2b2c45e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m @@ -0,0 +1,635 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKInternalUtility.h" + +#import + +#import + +#import "FBSDKCoreKit+Internal.h" +#import "FBSDKError.h" +#import "FBSDKSettings+Internal.h" +#import "FBSDKSettings.h" + +typedef NS_ENUM(NSUInteger, FBSDKInternalUtilityVersionMask) +{ + FBSDKInternalUtilityMajorVersionMask = 0xFFFF0000, + //FBSDKInternalUtilityMinorVersionMask = 0x0000FF00, // unused + //FBSDKInternalUtilityPatchVersionMask = 0x000000FF, // unused +}; + +typedef NS_ENUM(NSUInteger, FBSDKInternalUtilityVersionShift) +{ + FBSDKInternalUtilityMajorVersionShift = 16, + //FBSDKInternalUtilityMinorVersionShift = 8, // unused + //FBSDKInternalUtilityPatchVersionShift = 0, // unused +}; + +@implementation FBSDKInternalUtility + +#pragma mark - Class Methods + ++ (NSString *)appURLScheme +{ + NSString *appID = ([FBSDKSettings appID] ?: @""); + NSString *suffix = ([FBSDKSettings appURLSchemeSuffix] ?: @""); + return [[NSString alloc] initWithFormat: @"fb%@%@", appID, suffix]; +} + ++ (NSURL *)appURLWithHost:(NSString *)host + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef +{ + return [self URLWithScheme:[self appURLScheme] + host:host + path:path + queryParameters:queryParameters + error:errorRef]; +} + ++ (NSDictionary *)dictionaryFromFBURL:(NSURL *)url +{ + // version 3.2.3 of the Facebook app encodes the parameters in the query but + // version 3.3 and above encode the parameters in the fragment; + // merge them together with fragment taking priority. + NSMutableDictionary *params = [NSMutableDictionary dictionary]; + [params addEntriesFromDictionary:[FBSDKBasicUtility dictionaryWithQueryString:url.query]]; + + // Only get the params from the fragment if it has authorize as the host + if ([url.host isEqualToString:@"authorize"]) { + [params addEntriesFromDictionary:[FBSDKBasicUtility dictionaryWithQueryString:url.fragment]]; + } + return params; +} + ++ (NSBundle *)bundleForStrings +{ + static NSBundle *bundle; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + NSString *stringsBundlePath = [[NSBundle bundleForClass:[FBSDKApplicationDelegate class]] + pathForResource:@"FacebookSDKStrings" + ofType:@"bundle"]; + bundle = [NSBundle bundleWithPath:stringsBundlePath] ?: [NSBundle mainBundle]; + }); + return bundle; +} + ++ (uint64_t)currentTimeInMilliseconds +{ + struct timeval time; + gettimeofday(&time, NULL); + return ((uint64_t)time.tv_sec * 1000) + (time.tv_usec / 1000); +} + ++ (void)extractPermissionsFromResponse:(NSDictionary *)responseObject + grantedPermissions:(NSMutableSet *)grantedPermissions + declinedPermissions:(NSMutableSet *)declinedPermissions + expiredPermissions:(NSMutableSet *)expiredPermissions +{ + NSArray *resultData = responseObject[@"data"]; + if (resultData.count > 0) { + for (NSDictionary *permissionsDictionary in resultData) { + NSString *permissionName = permissionsDictionary[@"permission"]; + NSString *status = permissionsDictionary[@"status"]; + + if ([status isEqualToString:@"granted"]) { + [grantedPermissions addObject:permissionName]; + } else if ([status isEqualToString:@"declined"]) { + [declinedPermissions addObject:permissionName]; + } else if ([status isEqualToString:@"expired"]) { + [expiredPermissions addObject:permissionName]; + } + } + } +} + ++ (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef +{ + return [self facebookURLWithHostPrefix:hostPrefix + path:path + queryParameters:queryParameters + defaultVersion:@"" + error:errorRef]; +} + ++ (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + defaultVersion:(NSString *)defaultVersion + error:(NSError *__autoreleasing *)errorRef +{ + if (hostPrefix.length && ![hostPrefix hasSuffix:@"."]) { + hostPrefix = [hostPrefix stringByAppendingString:@"."]; + } + + NSString *host = + [[FBSDKAccessToken currentAccessToken].graphDomain isEqualToString:@"gaming"] + ? @"fb.gg" + : @"facebook.com"; + + NSString *domainPart = [FBSDKSettings facebookDomainPart]; + if (domainPart.length) { + host = [[NSString alloc] initWithFormat:@"%@.%@", domainPart, host]; + } + host = [NSString stringWithFormat:@"%@%@", hostPrefix ?: @"", host ?: @""]; + + NSString *version = (defaultVersion.length > 0) ? defaultVersion : [FBSDKSettings graphAPIVersion]; + if (version.length) { + version = [@"/" stringByAppendingString:version]; + } + + if (path.length) { + NSScanner *versionScanner = [[NSScanner alloc] initWithString:path]; + if ([versionScanner scanString:@"/v" intoString:NULL] && + [versionScanner scanInteger:NULL] && + [versionScanner scanString:@"." intoString:NULL] && + [versionScanner scanInteger:NULL]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:[NSString stringWithFormat:@"Invalid Graph API version:%@, assuming %@ instead", + version, + [FBSDKSettings graphAPIVersion]]]; + version = nil; + } + if (![path hasPrefix:@"/"]) { + path = [@"/" stringByAppendingString:path]; + } + } + path = [[NSString alloc] initWithFormat:@"%@%@", version ?: @"", path ?: @""]; + + return [self URLWithScheme:@"https" + host:host + path:path + queryParameters:queryParameters + error:errorRef]; +} + ++ (BOOL)isBrowserURL:(NSURL *)URL +{ + NSString *scheme = URL.scheme.lowercaseString; + return ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]); +} + ++ (BOOL)isFacebookBundleIdentifier:(NSString *)bundleIdentifier +{ + return ([bundleIdentifier hasPrefix:@"com.facebook."] || + [bundleIdentifier hasPrefix:@".com.facebook."]); +} + ++ (BOOL)isOSRunTimeVersionAtLeast:(NSOperatingSystemVersion)version +{ + return ([self _compareOperatingSystemVersion:[self operatingSystemVersion] toVersion:version] != NSOrderedAscending); +} + ++ (BOOL)isSafariBundleIdentifier:(NSString *)bundleIdentifier +{ + return ([bundleIdentifier isEqualToString:@"com.apple.mobilesafari"] || + [bundleIdentifier isEqualToString:@"com.apple.SafariViewService"]); +} + ++ (BOOL)isUIKitLinkTimeVersionAtLeast:(FBSDKUIKitVersion)version +{ + static int32_t linkTimeMajorVersion; + static dispatch_once_t getVersionOnce; + dispatch_once(&getVersionOnce, ^{ + int32_t linkTimeVersion = NSVersionOfLinkTimeLibrary("UIKit"); + linkTimeMajorVersion = [self getMajorVersionFromFullLibraryVersion:linkTimeVersion]; + }); + return (version <= linkTimeMajorVersion); +} + ++ (BOOL)isUIKitRunTimeVersionAtLeast:(FBSDKUIKitVersion)version +{ + static int32_t runTimeMajorVersion; + static dispatch_once_t getVersionOnce; + dispatch_once(&getVersionOnce, ^{ + int32_t runTimeVersion = NSVersionOfRunTimeLibrary("UIKit"); + runTimeMajorVersion = [self getMajorVersionFromFullLibraryVersion:runTimeVersion]; + }); + return (version <= runTimeMajorVersion); +} + ++ (int32_t)getMajorVersionFromFullLibraryVersion:(int32_t)version +{ + // Negative values returned by NSVersionOfRunTimeLibrary/NSVersionOfLinkTimeLibrary + // are still valid version numbers, as long as it's not -1. + // After bitshift by 16, the negatives become valid positive major version number. + // We ran into this first time with iOS 12. + if (version != -1) { + return ((version & FBSDKInternalUtilityMajorVersionMask) >> FBSDKInternalUtilityMajorVersionShift); + } else { + return 0; + } +} + ++ (BOOL)object:(id)object isEqualToObject:(id)other +{ + if (object == other) { + return YES; + } + if (!object || !other) { + return NO; + } + return [object isEqual:other]; +} + ++ (NSOperatingSystemVersion)operatingSystemVersion +{ + static NSOperatingSystemVersion operatingSystemVersion = { + .majorVersion = 0, + .minorVersion = 0, + .patchVersion = 0, + }; + static dispatch_once_t getVersionOnce; + dispatch_once(&getVersionOnce, ^{ + if ([NSProcessInfo instancesRespondToSelector:@selector(operatingSystemVersion)]) { + operatingSystemVersion = [NSProcessInfo processInfo].operatingSystemVersion; + } else { + NSArray *components = [[UIDevice currentDevice].systemVersion componentsSeparatedByString:@"."]; + switch (components.count) { + default: + case 3: + operatingSystemVersion.patchVersion = [components[2] integerValue]; + // fall through + case 2: + operatingSystemVersion.minorVersion = [components[1] integerValue]; + // fall through + case 1: + operatingSystemVersion.majorVersion = [components[0] integerValue]; + break; + case 0: + operatingSystemVersion.majorVersion = ([self isUIKitLinkTimeVersionAtLeast:FBSDKUIKitVersion_7_0] ? 7 : 6); + break; + } + } + }); + return operatingSystemVersion; +} + ++ (BOOL)shouldManuallyAdjustOrientation +{ + return (![self isUIKitLinkTimeVersionAtLeast:FBSDKUIKitVersion_8_0] || + ![self isUIKitRunTimeVersionAtLeast:FBSDKUIKitVersion_8_0]); +} + ++ (NSURL *)URLWithScheme:(NSString *)scheme + host:(NSString *)host + path:(NSString *)path + queryParameters:(NSDictionary *)queryParameters + error:(NSError *__autoreleasing *)errorRef +{ + if (![path hasPrefix:@"/"]) { + path = [@"/" stringByAppendingString:path ?: @""]; + } + + NSString *queryString = nil; + if (queryParameters.count) { + NSError *queryStringError; + queryString = [@"?" stringByAppendingString:[FBSDKBasicUtility queryStringWithDictionary:queryParameters + error:&queryStringError + invalidObjectHandler:NULL]]; + if (!queryString) { + if (errorRef != NULL) { + *errorRef = [FBSDKError invalidArgumentErrorWithName:@"queryParameters" + value:queryParameters + message:nil + underlyingError:queryStringError]; + } + return nil; + } + } + + NSURL *const URL = [NSURL URLWithString:[NSString stringWithFormat: + @"%@://%@%@%@", + scheme ?: @"", + host ?: @"", + path ?: @"", + queryString ?: @""]]; + if (errorRef != NULL) { + if (URL) { + *errorRef = nil; + } else { + *errorRef = [FBSDKError unknownErrorWithMessage:@"Unknown error building URL."]; + } + } + return URL; +} + ++ (void)deleteFacebookCookies +{ + NSHTTPCookieStorage *cookies = [NSHTTPCookieStorage sharedHTTPCookieStorage]; + NSArray *facebookCookies = [cookies cookiesForURL:[self facebookURLWithHostPrefix:@"m." + path:@"/dialog/" + queryParameters:@{} + error:NULL]]; + + for (NSHTTPCookie *cookie in facebookCookies) { + [cookies deleteCookie:cookie]; + } +} + +static NSMapTable *_transientObjects; + ++ (void)registerTransientObject:(id)object +{ + NSAssert([NSThread isMainThread], @"Must be called from the main thread!"); + if (!_transientObjects) { + _transientObjects = [[NSMapTable alloc] init]; + } + NSUInteger count = ((NSNumber *)[_transientObjects objectForKey:object]).unsignedIntegerValue; + [_transientObjects setObject:@(count + 1) forKey:object]; +} + ++ (void)unregisterTransientObject:(__weak id)object +{ + if (!object) { + return; + } + NSAssert([NSThread isMainThread], @"Must be called from the main thread!"); + NSUInteger count = ((NSNumber *)[_transientObjects objectForKey:object]).unsignedIntegerValue; + if (count == 1) { + [_transientObjects removeObjectForKey:object]; + } else if (count != 0) { + [_transientObjects setObject:@(count - 1) forKey:object]; + } else { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"unregisterTransientObject:%@ count is 0. This may indicate a bug in the FBSDK. Please" + " file a report to developers.facebook.com/bugs if you encounter any problems. Thanks!", [object class]]; + } +} + ++ (UIViewController *)viewControllerForView:(UIView *)view +{ + UIResponder *responder = view.nextResponder; + while (responder) { + if ([responder isKindOfClass:[UIViewController class]]) { + return (UIViewController *)responder; + } + responder = responder.nextResponder; + } + return nil; +} + +#pragma mark - FB Apps Installed + ++ (BOOL)isFacebookAppInstalled +{ + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + [FBSDKInternalUtility checkRegisteredCanOpenURLScheme:FBSDK_CANOPENURL_FACEBOOK]; + }); + return [self _canOpenURLScheme:FBSDK_CANOPENURL_FACEBOOK]; +} + ++ (BOOL)isMessengerAppInstalled +{ + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + [FBSDKInternalUtility checkRegisteredCanOpenURLScheme:FBSDK_CANOPENURL_MESSENGER]; + }); + return [self _canOpenURLScheme:FBSDK_CANOPENURL_MESSENGER]; +} + ++ (BOOL)isMSQRDPlayerAppInstalled +{ + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + [FBSDKInternalUtility checkRegisteredCanOpenURLScheme:FBSDK_CANOPENURL_MSQRD_PLAYER]; + }); + return [self _canOpenURLScheme:FBSDK_CANOPENURL_MSQRD_PLAYER]; +} + +#pragma mark - Helper Methods + ++ (NSComparisonResult)_compareOperatingSystemVersion:(NSOperatingSystemVersion)version1 + toVersion:(NSOperatingSystemVersion)version2 +{ + if (version1.majorVersion < version2.majorVersion) { + return NSOrderedAscending; + } else if (version1.majorVersion > version2.majorVersion) { + return NSOrderedDescending; + } else if (version1.minorVersion < version2.minorVersion) { + return NSOrderedAscending; + } else if (version1.minorVersion > version2.minorVersion) { + return NSOrderedDescending; + } else if (version1.patchVersion < version2.patchVersion) { + return NSOrderedAscending; + } else if (version1.patchVersion > version2.patchVersion) { + return NSOrderedDescending; + } else { + return NSOrderedSame; + } +} + ++ (BOOL)_canOpenURLScheme:(NSString *)scheme +{ + NSURLComponents *components = [[NSURLComponents alloc] init]; + components.scheme = scheme; + components.path = @"/"; + return [[UIApplication sharedApplication] canOpenURL:components.URL]; +} + ++ (void)validateAppID +{ + if (![FBSDKSettings appID]) { + NSString *reason = @"App ID not found. Add a string value with your app ID for the key " + @"FacebookAppID to the Info.plist or call [FBSDKSettings setAppID:]."; + @throw [NSException exceptionWithName:@"InvalidOperationException" reason:reason userInfo:nil]; + } +} + ++ (NSString *)validateRequiredClientAccessToken { + if (![FBSDKSettings clientToken]) { + NSString *reason = @"ClientToken is required to be set for this operation. " + @"Set the FacebookClientToken in the Info.plist or call [FBSDKSettings setClientToken:]. " + @"You can find your client token in your App Settings -> Advanced."; + @throw [NSException exceptionWithName:@"InvalidOperationException" reason:reason userInfo:nil]; + } + return [NSString stringWithFormat:@"%@|%@", [FBSDKSettings appID], [FBSDKSettings clientToken]]; +} + ++ (void)validateURLSchemes +{ + [self validateAppID]; + NSString *defaultUrlScheme = [NSString stringWithFormat:@"fb%@%@", [FBSDKSettings appID], [FBSDKSettings appURLSchemeSuffix] ?: @""]; + if (![self isRegisteredURLScheme:defaultUrlScheme]) { + NSString *reason = [NSString stringWithFormat:@"%@ is not registered as a URL scheme. Please add it in your Info.plist", defaultUrlScheme]; + @throw [NSException exceptionWithName:@"InvalidOperationException" reason:reason userInfo:nil]; + } +} + ++ (void)validateFacebookReservedURLSchemes +{ + for (NSString * fbUrlScheme in @[FBSDK_CANOPENURL_FACEBOOK, FBSDK_CANOPENURL_MESSENGER, FBSDK_CANOPENURL_FBAPI, FBSDK_CANOPENURL_SHARE_EXTENSION]) { + if ([self isRegisteredURLScheme:fbUrlScheme]) { + NSString *reason = [NSString stringWithFormat:@"%@ is registered as a URL scheme. Please move the entry from CFBundleURLSchemes in your Info.plist to LSApplicationQueriesSchemes. If you are trying to resolve \"canOpenURL: failed\" warnings, those only indicate that the Facebook app is not installed on your device or simulator and can be ignored.", fbUrlScheme]; + @throw [NSException exceptionWithName:@"InvalidOperationException" reason:reason userInfo:nil]; + } + } +} + ++ (UIWindow *)findWindow +{ + UIWindow *window = [UIApplication sharedApplication].keyWindow; + if (window == nil || window.windowLevel != UIWindowLevelNormal) { + for (window in [UIApplication sharedApplication].windows) { + if (window.windowLevel == UIWindowLevelNormal) { + break; + } + } + } + + // Find active key window from UIScene + if (@available(iOS 13.0, tvOS 13, *)) { + NSSet *scenes = [[UIApplication sharedApplication] valueForKey:@"connectedScenes"]; + for (id scene in scenes) { + if (window) { + break; + } + + id activationState = [scene valueForKeyPath:@"activationState"]; + BOOL isActive = activationState != nil && [activationState integerValue] == 0; + if (isActive) { + Class WindowScene = NSClassFromString(@"UIWindowScene"); + if ([scene isKindOfClass:WindowScene]) { + NSArray *windows = [scene valueForKeyPath:@"windows"]; + for (UIWindow *w in windows) { + if (w.isKeyWindow) { + window = w; + break; + } + } + } + } + } + } + + if (window == nil) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"Unable to find a valid UIWindow", nil]; + } + return window; +} + ++ (UIViewController *)topMostViewController +{ + UIWindow *keyWindow = [self findWindow]; + // SDK expects a key window at this point, if it is not, make it one + if (keyWindow != nil && !keyWindow.isKeyWindow) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"Unable to obtain a key window, marking %@ as keyWindow", keyWindow.description]; + [keyWindow makeKeyWindow]; + } + + UIViewController *topController = keyWindow.rootViewController; + while (topController.presentedViewController) { + topController = topController.presentedViewController; + } + return topController; +} + ++ (NSString *)hexadecimalStringFromData:(NSData *)data +{ + NSUInteger dataLength = data.length; + if (dataLength == 0) { + return nil; + } + + const unsigned char *dataBuffer = data.bytes; + NSMutableString *hexString = [NSMutableString stringWithCapacity:(dataLength * 2)]; + for (int i = 0; i < dataLength; ++i) { + [hexString appendFormat:@"%02x", dataBuffer[i]]; + } + return [hexString copy]; +} + ++ (BOOL)isRegisteredURLScheme:(NSString *)urlScheme { + static dispatch_once_t fetchBundleOnce; + static NSArray *urlTypes = nil; + + dispatch_once(&fetchBundleOnce, ^{ + urlTypes = [[NSBundle mainBundle].infoDictionary valueForKey:@"CFBundleURLTypes"]; + }); + for (NSDictionary *urlType in urlTypes) { + NSArray *urlSchemes = [urlType valueForKey:@"CFBundleURLSchemes"]; + if ([urlSchemes containsObject:urlScheme]) { + return YES; + } + } + return NO; +} + ++ (void)checkRegisteredCanOpenURLScheme:(NSString *)urlScheme +{ + static dispatch_once_t initCheckedSchemesOnce; + static NSMutableSet *checkedSchemes = nil; + + dispatch_once(&initCheckedSchemesOnce, ^{ + checkedSchemes = [NSMutableSet set]; + }); + + @synchronized(self) { + if ([checkedSchemes containsObject:urlScheme]) { + return; + } else { + [checkedSchemes addObject:urlScheme]; + } + } + + if (![self isRegisteredCanOpenURLScheme:urlScheme]){ + NSString *reason = [NSString stringWithFormat:@"%@ is missing from your Info.plist under LSApplicationQueriesSchemes and is required for iOS 9.0", urlScheme]; + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry:reason]; + } +} + ++ (BOOL)isRegisteredCanOpenURLScheme:(NSString *)urlScheme +{ + static dispatch_once_t fetchBundleOnce; + static NSArray *schemes = nil; + + dispatch_once(&fetchBundleOnce, ^{ + schemes = [[NSBundle mainBundle].infoDictionary valueForKey:@"LSApplicationQueriesSchemes"]; + }); + + return [schemes containsObject:urlScheme]; +} + ++ (BOOL)isPublishPermission:(NSString *)permission +{ + return [permission hasPrefix:@"publish"] || + [permission hasPrefix:@"manage"] || + [permission isEqualToString:@"ads_management"] || + [permission isEqualToString:@"create_event"] || + [permission isEqualToString:@"rsvp_event"]; +} + ++ (BOOL)isUnity +{ + NSString *userAgentSuffix = [FBSDKSettings userAgentSuffix]; + if (userAgentSuffix != nil && [userAgentSuffix rangeOfString:@"Unity"].location != NSNotFound) { + return YES; + } + return NO; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h new file mode 100644 index 0000000..04f5fc8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h @@ -0,0 +1,91 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + + Simple logging utility for conditionally logging strings and then emitting them + via NSLog(). + + @unsorted + */ +NS_SWIFT_NAME(Logger) +@interface FBSDKLogger : NSObject + +// Access current accumulated contents of the logger. +@property (copy, nonatomic) NSString *contents; + +// Each FBSDKLogger gets a unique serial number to allow the client to log these numbers and, for instance, correlation of Request/Response +@property (nonatomic, readonly) NSUInteger loggerSerialNumber; + +// The logging behavior of this logger. See the FB_LOG_BEHAVIOR* constants in FBSession.h +@property (copy, nonatomic, readonly) NSString *loggingBehavior; + +// Is the current logger instance active, based on its loggingBehavior? +@property (nonatomic, readonly, getter=isActive) BOOL active; + +// +// Instance methods +// + +// Create with specified logging behavior +- (instancetype)initWithLoggingBehavior:(NSString *)loggingBehavior; + +// Append string, or key/value pair +- (void)appendString:(NSString *)string; +- (void)appendFormat:(NSString *)formatString, ... NS_FORMAT_FUNCTION(1,2); +- (void)appendKey:(NSString *)key value:(NSString *)value; + +// Emit log, clearing out the logger contents. +- (void)emitToNSLog; + +// +// Class methods +// + +// +// Return a globally unique serial number to be used for correlating multiple output from the same logger. +// ++ (NSUInteger)generateSerialNumber; + +// Simple helper to write a single log entry, based upon whether the behavior matches a specified on. ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + logEntry:(NSString *)logEntry; + ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + formatString:(NSString *)formatString, ... NS_FORMAT_FUNCTION(2,3); + ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + timestampTag:(NSObject *)timestampTag + formatString:(NSString *)formatString, ... NS_FORMAT_FUNCTION(3,4); + +// Register a timestamp label with the "current" time, to then be retrieved by singleShotLogEntry +// to include a duration. ++ (void)registerCurrentTime:(NSString *)loggingBehavior + withTag:(NSObject *)timestampTag; + +// When logging strings, replace all instances of 'replace' with instances of 'replaceWith'. ++ (void)registerStringToReplace:(NSString *)replace + replaceWith:(NSString *)replaceWith; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m new file mode 100644 index 0000000..d5169b1 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m @@ -0,0 +1,218 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKLogger.h" + +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings+Internal.h" + +static NSUInteger g_serialNumberCounter = 1111; +static NSMutableDictionary *g_stringsToReplace = nil; +static NSMutableDictionary *g_startTimesWithTags = nil; + +@interface FBSDKLogger () + +@property (nonatomic, strong, readonly) NSMutableString *internalContents; + +@end + +@implementation FBSDKLogger + +// Lifetime + +- (instancetype)initWithLoggingBehavior:(NSString *)loggingBehavior +{ + if ((self = [super init])) { + _active = [FBSDKSettings.loggingBehaviors containsObject:loggingBehavior]; + _loggingBehavior = loggingBehavior; + if (_active) { + _internalContents = [[NSMutableString alloc] init]; + _loggerSerialNumber = [FBSDKLogger generateSerialNumber]; + } + } + + return self; +} + +// Public properties + +- (NSString *)contents +{ + return _internalContents; +} + +- (void)setContents:(NSString *)contents +{ + if (_active) { + _internalContents = [NSMutableString stringWithString:contents]; + } +} + +// Public instance methods + +- (void)appendString:(NSString *)string +{ + if (_active) { + [_internalContents appendString:string]; + } +} + +- (void)appendFormat:(NSString *)formatString, ... +{ + if (_active) { + va_list vaArguments; + va_start(vaArguments, formatString); + NSString *logString = [[NSString alloc] initWithFormat:formatString arguments:vaArguments]; + va_end(vaArguments); + + [self appendString:logString]; + } +} + + +- (void)appendKey:(NSString *)key value:(NSString *)value +{ + if (_active && value.length) { + [_internalContents appendFormat:@" %@:\t%@\n", key, value]; + } +} + +- (void)emitToNSLog +{ + if (_active) { + + for (NSString *key in [g_stringsToReplace keyEnumerator]) { + [_internalContents replaceOccurrencesOfString:key + withString:g_stringsToReplace[key] + options:NSLiteralSearch + range:NSMakeRange(0, _internalContents.length)]; + } + + // Xcode 4.4 hangs on extremely long NSLog output (http://openradar.appspot.com/11972490). Truncate if needed. + const int MAX_LOG_STRING_LENGTH = 10000; + NSString *logString = _internalContents; + if (_internalContents.length > MAX_LOG_STRING_LENGTH) { + logString = [NSString stringWithFormat:@"TRUNCATED: %@", [_internalContents substringToIndex:MAX_LOG_STRING_LENGTH]]; + } + NSLog(@"FBSDKLog: %@", logString); + + [_internalContents setString:@""]; + } +} + +// Public static methods + ++ (NSUInteger)generateSerialNumber +{ + return g_serialNumberCounter++; +} + ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + logEntry:(NSString *)logEntry { + if ([FBSDKSettings.loggingBehaviors containsObject:loggingBehavior]) { + FBSDKLogger *logger = [[FBSDKLogger alloc] initWithLoggingBehavior:loggingBehavior]; + [logger appendString:logEntry]; + [logger emitToNSLog]; + } +} + ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + formatString:(NSString *)formatString, ... { + + if ([FBSDKSettings.loggingBehaviors containsObject:loggingBehavior]) { + va_list vaArguments; + va_start(vaArguments, formatString); + NSString *logString = [[NSString alloc] initWithFormat:formatString arguments:vaArguments]; + va_end(vaArguments); + + [self singleShotLogEntry:loggingBehavior logEntry:logString]; + } +} + + ++ (void)singleShotLogEntry:(NSString *)loggingBehavior + timestampTag:(NSObject *)timestampTag + formatString:(NSString *)formatString, ... { + + if ([FBSDKSettings.loggingBehaviors containsObject:loggingBehavior]) { + va_list vaArguments; + va_start(vaArguments, formatString); + NSString *logString = [[NSString alloc] initWithFormat:formatString arguments:vaArguments]; + va_end(vaArguments); + + // Start time of this "timestampTag" is stashed in the dictionary. + // Treat the incoming object tag simply as an address, since it's only used to identify during lifetime. If + // we send in as an object, the dictionary will try to copy it. + NSNumber *tagAsNumber = @((unsigned long)(__bridge void *)timestampTag); + NSNumber *startTimeNumber = g_startTimesWithTags[tagAsNumber]; + + // Only log if there's been an associated start time. + if (startTimeNumber != nil) { + uint64_t elapsed = [FBSDKInternalUtility currentTimeInMilliseconds] - startTimeNumber.unsignedLongLongValue; + [g_startTimesWithTags removeObjectForKey:tagAsNumber]; // served its purpose, remove + + // Log string is appended with "%d msec", with nothing intervening. This gives the most control to the caller. + logString = [NSString stringWithFormat:@"%@%llu msec", logString, elapsed]; + + [self singleShotLogEntry:loggingBehavior logEntry:logString]; + } + } +} + ++ (void)registerCurrentTime:(NSString *)loggingBehavior + withTag:(NSObject *)timestampTag { + + if ([FBSDKSettings.loggingBehaviors containsObject:loggingBehavior]) { + + if (!g_startTimesWithTags) { + g_startTimesWithTags = [[NSMutableDictionary alloc] init]; + } + + if (g_startTimesWithTags.count >= 1000) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors logEntry: + @"Unexpectedly large number of outstanding perf logging start times, something is likely wrong."]; + } + + uint64_t currTime = [FBSDKInternalUtility currentTimeInMilliseconds]; + + // Treat the incoming object tag simply as an address, since it's only used to identify during lifetime. If + // we send in as an object, the dictionary will try to copy it. + unsigned long tagAsNumber = (unsigned long)(__bridge void *)timestampTag; + g_startTimesWithTags[@(tagAsNumber)] = @(currTime); + } +} + + ++ (void)registerStringToReplace:(NSString *)replace + replaceWith:(NSString *)replaceWith { + + // Strings sent in here never get cleaned up, but that's OK, don't ever expect too many. + + if (FBSDKSettings.loggingBehaviors.count > 0) { // otherwise there's no logging. + + if (!g_stringsToReplace) { + g_stringsToReplace = [[NSMutableDictionary alloc] init]; + } + + [g_stringsToReplace setValue:replaceWith forKey:replace]; + } +} + + + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h new file mode 100644 index 0000000..e4eb673 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +NS_SWIFT_NAME(Math) +@interface FBSDKMath : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (CGPoint)ceilForPoint:(CGPoint)value; ++ (CGSize)ceilForSize:(CGSize)value; ++ (CGPoint)floorForPoint:(CGPoint)value; ++ (CGSize)floorForSize:(CGSize)value; ++ (NSUInteger)hashWithCGFloat:(CGFloat)value; ++ (NSUInteger)hashWithCString:(const char *)value; ++ (NSUInteger)hashWithDouble:(double)value; ++ (NSUInteger)hashWithFloat:(float)value; ++ (NSUInteger)hashWithInteger:(NSUInteger)value; ++ (NSUInteger)hashWithInteger:(NSUInteger)value1 andInteger:(NSUInteger)value2; ++ (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count; ++ (NSUInteger)hashWithLong:(unsigned long long)value; ++ (NSUInteger)hashWithPointer:(const void *)value; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m new file mode 100644 index 0000000..302e80b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m @@ -0,0 +1,149 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +// +// Based on Thomas Wang 32/64 bit mix hash +// http://www.concentric.net/~Ttwang/tech/inthash.htm +// + +#import "FBSDKMath.h" + +#import + +@implementation FBSDKMath + +#pragma mark - Class Methods + ++ (CGPoint)ceilForPoint:(CGPoint)value +{ + return CGPointMake(ceilf(value.x), ceilf(value.x)); +} + ++ (CGSize)ceilForSize:(CGSize)value +{ + return CGSizeMake(ceilf(value.width), ceilf(value.height)); +} + ++ (CGPoint)floorForPoint:(CGPoint)value +{ + return CGPointMake(floorf(value.x), floorf(value.y)); +} + ++ (CGSize)floorForSize:(CGSize)value +{ + return CGSizeMake(floorf(value.width), floorf(value.height)); +} + ++ (NSUInteger)hashWithCGFloat:(CGFloat)value +{ +#if CGFLOAT_IS_DOUBLE + return [self hashWithDouble:value]; +#else + return [self hashWithFloat:value]; +#endif +} + ++ (NSUInteger)hashWithCString:(const char *)value +{ + // FNV-1a hash. + NSUInteger hash = sizeof(NSUInteger) == 4 ? 2166136261U : 14695981039346656037U; + while (*value) { + hash ^= *value++; + hash *= sizeof(NSUInteger) == 4 ? 16777619 : 1099511628211; + } + return hash; +} + ++ (NSUInteger)hashWithDouble:(double)value +{ + assert(sizeof(double) == sizeof(uint64_t)); // Size of double must be 8 bytes + union { + double key; + uint64_t bits; + } u; + u.key = value; + return [self hashWithLong:u.bits]; +} + ++ (NSUInteger)hashWithFloat:(float)value +{ + assert(sizeof(float) == sizeof(uint32_t)); // Size of float must be 4 bytes + union { + float key; + uint32_t bits; + } u; + u.key = value; + return [self hashWithInteger:u.bits]; +} + ++ (NSUInteger)hashWithInteger:(NSUInteger)value +{ + return [self hashWithPointer:(void *)value]; +} + ++ (NSUInteger)hashWithInteger:(NSUInteger)value1 andInteger:(NSUInteger)value2 +{ + return [self hashWithLong:(((unsigned long long)value1) << 32 | value2)]; +} + ++ (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count +{ + if (count == 0) { + return 0; + } + NSUInteger hash = values[0]; + for (NSUInteger i = 1; i < count; ++i) { + hash = [self hashWithInteger:hash andInteger:values[i]]; + } + return hash; +} + ++ (NSUInteger)hashWithLong:(unsigned long long)value +{ + value = (~value) + (value << 18); // key = (key << 18) - key - 1; + value ^= (value >> 31); + value *= 21; // key = (key + (key << 2)) + (key << 4); + value ^= (value >> 11); + value += (value << 6); + value ^= (value >> 22); + return (NSUInteger)value; +} + ++ (NSUInteger)hashWithPointer:(const void *)value +{ + NSUInteger hash = (NSUInteger)value; +#if !TARGET_RT_64_BIT + hash = ~hash + (hash << 15); // key = (key << 15) - key - 1; + hash ^= (hash >> 12); + hash += (hash << 2); + hash ^= (hash >> 4); + hash *= 2057; // key = (key + (key << 3)) + (key << 11); + hash ^= (hash >> 16); +#else + hash += ~hash + (hash << 21); // key = (key << 21) - key - 1; + hash ^= (hash >> 24); + hash = (hash + (hash << 3)) + (hash << 8); + hash ^= (hash >> 14); + hash = (hash + (hash << 2)) + (hash << 4); // key * 21 + hash ^= (hash >> 28); + hash += (hash << 31); +#endif + return hash; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMeasurementEvent_Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMeasurementEvent_Internal.h new file mode 100644 index 0000000..f90322a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMeasurementEvent_Internal.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMeasurementEvent.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + Provides methods for posting notifications from App Links + */ +@interface FBSDKMeasurementEvent (Internal) + ++ (void)postNotificationForEventName:(NSString *)name + args:(NSDictionary *)args; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h new file mode 100644 index 0000000..6717c91 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h @@ -0,0 +1,73 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#include + +typedef double FBSDKMonotonicTimeSeconds; +typedef uint64_t FBSDKMonotonicTimeMilliseconds; +typedef uint64_t FBSDKMonotonicTimeNanoseconds; +typedef uint64_t FBSDKMachAbsoluteTimeUnits; + +/** + * return current monotonic time in Milliseconds + * Millisecond precision, uint64_t value. + * Avoids float/double math operations, thus more efficient than FBSDKMonotonicTimeGetCurrentSeconds. + * Should be preferred over FBSDKMonotonicTimeGetCurrentSeconds in case millisecond + * precision is required. + * IMPORTANT: this timer doesn't run while the device is sleeping. + */ +FBSDKMonotonicTimeMilliseconds FBSDKMonotonicTimeGetCurrentMilliseconds(void); + +/** + * return current monotonic time in Seconds + * Nanosecond precision, double value. + * Should be preferred over FBSDKMonotonicTimeGetCurrentMilliseconds in case + * nanosecond precision is required. + * IMPORTANT: this timer doesn't run while the device is sleeping. + */ +FBSDKMonotonicTimeSeconds FBSDKMonotonicTimeGetCurrentSeconds(void); + +/** + * return current monotonic time in NanoSeconds + * Nanosecond precision, uint64_t value. + * Useful when nanosecond precision is required but you want to avoid float/double math operations. + * IMPORTANT: this timer doesn't run while the device is sleeping. + */ +FBSDKMonotonicTimeNanoseconds FBSDKMonotonicTimeGetCurrentNanoseconds(void); + +/** + * return number of MachTimeUnits for given number of seconds + * this is useful when you want to use the really fast mach_absolute_time() function + * to calculate deltas between two points and then check it against a (precomputed) threshold. + * Nanosecond precision, uint64_t value. + */ +FBSDKMachAbsoluteTimeUnits FBSDKMonotonicTimeConvertSecondsToMachUnits(FBSDKMonotonicTimeSeconds seconds); + +/** + * return the number of seconds for a given amount of MachTimeUnits + * this is useful when you want to use the really fast mach_absolute_time() function, take + * deltas between time points, and when you're out of the timing critical section, use + * this function to compute how many seconds the delta works out to be. + */ +FBSDKMonotonicTimeSeconds FBSDKMonotonicTimeConvertMachUnitsToSeconds(FBSDKMachAbsoluteTimeUnits machUnits); + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m new file mode 100644 index 0000000..362834c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m @@ -0,0 +1,93 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMonotonicTime.h" + +#include +#include +#include + +#include + +/** + * PLEASE NOTE: FBSDKSDKMonotonicTimeTests work fine, but are disabled + * because they take several seconds. Please re-enable them to test + * any changes you're making here! + */ +static uint64_t _get_time_nanoseconds(void) +{ + static struct mach_timebase_info tb_info = {0}; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + int ret = mach_timebase_info(&tb_info); + assert(0 == ret); + }); + + return (mach_absolute_time() * tb_info.numer) / tb_info.denom; +} + +FBSDKMonotonicTimeSeconds FBSDKMonotonicTimeGetCurrentSeconds(void) +{ + const uint64_t nowNanoSeconds = _get_time_nanoseconds(); + return (FBSDKMonotonicTimeSeconds)nowNanoSeconds / (FBSDKMonotonicTimeSeconds)1000000000.0; +} + +FBSDKMonotonicTimeMilliseconds FBSDKMonotonicTimeGetCurrentMilliseconds(void) +{ + const uint64_t nowNanoSeconds = _get_time_nanoseconds(); + return nowNanoSeconds / 1000000; +} + +FBSDKMonotonicTimeNanoseconds FBSDKMonotonicTimeGetCurrentNanoseconds(void) +{ + return _get_time_nanoseconds(); +} + +FBSDKMachAbsoluteTimeUnits FBSDKMonotonicTimeConvertSecondsToMachUnits(FBSDKMonotonicTimeSeconds seconds) +{ + static double ratio = 0; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + struct mach_timebase_info tb_info = {0}; + int ret = mach_timebase_info(&tb_info); + assert(0 == ret); + ratio = ((double) tb_info.denom / (double)tb_info.numer) * 1000000000.0; + }); + + return seconds * ratio; +} + +FBSDKMonotonicTimeSeconds FBSDKMonotonicTimeConvertMachUnitsToSeconds(FBSDKMachAbsoluteTimeUnits machUnits) +{ + static double ratio = 0; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + struct mach_timebase_info tb_info = {0}; + int ret = mach_timebase_info(&tb_info); + assert(0 == ret); + ratio = ((double) tb_info.numer / (double)tb_info.denom) / 1000000000.0; + }); + + return ratio * (double)machUnits; +} + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h new file mode 100644 index 0000000..12b07a9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h @@ -0,0 +1,36 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKProfile.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKProfile(Internal) + ++ (void)cacheProfile:(nullable FBSDKProfile *)profile; ++ (nullable FBSDKProfile *)fetchCachedProfile; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h new file mode 100644 index 0000000..9e28c27 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h @@ -0,0 +1,38 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#if SWIFT_PACKAGE +#import "FBSDKSettings.h" +#else +#import +#endif + +@protocol FBSDKAccessTokenCaching; + +@interface FBSDKSettings(Internal) + ++ (NSObject *)accessTokenCache; + ++ (void)setAccessTokenCache:(NSObject *)accessTokenCache; + +@property (class, nonatomic, copy, readonly) NSString *graphAPIDebugParamValue; + +// used by Unity. +@property (class, nonatomic, copy) NSString *userAgentSuffix; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.h new file mode 100644 index 0000000..9e7b57d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.h @@ -0,0 +1,39 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +// Cast to turn things that are not ids into NSMapTable keys +#define MAPTABLE_ID(x) (__bridge id)((void *)x) + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wstrict-prototypes" + +typedef void (^swizzleBlock)(); + +#pragma clang diagnostic pop + +// Rename to avoid duplicate symbol errors +NS_SWIFT_NAME(Swizzler) +@interface FBSDKSwizzler : NSObject + ++ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(swizzleBlock)block named:(NSString *)aName; ++ (void)unswizzleSelector:(SEL)aSelector onClass:(Class)aClass named:(NSString *)aName; ++ (void)printSwizzles; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.m new file mode 100644 index 0000000..45686c9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.m @@ -0,0 +1,324 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKSwizzler.h" + +#import + +#define MIN_ARGS 2 +#define MAX_ARGS 5 + +@interface FBSDKSwizzle : NSObject + +@property (nonatomic, assign) Class class; +@property (nonatomic, assign) SEL selector; +@property (nonatomic, assign) IMP originalMethod; +@property (nonatomic, assign) uint numArgs; +@property (nonatomic, copy) NSMapTable *blocks; + +- (instancetype)initWithBlock:(swizzleBlock)aBlock + named:(NSString *)aName + forClass:(Class)aClass + selector:(SEL)aSelector + originalMethod:(IMP)aMethod + withNumArgs:(uint)numArgs; + +@end + +static NSMapTable *swizzles; + +static FBSDKSwizzle* fb_findSwizzle(id self, SEL _cmd){ + Method aMethod = class_getInstanceMethod([self class], _cmd); + FBSDKSwizzle *swizzle = (FBSDKSwizzle *)[swizzles objectForKey:MAPTABLE_ID(aMethod)]; + Class this_class = [self class]; + while (!swizzle && class_getSuperclass(this_class)){ + this_class = class_getSuperclass(this_class); + aMethod = class_getInstanceMethod(this_class, _cmd); + swizzle = (FBSDKSwizzle *)[swizzles objectForKey:MAPTABLE_ID(aMethod)]; + } + return swizzle; +} + +static void fb_swizzledMethod_2(id self, SEL _cmd) +{ + FBSDKSwizzle *swizzle = fb_findSwizzle(self, _cmd); + if (swizzle) { + ((void(*)(id, SEL))swizzle.originalMethod)(self, _cmd); + + NSEnumerator *blocks = [swizzle.blocks objectEnumerator]; + swizzleBlock block; + while ((block = [blocks nextObject])) { + block(self, _cmd); + } + } +} + +static void fb_swizzledMethod_3(id self, SEL _cmd, id arg) +{ + FBSDKSwizzle *swizzle = fb_findSwizzle(self, _cmd); + if (swizzle) { + ((void(*)(id, SEL, id))swizzle.originalMethod)(self, _cmd, arg); + + NSEnumerator *blocks = [swizzle.blocks objectEnumerator]; + swizzleBlock block; + while ((block = [blocks nextObject])) { + block(self, _cmd, arg); + } + } +} + +static void fb_swizzledMethod_4(id self, SEL _cmd, id arg, id arg2) +{ + FBSDKSwizzle *swizzle = fb_findSwizzle(self, _cmd); + if (swizzle) { + ((void(*)(id, SEL, id, id))swizzle.originalMethod)(self, _cmd, arg, arg2); + + NSEnumerator *blocks = [swizzle.blocks objectEnumerator]; + swizzleBlock block; + while ((block = [blocks nextObject])) { + block(self, _cmd, arg, arg2); + } + } +} + +static void fb_swizzledMethod_5(id self, SEL _cmd, id arg, id arg2, id arg3) +{ + FBSDKSwizzle *swizzle = fb_findSwizzle(self, _cmd); + if (swizzle) { + ((void(*)(id, SEL, id, id, id))swizzle.originalMethod)(self, _cmd, arg, arg2, arg3); + + NSEnumerator *blocks = [swizzle.blocks objectEnumerator]; + swizzleBlock block; + while ((block = [blocks nextObject])) { + block(self, _cmd, arg, arg2, arg3); + } + } +} + +static void fb_swizzleMethod_4_io(id self, SEL _cmd, NSInteger arg, id arg2) +{ + FBSDKSwizzle *swizzle = fb_findSwizzle(self, _cmd); + if (swizzle) { + ((void(*)(id, SEL, NSInteger, id))swizzle.originalMethod)(self, _cmd, arg, arg2); + + NSEnumerator *blocks = [swizzle.blocks objectEnumerator]; + swizzleBlock block; + while ((block = [blocks nextObject])) { + block(self, _cmd, arg, arg2); + } + } +} + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wstrict-prototypes" + +static void (*fb_swizzledMethods[MAX_ARGS - MIN_ARGS + 1])() = {fb_swizzledMethod_2, fb_swizzledMethod_3, fb_swizzledMethod_4, fb_swizzledMethod_5}; + +#pragma clang diagnostic pop + +@implementation FBSDKSwizzler + ++ (void)initialize +{ + swizzles = [NSMapTable mapTableWithKeyOptions:(NSPointerFunctionsOpaqueMemory | + NSPointerFunctionsOpaquePersonality) + valueOptions:(NSPointerFunctionsStrongMemory | + NSPointerFunctionsObjectPointerPersonality)]; + [FBSDKSwizzler resolveConflict]; +} + ++ (void)resolveConflict +{ + Class swizzler = objc_lookUpClass("MPSwizzler"); + if (swizzler) { + Method method = class_getClassMethod(swizzler, @selector(swizzleSelector:onClass:withBlock:named:)); + Method newMethod = class_getClassMethod(self, @selector(swizzleSelector:onClass:withBlock:named:)); + method_setImplementation(method, method_getImplementation(newMethod)); + } +} + ++ (void)printSwizzles +{ + NSEnumerator *en = [swizzles objectEnumerator]; + FBSDKSwizzle *swizzle; + while ((swizzle = (FBSDKSwizzle *)[en nextObject])) { + NSLog(@"%@", swizzle); + } +} + ++ (FBSDKSwizzle *)swizzleForMethod:(Method)aMethod +{ + return (FBSDKSwizzle *)[swizzles objectForKey:MAPTABLE_ID(aMethod)]; +} + ++ (void)removeSwizzleForMethod:(Method)aMethod +{ + [swizzles removeObjectForKey:MAPTABLE_ID(aMethod)]; +} + ++ (void)setSwizzle:(FBSDKSwizzle *)swizzle forMethod:(Method)aMethod +{ + [swizzles setObject:swizzle forKey:MAPTABLE_ID(aMethod)]; +} + ++ (BOOL)isLocallyDefinedMethod:(Method)aMethod onClass:(Class)aClass +{ + uint count; + BOOL isLocal = NO; + Method *methods = class_copyMethodList(aClass, &count); + for (NSUInteger i = 0; i < count; i++) { + if (aMethod == methods[i]) { + isLocal = YES; + break; + } + } + free(methods); + return isLocal; +} + ++ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(swizzleBlock)aBlock named:(NSString *)aName +{ + Method aMethod = class_getInstanceMethod(aClass, aSelector); + if (aMethod) { + uint numArgs = method_getNumberOfArguments(aMethod); + if (numArgs >= MIN_ARGS && numArgs <= MAX_ARGS) { + + BOOL isLocal = [FBSDKSwizzler isLocallyDefinedMethod:aMethod onClass:aClass]; + IMP swizzledMethod = (IMP)fb_swizzledMethods[numArgs - 2]; + // Check whether the first parameter is integer + if (4 == numArgs) { + char *type = method_copyArgumentType(aMethod, 2); + NSString *firstType = [NSString stringWithCString:type encoding:NSUTF8StringEncoding]; + NSString *integerTypes = @"islq"; + if ([integerTypes containsString:firstType.lowercaseString]) { + swizzledMethod = (IMP)fb_swizzleMethod_4_io; + } + free(type); + } + + FBSDKSwizzle *swizzle = [FBSDKSwizzler swizzleForMethod:aMethod]; + + if (isLocal) { + if (!swizzle) { + IMP originalMethod = method_getImplementation(aMethod); + + // Replace the local implementation of this method with the swizzled one + method_setImplementation(aMethod,swizzledMethod); + + // Create and add the swizzle + swizzle = [[FBSDKSwizzle alloc] initWithBlock:aBlock named:aName forClass:aClass selector:aSelector originalMethod:originalMethod withNumArgs:numArgs]; + [FBSDKSwizzler setSwizzle:swizzle forMethod:aMethod]; + + } else { + [swizzle.blocks setObject:aBlock forKey:aName]; + } + } else { + IMP originalMethod = swizzle ? swizzle.originalMethod : method_getImplementation(aMethod); + + // Add the swizzle as a new local method on the class. + if (!class_addMethod(aClass, aSelector, swizzledMethod, method_getTypeEncoding(aMethod))) { + return; + } + // Now re-get the Method, it should be the one we just added. + Method newMethod = class_getInstanceMethod(aClass, aSelector); + if (aMethod == newMethod) { + return; + } + + FBSDKSwizzle *newSwizzle = [[FBSDKSwizzle alloc] initWithBlock:aBlock named:aName forClass:aClass selector:aSelector originalMethod:originalMethod withNumArgs:numArgs]; + [FBSDKSwizzler setSwizzle:newSwizzle forMethod:newMethod]; + } + } + } +} + ++ (void)unswizzleSelector:(SEL)aSelector onClass:(Class)aClass +{ + Method aMethod = class_getInstanceMethod(aClass, aSelector); + FBSDKSwizzle *swizzle = [FBSDKSwizzler swizzleForMethod:aMethod]; + if (swizzle) { + method_setImplementation(aMethod, swizzle.originalMethod); + [FBSDKSwizzler removeSwizzleForMethod:aMethod]; + } +} + +/* + Remove the named swizzle from the given class/selector. If aName is nil, remove all + swizzles for this class/selector +*/ ++ (void)unswizzleSelector:(SEL)aSelector onClass:(Class)aClass named:(NSString *)aName +{ + Method aMethod = class_getInstanceMethod(aClass, aSelector); + FBSDKSwizzle *swizzle = [FBSDKSwizzler swizzleForMethod:aMethod]; + if (swizzle) { + if (aName) { + [swizzle.blocks removeObjectForKey:aName]; + } + if (!aName || swizzle.blocks.count == 0) { + method_setImplementation(aMethod, swizzle.originalMethod); + [FBSDKSwizzler removeSwizzleForMethod:aMethod]; + } + } +} + +@end + + +@implementation FBSDKSwizzle + +- (instancetype)init +{ + if ((self = [super init])) { + self.blocks = [NSMapTable mapTableWithKeyOptions:(NSPointerFunctionsStrongMemory + | NSPointerFunctionsObjectPersonality) + valueOptions:(NSPointerFunctionsStrongMemory + | NSPointerFunctionsObjectPointerPersonality)]; + } + return self; +} + +- (instancetype)initWithBlock:(swizzleBlock)aBlock + named:(NSString *)aName + forClass:(Class)aClass + selector:(SEL)aSelector + originalMethod:(IMP)aMethod + withNumArgs:(uint)numArgs +{ + if ((self = [self init])) { + self.class = aClass; + self.selector = aSelector; + self.numArgs = numArgs; + self.originalMethod = aMethod; + [_blocks setObject:aBlock forKey:aName]; + } + return self; +} + +- (NSString *)description +{ + NSString *descriptors = @""; + NSString *key; + NSEnumerator *keys = [_blocks keyEnumerator]; + while ((key = [keys nextObject])) { + descriptors = [descriptors stringByAppendingFormat:@"\t%@ : %@\n", key, [_blocks objectForKey:key]]; + } + return [NSString stringWithFormat:@"Swizzle on %@::%@ [\n%@]", NSStringFromClass(self.class), + NSStringFromSelector(self.selector), descriptors]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h new file mode 100644 index 0000000..d5c1dbe --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h @@ -0,0 +1,36 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +typedef NS_ENUM(NSInteger, FBSDKTriStateBOOL) +{ + FBSDKTriStateBOOLValueUnknown = -1, + FBSDKTriStateBOOLValueNO = 0, + FBSDKTriStateBOOLValueYES = 1, +} NS_SWIFT_NAME(TriStateBool.Value); + +FOUNDATION_EXPORT FBSDKTriStateBOOL FBSDKTriStateBOOLFromBOOL(BOOL value); +FOUNDATION_EXPORT FBSDKTriStateBOOL FBSDKTriStateBOOLFromNSNumber(NSNumber *value); +FOUNDATION_EXPORT BOOL BOOLFromFBSDKTriStateBOOL(FBSDKTriStateBOOL value, BOOL defaultValue); + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m new file mode 100644 index 0000000..727752a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m @@ -0,0 +1,49 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKTriStateBOOL.h" + +FBSDKTriStateBOOL FBSDKTriStateBOOLFromBOOL(BOOL value) +{ + return value ? FBSDKTriStateBOOLValueYES : FBSDKTriStateBOOLValueNO; +} + +FBSDKTriStateBOOL FBSDKTriStateBOOLFromNSNumber(NSNumber *value) +{ + return ([value isKindOfClass:[NSNumber class]] ? + FBSDKTriStateBOOLFromBOOL(value.boolValue) : + FBSDKTriStateBOOLValueUnknown); +} + +BOOL BOOLFromFBSDKTriStateBOOL(FBSDKTriStateBOOL value, BOOL defaultValue) +{ + switch (value) { + case FBSDKTriStateBOOLValueYES: + return YES; + case FBSDKTriStateBOOLValueNO: + return NO; + case FBSDKTriStateBOOLValueUnknown: + return defaultValue; + } +} + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKURL_Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKURL_Internal.h new file mode 100644 index 0000000..e5da051 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKURL_Internal.h @@ -0,0 +1,29 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKURL.h" + +@interface FBSDKURL (Internal) ++ (FBSDKURL *)URLForRenderBackToReferrerBarURL:(NSURL *)url; +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.h new file mode 100644 index 0000000..f7ea35b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKCrashObserving.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKCrashObserver : NSObject + ++ (void)enable; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.m new file mode 100644 index 0000000..f571196 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.m @@ -0,0 +1,87 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKCrashObserver.h" + +#import "FBSDKCrashHandler.h" +#import "FBSDKCrashShield.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKLibAnalyzer.h" +#import "FBSDKSettings.h" + +@implementation FBSDKCrashObserver + +@synthesize prefixes, frameworks; + +- (instancetype)init +{ + if ((self = [super init])) { + prefixes = @[@"FBSDK", @"_FBSDK"]; + frameworks = @[@"FBSDKCoreKit", + @"FBSDKLoginKit", + @"FBSDKShareKit", + @"FBSDKPlacesKit", + @"FBSDKTVOSKit"]; + } + return self; +} + ++ (void)enable +{ + [FBSDKCrashHandler addObserver:[FBSDKCrashObserver sharedInstance]]; +} + ++ (FBSDKCrashObserver *)sharedInstance +{ + static FBSDKCrashObserver *_sharedInstance; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _sharedInstance = [[self alloc] init]; + }); + return _sharedInstance; +} + +- (void)didReceiveCrashLogs:(NSArray *> *)processedCrashLogs +{ + if (0 == processedCrashLogs.count) { + [FBSDKCrashHandler clearCrashReportFiles]; + return; + } + NSData *jsonData = [NSJSONSerialization dataWithJSONObject:processedCrashLogs options:0 error:nil]; + if (jsonData) { + NSString *crashReports = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/instruments", [FBSDKSettings appID]] + parameters:@{@"crash_reports" : crashReports ?: @""} + HTTPMethod:FBSDKHTTPMethodPOST]; + + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (!error && [result isKindOfClass:[NSDictionary class]] && result[@"success"]) { + [FBSDKCrashHandler clearCrashReportFiles]; + } + }]; + } + [FBSDKFeatureManager checkFeature:FBSDKFeatureCrashShield completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKCrashShield analyze:processedCrashLogs]; + } + }]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.h new file mode 100644 index 0000000..987b3ce --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.h @@ -0,0 +1,29 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKCrashShield : NSObject + ++ (void)analyze:(NSArray *> *)crashLogs; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.m new file mode 100644 index 0000000..309a7c4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.m @@ -0,0 +1,128 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKCrashShield.h" + +#import "FBSDKFeatureManager.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKSettings.h" + +@implementation FBSDKCrashShield + +static NSDictionary *> *_featureMapping; + ++ (void)initialize +{ + if (self == [FBSDKCrashShield class]) { + _featureMapping = + @{ + @"AAM" : @[ + @"FBSDKMetadataIndexer", + ], + @"CodelessEvents" : @[ + @"FBSDKCodelessIndexer", + @"FBSDKEventBinding", + @"FBSDKEventBindingManager", + @"FBSDKViewHierarchy", + @"FBSDKCodelessPathComponent", + @"FBSDKCodelessParameterComponent", + ], + @"RestrictiveDataFiltering" : @[ + @"FBSDKRestrictiveDataFilterManager", + ], + @"ErrorReport" : @[ + @"FBSDKErrorReport", + ], + @"PrivacyProtection" : @[ + @"FBSDKModelManager", + ], + @"SuggestedEvents" : @[ + @"FBSDKSuggestedEventsIndexer", + @"FBSDKFeatureExtractor", + @"FBSDKEventInferencer", + ], + @"PIIFiltering" : @[ + @"FBSDKAddressFilterManager", + @"FBSDKAddressInferencer", + ], + @"EventDeactivation" : @[ + @"FBSDKEventDeactivationManager", + ], + }; + } +} + ++ (void)analyze:(NSArray *> *)crashLogs +{ + NSMutableSet *disabledFeatues = [NSMutableSet set]; + for (NSDictionary *crashLog in crashLogs) { + NSArray *callstack = crashLog[@"callstack"]; + NSString *featureName = [self getFeature:callstack]; + if (featureName) { + [FBSDKFeatureManager disableFeature:featureName]; + [disabledFeatues addObject:featureName]; + continue; + } + } + if (disabledFeatues.count > 0) { + NSDictionary *disabledFeatureLog = @{@"feature_names":[disabledFeatues allObjects], + @"timestamp":[NSString stringWithFormat:@"%.0lf", [[NSDate date] timeIntervalSince1970]], + }; + NSData *jsonData = [NSJSONSerialization dataWithJSONObject:disabledFeatureLog options:0 error:nil]; + if (jsonData) { + NSString *disabledFeatureReport = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; + if (disabledFeatureReport) { + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/instruments", [FBSDKSettings appID]] + parameters:@{@"crash_shield":disabledFeatureReport} + HTTPMethod:FBSDKHTTPMethodPOST]; + + [request startWithCompletionHandler:nil]; + } + } + } +} + ++ (nullable NSString *)getFeature:(NSArray *)callstack +{ + NSArray *featureNames = _featureMapping.allKeys; + for (NSString *entry in callstack) { + NSString *className = [self getClassName:entry]; + for (NSString *featureName in featureNames) { + NSArray *classArray = [_featureMapping objectForKey:featureName]; + if (className && [classArray containsObject:className]) { + return featureName; + } + } + } + return nil; +} + ++ (nullable NSString *)getClassName:(NSString *)entry +{ + NSArray *items = [entry componentsSeparatedByString:@" "]; + NSString *className = nil; + // parse class name only from an entry in format "-[className functionName]+offset" + // or "+[className functionName]+offset" + if (items.count > 0 && ([items[0] hasPrefix:@"+["] || [items[0] hasPrefix:@"-["])) { + className = [items[0] substringFromIndex:2]; + } + return className; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.h new file mode 100644 index 0000000..16d1c66 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.h @@ -0,0 +1,36 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import +#import "FBSDKError.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKErrorReport : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + ++ (void)enable; ++ (void)saveError:(NSInteger)errorCode + errorDomain:(NSErrorDomain)errorDomain + message:(nullable NSString *)message; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.m new file mode 100644 index 0000000..6473901 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.m @@ -0,0 +1,137 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorReport.h" + +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +#define FBSDK_MAX_ERROR_REPORT_LOGS 1000 + +@implementation FBSDKErrorReport + +static NSString *ErrorReportStorageDirName = @"instrument/"; +static NSString *directoryPath; + +NSString *const kFBSDKErrorCode = @"error_code"; +NSString *const kFBSDKErrorDomain = @"domain"; +NSString *const kFBSDKErrorTimestamp = @"timestamp"; + +# pragma mark - Class Methods + ++ (void)initialize +{ + NSString *dirPath = [NSTemporaryDirectory() stringByAppendingPathComponent:ErrorReportStorageDirName]; + if (![[NSFileManager defaultManager] fileExistsAtPath:dirPath]) { + if (![[NSFileManager defaultManager] createDirectoryAtPath:dirPath withIntermediateDirectories:NO attributes:NULL error:NULL]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational formatString:@"Failed to create library at %@", dirPath]; + } + } + directoryPath = dirPath; +} + ++ (void)enable +{ + [self uploadError]; + [FBSDKError enableErrorReport]; +} + ++ (void)uploadError +{ + NSArray *> *errorReports = [self loadErrorReports]; + if ([errorReports count] == 0) { + return [self clearErrorInfo]; + } + NSData *jsonData = [NSJSONSerialization dataWithJSONObject:errorReports options:0 error:nil]; + if (!jsonData){ + return; + } + NSString *errorData = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/instruments", [FBSDKSettings appID]] + parameters:@{@"error_reports" : errorData ?: @""} + HTTPMethod:FBSDKHTTPMethodPOST]; + + [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + if (!error && [result isKindOfClass:[NSDictionary class]] && result[@"success"]) { + [self clearErrorInfo]; + } + }]; +} + ++ (void)saveError:(NSInteger)errorCode + errorDomain:(NSErrorDomain)errorDomain + message:(nullable NSString *)message +{ + NSString *timestamp = [NSString stringWithFormat:@"%.0lf", [[NSDate date] timeIntervalSince1970]]; + [self saveErrorInfoToDisk: @{ + kFBSDKErrorCode:@(errorCode), + kFBSDKErrorDomain:errorDomain, + kFBSDKErrorTimestamp:timestamp, + }]; +} + ++ (NSArray *> *)loadErrorReports +{ + NSMutableArray *> *errorReportArr = [NSMutableArray array]; + NSArray *fileNames = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directoryPath error:NULL]; + NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(id _Nullable evaluatedObject, NSDictionary * _Nullable bindings) { + NSString *str = (NSString *)evaluatedObject; + return [str hasPrefix:@"error_report_"] && [str hasSuffix:@".plist"]; + }]; + fileNames = [fileNames filteredArrayUsingPredicate:predicate]; + fileNames = [fileNames sortedArrayUsingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2){ + return [obj2 compare:obj1]; + }]; + if (fileNames.count > 0){ + fileNames = [fileNames subarrayWithRange:NSMakeRange(0, MIN(fileNames.count, FBSDK_MAX_ERROR_REPORT_LOGS))]; + for (NSUInteger i = 0; i < fileNames.count; i++) { + NSDictionary *errorReport = [NSDictionary dictionaryWithContentsOfFile:[directoryPath stringByAppendingPathComponent:fileNames[i]]]; + if (errorReport) { + [errorReportArr addObject:errorReport]; + } + } + } + return [errorReportArr copy]; +} + ++ (void)clearErrorInfo +{ + NSArray *files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directoryPath error:nil]; + for (NSUInteger i = 0; i < files.count; i++) { + if ([files[i] hasPrefix:@"error_report"]) { + [[NSFileManager defaultManager] removeItemAtPath:[directoryPath stringByAppendingPathComponent:files[i]] error:nil]; + } + } +} + +#pragma mark - disk operations + ++ (void)saveErrorInfoToDisk:(NSDictionary *)errorInfo +{ + [errorInfo writeToFile:[self pathToErrorInfoFile] + atomically:YES]; +} + ++ (NSString *)pathToErrorInfoFile +{ + NSString *timestamp = [NSString stringWithFormat:@"%.0lf", [[NSDate date] timeIntervalSince1970]]; + return [directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"error_report_%@.plist",timestamp]]; +} +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.h new file mode 100644 index 0000000..86415e0 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.h @@ -0,0 +1,29 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface FBSDKInstrumentManager : NSObject + ++ (void)enable; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.m new file mode 100644 index 0000000..091658d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.m @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKInstrumentManager.h" + +#import "FBSDKCrashObserver.h" +#import "FBSDKErrorReport.h" +#import "FBSDKFeatureManager.h" +#import "FBSDKSettings.h" + +@implementation FBSDKInstrumentManager + ++ (void)enable +{ + if (![FBSDKSettings isAutoLogAppEventsEnabled]) { + return; + } + + [FBSDKFeatureManager checkFeature:FBSDKFeatureCrashReport completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKCrashObserver enable]; + } + }]; + [FBSDKFeatureManager checkFeature:FBSDKFeatureErrorReport completionBlock:^(BOOL enabled) { + if (enabled) { + [FBSDKErrorReport enable]; + } + }]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h new file mode 100644 index 0000000..11aff98 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h @@ -0,0 +1,61 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKGraphRequest.h" +#else +#import +#endif + +typedef NS_OPTIONS(NSUInteger, FBSDKGraphRequestFlags) +{ + FBSDKGraphRequestFlagNone = 0, + // indicates this request should not use a client token as its token parameter + FBSDKGraphRequestFlagSkipClientToken = 1 << 1, + // indicates this request should not close the session if its response is an oauth error + FBSDKGraphRequestFlagDoNotInvalidateTokenOnError = 1 << 2, + // indicates this request should not perform error recovery + FBSDKGraphRequestFlagDisableErrorRecovery = 1 << 3, +}; +@interface FBSDKGraphRequest (Internal) + +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + flags:(FBSDKGraphRequestFlags)flags; +- (instancetype)initWithGraphPath:(NSString *)graphPath + parameters:(NSDictionary *)parameters + tokenString:(NSString *)tokenString + HTTPMethod:(NSString *)HTTPMethod + flags:(FBSDKGraphRequestFlags)flags; +// Generally, requests automatically issued by the SDK +// should not invalidate the token and should disableErrorRecovery +// so that we don't cause a sudden change in token state or trigger recovery +// out of context of any user action. +@property (nonatomic, assign) FBSDKGraphRequestFlags flags; +@property (nonatomic, readonly, getter=isGraphErrorRecoveryDisabled) BOOL graphErrorRecoveryDisabled; +@property (nonatomic, readonly) BOOL hasAttachments; + ++ (BOOL)isAttachment:(id)item; ++ (NSString *)serializeURL:(NSString *)baseUrl + params:(NSDictionary *)params + httpMethod:(NSString *)httpMethod + forBatch:(BOOL)forBatch; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h new file mode 100644 index 0000000..37bf777 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h @@ -0,0 +1,50 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import +#import + +@class FBSDKGraphRequestDataAttachment; +@class FBSDKLogger; + +NS_SWIFT_NAME(GraphRequestBody) +@interface FBSDKGraphRequestBody : NSObject + +@property (nonatomic, retain, readonly) NSData *data; + +- (void)appendWithKey:(NSString *)key + formValue:(NSString *)value + logger:(FBSDKLogger *)logger; + +- (void)appendWithKey:(NSString *)key + imageValue:(UIImage *)image + logger:(FBSDKLogger *)logger; + +- (void)appendWithKey:(NSString *)key + dataValue:(NSData *)data + logger:(FBSDKLogger *)logger; + +- (void)appendWithKey:(NSString *)key + dataAttachmentValue:(FBSDKGraphRequestDataAttachment *)dataAttachment + logger:(FBSDKLogger *)logger; + +- (NSString *)mimeContentType; + +- (NSData *)compressedData; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m new file mode 100644 index 0000000..e35b9fa --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m @@ -0,0 +1,166 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequestBody.h" + +#import "FBSDKConstants.h" +#import "FBSDKCrypto.h" +#import "FBSDKGraphRequestDataAttachment.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +#define kNewline @"\r\n" + +@implementation FBSDKGraphRequestBody +{ + NSMutableData *_data; + NSMutableDictionary *_json; + NSString *_stringBoundary; +} + +- (instancetype)init +{ + if ((self = [super init])) { + _stringBoundary = [FBSDKCrypto randomString:32]; + _data = [[NSMutableData alloc] init]; + _json = [NSMutableDictionary dictionary]; + } + + return self; +} + +- (NSString *)mimeContentType +{ + if (_json) { + return @"application/json"; + } else { + return [NSString stringWithFormat:@"multipart/form-data; boundary=%@", _stringBoundary]; + } +} + +- (void)appendUTF8:(NSString *)utf8 +{ + if (!_data.length) { + NSString *headerUTF8 = [NSString stringWithFormat:@"--%@%@", _stringBoundary, kNewline]; + NSData *headerData = [headerUTF8 dataUsingEncoding:NSUTF8StringEncoding]; + [_data appendData:headerData]; + } + NSData *data = [utf8 dataUsingEncoding:NSUTF8StringEncoding]; + [_data appendData:data]; +} + +- (void)appendWithKey:(NSString *)key + formValue:(NSString *)value + logger:(FBSDKLogger *)logger +{ + [self _appendWithKey:key filename:nil contentType:nil contentBlock:^{ + [self appendUTF8:value]; + }]; + if (key && value) { + _json[key] = value; + } + [logger appendFormat:@"\n %@:\t%@", key, (NSString *)value]; +} + +- (void)appendWithKey:(NSString *)key + imageValue:(UIImage *)image + logger:(FBSDKLogger *)logger +{ + NSData *data = UIImageJPEGRepresentation(image, [FBSDKSettings JPEGCompressionQuality]); + [self _appendWithKey:key filename:key contentType:@"image/jpeg" contentBlock:^{ + [self->_data appendData:data]; + }]; + _json = nil; + [logger appendFormat:@"\n %@:\t", key, (unsigned long)(data.length / 1024)]; +} + +- (void)appendWithKey:(NSString *)key + dataValue:(NSData *)data + logger:(FBSDKLogger *)logger +{ + [self _appendWithKey:key filename:key contentType:@"content/unknown" contentBlock:^{ + [self->_data appendData:data]; + }]; + _json = nil; + [logger appendFormat:@"\n %@:\t", key, (unsigned long)(data.length / 1024)]; +} + +- (void)appendWithKey:(NSString *)key + dataAttachmentValue:(FBSDKGraphRequestDataAttachment *)dataAttachment + logger:(FBSDKLogger *)logger +{ + NSString *filename = dataAttachment.filename ?: key; + NSString *contentType = dataAttachment.contentType ?: @"content/unknown"; + NSData *data = dataAttachment.data; + [self _appendWithKey:key filename:filename contentType:contentType contentBlock:^{ + [self->_data appendData:data]; + }]; + _json = nil; + [logger appendFormat:@"\n %@:\t", key, (unsigned long)(data.length / 1024)]; +} + +- (NSData *)data +{ + if (_json) { + NSData *jsonData; + if (_json.allKeys.count > 0) { + jsonData = [NSJSONSerialization dataWithJSONObject:_json options:0 error:nil]; + } else { + jsonData = [NSData data]; + } + + return jsonData; + } + return [_data copy]; +} + +- (void)_appendWithKey:(NSString *)key + filename:(NSString *)filename + contentType:(NSString *)contentType + contentBlock:(FBSDKCodeBlock)contentBlock +{ + NSMutableArray *disposition = [[NSMutableArray alloc] init]; + [disposition addObject:@"Content-Disposition: form-data"]; + if (key) { + [disposition addObject:[[NSString alloc] initWithFormat:@"name=\"%@\"", key]]; + } + if (filename) { + [disposition addObject:[[NSString alloc] initWithFormat:@"filename=\"%@\"", filename]]; + } + [self appendUTF8:[[NSString alloc] initWithFormat:@"%@%@", [disposition componentsJoinedByString:@"; "], kNewline]]; + if (contentType) { + [self appendUTF8:[[NSString alloc] initWithFormat:@"Content-Type: %@%@", contentType, kNewline]]; + } + [self appendUTF8:kNewline]; + if (contentBlock != NULL) { + contentBlock(); + } + [self appendUTF8:[[NSString alloc] initWithFormat:@"%@--%@%@", kNewline, _stringBoundary, kNewline]]; +} + +- (NSData *)compressedData +{ + if (!self.data.length || ![[self mimeContentType] isEqualToString:@"application/json"]) { + return nil; + } + + return [FBSDKBasicUtility gzip:self.data]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h new file mode 100644 index 0000000..56d3223 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +@class FBSDKURLSession; + +#if SWIFT_PACKAGE +#import "FBSDKGraphRequestConnection.h" +#else +#import +#endif + +@interface FBSDKGraphRequestConnection(Internal) + +@property (nonatomic, readonly) NSMutableArray *requests; +@property (nonatomic, strong) FBSDKURLSession *session; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h new file mode 100644 index 0000000..32b8040 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h @@ -0,0 +1,48 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKGraphRequestConnection.h" +#else +#import +#endif + +// Internal only class to facilitate FBSDKGraphRequest processing, specifically +// associating FBSDKGraphRequest and FBSDKGraphRequestBlock instances and necessary +// data for retry processing. +NS_SWIFT_NAME(GraphRequestMetadata) +@interface FBSDKGraphRequestMetadata : NSObject + +@property (nonatomic, retain) FBSDKGraphRequest *request; +@property (nonatomic, copy) FBSDKGraphRequestBlock completionHandler; +@property (nonatomic, copy) NSDictionary *batchParameters; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithRequest:(FBSDKGraphRequest *)request + completionHandler:(FBSDKGraphRequestBlock)handler + batchParameters:(NSDictionary *)batchParameters +NS_DESIGNATED_INITIALIZER; + +- (void)invokeCompletionHandlerForConnection:(FBSDKGraphRequestConnection *)connection + withResults:(id)results + error:(NSError *)error; +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m new file mode 100644 index 0000000..2f09f8c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m @@ -0,0 +1,55 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequestMetadata.h" + +#import "FBSDKGraphRequest.h" + +@implementation FBSDKGraphRequestMetadata + +- (instancetype)initWithRequest:(FBSDKGraphRequest *)request + completionHandler:(FBSDKGraphRequestBlock)handler + batchParameters:(NSDictionary *)batchParameters { + + if ((self = [super init])) { + _request = request; + _batchParameters = [batchParameters copy]; + _completionHandler = [handler copy]; + } + return self; +} + +- (void)invokeCompletionHandlerForConnection:(FBSDKGraphRequestConnection *)connection + withResults:(id)results + error:(NSError *)error { + if (self.completionHandler) { + self.completionHandler(connection, results, error); + } +} + +- (NSString *)description +{ + return [NSString stringWithFormat:@"<%@: %p, batchParameters: %@, completionHandler: %@, request: %@>", + NSStringFromClass([self class]), + self, + self.batchParameters, + self.completionHandler, + self.request.description]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h new file mode 100644 index 0000000..6e56cee --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h @@ -0,0 +1,31 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKCoreKit+Internal.h" + +NS_SWIFT_NAME(GraphRequestPiggybackManager) +@interface FBSDKGraphRequestPiggybackManager : NSObject + ++ (void)addPiggybackRequests:(FBSDKGraphRequestConnection *)connection; + ++ (void)addRefreshPiggyback:(FBSDKGraphRequestConnection *)connection permissionHandler:(FBSDKGraphRequestBlock)permissionHandler; + ++ (void)addRefreshPiggybackIfStale:(FBSDKGraphRequestConnection *)connection; + ++ (void)addServerConfigurationPiggyback:(FBSDKGraphRequestConnection *)connection; +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m new file mode 100644 index 0000000..8794fa4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m @@ -0,0 +1,156 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKGraphRequestPiggybackManager.h" + +#import "FBSDKCoreKit+Internal.h" + +static int const FBSDKTokenRefreshThresholdSeconds = 24 * 60 * 60; // day +static int const FBSDKTokenRefreshRetrySeconds = 60 * 60; // hour + +@implementation FBSDKGraphRequestPiggybackManager + ++ (void)addPiggybackRequests:(FBSDKGraphRequestConnection *)connection +{ + if ([FBSDKSettings appID].length > 0) { + BOOL safeForPiggyback = YES; + for (FBSDKGraphRequestMetadata *metadata in connection.requests) { + if (![metadata.request.version isEqualToString:[FBSDKSettings graphAPIVersion]] || + metadata.request.hasAttachments) { + safeForPiggyback = NO; + break; + } + } + if (safeForPiggyback) { + [[self class] addRefreshPiggybackIfStale:connection]; + [[self class] addServerConfigurationPiggyback:connection]; + } + } +} + ++ (void)addRefreshPiggyback:(FBSDKGraphRequestConnection *)connection permissionHandler:(FBSDKGraphRequestBlock)permissionHandler +{ + FBSDKAccessToken *expectedToken = [FBSDKAccessToken currentAccessToken]; + __block NSMutableSet *permissions = nil; + __block NSMutableSet *declinedPermissions = nil; + __block NSMutableSet *expiredPermissions = nil; + __block NSString *tokenString = nil; + __block NSNumber *expirationDateNumber = nil; + __block NSNumber *dataAccessExpirationDateNumber = nil; + __block int expectingCallbacksCount = 2; + void (^expectingCallbackComplete)(void) = ^{ + if (--expectingCallbacksCount == 0) { + FBSDKAccessToken *currentToken = [FBSDKAccessToken currentAccessToken]; + NSDate *expirationDate = currentToken.expirationDate; + if (expirationDateNumber != nil) { + expirationDate = (expirationDateNumber.doubleValue > 0 ? + [NSDate dateWithTimeIntervalSince1970:expirationDateNumber.doubleValue] : + [NSDate distantFuture]); + } + NSDate *dataExpirationDate = currentToken.dataAccessExpirationDate; + if (dataAccessExpirationDateNumber != nil) { + dataExpirationDate = (dataAccessExpirationDateNumber.doubleValue > 0 ? + [NSDate dateWithTimeIntervalSince1970:dataAccessExpirationDateNumber.doubleValue] : + [NSDate distantFuture]); + } + FBSDKAccessToken *refreshedToken = [[FBSDKAccessToken alloc] initWithTokenString:tokenString ?: currentToken.tokenString + permissions:(permissions ?: currentToken.permissions).allObjects + declinedPermissions:(declinedPermissions ?: currentToken.declinedPermissions).allObjects + expiredPermissions:(expiredPermissions ?: currentToken.expiredPermissions).allObjects + appID:currentToken.appID + userID:currentToken.userID + expirationDate:expirationDate + refreshDate:[NSDate date] + dataAccessExpirationDate:dataExpirationDate + graphDomain:currentToken.graphDomain]; + if (expectedToken == currentToken) { + [FBSDKAccessToken setCurrentAccessToken:refreshedToken]; + } + } + }; + FBSDKGraphRequest *extendRequest = [[FBSDKGraphRequest alloc] initWithGraphPath:@"oauth/access_token" + parameters:@{@"grant_type" : @"fb_extend_sso_token", + @"fields": @"" + } + flags:FBSDKGraphRequestFlagDisableErrorRecovery]; + + [connection addRequest:extendRequest completionHandler:^(FBSDKGraphRequestConnection *innerConnection, id result, NSError *error) { + tokenString = result[@"access_token"]; + expirationDateNumber = result[@"expires_at"]; + dataAccessExpirationDateNumber = result[@"data_access_expiration_time"]; + expectingCallbackComplete(); + }]; + FBSDKGraphRequest *permissionsRequest = [[FBSDKGraphRequest alloc] initWithGraphPath:@"me/permissions" + parameters:@{@"fields": @""} + flags:FBSDKGraphRequestFlagDisableErrorRecovery]; + + [connection addRequest:permissionsRequest completionHandler:^(FBSDKGraphRequestConnection *innerConnection, id result, NSError *error) { + if (!error) { + permissions = [NSMutableSet set]; + declinedPermissions = [NSMutableSet set]; + expiredPermissions = [NSMutableSet set]; + + [FBSDKInternalUtility extractPermissionsFromResponse:result + grantedPermissions:permissions + declinedPermissions:declinedPermissions + expiredPermissions:expiredPermissions]; + } + expectingCallbackComplete(); + if (permissionHandler) { + permissionHandler(innerConnection, result, error); + } + }]; +} + ++ (void)addRefreshPiggybackIfStale:(FBSDKGraphRequestConnection *)connection +{ + // don't piggy back more than once an hour as a cheap way of + // retrying in cases of errors and preventing duplicate refreshes. + // obviously this is not foolproof but is simple and sufficient. + static NSDate *lastRefreshTry; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + lastRefreshTry = [NSDate distantPast]; + }); + + NSDate *now = [NSDate date]; + NSDate *tokenRefreshDate = [FBSDKAccessToken currentAccessToken].refreshDate; + if (tokenRefreshDate && + [now timeIntervalSinceDate:lastRefreshTry] > FBSDKTokenRefreshRetrySeconds && + [now timeIntervalSinceDate:tokenRefreshDate] > FBSDKTokenRefreshThresholdSeconds) { + [self addRefreshPiggyback:connection permissionHandler:NULL]; + lastRefreshTry = [NSDate date]; + } +} + ++ (void)addServerConfigurationPiggyback:(FBSDKGraphRequestConnection *)connection +{ + if (![FBSDKServerConfigurationManager cachedServerConfiguration].isDefaults + && [[NSDate date] timeIntervalSinceDate:[FBSDKServerConfigurationManager cachedServerConfiguration].timestamp] + < FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT) { + return; + } + NSString *appID = [FBSDKSettings appID]; + FBSDKGraphRequest *serverConfigurationRequest = [FBSDKServerConfigurationManager requestToLoadServerConfiguration:appID]; + [connection addRequest:serverConfigurationRequest + completionHandler:^(FBSDKGraphRequestConnection *conn, id result, NSError *error) { + [FBSDKServerConfigurationManager processLoadRequestResponse:result error:error appID:appID]; + }]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h new file mode 100644 index 0000000..37ad886 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h @@ -0,0 +1,42 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCopying.h" +#else +#import +#endif + +NS_SWIFT_NAME(DialogConfiguration) +@interface FBSDKDialogConfiguration : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithName:(NSString *)name + URL:(NSURL *)URL + appVersions:(NSArray *)appVersions +NS_DESIGNATED_INITIALIZER; + +@property (nonatomic, copy, readonly) NSArray *appVersions; +@property (nonatomic, copy, readonly) NSString *name; +@property (nonatomic, copy, readonly) NSURL *URL; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m new file mode 100644 index 0000000..9010fb9 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m @@ -0,0 +1,70 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKDialogConfiguration.h" + +#define FBSDK_DIALOG_CONFIGURATION_APP_VERSIONS_KEY @"appVersions" +#define FBSDK_DIALOG_CONFIGURATION_NAME_KEY @"name" +#define FBSDK_DIALOG_CONFIGURATION_URL_KEY @"url" + +@implementation FBSDKDialogConfiguration + +#pragma mark - Object Lifecycle + +- (instancetype)initWithName:(NSString *)name URL:(NSURL *)URL appVersions:(NSArray *)appVersions +{ + if ((self = [super init])) { + _name = [name copy]; + _URL = [URL copy]; + _appVersions = [appVersions copy]; + } + return self; +} + +#pragma mark NSCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder +{ + NSString *name = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_DIALOG_CONFIGURATION_NAME_KEY]; + NSURL *URL = [decoder decodeObjectOfClass:[NSURL class] forKey:FBSDK_DIALOG_CONFIGURATION_URL_KEY]; + NSSet *appVersionsClasses = [NSSet setWithObjects:[NSArray class], [NSNumber class], nil]; + NSArray *appVersions = [decoder decodeObjectOfClasses:appVersionsClasses + forKey:FBSDK_DIALOG_CONFIGURATION_APP_VERSIONS_KEY]; + return [self initWithName:name URL:URL appVersions:appVersions]; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:_appVersions forKey:FBSDK_DIALOG_CONFIGURATION_APP_VERSIONS_KEY]; + [encoder encodeObject:_name forKey:FBSDK_DIALOG_CONFIGURATION_NAME_KEY]; + [encoder encodeObject:_URL forKey:FBSDK_DIALOG_CONFIGURATION_URL_KEY]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + return self; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h new file mode 100644 index 0000000..af3524c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h @@ -0,0 +1,40 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorRecoveryConfiguration.h" + +@class FBSDKGraphRequest; + +// maps codes and subcodes pairs to FBSDKErrorRecoveryConfiguration instances. +NS_SWIFT_NAME(ErrorConfiguration) +@interface FBSDKErrorConfiguration : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +// initialize from optional dictionary of existing configurations. If not supplied a fallback will be created. +- (instancetype)initWithDictionary:(NSDictionary *)dictionary NS_DESIGNATED_INITIALIZER; + +// parses the array (supplied from app settings endpoint) +- (void)parseArray:(NSArray *)array; + +// NSString "code" instances support "*" wildcard semantics (nil is treated as "*" also) +// 'request' is optional, typically for identifying special graph request semantics (e.g., no recovery for client token) +- (FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(NSString *)code subcode:(NSString *)subcode request:(FBSDKGraphRequest *)request; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m new file mode 100644 index 0000000..cb94dd8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m @@ -0,0 +1,172 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorConfiguration.h" + +#import "FBSDKCoreKit+Internal.h" + +#import "FBSDKErrorRecoveryConfiguration.h" + +static NSString *const kErrorCategoryOther = @"other"; +static NSString *const kErrorCategoryTransient = @"transient"; +static NSString *const kErrorCategoryLogin = @"login"; + +#define FBSDKERRORCONFIGURATION_DICTIONARY_KEY @"configurationDictionary" + +@implementation FBSDKErrorConfiguration +{ + NSMutableDictionary *_configurationDictionary; +} + +- (instancetype)initWithDictionary:(NSDictionary *)dictionary +{ + if ((self = [super init])) { + if (dictionary) { + _configurationDictionary = [NSMutableDictionary dictionaryWithDictionary:dictionary]; + } else { + _configurationDictionary = [NSMutableDictionary dictionary]; + NSString *localizedOK = + NSLocalizedStringWithDefaultValue(@"ErrorRecovery.OK", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"OK", + @"The title of the label to start attempting error recovery"); + NSString *localizedCancel = + NSLocalizedStringWithDefaultValue(@"ErrorRecovery.Cancel", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"Cancel", + @"The title of the label to decline attempting error recovery"); + NSString *localizedTransientSuggestion = + NSLocalizedStringWithDefaultValue(@"ErrorRecovery.Transient.Suggestion", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"The server is temporarily busy, please try again.", + @"The fallback message to display to retry transient errors"); + NSString *localizedLoginRecoverableSuggestion = + NSLocalizedStringWithDefaultValue(@"ErrorRecovery.Login.Suggestion", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"Please log into this app again to reconnect your Facebook account.", + @"The fallback message to display to recover invalidated tokens"); + NSArray *fallbackArray = @[ + @{ @"name" : @"login", + @"items" : @[ @{ @"code" : @102 }, + @{ @"code" : @190 } ], + @"recovery_message" : localizedLoginRecoverableSuggestion, + @"recovery_options" : @[ localizedOK, localizedCancel] + }, + @{ @"name" : @"transient", + @"items" : @[ @{ @"code" : @1 }, + @{ @"code" : @2 }, + @{ @"code" : @4 }, + @{ @"code" : @9 }, + @{ @"code" : @17 }, + @{ @"code" : @341 } ], + @"recovery_message" : localizedTransientSuggestion, + @"recovery_options" : @[ localizedOK] + }, + ]; + [self parseArray:fallbackArray]; + } + } + return self; +} + +- (FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(NSString *)code subcode:(NSString *)subcode request:(FBSDKGraphRequest *)request +{ + code = code ?: @"*"; + subcode = subcode ?: @"*"; + FBSDKErrorRecoveryConfiguration *configuration = (_configurationDictionary[code][subcode] ?: + _configurationDictionary[code][@"*"] ?: + _configurationDictionary[@"*"][subcode] ?: + _configurationDictionary[@"*"][@"*"]); + if (configuration.errorCategory == FBSDKGraphRequestErrorRecoverable && + [FBSDKSettings clientToken] && + [request.parameters[@"access_token"] hasSuffix:[FBSDKSettings clientToken]]) { + // do not attempt to recovery client tokens. + return nil; + } + return configuration; +} + +- (void)parseArray:(NSArray *)array +{ + for (NSDictionary *dictionary in array) { + [dictionary enumerateKeysAndObjectsUsingBlock:^(NSString *key, id obj, BOOL *stop) { + FBSDKGraphRequestError category; + NSString *action = dictionary[@"name"]; + if ([action isEqualToString:kErrorCategoryOther]) { + category = FBSDKGraphRequestErrorOther; + } else if ([action isEqualToString:kErrorCategoryTransient]) { + category = FBSDKGraphRequestErrorTransient; + } else { + category = FBSDKGraphRequestErrorRecoverable; + } + NSString *suggestion = dictionary[@"recovery_message"]; + NSArray *options = dictionary[@"recovery_options"]; + for (NSDictionary *codeSubcodesDictionary in dictionary[@"items"]) { + NSString *code = [codeSubcodesDictionary[@"code"] stringValue]; + + NSMutableDictionary *currentSubcodes = self->_configurationDictionary[code]; + if (!currentSubcodes) { + currentSubcodes = [NSMutableDictionary dictionary]; + self->_configurationDictionary[code] = currentSubcodes; + } + + NSArray *subcodes = codeSubcodesDictionary[@"subcodes"]; + if (subcodes.count > 0) { + for (NSNumber *subcodeNumber in subcodes) { + currentSubcodes[subcodeNumber.stringValue] = [[FBSDKErrorRecoveryConfiguration alloc] + initWithRecoveryDescription:suggestion + optionDescriptions:options + category:category + recoveryActionName:action]; + } + } else { + currentSubcodes[@"*"] = [[FBSDKErrorRecoveryConfiguration alloc] + initWithRecoveryDescription:suggestion + optionDescriptions:options + category:category + recoveryActionName:action]; + } + } + }]; + } +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder +{ + NSSet *classes = [[NSSet alloc] initWithObjects:[NSDictionary class], [FBSDKErrorRecoveryConfiguration class], nil]; + NSDictionary *configurationDictionary = [decoder decodeObjectOfClasses:classes + forKey:FBSDKERRORCONFIGURATION_DICTIONARY_KEY]; + return [self initWithDictionary:configurationDictionary]; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:_configurationDictionary forKey:FBSDKERRORCONFIGURATION_DICTIONARY_KEY]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + return self; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h new file mode 100644 index 0000000..6cb8e43 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h @@ -0,0 +1,43 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKConstants.h" +#else +#import +#endif + +//immutable +NS_SWIFT_NAME(ErrorRecoveryConfiguration) +@interface FBSDKErrorRecoveryConfiguration : NSObject + +@property (nonatomic, readonly) NSString *localizedRecoveryDescription; +@property (nonatomic, readonly) NSArray *localizedRecoveryOptionDescriptions; +@property (nonatomic, readonly) FBSDKGraphRequestError errorCategory; +@property (nonatomic, readonly) NSString *recoveryActionName; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithRecoveryDescription:(NSString *)description + optionDescriptions:(NSArray *)optionDescriptions + category:(FBSDKGraphRequestError)category + recoveryActionName:(NSString *)recoveryActionName NS_DESIGNATED_INITIALIZER; +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m new file mode 100644 index 0000000..97eb061 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m @@ -0,0 +1,77 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKErrorRecoveryConfiguration.h" + +#define FBSDK_ERROR_RECOVERY_CONFIGURATION_DESCRIPTION_KEY @"description" +#define FBSDK_ERROR_RECOVERY_CONFIGURATION_OPTIONS_KEY @"options" +#define FBSDK_ERROR_RECOVERY_CONFIGURATION_CATEGORY_KEY @"category" +#define FBSDK_ERROR_RECOVERY_CONFIGURATION_ACTION_KEY @"action" + +@implementation FBSDKErrorRecoveryConfiguration + +- (instancetype)initWithRecoveryDescription:(NSString *)description + optionDescriptions:(NSArray *)optionDescriptions + category:(FBSDKGraphRequestError)category + recoveryActionName:(NSString *)recoveryActionName { + if ((self = [super init])) { + _localizedRecoveryDescription = [description copy]; + _localizedRecoveryOptionDescriptions = [optionDescriptions copy]; + _errorCategory = category; + _recoveryActionName = [recoveryActionName copy]; + } + return self; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder +{ + NSString *description = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_DESCRIPTION_KEY]; + NSArray *options = [decoder decodeObjectOfClass:[NSArray class] forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_OPTIONS_KEY]; + NSNumber *category = [decoder decodeObjectOfClass:[NSNumber class] forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_CATEGORY_KEY]; + NSString *action = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_ACTION_KEY]; + + return [self initWithRecoveryDescription:description + optionDescriptions:options + category:category.unsignedIntegerValue + recoveryActionName:action]; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeObject:_localizedRecoveryDescription forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_DESCRIPTION_KEY]; + [encoder encodeObject:_localizedRecoveryOptionDescriptions forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_OPTIONS_KEY]; + [encoder encodeObject:@(_errorCategory) forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_CATEGORY_KEY]; + [encoder encodeObject:_recoveryActionName forKey:FBSDK_ERROR_RECOVERY_CONFIGURATION_ACTION_KEY]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + //immutable + return self; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.h new file mode 100644 index 0000000..fa8a5b6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.h @@ -0,0 +1,46 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#define FBSDK_GATEKEEPER_MANAGER_CACHE_TIMEOUT (60 * 60) + +NS_ASSUME_NONNULL_BEGIN + +/// typedef for FBSDKAppEventUserDataType +typedef NSString *const FBSDKGateKeeperKey NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(GateKeeperManager.GateKeeperKey); +typedef void (^FBSDKGKManagerBlock)(NSError * _Nullable error) +NS_SWIFT_NAME(GKManagerBlock); + +@interface FBSDKGateKeeperManager : NSObject +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + Returns the locally cached configuration. + */ ++ (BOOL)boolForKey:(NSString *)key defaultValue:(BOOL)defaultValue; + +/** + Load the gate keeper configurations from server + */ ++ (void)loadGateKeepers:(nullable FBSDKGKManagerBlock)completionBlock; + +@end + +NS_ASSUME_NONNULL_END diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.m new file mode 100644 index 0000000..dede1ae --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.m @@ -0,0 +1,200 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + + +#import "FBSDKGateKeeperManager.h" + +#import + +#import + +#import "FBSDKAppEventsUtility.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" + +#define FBSDK_GATEKEEPERS_USER_DEFAULTS_KEY @"com.facebook.sdk:GateKeepers%@" + +#define FBSDK_GATEKEEPER_APP_GATEKEEPER_EDGE @"mobile_sdk_gk" +#define FBSDK_GATEKEEPER_APP_GATEKEEPER_FIELDS @"gatekeepers" + +@implementation FBSDKGateKeeperManager + +static NSDictionary *_gateKeepers; +static NSMutableArray *_completionBlocks; +static const NSTimeInterval kTimeout = 4.0; +static NSDate *_timestamp; +static BOOL _loadingGateKeepers; +static BOOL _requeryFinishedForAppStart; + +#pragma mark - Public Class Methods ++ (void)initialize +{ + if (self == [FBSDKGateKeeperManager class]) { + _completionBlocks = [NSMutableArray array]; + } +} + ++ (BOOL)boolForKey:(NSString *)key defaultValue:(BOOL)defaultValue +{ + [self loadGateKeepers:nil]; + + return _gateKeepers[key] ? [_gateKeepers[key] boolValue] : defaultValue; +} + ++ (void)loadGateKeepers:(FBSDKGKManagerBlock)completionBlock +{ + @synchronized(self) { + NSString *appID = [FBSDKSettings appID]; + if (!appID) { + _gateKeepers = nil; + if (completionBlock != NULL) { + completionBlock(nil); + } + return; + } + + if (!_gateKeepers) { + // load the defaults + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultKey = [NSString stringWithFormat:FBSDK_GATEKEEPERS_USER_DEFAULTS_KEY, + appID]; + NSData *data = [defaults objectForKey:defaultKey]; + if ([data isKindOfClass:[NSData class]]) { + NSDictionary *gatekeeper = [NSKeyedUnarchiver unarchiveObjectWithData:data]; + if (gatekeeper != nil && [gatekeeper isKindOfClass:[NSDictionary class]]) { + _gateKeepers = gatekeeper; + } + } + } + + // Query the server when the requery is not finished for app start or the timestamp is not valid + if ([self _gateKeeperIsValid]) { + if (completionBlock) { + completionBlock(nil); + } + } else { + [FBSDKBasicUtility array:_completionBlocks addObject:completionBlock]; + if (!_loadingGateKeepers) { + _loadingGateKeepers = YES; + FBSDKGraphRequest *request = [[self class] requestToLoadGateKeepers]; + + // start request with specified timeout instead of the default 180s + FBSDKGraphRequestConnection *requestConnection = [[FBSDKGraphRequestConnection alloc] init]; + requestConnection.timeout = kTimeout; + [requestConnection addRequest:request completionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + _requeryFinishedForAppStart = YES; + [self processLoadRequestResponse:result error:error]; + }]; + [requestConnection start]; + } + } + } +} + +#pragma mark - Internal Class Methods + ++ (FBSDKGraphRequest *)requestToLoadGateKeepers +{ + NSString *sdkVersion = [FBSDKSettings sdkVersion]; + + NSDictionary *parameters = @{ @"platform": @"ios" , + @"sdk_version": sdkVersion, + @"fields": FBSDK_GATEKEEPER_APP_GATEKEEPER_FIELDS}; + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:[NSString stringWithFormat:@"%@/%@", + [FBSDKSettings appID], FBSDK_GATEKEEPER_APP_GATEKEEPER_EDGE] + parameters:parameters + tokenString:nil + HTTPMethod:nil + flags:FBSDKGraphRequestFlagSkipClientToken | FBSDKGraphRequestFlagDisableErrorRecovery]; + return request; +} + +#pragma mark - Helper Class Methods + ++ (void)processLoadRequestResponse:(id)result error:(NSError *)error +{ + @synchronized(self) { + _loadingGateKeepers = NO; + + if (!error) { + // Update the timestamp only when there is no error + _timestamp = [NSDate date]; + + NSMutableDictionary *gateKeeper = [_gateKeepers mutableCopy]; + if (!gateKeeper) { + gateKeeper = [[NSMutableDictionary alloc] init]; + } + NSDictionary *resultDictionary = [FBSDKTypeUtility dictionaryValue:result]; + NSDictionary *fetchedData = [FBSDKTypeUtility dictionaryValue:[resultDictionary[@"data"] firstObject]]; + NSArray *gateKeeperList = fetchedData != nil ? [FBSDKTypeUtility arrayValue:fetchedData[FBSDK_GATEKEEPER_APP_GATEKEEPER_FIELDS]] : nil; + + if (gateKeeperList != nil) { + // updates gate keeper with fetched data + for (id gateKeeperEntry in gateKeeperList) { + NSDictionary *entry = [FBSDKTypeUtility dictionaryValue:gateKeeperEntry]; + NSString *key = [FBSDKTypeUtility stringValue:entry[@"key"]]; + id value = entry[@"value"]; + if (entry != nil && key != nil && value != nil) { + gateKeeper[key] = value; + } + } + _gateKeepers = [gateKeeper copy]; + } + + // update the cached copy in user defaults + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultKey = [NSString stringWithFormat:FBSDK_GATEKEEPERS_USER_DEFAULTS_KEY, + [FBSDKSettings appID]]; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:gateKeeper]; + [defaults setObject:data forKey:defaultKey]; + } + + [self _didProcessGKFromNetwork:error]; + } +} + ++ (void)_didProcessGKFromNetwork:(NSError *)error +{ + NSArray *completionBlocks = [NSArray arrayWithArray:_completionBlocks]; + [_completionBlocks removeAllObjects]; + for (FBSDKGKManagerBlock completionBlock in completionBlocks) { + completionBlock(error); + } +} + ++ (BOOL)_gateKeeperTimestampIsValid:(NSDate *)timestamp +{ + if (timestamp == nil) { + return NO; + } + return ([[NSDate date] timeIntervalSinceDate:timestamp] < FBSDK_GATEKEEPER_MANAGER_CACHE_TIMEOUT); +} + ++ (BOOL)_gateKeeperIsValid +{ + if (_requeryFinishedForAppStart && (_timestamp && [self _gateKeeperTimestampIsValid:_timestamp])) { + return YES; + } + return NO; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h new file mode 100644 index 0000000..2e71d7b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h @@ -0,0 +1,25 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameDefault; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameSharing; + +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationFeatureUseNativeFlow; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationFeatureUseSafariViewController; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h new file mode 100644 index 0000000..73a5abd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h @@ -0,0 +1,112 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKCopying.h" +#else +#import +#endif + +#import "FBSDKDialogConfiguration.h" +#import "FBSDKErrorConfiguration.h" + +// login kit +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameLogin; + +// share kit +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameAppInvite; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGameRequest; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGroup; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameLike; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameMessage; +FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameShare; + +FOUNDATION_EXPORT const NSInteger FBSDKServerConfigurationVersion; + +typedef NS_OPTIONS(NSUInteger, FBSDKServerConfigurationSmartLoginOptions) +{ + FBSDKServerConfigurationSmartLoginOptionsUnknown = 0, + FBSDKServerConfigurationSmartLoginOptionsEnabled = 1 << 0, + FBSDKServerConfigurationSmartLoginOptionsRequireConfirmation = 1 << 1, +}; + +NS_SWIFT_NAME(ServerConfiguration) +@interface FBSDKServerConfiguration : NSObject + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +- (instancetype)initWithAppID:(NSString *)appID + appName:(NSString *)appName + loginTooltipEnabled:(BOOL)loginTooltipEnabled + loginTooltipText:(NSString *)loginTooltipText + defaultShareMode:(NSString *)defaultShareMode + advertisingIDEnabled:(BOOL)advertisingIDEnabled + implicitLoggingEnabled:(BOOL)implicitLoggingEnabled +implicitPurchaseLoggingEnabled:(BOOL)implicitPurchaseLoggingEnabled + codelessEventsEnabled:(BOOL)codelessEventsEnabled + uninstallTrackingEnabled:(BOOL)uninstallTrackingEnabled + dialogConfigurations:(NSDictionary *)dialogConfigurations + dialogFlows:(NSDictionary *)dialogFlows + timestamp:(NSDate *)timestamp + errorConfiguration:(FBSDKErrorConfiguration *)errorConfiguration + sessionTimeoutInterval:(NSTimeInterval) sessionTimeoutInterval + defaults:(BOOL)defaults + loggingToken:(NSString *)loggingToken + smartLoginOptions:(FBSDKServerConfigurationSmartLoginOptions)smartLoginOptions + smartLoginBookmarkIconURL:(NSURL *)smartLoginBookmarkIconURL + smartLoginMenuIconURL:(NSURL *)smartLoginMenuIconURL + updateMessage:(NSString *)updateMessage + eventBindings:(NSArray *)eventBindings + restrictiveParams:(NSDictionary *)restrictiveParams + AAMRules:(NSDictionary *)AAMRules + suggestedEventsSetting:(NSDictionary *)suggestedEventsSetting +NS_DESIGNATED_INITIALIZER; + +@property (nonatomic, assign, readonly, getter=isAdvertisingIDEnabled) BOOL advertisingIDEnabled; +@property (nonatomic, copy, readonly) NSString *appID; +@property (nonatomic, copy, readonly) NSString *appName; +@property (nonatomic, assign, readonly, getter=isDefaults) BOOL defaults; +@property (nonatomic, copy, readonly) NSString *defaultShareMode; +@property (nonatomic, strong, readonly) FBSDKErrorConfiguration *errorConfiguration; +@property (nonatomic, assign, readonly, getter=isImplicitLoggingSupported) BOOL implicitLoggingEnabled; +@property (nonatomic, assign, readonly, getter=isImplicitPurchaseLoggingSupported) BOOL implicitPurchaseLoggingEnabled; +@property (nonatomic, assign, readonly, getter=isCodelessEventsEnabled) BOOL codelessEventsEnabled; +@property (nonatomic, assign, readonly, getter=isLoginTooltipEnabled) BOOL loginTooltipEnabled; +@property (nonatomic, assign, readonly, getter=isUninstallTrackingEnabled) BOOL uninstallTrackingEnabled; +@property (nonatomic, copy, readonly) NSString *loginTooltipText; +@property (nonatomic, copy, readonly) NSDate *timestamp; +@property (nonatomic, assign) NSTimeInterval sessionTimoutInterval; +@property (nonatomic, copy, readonly) NSString *loggingToken; +@property (nonatomic, assign, readonly) FBSDKServerConfigurationSmartLoginOptions smartLoginOptions; +@property (nonatomic, copy, readonly) NSURL *smartLoginBookmarkIconURL; +@property (nonatomic, copy, readonly) NSURL *smartLoginMenuIconURL; +@property (nonatomic, copy, readonly) NSString *updateMessage; +@property (nonatomic, copy, readonly) NSArray *eventBindings; +@property (nonatomic, copy, readonly) NSDictionary *restrictiveParams; +@property (nonatomic, copy, readonly) NSDictionary *AAMRules; +@property (nonatomic, copy, readonly) NSDictionary *suggestedEventsSetting; +@property (nonatomic, readonly) NSInteger version; + +- (FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; +- (BOOL)useNativeDialogForDialogName:(NSString *)dialogName; +- (BOOL)useSafariViewControllerForDialogName:(NSString *)dialogName; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m new file mode 100644 index 0000000..0130d4e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m @@ -0,0 +1,288 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKServerConfiguration.h" +#import "FBSDKServerConfiguration+Internal.h" + +#import "FBSDKInternalUtility.h" + +#define FBSDK_SERVER_CONFIGURATION_ADVERTISING_ID_ENABLED_KEY @"advertisingIDEnabled" +#define FBSDK_SERVER_CONFIGURATION_APP_ID_KEY @"appID" +#define FBSDK_SERVER_CONFIGURATION_APP_NAME_KEY @"appName" +#define FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_KEY @"dialogConfigs" +#define FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_KEY @"dialogFlows" +#define FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGS_KEY @"errorConfigs" +#define FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_KEY @"implicitLoggingEnabled" +#define FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_KEY @"defaultShareMode" +#define FBSDK_SERVER_CONFIGURATION_IMPLICIT_PURCHASE_LOGGING_ENABLED_KEY @"implicitPurchaseLoggingEnabled" +#define FBSDK_SERVER_CONFIGURATION_CODELESS_EVENTS_ENABLED_KEY @"codelessEventsEnabled" +#define FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_KEY @"loginTooltipEnabled" +#define FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_KEY @"loginTooltipText" +#define FBSDK_SERVER_CONFIGURATION_TIMESTAMP_KEY @"timestamp" +#define FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_INTERVAL @"sessionTimeoutInterval" +#define FBSDK_SERVER_CONFIGURATION_LOGGING_TOKEN @"loggingToken" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_KEY @"smartLoginEnabled" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_KEY @"smarstLoginBookmarkIconURL" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_KEY @"smarstLoginBookmarkMenuURL" +#define FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_KEY @"SDKUpdateMessage" +#define FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS @"eventBindings" +#define FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS @"restrictiveParams" +#define FBSDK_SERVER_CONFIGURATION_AAM_RULES @"AAMRules" +#define FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING @"suggestedEventsSetting" +#define FBSDK_SERVER_CONFIGURATION_VERSION_KEY @"version" +#define FBSDK_SERVER_CONFIGURATION_TRACK_UNINSTALL_ENABLED_KEY @"trackAppUninstallEnabled" + +#pragma mark - Dialog Names + +NSString *const FBSDKDialogConfigurationNameDefault = @"default"; + +NSString *const FBSDKDialogConfigurationNameLogin = @"login"; + +NSString *const FBSDKDialogConfigurationNameSharing = @"sharing"; + +NSString *const FBSDKDialogConfigurationNameAppInvite = @"app_invite"; +NSString *const FBSDKDialogConfigurationNameGameRequest = @"game_request"; +NSString *const FBSDKDialogConfigurationNameGroup = @"group"; +NSString *const FBSDKDialogConfigurationNameLike = @"like"; +NSString *const FBSDKDialogConfigurationNameMessage = @"message"; +NSString *const FBSDKDialogConfigurationNameShare = @"share"; + +NSString *const FBSDKDialogConfigurationFeatureUseNativeFlow = @"use_native_flow"; +NSString *const FBSDKDialogConfigurationFeatureUseSafariViewController = @"use_safari_vc"; + +// Increase this value when adding new fields and previous cached configurations should be +// treated as stale. +const NSInteger FBSDKServerConfigurationVersion = 2; + +@implementation FBSDKServerConfiguration +{ + NSDictionary *_dialogConfigurations; + NSDictionary *_dialogFlows; + NSInteger _version; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithAppID:(NSString *)appID + appName:(NSString *)appName + loginTooltipEnabled:(BOOL)loginTooltipEnabled + loginTooltipText:(NSString *)loginTooltipText + defaultShareMode:(NSString*)defaultShareMode + advertisingIDEnabled:(BOOL)advertisingIDEnabled + implicitLoggingEnabled:(BOOL)implicitLoggingEnabled +implicitPurchaseLoggingEnabled:(BOOL)implicitPurchaseLoggingEnabled + codelessEventsEnabled:(BOOL)codelessEventsEnabled + uninstallTrackingEnabled:(BOOL)uninstallTrackingEnabled + dialogConfigurations:(NSDictionary *)dialogConfigurations + dialogFlows:(NSDictionary *)dialogFlows + timestamp:(NSDate *)timestamp + errorConfiguration:(FBSDKErrorConfiguration *)errorConfiguration + sessionTimeoutInterval:(NSTimeInterval) sessionTimeoutInterval + defaults:(BOOL)defaults + loggingToken:(NSString *)loggingToken + smartLoginOptions:(FBSDKServerConfigurationSmartLoginOptions)smartLoginOptions + smartLoginBookmarkIconURL:(NSURL *)smartLoginBookmarkIconURL + smartLoginMenuIconURL:(NSURL *)smartLoginMenuIconURL + updateMessage:(NSString *)updateMessage + eventBindings:(NSArray *)eventBindings + restrictiveParams:(NSDictionary *)restrictiveParams + AAMRules:(NSDictionary *)AAMRules + suggestedEventsSetting:(NSDictionary *)suggestedEventsSetting +{ + if ((self = [super init])) { + _appID = [appID copy]; + _appName = [appName copy]; + _loginTooltipEnabled = loginTooltipEnabled; + _loginTooltipText = [loginTooltipText copy]; + _defaultShareMode = defaultShareMode; + _advertisingIDEnabled = advertisingIDEnabled; + _implicitLoggingEnabled = implicitLoggingEnabled; + _implicitPurchaseLoggingEnabled = implicitPurchaseLoggingEnabled; + _codelessEventsEnabled = codelessEventsEnabled; + _uninstallTrackingEnabled = uninstallTrackingEnabled; + _dialogConfigurations = [dialogConfigurations copy]; + _dialogFlows = [dialogFlows copy]; + _timestamp = [timestamp copy]; + _errorConfiguration = [errorConfiguration copy]; + _sessionTimoutInterval = sessionTimeoutInterval; + _defaults = defaults; + _loggingToken = loggingToken; + _smartLoginOptions = smartLoginOptions; + _smartLoginMenuIconURL = [smartLoginMenuIconURL copy]; + _smartLoginBookmarkIconURL = [smartLoginBookmarkIconURL copy]; + _updateMessage = [updateMessage copy]; + _eventBindings = eventBindings; + _restrictiveParams = restrictiveParams; + _AAMRules = AAMRules; + _suggestedEventsSetting = suggestedEventsSetting; + _version = FBSDKServerConfigurationVersion; + } + return self; +} + +#pragma mark - Public Methods + +- (FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName +{ + return _dialogConfigurations[dialogName]; +} + +- (BOOL)useNativeDialogForDialogName:(NSString *)dialogName +{ + return [self _useFeatureWithKey:FBSDKDialogConfigurationFeatureUseNativeFlow dialogName:dialogName]; +} + +- (BOOL)useSafariViewControllerForDialogName:(NSString *)dialogName +{ + return [self _useFeatureWithKey:FBSDKDialogConfigurationFeatureUseSafariViewController dialogName:dialogName]; +} + +#pragma mark - Helper Methods + +- (BOOL)_useFeatureWithKey:(NSString *)key dialogName:(NSString *)dialogName +{ + if ([dialogName isEqualToString:FBSDKDialogConfigurationNameLogin]) { + return ((NSNumber *)(_dialogFlows[dialogName][key] ?: + _dialogFlows[FBSDKDialogConfigurationNameDefault][key])).boolValue; + } else { + return ((NSNumber *)(_dialogFlows[dialogName][key] ?: + _dialogFlows[FBSDKDialogConfigurationNameSharing][key] ?: + _dialogFlows[FBSDKDialogConfigurationNameDefault][key])).boolValue; + } +} + +#pragma mark - NSCoding + ++ (BOOL)supportsSecureCoding +{ + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder +{ + NSString *appID = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_SERVER_CONFIGURATION_APP_ID_KEY]; + NSString *appName = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_SERVER_CONFIGURATION_APP_NAME_KEY]; + BOOL loginTooltipEnabled = [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_KEY]; + NSString *loginTooltipText = [decoder decodeObjectOfClass:[NSString class] + forKey:FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_KEY]; + NSString *defaultShareMode = [decoder decodeObjectOfClass:[NSString class] + forKey:FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_KEY]; + BOOL advertisingIDEnabled = [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_ADVERTISING_ID_ENABLED_KEY]; + BOOL implicitLoggingEnabled = [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_KEY]; + BOOL implicitPurchaseLoggingEnabled = + [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_IMPLICIT_PURCHASE_LOGGING_ENABLED_KEY]; + BOOL codelessEventsEnabled = + [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_CODELESS_EVENTS_ENABLED_KEY]; + BOOL uninstallTrackingEnabled = + [decoder decodeBoolForKey:FBSDK_SERVER_CONFIGURATION_TRACK_UNINSTALL_ENABLED_KEY]; + FBSDKServerConfigurationSmartLoginOptions smartLoginOptions = [decoder decodeIntegerForKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_KEY]; + NSDate *timestamp = [decoder decodeObjectOfClass:[NSDate class] forKey:FBSDK_SERVER_CONFIGURATION_TIMESTAMP_KEY]; + NSSet *dialogConfigurationsClasses = [[NSSet alloc] initWithObjects: + [NSDictionary class], + [FBSDKDialogConfiguration class], + nil]; + NSDictionary *dialogConfigurations = [decoder decodeObjectOfClasses:dialogConfigurationsClasses + forKey:FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_KEY]; + NSSet *dialogFlowsClasses = [[NSSet alloc] initWithObjects: + [NSDictionary class], + [NSString class], + [NSNumber class], + nil]; + NSDictionary *dialogFlows = [decoder decodeObjectOfClasses:dialogFlowsClasses + forKey:FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_KEY]; + FBSDKErrorConfiguration *errorConfiguration = [decoder decodeObjectOfClass:[FBSDKErrorConfiguration class] forKey:FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGS_KEY]; + NSTimeInterval sessionTimeoutInterval = [decoder decodeDoubleForKey:FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_INTERVAL]; + NSString *loggingToken = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_SERVER_CONFIGURATION_LOGGING_TOKEN]; + NSURL *smartLoginBookmarkIconURL = [decoder decodeObjectOfClass:[NSURL class] forKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_KEY]; + NSURL *smartLoginMenuIconURL = [decoder decodeObjectOfClass:[NSURL class] forKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_KEY]; + NSString *updateMessage = [decoder decodeObjectOfClass:[NSString class] forKey:FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_KEY]; + NSArray *eventBindings = [decoder decodeObjectOfClass:[NSArray class] forKey:FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS]; + NSDictionary *restrictiveParams = [decoder decodeObjectOfClass:[NSDictionary class] forKey:FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS]; + NSDictionary *AAMRules = [decoder decodeObjectOfClass:[NSDictionary class] forKey:FBSDK_SERVER_CONFIGURATION_AAM_RULES]; + NSDictionary *suggestedEventsSetting = [decoder decodeObjectOfClass:[NSDictionary class] forKey:FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING]; + NSInteger version = [decoder decodeIntegerForKey:FBSDK_SERVER_CONFIGURATION_VERSION_KEY]; + FBSDKServerConfiguration *configuration = [self initWithAppID:appID + appName:appName + loginTooltipEnabled:loginTooltipEnabled + loginTooltipText:loginTooltipText + defaultShareMode:defaultShareMode + advertisingIDEnabled:advertisingIDEnabled + implicitLoggingEnabled:implicitLoggingEnabled + implicitPurchaseLoggingEnabled:implicitPurchaseLoggingEnabled + codelessEventsEnabled:codelessEventsEnabled + uninstallTrackingEnabled:uninstallTrackingEnabled + dialogConfigurations:dialogConfigurations + dialogFlows:dialogFlows + timestamp:timestamp + errorConfiguration:errorConfiguration + sessionTimeoutInterval:sessionTimeoutInterval + defaults:NO + loggingToken:loggingToken + smartLoginOptions:smartLoginOptions + smartLoginBookmarkIconURL:smartLoginBookmarkIconURL + smartLoginMenuIconURL:smartLoginMenuIconURL + updateMessage:updateMessage + eventBindings:eventBindings + restrictiveParams:restrictiveParams + AAMRules:AAMRules + suggestedEventsSetting:suggestedEventsSetting + ]; + configuration->_version = version; + return configuration; +} + +- (void)encodeWithCoder:(NSCoder *)encoder +{ + [encoder encodeBool:_advertisingIDEnabled forKey:FBSDK_SERVER_CONFIGURATION_ADVERTISING_ID_ENABLED_KEY]; + [encoder encodeObject:_appID forKey:FBSDK_SERVER_CONFIGURATION_APP_ID_KEY]; + [encoder encodeObject:_appName forKey:FBSDK_SERVER_CONFIGURATION_APP_NAME_KEY]; + [encoder encodeObject:_defaultShareMode forKey:FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_KEY]; + [encoder encodeObject:_dialogConfigurations forKey:FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_KEY]; + [encoder encodeObject:_dialogFlows forKey:FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_KEY]; + [encoder encodeObject:_errorConfiguration forKey:FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGS_KEY]; + [encoder encodeBool:_implicitLoggingEnabled forKey:FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_KEY]; + [encoder encodeBool:_implicitPurchaseLoggingEnabled + forKey:FBSDK_SERVER_CONFIGURATION_IMPLICIT_PURCHASE_LOGGING_ENABLED_KEY]; + [encoder encodeBool:_codelessEventsEnabled + forKey:FBSDK_SERVER_CONFIGURATION_CODELESS_EVENTS_ENABLED_KEY]; + [encoder encodeBool:_loginTooltipEnabled forKey:FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_KEY]; + [encoder encodeBool:_uninstallTrackingEnabled + forKey:FBSDK_SERVER_CONFIGURATION_TRACK_UNINSTALL_ENABLED_KEY]; + [encoder encodeObject:_loginTooltipText forKey:FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_KEY]; + [encoder encodeObject:_timestamp forKey:FBSDK_SERVER_CONFIGURATION_TIMESTAMP_KEY]; + [encoder encodeDouble:_sessionTimoutInterval forKey:FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_INTERVAL]; + [encoder encodeObject:_loggingToken forKey:FBSDK_SERVER_CONFIGURATION_LOGGING_TOKEN]; + [encoder encodeInteger:_smartLoginOptions forKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_KEY]; + [encoder encodeObject:_smartLoginBookmarkIconURL forKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_KEY]; + [encoder encodeObject:_smartLoginMenuIconURL forKey:FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_KEY]; + [encoder encodeObject:_updateMessage forKey:FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_KEY]; + [encoder encodeObject:_eventBindings forKey:FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS]; + [encoder encodeObject:_restrictiveParams forKey:FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS]; + [encoder encodeObject:_AAMRules forKey:FBSDK_SERVER_CONFIGURATION_AAM_RULES]; + [encoder encodeObject:_suggestedEventsSetting forKey:FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING]; + [encoder encodeInteger:_version forKey:FBSDK_SERVER_CONFIGURATION_VERSION_KEY]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone +{ + return self; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h new file mode 100644 index 0000000..b84b023 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h @@ -0,0 +1,33 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKServerConfigurationManager.h" + +@class FBSDKGraphRequest; + +@interface FBSDKServerConfigurationManager () + ++ (void)processLoadRequestResponse:(id)result error:(NSError *)error appID:(NSString *)appID; + ++ (FBSDKGraphRequest *)requestToLoadServerConfiguration:(NSString *)appID; + ++ (void)clearCache; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h new file mode 100644 index 0000000..78557e5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h @@ -0,0 +1,45 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKServerConfiguration.h" + +#define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) +typedef void (^FBSDKServerConfigurationBlock)(FBSDKServerConfiguration *serverConfiguration, NSError *error) +NS_SWIFT_NAME(ServerConfigurationBlock); + +NS_SWIFT_NAME(ServerConfigurationManager) +@interface FBSDKServerConfigurationManager : NSObject + +/** + Returns the locally cached configuration. + + The result will be valid for the appID from FBSDKSettings, but may be expired. A network request will be + initiated to update the configuration if a valid and unexpired configuration is not available. + */ ++ (FBSDKServerConfiguration *)cachedServerConfiguration; + +/** + Executes the completionBlock with a valid and current configuration when it is available. + + This method will use a cached configuration if it is valid and not expired. + */ ++ (void)loadServerConfigurationWithCompletionBlock:(FBSDKServerConfigurationBlock)completionBlock; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m new file mode 100644 index 0000000..efc4b5e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m @@ -0,0 +1,470 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKServerConfigurationManager+Internal.h" + +#import + +#import "FBSDKAppEventsUtility.h" +#import "FBSDKEventDeactivationManager.h" +#import "FBSDKGateKeeperManager.h" +#import "FBSDKGraphRequest+Internal.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKImageDownloader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKRestrictiveDataFilterManager.h" +#import "FBSDKServerConfiguration+Internal.h" +#import "FBSDKServerConfiguration.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" + +// one minute +#define DEFAULT_SESSION_TIMEOUT_INTERVAL 60 + +#define FBSDK_SERVER_CONFIGURATION_USER_DEFAULTS_KEY @"com.facebook.sdk:serverConfiguration%@" + +#define FBSDK_SERVER_CONFIGURATION_APP_EVENTS_FEATURES_FIELD @"app_events_feature_bitmask" +#define FBSDK_SERVER_CONFIGURATION_APP_NAME_FIELD @"name" +#define FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_FIELD @"default_share_mode" +#define FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_FIELD @"ios_dialog_configs" +#define FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_FIELD @"ios_sdk_dialog_flows" +#define FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGURATION_FIELD @"ios_sdk_error_categories" +#define FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_FIELD @"supports_implicit_sdk_logging" +#define FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_FIELD @"gdpv4_nux_enabled" +#define FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_FIELD @"gdpv4_nux_content" +#define FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_FIELD @"app_events_session_timeout" +#define FBSDK_SERVER_CONFIGURATION_LOGGIN_TOKEN_FIELD @"logging_token" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_FIELD @"seamless_login" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_FIELD @"smart_login_bookmark_icon_url" +#define FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_FIELD @"smart_login_menu_icon_url" +#define FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_FIELD @"sdk_update_message" +#define FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS_FIELD @"auto_event_mapping_ios" +#define FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS_FIELD @"restrictive_data_filter_params" +#define FBSDK_SERVER_CONFIGURATION_AAM_RULES_FIELD @"aam_rules" +#define FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING_FIELD @"suggested_events_setting" + +@implementation FBSDKServerConfigurationManager + +static NSMutableArray *_completionBlocks; +static BOOL _loadingServerConfiguration; +static FBSDKServerConfiguration *_serverConfiguration; +static NSError *_serverConfigurationError; +static NSDate *_serverConfigurationErrorTimestamp; +static const NSTimeInterval kTimeout = 4.0; +static BOOL _printedUpdateMessage; +static BOOL _requeryFinishedForAppStart; + +typedef NS_OPTIONS(NSUInteger, FBSDKServerConfigurationManagerAppEventsFeatures) +{ + FBSDKServerConfigurationManagerAppEventsFeaturesNone = 0, + FBSDKServerConfigurationManagerAppEventsFeaturesAdvertisingIDEnabled = 1 << 0, + FBSDKServerConfigurationManagerAppEventsFeaturesImplicitPurchaseLoggingEnabled = 1 << 1, + FBSDKServerConfigurationManagerAppEventsFeaturesCodelessEventsTriggerEnabled = 1 << 5, + FBSDKServerConfigurationManagerAppEventsFeaturesUninstallTrackingEnabled = 1 << 7, +}; + +#pragma mark - Public Class Methods + ++ (void)initialize +{ + if (self == [FBSDKServerConfigurationManager class]) { + _completionBlocks = [[NSMutableArray alloc] init]; + } +} + ++ (void)clearCache +{ + _serverConfiguration = nil; + _serverConfigurationError = nil; + _serverConfigurationErrorTimestamp = nil; + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultsKey = [NSString stringWithFormat:FBSDK_SERVER_CONFIGURATION_USER_DEFAULTS_KEY, [FBSDKSettings appID]]; + [defaults removeObjectForKey:defaultsKey]; + [defaults synchronize]; +} + ++ (FBSDKServerConfiguration *)cachedServerConfiguration +{ + NSString *appID = [FBSDKSettings appID]; + @synchronized(self) { + // load the server configuration if we don't have it already + [self loadServerConfigurationWithCompletionBlock:nil]; + + // use whatever configuration we have or the default + return _serverConfiguration ?: [self _defaultServerConfigurationForAppID:appID]; + } +} + ++ (void)loadServerConfigurationWithCompletionBlock:(FBSDKServerConfigurationBlock)completionBlock +{ + void (^loadBlock)(void) = nil; + NSString *appID = [FBSDKSettings appID]; + @synchronized(self) { + // validate the cached configuration has the correct appID + if (_serverConfiguration && ![_serverConfiguration.appID isEqualToString:appID]) { + _serverConfiguration = nil; + _serverConfigurationError = nil; + _serverConfigurationErrorTimestamp = nil; + } + + // load the configuration from NSUserDefaults + if (!_serverConfiguration) { + // load the defaults + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultsKey = [NSString stringWithFormat:FBSDK_SERVER_CONFIGURATION_USER_DEFAULTS_KEY, appID]; + NSData *data = [defaults objectForKey:defaultsKey]; + if ([data isKindOfClass:[NSData class]]) { + // decode the configuration + FBSDKServerConfiguration *serverConfiguration = [NSKeyedUnarchiver unarchiveObjectWithData:data]; + if ([serverConfiguration isKindOfClass:[FBSDKServerConfiguration class]]) { + // ensure that the configuration points to the current appID + if ([serverConfiguration.appID isEqualToString:appID]) { + _serverConfiguration = serverConfiguration; + } + } + } + } + + if (_requeryFinishedForAppStart && + ((_serverConfiguration && [self _serverConfigurationTimestampIsValid:_serverConfiguration.timestamp] && _serverConfiguration.version >= FBSDKServerConfigurationVersion))) { + // we have a valid server configuration, use that + loadBlock = [self _wrapperBlockForLoadBlock:completionBlock]; + } else { + // hold onto the completion block + [FBSDKBasicUtility array:_completionBlocks addObject:[completionBlock copy]]; + + // check if we are already loading + if (!_loadingServerConfiguration) { + // load the configuration from the network + _loadingServerConfiguration = YES; + FBSDKGraphRequest *request = [[self class] requestToLoadServerConfiguration:appID]; + + // start request with specified timeout instead of the default 180s + FBSDKGraphRequestConnection *requestConnection = [[FBSDKGraphRequestConnection alloc] init]; + requestConnection.timeout = kTimeout; + [requestConnection addRequest:request completionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) { + _requeryFinishedForAppStart = YES; + [self processLoadRequestResponse:result error:error appID:appID]; + }]; + [requestConnection start]; + } + } + } + + if (loadBlock) { + loadBlock(); + } + + // Fetch app gatekeepers + [FBSDKGateKeeperManager loadGateKeepers:nil]; +} + +#pragma mark - Internal Class Methods + ++ (void)processLoadRequestResponse:(id)result error:(NSError *)error appID:(NSString *)appID +{ + if (error) { + [self _didProcessConfigurationFromNetwork:nil appID:appID error:error]; + return; + } + + NSDictionary *resultDictionary = [FBSDKTypeUtility dictionaryValue:result]; + NSUInteger appEventsFeatures = [FBSDKTypeUtility unsignedIntegerValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_APP_EVENTS_FEATURES_FIELD]]; + BOOL advertisingIDEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesAdvertisingIDEnabled) != 0; + BOOL implicitPurchaseLoggingEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesImplicitPurchaseLoggingEnabled) != 0; + BOOL codelessEventsEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesCodelessEventsTriggerEnabled) != 0; + BOOL uninstallTrackingEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesUninstallTrackingEnabled) != 0; + NSString *appName = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_APP_NAME_FIELD]]; + BOOL loginTooltipEnabled = [FBSDKTypeUtility boolValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_FIELD]]; + NSString *loginTooltipText = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_FIELD]]; + NSString *defaultShareMode = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_FIELD]]; + BOOL implicitLoggingEnabled = [FBSDKTypeUtility boolValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_FIELD]]; + NSDictionary *dialogConfigurations = [FBSDKTypeUtility dictionaryValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_FIELD]]; + dialogConfigurations = [self _parseDialogConfigurations:dialogConfigurations]; + NSDictionary *dialogFlows = [FBSDKTypeUtility dictionaryValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_FIELD]]; + FBSDKErrorConfiguration *errorConfiguration = [[FBSDKErrorConfiguration alloc] initWithDictionary:nil]; + [errorConfiguration parseArray:resultDictionary[FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGURATION_FIELD]]; + NSTimeInterval sessionTimeoutInterval = [FBSDKTypeUtility timeIntervalValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_FIELD]] ?: DEFAULT_SESSION_TIMEOUT_INTERVAL; + NSString *loggingToken = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_LOGGIN_TOKEN_FIELD]]; + FBSDKServerConfigurationSmartLoginOptions smartLoginOptions = [FBSDKTypeUtility integerValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_FIELD]]; + NSURL *smartLoginBookmarkIconURL = [FBSDKTypeUtility URLValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_FIELD]]; + NSURL *smartLoginMenuIconURL = [FBSDKTypeUtility URLValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_FIELD]]; + NSString *updateMessage = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_FIELD]]; + NSArray *eventBindings = [FBSDKTypeUtility arrayValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS_FIELD]]; + NSDictionary *restrictiveParams = [FBSDKBasicUtility objectForJSONString:resultDictionary[FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS_FIELD] error:nil]; + NSDictionary *AAMRules = [FBSDKBasicUtility objectForJSONString:resultDictionary[FBSDK_SERVER_CONFIGURATION_AAM_RULES_FIELD] error:nil]; + NSDictionary *suggestedEventsSetting = [FBSDKBasicUtility objectForJSONString:resultDictionary[FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING_FIELD] error:nil]; + FBSDKServerConfiguration *serverConfiguration = [[FBSDKServerConfiguration alloc] initWithAppID:appID + appName:appName + loginTooltipEnabled:loginTooltipEnabled + loginTooltipText:loginTooltipText + defaultShareMode:defaultShareMode + advertisingIDEnabled:advertisingIDEnabled + implicitLoggingEnabled:implicitLoggingEnabled + implicitPurchaseLoggingEnabled:implicitPurchaseLoggingEnabled + codelessEventsEnabled:codelessEventsEnabled + uninstallTrackingEnabled:uninstallTrackingEnabled + dialogConfigurations:dialogConfigurations + dialogFlows:dialogFlows + timestamp:[NSDate date] + errorConfiguration:errorConfiguration + sessionTimeoutInterval:sessionTimeoutInterval + defaults:NO + loggingToken:loggingToken + smartLoginOptions:smartLoginOptions + smartLoginBookmarkIconURL:smartLoginBookmarkIconURL + smartLoginMenuIconURL:smartLoginMenuIconURL + updateMessage:updateMessage + eventBindings:eventBindings + restrictiveParams:restrictiveParams + AAMRules:AAMRules + suggestedEventsSetting:suggestedEventsSetting + ]; + if (restrictiveParams) { + [FBSDKRestrictiveDataFilterManager updateFilters:restrictiveParams]; + [FBSDKEventDeactivationManager updateDeactivatedEvents:restrictiveParams]; + } +#if TARGET_OS_TV + // don't download icons more than once a day. + static const NSTimeInterval kSmartLoginIconsTTL = 60 * 60 * 24; + + BOOL smartLoginEnabled = (smartLoginOptions & FBSDKServerConfigurationSmartLoginOptionsEnabled); + // for TVs go ahead and prime the images + if (smartLoginEnabled && + smartLoginMenuIconURL && + smartLoginBookmarkIconURL) { + [[FBSDKImageDownloader sharedInstance] downloadImageWithURL:serverConfiguration.smartLoginBookmarkIconURL + ttl:kSmartLoginIconsTTL + completion:nil]; + [[FBSDKImageDownloader sharedInstance] downloadImageWithURL:serverConfiguration.smartLoginMenuIconURL + ttl:kSmartLoginIconsTTL + completion:nil]; + } +#endif + [self _didProcessConfigurationFromNetwork:serverConfiguration appID:appID error:nil]; +} + ++ (FBSDKGraphRequest *)requestToLoadServerConfiguration:(NSString *)appID +{ + NSOperatingSystemVersion operatingSystemVersion = [FBSDKInternalUtility operatingSystemVersion]; + NSString *dialogFlowsField = [NSString stringWithFormat:@"%@.os_version(%ti.%ti.%ti)", + FBSDK_SERVER_CONFIGURATION_DIALOG_FLOWS_FIELD, + operatingSystemVersion.majorVersion, + operatingSystemVersion.minorVersion, + operatingSystemVersion.patchVersion]; + NSArray *fields = @[FBSDK_SERVER_CONFIGURATION_APP_EVENTS_FEATURES_FIELD, + FBSDK_SERVER_CONFIGURATION_APP_NAME_FIELD, + FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_FIELD, + FBSDK_SERVER_CONFIGURATION_DIALOG_CONFIGS_FIELD, + dialogFlowsField, + FBSDK_SERVER_CONFIGURATION_ERROR_CONFIGURATION_FIELD, + FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_FIELD, + FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_FIELD, + FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_FIELD, + FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_FIELD, + FBSDK_SERVER_CONFIGURATION_LOGGIN_TOKEN_FIELD, + FBSDK_SERVER_CONFIGURATION_RESTRICTIVE_PARAMS_FIELD, + FBSDK_SERVER_CONFIGURATION_AAM_RULES_FIELD, + FBSDK_SERVER_CONFIGURATION_SUGGESTED_EVENTS_SETTING_FIELD +#if !TARGET_OS_TV + ,FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS_FIELD +#endif +#ifdef DEBUG + ,FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_FIELD +#endif +#if TARGET_OS_TV + ,FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_FIELD, + FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_BOOKMARK_ICON_URL_FIELD, + FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_MENU_ICON_URL_FIELD +#endif + ]; + NSDictionary *parameters = @{ @"fields": [fields componentsJoinedByString:@","]}; + + FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:appID + parameters:parameters + tokenString:nil + HTTPMethod:nil + flags:FBSDKGraphRequestFlagSkipClientToken | FBSDKGraphRequestFlagDisableErrorRecovery]; + return request; +} + +#pragma mark - Helper Class Methods + ++ (FBSDKServerConfiguration *)_defaultServerConfigurationForAppID:(NSString *)appID +{ + // Use a default configuration while we do not have a configuration back from the server. This allows us to set + // the default values for any of the dialog sets or anything else in a centralized location while we are waiting for + // the server to respond. + static FBSDKServerConfiguration *_defaultServerConfiguration = nil; + if (![_defaultServerConfiguration.appID isEqualToString:appID]) { + // Bypass the native dialog flow for iOS 9+, as it produces a series of additional confirmation dialogs that lead to + // extra friction that is not desirable. + NSOperatingSystemVersion iOS9Version = { .majorVersion = 9, .minorVersion = 0, .patchVersion = 0 }; + BOOL useNativeFlow = ![FBSDKInternalUtility isOSRunTimeVersionAtLeast:iOS9Version]; + // Also enable SFSafariViewController by default. + NSDictionary *dialogFlows = @{ + FBSDKDialogConfigurationNameDefault: @{ + FBSDKDialogConfigurationFeatureUseNativeFlow: @(useNativeFlow), + FBSDKDialogConfigurationFeatureUseSafariViewController: @YES, + }, + FBSDKDialogConfigurationNameMessage: @{ + FBSDKDialogConfigurationFeatureUseNativeFlow: @YES, + }, + }; + _defaultServerConfiguration = [[FBSDKServerConfiguration alloc] initWithAppID:appID + appName:nil + loginTooltipEnabled:NO + loginTooltipText:nil + defaultShareMode:nil + advertisingIDEnabled:NO + implicitLoggingEnabled:NO + implicitPurchaseLoggingEnabled:NO + codelessEventsEnabled:NO + uninstallTrackingEnabled:NO + dialogConfigurations:nil + dialogFlows:dialogFlows + timestamp:nil + errorConfiguration:nil + sessionTimeoutInterval:DEFAULT_SESSION_TIMEOUT_INTERVAL + defaults:YES + loggingToken:nil + smartLoginOptions:FBSDKServerConfigurationSmartLoginOptionsUnknown + smartLoginBookmarkIconURL:nil + smartLoginMenuIconURL:nil + updateMessage:nil + eventBindings:nil + restrictiveParams:nil + AAMRules:nil + suggestedEventsSetting:nil + ]; + } + return _defaultServerConfiguration; +} + ++ (void)_didProcessConfigurationFromNetwork:(FBSDKServerConfiguration *)serverConfiguration + appID:(NSString *)appID + error:(NSError *)error +{ + NSMutableArray *completionBlocks = [[NSMutableArray alloc] init]; + @synchronized(self) { + if (error) { + // Only set the error if we don't have previously fetched app settings. + // (i.e., if we have app settings and a new call gets an error, we'll + // ignore the error and surface the last successfully fetched settings). + if (_serverConfiguration && [_serverConfiguration.appID isEqualToString:appID]) { + // We have older app settings but the refresh received an error. + // Log and ignore the error. + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational + formatString:@"loadServerConfigurationWithCompletionBlock failed with %@", error]; + } else { + _serverConfiguration = nil; + } + _serverConfigurationError = error; + _serverConfigurationErrorTimestamp = [NSDate date]; + } else { + _serverConfiguration = serverConfiguration; + _serverConfigurationError = nil; + _serverConfigurationErrorTimestamp = nil; + +#ifdef DEBUG + NSString *updateMessage = _serverConfiguration.updateMessage; + if (updateMessage && updateMessage.length > 0 && !_printedUpdateMessage) { + _printedUpdateMessage = YES; + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational logEntry:updateMessage]; + } +#endif + + if (!_printedUpdateMessage) { + _printedUpdateMessage = _printedUpdateMessage; + } + } + + // update the cached copy in NSUserDefaults + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *defaultsKey = [NSString stringWithFormat:FBSDK_SERVER_CONFIGURATION_USER_DEFAULTS_KEY, appID]; + if (serverConfiguration) { + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:serverConfiguration]; + [defaults setObject:data forKey:defaultsKey]; + } + + // wrap the completion blocks + for (FBSDKServerConfigurationBlock completionBlock in _completionBlocks) { + [completionBlocks addObject:[self _wrapperBlockForLoadBlock:completionBlock]]; + } + [_completionBlocks removeAllObjects]; + _loadingServerConfiguration = NO; + } + + // release the lock before calling out of this class + for (void (^completionBlock)(void) in completionBlocks) { + completionBlock(); + } +} + ++ (NSDictionary *)_parseDialogConfigurations:(NSDictionary *)dictionary +{ + NSMutableDictionary *dialogConfigurations = [[NSMutableDictionary alloc] init]; + NSArray *dialogConfigurationsArray = [FBSDKTypeUtility arrayValue:dictionary[@"data"]]; + for (id dialogConfiguration in dialogConfigurationsArray) { + NSDictionary *dialogConfigurationDictionary = [FBSDKTypeUtility dictionaryValue:dialogConfiguration]; + if (dialogConfigurationDictionary) { + NSString *name = [FBSDKTypeUtility stringValue:dialogConfigurationDictionary[@"name"]]; + if (name.length) { + NSURL *URL = [FBSDKTypeUtility URLValue:dialogConfigurationDictionary[@"url"]]; + NSArray *appVersions = [FBSDKTypeUtility arrayValue:dialogConfigurationDictionary[@"versions"]]; + dialogConfigurations[name] = [[FBSDKDialogConfiguration alloc] initWithName:name + URL:URL + appVersions:appVersions]; + } + } + } + return dialogConfigurations; +} + ++ (BOOL)_serverConfigurationTimestampIsValid:(NSDate *)timestamp +{ + return ([[NSDate date] timeIntervalSinceDate:timestamp] < FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT); +} + ++ (FBSDKCodeBlock)_wrapperBlockForLoadBlock:(FBSDKServerConfigurationBlock)loadBlock +{ + if (!loadBlock) { + return nil; + } + + // create local vars to capture the current values from the ivars to allow this wrapper to be called outside of a lock + FBSDKServerConfiguration *serverConfiguration; + NSError *serverConfigurationError; + @synchronized(self) { + serverConfiguration = _serverConfiguration; + serverConfigurationError = _serverConfigurationError; + } + return ^{ + loadBlock(serverConfiguration, serverConfigurationError); + }; +} + +#pragma mark - Object Lifecycle + +- (instancetype)init +{ + return nil; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h new file mode 100644 index 0000000..2176928 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKAccessToken.h" +#else +#import +#endif + +#import "FBSDKAccessTokenCaching.h" + +NS_SWIFT_NAME(AccessTokenCache) +@interface FBSDKAccessTokenCache : NSObject + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m new file mode 100644 index 0000000..8d1ca02 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m @@ -0,0 +1,99 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAccessTokenCache.h" + +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKKeychainStore.h" + +static NSString *const kFBSDKAccessTokenUserDefaultsKey = @"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey"; +static NSString *const kFBSDKAccessTokenKeychainKey = @"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey"; +static NSString *const kFBSDKAccessTokenUUIDKey = @"tokenUUID"; +static NSString *const kFBSDKAccessTokenEncodedKey = @"tokenEncoded"; + +@implementation FBSDKAccessTokenCache +{ + FBSDKKeychainStore *_keychainStore; +} + +- (instancetype)init +{ + if ((self = [super init])) { + NSString *keyChainServiceIdentifier = [NSString stringWithFormat:@"com.facebook.sdk.tokencache.%@", [NSBundle mainBundle].bundleIdentifier]; + _keychainStore = [[FBSDKKeychainStore alloc] initWithService:keyChainServiceIdentifier accessGroup:nil]; + } + return self; +} + +- (FBSDKAccessToken *)accessToken +{ + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *uuid = [defaults objectForKey:kFBSDKAccessTokenUserDefaultsKey]; + + NSDictionary *dict = [_keychainStore dictionaryForKey:kFBSDKAccessTokenKeychainKey]; + if ([dict[kFBSDKAccessTokenUUIDKey] isKindOfClass:[NSString class]]) { + // there is a bug while running on simulator that the uuid stored in dict can be NSData, + // do a type check to make sure it is NSString + if ([dict[kFBSDKAccessTokenUUIDKey] isEqualToString:uuid]) { + id tokenData = dict[kFBSDKAccessTokenEncodedKey]; + if ([tokenData isKindOfClass:[NSData class]]) { + return [NSKeyedUnarchiver unarchiveObjectWithData:tokenData]; + } + } + } + // if the uuid doesn't match (including if there is no uuid in defaults which means uninstalled case) + // clear the keychain and return nil. + [self clearCache]; + return nil; +} + +- (void)setAccessToken:(FBSDKAccessToken *)token +{ + if (!token) { + [self clearCache]; + return; + } + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + NSString *uuid = [defaults objectForKey:kFBSDKAccessTokenUserDefaultsKey]; + if (!uuid) { + uuid = [NSUUID UUID].UUIDString; + [defaults setObject:uuid forKey:kFBSDKAccessTokenUserDefaultsKey]; + [defaults synchronize]; + } + NSData *tokenData = [NSKeyedArchiver archivedDataWithRootObject:token]; + NSDictionary *dict = @{ + kFBSDKAccessTokenUUIDKey : uuid, + kFBSDKAccessTokenEncodedKey : tokenData + }; + + [_keychainStore setDictionary:dict + forKey:kFBSDKAccessTokenKeychainKey + accessibility:[FBSDKDynamicFrameworkLoader loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly]]; +} + +- (void)clearCache +{ + [_keychainStore setDictionary:nil + forKey:kFBSDKAccessTokenKeychainKey + accessibility:NULL]; + NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; + [defaults removeObjectForKey:kFBSDKAccessTokenUserDefaultsKey]; + [defaults synchronize]; +} +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h new file mode 100644 index 0000000..e5595db --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h @@ -0,0 +1,30 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +@class FBSDKAccessToken; + +NS_SWIFT_NAME(AccessTokenCaching) +@protocol FBSDKAccessTokenCaching + +@property (nonatomic, copy) FBSDKAccessToken *accessToken; + +- (void)clearCache; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.h new file mode 100644 index 0000000..5b9636d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.h @@ -0,0 +1,24 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(AccessTokenExpirer) +@interface FBSDKAccessTokenExpirer : NSObject + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.m new file mode 100644 index 0000000..05cda61 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.m @@ -0,0 +1,71 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKAccessTokenExpirer.h" + +#import "FBSDKAccessToken.h" +#import "FBSDKApplicationDelegate+Internal.h" +#import "FBSDKInternalUtility.h" + +@implementation FBSDKAccessTokenExpirer +{ + NSTimer *_timer; +} + +- (instancetype)init +{ + if (self = [super init]) { + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_checkAccessTokenExpirationDate) name:FBSDKAccessTokenDidChangeNotification object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_checkAccessTokenExpirationDate) name:FBSDKApplicationDidBecomeActiveNotification object:nil]; + [self _checkAccessTokenExpirationDate]; + } + return self; +} + +- (void)dealloc +{ + [_timer invalidate]; + _timer = nil; + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +- (void)_checkAccessTokenExpirationDate +{ + [_timer invalidate]; + _timer = nil; + FBSDKAccessToken *accessToken = FBSDKAccessToken.currentAccessToken; + if (accessToken == nil || accessToken.isExpired) { + return; + } + _timer = [NSTimer scheduledTimerWithTimeInterval:accessToken.expirationDate.timeIntervalSinceNow target:self selector:@selector(_timerDidFire) userInfo:nil repeats:NO]; +} + +- (void)_timerDidFire +{ + FBSDKAccessToken *accessToken = FBSDKAccessToken.currentAccessToken; + NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; + [FBSDKBasicUtility dictionary:userInfo setObject:accessToken forKey:FBSDKAccessTokenChangeNewKey]; + [FBSDKBasicUtility dictionary:userInfo setObject:accessToken forKey:FBSDKAccessTokenChangeOldKey]; + userInfo[FBSDKAccessTokenDidExpireKey] = @YES; + + [[NSNotificationCenter defaultCenter] postNotificationName:FBSDKAccessTokenDidChangeNotification + object:[FBSDKAccessToken class] + userInfo:userInfo]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h new file mode 100644 index 0000000..15fc40b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h @@ -0,0 +1,43 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(KeychainStore) +@interface FBSDKKeychainStore : NSObject + +@property (nonatomic, readonly, copy) NSString *service; +@property (nonatomic, readonly, copy) NSString *accessGroup; + +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)initWithService:(NSString *)service accessGroup:(NSString *)accessGroup NS_DESIGNATED_INITIALIZER; + +- (BOOL)setDictionary:(NSDictionary *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility; +- (NSDictionary *)dictionaryForKey:(NSString *)key; + +- (BOOL)setString:(NSString *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility; +- (NSString *)stringForKey:(NSString *)key; + +- (BOOL)setData:(NSData *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility; +- (NSData *)dataForKey:(NSString *)key; + +// hook for subclasses to override keychain query construction. +- (NSMutableDictionary *)queryForKey:(NSString *)key; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m new file mode 100644 index 0000000..78bc9d6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m @@ -0,0 +1,166 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKKeychainStore.h" + +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +@implementation FBSDKKeychainStore + +- (instancetype)initWithService:(NSString *)service accessGroup:(NSString *)accessGroup +{ + if ((self = [super init])) { + _service = service ? [service copy] : [NSBundle mainBundle].bundleIdentifier; + _accessGroup = [accessGroup copy]; + NSAssert(_service, @"Keychain must be initialized with service"); + } + + return self; +} + +- (BOOL)setDictionary:(NSDictionary *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility +{ + NSData *data = value == nil ? nil : [NSKeyedArchiver archivedDataWithRootObject:value]; + return [self setData:data forKey:key accessibility:accessibility]; +} + +- (NSDictionary *)dictionaryForKey:(NSString *)key +{ + NSData *data = [self dataForKey:key]; + if (!data) { + return nil; + } + + NSDictionary *dict = [NSKeyedUnarchiver unarchiveObjectWithData:data]; + if (![dict isKindOfClass:[NSDictionary class]]) { + return nil; + } + + return dict; +} + +- (BOOL)setString:(NSString *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility +{ + NSData *data = [value dataUsingEncoding:NSUTF8StringEncoding]; + return [self setData:data forKey:key accessibility:accessibility]; +} + +- (NSString *)stringForKey:(NSString *)key +{ + NSData *data = [self dataForKey:key]; + if (!data) { + return nil; + } + + return [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; +} + +- (BOOL)setData:(NSData *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility +{ + if (!key) { + return NO; + } + +#if TARGET_OS_SIMULATOR + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational + logEntry:@"Falling back to storing access token in NSUserDefaults because of simulator bug"]; + [[NSUserDefaults standardUserDefaults] setObject:value forKey:key]; + + return [[NSUserDefaults standardUserDefaults] synchronize]; +#else + NSMutableDictionary *query = [self queryForKey:key]; + + OSStatus status; + if (value) { + NSMutableDictionary *attributesToUpdate = [NSMutableDictionary dictionary]; + [attributesToUpdate setObject:value forKey:[FBSDKDynamicFrameworkLoader loadkSecValueData]]; + + status = fbsdkdfl_SecItemUpdate((__bridge CFDictionaryRef)query, (__bridge CFDictionaryRef)attributesToUpdate); + if (status == errSecItemNotFound) { +#if !TARGET_OS_TV + if (@available(macOS 10.9, iOS 8, *)) { + if (accessibility) { + [query setObject:(__bridge id)(accessibility) forKey:[FBSDKDynamicFrameworkLoader loadkSecAttrAccessible]]; + } + } +#endif + [query setObject:value forKey:[FBSDKDynamicFrameworkLoader loadkSecValueData]]; + + status = fbsdkdfl_SecItemAdd((__bridge CFDictionaryRef)query, NULL); + } + } else { + status = fbsdkdfl_SecItemDelete((__bridge CFDictionaryRef)query); + if (status == errSecItemNotFound) { + status = errSecSuccess; + } + } + + return (status == errSecSuccess); +#endif +} + +- (NSData *)dataForKey:(NSString *)key +{ + if (!key) { + return nil; + } + +#if TARGET_OS_SIMULATOR + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational + logEntry:@"Falling back to loading access token from NSUserDefaults because of simulator bug"]; + return [[NSUserDefaults standardUserDefaults] dataForKey:key]; +#else + NSMutableDictionary *query = [self queryForKey:key]; + [query setObject:(id)kCFBooleanTrue forKey:[FBSDKDynamicFrameworkLoader loadkSecReturnData]]; + [query setObject:[FBSDKDynamicFrameworkLoader loadkSecMatchLimitOne] forKey:[FBSDKDynamicFrameworkLoader loadkSecMatchLimit]]; + + CFTypeRef data = nil; + OSStatus status = fbsdkdfl_SecItemCopyMatching((__bridge CFDictionaryRef)query, &data); + if (status != errSecSuccess) { + return nil; + } + + if (!data || CFGetTypeID(data) != CFDataGetTypeID()) { + return nil; + } + + NSData *ret = [NSData dataWithData:(__bridge NSData *)(data)]; + CFRelease(data); + + return ret; +#endif +} + +- (NSMutableDictionary *)queryForKey:(NSString *)key +{ + NSMutableDictionary *query = [NSMutableDictionary dictionary]; + [query setObject:[FBSDKDynamicFrameworkLoader loadkSecClassGenericPassword] forKey:[FBSDKDynamicFrameworkLoader loadkSecClass]]; + [query setObject:_service forKey:[FBSDKDynamicFrameworkLoader loadkSecAttrService]]; + [query setObject:key forKey:[FBSDKDynamicFrameworkLoader loadkSecAttrAccount]]; +#if !TARGET_IPHONE_SIMULATOR + if (_accessGroup) { + [query setObject:_accessGroup forKey:[FBSDKDynamicFrameworkLoader loadkSecAttrAccessGroup]]; + } +#endif + + return query; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h new file mode 100644 index 0000000..85ae2d0 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h @@ -0,0 +1,30 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKKeychainStore.h" + +// This is the keychainstore defined in 3.17 that incorrectly used the bundle id as the service id +// and should NOT be used outside of this cache. +NS_SWIFT_NAME(KeychainStoreViaBundleID) +@interface FBSDKKeychainStoreViaBundleID : FBSDKKeychainStore + +// since this subclass represents the old keychainstore behavior, +// the designated initializer is just the `init`. +- (instancetype)init NS_DESIGNATED_INITIALIZER; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m new file mode 100644 index 0000000..6fdc12b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m @@ -0,0 +1,50 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKKeychainStoreViaBundleID.h" + +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKInternalUtility.h" + +@implementation FBSDKKeychainStoreViaBundleID + +- (instancetype)init +{ + return [super initWithService:[NSBundle mainBundle].bundleIdentifier accessGroup:nil]; +} + +- (instancetype)initWithService:(NSString *)service accessGroup:(NSString *)accessGroup +{ + return [self init]; +} + +- (NSMutableDictionary*)queryForKey:(NSString *)key +{ + NSMutableDictionary *query = [NSMutableDictionary dictionary]; + query[(__bridge id)[FBSDKDynamicFrameworkLoader loadkSecClass]] = (__bridge id)([FBSDKDynamicFrameworkLoader loadkSecClassGenericPassword]); + query[(__bridge id)[FBSDKDynamicFrameworkLoader loadkSecAttrService]] = self.service; + query[(__bridge id)[FBSDKDynamicFrameworkLoader loadkSecAttrGeneric]] = key; + +#if !TARGET_IPHONE_SIMULATOR + [FBSDKBasicUtility dictionary:query setObject:self.accessGroup forKey:[FBSDKDynamicFrameworkLoader loadkSecAttrAccessGroup]]; +#endif + + return query; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h new file mode 100644 index 0000000..6bb7db4 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h @@ -0,0 +1,66 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#if SWIFT_PACKAGE +#import "FBSDKButton.h" +#else +#import +#endif + +#import "FBSDKIcon.h" + +NS_SWIFT_NAME(FBButtonImpressionTracking) +@protocol FBSDKButtonImpressionTracking + +@property (nonatomic, readonly, copy) NSDictionary *analyticsParameters; +@property (nonatomic, readonly, copy) NSString *impressionTrackingEventName; +@property (nonatomic, readonly, copy) NSString *impressionTrackingIdentifier; + +@end + +@interface FBSDKButton () + +@property (nonatomic, readonly, getter=isImplicitlyDisabled) BOOL implicitlyDisabled; + +- (void)logTapEventWithEventName:(NSString *)eventName + parameters:(NSDictionary *)parameters; +- (void)checkImplicitlyDisabled; +- (void)configureButton; +- (void)configureWithIcon:(FBSDKIcon *)icon + title:(NSString *)title + backgroundColor:(UIColor *)backgroundColor + highlightedColor:(UIColor *)highlightedColor; +- (void)configureWithIcon:(FBSDKIcon *)icon + title:(NSString *)title + backgroundColor:(UIColor *)backgroundColor + highlightedColor:(UIColor *)highlightedColor + selectedTitle:(NSString *)selectedTitle + selectedIcon:(FBSDKIcon *)selectedIcon + selectedColor:(UIColor *)selectedColor + selectedHighlightedColor:(UIColor *)selectedHighlightedColor; +- (UIColor *)defaultBackgroundColor; +- (UIColor *)defaultDisabledColor; +- (UIFont *)defaultFont; +- (UIColor *)defaultHighlightedColor; +- (FBSDKIcon *)defaultIcon; +- (UIColor *)defaultSelectedColor; +- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h new file mode 100644 index 0000000..79ab329 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_SWIFT_NAME(FBCloseIcon) +@interface FBSDKCloseIcon : NSObject + +- (UIImage *)imageWithSize:(CGSize)size; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m new file mode 100644 index 0000000..244efca --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m @@ -0,0 +1,93 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKCloseIcon.h" + +@implementation FBSDKCloseIcon + +#pragma mark - Public API + +- (UIImage *)imageWithSize:(CGSize)size +{ + CGFloat scale = [UIScreen mainScreen].scale; + UIGraphicsBeginImageContextWithOptions(size, NO, scale); + CGContextRef context = UIGraphicsGetCurrentContext(); + + CGFloat iconSize = MIN(size.width, size.height); + + CGRect rect = CGRectMake((size.width - iconSize) / 2, (size.height - iconSize) / 2, iconSize, iconSize); + CGFloat step = iconSize / 12; + + // shadow + rect = CGRectIntegral(CGRectInset(rect, step, step)); + NSArray *colors = @[ + (__bridge id)[UIColor colorWithWhite:0.0 alpha:0.7].CGColor, + (__bridge id)[UIColor colorWithWhite:0.0 alpha:0.3].CGColor, + (__bridge id)[UIColor colorWithWhite:0.0 alpha:0.1].CGColor, + (__bridge id)[UIColor colorWithWhite:0.0 alpha:0.0].CGColor, + ]; + CGFloat locations[4] = { + 0.70, + 0.80, + 0.90, + 1.0, + }; + CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray(); + CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (__bridge CFArrayRef)colors, locations); + CGColorSpaceRelease(colorSpace); + CGPoint center = CGPointMake(CGRectGetMidX(rect) - step / 6, CGRectGetMidY(rect) + step / 4); + CGContextDrawRadialGradient(context, gradient, center, 0.0, center, (CGRectGetWidth(rect) - step / 2) / 2, 0); + CGGradientRelease(gradient); + + // outer circle + rect = CGRectIntegral(CGRectInset(rect, step, step)); + [[UIColor whiteColor] setFill]; + CGContextFillEllipseInRect(context, rect); + + // inner circle + rect = CGRectIntegral(CGRectInset(rect, step, step)); + [[UIColor blackColor] setFill]; + CGContextFillEllipseInRect(context, rect); + + // cross + rect = CGRectIntegral(CGRectInset(rect, step, step)); + CGFloat lineWidth = step * 5 / 4; + rect.origin.y = CGRectGetMidY(rect) - lineWidth / 2; + rect.size.height = lineWidth; + [[UIColor whiteColor] setFill]; + CGContextTranslateCTM(context, size.width / 2, size.height / 2); + CGContextRotateCTM(context, M_PI_4); + CGContextTranslateCTM(context, -size.width / 2, -size.height / 2); + CGContextFillRect(context, rect); + CGContextTranslateCTM(context, size.width / 2, size.height / 2); + CGContextRotateCTM(context, M_PI_2); + CGContextTranslateCTM(context, -size.width / 2, -size.height / 2); + CGContextFillRect(context, rect); + + UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); + UIGraphicsEndImageContext(); + return image; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h new file mode 100644 index 0000000..f18c98d --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h @@ -0,0 +1,28 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +UIColor *FBSDKUIColorWithRGBA(uint8_t r, uint8_t g, uint8_t b, CGFloat a); +UIColor *FBSDKUIColorWithRGB(uint8_t r, uint8_t g, uint8_t b); + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m new file mode 100644 index 0000000..2d27478 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m @@ -0,0 +1,37 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKColor.h" + +static const CGFloat kFBRGBMax = 255.0; + +UIColor *FBSDKUIColorWithRGBA(uint8_t r, uint8_t g, uint8_t b, CGFloat a) +{ + return [UIColor colorWithRed:(r / kFBRGBMax) green:(g / kFBRGBMax) blue:(b / kFBRGBMax) alpha:a]; +} + +UIColor *FBSDKUIColorWithRGB(uint8_t r, uint8_t g, uint8_t b) +{ + return FBSDKUIColorWithRGBA(r, g, b, 1.0); +} + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h new file mode 100644 index 0000000..ca78c86 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(Icon) +@interface FBSDKIcon : NSObject + +- (instancetype)initWithColor:(UIColor *)color NS_DESIGNATED_INITIALIZER; + +@property (nonatomic, strong, readonly) UIColor *color; + +- (UIImage *)imageWithSize:(CGSize)size; + +- (CGPathRef)pathWithSize:(CGSize)size; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m new file mode 100644 index 0000000..b46a8d6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m @@ -0,0 +1,62 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKIcon.h" + +@implementation FBSDKIcon + +#pragma mark - Object Lifecycle + +- (instancetype)initWithColor:(UIColor *)color +{ + if ((self = [super init])) { + _color = [color copy]; + } + return self; +} + +- (instancetype)init +{ + return [self initWithColor:[UIColor whiteColor]]; +} + +#pragma mark - Public API + +- (UIImage *)imageWithSize:(CGSize)size +{ + if ((size.width == 0) || (size.height == 0)) { + return nil; + } + CGFloat scale = [UIScreen mainScreen].scale; + UIGraphicsBeginImageContextWithOptions(size, NO, scale); + CGContextRef context = UIGraphicsGetCurrentContext(); + CGPathRef path = [self pathWithSize:size]; + CGContextAddPath(context, path); + CGContextSetFillColorWithColor(context, self.color.CGColor); + CGContextFillPath(context); + UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); + UIGraphicsEndImageContext(); + return image; +} + +- (CGPathRef)pathWithSize:(CGSize)size +{ + return NULL; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h new file mode 100644 index 0000000..b7432a6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h @@ -0,0 +1,26 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +#import "FBSDKIcon.h" + +NS_SWIFT_NAME(FBLogo) +@interface FBSDKLogo : FBSDKIcon + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m new file mode 100644 index 0000000..f13364f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m @@ -0,0 +1,71 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKLogo.h" + +@implementation FBSDKLogo + +- (CGPathRef)pathWithSize:(CGSize)size +{ + CGFloat originalCanvasWidth = 1366; + CGFloat originalCanvasHeight = 1366; + + CGAffineTransform transformValue = CGAffineTransformMakeScale(size.width / originalCanvasWidth, size.height / originalCanvasHeight); + + UIBezierPath* path = [UIBezierPath bezierPath]; + [path moveToPoint: CGPointMake(1365.33, 682.67)]; + [path addCurveToPoint: CGPointMake(682.67, -0) + controlPoint1: CGPointMake(1365.33, 305.64) + controlPoint2: CGPointMake(1059.69, -0)]; + [path addCurveToPoint: CGPointMake(0, 682.67) + controlPoint1: CGPointMake(305.64, -0) + controlPoint2: CGPointMake(0, 305.64)]; + [path addCurveToPoint: CGPointMake(576, 1357.04) + controlPoint1: CGPointMake(0, 1023.41) + controlPoint2: CGPointMake(249.64, 1305.83)]; + [path addLineToPoint: CGPointMake(576, 880)]; + [path addLineToPoint: CGPointMake(402.67, 880)]; + [path addLineToPoint: CGPointMake(402.67, 682.67)]; + [path addLineToPoint: CGPointMake(576, 682.67)]; + [path addLineToPoint: CGPointMake(576, 532.27)]; + [path addCurveToPoint: CGPointMake(833.85, 266.67) + controlPoint1: CGPointMake(576, 361.17) + controlPoint2: CGPointMake(677.92, 266.67)]; + [path addCurveToPoint: CGPointMake(986.67, 280) + controlPoint1: CGPointMake(908.54, 266.67) + controlPoint2: CGPointMake(986.67, 280)]; + [path addLineToPoint: CGPointMake(986.67, 448)]; + [path addLineToPoint: CGPointMake(900.58, 448)]; + [path addCurveToPoint: CGPointMake(789.33, 554.61) + controlPoint1: CGPointMake(815.78, 448) + controlPoint2: CGPointMake(789.33, 500.62)]; + [path addLineToPoint: CGPointMake(789.33, 682.67)]; + [path addLineToPoint: CGPointMake(978.67, 682.67)]; + [path addLineToPoint: CGPointMake(948.4, 880)]; + [path addLineToPoint: CGPointMake(789.33, 880)]; + [path addLineToPoint: CGPointMake(789.33, 1357.04)]; + [path addCurveToPoint: CGPointMake(1365.33, 682.67) + controlPoint1: CGPointMake(1115.69, 1305.83) + controlPoint2: CGPointMake(1365.33, 1023.41)]; + [path closePath]; + [path applyTransform:transformValue]; + + return [path CGPath]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h new file mode 100644 index 0000000..cad25b6 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h @@ -0,0 +1,32 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +#import "FBSDKIcon.h" + +NS_SWIFT_NAME(FBMaleSilhouetteIcon) +@interface FBSDKMaleSilhouetteIcon : FBSDKIcon + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m new file mode 100644 index 0000000..bdd5912 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m @@ -0,0 +1,57 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKMaleSilhouetteIcon.h" + +@implementation FBSDKMaleSilhouetteIcon + +- (CGPathRef)pathWithSize:(CGSize)size +{ + CGAffineTransform transformValue = CGAffineTransformMakeScale(size.width / 158.783, size.height / 158.783); + CGAffineTransform *transform = &transformValue; + CGMutablePathRef path = CGPathCreateMutable(); + CGPathMoveToPoint(path, transform, 158.783, 158.783); + CGPathAddCurveToPoint(path, transform, 156.39, 131.441, 144.912, 136.964, 105.607, 117.32); + CGPathAddCurveToPoint(path, transform, 103.811, 113.941, 103.348, 108.8965, 103.013, 107.4781); + CGPathAddLineToPoint(path, transform, 100.434, 106.7803); + CGPathAddCurveToPoint(path, transform, 97.2363, 82.7701, 100.67, 101.5845, 106.006, 75.2188); + CGPathAddCurveToPoint(path, transform, 107.949, 76.2959, 108.268, 70.7417, 108.971, 66.5743); + CGPathAddCurveToPoint(path, transform, 109.673, 62.4068, 110.864, 58.9082, 107.139, 58.9082); + CGPathAddCurveToPoint(path, transform, 107.94, 42.7652, 110.299, 31.3848, 101.335, 23.3072); + CGPathAddCurveToPoint(path, transform, 92.3808, 15.23781, 87.874, 15.52349, 95.0483, 9.6036128); + CGPathAddCurveToPoint(path, transform, 91.2319, 8.892613, 70.2036, 12.01861, 57.4487, 23.3072); + CGPathAddCurveToPoint(path, transform, 48.4121, 31.3042, 50.8437, 42.7652, 51.6445, 58.9082); + CGPathAddCurveToPoint(path, transform, 47.9194, 58.9082, 49.1108, 62.4068, 49.813, 66.5743); + CGPathAddCurveToPoint(path, transform, 50.5156, 70.7417, 50.8349, 76.2959, 52.7778, 75.2188); + CGPathAddCurveToPoint(path, transform, 58.1138, 110.1135, 61.5478, 82.7701, 58.3501, 106.7803); + CGPathAddLineToPoint(path, transform, 55.7705, 107.4781); + CGPathAddCurveToPoint(path, transform, 55.4355, 108.8965, 54.9722, 113.941, 53.1767, 117.32); + CGPathAddCurveToPoint(path, transform, 13.8711, 136.964, 2.3945, 131.441, 0.0, 158.783); + CGPathAddLineToPoint(path, transform, 158.783, 158.783); + CGPathRef result = CGPathCreateCopy(path); + CGPathRelease(path); + return CFAutorelease(result); +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h new file mode 100644 index 0000000..dfa0233 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h @@ -0,0 +1,77 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +/** + Insets a CGSize with the insets in a UIEdgeInsets. + */ +static inline CGSize FBSDKEdgeInsetsInsetSize(CGSize size, UIEdgeInsets insets) +{ + CGRect rect = CGRectZero; + rect.size = size; + return UIEdgeInsetsInsetRect(rect, insets).size; +} + +/** + Outsets a CGSize with the insets in a UIEdgeInsets. + */ +static inline CGSize FBSDKEdgeInsetsOutsetSize(CGSize size, UIEdgeInsets insets) +{ + return CGSizeMake(insets.left + size.width + insets.right, + insets.top + size.height + insets.bottom); +} + +/** + Limits a CGFloat value, using the scale to limit to pixels (instead of points). + + + The limitFunction is frequention floorf, ceilf or roundf. If the scale is 2.0, + you may get back values of *.5 to correspond to pixels. + */ +typedef float (*FBSDKLimitFunctionType)(float); +static inline CGFloat FBSDKPointsForScreenPixels(FBSDKLimitFunctionType limitFunction, + CGFloat screenScale, + CGFloat pointValue) +{ + return limitFunction(pointValue * screenScale) / screenScale; +} + +static inline CGSize FBSDKTextSize(NSString *text, + UIFont *font, + CGSize constrainedSize, + NSLineBreakMode lineBreakMode) +{ + if (!text) { + return CGSizeZero; + } + + NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init]; + paragraphStyle.lineBreakMode = lineBreakMode; + NSDictionary *attributes = @{ + NSFontAttributeName: font, + NSParagraphStyleAttributeName: paragraphStyle, + }; + NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:text attributes:attributes]; + CGSize size = [attributedString boundingRectWithSize:constrainedSize + options:(NSStringDrawingUsesDeviceMetrics | + NSStringDrawingUsesLineFragmentOrigin | + NSStringDrawingUsesFontLeading) + context:NULL].size; + return CGSizeMake(ceilf(size.width), ceilf(size.height)); +} diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h new file mode 100644 index 0000000..d69ee86 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h @@ -0,0 +1,30 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import + +NS_SWIFT_NAME(ViewImpressionTracker) +@interface FBSDKViewImpressionTracker : NSObject + ++ (instancetype)impressionTrackerWithEventName:(NSString *)eventName; + +@property (nonatomic, copy, readonly) NSString *eventName; + +- (void)logImpressionWithIdentifier:(NSString *)identifier parameters:(NSDictionary *)parameters; + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m new file mode 100644 index 0000000..f20f584 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m @@ -0,0 +1,97 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKViewImpressionTracker.h" + +#import "FBSDKAccessToken.h" +#import "FBSDKAppEvents+Internal.h" + +@implementation FBSDKViewImpressionTracker +{ + NSMutableSet *_trackedImpressions; +} + +#pragma mark - Class Methods + ++ (instancetype)impressionTrackerWithEventName:(NSString *)eventName +{ + static NSMutableDictionary *_impressionTrackers = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _impressionTrackers = [[NSMutableDictionary alloc] init]; + }); + // Maintains a single instance of an impression tracker for each event name + FBSDKViewImpressionTracker *impressionTracker = _impressionTrackers[eventName]; + if (!impressionTracker) { + impressionTracker = [[self alloc] initWithEventName:eventName]; + _impressionTrackers[eventName] = impressionTracker; + } + return impressionTracker; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithEventName:(NSString *)eventName +{ + if ((self = [super init])) { + _eventName = [eventName copy]; + _trackedImpressions = [[NSMutableSet alloc] init]; + + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(_applicationDidEnterBackgroundNotification:) + name:UIApplicationDidEnterBackgroundNotification + object:[UIApplication sharedApplication]]; + } + return self; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - Public API + +- (void)logImpressionWithIdentifier:(NSString *)identifier parameters:(NSDictionary *)parameters +{ + NSMutableDictionary *keys = [NSMutableDictionary dictionary]; + keys[@"__view_impression_identifier__"] = identifier; + [keys addEntriesFromDictionary:parameters]; + NSDictionary *impressionKey = [keys copy]; + // Ensure that each impression is only tracked once + if ([_trackedImpressions containsObject:impressionKey]) { + return; + } + [_trackedImpressions addObject:impressionKey]; + + [FBSDKAppEvents logInternalEvent:self.eventName + parameters:parameters + isImplicitlyLogged:YES + accessToken:[FBSDKAccessToken currentAccessToken]]; +} + +#pragma mark - Helper Methods + +- (void)_applicationDidEnterBackgroundNotification:(NSNotification *)notification +{ + // reset all tracked impressions when the app backgrounds so we will start tracking them again the next time they + // are triggered. + [_trackedImpressions removeAllObjects]; +} + +@end diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h new file mode 100644 index 0000000..10daa67 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h @@ -0,0 +1,53 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +NS_SWIFT_NAME(WebDialogDelegate) +@protocol FBSDKWebDialogDelegate; + +NS_SWIFT_NAME(WebDialog) +@interface FBSDKWebDialog : NSObject + ++ (instancetype)showWithName:(NSString *)name + parameters:(NSDictionary *)parameters + delegate:(id)delegate; + +@property (nonatomic, assign, getter=shouldDeferVisibility) BOOL deferVisibility; +@property (nonatomic, weak) id delegate; +@property (nonatomic, copy) NSString *name; +@property (nonatomic, copy) NSDictionary *parameters; + +- (BOOL)show; + +@end + +NS_SWIFT_NAME(WebDialogDelegate) +@protocol FBSDKWebDialogDelegate + +- (void)webDialog:(FBSDKWebDialog *)webDialog didCompleteWithResults:(NSDictionary *)results; +- (void)webDialog:(FBSDKWebDialog *)webDialog didFailWithError:(NSError *)error; +- (void)webDialogDidCancel:(FBSDKWebDialog *)webDialog; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m new file mode 100644 index 0000000..66935ab --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m @@ -0,0 +1,350 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKWebDialog.h" + +#import "FBSDKAccessToken.h" +#import "FBSDKDynamicFrameworkLoader.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" +#import "FBSDKTypeUtility.h" +#import "FBSDKWebDialogView.h" + +#define FBSDK_WEB_DIALOG_SHOW_ANIMATION_DURATION 0.2 +#define FBSDK_WEB_DIALOG_DISMISS_ANIMATION_DURATION 0.3 + +typedef void (^FBSDKBoolBlock)(BOOL finished); + +static FBSDKWebDialog *g_currentDialog = nil; + +@interface FBSDKWebDialog () +@end + +@implementation FBSDKWebDialog +{ + UIView *_backgroundView; + FBSDKWebDialogView *_dialogView; +} + +#pragma mark - Class Methods + ++ (instancetype)showWithName:(NSString *)name + parameters:(NSDictionary *)parameters + delegate:(id)delegate +{ + FBSDKWebDialog *dialog = [[self alloc] init]; + dialog.name = name; + dialog.parameters = parameters; + dialog.delegate = delegate; + [dialog show]; + return dialog; +} + +#pragma mark - Object Lifecycle + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; + _dialogView.delegate = nil; + [_dialogView removeFromSuperview]; + [_backgroundView removeFromSuperview]; +} + +#pragma mark - Public Methods + +- (BOOL)show +{ + if (g_currentDialog == self) { + return NO; + } + [g_currentDialog _dismissAnimated:YES]; + + NSError *error; + NSURL *URL = [self _generateURL:&error]; + if (!URL) { + [self _failWithError:error]; + return NO; + } + + g_currentDialog = self; + + UIWindow *window = [FBSDKInternalUtility findWindow]; + if (!window) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"There are no valid ViewController to present FBSDKWebDialog", nil]; + [self _failWithError:nil]; + return NO; + } + + CGRect frame = [self _applicationFrameForOrientation]; + _dialogView = [[FBSDKWebDialogView alloc] initWithFrame:frame]; + + _dialogView.delegate = self; + [_dialogView loadURL:URL]; + + if (!_deferVisibility) { + [self _showWebView]; + } + + return YES; +} + +#pragma mark - FBSDKWebDialogViewDelegate + +- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didCompleteWithResults:(NSDictionary *)results +{ + [self _completeWithResults:results]; +} + +- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didFailWithError:(NSError *)error +{ + [self _failWithError:error]; +} + +- (void)webDialogViewDidCancel:(FBSDKWebDialogView *)webDialogView +{ + [self _cancel]; +} + +- (void)webDialogViewDidFinishLoad:(FBSDKWebDialogView *)webDialogView +{ + if (_deferVisibility) { + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.05 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ + if (self->_dialogView) { + [self _showWebView]; + } + }); + } +} + +#pragma mark - Notifications + +- (void)_addObservers +{ + NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; + [nc addObserver:self + selector:@selector(_deviceOrientationDidChangeNotification:) + name:UIDeviceOrientationDidChangeNotification + object:nil]; +} + +- (void)_deviceOrientationDidChangeNotification:(NSNotification *)notification +{ + BOOL animated = [FBSDKTypeUtility boolValue:notification.userInfo[@"UIDeviceOrientationRotateAnimatedUserInfoKey"]]; + Class CATransactionClass = fbsdkdfl_CATransactionClass(); + CFTimeInterval animationDuration = (animated ? [CATransactionClass animationDuration] : 0.0); + [self _updateViewsWithScale:1.0 alpha:1.0 animationDuration:animationDuration completion:^(BOOL finished) { + if (finished) { + [self->_dialogView setNeedsDisplay]; + } + }]; +} + +- (void)_removeObservers +{ + NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; + [nc removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil]; +} + +#pragma mark - Helper Methods + +- (void)_cancel +{ + FBSDKWebDialog *dialog = self; + [self _dismissAnimated:YES]; // may cause the receiver to be released + [_delegate webDialogDidCancel:dialog]; +} + +- (void)_completeWithResults:(NSDictionary *)results +{ + FBSDKWebDialog *dialog = self; + [self _dismissAnimated:YES]; // may cause the receiver to be released + [_delegate webDialog:dialog didCompleteWithResults:results]; +} + +- (void)_dismissAnimated:(BOOL)animated +{ + [self _removeObservers]; + UIView *backgroundView = _backgroundView; + _backgroundView = nil; + FBSDKWebDialogView *dialogView = _dialogView; + _dialogView.delegate = nil; + _dialogView = nil; + void(^didDismiss)(BOOL) = ^(BOOL finished){ + [backgroundView removeFromSuperview]; + [dialogView removeFromSuperview]; + }; + if (animated) { + [UIView animateWithDuration:FBSDK_WEB_DIALOG_DISMISS_ANIMATION_DURATION animations:^{ + dialogView.alpha = 0.0; + backgroundView.alpha = 0.0; + } completion:didDismiss]; + } else { + didDismiss(YES); + } + if (g_currentDialog == self) { + g_currentDialog = nil; + } +} + +- (void)_failWithError:(NSError *)error +{ + // defer so that the consumer is guaranteed to have an opportunity to set the delegate before we fail + dispatch_async(dispatch_get_main_queue(), ^{ + [self _dismissAnimated:YES]; + [self->_delegate webDialog:self didFailWithError:error]; + }); +} + +- (NSURL *)_generateURL:(NSError **)errorRef +{ + NSMutableDictionary *parameters = [[NSMutableDictionary alloc] init]; + parameters[@"display"] = @"touch"; + parameters[@"sdk"] = [NSString stringWithFormat:@"ios-%@", [FBSDKSettings sdkVersion]]; + parameters[@"redirect_uri"] = @"fbconnect://success"; + [FBSDKBasicUtility dictionary:parameters setObject:[FBSDKSettings appID] forKey:@"app_id"]; + [FBSDKBasicUtility dictionary:parameters + setObject:[FBSDKAccessToken currentAccessToken].tokenString + forKey:@"access_token"]; + [parameters addEntriesFromDictionary:self.parameters]; + return [FBSDKInternalUtility facebookURLWithHostPrefix:@"m" + path:[@"/dialog/" stringByAppendingString:self.name] + queryParameters:parameters + error:errorRef]; +} + +- (BOOL)_showWebView +{ + UIWindow *window = [FBSDKInternalUtility findWindow]; + if (!window) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + formatString:@"There are no valid ViewController to present FBSDKWebDialog", nil]; + [self _failWithError:nil]; + return NO; + } + + [self _addObservers]; + + _backgroundView = [[UIView alloc] initWithFrame:window.bounds]; + _backgroundView.alpha = 0.0; + _backgroundView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight); + _backgroundView.backgroundColor = [UIColor colorWithWhite:0.3 alpha:0.8]; + [window addSubview:_backgroundView]; + [window addSubview:_dialogView]; + + [_dialogView becomeFirstResponder]; // dismisses the keyboard if it there was another first responder with it + [self _updateViewsWithScale:0.001 alpha:0.0 animationDuration:0.0 completion:NULL]; + [self _updateViewsWithScale:1.1 alpha:1.0 animationDuration:FBSDK_WEB_DIALOG_SHOW_ANIMATION_DURATION completion:^(BOOL finished1) { + [self _updateViewsWithScale:0.9 alpha:1.0 animationDuration:FBSDK_WEB_DIALOG_SHOW_ANIMATION_DURATION completion:^(BOOL finished2) { + [self _updateViewsWithScale:1.0 alpha:1.0 animationDuration:FBSDK_WEB_DIALOG_SHOW_ANIMATION_DURATION completion:NULL]; + }]; + }]; + return YES; +} + +- (CGAffineTransform)_transformForOrientation +{ + // iOS 8 simply adjusts the application frame to adapt to the current orientation and deprecated the concept of + // interface orientations + if ([FBSDKInternalUtility shouldManuallyAdjustOrientation]) { + switch ([UIApplication sharedApplication].statusBarOrientation) { + case UIInterfaceOrientationLandscapeLeft: + return CGAffineTransformMakeRotation(M_PI * 1.5); + case UIInterfaceOrientationLandscapeRight: + return CGAffineTransformMakeRotation(M_PI/2); + case UIInterfaceOrientationPortraitUpsideDown: + return CGAffineTransformMakeRotation(-M_PI); + case UIInterfaceOrientationPortrait: + case UIInterfaceOrientationUnknown: + // don't adjust the orientation + break; + } + } + return CGAffineTransformIdentity; +} + +- (CGRect)_applicationFrameForOrientation +{ + CGRect applicationFrame = _dialogView.window.screen.bounds; + + UIEdgeInsets insets = UIEdgeInsetsZero; +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_11_0 + if (@available(iOS 11.0, *)) { + insets = _dialogView.window.safeAreaInsets; + } +#endif + + if (insets.top == 0.0) { + insets.top = [[UIApplication sharedApplication] statusBarFrame].size.height; + } + applicationFrame.origin.x += insets.left; + applicationFrame.origin.y += insets.top; + applicationFrame.size.width -= insets.left + insets.right; + applicationFrame.size.height -= insets.top + insets.bottom; + + if ([FBSDKInternalUtility shouldManuallyAdjustOrientation]) { + switch ([UIApplication sharedApplication].statusBarOrientation) { + case UIInterfaceOrientationLandscapeLeft: + case UIInterfaceOrientationLandscapeRight: + return CGRectMake(0, 0, CGRectGetHeight(applicationFrame), CGRectGetWidth(applicationFrame)); + case UIInterfaceOrientationPortraitUpsideDown: + case UIInterfaceOrientationPortrait: + case UIInterfaceOrientationUnknown: + return applicationFrame; + } + } else { + return applicationFrame; + } +} + +- (void)_updateViewsWithScale:(CGFloat)scale + alpha:(CGFloat)alpha + animationDuration:(CFTimeInterval)animationDuration + completion:(FBSDKBoolBlock)completion +{ + CGAffineTransform transform; + CGRect applicationFrame = [self _applicationFrameForOrientation]; + if (scale == 1.0) { + transform = _dialogView.transform; + _dialogView.transform = CGAffineTransformIdentity; + _dialogView.frame = applicationFrame; + _dialogView.transform = transform; + } + transform = CGAffineTransformScale([self _transformForOrientation], scale, scale); + void(^updateBlock)(void) = ^{ + self->_dialogView.transform = transform; + self->_dialogView.center = CGPointMake(CGRectGetMidX(applicationFrame), + CGRectGetMidY(applicationFrame)); + self->_dialogView.alpha = alpha; + self->_backgroundView.alpha = alpha; + }; + if (animationDuration == 0.0) { + updateBlock(); + } else { + [UIView animateWithDuration:animationDuration animations:updateBlock completion:completion]; + } +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h new file mode 100644 index 0000000..e24704e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h @@ -0,0 +1,47 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import + +@protocol FBSDKWebDialogViewDelegate; + +NS_SWIFT_NAME(FBWebDialogView) +@interface FBSDKWebDialogView : UIView + +@property (nonatomic, weak) id delegate; + +- (void)loadURL:(NSURL *)URL; +- (void)stopLoading; + +@end + +NS_SWIFT_NAME(WebDialogViewDelegate) +@protocol FBSDKWebDialogViewDelegate + +- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didCompleteWithResults:(NSDictionary *)results; +- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didFailWithError:(NSError *)error; +- (void)webDialogViewDidCancel:(FBSDKWebDialogView *)webDialogView; +- (void)webDialogViewDidFinishLoad:(FBSDKWebDialogView *)webDialogView; + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m new file mode 100644 index 0000000..46f380b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m @@ -0,0 +1,201 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + +#import "FBSDKWebDialogView.h" + +#import + +#import "FBSDKCloseIcon.h" +#import "FBSDKError.h" +#import "FBSDKInternalUtility.h" +#import "FBSDKTypeUtility.h" + +#define FBSDK_WEB_DIALOG_VIEW_BORDER_WIDTH 10.0 + +@interface FBSDKWebDialogView () +@end + +@implementation FBSDKWebDialogView +{ + UIButton *_closeButton; + UIActivityIndicatorView *_loadingView; + WKWebView *_webView; +} + +#pragma mark - Object Lifecycle + +- (instancetype)initWithFrame:(CGRect)frame +{ + if ((self = [super initWithFrame:frame])) { + self.backgroundColor = [UIColor clearColor]; + self.opaque = NO; + + _webView = [[WKWebView alloc] initWithFrame:CGRectZero]; + _webView.navigationDelegate = self; + [self addSubview:_webView]; + + _closeButton = [UIButton buttonWithType:UIButtonTypeCustom]; + UIImage *closeImage = [[[FBSDKCloseIcon alloc] init] imageWithSize:CGSizeMake(29.0, 29.0)]; + [_closeButton setImage:closeImage forState:UIControlStateNormal]; + [_closeButton setTitleColor:[UIColor colorWithRed:167.0/255.0 + green:184.0/255.0 + blue:216.0/255.0 + alpha:1.0] forState:UIControlStateNormal]; + [_closeButton setTitleColor:[UIColor whiteColor] forState:UIControlStateHighlighted]; + _closeButton.showsTouchWhenHighlighted = YES; + [_closeButton sizeToFit]; + [self addSubview:_closeButton]; + [_closeButton addTarget:self action:@selector(_close:) forControlEvents:UIControlEventTouchUpInside]; + + _loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; + _loadingView.color = [UIColor grayColor]; + [_webView addSubview:_loadingView]; + } + return self; +} + +- (void)dealloc +{ + _webView.navigationDelegate = nil; +} + +#pragma mark - Public Methods + +- (void)loadURL:(NSURL *)URL +{ + [_loadingView startAnimating]; + [_webView loadRequest:[NSURLRequest requestWithURL:URL]]; +} + +- (void)stopLoading +{ + [_webView stopLoading]; +} + +#pragma mark - Layout + +- (void)drawRect:(CGRect)rect +{ + CGContextRef context = UIGraphicsGetCurrentContext(); + CGContextSaveGState(context); + [self.backgroundColor setFill]; + CGContextFillRect(context, self.bounds); + [[UIColor blackColor] setStroke]; + CGContextSetLineWidth(context, 1.0 / self.layer.contentsScale); + CGContextStrokeRect(context, _webView.frame); + CGContextRestoreGState(context); + [super drawRect:rect]; +} + +- (void)layoutSubviews +{ + [super layoutSubviews]; + + CGRect bounds = self.bounds; + if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { + CGFloat horizontalInset = CGRectGetWidth(bounds) * 0.2; + CGFloat verticalInset = CGRectGetHeight(bounds) * 0.2; + UIEdgeInsets iPadInsets = UIEdgeInsetsMake(verticalInset, horizontalInset, verticalInset, horizontalInset); + bounds = UIEdgeInsetsInsetRect(bounds, iPadInsets); + } + UIEdgeInsets webViewInsets = UIEdgeInsetsMake(FBSDK_WEB_DIALOG_VIEW_BORDER_WIDTH, + FBSDK_WEB_DIALOG_VIEW_BORDER_WIDTH, + FBSDK_WEB_DIALOG_VIEW_BORDER_WIDTH, + FBSDK_WEB_DIALOG_VIEW_BORDER_WIDTH); + _webView.frame = CGRectIntegral(UIEdgeInsetsInsetRect(bounds, webViewInsets)); + + CGRect webViewBounds = _webView.bounds; + _loadingView.center = CGPointMake(CGRectGetMidX(webViewBounds), CGRectGetMidY(webViewBounds)); + + if (CGRectGetHeight(webViewBounds) == 0.0) { + _closeButton.alpha = 0.0; + } else { + _closeButton.alpha = 1.0; + CGRect closeButtonFrame = _closeButton.bounds; + closeButtonFrame.origin = bounds.origin; + _closeButton.frame = CGRectIntegral(closeButtonFrame); + } +} + +#pragma mark - Actions + +- (void)_close:(id)sender +{ + [_delegate webDialogViewDidCancel:self]; +} + +#pragma mark - WKNavigationDelegate + +- (void)webView:(WKWebView *)webView didFailNavigation:(WKNavigation *)navigation withError:(NSError *)error +{ + [_loadingView stopAnimating]; + + // 102 == WebKitErrorFrameLoadInterruptedByPolicyChange + // NSURLErrorCancelled == "Operation could not be completed", note NSURLErrorCancelled occurs when the user clicks + // away before the page has completely loaded, if we find cases where we want this to result in dialog failure + // (usually this just means quick-user), then we should add something more robust here to account for differences in + // application needs + if (!(([error.domain isEqualToString:NSURLErrorDomain] && error.code == NSURLErrorCancelled) || + ([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102))) { + [_delegate webDialogView:self didFailWithError:error]; + } +} + +- (void)webView:(WKWebView *)webView +decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction +decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler +{ + NSURL *URL = navigationAction.request.URL; + + if ([URL.scheme isEqualToString:@"fbconnect"]) { + NSMutableDictionary *parameters = [[FBSDKBasicUtility dictionaryWithQueryString:URL.query] mutableCopy]; + [parameters addEntriesFromDictionary:[FBSDKBasicUtility dictionaryWithQueryString:URL.fragment]]; + if ([URL.resourceSpecifier hasPrefix:@"//cancel"]) { + NSInteger errorCode = [FBSDKTypeUtility integerValue:parameters[@"error_code"]]; + if (errorCode) { + NSString *errorMessage = [FBSDKTypeUtility stringValue:parameters[@"error_msg"]]; + NSError *error = [FBSDKError errorWithCode:errorCode message:errorMessage]; + [_delegate webDialogView:self didFailWithError:error]; + } else { + [_delegate webDialogViewDidCancel:self]; + } + } else { + [_delegate webDialogView:self didCompleteWithResults:parameters]; + } + decisionHandler(WKNavigationActionPolicyCancel); + } else if (navigationAction.navigationType == WKNavigationTypeLinkActivated) { + [[UIApplication sharedApplication] openURL:URL]; + decisionHandler(WKNavigationActionPolicyCancel); + } else { + decisionHandler(WKNavigationActionPolicyAllow); + } +} + +- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation +{ + [_loadingView stopAnimating]; + [_delegate webDialogViewDidFinishLoad:self]; +} + +@end + +#endif diff --git a/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m new file mode 100644 index 0000000..291cc83 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m @@ -0,0 +1,589 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +#import "FBSDKDynamicFrameworkLoader.h" + +#import + +#import +#import +#import + +#import "FBSDKLogger.h" +#import "FBSDKSettings.h" + +static NSString *const g_frameworkPathTemplate = @"/System/Library/Frameworks/%@.framework/%@"; + +#pragma mark - Library and Symbol Loading + +struct FBSDKDFLLoadSymbolContext +{ + void *(*library)(void); // function to retrieve the library handle (it's a function instead of void * so it can be staticlly bound) + const char *name; // name of the symbol to retrieve + void **address; // [out] address of the symbol in the process address space +}; + +// Retrieves the handle for a library for framework. The paths for each are constructed +// differently so the loading function passed to dispatch_once() calls this. +static void *fbsdkdfl_load_library_once(const char *path) +{ + void *handle = dlopen(path, RTLD_LAZY); + if (handle) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational formatString:@"Dynamically loaded library at %s", path]; + } else { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorInformational formatString:@"Failed to load library at %s", path]; + } + return handle; +} + +// Constructs the path for a system framework with the given name and returns the handle for dlsym +static void *fbsdkdfl_load_framework_once(NSString *framework) +{ + NSString *path = [NSString stringWithFormat:g_frameworkPathTemplate, framework, framework]; + return fbsdkdfl_load_library_once(path.fileSystemRepresentation); +} + +// Implements the callback for dispatch_once() that loads the handle for specified framework name +#define _fbsdkdfl_load_framework_once_impl_(FRAMEWORK) \ + static void fbsdkdfl_load_##FRAMEWORK##_once(void *context) { \ + *(void **)context = fbsdkdfl_load_framework_once(@#FRAMEWORK); \ + } + +// Implements the framework/library retrieval function for the given name. +// It calls the loading function once and caches the handle in a local static variable +#define _fbsdkdfl_handle_get_impl_(LIBRARY) \ + static void *fbsdkdfl_handle_get_##LIBRARY(void) { \ + static void *LIBRARY##_handle; \ + static dispatch_once_t LIBRARY##_once; \ + dispatch_once_f(&LIBRARY##_once, &LIBRARY##_handle, &fbsdkdfl_load_##LIBRARY##_once); \ + return LIBRARY##_handle;\ + } + +// Callback from dispatch_once() to load a specific symbol +static void fbsdkdfl_load_symbol_once(void *context) +{ + struct FBSDKDFLLoadSymbolContext *ctx = context; + *ctx->address = dlsym(ctx->library(), ctx->name); +} + +// The boilerplate code for loading a symbol from a given library once and caching it in a static local +#define _fbsdkdfl_symbol_get(LIBRARY, PREFIX, SYMBOL, TYPE, VARIABLE_NAME) \ + static TYPE VARIABLE_NAME; \ + static dispatch_once_t SYMBOL##_once; \ + static struct FBSDKDFLLoadSymbolContext ctx = { .library = &fbsdkdfl_handle_get_##LIBRARY, .name = PREFIX #SYMBOL, .address = (void *)&VARIABLE_NAME }; \ + dispatch_once_f(&SYMBOL##_once, &ctx, &fbsdkdfl_load_symbol_once) + +#define _fbsdkdfl_symbol_get_c(LIBRARY, SYMBOL) _fbsdkdfl_symbol_get(LIBRARY, "OBJC_CLASS_$_", SYMBOL, Class, c) // convenience symbol retrieval macro for getting an Objective-C class symbol and storing it in the local static c +#define _fbsdkdfl_symbol_get_f(LIBRARY, SYMBOL) _fbsdkdfl_symbol_get(LIBRARY, "", SYMBOL, SYMBOL##_type, f) // convenience symbol retrieval macro for getting a function pointer and storing it in the local static f +#define _fbsdkdfl_symbol_get_k(LIBRARY, SYMBOL, TYPE) _fbsdkdfl_symbol_get(LIBRARY, "", SYMBOL, TYPE, k) // convenience symbol retrieval macro for getting a pointer to a named variable and storing it in the local static k + +// convenience macro for verifying a pointer to a named variable was successfully loaded and returns the value +#define _fbsdkdfl_return_k(FRAMEWORK, SYMBOL) \ + NSCAssert(k != NULL, @"Failed to load constant %@ in the %@ framework", @#SYMBOL, @#FRAMEWORK); \ + return *k + +// convenience macro for getting a pointer to a named NSString, verifying it loaded correctly, and returning it +#define _fbsdkdfl_get_and_return_NSString(LIBRARY, SYMBOL) \ + _fbsdkdfl_symbol_get_k(LIBRARY, SYMBOL, NSString **); \ + NSCAssert([*k isKindOfClass:[NSString class]], @"Loaded symbol %@ is not of type NSString *", @#SYMBOL); \ + _fbsdkdfl_return_k(LIBRARY, SYMBOL) + +#pragma mark - Security Framework + +_fbsdkdfl_load_framework_once_impl_(Security) +_fbsdkdfl_handle_get_impl_(Security) + +#pragma mark - Security Constants + +@implementation FBSDKDynamicFrameworkLoader + +#define _fbsdkdfl_Security_get_k(SYMBOL) _fbsdkdfl_symbol_get_k(Security, SYMBOL, CFTypeRef *) + +#define _fbsdkdfl_Security_get_and_return_k(SYMBOL) \ + _fbsdkdfl_Security_get_k(SYMBOL); \ + _fbsdkdfl_return_k(Security, SYMBOL) + ++ (SecRandomRef)loadkSecRandomDefault +{ + _fbsdkdfl_symbol_get_k(Security, kSecRandomDefault, SecRandomRef *); + _fbsdkdfl_return_k(Security, kSecRandomDefault); +} + ++ (CFTypeRef)loadkSecAttrAccessible +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrAccessible); +} + ++ (CFTypeRef)loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly); +} + ++ (CFTypeRef)loadkSecAttrAccount +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrAccount); +} + ++ (CFTypeRef)loadkSecAttrService +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrService); +} + ++ (CFTypeRef)loadkSecAttrGeneric +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrGeneric); +} + ++ (CFTypeRef)loadkSecValueData +{ + _fbsdkdfl_Security_get_and_return_k(kSecValueData); +} + ++ (CFTypeRef)loadkSecClassGenericPassword +{ + _fbsdkdfl_Security_get_and_return_k(kSecClassGenericPassword); +} + ++ (CFTypeRef)loadkSecAttrAccessGroup +{ + _fbsdkdfl_Security_get_and_return_k(kSecAttrAccessGroup); +} + ++ (CFTypeRef)loadkSecMatchLimitOne +{ + _fbsdkdfl_Security_get_and_return_k(kSecMatchLimitOne); +} + ++ (CFTypeRef)loadkSecMatchLimit +{ + _fbsdkdfl_Security_get_and_return_k(kSecMatchLimit); +} + ++ (CFTypeRef)loadkSecReturnData +{ + _fbsdkdfl_Security_get_and_return_k(kSecReturnData); +} + ++ (CFTypeRef)loadkSecClass +{ + _fbsdkdfl_Security_get_and_return_k(kSecClass); +} + +@end + +#pragma mark - Security APIs + +#define _fbsdkdfl_Security_get_f(SYMBOL) _fbsdkdfl_symbol_get_f(Security, SYMBOL) + +typedef int (*SecRandomCopyBytes_type)(SecRandomRef, size_t, uint8_t *); +typedef OSStatus (*SecItemUpdate_type)(CFDictionaryRef, CFDictionaryRef); +typedef OSStatus (*SecItemAdd_type)(CFDictionaryRef, CFTypeRef); +typedef OSStatus (*SecItemCopyMatching_type)(CFDictionaryRef, CFTypeRef); +typedef OSStatus (*SecItemDelete_type)(CFDictionaryRef); + +int fbsdkdfl_SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) +{ + _fbsdkdfl_Security_get_f(SecRandomCopyBytes); + return f(rnd, count, bytes); +} + +OSStatus fbsdkdfl_SecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate) +{ + _fbsdkdfl_Security_get_f(SecItemUpdate); + return f(query, attributesToUpdate); +} + +OSStatus fbsdkdfl_SecItemAdd(CFDictionaryRef attributes, CFTypeRef *result) +{ + _fbsdkdfl_Security_get_f(SecItemAdd); + return f(attributes, result); +} + +OSStatus fbsdkdfl_SecItemCopyMatching(CFDictionaryRef query, CFTypeRef *result) +{ + _fbsdkdfl_Security_get_f(SecItemCopyMatching); + return f(query, result); +} + +OSStatus fbsdkdfl_SecItemDelete(CFDictionaryRef query) +{ + _fbsdkdfl_Security_get_f(SecItemDelete); + return f(query); +} + +#pragma mark - Social Constants + +_fbsdkdfl_load_framework_once_impl_(Social) +_fbsdkdfl_handle_get_impl_(Social) + +#define _fbsdkdfl_Social_get_and_return_constant(SYMBOL) _fbsdkdfl_get_and_return_NSString(Social, SYMBOL) + +NSString *fbsdkdfl_SLServiceTypeFacebook(void) +{ + __weak _fbsdkdfl_Social_get_and_return_constant(SLServiceTypeFacebook); +} + +NSString *fbsdkdfl_SLServiceTypeTwitter(void) +{ + __weak _fbsdkdfl_Social_get_and_return_constant(SLServiceTypeTwitter); +} + +#pragma mark - Social Classes + +#define _fbsdkdfl_Social_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(Social, SYMBOL) + +Class fbsdkdfl_SLComposeViewControllerClass(void) +{ + _fbsdkdfl_Social_get_c(SLComposeViewController); + return c; +} + +#pragma mark - MessageUI Classes + +_fbsdkdfl_load_framework_once_impl_(MessageUI) +_fbsdkdfl_handle_get_impl_(MessageUI) + +#define _fbsdkdfl_MessageUI_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(MessageUI, SYMBOL) + +Class fbsdkdfl_MFMailComposeViewControllerClass(void) +{ + _fbsdkdfl_MessageUI_get_c(MFMailComposeViewController); + return c; +} + +Class fbsdkdfl_MFMessageComposeViewControllerClass(void) +{ + _fbsdkdfl_MessageUI_get_c(MFMessageComposeViewController); + return c; +} + +#pragma mark - QuartzCore Classes + +_fbsdkdfl_load_framework_once_impl_(QuartzCore) +_fbsdkdfl_handle_get_impl_(QuartzCore) + +#define _fbsdkdfl_QuartzCore_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(QuartzCore, SYMBOL); + +Class fbsdkdfl_CATransactionClass(void) +{ + _fbsdkdfl_QuartzCore_get_c(CATransaction); + return c; +} + +#pragma mark - QuartzCore APIs + +#define _fbsdkdfl_QuartzCore_get_f(SYMBOL) _fbsdkdfl_symbol_get_f(QuartzCore, SYMBOL) + +typedef CATransform3D (*CATransform3DMakeScale_type)(CGFloat, CGFloat, CGFloat); +typedef CATransform3D (*CATransform3DMakeTranslation_type)(CGFloat, CGFloat, CGFloat); +typedef CATransform3D (*CATransform3DConcat_type)(CATransform3D, CATransform3D); + +const CATransform3D fbsdkdfl_CATransform3DIdentity = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1}; + +CATransform3D fbsdkdfl_CATransform3DMakeScale(CGFloat sx, CGFloat sy, CGFloat sz) +{ + _fbsdkdfl_QuartzCore_get_f(CATransform3DMakeScale); + return f(sx, sy, sz); +} + +CATransform3D fbsdkdfl_CATransform3DMakeTranslation(CGFloat tx, CGFloat ty, CGFloat tz) +{ + _fbsdkdfl_QuartzCore_get_f(CATransform3DMakeTranslation); + return f(tx, ty, tz); +} + +CATransform3D fbsdkdfl_CATransform3DConcat(CATransform3D a, CATransform3D b) +{ + _fbsdkdfl_QuartzCore_get_f(CATransform3DConcat); + return f(a, b); +} + +#pragma mark - AudioToolbox APIs + +_fbsdkdfl_load_framework_once_impl_(AudioToolbox) +_fbsdkdfl_handle_get_impl_(AudioToolbox) + +#define _fbsdkdfl_AudioToolbox_get_f(SYMBOL) _fbsdkdfl_symbol_get_f(AudioToolbox, SYMBOL) + +typedef OSStatus (*AudioServicesCreateSystemSoundID_type)(CFURLRef, SystemSoundID *); +typedef OSStatus (*AudioServicesDisposeSystemSoundID_type)(SystemSoundID); +typedef void (*AudioServicesPlaySystemSound_type)(SystemSoundID); + +OSStatus fbsdkdfl_AudioServicesCreateSystemSoundID(CFURLRef inFileURL, SystemSoundID *outSystemSoundID) +{ + _fbsdkdfl_AudioToolbox_get_f(AudioServicesCreateSystemSoundID); + return f(inFileURL, outSystemSoundID); +} + +OSStatus fbsdkdfl_AudioServicesDisposeSystemSoundID(SystemSoundID inSystemSoundID) +{ + _fbsdkdfl_AudioToolbox_get_f(AudioServicesDisposeSystemSoundID); + return f(inSystemSoundID); +} + +void fbsdkdfl_AudioServicesPlaySystemSound(SystemSoundID inSystemSoundID) +{ + _fbsdkdfl_AudioToolbox_get_f(AudioServicesPlaySystemSound); + return f(inSystemSoundID); +} + +#pragma mark - Ad Support Classes + +_fbsdkdfl_load_framework_once_impl_(AdSupport) +_fbsdkdfl_handle_get_impl_(AdSupport) + +#define _fbsdkdfl_AdSupport_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(AdSupport, SYMBOL); + +Class fbsdkdfl_ASIdentifierManagerClass(void) +{ + _fbsdkdfl_AdSupport_get_c(ASIdentifierManager); + return c; +} + +#pragma mark - Safari Services +_fbsdkdfl_load_framework_once_impl_(SafariServices) +_fbsdkdfl_handle_get_impl_(SafariServices) + +#define _fbsdkdfl_SafariServices_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(SafariServices, SYMBOL); + +Class fbsdkdfl_SFSafariViewControllerClass(void) +{ + _fbsdkdfl_SafariServices_get_c(SFSafariViewController); + return c; +} + +Class fbsdkdfl_SFAuthenticationSessionClass(void) +{ + _fbsdkdfl_SafariServices_get_c(SFAuthenticationSession); + return c; +} + +#pragma mark - Authentication Services +_fbsdkdfl_load_framework_once_impl_(AuthenticationServices) +_fbsdkdfl_handle_get_impl_(AuthenticationServices) + +#define _fbsdkdfl_AuthenticationServices_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(AuthenticationServices, SYMBOL); + +Class fbsdkdfl_ASWebAuthenticationSessionClass(void) +{ + _fbsdkdfl_AuthenticationServices_get_c(ASWebAuthenticationSession); + return c; +} + +#pragma mark - Accounts Constants + +_fbsdkdfl_load_framework_once_impl_(Accounts) +_fbsdkdfl_handle_get_impl_(Accounts) + +#define _fbsdkdfl_Accounts_get_and_return_NSString(SYMBOL) __weak _fbsdkdfl_get_and_return_NSString(Accounts, SYMBOL) + +NSString *fbsdkdfl_ACFacebookAppIdKey(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookAppIdKey); +} + +NSString *fbsdkdfl_ACFacebookAudienceEveryone(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookAudienceEveryone); +} + +NSString *fbsdkdfl_ACFacebookAudienceFriends(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookAudienceFriends); +} + +NSString *fbsdkdfl_ACFacebookAudienceKey(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookAudienceKey); +} + +NSString *fbsdkdfl_ACFacebookAudienceOnlyMe(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookAudienceOnlyMe); +} + +NSString *fbsdkdfl_ACFacebookPermissionsKey(void) +{ + _fbsdkdfl_Accounts_get_and_return_NSString(ACFacebookPermissionsKey); +} + +#pragma mark - Accounts Classes + +#define _fbsdkdfl_Accounts_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(Accounts, SYMBOL); + +Class fbsdkdfl_ACAccountStoreClass(void) +{ + _fbsdkdfl_Accounts_get_c(ACAccountStore); + return c; +} + +#pragma mark - StoreKit Classes + +_fbsdkdfl_load_framework_once_impl_(StoreKit) +_fbsdkdfl_handle_get_impl_(StoreKit) + +#define _fbsdkdfl_StoreKit_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(StoreKit, SYMBOL); + +Class fbsdkdfl_SKPaymentQueueClass(void) +{ + _fbsdkdfl_StoreKit_get_c(SKPaymentQueue); + return c; +} + +Class fbsdkdfl_SKProductsRequestClass(void) +{ + _fbsdkdfl_StoreKit_get_c(SKProductsRequest); + return c; +} + +#pragma mark - AssetsLibrary Classes + +_fbsdkdfl_load_framework_once_impl_(AssetsLibrary) +_fbsdkdfl_handle_get_impl_(AssetsLibrary) + +#define _fbsdkdfl_AssetsLibrary_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(AssetsLibrary, SYMBOL); + +Class fbsdkdfl_ALAssetsLibraryClass(void) +{ + _fbsdkdfl_AssetsLibrary_get_c(ALAssetsLibrary); + return c; +} + +#pragma mark - CoreTelephony Classes + +_fbsdkdfl_load_framework_once_impl_(CoreTelephony) +_fbsdkdfl_handle_get_impl_(CoreTelephony) + +#define _fbsdkdfl_CoreTelephonyLibrary_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(CoreTelephony, SYMBOL); + +Class fbsdkdfl_CTTelephonyNetworkInfoClass(void) +{ + _fbsdkdfl_CoreTelephonyLibrary_get_c(CTTelephonyNetworkInfo); + return c; +} + +#pragma mark - CoreImage + +_fbsdkdfl_load_framework_once_impl_(CoreImage) +_fbsdkdfl_handle_get_impl_(CoreImage) + +#define _fbsdkdfl_CoreImage_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(CoreImage, SYMBOL); +#define _fbsdkdfl_CoreImage_get_and_return_NSString(SYMBOL) _fbsdkdfl_get_and_return_NSString(CoreImage, SYMBOL) + + +Class fbsdkdfl_CIImageClass(void) +{ + _fbsdkdfl_CoreImage_get_c(CIImage); + return c; +} + +Class fbsdkdfl_CIFilterClass(void) +{ + _fbsdkdfl_CoreImage_get_c(CIFilter); + return c; +} + +NSString *fbsdkdfl_kCIInputImageKey(void) +{ + __weak _fbsdkdfl_CoreImage_get_and_return_NSString(kCIInputImageKey); +} + +NSString *fbsdkdfl_kCIInputRadiusKey(void) +{ + __weak _fbsdkdfl_CoreImage_get_and_return_NSString(kCIInputRadiusKey); +} + +NSString *fbsdkdfl_kCIOutputImageKey(void) +{ + __weak _fbsdkdfl_CoreImage_get_and_return_NSString(kCIOutputImageKey); +} + +#pragma mark - Photos.framework + +_fbsdkdfl_load_framework_once_impl_(Photos) +_fbsdkdfl_handle_get_impl_(Photos) + +#define _fbsdkdfl_Photos_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(Photos, SYMBOL); +#define _fbsdkdfl_Photos_get_and_return_NSString(SYMBOL) _fbsdkdfl_get_and_return_NSString(Photos, SYMBOL) + +Class fbsdkdfl_PHPhotoLibrary(void) +{ + _fbsdkdfl_Photos_get_c(PHPhotoLibrary); + return c; +} + +Class fbsdkdfl_PHAssetChangeRequest(void) +{ + _fbsdkdfl_Photos_get_c(PHAssetChangeRequest); + return c; +} + +#pragma mark - MobileCoreServices + +_fbsdkdfl_load_framework_once_impl_(MobileCoreServices) +_fbsdkdfl_handle_get_impl_(MobileCoreServices) + +#define _fbsdkdfl_MobileCoreServices_get_k(SYMBOL) _fbsdkdfl_symbol_get_k(MobileCoreServices, SYMBOL, CFStringRef *) + +#define _fbsdkdfl_MobileCoreServices_get_and_return_k(SYMBOL) \ +_fbsdkdfl_MobileCoreServices_get_k(SYMBOL); \ +_fbsdkdfl_return_k(MobileCoreServices, SYMBOL) + +#define _fbsdkdfl_MobileCoreServices_get_f(SYMBOL) _fbsdkdfl_symbol_get_f(MobileCoreServices, SYMBOL) + +typedef CFStringRef (*UTTypeCopyPreferredTagWithClass_type)(CFStringRef inUTI, CFStringRef inTagClass); + +CFStringRef fbsdkdfl_UTTypeCopyPreferredTagWithClass(CFStringRef inUTI, + CFStringRef inTagClass) +{ + _fbsdkdfl_MobileCoreServices_get_f(UTTypeCopyPreferredTagWithClass); + return f(inUTI, inTagClass); +} + +CFStringRef fbsdkdfl_kUTTagClassMIMEType(void) +{ + _fbsdkdfl_MobileCoreServices_get_and_return_k(kUTTagClassMIMEType); +} + +CFStringRef fbsdkdfl_kUTTypeJPEG(void) +{ + _fbsdkdfl_MobileCoreServices_get_and_return_k(kUTTypeJPEG); +} + +CFStringRef fbsdkdfl_kUTTypePNG(void) +{ + _fbsdkdfl_MobileCoreServices_get_and_return_k(kUTTypePNG); +} + +#pragma mark - WebKit Classes +_fbsdkdfl_load_framework_once_impl_(WebKit) +_fbsdkdfl_handle_get_impl_(WebKit) + +#define _fbsdkdfl_WebKit_get_c(SYMBOL) _fbsdkdfl_symbol_get_c(WebKit, SYMBOL); + +Class fbsdkdfl_WKWebViewClass(void) +{ + _fbsdkdfl_WebKit_get_c(WKWebView); + return c; +} + +Class fbsdkdfl_WKUserScriptClass(void) +{ + _fbsdkdfl_WebKit_get_c(WKUserScript); + return c; +} diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings new file mode 100644 index 0000000..e6bf3af --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OF -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Goed"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Kanselleer"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Goed"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Hou van"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Hou van"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Kanselleer"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Meld af"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Met Facebook aangemeld"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "As %@ aangemeld"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Meld aan"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Gaan voort met Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Meld met Facebook aan"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Meld af"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Meld aan"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Stuur"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Deel"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nie jy nie?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings new file mode 100644 index 0000000..0911c78 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- أو -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "موافق"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "إلغاء"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "موافق"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "إعجاب"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "أعجبني"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "إلغاء"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "تسجيل الدخول"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "تسجيل الخروج"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "تسجيل الدخول"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "إرسال"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "مشاركة"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "لست أنت؟"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings new file mode 100644 index 0000000..6570752 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ঠিক আছে"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "বাতিল করুন"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ঠিক আছে"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "পছন্দ করুন"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "পছন্দ করা হয়েছে"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "বাতিল করুন"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "লগ ইন করুন"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "লগ আউট করুন"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "লগ ইন করুন"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "পাঠান"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ভাগ করুন"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "আপনি নন?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1de061a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Zrušit"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "To se mi líbí"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Už se mi to líbí"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Zrušit"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odhlásit"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Přihlásit"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odhlásit"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Přihlásit"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Odeslat"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Sdílet"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nejste to vy?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings new file mode 100644 index 0000000..9a49bb5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuller"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Synes godt om"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Synes godt om"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuller"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log af"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logget på med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logget på som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log på"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsæt med Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log på med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log af"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log på"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Del"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ikke dig?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekræft login"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings new file mode 100644 index 0000000..331aa9b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Abbrechen"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gefällt mir"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gefällt dir"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Abbrechen"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Abmelden"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Über Facebook angemeldet"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Als %@ angemeldet"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Anmelden"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Über Facebook anmelden"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Abmelden"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Anmelden"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Senden"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Teilen"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nicht du?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Login bestätigen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings new file mode 100644 index 0000000..9b7a3bd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Άκυρο"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Μου αρέσει!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Σας αρέσει"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Άκυρο"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Σύνδεση"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Αποσύνδεση"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Σύνδεση"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Αποστολή"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Κοινοποίηση"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Δεν είστε εσείς;"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings new file mode 100644 index 0000000..6e6afcf Binary files /dev/null and b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings differ diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings new file mode 100644 index 0000000..358a92c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; + +/* The 'or' string for smart login instructions */ +"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; + +/* The string for smart login instructions */ +"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancel"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Like"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Liked"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancel"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log out"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logged in using Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logged in as %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continue with Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log in with Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log out"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log In"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Share"; + +/* The title for the alert when smart login requires confirmation */ +"SmartLogin.ConfirmationTitle" = "Confirm Login"; + +/* The format string to continue as for the alert when smart login requires confirmation */ +"SmartLogin.Continue" = "Continue as %@"; + +/* The cancel label for the alert when smart login requires confirmation */ +"SmartLogin.NotYou" = "Not you?"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings new file mode 100644 index 0000000..7038004 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Aceptar"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Aceptar"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Me gusta"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Te gusta"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Cerrar sesión"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Inicio de sesión"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar con Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Salir"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Inicio de sesión"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartir"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "¿No eres tú?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings new file mode 100644 index 0000000..963fa96 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Aceptar"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Aceptar"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Me gusta"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Te gusta"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Salir"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Inicio de sesión"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar con Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Salir"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Inicio de sesión"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartir"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "¿No eres tú?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1f1cc78 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Peruuta"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Tykkää"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Tykätty"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Peruuta"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Kirjaudu sisään"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Kirjaudu ulos"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Kirjaudu sisään"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Lähetä"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Jaa"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings new file mode 100644 index 0000000..5daf341 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Kanselahin"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gustuhin"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Nagustuhan"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Kanselahin"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Mag-log Out"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Mag-log in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Mag-log out"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Mag-log In"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Ipadala"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Ibahagi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Hindi ikaw?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..65fb07c --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OU -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuler"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "J’aime"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "J’aime déjà"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuler"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Déconnexion"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Connexion"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuer avec Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Connexion avec Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Déconnexion"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Connexion"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Envoyer"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Partager"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ce n’est pas vous ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings new file mode 100644 index 0000000..a91785a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ઠીક"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "રદ કરો"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ઠીક"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "પસંદ કરો"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "પસંદ કર્યું"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "રદ કરો"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "લૉગ ઇન કરો"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "લૉગ આઉટ કરો"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "મોકલો"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "શેર કરો"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "તમે નહિ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings new file mode 100644 index 0000000..2e2a3c5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- או -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "אישור"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ביטול"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "אישור"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "אהבתי"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "אהבתי"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ביטול"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "התנתק"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "מחובר בתור %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "התחבר"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "המשך עם פייסבוק"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "התנתק"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "התחבר"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "שלח"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "שתף"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "לא אתה?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "אשר התחברות"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..14b1b95 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- या -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ठीक"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "रद्द करें"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ठीक"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "पसंद करें"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "पसंद किया"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "रद्द करें"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "लॉग इन करें"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "लॉग आउट"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "लॉग इन करें"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "भेजें"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "साझा करें"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "आप नहीं हैं?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..45e3312 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "U redu"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Odustani"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "U redu"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Sviđa mi se"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Označeno sa \"sviđa mi se\""; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Odustani"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odjavi se"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Prijavljen kao %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Prijavi se"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Prijava putem Facebooka"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odjavi se"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Prijava"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Pošalji"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Dijeli"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "To niste vi?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings new file mode 100644 index 0000000..6d74f46 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Mégsem"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Tetszik"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Kedveled"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Mégsem"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Kijelentkezés"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Bejelentkezés"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Kijelentkezés"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Bejelentkezés"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Küldés"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Megosztás"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nem te vagy az?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings new file mode 100644 index 0000000..651b51b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Batal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Suka"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Disukai"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Batal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Keluar"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Masuk sebagai %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Masuk"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Keluar"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Masuk"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Kirim"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Berbagi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Bukan Anda?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings new file mode 100644 index 0000000..469ea53 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annulla"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Mi piace"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Ti piace"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annulla"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Esci"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Accedi"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continua con Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Accedi con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Esci"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Accedi"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Invia"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Condividi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Non sei tu?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continua come %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings new file mode 100644 index 0000000..fb08bd7 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- または -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "キャンセル"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "いいね!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "いいね!済み"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "キャンセル"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ログアウト"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@としてログイン中"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ログイン"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebookで続ける"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebookでログイン"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ログアウト"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ログイン"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "送信"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "シェア"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "別のユーザーとしてログイン"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ログインの確認"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@として続行"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings new file mode 100644 index 0000000..f743a27 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings @@ -0,0 +1,77 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ಸರಿ"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ಸರಿ"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ಇಷ್ಟವಾಗಿದೆ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ಇಷ್ಟಪಟ್ಟಿದ್ದಾರೆ"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ಕಳುಹಿಸಿ"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings new file mode 100644 index 0000000..0dbd73f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "확인"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "취소"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "확인"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "좋아요"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "좋아요"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "취소"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "로그아웃"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "로그인"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook으로 계속"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook으로 로그인"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "로그아웃"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "로그인"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "보내기"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "공유하기"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "회원님이 아닌가요?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "로그인 확인"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings new file mode 100644 index 0000000..e7a0189 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ശരി"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ശരി"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ലൈക്കുചെയ്യുക"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ലൈക്കുചെയ്‌‌തു"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "അയയ്‌ക്കുക"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "പങ്കിടൂ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..246b692 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ठीक"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "रद्द करा"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ठीक"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "आवडले"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "आवडलेले"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "रद्द करा"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "लॉग इन करा"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "लॉग आउट करा"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "लॉग इन करा"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "पाठवा"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "सामायिक करा"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "तुम्ही नाही?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings new file mode 100644 index 0000000..20b212a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Bukan anda?"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Batal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Suka"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Disukai"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Batal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log Keluar"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log masuk"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log masuk dengan Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log keluar"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log Masuk"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Hantar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Kongsi"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Teruskan sebagai %@"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings new file mode 100644 index 0000000..2307ecb --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Avbryt"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Liker"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Likt"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Avbryt"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Logg ut"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logget inn med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logget inn som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Logg inn"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsett med Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Logg inn med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Logg ut"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Logg inn"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Del"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ikke deg?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings new file mode 100644 index 0000000..899870e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OF -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuleren"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Vind ik leuk"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Vind ik leuk"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuleren"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Afmelden"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Aangemeld via Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Aangemeld als %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Aanmelden"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Doorgaan met Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Aanmelden met Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Afmelden"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Aanmelden"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Verzenden"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Delen"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ben jij dit niet?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings new file mode 100644 index 0000000..29ca536 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ਠੀਕ"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ਠੀਕ"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ਪਸੰਦ ਕਰੋ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ਪਸੰਦ ਕੀਤਾ ਗਿਆ"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ਭੇਜੋ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings new file mode 100644 index 0000000..f7e8681 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Anuluj"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Lubię to!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Polubione"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Anuluj"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Wyloguj się"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Zalogowano jako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Zaloguj się"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Wyloguj się"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Zaloguj się"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Wyślij"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Udostępnij"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "To nie Ty?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings new file mode 100644 index 0000000..7817912 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– OU –"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Curtir"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Curtiu"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Sair"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Conectado como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Entrar"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar com o Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Entrar com o Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Sair"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Entrar"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Envio"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartilhar"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Não é você?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirme o login"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continue como %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1fd2d29 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– OU –"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gosto"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gostei"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Terminar sessão"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Iniciar sessão"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar com o Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Terminar a sessão"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Iniciar sessão"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Partilhar"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Não és tu?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings new file mode 100644 index 0000000..114e0be --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Отменить"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Нравится"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Понравилось"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Отменить"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Выход"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Вы вошли как %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Вход"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Продолжить с Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Вход через Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Выход"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Вход в систему"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Отправить"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Поделиться"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Это не вы?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1c1e2a8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Zrušiť"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Páči sa mi to"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Páči sa mi to"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Zrušiť"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odhlásiť"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Prihlásený ako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Prihlásiť sa"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odhlásiť sa"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Prihlásenie sa"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Odoslať"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Zdieľať"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nie ste to vy?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings new file mode 100644 index 0000000..3fd3107 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Avbryt"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gilla"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gillade"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Avbryt"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Logga ut"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Inloggad med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Inloggad som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Logga in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsätt med Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Logga in med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Logga ut"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Logga in"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Skicka"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Dela"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Inte du?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings new file mode 100644 index 0000000..c0d2d08 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "சரி"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ரத்துசெய்"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "சரி"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "விருப்பம்"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "விரும்பப்பட்டது"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ரத்துசெய்"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "வெளியேறு"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "உள்நுழைவு"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "வெளியேறு"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "உள்நுழைவு"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "அனுப்பு"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "பகிர்"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings new file mode 100644 index 0000000..7605c9b --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "రద్దు చేయి"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ఇష్టంగా గుర్తు పెట్టు"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ఇష్టంగా గుర్తు పెట్టబడింది"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "రద్దు చేయి"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "లాగిన్ చేయి"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "పంపు"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "మీరు కాదా?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings new file mode 100644 index 0000000..8c5c9fd --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ตกลง"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ยกเลิก"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ตกลง"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ถูกใจ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ถูกใจแล้ว"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ยกเลิก"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "เข้าสู่ระบบ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ออกจากระบบ"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ส่ง"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "แชร์"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..3d57b8f --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Tamam"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "İptal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Tamam"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Beğen"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Beğendin"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "İptal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Çıkış Yap"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Giriş yap"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ile Devam Et"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ile giriş yap"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Çıkış yap"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Giriş Yap"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Gönder"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Paylaş"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Sen değil misin?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..e7b6946 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Hủy"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Thích"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Đã thích"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Hủy"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Đăng xuất"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Đăng nhập"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Đăng xuất"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Đăng nhập"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Gửi"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Chia sẻ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Không phải bạn?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings new file mode 100644 index 0000000..e153685 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "确定"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "确定"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "赞"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "赞了"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "退出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "已使用 Facebook 登录"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登录"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登录"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "退出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登录"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "发送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "不是你?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "确认登录"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings new file mode 100644 index 0000000..fcf0c3e --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "確定"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "確定"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "讚好"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "已讚好"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "登出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "使用 Facebook 登入"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "以 %@ 身分登入"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登入"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "繼續使用 Facebook"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登入"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "登出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登入"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "傳送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "這不是您?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "確認登入"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings new file mode 100644 index 0000000..f02b0c8 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings @@ -0,0 +1,92 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "是"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "是"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "讚"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "說讚"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "登出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "已使用 Facebook 登入"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "以 %@ 身分登入"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登入"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登入"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "登出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登入"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "傳送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "這不是您?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "確認登入"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/SwiftProject/Pods/FBSDKCoreKit/LICENSE b/SwiftProject/Pods/FBSDKCoreKit/LICENSE new file mode 100644 index 0000000..bdb9fc5 --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/LICENSE @@ -0,0 +1,17 @@ +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. diff --git a/SwiftProject/Pods/FBSDKCoreKit/README.md b/SwiftProject/Pods/FBSDKCoreKit/README.md new file mode 100644 index 0000000..a200d7a --- /dev/null +++ b/SwiftProject/Pods/FBSDKCoreKit/README.md @@ -0,0 +1,91 @@ +# Facebook SDK for iOS + +[![Platforms](https://img.shields.io/cocoapods/p/FBSDKCoreKit.svg)](https://cocoapods.org/pods/FBSDKCoreKit) +[![Build Status](https://travis-ci.org/facebook/facebook-ios-sdk.svg?branch=master)](https://travis-ci.org/facebook/facebook-ios-sdk) + +[![CocoaPods](https://img.shields.io/cocoapods/v/FBSDKCoreKit.svg)](https://cocoapods.org/pods/FBSDKCoreKit) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) + +This open-source library allows you to integrate Facebook into your iOS app. + +Learn more about the provided samples, documentation, integrating the SDK into your app, accessing source code, and more +at https://developers.facebook.com/docs/ios + +NOTE: By default, the Facebook SDK for iOS is installed in ~/Documents/FacebookSDK + +## TRY IT OUT + +### Swift Package Manager (available Xcode 11.2 and forward) + +1. In Xcode, select File > Swift Packages > Add Package Dependency. +2. Follow the prompts using the URL for this repository and a minimum semantic version of v5.10.0 +3. Check-out the tutorials available online at: +4. Start coding! Visit for tutorials and reference documentation. + +**Note:** + +If you explicitly **DO NOT** want to include Swift, import `FBSDKCoreKit` `FBSDKLoginKit` and `FBSDKShareKit` + +For projects that include Swift, use `FacebookCore`, `FacebookLogin`, and `FacebookShare` + +### CocoaPods + +1. If you explicitly **DO NOT** want to include Swift files, add the following to your `Podfile`: + + pod 'FBSDKCoreKit' + pod 'FBSDKLoginKit' + pod 'FBSDKShareKit' + + If you would like to use versions of the pods that include Swift, add the following to your `Podfile`: + + pod 'FBSDKCoreKit/Swift' + pod 'FBSDKLoginKit/Swift' + pod 'FBSDKShareKit/Swift' + +2. Test your install by adding `import FBSDKCoreKit` to your `AppDelegate` +3. Check-out the tutorials available online at: +4. Start coding! Visit for tutorials and reference documentation. + +## FEATURES + +- Login - +- Sharing - +- App Links - +- Graph API - +- Analytics - + +## GIVE FEEDBACK + +Please report bugs or issues to our designated developer support team -- -- as this will help us resolve them more quickly. + +You can also visit our [Facebook Developer Community Forum](https://developers.facebook.com/community/), +join the [Facebook Developers Group on Facebook](https://www.facebook.com/groups/fbdevelopers/), +ask questions on [Stack Overflow](http://facebook.stackoverflow.com), +or open an issue in this repository. + +## LICENSE + +See the [LICENSE](LICENSE) file. + +## Security Policy + +See the [SECURITY POLICY](SECURITY.md) for more info on our bug bounty program. + +## DEVELOPER TERMS + +- By enabling Facebook integrations, including through this SDK, you can share information with Facebook, including + information about people’s use of your app. Facebook will use information received in accordance with our + [Data Use Policy](https://www.facebook.com/about/privacy/), including to provide you with insights about the + effectiveness of your ads and the use of your app. These integrations also enable us and our partners to serve ads on + and off Facebook. +- You may limit your sharing of information with us by updating the Insights control in the developer tool + `https://developers.facebook.com/apps/{app_id}/settings/advanced`. +- If you use a Facebook integration, including to share information with us, you agree and confirm that you have + provided appropriate and sufficiently prominent notice to and obtained the appropriate consent from your users + regarding such collection, use, and disclosure (including, at a minimum, through your privacy policy). You further + agree that you will not share information with us about children under the age of 13. +- You agree to comply with all applicable laws and regulations and also agree to our Terms + , including our Platform Policies .and + Advertising Guidelines, as applicable . + +By using the Facebook SDK for iOS you agree to these terms. diff --git a/SwiftProject/Pods/FacebookCore/LICENSE b/SwiftProject/Pods/FacebookCore/LICENSE new file mode 100644 index 0000000..d318575 --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +For Facebook Swift SDK software + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. diff --git a/SwiftProject/Pods/FacebookCore/README.md b/SwiftProject/Pods/FacebookCore/README.md new file mode 100644 index 0000000..330f287 --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/README.md @@ -0,0 +1,265 @@ +# Facebook SDK in Swift (Beta) + +[![Swift Version](https://img.shields.io/badge/Swift-5.0.x-orange.svg)](https://swift.org) +[![Platforms](https://img.shields.io/cocoapods/p/FacebookCore.svg)](https://cocoapods.org/pods/FacebookCore) +[![Build Status](https://travis-ci.org/facebook/facebook-swift-sdk.svg?branch=master)](https://travis-ci.org/facebook/facebook-swift-sdk) + +[![CocoaPods](https://img.shields.io/cocoapods/v/FacebookCore.svg)](https://cocoapods.org/pods/FacebookCore) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) + +Swift-tailored experience to integrate your app with Facebook. Including: + +- [Facebook Login](https://developers.facebook.com/docs/swift/login) - Authenticate people with their Facebook + credentials. +- [Share and Send Dialogs](https://developers.facebook.com/docs/swift/sharing) - Enable sharing content from your app to + Facebook. +- [App Events](https://developers.facebook.com/docs/swift/appevents) - Understand your audience and the performance of + your app. +- [Graph API](https://developers.facebook.com/docs/swift/graph) - Read and write directly to Facebook social graph. + +## Important +**NOTE:** This SDK is a wrapper around the [ObjC SDK](https://github.com/facebook/facebook-objc-sdk). The project uses [Carthage](https://github.com/Carthage/Carthage) internally for managing the dependencies on the "FBSDK"-prefixed libraries. It is intended to offer an additional layer of type-safety around the original as well as offer support for modern Swift and iOS paradigms. Please see our [roadmap](./ROADMAP.md) for information about the strategy for modernizing this project. + +## Installation + +### CocoaPods + +Make sure you are running the latest version of [CocoaPods](https://cocoapods.org) by running: + +```bash +gem install cocoapods + +# (or if the above fails) +sudo gem install cocoapods +``` + +**Note:** We support any version of CocoaPods 1.0.1 or later. + +Update your local specs repo by running: + +```bash +pod repo update +``` + +**Note:** This step is optional, if you updated the specs repo recently. + +Add the following lines to your Podfile: + +```ruby +pod 'FacebookCore' +pod 'FacebookLogin' +pod 'FacebookShare' +``` + +Run `pod install` and you're all set! + +You may also exclude any of these dependencies, if you do not need the features of those parts of the SDK. + +### Carthage + +Make sure you are running the latest version of [Carthage](https://github.com/carthage/carthage) by running: + +```bash +brew update +brew upgrade carthage +``` + +**Note:** We recommend using Carthage version 0.31.1 or later. + +Add the following line to your Cartfile: + +```bash +github "facebook/facebook-swift-sdk" + +# If you run into issues, try targeting the master branch +github "facebook/facebook-swift-sdk" "master" +``` + +Run `carthage update`. + +**Note:** This will fetch dependencies into a `Carthage/Checkouts` folder, then build each one. + +On your application targets' `General` settings tab, in the `Linked Frameworks and Libraries` section. + +At a minimum, you'll need to drag & drop the following frameworks from `Carthage/Build` folder on disk: + +- `FacebookCore.framework` +- `FBSDKCoreKit.framework` + +To use Login with Facebook: + +- `FacebookLogin.framework` +- `FBSDKLoginKit.framework` + +To use Share and Send Dialogs + +- `FacebookShare.framework` +- `FBSDKShareKit.framework` + +On your application targets' `Build Phases` tab: + +- Click `+` icon and choose `New Run Script Phase`. +- Create a script with a shell of your choice (e.g. `/bin/sh`). +- Add the following to the script area below the shell: + +```bash +/usr/local/bin/carthage copy-frameworks +``` + +- Add the paths to the frameworks you want to use under `Input Files`, for example: + +```bash +$(SRCROOT)/Carthage/Build/iOS/FacebookCore.framework +$(SRCROOT)/Carthage/Build/iOS/FBSDKCoreKit.framework +``` + +### Using Facebook SDK as a sub-project + +While not recommended, it is entirely possible for you to build the Facebook SDK for Swift outside of any dependency +management system. + +**Note:** You will have to manage updating this solution (as well as the dependencies on the Facebook SDK for iOS) on +your own. + +- Clone the repository. +- Run the following command in the root directory of the repository: `git submodule update --init --recursive` +- Add `FacebookSwift.xcodeproj` as a sub-project to your applications' project. +- Add the `FacebookCore.framework`, `FacebookLogin.framework`, and `FacebookShare.framework` build products from the + sub-project to your applications `Link Frameworks and Libraries` and `Embedded Binaries` sections. + +Don't forget to also embed/link `FBSDKCoreKit.framework`, `FBSDKLoginKit.framework`, and `FBSDKShareKit.framework`. + +## Modules + +The frameworks for the Facebook SDK in Swift are organized in the same way that the Facebook SDK for iOS is. + +They also currently depend upon the Facebook SDK for iOS, although this may change at some point in the future. + +### FacebookCore + +[![FacebookCore on CocoaPods](https://img.shields.io/cocoapods/v/FacebookCore.svg)](https://cocoapods.org/pods/FacebookCore) + +Depends on `FBSDKCoreKit.framework`. + +The following types are included, with enhancements for Swift: + +- `AccessToken` +- `ApplicationDelegate` +- `AppEvents` + +A myriad of improvements, including type-safe built-in `AppEvent`s, an `AppEvent` struct, and more. + +- `GraphRequest` + +You can now implement your own type-safe `GraphRequest`s, including native-typed results. + +- `SDKSettings` + +Logging behaviors are now implemented as a type-safe set, based on Swift enums. + +- `Permission` + +Are no longer stringly-typed (string-based), but separate types for read and write permissions (also includes a built-in +permission list, which includes most common permissions by default). + +### FacebookLogin + +[![FacebookCore on CocoaPods](https://img.shields.io/cocoapods/v/FacebookLogin.svg)](https://cocoapods.org/pods/FacebookLogin) + +Depends on `FacebookCore.framework` and `FBSDKLoginKit.framework`. + +The following types are included, with enhancements for Swift: + +- `LoginManager` + +Now uses the type-safe permissions from `FacebookCore`, and has constructors with `LoginBehavior` and `DefaultAudience`, +instead of requiring manual setting of properties. + +- `LoginButton` + +Can no longer change permissions after creation, helping to enforce using a single login button for a given set of +permissions. Note that `LoginButton` is not intended to work with interface builder or storyboards at this time. We may +re-address this in the future. + +### FacebookShare + +[![FacebookCore on CocoaPods](https://img.shields.io/cocoapods/v/FacebookShare.svg)](https://cocoapods.org/pods/FacebookShare) + +Depends on `FacebookCore.framework` and `FBSDKShareKit.framework`. + +The following types are included, with enhancements for Swift: + +- `LinkShareContent` + +Now a struct, and has a proper initializer enforcing required properties. + +- `OpenGraphShareContent` + +Now a struct, uses type-safe `OpenGraphPropertyName` and `OpenGraphPropertyValue`, as well as structs for +`OpenGraphObject` and `OpenGraphAction`. + +- `PhotoShareContent` + +Now a struct, and better type-safety for properties on it. + +- `VideoShareContent` + +Now a struct, and better type-safety for properties on it. + +- `GraphSharer` + +Now a generic type, that can handle any type of content. + +- `ShareDialog` + +Now a generic type, that can handle any type of content. + +- `MessageDialog` + +Now a generic type, that can handle any type of content. + +- `GameRequest` + +Now a struct, contains proper type-safe enum for `Recipient`, `Result`. + +- `GameRequest.Dialog` +- `AppGroupRequest.Dialog` +- `AppInvite` + +Now a struct, use a type-safe `Promotion` property, instead of separate `promotionCode` and `promotionText`. + +- `AppInvite.Dialog` + +## Give Feedback + +Facebook SDK in Swift is still in beta, and we would love to hear your thoughts and feedback on it. + +- **Have an idea or feature request?** [Open an issue](https://github.com/facebook/facebook-swift-sdk/issues/new). Tell + us more about the feature or an idea and why you think it's relevant. +- **Have a bug to report?** [Open an issue](https://github.com/facebook/facebook-swift-sdk/issues/new). If possible, + include the version of the SDK you are using, and any technical details. +- **Need help with your code?** Join [Facebook Developers Group](https://www.facebook.com/groups/fbdevelopers) on + Facebook or ask questions on [Stack Overflow](https://facebook.stackoverflow.com). + +## Contribute + +All of Facebook SDK for Swift development happens on GitHub. Contributions make for good karma and we welcome new +contributors with tremendous joy. We request that you read our [contributing guidelines](./CONTRIBUTING.md) before +submitting a Pull Request. + +### Unit Test Terminology + +For unit testing we're choosing to follow the test terms put forth by Martin Fowler. +This is to avoid confusion as a lot of these terms are commonly misused. + +> * Dummy objects are passed around but never actually used. Usually they are just used to fill parameter lists. +> * Fake objects actually have working implementations, but usually take some shortcut which makes them not suitable for production (an in memory database is a good example). +> * Stubs provide canned answers to calls made during the test, usually not responding at all to anything outside what's programmed in for the test. +> * Spies are stubs that also record some information based on how they were called. One form of this might be an email service that records how many messages it was sent. +> * Mocks are what we are talking about here: objects pre-programmed with expectations which form a specification of the calls they are expected to receive. +Source: https://martinfowler.com/articles/mocksArentStubs.html + +## License + +Facebook SDK in Swift is MIT licensed, as found in the +[`LICENSE`](https://github.com/facebook/facebook-swift-sdk/blob/master/LICENSE) file. diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/AccessToken.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/AccessToken.swift new file mode 100644 index 0000000..575b37d --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/AccessToken.swift @@ -0,0 +1,53 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +import Foundation + +/** + AccessToken Extension + */ +public extension AccessToken { + /** + Returns the known granted permissions. + */ + var permissions: Set { + return Set(__permissions.map { Permission(stringLiteral: $0) }) + } + + /** + Returns the known declined permissions. + */ + var declinedPermissions: Set { + return Set(__declinedPermissions.map { Permission(stringLiteral: $0) }) + } + + /** + Returns the known expired permissions. + */ + var expiredPermissions: Set { + return Set(__expiredPermissions.map { Permission(stringLiteral: $0) }) + } + + /** + Convenience getter to determine if a permission has been granted + - parameter permission: The permission to check + */ + func hasGranted(_ permission: Permission) -> Bool { + return hasGranted(permission: permission.name) + } +} diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/Dictionary+KeyValueMap.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/Dictionary+KeyValueMap.swift new file mode 100644 index 0000000..0230536 --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/Dictionary+KeyValueMap.swift @@ -0,0 +1,28 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +internal extension Dictionary { + func mapKeyValues(_ transform: (Element) throws -> (K, V)) rethrows -> [K: V] { + var dictionary: [K: V] = [:] + try forEach { + let transformed = try transform($0) + dictionary[transformed.0] = transformed.1 + } + return dictionary + } +} diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/FBProfilePictureView.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/FBProfilePictureView.swift new file mode 100644 index 0000000..b93875c --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/FBProfilePictureView.swift @@ -0,0 +1,42 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +import Foundation +import UIKit + +/** + FBProfilePictureView Extension + */ +public extension FBProfilePictureView { + /** + Create a new instance of `UserProfilePictureView`. + + - Parameter frame: Optional frame rectangle for the view, measured in points. + - Parameter profile: Optional profile to display a picture for. Default: `UserProfile.current`. + */ + convenience init(frame: CGRect = .zero, profile: Profile? = nil) { + self.init(frame: frame) + + if let profile = profile { + profileID = profile.userID + } + + autoresizingMask = [.flexibleWidth, .flexibleHeight] + setNeedsImageUpdate() + } +} diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/FBSDKCoreKit+Typealiases.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/FBSDKCoreKit+Typealiases.swift new file mode 100644 index 0000000..40e8e12 --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/FBSDKCoreKit+Typealiases.swift @@ -0,0 +1,259 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +import FBSDKCoreKit +import Foundation + +// Typealiases for FBSDKCoreKit types to avoid having to import +// dependent libraries. At somepoint these will be likely +// become "wrapper" types that extend and enhance functionality +// in addition to exposing it. For now it suffices to simply expose +// them to the correct library aka. FacebookCore + +/** + Wrapper for `FBSDKCoreKit.AccessToken` + + - SeeAlso: `FBSDKCoreKit.AccessToken` + */ +public typealias AccessToken = FBSDKCoreKit.AccessToken + +/** + Wrapper for `FBSDKCoreKit.AppEvents` + + - SeeAlso: `FBSDKCoreKit.AppEvents` + */ +public typealias AppEvents = FBSDKCoreKit.AppEvents + +/** + Wrapper for `FBSDKCoreKit.AppLink` + + - SeeAlso: `FBSDKCoreKit.AppLink` + */ +public typealias AppLink = FBSDKCoreKit.AppLink + +/** + Wrapper for `FBSDKCoreKit.AppLinkNavigation` + + - SeeAlso: `FBSDKCoreKit.AppLinkNavigation` + */ +public typealias AppLinkNavigation = FBSDKCoreKit.AppLinkNavigation + +/** + Wrapper for `FBSDKCoreKit.AppLinkResolver` + + - SeeAlso: `FBSDKCoreKit.AppLinkResolver` + */ +public typealias AppLinkResolver = FBSDKCoreKit.AppLinkResolver + +/** + Wrapper for `FBSDKCoreKit.AppLinkReturnToRefererController` + + - SeeAlso: `FBSDKCoreKit.AppLinkReturnToRefererController` + */ +public typealias AppLinkReturnToRefererController = FBSDKCoreKit.AppLinkReturnToRefererController + +/** + Wrapper for `FBSDKCoreKit.AppLinkTarget` + + - SeeAlso: `FBSDKCoreKit.AppLinkTarget` + */ +public typealias AppLinkTarget = FBSDKCoreKit.AppLinkTarget + +/** + Wrapper for `FBSDKCoreKit.AppLinkURL` + + - SeeAlso: `FBSDKCoreKit.AppLinkURL` + */ +public typealias AppLinkURL = FBSDKCoreKit.AppLinkURL + +/** + Wrapper for `FBSDKCoreKit.AppLinkUtility` + + - SeeAlso: `FBSDKCoreKit.AppLinkUtility` + */ +public typealias AppLinkUtility = FBSDKCoreKit.AppLinkUtility + +/** + Wrapper for `FBSDKCoreKit.ApplicationDelegate` + + - SeeAlso: `FBSDKCoreKit.ApplicationDelegate` + */ +public typealias ApplicationDelegate = FBSDKCoreKit.ApplicationDelegate + +/** + Wrapper for `FBSDKCoreKit.CoreError` + + - SeeAlso: `FBSDKCoreKit.CoreError` + */ +public typealias CoreError = FBSDKCoreKit.CoreError + +/** + Wrapper for `FBSDKCoreKit.FBAppLinkReturnToRefererView` + + - SeeAlso: `FBSDKCoreKit.FBAppLinkReturnToRefererView` + */ +public typealias FBAppLinkReturnToRefererView = FBSDKCoreKit.FBAppLinkReturnToRefererView + +/** + Wrapper for `FBSDKCoreKit.FBButton` + + - SeeAlso: `FBSDKCoreKit.FBButton` + */ +public typealias FBButton = FBSDKCoreKit.FBButton + +/** + Wrapper for `FBSDKCoreKit.FBProfilePictureView` + + - SeeAlso: `FBSDKCoreKit.FBProfilePictureView` + */ +public typealias FBProfilePictureView = FBSDKCoreKit.FBProfilePictureView + +/** + Wrapper for `FBSDKCoreKit.GraphRequest` + + - SeeAlso: `FBSDKCoreKit.GraphRequest` + */ +public typealias GraphRequest = FBSDKCoreKit.GraphRequest + +/** + Wrapper for `FBSDKCoreKit.GraphRequestConnection` + + - SeeAlso: `FBSDKCoreKit.GraphRequestConnection` + */ +public typealias GraphRequestConnection = FBSDKCoreKit.GraphRequestConnection + +/** + Wrapper for `FBSDKCoreKit.GraphRequestDataAttachment` + + - SeeAlso: `FBSDKCoreKit.GraphRequestDataAttachment` + */ +public typealias GraphRequestDataAttachment = FBSDKCoreKit.GraphRequestDataAttachment + +/** + Wrapper for `FBSDKCoreKit.GraphRequestError` + + - SeeAlso: `FBSDKCoreKit.GraphRequestError` + */ +public typealias GraphRequestError = FBSDKCoreKit.GraphRequestError + +/** + Wrapper for `FBSDKCoreKit.HTTPMethod` + + - SeeAlso: `FBSDKCoreKit.HTTPMethod` + */ +public typealias HTTPMethod = FBSDKCoreKit.HTTPMethod + +/** + Wrapper for `FBSDKCoreKit.LoggingBehavior` + + - SeeAlso: `FBSDKCoreKit.LoggingBehavior` + */ +public typealias LoggingBehavior = FBSDKCoreKit.LoggingBehavior + +/** + Wrapper for `FBSDKCoreKit.MeasurementEvent` + + - SeeAlso: `FBSDKCoreKit.MeasurementEvent` + */ +public typealias MeasurementEvent = FBSDKCoreKit.MeasurementEvent + +/** + Wrapper for `FBSDKCoreKit.Profile` + + - SeeAlso: `FBSDKCoreKit.Profile` + */ +public typealias Profile = FBSDKCoreKit.Profile + +/** + Wrapper for `FBSDKCoreKit.Settings` + + - SeeAlso: `FBSDKCoreKit.Settings` + */ +public typealias Settings = FBSDKCoreKit.Settings + +/** + Wrapper for `FBSDKCoreKit.TestUsersManager` + + - SeeAlso: `FBSDKCoreKit.TestUsersManager` + */ +public typealias TestUsersManager = FBSDKCoreKit.TestUsersManager + +/** + Wrapper for `FBSDKCoreKit.Utility` + + - SeeAlso: `FBSDKCoreKit.Utility` + */ +public typealias Utility = FBSDKCoreKit.Utility + +/** + Wrapper for `FBSDKCoreKit.WebViewAppLinkResolver` + + - SeeAlso: `FBSDKCoreKit.WebViewAppLinkResolver` + */ +public typealias WebViewAppLinkResolver = FBSDKCoreKit.WebViewAppLinkResolver + +// MARK: - Protocols + +/** + Wrapper for `FBSDKCoreKit.AppLinkResolving` + + - SeeAlso: `FBSDKCoreKit.AppLinkResolving` + */ +public typealias AppLinkResolving = FBSDKCoreKit.AppLinkResolving + +/** + Wrapper for `FBSDKCoreKit.AppLinkReturnToRefererControllerDelegate` + + - SeeAlso: `FBSDKCoreKit.AppLinkReturnToRefererControllerDelegate` + */ +public typealias AppLinkReturnToRefererControllerDelegate = FBSDKCoreKit.AppLinkReturnToRefererControllerDelegate + +/** + Wrapper for `FBSDKCoreKit.AppLinkReturnToRefererViewDelegate` + + - SeeAlso: `FBSDKCoreKit.AppLinkReturnToRefererViewDelegate` + */ +public typealias AppLinkReturnToRefererViewDelegate = FBSDKCoreKit.AppLinkReturnToRefererViewDelegate + +/** + Wrapper for `FBSDKCoreKit.Copying` + + - SeeAlso: `FBSDKCoreKit.Copying` + */ +public typealias Copying = FBSDKCoreKit.Copying + +/** + Wrapper for `FBSDKCoreKit.GraphErrorRecoveryProcessorDelegate` + + - SeeAlso: `FBSDKCoreKit.GraphErrorRecoveryProcessorDelegate` + */ +public typealias GraphErrorRecoveryProcessorDelegate = FBSDKCoreKit.GraphErrorRecoveryProcessorDelegate + +/** + Wrapper for `FBSDKCoreKit.GraphRequestConnectionDelegate` + + - SeeAlso: `FBSDKCoreKit.GraphRequestConnectionDelegate` + */ +public typealias GraphRequestConnectionDelegate = FBSDKCoreKit.GraphRequestConnectionDelegate + +/** + Wrapper for `FBSDKCoreKit.MutableCopying` + + - SeeAlso: `FBSDKCoreKit.MutableCopying` + */ +public typealias MutableCopying = FBSDKCoreKit.MutableCopying diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/Permission.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/Permission.swift new file mode 100644 index 0000000..c9ebdca --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/Permission.swift @@ -0,0 +1,251 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +import Foundation + +/** + Represents a Graph API permission. + Each permission has its own set of requirements and suggested use cases. + See a full list at https://developers.facebook.com/docs/facebook-login/permissions + */ +public enum Permission: Hashable, ExpressibleByStringLiteral { + /// Provides access to a subset of items that are part of a person's public profile. + case publicProfile + /// Provides access the list of friends that also use your app. + case userFriends + /// Provides access to the person's primary email address. + case email + /// Provides access to a person's personal description (the 'About Me' section on their Profile) + case userAboutMe + /// Provides access to all common books actions published by any app the person has used. + /// This includes books they've read, want to read, rated or quoted. + case userActionsBooks + /// Provides access to all common Open Graph fitness actions published by any app the person has used. + /// This includes runs, walks and bikes actions. + case userActionsFitness + /// Provides access to all common Open Graph music actions published by any app the person has used. + /// This includes songs they've listened to, and playlists they've created. + case userActionsMusic + /// Provides access to all common Open Graph news actions published by any app the person + /// has used which publishes these actions. + /// This includes news articles they've read or news articles they've published. + case userActionsNews + /// Provides access to all common Open Graph video actions published by any app the person + /// has used which publishes these actions. + case userActionsVideo + /// Access the date and month of a person's birthday. This may or may not include the person's year of birth, + /// dependent upon their privacy settings and the access token being used to query this field. + case userBirthday + /// Provides access to a person's education history through the education field on the User object. + case userEducationHistory + /// Provides read-only access to the Events a person is hosting or has RSVP'd to. + case userEvents + /// Provides access to read a person's game activity (scores, achievements) in any game the person has played. + case userGamesActivity + /// Provides access to a person's gender. + case userGender + /// Provides access to a person's hometown location through the hometown field on the User object. + case userHometown + /// Provides access to the list of all Facebook Pages and Open Graph objects that a person has liked. + case userLikes + /// Provides access to a person's current city through the location field on the User object. + case userLocation + /// Lets your app read the content of groups a person is an admin of through the Groups edge on the User object. + case userManagedGroups + /// Provides access to the photos a person has uploaded or been tagged in. + case userPhotos + /// Provides access to the posts on a person's Timeline. Includes their own posts, posts they are tagged in, + /// and posts other people make on their Timeline. + case userPosts + /// Provides access to a person's relationship status, + /// significant other and family members as fields on the User object. + case userRelationships + /// Provides access to a person's relationship interests as the interested_in field on the User object. + case userRelationshipDetails + /// Provides access to a person's religious and political affiliations. + case userReligionPolitics + /// Provides access to the Places a person has been tagged at in photos, videos, statuses and links. + case userTaggedPlaces + /// Provides access to the videos a person has uploaded or been tagged in. + case userVideos + /// Provides access to the person's personal website URL via the website field on the User object. + case userWebsite + /// Provides access to a person's work history and list of employers via the work field on the User object. + case userWorkHistory + /// Provides access to the names of custom lists a person has created to organize their friends. + case readCustomFriendlists + /// Provides read-only access to the Insights data for Pages, Apps and web domains the person owns. + case readInsights + /// Provides read-only access to the Audience Network Insights data for Apps the person owns. + case readAudienceNetworkInsights + /// Provides the ability to read from the Page Inboxes of the Pages managed by a person. + case readPageMailboxes + /// Provides the access to show the list of the Pages that you manage. + case pagesShowList + /// Provides the access to manage call to actions of the Pages that you manage. + case pagesManageCta + /// Lets your app manage Instant Articles on behalf of Facebook Pages administered by people using your app. + case pagesManageInstantArticles + /// Provides the access to Ads Insights API to pull ads report information for ad accounts you have access to. + case adsRead + /** + Permission with a custom string value. + See https://developers.facebook.com/docs/facebook-login/permissions for full list of available permissions. + */ + case custom(String) + + public init(stringLiteral value: String) { + guard let permission = StringPermission(rawValue: value)?.permission else { + self = .custom(value) + return + } + + self = permission + } + + public var name: String { + if let permission = stringPermission { + return permission.rawValue + } + + if case let .custom(permission) = self { + return permission + } + + return "" + } + + private var stringPermission: StringPermission? { + switch self { + case .publicProfile: return .publicProfile + case .userFriends: return .userFriends + case .email: return .email + case .userAboutMe: return .userAboutMe + case .userActionsBooks: return .userActionsBooks + case .userActionsFitness: return .userActionsFitness + case .userActionsMusic: return .userActionsMusic + case .userActionsNews: return .userActionsNews + case .userActionsVideo: return .userActionsVideo + case .userBirthday: return .userBirthday + case .userEducationHistory: return .userEducationHistory + case .userEvents: return .userEvents + case .userGamesActivity: return .userGamesActivity + case .userGender: return .userGender + case .userHometown: return .userHometown + case .userLikes: return .userLikes + case .userLocation: return .userLocation + case .userManagedGroups: return .userManagedGroups + case .userPhotos: return .userPhotos + case .userPosts: return .userPosts + case .userRelationships: return .userRelationships + case .userRelationshipDetails: return .userRelationshipDetails + case .userReligionPolitics: return .userReligionPolitics + case .userTaggedPlaces: return .userTaggedPlaces + case .userVideos: return .userVideos + case .userWebsite: return .userWebsite + case .userWorkHistory: return .userWorkHistory + case .readCustomFriendlists: return .readCustomFriendlists + case .readInsights: return .readInsights + case .readAudienceNetworkInsights: return .readAudienceNetworkInsights + case .readPageMailboxes: return .readPageMailboxes + case .pagesShowList: return .pagesShowList + case .pagesManageCta: return .pagesManageCta + case .pagesManageInstantArticles: return .pagesManageInstantArticles + case .adsRead: return .adsRead + case .custom: return nil + } + } +} + +private enum StringPermission: String { + case publicProfile = "public_profile" + case userFriends = "user_friends" + case email = "email" + case userAboutMe = "user_about_me" + case userActionsBooks = "user_actions.books" + case userActionsFitness = "user_action.fitness" + case userActionsMusic = "user_actions.music" + case userActionsNews = "user_actions.news" + case userActionsVideo = "user_actions.video" + case userBirthday = "user_birthday" + case userEducationHistory = "user_education_history" + case userEvents = "user_events" + case userGamesActivity = "user_games_activity" + case userGender = "user_gender" + case userHometown = "user_hometown" + case userLikes = "user_likes" + case userLocation = "user_location" + case userManagedGroups = "user_managed_groups" + case userPhotos = "user_photos" + case userPosts = "user_posts" + case userRelationships = "user_relationships" + case userRelationshipDetails = "user_relationship_details" + case userReligionPolitics = "user_religion_politics" + case userTaggedPlaces = "user_tagged_places" + case userVideos = "user_videos" + case userWebsite = "user_website" + case userWorkHistory = "user_work_history" + case readCustomFriendlists = "read_custom_friendlists" + case readInsights = "read_insights" + case readAudienceNetworkInsights = "read_audience_network_insights" + case readPageMailboxes = "read_page_mailboxes" + case pagesShowList = "pages_show_list" + case pagesManageCta = "pages_manage_cta" + case pagesManageInstantArticles = "pages_manage_instant_articles" + case adsRead = "ads_read" + + var permission: Permission { + switch self { + case .publicProfile: return .publicProfile + case .userFriends: return .userFriends + case .email: return .email + case .userAboutMe: return .userAboutMe + case .userActionsBooks: return .userActionsBooks + case .userActionsFitness: return .userActionsFitness + case .userActionsMusic: return .userActionsMusic + case .userActionsNews: return .userActionsNews + case .userActionsVideo: return .userActionsVideo + case .userBirthday: return .userBirthday + case .userEducationHistory: return .userEducationHistory + case .userEvents: return .userEvents + case .userGamesActivity: return .userGamesActivity + case .userGender: return .userGender + case .userHometown: return .userHometown + case .userLikes: return .userLikes + case .userLocation: return .userLocation + case .userManagedGroups: return .userManagedGroups + case .userPhotos: return .userPhotos + case .userPosts: return .userPosts + case .userRelationships: return .userRelationships + case .userRelationshipDetails: return .userRelationshipDetails + case .userReligionPolitics: return .userReligionPolitics + case .userTaggedPlaces: return .userTaggedPlaces + case .userVideos: return .userVideos + case .userWebsite: return .userWebsite + case .userWorkHistory: return .userWorkHistory + case .readCustomFriendlists: return .readCustomFriendlists + case .readInsights: return .readInsights + case .readAudienceNetworkInsights: return .readAudienceNetworkInsights + case .readPageMailboxes: return .readPageMailboxes + case .pagesShowList: return .pagesShowList + case .pagesManageCta: return .pagesManageCta + case .pagesManageInstantArticles: return .pagesManageInstantArticles + case .adsRead: return .adsRead + } + } +} diff --git a/SwiftProject/Pods/FacebookCore/Sources/Core/Settings.swift b/SwiftProject/Pods/FacebookCore/Sources/Core/Settings.swift new file mode 100644 index 0000000..14ae112 --- /dev/null +++ b/SwiftProject/Pods/FacebookCore/Sources/Core/Settings.swift @@ -0,0 +1,45 @@ +// Copyright (c) 2016-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright 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. + +import Foundation + +//-------------------------------------- +// MARK: - SDKSettings +//-------------------------------------- + +/** + Provides access to settings and configuration used by the entire SDK. + */ +public extension Settings { + //-------------------------------------- + // MARK: - SDKSettings + Logging Behavior + //-------------------------------------- + + /** + Current logging behaviors of Facebook SDK. + The default enabled behavior is `.DeveloperErrors` only. + */ + static var loggingBehaviors: Set { + get { + return Set(Settings.__loggingBehaviors.map { LoggingBehavior(rawValue: $0) }) + } + set { + Settings.__loggingBehaviors = Set(newValue.map { $0.rawValue }) + } + } +} diff --git a/SwiftProject/Pods/Manifest.lock b/SwiftProject/Pods/Manifest.lock index 8d0b3c7..132b558 100644 --- a/SwiftProject/Pods/Manifest.lock +++ b/SwiftProject/Pods/Manifest.lock @@ -823,6 +823,14 @@ PODS: - BoringSSL-GRPC/Interface (= 0.0.32) - BoringSSL-GRPC/Interface (0.0.32) - DeviceKit (5.2.2) + - FacebookCore (0.9.0): + - FBSDKCoreKit (~> 5.0) + - FBSDKCoreKit (5.15.1): + - FBSDKCoreKit/Basics (= 5.15.1) + - FBSDKCoreKit/Core (= 5.15.1) + - FBSDKCoreKit/Basics (5.15.1) + - FBSDKCoreKit/Core (5.15.1): + - FBSDKCoreKit/Basics - Firebase/AnalyticsWithoutAdIdSupport (10.23.0): - Firebase/CoreOnly - FirebaseAnalytics/WithoutAdIdSupport (~> 10.23.0) @@ -1038,6 +1046,7 @@ PODS: DEPENDENCIES: - Alamofire - DeviceKit + - FacebookCore - Firebase/AnalyticsWithoutAdIdSupport - FirebaseAuth - FirebaseCrashlytics @@ -1053,6 +1062,8 @@ SPEC REPOS: - Alamofire - BoringSSL-GRPC - DeviceKit + - FacebookCore + - FBSDKCoreKit - Firebase - FirebaseAnalytics - FirebaseAppCheckInterop @@ -1089,6 +1100,8 @@ SPEC CHECKSUMS: Alamofire: 3ca42e259043ee0dc5c0cdd76c4bc568b8e42af7 BoringSSL-GRPC: 1e2348957acdbcad360b80a264a90799984b2ba6 DeviceKit: e36aaf2a0d142ef0b4fac2007649a4414af234be + FacebookCore: ba86524b66cfa86d0f8e65d08faa8504a9f732dd + FBSDKCoreKit: 1d5acf7c9d7a2f92bb1a242dc60cae5b7adb91df Firebase: 333ec7c6b12fa09c77b5162cda6b862102211d50 FirebaseAnalytics: 45f6e2e5ef8ccbb90be73ae983c3b20fa78837f7 FirebaseAppCheckInterop: a1955ce8c30f38f87e7d091630e871e91154d65d @@ -1120,6 +1133,6 @@ SPEC CHECKSUMS: SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6 TZImagePickerController: f1c9f1cae6ac0e30b31aaa9698f9bf4a7cf5b84f -PODFILE CHECKSUM: 3d5feb483f1e0625e790607cb3a94eeb8fca4d45 +PODFILE CHECKSUM: 348e68c1ad5662db981acd0c0690ba09e3436445 COCOAPODS: 1.15.2 diff --git a/SwiftProject/Pods/Pods.xcodeproj/project.pbxproj b/SwiftProject/Pods/Pods.xcodeproj/project.pbxproj index 8e3ecdf..7042181 100644 --- a/SwiftProject/Pods/Pods.xcodeproj/project.pbxproj +++ b/SwiftProject/Pods/Pods.xcodeproj/project.pbxproj @@ -13,37 +13,37 @@ buildPhases = ( ); dependencies = ( - 38C9DDFF359726C9955C619881867A90 /* PBXTargetDependency */, - 451ED59ABAA9786FD87F2042793E883A /* PBXTargetDependency */, + 02DF7B6F76F3BD214A5AA14EC762F308 /* PBXTargetDependency */, + 43DFDD9C99506F1E11D48D019A06D116 /* PBXTargetDependency */, ); name = Firebase; productName = Firebase; }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = AD57A75ACF0D6411A9DADA5CF2EEABED /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = A6F33D4C084B0AEEF1EEA59854DCBC38 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( - 87B9E2B85B46ADF2664B99C7707A226D /* [CP] Copy XCFrameworks */, + 42102368FEB4352EF58DF0AF432E30C5 /* [CP] Copy XCFrameworks */, ); dependencies = ( - D29D89EEFA5BF882771CF51121632597 /* PBXTargetDependency */, - 4E6FCABEBA0B8EB40FA7F4D4DED15015 /* PBXTargetDependency */, + 104EA39F05828BE6AC02E4EA021CD751 /* PBXTargetDependency */, + CD56CF9009C6FAC113FD3C2651ED5703 /* PBXTargetDependency */, ); name = GoogleAppMeasurement; productName = GoogleAppMeasurement; }; C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; - buildConfigurationList = 66AAA1A442EEDA7E64FAEF6F090DF2BF /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; + buildConfigurationList = BA12EF1EA996CEC886114B8456742B70 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; buildPhases = ( - 3A4BEDE76E76C81CB3960FCB690DB355 /* [CP] Copy XCFrameworks */, + 06784DD191DAE72F6F99940506DE82D9 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 3A66B08FEA4E527A15186987AB03587D /* PBXTargetDependency */, - 220067CA4CF32C038E44CE468E27F849 /* PBXTargetDependency */, - 803C7DF90475B49EA6BBF19E8BF1A128 /* PBXTargetDependency */, - CA25194437ACC69C9F5ADD38B769C839 /* PBXTargetDependency */, - 7BCA4763A0C639C9F86F0B1F893A4D30 /* PBXTargetDependency */, + 489B78788ABED634601D32FDD4B5AFF2 /* PBXTargetDependency */, + 91A632FA8E9928F3274D1F735D40E20D /* PBXTargetDependency */, + A271C3114F2583EFD35438C4EE7BBF94 /* PBXTargetDependency */, + 56931A5E877A81A8AA3888137EFEE8C2 /* PBXTargetDependency */, + D1B9BAE4EE4A96321F8B6B5B75888019 /* PBXTargetDependency */, ); name = FirebaseAnalytics; productName = FirebaseAnalytics; @@ -51,10052 +51,10222 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000B64EE4F9E29CE24C1A64FCDD9EE4D /* auth_metadata_processor.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = C27968FB484E22487BB5EB684E5EAA26 /* auth_metadata_processor.h */; }; - 00159468DD45FAB7C9FEAF20911E5C29 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7E3DDEECFEA39616099BEF42F621791E /* prioritized_race.h */; }; - 00175BB0CA4FA2AE014F7CB25692632F /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C3532C0915881F25141D93FEE62E872 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 001C125506F3D678E6B7941F98CD3E0E /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 849A73096E117C4C99EBABDC11977FF9 /* bootstrap.upb_minitable.h */; }; - 002461A79ED8B4D033DBB8838D4DF5AF /* FirebaseRemoteConfigInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD0B970B9DA1372279341ACA6E8B74D /* FirebaseRemoteConfigInterop-dummy.m */; }; - 002CD175861A33B8A1FB5AF56E186654 /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E12FC7E509D46B477EA12EA8C9139F4 /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0033F21A64DC756A3B2A2E15D2FA7EDE /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = A72D5AA53E4CD88AB05A875DFE4F5CAA /* numbers.h */; }; - 0036757873EB4531FAAB7BB5169B0D64 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = D02DCCDC30D1DC85E8819A36F7573190 /* grpc_plugin_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 003E34ED94331AAEA817A1925D0DCE24 /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A1B0E9CA16046304FB65868E799435E /* wrr_locality.upb.h */; }; - 003EE41323509DACB5AC481EEDDD2461 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B92F70BB03414F3C1F6317C95C9C5C /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 005ADA0ED10047580A0F81831A91E871 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = E25B12A60770DE7D34F34FCBE64F6720 /* endpoint_config.h */; }; - 006605FA9484AB215DA0CB65725ECBA3 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7498F062FA23713711BF0EAEB3B348CD /* endpoint.h */; }; - 006648A51D1124E4140E7ADA59DC8A9A /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 144B08003C35F5A8986BEC04A49D11D5 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 006DA721D6BE8135FA7C1443FDEBA1A5 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 988B3CDB895DAD25658224E0DCE54A79 /* map.h */; }; - 00719CFDBC5573E59628CEA2873F4283 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F44B499886DD273F16C3057F5A95C85 /* buffer_list.h */; }; - 007270468941389D89961D6737D2F005 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D38774D8A3C67B277D173F84A00A00 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0084BCB6AB7FB1AC3EF4AE96EE21793B /* protocol.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 039D4098E75E2A19E0BB4FE38175452D /* protocol.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 008A5BA15B3FA8BAAE078C42CD04D11C /* stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA90C620B486303C1A2AE190F4145516 /* stat.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 009105778C05F78E14BD857B53E69909 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 2FA84BFA8B69DCC6127FC229FCE4C676 /* enum.h */; }; - 00934B62450B8483DB435EB24DB4DE2E /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A92279279AFB5B2751F380015349C0B7 /* fast_uniform_bits.h */; }; - 009A9346A141D18F901BA19771C16BBD /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7AC110E4B3A8299B349EB50A316804 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 00A1851D9148F1BBBF2F6601ED9F0ABA /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 328EC8747FE93562C42508CAD7F80ADD /* trace.h */; }; - 00A2749F46C967ED4725A32357E3FB1B /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CA020F5E2945FFA2616C2CA74D37AA8 /* ConstraintLayoutSupport.swift */; }; - 00B95B795C2CC3658AE306C2AD3699D8 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 5D0891A5579B7D278F33AF0528A217F7 /* desc_state.h */; }; - 00BF7B3CD103B8EE58DBF1A1E83896EA /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C51E3F4040187E0C7A8F4815FADBAD6 /* thread_manager.h */; }; - 00CB9B1490E6E4C121D532921BF1D7E8 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B10EDD931371AA1F27BF21A680893B2 /* wakeup_fd_pipe.h */; }; - 00E418EE0A6AB5A700EF9F9AFB7A919B /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CB28896DD13D82F2578FC562984F742 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 00F302C9E971871CA92A76E994206F4E /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 346F43381C6DD95C937C07DA2A0F3DBD /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 00F8573CF5F9FE0DC3D44F9EBD3C3210 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 18928BED288FA394FC04DFAE39E39803 /* endpoint_cfstream.h */; }; - 01053DED700D18A61D7DB3DB9E78A722 /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = B45DDC9E822D0D1A7EC39B8EF10186B7 /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 01079E97192312B2E5FE6147405F3CC3 /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1AD70F2563E3A929D07A390DE8C30F88 /* duration.upb.h */; }; - 010E17A3DAFF2D88597F17AF3B21B58A /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 010D96541603B8BA1EFB5683C3E33564 /* proxy_mapper_registry.h */; }; - 011A895457FE8F7137676F593548688F /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF4C34D1CB8CD3A607AFA203B19CA09 /* array.h */; }; - 011CADF0CCD654BF23A4C6C8A99C4480 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 5036C3D346CFC7DFD965B73EF67F173E /* GULSecureCoding.m */; }; + 0001AE26EC4A81717E558B9FD919F17C /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = F1002A7416C1B3E04BC7D511D23113E6 /* iocp.h */; }; + 00021A79B37951B11EF5D5D40986D8E1 /* type_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AE5E97E013C978394860065C3A68D3F4 /* type_list.h */; }; + 00029FA13723BD1C4DFA9CD63DE92220 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBB7CCFD908A2B73ED1073B72493DD4 /* lockfree_event.h */; }; + 000625CDC1FF83B0EF0F98EFAD93C994 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B7D815BDC4F36A3022B71219FC2786 /* tls.upbdefs.h */; }; + 0007FC78D7F4A12F0024ED8005783932 /* batch_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5086BE4A9AD459EB294B2490D0D22974 /* batch_builder.h */; }; + 000A55F746201157A95D5208F6FA5F97 /* httpbody.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 02738C2B122708C51A2F952DC328B847 /* httpbody.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0013E2FA8E407C6CA0C38DF6F968C090 /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 5260CB27F328410DC320448C4263A7FB /* str_format.h */; }; + 00151FAB7534095B671F132C91DC1EBF /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EA4716C9A5F11FC4A91FB695A4AADD0C /* xds_cluster_specifier_plugin.h */; }; + 00205B309AF3912F7934856FCA86BD9D /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 67889827EBA785CCA7846E14DEBD3834 /* hpack_encoder_table.h */; }; + 0028B2BADD05FC23DD6C0DAC316B889A /* compliance.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E60A09C9E427D388D2CED1EF5ECAAE /* compliance.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 002CD175861A33B8A1FB5AF56E186654 /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB89BDF996A8BEE0D9BFF17A7526E10 /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 003C3DA0B08C9529D9A1CB207B46B2B9 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FCCC957CA26E4ABAF0BFB1A482EDA258 /* memory.upbdefs.h */; }; + 003EE41323509DACB5AC481EEDDD2461 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = DF992AB2C0D937FF77D082308DC478BD /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0056DE1A952373D02349F7EE83438801 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFDAAF00B4C2EDB2DDB69D070055F021 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 005AD4F0C607858AFF16AAC156761E00 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 80EB3D4A2D4A62029F052C17AC2445FD /* message_reserved_range.h */; }; + 005FEAAF5365749BB0EB62296A33A8C6 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A208774AE971297AF8B79F73EB2BD107 /* endpoint_components.upbdefs.h */; }; + 0069C264F67D40D60A264BBD1A6E73D8 /* FBSDKAccessToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F21FCCBE8B80A5E633A5646553BF3F3 /* FBSDKAccessToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 006C38C4FD951851760C1727AD61C98D /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1DC54E2199C6CD6450C8866E126A91C7 /* ev_poll_posix.h */; }; + 006D1BD0ED4FA64975A9918E13BFE051 /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60C35F63AEE568540AF12D8FEAF55EC9 /* alts_seal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 00712671A0B1266214077E7222698CDB /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 11BA58EEE52FF5B8747329F5F9C28872 /* rbac.upbdefs.h */; }; + 007270468941389D89961D6737D2F005 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A2157D5EFC22C71086933C7C694B61 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0077981895C8FD4EE0089AFEC5FDC1B7 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A98233DB38C7AA336BCC5312CFA4F0C /* timer.h */; }; + 008BC76D4640C373B4ED31EAE52A05D2 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C7B19FA91D62BD566FF9A17A9F33FE5 /* config_dump_shared.upb.h */; }; + 008C5E4A357BFE4599037117AA1F171F /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 65578CFAEE41A6BAA6EC03637FEA4090 /* typed_struct.upbdefs.h */; }; + 00913136CC459B867FDF6901D7B71311 /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = A553E509A58C687A815B7831BF15DFB2 /* link.h */; }; + 0095ED03F8E86270037F571AB0E25E74 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 411919061A39FDE6F643C6CD9F58C8F2 /* beta_distribution.h */; }; + 0096387275FA9AD6B150B69633C04778 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 28EDBEC54F6BB9F122AE4783A16CEC75 /* transport_security_grpc.h */; }; + 00980F3059F50C3CE54D50C31E20EE73 /* flag.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E1611598938EB336369AA9EA8AB9C1F /* flag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 009A9346A141D18F901BA19771C16BBD /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF9CE052C31F873A4375E83B87C78AC /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00A2749F46C967ED4725A32357E3FB1B /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB995BA9C117117E430AD2BD6470FF24 /* ConstraintLayoutSupport.swift */; }; + 00A9B1C9C743F6AE10013B1A5B4ECD7C /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A219F78CCB8BD7B51B3385F1A62D425F /* versioning.upbdefs.h */; }; + 00B0EE9C914F8FA1D1E53B0561C86808 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C592929E97A2CBDC2AA60124D58F198D /* security.upb.h */; }; + 00B0F6EDE0AFA227C17EF97C4E0E41FA /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 8929FF57D3D03B791A9EA1603986CBEE /* address_filtering.h */; }; + 00B4AA4478644BBE28BE5FBC4ECAFF1F /* FBSDKCrashObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 64ECC2C86396AC37E5725CE43F8FF58F /* FBSDKCrashObserver.m */; }; + 00B83799AE84D65903F17A6819B04EAB /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A863F561F63772E4EA40D25E51001FC2 /* accesslog.upb.h */; }; + 00BB66E33046ADACC63CC5BE21462F35 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = FC190349D7B76931E8258A2533D8474C /* certificate_provider_factory.h */; }; + 00C8C9BDA6F40A49D6C04134739E3A9D /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7A8F3586335DBC3B30C8C754DF818C35 /* handshaker.h */; }; + 00DAD3263E9ABE2C6A315771D204E0F4 /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CD0E913FD9139D73DD2389E8BA1942 /* xds_transport_grpc.h */; }; + 00E6FB1E55499E93CA9AC7B52D68B82B /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50F9E9ED8085C07C7D207AE16D465D6C /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 00E7F189D3EC0F7E76373723CBC43279 /* skywalking.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DB355DC0EACEBF6A0B5C8D69360763 /* skywalking.upb_minitable.h */; }; + 00EEB63DB87B8ABB5EAD0518052D4A3B /* byte_buffer_reader.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 61BC14572C5C7E2EBB3E546110AA634B /* byte_buffer_reader.h */; }; + 00F302C9E971871CA92A76E994206F4E /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = 51293494C0D0906946E12897FFAF2209 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 00F3D0ECC348BC5CC2B8177CC7F603BC /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = FFA49151746B37BB6921F20100C50382 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 00F733EF666A1C77CD5B79CDA6EB6DFD /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 46E90299520FCE0FBE71255D28F9276B /* backend_metric.h */; }; + 00F73500A576C13D08BC06149A4C2C0D /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E3A0C4FF8F701F911C0F232F575BEBD8 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 00FE139F0993F93E6154AC3D92A527FA /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91FD5DA46370827A9E1EEB409C904C83 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 01053DED700D18A61D7DB3DB9E78A722 /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B49B5F8E605A6F5C9BF8D67538ACEC /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 010D68E24D9C389B467DDBFC4C90E108 /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5869F39D7933B6A1BF1929154CC9053A /* macros.h */; }; + 011188D18CDE4055607AADEC55EC07BE /* bootstrap.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B13BBEDA99083ECC9C8FEE5B18A67AB /* bootstrap.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 01197136D2D101735FE94409F6A3BC8E /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27424F528CF49E896027B1052A747258 /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0119A29724B11277A85265461F7F9306 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 419687CB1B8F58C0128C822F2401F8B2 /* load_report.upb.h */; }; 011F31EEBF21A72A6B5A4011DAFA77D4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 012A70C8CC9579BB37DF463BB25CB2D1 /* down_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 06348E15D4F46326849FA9DBACF1ABEA /* down_cast.h */; }; - 013BBEA1945287803C3479A4592C99B5 /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B31218045998E02E64F7E5AA3D5F22D /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 013E87C8156531F6491E0AA61B8B062C /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = A19199735F0DBC03CC365F31D2DCFA87 /* http2_errors.h */; }; - 0161D9F94F33EAF7CB79420FFA1A56CC /* Promise+Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F41F630C70B123193810314FF01A5BA9 /* Promise+Timeout.swift */; }; - 0162F5294AF604BA109F967A1C9566B9 /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D44E6364890338DED8F68E5C6215435B /* rls_config.upb.h */; }; - 016CF2DB322957C2EF5F47D239ACA2BD /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DC87AAEF9B58756A4CD02B94A5EDFE0F /* legacy_frame.h */; }; - 01812E26AD681C347D6399FDF833AE94 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 86547757E4666A01D350FB70EBE9A064 /* status.upb_minitable.h */; }; - 01880A371CAD75341175C3DDEC95344D /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = BCB44B6F88E1A9CBC21CFE59F54D67BD /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 018D52377987E18B3D5B4B1F43EB04FC /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = AD4139BF94555B0D8B8FFADC80D07DFF /* FIRCLSFABHost.m */; }; - 018F0231103541A24137A60EDCD94D17 /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = A66E6DF029007510CCF1A2E2E76F5159 /* stateful_session_filter.h */; }; - 019809FB7B5635F95741712C1C9DE917 /* callback_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C7A031356235358DA66ABC273C15376E /* callback_common.h */; }; - 0199C52C206497408DBACFBA4588C37E /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9168929A943354AB0ED299ED75094C0 /* xds_route_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 019ED89F76EBA3F0C89C4604D6946031 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC5B017255A59AA372787C7F0A19AD3D /* grpc_if_nametoindex_unsupported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01A655E662EF799AFB4B2CDE15F4F31D /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FC6312697F519FFEF2FC4CB61C4E170 /* cluster.upb_minitable.h */; }; - 01B2300E405F320C611B24B1B5A19B51 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = CDDAC9D44615E8E6FCDB62B361DD268D /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 01B447793D546D88AF89276BFBBEB5AA /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5F05E41DE039472CCA4A11F3BE6645 /* closure.h */; }; - 01BAB9D276C82446BB252F7D711BE907 /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2369399578915B80F309468253215033 /* alts_grpc_integrity_only_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01BB9EFFA65061589C5AB775EFF20638 /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = ED5F8FB2D3AA39E3EDA4050774D3B5EE /* iomgr_fwd.h */; }; - 01BCA66E298E10DE0082F122FC433FC8 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 300955CA4E742DBE537D82AC315DAE2B /* ev_posix.h */; }; - 01BD4DC8977EAB26C76D49B90FB4ADF2 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 528D3F1DE63EFD50B50BC884B78114AD /* gethostname.h */; }; - 01CB987274A8FBDF20F0B15C91AE0383 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B98F30735EDC5D1623E0C94C29DC0D0A /* FIRFinalizeMFASignInRequest.m */; }; - 01CD92F5B7126DF8B47AB31F70156AC1 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BC66CF966D99CA528BC6FEE02BAB9C1 /* cert.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01D723B3D529FDACF8ED70DCA2081478 /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = CCEF25E20CF1F8729D99BD01C35FC0CF /* call_finalization.h */; }; - 01E05C71F44DB8BC5556423163877553 /* resource.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C88549AB8CE91EF5CA53B07D0FEFE1 /* resource.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01F01B17F48647734A532D09F487988A /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 295B98A6A813F5792654CB2387ADD67E /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 01F62CEEA6BF319533DB91855D4ED93C /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = E84AA880B8C08725CF45D2AC743F040F /* xxhash.h */; }; - 020F6684E479085B748D9136C66C47EC /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6115A5F064E4A38A8ABA256EA284A5 /* tls.upbdefs.h */; }; - 0215593985626B13E3170E7F55601B3D /* FIRRevokeTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C17695F6FAB97FE5C172FDEE69D847 /* FIRRevokeTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02173B5C3BA016F65B1EAEEDB1D2B39E /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2071A2E83CAE3AD6BC5124A665CDEB85 /* deprecation.upb.h */; }; - 02221E3BF68F3A377CA3083BB8C5234E /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = C18E15BF99BBDE85CAB8C047205A9CA3 /* grpc_tls_crl_provider.h */; }; - 022397710CB7EEDF1A0884A0582D7AAC /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = C51027A952F55B245D7983C522D85A2A /* channel_create_impl.h */; }; - 0224A1BAC719AE6E4F6B470B78D4B153 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB95911FB10F4D96EEEF7663EC7A394E /* circuit_breaker.upb_minitable.h */; }; - 023299A416A9258A1070CFE31489DCF7 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 969FD5E363C430184C5200B8FE207041 /* message_allocator.h */; }; - 0234AD5D2AD669571BB9115B1D47DBFE /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 984B2E3EE7F4B9566CAFCD9668C19762 /* memory.upb.h */; }; - 023A4A525BDDF01E59A1EA942AC195E7 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = 257BE1B66ADC943B4A1736813D053E25 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 024F671451A2A9E351C821E6E4A9919D /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = B53F2DA90948F2C4A6093179B05FEF74 /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 025E9AD5A9922A0B95484D68135C0A23 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = A070BA79BB0F8483373D9B41CD9D145A /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0260815802465C25E914D0890C47405F /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CFAE8526A4FD727D2A163741F2280BC /* init_dump.upb_minitable.h */; }; - 026976179C399D31409735EF1D05A22B /* log_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FE3D2F0B3360383E298F452FF1F1600F /* log_windows.h */; }; - 026D67F7AA3B9FE083C7CDF4A8FA80D6 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6229DD42A5984CD8F71C568FB4B6C3CC /* metadata.upb_minitable.h */; }; - 026FA4BAF57834148870B88756F00747 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F09BE586B29CA3D4D9A9B9E6AC6B394 /* FIRSetAccountInfoRequest.m */; }; - 02734F8FAE6DAC51E8B8FB7C9837C2B2 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9005173A8ABDCCC111100C21A05D0657 /* range.upb_minitable.h */; }; - 0280B50B95CD9172DD88C886A03DFB49 /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8172E0292B05BC1897F7CB2360BB284A /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 028BFB0AB3F352B6E2A2DCA5168551E2 /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = BD790207DD7ADEECF6E986944B064187 /* FIRGitHubAuthCredential.m */; }; - 028D67CA1589359F45C2A9E67C36F5B7 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE92791A55F429A63E38F3A1998CED7 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 028D7FE2E36759128C53E30AEC20693B /* gRPC-C++-grpcpp in Resources */ = {isa = PBXBuildFile; fileRef = 28F341633BC96126DD3A7030F0B54124 /* gRPC-C++-grpcpp */; }; - 029455727CA122A40149A4495788AA5A /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F004BDBC0ABE682B3238E8E94E0C888B /* StorageFactory.swift */; }; - 02A05315D9A34686B8DF77C12FB3CDCB /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 519D5A3BD8208FD5ADDA4658FFFC3C08 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02B590B42CD50A53968A4E5E7D9EC86E /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82FBD3ADDD80EEA6C94D03FF28962FA3 /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 02BC2CF9F6763D29C799E79B5E23F6FE /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB96E55E21CF757A3A266919047B79ED /* cel.upbdefs.h */; }; - 02C3E220F84964C54DF406061FAC93CB /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A49A42A540EC414DCB10E2C0C660C43 /* tap.upb.h */; }; - 02C8833FC5760BBB3F54E1A097A551E3 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1350C279660E4598CD393BA935914B5 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 02CD0FE6F04FF9954747B1DB7DE2C90A /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4CD0F3AAD5DF973CCFAEAA4341FC7D /* xray.upb.h */; }; - 02D0B11556FBDEB6A0326A06ED944077 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC96290F440688833A9AAE504097BB1 /* extension.h */; }; - 02D5B916E3CC8E2342B8D6AA850D7EDE /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 54751C93D2109661693F6700D3F4CD01 /* FIRCLSUserLogging.m */; }; - 02EF4C5AFC9DD87F41DE20AC6C011AE2 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F805C0ABC384F5AAB22C45F2A964D9 /* listener_components.upb.h */; }; - 02F999FF68FB7A20282271023846A815 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F498B9F986381F36753D0C8D81A3A6E /* FIRExceptionModel.m */; }; - 02FDB7782F7A468643D6DE28A53773F1 /* status.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = F7EF82AA9C2FCD10E63D18D41BF884FE /* status.h */; }; - 02FEAA5D7C8641DA2080867345B42246 /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 36D11B55B4DF32956F0120EC54D08DC6 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0303C232C5C8C1F3E6F428A18D634AE9 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F129EEA5B95F1089E22724A844120E /* service_type.h */; }; - 0307F4C353DD521457E1F46087A43264 /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2630243A8CC9E5A439C11474299EB0D5 /* default_event_engine.h */; }; - 030814816B526AE862CEF31F743921A6 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45FE720D8C554BB3A4101EE294E32628 /* endpoint_pair_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 030BD8BCE45A84ABC1D596A4293D129C /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4501A21085F3380C3FD637B2A42A3153 /* dummy.m */; }; - 030D152BE316073C47EFDA3D4A4F4D5E /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D92F906E037E391DBD7DC8B9B88CA9 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 031DE94F87430027BADD7A478E83CF89 /* status_code_input.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DA2BEA65620345EB5A69901AFF31E2E7 /* status_code_input.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03384EC73DF0268BC4DEEBAF69200DB4 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C9108CFCB84B8D97CB8355A2487FDDDD /* url_external_account_credentials.h */; }; - 033E4AF572BD18CF6FA179F15002C260 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 810AE8785719307BCF9CF1C8F7E6DE56 /* internal_errqueue.h */; }; - 0342B5FA0878E9F9BCD67B90E6999F27 /* metadata_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4853C854E918EA9741958B5159B723AE /* metadata_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0346E7C06FF9D8E0135C41A588CD262E /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42317275C7C3EC6E4F3B15A961DBFD3F /* lrs.upbdefs.h */; }; - 0347675243054DE7ED438BEFADC2FBC8 /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2D6073E521570552A997C9479C28FA3A /* handshaker.h */; }; - 034A1879FF63C73CC22689EC8CBECBBC /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4834CBAD43BF97074A15661406C7B591 /* RetryStrategy.swift */; }; - 034B7BF843F951E166845F08D593C9AF /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 2A81AD8E6BB5E0BB3AE8ED551ECD23E4 /* chttp2_connector.h */; }; - 03544FA088244D4203470560700B2DD4 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6D197FE7A1BB437B4F2093B87A964F /* local_security_connector.h */; }; - 035742BB774CBA43D26EF17D943E63B7 /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = A2E769BA49E88961ECDE47D88A7E69CA /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 03581F85B1BDD1DD9AFB476190F76124 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F6CEA1C03CE53AF17FF7034D244A548 /* alts_shared_resource.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 035A73E97CC2124956974495330F51E1 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 78A765490A7BB63493E0C223B0EF371B /* metadata.upb.h */; }; - 036119507E4A36748852E81D24CB8380 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 34740217E7051F7BB8B1538D88D7D62B /* extension_range.h */; }; - 03634BBC6B68CFA6DCF54889C60ED073 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC5D8BFB0D796A24378693E392DA59D /* binder_auto_utils.h */; }; - 0364EFB3AFBAFA52C2CEC19DC3093DA0 /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F048915EDCFE89B4E37F58D2E07900 /* type_traits.h */; }; - 0368842FCA1942ABDC906478316E3D1E /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D544C8812675ADB181FD1FF97C0251 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 036EC76F9843DDCACC1FA9AB9B74F68D /* promise_based_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAB78A0CFCEEAE0700135A0BB3044A33 /* promise_based_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 036F53C32980D127AE8E31B67AC0CD01 /* FIRSESNanoPBHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = ABDDD1EC3169179A286412CA8CDF8397 /* FIRSESNanoPBHelpers.m */; }; - 038C9B8331CA15792AB497A35D81FA58 /* pem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CFD7745AC4E980D993A7CAD3EC1CF0B3 /* pem.h */; }; - 03A55B414C1BF77432A3D2167241F5D2 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C5956682DC4E270CFB0AC290322015 /* extension.upb.h */; }; - 03A6262E98FC948638E044B55436CA76 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 0306FAA8F05CCCFC3303BB9A6F9EAC00 /* transport_security_common.upb.h */; }; - 03AEABE4FFE421A0FFCE03F79E51E6D6 /* datadog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 18D224D211D0FF7384B344C86D1CC83F /* datadog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03AFA9D1A07552C4721B6C7E87E1AAD4 /* compression.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9EEE6DA5E48EDA015D62188FEBC759D2 /* compression.h */; }; - 03B76BFAB3CBB8D8C9548733EA30164C /* SwiftHeaderWorkaround.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EB4B8EC4F3F2CEF67230AA16D378EB3 /* SwiftHeaderWorkaround.swift */; }; - 03C0DBC79CAF47D1EB521827C6E3F0AB /* def_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 386BE81FE675E1BBFB4C3381D89E328D /* def_type.h */; }; - 03CB794DDE91D16610287B6B8D71406F /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 479446E9C7183634DC97228A6679EAEF /* migrate.upb.h */; }; - 03CEA2B6C9484198ED725C057A782F66 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A4E381CF9AC187A27618384EDDC74B /* listener.upb.h */; }; - 03DACAA4A2DB926A31C85E47B16A9BE6 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D639BADFF8903D3D345D283B3A4BBE5 /* checked.upb_minitable.h */; }; - 03DE3A0F011AC90E54FDC47F49740F10 /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9758CC87813536A78F1FC54973F4D83C /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03E0D88CCD43C8293952DF629033A6DE /* leveldb-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDFE6F32D56F8B2347A4C86A4706DFF /* leveldb-library-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 03E0EFD4951B4B627C91B11623EA60EA /* thash.h in Headers */ = {isa = PBXBuildFile; fileRef = F074BD62076EF7EC5C0F454BC691EC8B /* thash.h */; }; - 03E30E887E234BC57BA126D4AEA80736 /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BE06E66781D730D676F15E77461C0F3B /* grpc_method_list.upbdefs.h */; }; - 03E545A46B3FFB76C4033C8E9CE6E609 /* aggregate_field.cc in Sources */ = {isa = PBXBuildFile; fileRef = 861B620F28601DA1084B058484324305 /* aggregate_field.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 03E6D8C75E4AB2189AAD79AD1A5230CD /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 01CE3ED016EC661DEC52F44FD61481B4 /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 03EC649177614829513429C778E2BDD3 /* xray.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 837750B2E39F6D7C60AA8B42F25A2805 /* xray.upb_minitable.h */; }; - 03EDC39A76E3B1D25364F1114DF7F23C /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CE9BC90653F3F4444B32114B5B447DD /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 03F08DA477CAE69D50E11AD2FC21CDB1 /* dns_resolver_ares.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBA2B9F4F74265B03863B0C37A82E89 /* dns_resolver_ares.h */; }; - 03FBAFBF2E45E00D7ECB21B4B40A2004 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A6B55996336A7AC996E0C3156387F60 /* FBLPromise+Any.m */; }; - 040FC543AB6033B922FE33D7BE920382 /* http.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D20EEA2BEB08A100CE834F9133406196 /* http.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 04136C7A84D76C01E0FF36F90DCC6F0A /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 474C987110ACF513F3140F266DB234D4 /* zipkin.upbdefs.h */; }; - 0415679A402A4088846B653BE153C760 /* common_closures.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3076A778DE881543328D424F6F6C6C /* common_closures.h */; }; - 04289219E323274FACB9AB07FA3689E7 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A13F4D60E2D6E3F48591294B14C9AC2 /* bind_front.h */; }; - 042CDBA330A49E6B5292C2BD69540324 /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = EF310751FCB3F73A4A3AD17AD78A8DBA /* str_format.h */; }; - 0441F693F176CA99B0F355B15BD74095 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 02974820FDAEE61436D133CABCA0EEE0 /* certs.upb.h */; }; - 044A3952BECF9793C2B411C9250F1220 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F615DD1A233FC66383596D6E73EEC6F8 /* FIRHeartbeatLogger.m */; }; - 044D9234E25580DD90669BEF56C9574F /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2878D381A0EF54A671A6F57C2B8C0E58 /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0456519DA04F0751BC3821D323730BBE /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C568CEAEA758D82FA8B2BD71011E8E14 /* cookie.upb.h */; }; - 045B99866D1C944EEBC279D004F59A81 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F12F6E61802A2B7FFA3CAC97C54F849 /* endpoint_components.upbdefs.h */; }; - 045E4E98862A07659572ACB4EC80A15E /* metadata_map.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = AAEA5226691F329AB0BCDABCC02D1473 /* metadata_map.h */; }; - 04637C70546B34F93C3A1D79C3F78B37 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CD22E0662337E21473F77F3B41D4551 /* ConstraintDirectionalInsetTarget.swift */; }; - 047311A2A3A4828182CAA5906EBF774E /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9390A7A7133D1CFF365869896963004 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0478A57D701C998236EEC0C9CBD8EC71 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 559991CA990EB074C0243DDDC0A5ECED /* metrics_service.upbdefs.h */; }; - 0480BFDA68E804DC636C3C26DB5895C5 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 05210DB21890E691DC3488EE05B32C8C /* parse_address.h */; }; - 0486D9F4E2F7BDDB0E7DDC42E51D98AA /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0247AF0657BAF5DF8DF2BE03DFCF11 /* cmac.h */; }; - 048D2CD93EAA3CD8DB9B1AB0A504D2DF /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 26B29E40967E63BE8A3A7BC91217A296 /* cord_rep_btree_reader.h */; }; - 048EEF6127F5587623D0B23CC7825853 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B849A930F12E15A515112A0995A06278 /* service.upb.h */; }; - 04934567D445C8E8B5D07BAF99C9C783 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 65D53BA40B7C7A6962999091978AD6D4 /* status_util.h */; }; - 04978E37693883F3E3EF448E3BADFACC /* server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A9B1C837D869838993126B2B46CF5182 /* server_builder.h */; }; - 0499A07FB45112B9D16742C5A889C8E2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C9AA63B894BF76BD5D614024B0053D43 /* PrivacyInfo.xcprivacy */; }; - 049C1D6F6C90F5291122B9549A40958E /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 503585B4D45920D0AA6450D21D30C1B1 /* wakeup_fd_posix.h */; }; - 04A8430BFC619C34E5F4D3878D094380 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B38BEED8453B3D1D6CD513591741ECE /* CachedResponseHandler.swift */; }; - 04B3CC6889AE1B4CB7C13841BCF8716D /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = EA2FDE08B9D84CBF648DFB63BB498ABC /* timestamp.upb.h */; }; - 04B9F1BF2B3AEEEB4CE78726E159F96D /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 07ED0F57F9E8EDB2E1C5911E26C1B8CF /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 04C961336BCDB011989081483728ED27 /* dsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1C94CD1FB6DE25CC228DD3FE2AAECF31 /* dsa.h */; }; - 04D614A5EC8F85FC142F6AC0D6B633B7 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = AB5C773B4A3B0387A6A9A6EBCAAD5071 /* message_reserved_range.h */; }; - 04D8034293ECC4411225CC4E392D9603 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E6769A7BA301D9C621056145D34D2B1B /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04DB799F4C125E2D3E7EEE625C0E2D7B /* aead.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 017EF685DFAB85DE4F8134A70C1D1489 /* aead.h */; }; - 04E0A1311F491C306F5BECD4D99FB652 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 100594D887CEFD33F8497D35AD1F7095 /* token_bucket.upbdefs.h */; }; - 04E693FB1E910B6787D3BC86D2D2DC86 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF15A908CF22468A1E074022E9FBD34 /* GDTCORAssert.m */; }; - 04EF004BF40252BA8D01196EA5339CFF /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 123E43608EE4BE7216BE06D62F4286BE /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 04F22D5B1230561F13A1FC40A6685AA2 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 512F42E55992DD16E9623E28016F124A /* message.hpp */; }; - 04F2BF5154D8C1FDC9528E947CC93858 /* empty.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 486E58D52C505317D9DA124B0982D88F /* empty.upb_minitable.h */; }; - 04F3A77D6F797609339058CE7CE8C493 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3012845835BB46D2FE3D62C6186836E5 /* global_subchannel_pool.h */; }; - 04F43667104DB4C7DB56938D5A1B38DC /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 159DFCD4BC0AE9634BBEE6F0BDB8B5F5 /* node.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 04FF529433DD17D1BFC3A9BBE8ABC633 /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = A9B5EF7FCA35AB0228443A4C7D0CFC3D /* parser.h */; }; - 04FF66B349B80C2945E93CD788473570 /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EECD48FCFC73BD053B0867244E74D12A /* struct.upb_minitable.h */; }; - 05048D1378EF25F0E358D59C0DE663F9 /* sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B34A57AEB70C9888B5DA75870D26DB58 /* sync.h */; }; - 0509D36A31CC72479167596EDAC7A4E8 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7355E0CF980BD0805988D4775BF13703 /* route.upbdefs.h */; }; - 051C3CEC5E2D686EA8CA5D0C644E7B69 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 601DE7515730221890349E111F5AE3B7 /* certificate_provider_factory.h */; }; - 051D317548C6EC1B555E98CEE7FDC1D2 /* filter_state.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 504544840BF8634866E9C200F8FEDFDF /* filter_state.upb.h */; }; - 051D40F634598E0C0BBCBE6423446F73 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = BC977C9DCFC36103E97AED1529C22521 /* crashlytics.nanopb.c */; }; - 0522CA5D448289A176BBA79B70492E30 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 6FF776B8EC2B81C33030358C75E2555E /* message_reserved_range.h */; }; - 053001BF324D997E333F5F65980042F0 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C4C5AEAC858E80F025422D7FF087B6 /* pkcs7.h */; }; - 0530094A5D0335AF69FB3F8568DF4130 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7B7AD66AA1C4349E86BC4104DD0E05 /* hpack_encoder_table.h */; }; - 05361CEDFF5104CA7D73FAF48308DC45 /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = 4617B55E761BA582B923AAE6FD99A1EE /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0545EF577B2774659E6D67394A1C74A7 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF0708D12E8B05F8595E8C46478E3524 /* grpc_alts_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 054F7B830F9343B84EB6E32336215411 /* method_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 370CBE331219ED27985EFC31651F4771 /* method_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 055471EA02431C523D6654DFC1C81264 /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEB2A6C6861DA4852BF81EE011F1B15 /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0560A18B312CFBA50B96C916CC4EE868 /* rls.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 65FE0176570CCAE14AC5BC65795035B2 /* rls.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 05634C15EAC843AD1D816F4C82F6E70F /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B695F3436FE543F7B7890CECEDF7D58D /* clusters.upbdefs.h */; }; - 056C2A1AC8A3A313B1884F3C2CEA03CC /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 496106E16AE4ABF2DBFA6D45F1DB0DA2 /* bitmap256.h */; }; - 0570D95ACC720C0C5540D17BB3BF3DC7 /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACF698AE5CC54C04A3BA0D2C7E3FAF50 /* jwt_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0573A64C94970759CD3843C2D267C6C9 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B69A2881C2F6934F6CE85BAE4029739 /* cookie.upb_minitable.h */; }; - 0577E0F85907F33761D28589E7DF7953 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 720990B293DCEAA3FB8A81FB3E3F4DA2 /* internal.h */; }; - 0580A9FD2CF7E9B89191AA5629F2CC1E /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = F7EF82AA9C2FCD10E63D18D41BF884FE /* status.h */; }; - 0591132B5EA1BE4DDA268D8A9C3D0421 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84A7E7A1D848F672F16D435FAE56C581 /* LayoutConstraint.swift */; }; - 059889E6BAB306CCFEDE296B712272BD /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A42E1B69D317C6C4FCFF9B5F6A2B35D /* router.upbdefs.h */; }; - 059B9B68813219C4D40032EFF28E4352 /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 3632EA6E31DFE932E64ECEA3CC717CF1 /* extension_range.h */; }; - 05A1C840FEDBCF62463A64E18A727C52 /* fast_type_id.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AA41040D74334E26E587B207BFF70595 /* fast_type_id.h */; }; - 05A321642D494B5D887386BAA4180BFE /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8A8A548220BF2BB9332E6CA4C799D4 /* time_zone_posix.h */; }; - 05B6CA401C663731EE48663180B72304 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D1299013B5C4CE24C2AC297382B82894 /* resolved_address_internal.h */; }; - 05B8A5061F738062E3E9D1F380B34524 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECDF5690996FF085A50116017EDBF8A /* node.upbdefs.h */; }; - 05BE1439F0FC530BCBB327F7DEADCF61 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E6ABC16D28925E703AD0A0BCCC057D /* proxy_protocol.upbdefs.h */; }; - 05C394C89A0BCBDA06F3DC00C90735EE /* FIRCLSContextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE084E00520104B22C5354E4F03F42F3 /* FIRCLSContextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05C5D60796B7F80368D16FE7D2998ED0 /* handshaker.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 398A500983D8BF28501B1D46AA2DF897 /* handshaker.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 05C847A1CA493B124B7D1035DDA8AC2A /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF473848E4B0E39D09045F8B5FACA7B /* endpoint_pair.h */; }; - 05CEEFDB2BE25021AD491738078BDB06 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 66B3CCFD6EA9D6583E7FB73904FA305B /* binder_stream.h */; }; - 05D840CDB4D734F1884D12FCE9811787 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12C35711351F8AA1E6F10B6B53BEA400 /* http_uri.upb.h */; }; - 05DD9C89E2747EC24B588F9DFDB799C8 /* engine.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 070D8B1747941A0FFAF2B5A8716370A5 /* engine.h */; }; - 05DEEBF18EFAB8D00DC69FF011B17808 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BA8B4C028211C3E13C528E6810B434 /* status.h */; }; - 05F4F858C8BB8331EF382270E96F828E /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = 7629BF6AB980C98EC7161220DD360FEC /* pkcs8.h */; }; - 05F5CE73363920AF0295DE1D464EABF7 /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = A3E809F4F199336624BBA3C5105B23CD /* xds_listener.h */; }; - 05F7EFBBADFCA3AEBC5450AADA804D29 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDED170EDEDF8EE718D4A4BBAEF0702 /* collection_entry.upb.h */; }; - 05F9581C918D9C8D2DA9EED974D033EF /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 2E2B154AA2719F04F9E03EC5B14260DC /* proxy_mapper_registry.h */; }; - 0603A9150FC17EE81D2852385962E2EE /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC0A7C77C515D20AF7DD7C98B121A3CA /* alts_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 060D613B53E0A3F0DEF85B783C3A22BC /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 02608A5BF2F4604CEA7B86FAA91B91B4 /* certificate_provider_store.h */; }; - 0616C3C90D909CDDF3BC92A5A584A6E3 /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 04A03878E825793A63DF52566B5E4192 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 061A4EF5E95AA10EA5C3D152B33EF269 /* log.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 97AB697BF0AC70DE77638A7F08586034 /* log.h */; }; - 06271910CA53C549D9AE4319C81E171E /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = D57FCC2476F1D97C36CD2DF42FBBCF2A /* load_balancer.upb_minitable.h */; }; - 06329EAC9D0DFEC44E69A970464B059B /* delegating_channel.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 42AD8675CDEC57DFA0DC4E045E884EE5 /* delegating_channel.h */; }; - 064375A501406B337688299295D1B520 /* sequence_lock.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7045D2197583946A8585A194A2B9C2 /* sequence_lock.h */; }; - 064DAE9D80BD9A79A4005595DAF04E74 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 485672D460099702E12EB1CE47919B4E /* status.upb_minitable.h */; }; - 0650F5851825B5E5AF94D6A6756831A8 /* mutex_stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FC47EF2B11739FC6648D07B7ED74C03E /* mutex_stats.upb_minitable.h */; }; - 065481E3E0532325E59EC899C5051BD1 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C4D69FAA3E1698D2B7AE0C59B070E00 /* http_inputs.upbdefs.h */; }; - 0670219A5023898DE20B8AEFEF4217A6 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 71B56F896B864F6404620077FCE0B56C /* plugin_credentials.h */; }; - 06808E1B694B141669177A0905FBC215 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 916613FAE2DFFF02AA7947B4D283C63E /* ares_resolver.h */; }; - 068196CE160C106BCBBE2D7F14A8703B /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = 34DB006E2CFF708BD8173C3874A65A9B /* FIRCLSCodeMapping.m */; }; - 068C4969AF6AF9BBEC3730E90E3D5EC6 /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 53507921216FE8096734A59E6A8B1C92 /* grpc_polled_fd_windows.h */; }; - 0691D80171D5E442369DA7781BD162CF /* bio.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9BAE795A02F810B143E550520BEB8774 /* bio.h */; }; - 069716848E4F5C846E6CADE876169687 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1F1D45E3E6040B47C55EE7D4AAEA9F /* service_config_call_data.h */; }; - 069A412F5E46F1396730EBCD89EAC09D /* fault.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 04CD2FC99565433E7FCA33BB2E0D9315 /* fault.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 06A15E0602DF36B67AC34FD24146A315 /* token_bucket.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B00A45DB09EB334EC29B2593AAB728C /* token_bucket.upb_minitable.h */; }; - 06A8D06DD76E7B7022A703E245E65CD9 /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 67945CFEA190F5F4CFF78E01CB46E9BB /* server_builder_plugin.h */; }; - 06A91D5651C6DD446F656E76AF13AF02 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D40A1A16637FE08B870E3E1DC3B1F3 /* internal.h */; }; - 06C122883810A382C86849C7C04FD393 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */ = {isa = PBXBuildFile; fileRef = 4C51E3F4040187E0C7A8F4815FADBAD6 /* thread_manager.h */; }; - 06C625154A9063DD5A41CF6067453745 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 866CCE696961152E67069FE2DD292DA5 /* cpu.h */; }; - 06D43BBB9F7DC1FC3673C59D59CC0BDE /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DB38B288010305F16F83881F8161598E /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06D620A431B4097FECE8A10270BA6FAD /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD1AB45712654DA0168ED93381A293F3 /* range.upb_minitable.h */; }; - 06E43B4751069B47B3BD4AFD936A57E3 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2E818BDC430768F90CE6A652929C1A7 /* ConstraintPriority.swift */; }; - 06E8DEE60F70DBD6D53ECB8701DA6A4B /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = B93F9F1ABAF25D907F2F784D94263067 /* polling_resolver.h */; }; - 06EB847A45D1CB77D855DB296AC69608 /* resource_locator.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0BAC021F1FEDE1F5F57E5A407C7C87 /* resource_locator.upb_minitable.h */; }; - 06F01A7F3DA08EF0489556B78C0E9A00 /* call_final_info.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7E9E1757F0C7774A4BC0E13D43A3905B /* call_final_info.h */; }; - 06F269473D2E62CAF986C020683F54E9 /* dynamic_ot.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F50FF556B755B7A4C72D38ED8314CB18 /* dynamic_ot.upb_minitable.h */; }; - 06F4A6B4066F80D65D52AA95816D2123 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 92DDCC6F3B9BF1D5EAC672C494C60FB1 /* method_def.h */; }; - 06F854CD43DF662A8F11DAD925CFAB23 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E2F3C402B75AB4D3ED6D8BD1BEFFC0FC /* hash_policy.upb_minitable.h */; }; - 06FAA07ABF438DC6A2211D37283B9858 /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6CA355611227ED3B28DB15FABA4011B5 /* spinlock.h */; }; - 06FE6B282F222B0B93B70F06CBE01003 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 247ADBC68E3C7E99AACA63B2A6DCF1C7 /* tcp_server.h */; }; - 070033EE533AB68E0BAA572833D4D785 /* internal.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 14B3CDC72ABBF386974A7952F8243DE6 /* internal.h */; }; - 070C98B3516E748AC5C2007E0DFDF243 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D1CF0222039D42B608B595682CE9AA /* socket_utils.h */; }; - 071ABFEFCABE5602E17C71AC1F792C0A /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 347DE80DE90F8C31649BFB026040A0F6 /* status_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 07289ED206B88005994C9EA7DE81F1B5 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5DCEB4D9E7890B536E9189ABCCF8F6F5 /* fork.h */; }; - 072A5C2A66E1C7197729A28F47593CF9 /* FIRCLSContextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 87011C25E1759C3DDD2F624C0FDDB622 /* FIRCLSContextManager.m */; }; - 072B7A19A440082218B1FC43F0CBB271 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 06665ABF2501B60F035805072F63C283 /* trace.h */; }; - 073AFA63CEE910768E0DEBF0F9B57F51 /* FIRAggregateQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = E2ED150A8E4CC297DA9E22EDEB14154E /* FIRAggregateQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 073CFB088FF442E095D414A84C344C83 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B22B1BABF7295CD069F18FA514E92DE /* race.h */; }; - 073D6CE56CCB769B2941348E9009BE79 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0CBA11C0248442186E1BAEFE620031E8 /* error.h */; }; - 074D8D2AA0C4300D808AF80119BCF8AE /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 00D100C64635E1199BECAEA4DB0E5D4D /* grpc_if_nametoindex.h */; }; - 074ED73E7F2A2D98159C51A9C9D6D47F /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C40782309221F2AF548618C926D57BE /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0751A188D18BC9BC87F3B8D1C5EC0556 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = F45E26C50A9FD4ACED815ADDADA73073 /* sync_generic.h */; }; - 0756BA6BDE4F8BBCCEE87C397CAD4E10 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4C8FA1DB08391AE112FB9321988BD71 /* metadata.upbdefs.h */; }; - 075B8F745650E9C0F6AB413FA65F0C0D /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 847F43032A927BF1E913D2F00AFCDAEC /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 075DED1DFD14C4496738EC740202C697 /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 2771AF84D9D9D7D70E7CC5F4C14F8686 /* FIRAuthAPNSToken.m */; }; - 075E5F566C5997FB2C3BE843CDCA6A9C /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D67BECA8FA61CF80FD537EB9BB74337 /* time.h */; }; - 075FA1C56B84E72ED8111651052431E8 /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF3A3BEE2CA3A174EB796CC2D08C14B /* inflate.h */; }; - 0763EA6F4F289986110F2F6414BDA8F7 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A7286A79533D55205A3008D930E519C8 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 076452173B93AB5E37CF64B6CE9468BC /* inftrees.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 1761D804B03BFA57B2E8B369FAC1994C /* inftrees.h */; }; - 0767B9E019E9E3D9FAAB405A6C089BB3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0376F7E599F4EA51E22B731E0D6D6F9D /* PrivacyInfo.xcprivacy */; }; - 076DAC66AC9A1E4AD1028597B66E4530 /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5BA764CB2485AF78E965904801F9BAA /* grpc_tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 076F9E8747E2B385C7374FE3A0E13008 /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F19D1D5582B9858C05AD2AEA56EA179 /* exec_ctx.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0771A358C23132BF43E3829E6FC66683 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B23C7ED5A87F875967BDA21FBC7AA0D /* arena.h */; }; - 0775DDDB8C5F2B07BC8235DEF0C0EDCD /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 43D8282DCD09D8FC58C61C2DBB43BF2F /* grpclb_balancer_addresses.h */; }; - 077D6B0CDBD6DE46CE904C79F3F1BD8B /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C306DCCC148AB275F79448FBEBFC9E /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 079088292B5DA2C6CFE31C266DF5B728 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFB927E66E7D2E50FF866257919373 /* custom_tag.upb.h */; }; - 0794D955276BED5E16860D3BAC938AED /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E644DBC0E8CB42073ED42ED597FA5C9D /* xds_resource_type.h */; }; - 0798B14A705061D930A2F7838D73C6C3 /* RolloutsStateSubscriber.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F767C286D30670E838ABE016BF27A79 /* RolloutsStateSubscriber.swift */; }; - 079F0820555C5B86C9FBD5EC6344137F /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED61AD3E23AB984AA5FB450BDCA0E6AA /* Protected.swift */; }; - 07A65D9C6EA9BAD9F12611584D22F514 /* ratelimit_unit.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3EC4881F792C2EBE4260A55BB8870705 /* ratelimit_unit.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 07A93395730BECC8241B1C970A00CFAE /* stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A66E6DF029007510CCF1A2E2E76F5159 /* stateful_session_filter.h */; }; - 07B298DAA63AFFD7CAFA2AA2C2F9CC6A /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 60F92842566CD35A1DD467F9D238C454 /* validation_errors.h */; }; - 07C677042BB048A9440E13D5EEB8DC0E /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A82E85213D75A1103046771B7FBB44B /* AnimatedImageView.swift */; }; - 07CCB353ED6E511647B76BBB9383B3F3 /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 104923947A2F0862D3AE3029F8995CC6 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07D05D5A6517F6BA9CDCB1FB404A1C48 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AB089C388259AEC6158D877CEE6FCD68 /* path_transformation.upbdefs.h */; }; - 07D05FC26FF54782161F5390987DA4C1 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 30BE30EEF12306F0A5DEFE5AF66AFB17 /* listener.upb.h */; }; - 07D3B143EA0B85311084EE63D34DABAF /* opencensus.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DF8214906600BDA8D6387E771DFDA5DD /* opencensus.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 07EA6EFD5F8693694A1B6025A7F7366C /* extension.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 35AD86F4109ECC5F1E5081BFEC51409F /* extension.h */; }; - 07EBEFE9D2E2D5AE88E3DCE58041F66C /* program_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F87206A074AB081D45C57FD9E9189D36 /* program_name.h */; }; - 07EC0FCDC55362D922A8C3EB95F1FC16 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = CD088AF29CEF7CFBA187EB91BE7C3332 /* def.h */; }; - 07EC6C32233542B64EFEB9EA4EDF2B83 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0329FEB953D7FB4396E13A125BEA521C /* xxhash.h */; }; - 07F06A65CCA27381F0736E6291835C5A /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCC95466F74C337B00EF32C9B1DA6AB /* iostream_state_saver.h */; }; - 07F3D4FA4DFB91790965C1E0072EA43D /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD2B6836CA113ED9A7041F95D64BBF9 /* idle_filter_state.h */; }; - 07F594B38C4125653251AC53554610A4 /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = A5D78A12FF458B4256671B20567E1741 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 07FD8E79E8D78243008E2466F3B6B323 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB077B5F55D95D0E57A224C18D5198E /* status.upb.h */; }; - 07FEFC1A35CD498A988A06FF4FFE35FC /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 84ADCF233638B2652459B6196C5CA6CD /* status.h */; }; - 0802C78E4B471857520079E55301E775 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 97B47F3D6B5E39E13350C96BF91A3915 /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 080FD47C0A13819E27795C9B1E158FA2 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 16201745122473603DC1B63BBCA9729B /* exec_ctx_wakeup_scheduler.h */; }; - 08146CC5CFBBDAA34A55C7D67147BC4C /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 470BA302E4B80C1032BDE9CC0EF3436C /* xds_transport_grpc.h */; }; - 082CD12975DBB1DABA3FC159EBFFF184 /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = D66886BE35DA37906401D7FCB5509629 /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 01206EE15931B5D504ED1AE007424394 /* persistent_cache_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6E3AC70A239021C9876973AEE6BA90E /* persistent_cache_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 01226633C69D32F9B61298F19B252A4B /* duration.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 13C70CA75E842792F4BFD8145EFCF3FE /* duration.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0127689F0ABC0F084E2963B2A9A7D667 /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 605ED1DC6CDA24862AE0B6FE139CE3F4 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0128F89B62A668AE577EC357941A80A3 /* composite_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CB19E8B324D4A9AC0C50FDBF24701BC /* composite_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 012AB9DF03DE70EBD14AE8103D04D4F1 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E66397D7D3DE9F3E6880E36B2E7CC6D3 /* xds_channel_args.h */; }; + 01333CB8C84495D937ACCE23D0B2EDD2 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 63FA57A6870A52F8F832B19518CDD628 /* http_inputs.upbdefs.h */; }; + 0134C8E6C8B847032BB040E7CC2D091B /* ratelimit_strategy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FEBF1EAB71221D1F3FD9F5B9B6A818C6 /* ratelimit_strategy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 01456C2C4CA2D989A69C925B5490FE86 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 033ED0F81A0728CD7FACB7FBF8F817DC /* http_tracer.upb.h */; }; + 014ADEC2CA2168BD903A734C9FCC4764 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9BE0A2C2720D7A3449C5BE68B07DA9EE /* resolve_address.h */; }; + 014BD48E01FFF42556FB343F9DBDE8FC /* mutex_stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BC917CB766CDE80D16B16CF3FD4935A /* mutex_stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 015846F7B66909FDA58C4430DF93EFF1 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 702657EE6A06843D795E1F6AAD7E5463 /* time_averaged_stats.h */; }; + 015CFF19D0557A40E7DF296A7F00E613 /* config.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 48111F1C5F1E4F7F728A9C4FEADACEA0 /* config.h */; }; + 016F85C37912FA061EBF9DFBE1DD39C9 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = BD30775BF9443B3B8C08BBFC7E3C1AA0 /* local_credentials.h */; }; + 018016B954153A643445D90CD6D1A67A /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A7F996F03B33C74E101DB6B8E815CD16 /* cluster.upb.h */; }; + 0181056BDEF0A674B56DD488FC27202C /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7ED2D5293534E5D6A8B5A97DA13F7 /* status.h */; }; + 0185F784C838C84CCD89ABE3BE36A500 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 265E101E8B76E3926DF5FE29F44AFE0D /* memory.upbdefs.h */; }; + 01880A371CAD75341175C3DDEC95344D /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = F433923B1F3490D6B5269F82EF3BEBEF /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 018AA3E88C00BE6EFE8180B68A7DCFEC /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = DD75442D06C373BD8C4FFEA8192291CB /* c.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 018D52377987E18B3D5B4B1F43EB04FC /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = CCC175B60FAEF082C469565398D3B29E /* FIRCLSFABHost.m */; }; + 01995939CAEBCC92437F70A110CC462C /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D15D75EF21230E057732909E28C009B /* enum_def.h */; }; + 01A7853F11184B572E153ECCE5A72EA5 /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2C9C3D267917437B6F63A4BF25A2D3 /* service_def.h */; }; + 01A979F8D2267EE0F0669659C23BA9B5 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = D742D07D66E829794BC2F23AFBA0F738 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 01B2300E405F320C611B24B1B5A19B51 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = D125D4E341F9A5D3BF21627CCA4A783B /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 01B512B48F4F72ADE8935A9091E8236D /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9A7A9CA0ADB1EEC84310329042FC8A1 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 01B7478E3A0DB1EBE080C894B13E0C8E /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BC3128D17F79518C0A5A402E04E1505 /* alts_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 01B8BA41E6D2C8192C8C31E67EA6E053 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C290C07B8B45B7FBD652507C72C0CABE /* grpc_method_list.upb.h */; }; + 01BBC1EDC34D1CB09571514EE3C00322 /* seed_gen_exception.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 102ECAEEBE642B8AC95EAF77B423593C /* seed_gen_exception.h */; }; + 01CB987274A8FBDF20F0B15C91AE0383 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C48043DF5E169134B066C1CE391E7D5 /* FIRFinalizeMFASignInRequest.m */; }; + 01CD46835AAE74435867C5F4C40227A8 /* encode.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E94BFB29DF7A1EBEF52B100FDD34FF18 /* encode.hpp */; }; + 01D0A268EE1F9052ED211ACE0DDA8026 /* discovery.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3593DE33DB7E0223EE05A5376210B69D /* discovery.upb_minitable.h */; }; + 01D731F1DAE8FB2C88DFAFB134B0B0CF /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C96244309F7BB3776A0C645E78B68EA6 /* utils.h */; }; + 01D82603D851C7122FAABB27B2E8CE1D /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = 82EAB6287BD69D4B6161239F3AED83F2 /* output.h */; }; + 01DA9686EF581C6BEC18FF2D8280482B /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C7FCA59D7D3CCB0F4A9CAABE405DC5 /* slice_buffer.h */; }; + 01ED828AFEFFE48A94A0068C0E59DD40 /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B041B5D4C0C4B0948DCA54AE42A46156 /* certs.upb_minitable.h */; }; + 01F7AC65E8D138D6351E168191D9B216 /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 871A48672EF771FE7429B1DBA0AC8470 /* enum_def.h */; }; + 01FC526554E70B66388AE97FAAEBA1F9 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8373D09388FA6B5A831010BE6D7922CD /* jwt_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 01FED1B0D7A86A1E17A098E84565FED8 /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B36F583FE29809D6895D91EA028AF69C /* trace_config.upbdefs.h */; }; + 0201AA1C2AB80D81D5A49C9EC731A293 /* Installations+InstallationsProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = D57385F04DB3F1431D2782336822CC78 /* Installations+InstallationsProtocol.swift */; }; + 020A31FED354F66E8D015B809990741B /* FirebaseDataEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D79227581D2CC985011E3EAB93B32A53 /* FirebaseDataEncoder.swift */; }; + 020B5EE539DBAA6B2B2ECB06907267B7 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5CFC76EEAE50418DE21A4264AFB29292 /* resolved_address_internal.h */; }; + 020FAC62704BF1909A1FBC7F4E3096E3 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6AD38546099EC4D7B721FAA9A725BE6 /* clusters.upbdefs.h */; }; + 0214B30E571EB7EF72EE779AEB2E50F2 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EA27EB84C33AAAEF2E84D2DAE1CD6D7D /* endpoint.upb.h */; }; + 0215593985626B13E3170E7F55601B3D /* FIRRevokeTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A48A4C5DFEFAF5FCD9BCA7A0AF9C143 /* FIRRevokeTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02165B8B4D756A781B608741B3DA7904 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 70F2ACB450DAE5AE291E905FF2ADA819 /* windows_engine.h */; }; + 022F1075F468030EC2E49128463C33B1 /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 679D7C15A9B80D38AC99941D5B53E43D /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0238FF552F87E758B1C5690AD45C7FCB /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = B9948646A0069634289C5E92F2FC013B /* backend_metric_provider.h */; }; + 023A2088363AEF72F1DF069338D4A6FA /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8317FA9C5A6FEB8DBAD6EF0064017D /* range.upb_minitable.h */; }; + 023D59ECC43AD6C6858FB2412288CA81 /* identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B3201C06F076810E26EE8DFE98351B62 /* identity.h */; }; + 024BEBFCD8DD758F10EFDC126621FF26 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0355BC986A49EF068ACBDCF7C5170EF7 /* authority.upb.h */; }; + 02501B79B37EFCAE11E95CEA3073F25A /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75E6C3B59E1DB27910E7A6A7C35BFDB1 /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0266718C988F87EBA2925F2EF459C7C7 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E38A277A750CC51DD24C1845F10F063 /* memory_allocator_impl.h */; }; + 026998C4DC1B2DDD7B8D5813CB030027 /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = A57226099BD7918CD8488CA9D8BC5D05 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 026FA4BAF57834148870B88756F00747 /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 94E2DA88BA72E62606C0785F2EED2CFD /* FIRSetAccountInfoRequest.m */; }; + 0275DB81324768767C5E47814ADE32D6 /* memory.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B6A7D862A7B1911E2BA97228B3A4BB69 /* memory.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0277C62D500B1C58EDAF34A0E238188C /* Pods-SwiftProject-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A82F55E6237597B276F43CE4910ECF /* Pods-SwiftProject-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 027CD599D13516063A9232D56C8936B5 /* overload.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D562817A26369C5CF7D5169CA41274 /* overload.upb_minitable.h */; }; + 0280B50B95CD9172DD88C886A03DFB49 /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F7AE6346A87CAEF97AB7E1471EBAE7A /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 02834E446242B160A50FD92B7E475BBD /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8529C387FC8E6CE9989E0CB752D65360 /* http_connection_manager.upb.h */; }; + 028BFB0AB3F352B6E2A2DCA5168551E2 /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA5D83A811767CB13F343D4235C605A /* FIRGitHubAuthCredential.m */; }; + 02936C36FEC5553D490FD35FCC925008 /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 732A8403363EE4579EE7A45A43BD1D14 /* stacktrace_config.h */; }; + 0293F747E13F3137E884EF8C8C93088C /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4AC86673661A5F81849D1542D3BCED /* proxy_mapper.h */; }; + 02A8300A54E43D7869CA7D4C203A4B1D /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 90206A559E7843E6C794A2BC5207FC2F /* slice_buffer.h */; }; + 02A87D19D6AE4AA0C566731D17725B3D /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BA22606519F707DD57BDD13838EA2C0 /* GULHeartbeatDateStorage.m */; }; + 02AA535FCF19BC5F5E0F0A2480AB1E2C /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1A120536B1713C47E76AE899FCEAE204 /* timer_heap.h */; }; + 02AAACB1E87E117E12DBA8D648981AD6 /* any_invocable.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 947DC6276871344A949FC2127B6596BB /* any_invocable.h */; }; + 02AAB9BFC87606637A5412F96FE84F69 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = 3912AEB95FF55EF1747D8254AA528082 /* set.h */; }; + 02B295F939FFD184CB935DF151468273 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5637B380FB18D5C693E2BC56F3A74FA8 /* channel_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 02BD45D1E5C080F3D00FFE8CB7E46A80 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD0243C542DECD8525F1FEFDEACB381 /* percent.upb.h */; }; + 02D5044319CFFE1341B1E0849C5861F1 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 05E5FB4DC841A67F6A3D9C80C36F0274 /* message_def.h */; }; + 02D5B916E3CC8E2342B8D6AA850D7EDE /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C36295792D3376E1E4E0591C0074A1 /* FIRCLSUserLogging.m */; }; + 02DEE7BCB6FB72C919F23EF5F01B793F /* json_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFA3D16229CA2AA529DE03B9A7789A6 /* json_reader.h */; }; + 02E27EC6E96B13A20E7F1CD2B423143C /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 2C4AC86673661A5F81849D1542D3BCED /* proxy_mapper.h */; }; + 02ED4C9B3DC659587AE2A99473F5BE25 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1A68F95B990D5B77062AF3DFCFCD7B /* grpclb_client_stats.h */; }; + 02F815FB01EDE70845E21DAF3786F8D7 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A3361D9345523DD9A5EFFB0332DA1AF /* ssl_session_cache.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 02F935D57E3F874608EA6DB1F30DC129 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 164B9FA298A66A34CECEB7506DEB40AC /* create_auth_context.h */; }; + 02F999FF68FB7A20282271023846A815 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A53824482579C66291E19124CED05989 /* FIRExceptionModel.m */; }; + 02FA4749710C7956C90A51357E555F1C /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EE3E499D7DCDBC26180D2EDBA305E05A /* metadata_compression_traits.h */; }; + 02FEAA5D7C8641DA2080867345B42246 /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E933F61D32F11C9A159406776458983 /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0301575A04A9A0E646A7EA9949A17665 /* windows_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 59860DA3CFF3383A7658F8229347EEB7 /* windows_listener.h */; }; + 03054FC466A4A97650211EA1661F80C4 /* float_conversion.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 974DE6903E46CE35E63457B26CD2BD99 /* float_conversion.h */; }; + 0308F03263F293C7A892C8DBEAFF0EDC /* status_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B50F9D85FA879092BB4C1552BE78F5C8 /* status_internal.h */; }; + 030BD8BCE45A84ABC1D596A4293D129C /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D4F660C928E8300620FA87ACEE5D5AC /* dummy.m */; }; + 030D152BE316073C47EFDA3D4A4F4D5E /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A15B67B22B97248AB49364BF930150 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03129D1D3F437E5DD95E066EEFC0AA42 /* ref_counted_dns_resolver_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6828EB6D32DDAA7B9F9B0FC3C9800A5A /* ref_counted_dns_resolver_interface.h */; }; + 0318B37E667CAB9B948A0EA4A3D3A2FC /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11E4D7B494D18C1ACA770104A7938466 /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 032D45FFF3B4827170BCB8A04705B0AE /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD8184C72CB03F002425E23E210EF46 /* atm_windows.h */; }; + 0330CA6E1A333C80E7723C9B5EE33B9F /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F04D47BCCF5E019DEB69181F0B97D8 /* time_util.h */; }; + 03439B2E7006CA6067FE59E6515642A9 /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB14B7AF54E87319A590EA4EBD4457 /* vsnprintf_compat.h */; }; + 0344936F6532C0663F018EF51CC0B2BC /* flag.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 1C363C241109FD1290B7F146ECABD8C3 /* flag.h */; }; + 03462A5E76F8BDF8C6133083CDAA7A13 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B11BF453992572C8322A88D5E0E3CD5 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0348BAD7694A8366D0A2413CC7F3D491 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECE688BC1AF39CACB0F3ED48D817EC72 /* opencensus.upb_minitable.h */; }; + 034A1879FF63C73CC22689EC8CBECBBC /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB40B5455A455BA0C1049498E4C2075 /* RetryStrategy.swift */; }; + 034CDBF5992774A5D37B60EFD950A62F /* hash_policy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D3EC7B2E70506A42F492B2BAA4DE52B7 /* hash_policy.upb_minitable.h */; }; + 0354BF54E52A72E0DE3C87DC2DAD7067 /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 623861018390DAEEAEFD684F49ED9AE4 /* grpc_alts_credentials_server_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 035742BB774CBA43D26EF17D943E63B7 /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 88C4DA1780E983680DC1A6B9696DD93F /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 035BA5EE01DAD0F8859CD3CB945E814E /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD753E6276B965A1E80ED23C3A97AA9F /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 0368842FCA1942ABDC906478316E3D1E /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34BCAFE15056ADEFAD44D95547A94C99 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 03834E9DDF6E06E65DE47848FF369CD2 /* crc_memcpy_x86_arm_combined.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6A97B0CC05DD116EA0598B85ABF8F4A /* crc_memcpy_x86_arm_combined.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0389177007BAF8D2418358127B8CD270 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = E776DF48869A6C5BCA25F9A796F2CF22 /* auth_context.h */; }; + 03899EB8BC522357FCCAF8C7EDFC526D /* load_file.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E9E2484C23801ACB40F88A301BB86FCB /* load_file.h */; }; + 038A0536EC2A8794B047319D012436B5 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = DEBCEDE61A7D1F36DDDD91EFEDE0A45C /* httpbody.upbdefs.h */; }; + 038C9B8331CA15792AB497A35D81FA58 /* pem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4B44099CD9D055E52391887E48BF8C76 /* pem.h */; }; + 038CD1744DA8B94290A4D53F18075D95 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = F475EDC8FB68E501C960DEA278244135 /* struct.upb.h */; }; + 0392C16B16A67E9A668F8A5EFF6BA930 /* status.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 24C7ED2D5293534E5D6A8B5A97DA13F7 /* status.h */; }; + 039530918363A7A6A8C38645D447F67C /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E9AB9F4541AF1020DCED98DF0F29A525 /* posix_engine.h */; }; + 039AA120E8F35D01A8DBC7029B8174E8 /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C34EA1D81D6DE38C6958049B259E303 /* binder_connector.h */; }; + 039EFFB41496F5B53797A5E911EA3A6E /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B43C9307DDEE677ADE964B370D2D04 /* promise_factory.h */; }; + 03AC71F61112FD532638A306C8E8B24B /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */ = {isa = PBXBuildFile; fileRef = D755FB028C6CC82F2D6ABF9E44B093AC /* pick_first.h */; }; + 03AF40DF1CF16885D4CDAE1F0A1E0757 /* status.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3C59EB1034149C9E184B2E02082DC021 /* status.hpp */; }; + 03B533266A0D3C896E6D4FE2436B3929 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CF2B19E6D91A26AFE29085CBE7E6204B /* extension_range.h */; }; + 03B76BFAB3CBB8D8C9548733EA30164C /* SwiftHeaderWorkaround.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C88803F3C5C7257B5A224A77C3F78EA /* SwiftHeaderWorkaround.swift */; }; + 03B8A2570F36E86BEFCA31639DCF25C3 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ECFD5E50527B395D33202A9D991AF841 /* cert.upbdefs.h */; }; + 03B976DE58814381B47F074019CF18E1 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A1212CE60092825327BBBC84D7F91ED5 /* any.upb.h */; }; + 03BD415C021DAA2B33B9174B72C4E4F8 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9ABAA5A49EAEB6636D9D2448408FAE /* alts_grpc_record_protocol_common.h */; }; + 03C0862A82306D475D3DDB14819E69DE /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = B566B5EC448034456600FF8068F55AEA /* resource.upb.h */; }; + 03C132251B28F92ECF648916552AAD68 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9BF2A82BDC44E26CAF1FC379EE860F3 /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 03C5EBB18FD1CDDA2A9A6F9B99C16CA6 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BCD57FB2AF202564836359B5B7670A78 /* listener_components.upb_minitable.h */; }; + 03C85CDE31EF4EF1D1329697CDBF284E /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AB324347EE5934306A8D7988919FAF4B /* sockaddr_utils.h */; }; + 03CBF06A11A4CC793766605093F5851B /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93F22E60DB8AF8B35F1CF78F6CB97A6D /* socket_windows.h */; }; + 03E0EFD4951B4B627C91B11623EA60EA /* thash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3548459DEB91533E9830F85B9CA56C67 /* thash.h */; }; + 03E104A6AB660AB904295AA39EA7E01E /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CB26F04A31432CD0F98CCA8E85482355 /* rbac.upb.h */; }; + 03E36E86CB1B79D90862D5CF906B834B /* percent.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F0800EAD18B7FF9347681F4E25BD8B2E /* percent.upb_minitable.h */; }; + 03E6D8C75E4AB2189AAD79AD1A5230CD /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 0283FCC4C773FA788D60D169870CACD7 /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 03E79415C445F5966C1362A471421A32 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01C93277848769AA7C632270BD3C4CFA /* alts_record_protocol_crypter_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 03EDC39A76E3B1D25364F1114DF7F23C /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 6080AC8AD01E181212D9A992AFC6CA5D /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 03EF35307C9C7C219F457247C5DF92F9 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CE0590DE29CCB1AC021D853E75FD228E /* decode_huff.h */; }; + 03EF96D9CF81F90A7969A46E78D4A114 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9F2097FF4E9159E0C8005827462703 /* lrs.upb.h */; }; + 0414303D90F54F0EE403B709E39C2C93 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = E75CB07670E41C6F6B48B3B288ECCD85 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 041C2E67D4BA54AE63AD239E71E44107 /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DF67631854C3339CEFFDC458CA27F8E /* tcp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0420012A0C5BE7B76DBD79854005666E /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = C88DEDA04B03624DD635AEAF37209E30 /* fake_resolver.h */; }; + 042048315392E6B8AC4FAC5A399955A8 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 029F37116C52C4E894959CDD22F340A1 /* certificate_provider_registry.h */; }; + 042AF90F03AF97F84C8BFCF60FD131B2 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C2DC200C22CCBBEF8EB083FA2B9D44 /* alts_iovec_record_protocol.h */; }; + 043EB0BC4F84073E62396BC3E3398079 /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 623E924DDE859DBDBFF109692221DDC6 /* grpc_tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0442ADDC960611CCE23AED58B781C00A /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE51C6386065DA7D79DA3191A7513BB /* external_account_credentials.h */; }; + 0443844DF8168E17C6662B7D303A3B50 /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73FE5C3AD15C5A0FEE4E99120059EFBB /* bootstrap.upb.h */; }; + 0443CFB1821478B7969789BC81E8295E /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1778B04E2F615EF40A067C0EF982D1FA /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 04467FACE36091C1EA8C42137015C9F1 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E7B61C7EC0E0DA55736BDB920AED26 /* health_check_client.h */; }; + 044702A6BAB61D03220A2A0CB6E7E298 /* directory_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BA6239857B0A12A4270BEE0BA28AF35 /* directory_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 04479D0B9D4F20AEC74A31B4B1031BEB /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AD0BEFA1A101DF255F933CA3E24DDA74 /* sockaddr_windows.h */; }; + 044C5889339993D3936AA5C0104496F3 /* backend_metric_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C99B8FCBBAFB5EED3F747FAD657206B /* backend_metric_filter.h */; }; + 044D9234E25580DD90669BEF56C9574F /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAEDC2E5B9DB9558A8E8EECC75C62F4F /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 044FE6D5F022CA766873781EF93CEF47 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7959D671B88B8C2E06206ABF943E3E3E /* annotations.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 045891D5D3BB50E006E61829D1C05BAD /* marshalling.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 2C8AEFA1D9937659CA0E31E830B332CC /* marshalling.h */; }; + 045A12559E6EF95D0AC2D0BA877E87FC /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A9469BE178BDE38AB715AF6BEB7E3C6F /* alts_grpc_record_protocol.h */; }; + 045A37A317B12DDEFB14B0AB3C02417B /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BBD87DCB8E6080DBAECEFDB91BE723 /* resolve_address_windows.h */; }; + 0462D119D7AA0E7080C1A94855B4477E /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 276CB116F836ABD3AC78767239857D3A /* local_subchannel_pool.h */; }; + 04637C70546B34F93C3A1D79C3F78B37 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A1268AE50259C1C0BBFEB021891900F /* ConstraintDirectionalInsetTarget.swift */; }; + 0467E0E83B94C9491CF47AF51DEE406B /* filter_state.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0AB15A985C35E160FDF938FDF69AA4 /* filter_state.upbdefs.h */; }; + 047257D7F07D1A0690ACFC0ADCBA1F5C /* stateful_session.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E46A971760A422CAF88A90F05141A25 /* stateful_session.upb_minitable.h */; }; + 0476C1DBDBE9ACD2B33B76AB06E2B052 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C96244309F7BB3776A0C645E78B68EA6 /* utils.h */; }; + 047F09157179FF4FEE00EC311B0DAAD5 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A6784E63EF08435CEDD0CFC392A574 /* status.upbdefs.h */; }; + 0486D9F4E2F7BDDB0E7DDC42E51D98AA /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E6281C161DE01F74BB9088EB7F3D12E /* cmac.h */; }; + 04944F72D20D328380E59DD09EA966B0 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 96ED0217C973958FCF6BB8A425EB881E /* swap.h */; }; + 049780564C38BFF81A635329068FBB3C /* gaussian_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9CD359EFE131119C3670E51148A9B5A5 /* gaussian_distribution.h */; }; + 049CB11CC487A61AD61BB4D9005F51BE /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74634B5E8C139A87CF3FC3B690403324 /* common.upbdefs.h */; }; + 04A287BA07774817A762DD5B2FF7D488 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F4CD0E913FD9139D73DD2389E8BA1942 /* xds_transport_grpc.h */; }; + 04A8430BFC619C34E5F4D3878D094380 /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA9A352A37864ACBEDE7E8176F39ABC3 /* CachedResponseHandler.swift */; }; + 04A93A99912F7B5B6CABFBF4F3CB1488 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2256628ADD6E35E059E746C33E5849 /* rpc_method.h */; }; + 04AFE0D74E4139FB0FAE57D1F9305CBE /* datadog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 997D61302D66D4A83317DBADF1DFD684 /* datadog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 04B157F1EF6A8F1939377B8E90943AC6 /* census.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C66A222ADFF6B519402190790922C698 /* census.h */; }; + 04B414699CDB57C82E284403DFC7CF5B /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CDA1BAD2B60A6E1F66320E0322580B /* ssl_transport_security.h */; }; + 04B9F1BF2B3AEEEB4CE78726E159F96D /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D542CA5F720410B0FE50354118C4D5A3 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 04C19D8F9452F2CD4F47916F1E6A03B4 /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 81E6ECE2A2DBD1E3F350C19BB840ED06 /* http.upb.h */; }; + 04C52D0AC448C7381D56A53F15135688 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = B87BE2D5F9D870B5889C754DE986A656 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 04C78A9F8A8092BCDF2DE57224344DDA /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 64A0617956E5DB39FF4CAD77B08865A1 /* xds_dependency_manager.h */; }; + 04C8D1D540A3A509319F65672B5E334E /* datadog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0DED6B727834B5F0083666C4C8E71E /* datadog.upb_minitable.h */; }; + 04C961336BCDB011989081483728ED27 /* dsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3AE580411ACF731463E060B3FE637B09 /* dsa.h */; }; + 04DB799F4C125E2D3E7EEE625C0E2D7B /* aead.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9B276DFA17A2C8DE3DE273DC3F914760 /* aead.h */; }; + 04E7966EBDD449DCEF5F831232A8E62F /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12D3BDF898B88EFCAA4873D165377A78 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 04EE787BEF3F1BDD62D4C67C022AAF60 /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9DE3683B52203E9F60AEBD75DC5267BC /* forkable.h */; }; + 04EF004BF40252BA8D01196EA5339CFF /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = FCB1B2E1DE53DE7FC798C4D3E51BBF6C /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 04FE76167E82EE7951911D70DEDC203A /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63C62673F54F5AF055DA34B78D9344FD /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0504AA1427D6B2525EB50E06EE090323 /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96F56AD10F34B8BD05FDE68738BC7AF5 /* FirebaseCoreInternal-dummy.m */; }; + 051D40F634598E0C0BBCBE6423446F73 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 502292E681C5DAB555208DEC24177B97 /* crashlytics.nanopb.c */; }; + 052D49E44F1F5781951C4C19B9801526 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2554838D2535910CD04FE671AFAA208 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 053001BF324D997E333F5F65980042F0 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D43B611DF2A1F8E1D94A3DF73AB3CB6 /* pkcs7.h */; }; + 05361CEDFF5104CA7D73FAF48308DC45 /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FC90176EB9B063A2E2BEA199BC4014E /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 054B4AFDFF0F17A932329B0A2EC9AD83 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 82EC4E98AB3C0B344C45B4340160E1F3 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 055471EA02431C523D6654DFC1C81264 /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 998064C628BC01BB1FA34C215C339C8C /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0558A86DEAF0FB7C39FD1BA91A1F401F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8156AB8CEE897031773F626FB60377DD /* protocol.upb_minitable.h */; }; + 0559EE445F32DE2D9624BAD477FB4242 /* server.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A3CBB2E29ECB9F97B67FCA937470CDD0 /* server.h */; }; + 055D83D994EE14CCA5367D7539DD2765 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1529ABEE74C846504A7B8560C367E400 /* resource.upbdefs.h */; }; + 056427285D4B3ED4BAE6ECE629F61410 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B9AC9D46A1063714610CCB157579F5 /* env.h */; }; + 056CEDF2D55F96D06D2529EFEF732BBB /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 6899A6B1296C5BBA86599215E755D3F0 /* load_balancer_api.h */; }; + 057190063B920376DBBF6CEFEB28A32F /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DEE8BDA43C8E8BF455CCDCC3C6CFC6CB /* typed_struct.upb_minitable.h */; }; + 0577E0F85907F33761D28589E7DF7953 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F1578646908CF8E016D713540F9ABC11 /* internal.h */; }; + 0578D31D5BEB8C07CF8DBE46B6FB25F1 /* FBSDKDeviceButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 807453EA403EC7A9754C88B4EC3E5B3D /* FBSDKDeviceButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 057DA30F470062024E038CE89DA929E0 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 45FF6BA90322898C15ADE3C518672A04 /* http_service.upb.h */; }; + 058C1A1129939F196F9CA975FDF4A564 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 80392821CA2BB9E2206B98032B7AE913 /* fake_security_connector.h */; }; + 0591132B5EA1BE4DDA268D8A9C3D0421 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F40E81656B80460A7776F3356BE9AA1 /* LayoutConstraint.swift */; }; + 05A14B2336B2C6C77A57FC9D32E0467F /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 638DA56CBB3390F1034287E2587DBBEF /* service_config_parser.h */; }; + 05B024515835E16A2BC156C502FD840B /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2A8C6021057CA3514E2E84FF047F974 /* round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 05B5CFBEF90B84D90395816573935EFA /* escaping.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 396E22B3321418E2FC734FC896EEB426 /* escaping.h */; }; + 05B86B1044B8833FDCA152BFCA83AD9E /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F0C4F0002E1E603EF58DFC8A19CC9DEE /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 05C2DD9440C9331381B69D617273FE93 /* http_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FCDB9E456588D1A7A30894570991D1 /* http_service.upbdefs.h */; }; + 05C394C89A0BCBDA06F3DC00C90735EE /* FIRCLSContextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C158FFC0625160CD8EB0D52A1063121 /* FIRCLSContextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05C4C3547F03E1E599D720FB428FE828 /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF3A237FCE2D3A0F90637988A615FE0 /* http_status.upb.h */; }; + 05D7D773A449D507DAEA011D4555CE58 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 925D857E35740CF5DFBB62215C234BFD /* server_info.upbdefs.h */; }; + 05DCAF3EF02D100321638CBA8CF20092 /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D4E0AC70627E20B726416FFC20E188 /* accessors.h */; }; + 05DD9C89E2747EC24B588F9DFDB799C8 /* engine.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F07D30E0A40454CEFB2B45E0C9066998 /* engine.h */; }; + 05E6A7EC1DA06F9366BE5F2B1E9018B9 /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C44797F85CBE3E48C9669E4EBC5549D4 /* context.h */; }; + 05EA39090BE60922FA0289F87A7DC786 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 8A5570CFFA8C62DDDF8F93E133B5ECFF /* rbac_service_config_parser.h */; }; + 05EA4E2BDC16360F0EAD801D60685B95 /* audit_logging.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = FBB5CC451BC324EFC14CA5EDD9918532 /* audit_logging.h */; }; + 05F4F858C8BB8331EF382270E96F828E /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EB2DCF56540150CEFC97DBDC8C4D9B /* pkcs8.h */; }; + 05F5B52252BFD70296D5D026148708E1 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CADD25BA50F9320F2C9C0FC6C5ED210C /* resource_locator.upb.h */; }; + 05F967CD0760B0AA929067F75116DECC /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DCF0387213F42D0948FC358218A985 /* listener.upb.h */; }; + 05FAA679CB1C1FE41761CC9943A5908F /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1F785FAE0FF3A81CD14B7CBE43785DB7 /* xds_channel_args.h */; }; + 060D132A38FEB4FE7F828321481A907C /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A88051E1C14B1F2B486B67F2143855 /* ssl_credentials.h */; }; + 060E18FEC24D7E630262A896D5CD0A9B /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = C9681612CE5F7F97BCA18BDB75B6E316 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 062457D380C6F101283E9D0358A6A17D /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = ECEB7AE786DD575BBB1F39828512CE86 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0624FE78FB0292D326F2A17DC8A4ED98 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 66FFB2601128E7D70B325A031DAC167D /* legacy_channel_idle_filter.h */; }; + 0636063E7F017EB89C1450033A3ABD50 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = D38E120FDA93C9759C8198D69560EEEC /* flow_control.h */; }; + 063CC0EAC49BAF6DA56DDC6A519DB9E6 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D93AE3E59D5D107E22F0CB1D0717136 /* grpc_method_list.upbdefs.h */; }; + 066115B0D28D761EFE27E648E5240445 /* work_stealing_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 615FC705E5D23895E82A27841033549F /* work_stealing_thread_pool.h */; }; + 066735D3B39A4006C500B0D0C29E515E /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = FD1E0E15097C0C418049C615793C17AA /* versioning.upb.h */; }; + 066B56BEA7DEB947EA2B390F99943BCF /* string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CAF97721D6A3D114EDD9EEE40ED32D35 /* string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 068196CE160C106BCBBE2D7F14A8703B /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = B9072B7042B9110B3651163E0ECCF74E /* FIRCLSCodeMapping.m */; }; + 0690E03558B3655231712BF8A59CF8EF /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7642E2D7E217F38AB587323DDE51FEE8 /* base.upb.h */; }; + 0690F91FAF47B862822F90202BF81015 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EFA703DDC9B1F364070A57A05B903E21 /* secret.upb.h */; }; + 0691D80171D5E442369DA7781BD162CF /* bio.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 91FFECEF952611CA21B8EA6211ED967C /* bio.h */; }; + 0699A7884F92A2E23DA3B478DE6DFB4F /* strtod.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 0E32844A89AA23B4FFD608C8EB51CC1D /* strtod.h */; }; + 06A7DF7ECD6C1CD123B3994B8A8811E7 /* FacebookCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED75EC925A5B382E24CB10039B02F6A /* FacebookCore-dummy.m */; }; + 06A91D5651C6DD446F656E76AF13AF02 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E71389BAD5C8D8506D9637EB95D02F5 /* internal.h */; }; + 06AA6FD511BE44DC55A2CF3910A1EBFC /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = C435A66B39C690C53578DAE933D7FA82 /* security_handshaker.h */; }; + 06ACDCB0CBE95C88C13C860C0B01B5B0 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D1D12A9676C033EC26A8E430BEFD2BF /* http_uri.upb.h */; }; + 06BAC55CE53319FDD9619FB4316355AB /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D86C1E42E7A3D0FECE20A8841CA4FD4D /* event_poller.h */; }; + 06C0E19AA9EE1FD4FC978D3F67FD94E6 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = B6F77988CF88BE9EFE4CC56B21FFA649 /* status.upb_minitable.h */; }; + 06C625154A9063DD5A41CF6067453745 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 53868A64EEB9C294A151445CCA7670FA /* cpu.h */; }; + 06C7972D27CA019703A288FAD2A3D16A /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2DBD9F5E8F62A3CB601AB7F46C29403B /* grpc_service.upb.h */; }; + 06DD07DA0CCC934FCF462EF420566D12 /* ring_hash.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EE042D45A52BDD76218D07D2D1E92EB /* ring_hash.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 06E00124E1D055B2CD2D3CAF1ABDF5CE /* message.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A75A53666FCE8BB118BD7BADA2E2D276 /* message.h */; }; + 06E43B4751069B47B3BD4AFD936A57E3 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24D1A10803A28B542746264B524A254B /* ConstraintPriority.swift */; }; + 06EA6EEB104D19EB7894E474A5D82613 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D419C3E47FEA62975C3BDCD50D2BF552 /* metadata.upb_minitable.h */; }; + 06F65D83AD4E0F7AF868BF9AD938C268 /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3437DA35DD9669313C33C77B009709E8 /* event_poller_posix_default.h */; }; + 06F7679B29E8877560D3F3C91FC8209B /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 106C21C776EE495E25A1DE4839A82C8A /* domain.upb_minitable.h */; }; + 06FEDAA232B88ECA990D3F98D85469B2 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 082019FAB27788E9C338BAD586E5376A /* parsed_metadata.h */; }; + 070033EE533AB68E0BAA572833D4D785 /* internal.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 6E06788068B4F5A7B888F858D0DAC68B /* internal.h */; }; + 070D65BCBA1E45C774A8EC7FA7D4EED0 /* client_channel_factory.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = DB61F25E99CEF633A3E4E0BF0ED163BC /* client_channel_factory.h */; }; + 0711D8722429ECB5185492BE76562012 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = 4466D9D382B38282ABEFB8E930070182 /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 072A5C2A66E1C7197729A28F47593CF9 /* FIRCLSContextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABDFA3F13CD993F7BF2C5502407559B /* FIRCLSContextManager.m */; }; + 072DD1CD1405F38A44E15C104AE12927 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = FD983B46E98A25461E2DB0A24AAE9A63 /* random_early_detection.h */; }; + 073B417FBACA3C13E01AF13BDF178A97 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 086BC6C9F34775812AB3D49FA2AA2128 /* grpc_ares_wrapper.h */; }; + 0740AC7F3A4343D4852BC77C3A463862 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE580BD399B992A5FB8CCB74A9E6EB9 /* memory_quota.h */; }; + 07437F8E9101146CE09736532E30F618 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3ACB0FE6CF9691F32E0DB06FF439683E /* channel_stack_builder.h */; }; + 0744A7926F2A23160828020A3EE2A537 /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 20DC7031E2D4F673D776E3FF494E7A3B /* xds_audit_logger_registry.h */; }; + 074ED73E7F2A2D98159C51A9C9D6D47F /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = EE894A97632333E75720403EE81705A9 /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 075DED1DFD14C4496738EC740202C697 /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = AA86751A95F80F34E3819F72C1C3F830 /* FIRAuthAPNSToken.m */; }; + 075DEEB6279A4E180C7864FD18DC4433 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 677B5F1357CAB93A55C0C19D52A9F475 /* validate.upb.h */; }; + 07632C13FAC1E647EF34FC2E469119A5 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 674B42053A4F7F539FA7E878CD60FC3D /* endpoint_list.h */; }; + 0763EA6F4F289986110F2F6414BDA8F7 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BA646E1AAE412307AB1A21FF330C2EA8 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0766E49DE83FC84571196574DC185438 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DE3494C3911C2FAFEB1F571D30FF8F46 /* deprecation.upb_minitable.h */; }; + 076789E1E87904520C801E79831D2B9B /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A449B6A79660698F489DF7E3E2B179 /* sync.h */; }; + 077D6B0CDBD6DE46CE904C79F3F1BD8B /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = 9811D2D7849C7D770271A7CF585AD83F /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 078AD22518E9B2EFFBFDF000677BCAAC /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B09537410859BB96FBB351CBE568C8D /* encode.h */; }; + 079502396EE4B8454AC88E2A066BBA06 /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 17A4705BB1F434F8F5FECD31F803658B /* orca_load_report.upb_minitable.h */; }; + 0796A3FE27AC49DBD96E460E2427D074 /* waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 08871EFA2D40B413423BC40507011315 /* waiter.h */; }; + 079F0820555C5B86C9FBD5EC6344137F /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2BF4B662AD958788438A51A7CA6CB08 /* Protected.swift */; }; + 07A92F8AC8E2FD76F5FDBBADC8F2EB4E /* cpu_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1A2CD8FA60CFB2836404A83141E1D67 /* cpu_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 07A9496DEA2D397001E0B2D996CE8528 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 46A57A5811C7967BBB2E51CFF6F101F8 /* bin_encoder.h */; }; + 07B6AF1E12A9269B547AE5598664645F /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E83E8AA9AEE07D9F131462690386CB /* config.h */; }; + 07BD3E48FDCCE80515CCAB5582C5D002 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C306C14F33F47B57739BA5EB124C275 /* hashtablez_sampler.h */; }; + 07C12FFBD2B6D7699161698C10904E6D /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B445ECFD1BFF6B38095C04E8DB34855 /* sockaddr_utils.h */; }; + 07C2AACDE80D0FCDDF1400E0BE7A1E94 /* polling_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F258025F741EEB3323820BFE562EC77 /* polling_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 07C3623C114C74BAE524B9BC0DBDC025 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 01AF1682B2DAFDAAC83E6F51F5B5AA51 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 07C677042BB048A9440E13D5EEB8DC0E /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91455F402ACA60D378F175F1900D631A /* AnimatedImageView.swift */; }; + 07CCB353ED6E511647B76BBB9383B3F3 /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC1032E8D3941D5A403C315E9BCC7BB /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07D49EB7DDDD6947D2CE0D072B902D05 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = E13E8ABB8313048C7AB7C3BE34311959 /* ssl_types.h */; }; + 07F19D070B566DBEBEF6E984E44643CA /* seq_state.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE9971441B6542A07BF888B6269BFD7 /* seq_state.h */; }; + 07F1D3F5C74799F7A4FA2E494F7B8D3F /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = AE918E2631835018BD3E2ABD906C2C13 /* trace.h */; }; + 07F594B38C4125653251AC53554610A4 /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = 97BDF57F20FB8B9A1D27E33BA5F2BD95 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 07F9FE016CEDE4B1E6066DA6541EA488 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 704700246C923DD586015B33DFF80DAC /* socket_mutator.h */; }; + 07FA977A969FC23BAFB87BDFC0DD5BE3 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = 019260869EF5514FBED28E33E08D46D8 /* cordz_update_scope.h */; }; + 07FF60CAB8BBE630FA65563654D2ADD8 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 1114FD6CAE60DEFEB48FB5DE4AE0EA07 /* file_def.h */; }; + 0811725178D83CDB67E857BEE4B5CC22 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5339CEA129F29A5CBFC4F190C694FFB /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0812825F49B9DDACF32C12AACF214504 /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B15BE79BA16BFCBFB4960B2F4B91A60 /* http_uri.upb_minitable.h */; }; + 08140C9391766D6D3CFDB9F821050DD6 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = EAFF954A9F26F8CB957AF832223F59B9 /* map_entry.h */; }; + 0821937EC16DB407C1CB57280F66A9B7 /* strerror.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4C8678D653544D1A79D205F57BE206C3 /* strerror.h */; }; + 082803FE103672F8EA78D8F2F566E855 /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B8115FC500A961DF058A1A26F8F277E /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 082C44B1274C020FB43D34900A2FB6A4 /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5218AE30A803CD2EE66B4A63C42E10AB /* xds_dependency_manager.h */; }; + 082CB48AB1A613C25BFC5E9C6112A119 /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8DE0BBBC854B67A6F58272A39E951DA5 /* rls.upb_minitable.h */; }; + 08304C1908F9E9FB034EE7D10B21053D /* health_check_client_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 450847204EEFA331B43F9EB3920E84EF /* health_check_client_internal.h */; }; 0833E66E7F19849322305D67777B77DB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 083721B1EF6EEEA9A77AF5F161398AEE /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BEFE63DFBAF0FB4BF9EE8561C51CCD5E /* string.upb_minitable.h */; }; - 083D00CD168CCF3178B0668330533AD8 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C4599F8974367F8CEB413CA837AED928 /* scoped_route.upbdefs.h */; }; - 0841A1246DDFA4CFF1CBE901C0078E9D /* domain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D286124B82F835FE28D3A47496603508 /* domain.upbdefs.h */; }; - 0841B988C418A73415F263DA12D56F09 /* err.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 911C5B2D238D8D6C68D5B25A0880FA5B /* err.h */; }; - 0843865D518AB4FB8B11BBB3E4649B71 /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A945D5068838E5C564A9B49C219160F /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 084B6680E03FB7CD6F7BC3077D189994 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2F98EBA8D61A7FFBABD405666046CA /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 084F1D0AE6E8D19497F035C8C5CEBF41 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4A2C4DFC73D50AF20C975AE0D0A449BC /* endpoint_pair.h */; }; - 0859F84BDE0A78DD2AE4B4724058606E /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5911A5C81FD240DC9358C8DE7EF00F47 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 086386EF121745DA58138E0F1D9EE375 /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2024F968E8DE2C54DCC25FFA52FE9C83 /* init_internally.h */; }; - 086946272E89985B38D131BFEB1E716D /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 70DF3BDA1CA2854B8E539256608A5302 /* swap.h */; }; - 086CF34B4EABB69B98345B0DE1EF809F /* rsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ADDDE82223DD40E15D4E8D9283683A5B /* rsa.h */; }; - 087B8EA7AEAA0FC70FC1B58727F8F3F2 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A08591EA957D2B6797343348568C484D /* regex.upb.h */; }; - 0880F4FA128B5123D3669F8D77234640 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 677DFB0EA22CBBEE9F273A67633D6AA6 /* matcher.upb.h */; }; - 088F3CA2209F1C1788BAF7EE42D1BD5C /* oob_backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C6661CE2D12B5215016EAC749E6652A /* oob_backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 08923846D88DF3ED6D918079C91116C6 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED860CC39E840C4FDCAC774BB528129B /* ImageFormat.swift */; }; - 08925069167A9D6E5F95709820C544F6 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 23CD5AE985A157AA7563840D63B2151A /* base.upb.h */; }; - 08A59B590266870BE736B0E6B374AA1D /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5D896804604C19D34B9F0904945A881D /* scoped_route.upbdefs.h */; }; - 08AD46B13F0281EAE20167282FC70288 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 6713B28A609A43A8215612174C7FA02A /* empty.upbdefs.h */; }; - 08AD9A7482923123D7D86E6C68544598 /* config_source.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C2F1D3D0A294FA03143FE156C012DC7 /* config_source.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 08AE09F9672CB94888F5C72C1C718C52 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF8AA48265ED8CA1F49C4CBEE9116372 /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 08B09D7A3DF64209ABD545B6D50BB1C7 /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB1A9989F4A627C9862D8377C333D70 /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08C1BB7EE69B121CA86541205E45A1F1 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C0A7CBE4F4DAAEE70ED3AD599A860152 /* iomgr_internal.h */; }; - 08C5FD30CB4E62BF8EDF151DC5E6A69C /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = F765C748DCCBF92F9EA0E510E5CD9135 /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 08CFB6B54B84B7260BD269C87851CDF8 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 5F4D45C2DA327E6AFE110B327575871C /* grpc_ares_ev_driver.h */; }; - 08E0D47766F88790EF7048747689405D /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 2166B37D6904F10140F80A9B98CA92F2 /* link.h */; }; - 08E3635CF3B4D8F5F1E41C67B0B34868 /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 48B2390656BCBCADF144D787121DF157 /* load_balancer.upb.h */; }; - 08EAAB39BD72CCF9EFC3630648390F2C /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = D11A1286149543428F53EF885C73B81D /* checked.upb.h */; }; - 08F1DD7A00893D66A9E521F785DFD08A /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79297B939F52EAE0DBEE9196D168CE25 /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 08F1EB62EC62AD1BA52EE17E6AC881AB /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9AFA3FE648DA7BB1F321EFB5CCC94553 /* wakeup_fd_pipe.h */; }; - 08F467070435E753E073EC9487EF33C6 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 364E8EC0C18F8905E64B32063CABC324 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 08F4FB97D1E47706E262275152ED0B34 /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A97B6E7187E9BD4CAA3685587985A46 /* evp_errors.h */; }; - 09033583A3D5F66E83E7AEF21688AE53 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4FEAEDDA2619958DDA461465DC1B5E /* stats.upb.h */; }; - 090E626AE29033FAA12AC387DE154EAE /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 727E2038F35F9651E41EB274E7803A4C /* encode.h */; }; - 0913B7B5F6C6B5DB2544743706FAF948 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = B46AC2E45A54E30799C6B7A9871B1E42 /* GDTCCTUploader.m */; }; - 09150EFB0749D6C19AD377808A6E4EC2 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0F8FCCDB8B21DF87268D52B6616B364 /* listener_components.upbdefs.h */; }; - 0918257DDFBD1C678637FAF101D45C6C /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A5ABC2AE27C58056FEDF38A20D51F47 /* backoff.upbdefs.h */; }; - 091B406F12C9FA51D47494B31061A06D /* GDTCORMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = DC777EDFF2232C644E410FD83C9F4247 /* GDTCORMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0921614B1D15BB66AE95B554FF81D308 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 30DC697FDA9F9AD419D6386096D4AA6E /* sockaddr_utils.h */; }; - 0933A204DA4F341695D5E80C303BB51C /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = C42B842C7A7C5DFF718CB470313303F0 /* compression_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 09415D73C8735AC765CF4A68DF8B348D /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9AD653830CB449EAB6DEF40A699B02B6 /* string_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0948ED245D45BA59287B2B01EACC6CF1 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 74D242618042926254ED4F8793D238B7 /* ssl_session_cache.h */; }; - 09580A3B3B1D1FAAFA422CD3AE223F4F /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = CCAA3E72926582C0B2C5883B07BE6229 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09619B28AF2849466661DBD3E1958F2B /* versioning.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AAB7FC1A7A95895377586841FCB841D3 /* versioning.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 09621ED5128DBAFEFC98B36879F32631 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DE3E536B49A29DA027E22F5D1F2D138 /* chttp2_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 096AFB582A90DDCB23414898BE2B8F2A /* bootstrap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 849A73096E117C4C99EBABDC11977FF9 /* bootstrap.upb_minitable.h */; }; - 0970217ACFDA2CEAA206FBB87AA7291A /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AF333E551621E760F0FA3D0CE50A1899 /* descriptor.upb.h */; }; - 098204470072581F75067E8DE7BE1147 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E95E4E3172E1D47B39604FEDB90304 /* security.upb.h */; }; - 098A7A5C9DF8B97B216EF246C13884D6 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD518FAD48EAD343479F308A13691E3 /* timer_heap.h */; }; - 098EFC850301A81D676B977265A94A71 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 70EC62989AE7827589480DC3517E393D /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 099230761240DFACB5F85995AB7F3094 /* internal.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = 720990B293DCEAA3FB8A81FB3E3F4DA2 /* internal.h */; }; - 09A320A08D4993BE22B0213BB32B9895 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 474E3E5A01E52F11CCD11C03F5DB4411 /* udp_socket_config.upb_minitable.h */; }; - 09A98AC9F8B966E21C9986F547D457BB /* backend_metric_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B68EE6B293046361ED83B44B1A7DC22 /* backend_metric_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 09ADA590CFFDB9E5DE2E3F5BC63DAC9A /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCC2EEC2D2618B33C5C6BFF1501E553 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09B053E14F5DA9EF31AE397887EE6177 /* internal.h in Copy crypto/err Private Headers */ = {isa = PBXBuildFile; fileRef = 0619052C91940B939D3D649168F21388 /* internal.h */; }; - 09B61F61C5B873B41430E580D8FF1C25 /* RCARecaptchaProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A17E2030E667EE8546270C62AAFAB7 /* RCARecaptchaProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 09B852ABFB5E35C141CC467ECAA086EA /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD1443E8689B3683F32DD2D3D5980411 /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 09BFE50C8EE2270D963E915A687D471A /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 776629B8C0D860B526F246833E089BB4 /* mutex_stats.upb.h */; }; - 09C4D3B17FF73F4794579CFAA3776C24 /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = D12419DCFE45B055E9FB71786DC0D00F /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 09C533465824E34CE68370D77E99F3E5 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC5038D93F255479DF0D71025BD405B /* aws_external_account_credentials.h */; }; - 09F26C9418939C7014583538EEB582CE /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 40207359C0D668DBC250FDAE44DF152E /* route.upb.h */; }; - 09F4DBEF559E223939C49CB9FCA20C5C /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 239BA181F4C8D5AA23540E60EAF62F2C /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 09F873CCF50F649CD7861A79B9D03288 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70E7F0FB768F0530161D122CF8EBA525 /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 0A00794B5C54F98DD4BA90A4EBC2AE82 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C6A52AA6EF52C19D5A273312A4DB9E84 /* FIRCLSThreadArrayOperation.m */; }; - 0A03AD4542C2E0461A20FA6C81FAADA5 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5E04F8EEF517DE7BC6D2258C490C49CA /* xds_resolver_attributes.h */; }; - 0A03E24603BD5287E7932C8BEE73AADF /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 22CED4A49793020F0F866C96976D428E /* status_util.h */; }; - 0A07ABF939447E967FD2642875B7F9D0 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = AFEDD2A9D6D12F1B2491FF874A314536 /* completion_queue_tag.h */; }; - 0A0976F2AF80389EE9176C605127F229 /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FAD8EFF84B65C2CD55E1E64BDFECF74 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0A0A546FCDD417D9C5B4B47B922F9F94 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D2F53A4701D2B47ED0DA0B4C9B1D69 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A1B7AFEA699552A35EF3709490F7451 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = C14D15B4E140A571E5B153F7FC78C5BE /* constants.h */; }; - 0A1E7F06A1E1CA1DE2B389E6AE0A66A0 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 860ABF445788680A7909FA3A9A4AB956 /* Indicator.swift */; }; - 0A265EF2E92490BA71F7D751C2730326 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BAB879FA2933343F3F6B7D222C5325C /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0A2663B3AF9385717D5D585C9A96BFAC /* strdup2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3815B53762042253851FA31294983926 /* strdup2.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0A26C0F620DE39CE545E30E3C8447AB6 /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BDE96647CE4EEF1306B7068A64436309 /* sync.h */; }; - 0A42EEA1E44BCAF508A77FBF8552FFDC /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4ECF2635F0FD4715A3BD39CE27157A /* file_external_account_credentials.h */; }; - 0A4689039E0A1FFA4DFD1ADF4D866473 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D295F7867F51E55DA55C2D87FE2BE29 /* composite_credentials.h */; }; - 0A4EFF69A8593DD96268982993F6BB2F /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F5376881BC616F39367790627D713123 /* channel_idle_filter.h */; }; - 0A5B924C7128CA37BC6DC0C61E601951 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB192D6B7656DABB9AA01BD4CD4ECA1A /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0A6055BB2A9E4E220D6D76306844DAB7 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9DD59509049398C0332C68094DBF92C6 /* typed_struct.upbdefs.h */; }; - 0A62F63AACC54A3DC32117DA9B6B3860 /* futex_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AA9456118AC11E10C746FC88554D3C5 /* futex_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0A69E1AD41B77EAF2CC6A781C00AF945 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = AB85944D59E911F989217BB40D67CCEB /* prioritized_race.h */; }; - 0A7547A0B9C6663D4EE88492C8AAE5E3 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C1164997A880963014A0A965B6310C /* resolved_address.h */; }; - 0A79041D85FEDB08E6F49945B153CBF6 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C8CC9BA18BB542AEF33EAEE7DC98712 /* event_service_config.upbdefs.h */; }; - 0A862429590A3D8017C261FB0C5791F3 /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = B70CF70BDAC0780AF60E01692DCE7E92 /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 0A90910DB968EFC4DAF02A1ADE880C21 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = DD1999DF8AF105D553FDDE8D78048DCC /* alts_grpc_integrity_only_record_protocol.h */; }; - 0A90F8EDBC747A75A4F1D1B9A864C32B /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D94A4CF16D2A990078576385B327E9 /* oneof_def.h */; }; - 0A965ABDE73993B670D9414F3D4C5395 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = 78E356E04537EFB863905B3734296FAF /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0A98127B51008D063E725CDD26A19D75 /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7402DC4F03227FB0F767AEEEFCC29633 /* dynamic_ot.upb.h */; }; - 0A98CF72385202359AFC6E4D43FD51FA /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1B2D8E81F571D79794A259A964BB85 /* poly1305.h */; }; - 0AB922FC6028DC11C6707DE4AD07CDA2 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0A1734B428DA8697D9A6C357B6164640 /* sockaddr.h */; }; - 0AC23FBFDE7E525BE71186E616F5A299 /* sessions.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB7C4DDF888DA04384630EC6B298CE8 /* sessions.nanopb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0AC2FA0ACE11481602F5ABA7C23EB9EF /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D9238DA04C8440417435DC8CB8454FE7 /* bin_encoder.h */; }; - 0AC696C6AA027633B617855F37DEC421 /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97925A0646CB37A270D701216C05B920 /* config_source.upb.h */; }; - 0AE1FCCE0BAEF507AF29A36DC362B1B4 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEE6DA5E48EDA015D62188FEBC759D2 /* compression.h */; }; - 0AE5EAD21939C26A64FE4CB7CE097E30 /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 88C8F2A8BA9F8AB35C24657A73B2C89E /* subchannel_stream_client.h */; }; - 0AEE83D63BAC2E70E89A1346D3C47FBA /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60287881BBE4121A2054A901FBAB46E0 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0AF4DAC33EB573891E911D7B31C7AD80 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5050C1CD27ABD99282E8E6CDF286B384 /* channel_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B090A877C8BE36E0004A248E0D727A9 /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D3635215E857462276736978F4811F6 /* lrs.upb_minitable.h */; }; - 0B0C999B89366AE7AEDD6EB802F470E0 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8C9C8BEA52AE05A70FEAA9C46C68D1F9 /* tcp_socket_utils.h */; }; - 0B1380585024BC05AAA3982DA1976217 /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA49553357685EF124CA9888F8D2F5B8 /* certificate_provider_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B166974E2EA6DC92D09691AD70DADC8 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D34B6A36A4D560A7237B4958215DF921 /* load_report.upbdefs.h */; }; - 0B1A0E491063C3A73DE08E5814FB99A0 /* vsock.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 46C91AFE3A0DC40BEBE2F0D7BEA18359 /* vsock.h */; }; - 0B2159F75F61A70CF4DE2E337824EFF7 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E70A2F25B5090AF6F56161675F3CF25 /* checked.upbdefs.h */; }; - 0B2670A262D3C5294ED2455FC4C460A0 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C5683B41085C4D0B22E83F9E63B37DB /* range.upbdefs.h */; }; - 0B36215BA4DE57E6FBFF152D2DFDFE90 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9E526BD931B4B1B89E12CA440F98673 /* secret.upb.h */; }; - 0B38EBA94547EDD20C1859164107DC01 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA138C2C40C5D5FD1A932A10BBB8316E /* zipkin.upb_minitable.h */; }; - 0B453E09576EB19E3424CD9269D5FF36 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 933F431C4CFD081712C574A6290518F4 /* transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B4BC347909CC6EA01BB4187978FCA50 /* domain.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F99239E04B31FC6C58370CD99F94EE /* domain.upb_minitable.h */; }; - 0B5019DEC4912EC4ACEC01F4203176BD /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C15BC6BBA4B13D028495C59B8183DF55 /* client_channel_service_config.h */; }; - 0B583F1711A83E0B3C33130B0BBBD61C /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A81F33CCA6355AEDFAE21447C11FD4BD /* posix.h */; }; - 0B5B8D81C2F81F51F3BBEABB43F90892 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 2229063406D3E4938AD53425558AC568 /* json.h */; }; - 0B6118667F1D811516169E798AC36B42 /* has_absl_stringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC61F6AE0FCAC70A0C2BC1045673A0C /* has_absl_stringify.h */; }; - 0B6EB7F88A2678EC2D5434948D126F9D /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A614B5F1BC1257CECC9B6B10D3874C2D /* ratelimit_strategy.upb_minitable.h */; }; - 0B704C96CE323E1EF877F67E42906652 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = 04D3DAAA2F2EF4E43656F7542558DE87 /* common.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B72807BE686CBCA6C5BF6A67B34AD3E /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 9207B49AAE4487FAE2FF0EFB4351EE07 /* promise.h */; }; - 0B78B29A86663E85F1EE1185AFA4FAF1 /* resolver_registry.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 1DAC3B66A3F3F6464FF427ED3E4078D7 /* resolver_registry.h */; }; - 0B7FCEA11E40DFD26A38282344BC0E17 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB3AF1AE538FA86AED41AC853B3E331 /* jwt_credentials.h */; }; - 0B899668A64C4082E05BD6466CCBDB25 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DCB78FD795C212CFFD62FCA5E4C8E0 /* config.h */; }; - 0B89F1FA999412D629089D27EE17C8B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 0B97AB53DE1B145DE37E6FDC1B19DE7D /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DE43F34868D1CB0DB5565EA4E9E52B /* call_finalization.h */; }; - 0B986CA50105B75871C9F80120DCD9B5 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8ED90F18AC62C20B72217B5FC3EBE2BA /* common.upb.h */; }; - 0B994CDC79B1AD3A7BE62490D27C60C8 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21C766D3E580001116CF0670803D6302 /* ConstraintAttributes.swift */; }; - 0B9DC3D56FB738CA211870A5E3DA3401 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 474C987110ACF513F3140F266DB234D4 /* zipkin.upbdefs.h */; }; - 0B9DE8CEE52AAD5865723122792F77F7 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD761AB1271AA95FBDFF50E6D4986BAB /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B9E6AD1350932CC1647FB60BDAB7D7A /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = E6FB24948A4D8D3623FA684ABE2A3EF2 /* health.upb.h */; }; - 0BA2284EEE821E0F4D84C5C437D31D6C /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B08782CD44D5915482CEC485490C8C /* dynamic_ot.upb.h */; }; - 0BA291E521D23B66DCD30D7C2B3C41F6 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D45536AE1248C1A4F9042A55CE4F059 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BA2C94DFD12F3E1B56B18C355B099ED /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = DDCA634ED13903EBDB7699B5362F50A3 /* windows_listener.h */; }; - 0BA96FCB7E2B1C42FF575B52C7F63E50 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6239A6DBDD0FEF592ABC7854D16220CE /* xds_bootstrap.h */; }; - 0BB160EBD04E17DFD77453783CA887FE /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 95CA2356F945F30F886053EED3D53027 /* json_util.h */; }; - 0BBF983034BE68B4628A473352152A58 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46F0EE1F6E9CC614324D5C3FFCC08996 /* matcher.upb.h */; }; - 0BC290E612B30A613C1C74CDD64B9260 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BF3A75880209DFDB08997AED7F480E75 /* stats.upb.h */; }; - 0BCD08F1B42F2F00C5989852BF063BC7 /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF986F2795224295490BD4588C5AE49 /* enum.h */; }; - 0BCF899384943F4FF877A50FDBAB0669 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9714C2AF014358C35ECA5390C08EFA0A /* matcher.upb.h */; }; - 0BD7B4A8DA6185C04E67E3AC2D550928 /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC619DDC6801020AA9756B5F4BC7379 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BDE48E3F34977E50FABF7841A91068E /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC1C545BC3C8F49A6487F1F462388EE0 /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0BDF00A8D41353FE056EF7E9A85EEC7A /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DAFA07D7BE5A56B8B1AFAB2FF0387F /* stats.h */; }; - 0C143072BFABE3F0B86BC77FCD112504 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 91825CD2F44B0D191BB589FE81D99A3C /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0C17E4FF14CF44C5CE6CE78559D8B78F /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E0BDE1EA1A0CB7C54D7C13341D37D2D6 /* ping_callbacks.h */; }; - 0C1A8ACAA61DB138E60A5D9D38D94E65 /* ares_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = D81AD87659F16F8C34A031330E99B5EE /* ares_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C1AEBD93F87476F0FFDD30DC931EB5E /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FECCB8B8D91DB8E570C495E3C4F5F3F /* endpoint.upbdefs.h */; }; - 0C458EAED6CE041A9A81C90DD87512A4 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC4DF1581F815924BF9CA44DA875F43 /* cookie.upbdefs.h */; }; - 0C4E219F1BF57F4DAB27B8B633811C43 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = C318CAD301FC8E6FA4F89C31E9FAB941 /* alts_tsi_handshaker.h */; }; - 0C4FB8C2CB7FC2F6CC01D716BA685658 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9D5F7EDAC23AC46908C7A2CC1B9187 /* httpcli.h */; }; - 0C5592E0930D8558991C17B6E33895E0 /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63A52662861A0697FF111D33DDD599C2 /* channel_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C57A4FB056B9633FD22D3F710AD1298 /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6B3252CEA306CACB310DB7CD383AC15 /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C5FDF9F35088BDBA363377957F1F34D /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = 56ED09848C607A06A17723386D5755EA /* alarm.h */; }; - 0C624FB677BFDA6F57E2B2A3A25AF3AE /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F7D8845B3F3A0B2CE11CF5D9BCEF933 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0C68CC8FD40375FDE06B8DEC8C5153B1 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4419CE289B8734E02543556B9A0385 /* range.upbdefs.h */; }; - 0C6F21E2F61960DCE5ADF5E822FDB197 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3418689C1A5F62805CC5E141BEAEBA54 /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0C73E21B01FF51DF8F439E7586FC0105 /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CB1CE92EABBB76C21D2DB0C2A01806B /* config_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0C7A73785F41E171C6497BC08908A1B0 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4E5832E18E37644CA18F098D22227E35 /* varint.h */; }; - 0C805FA9FA787C4FEEA28FAF0514FF6B /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CFAA31B8D8F3F7CFDDCF88ABD6FE34E9 /* endpoint.upb_minitable.h */; }; - 0C85CD018BFA9B560157EB3EAB449C87 /* curve25519_64_adx.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 1092CCBADED9F1381639D4CA0F8DF203 /* curve25519_64_adx.h */; }; - 0C85D7AFC614805DC9BC83A2276A81E9 /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4348B363AA6783618F03462C598D8FAF /* proxy_protocol.upb_minitable.h */; }; - 0C8D37119603397633D2EF4D6D4D6E87 /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5D260EBBE32646BD3D02735A04DEED34 /* cftype_unique_ref.h */; }; - 0CAC66AD8753443813F38B471902A344 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 09153E8FFDCAB6274B1D2960BFAD25CE /* sensitive.upbdefs.h */; }; - 0CBF9941AF3FACC3D92BD1107BDF5F45 /* FIRPersistentCacheIndexManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2968823C884FCD339F7738A40BDBBFBF /* FIRPersistentCacheIndexManager.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 0CCB745981EABAF09B360440D21C836C /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A166EE537FFFAE11B8937BCCF9D1A28 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCFD4F0CE3D61214C5C45DC35D56330 /* histogram_view.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 96D09E2D03E609ACCB2A4E16CA5569C2 /* histogram_view.h */; }; - 0CF3B668B6515849B368177CECFEE4DA /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8FE343959E53DB84CDD5BC43DDB2B68 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0CF3CD4DD58751706616DC0936FFCF13 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = B3820F542CDBC0B47721991A152940F9 /* ref_counted_ptr.h */; }; - 0CF5EACCDF33ED8A97C7D0246AAA6F1C /* posix_engine_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 109A85439F51F56834D8F41DD599332A /* posix_engine_listener.h */; }; - 0CFA2EF351EDE593C836E5F85C8522A8 /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC37457FE884CDD61177060466CC527 /* skywalking.upb.h */; }; - 0D024BE9171C320CAB9F95DD93D1E57E /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D818E260DDB01A1AB476FE19FF5E9C05 /* path.upb_minitable.h */; }; - 0D0441160F7BAF459E8ACE8244202F17 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = DB34A32D7894610C2E780D1838B4E797 /* options.h */; }; - 0D060C0CCF3535F9D26E2F2D5A2D4CAA /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E9D4F5BFF2AB945E446A0A37BD952F /* alts_handshaker_client.h */; }; - 0D0C6D4D855534D0026C5EA00D38F89C /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F29BECDDF04D7F7A31079535ECE0E53 /* propagation_bits.h */; }; - 0D1CB715C31295E23C9654B99CADDF65 /* sync_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3E78A66CE047D30527C3E4263485269F /* sync_stream.h */; }; - 0D2C0B0F6E35939D6AC5BDB5CDCCBCEF /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6A71F4A40D912CE4AC41FCA93E4F0D3 /* http_server_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0D2C3CBFF9446F271480CE8B9CCCB453 /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 26E76354B7AFD89714ADC59668184B4D /* circuit_breaker.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0D2EF61C78FF3E9D1CEFF11CFEA82256 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = CEBC4B67799FC96BF05E4E4479588E44 /* async_unary_call.h */; }; - 0D348927E1E50545AF80ABEB9A43F37E /* grpc_security_constants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8F3E2F364DAF9E30120B6BB24F7FFEB9 /* grpc_security_constants.h */; }; - 0D35989E666827B4A01DCFB1FDD2A179 /* stacktrace.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 245D595BCA2FDE6C28A36FBED6C420BF /* stacktrace.h */; }; - 0D46795879C33B25CEA8498EB0069EF9 /* cidr.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8EEE0EDFD3F779B2C02D5E13A04344 /* cidr.upbdefs.h */; }; - 0D50A534B70A026AAC86B9E26259851D /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = F801C63750EED6B8A164B9502DD197E3 /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0D686A99B4741C5222C8586FF2AD151E /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37F596706F8A11E4C268F73EB5B1E2BE /* collection_entry.upb_minitable.h */; }; - 0D6FC0648072DF26565AC3658598DE00 /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 000A488243591DDD27E9466344E34382 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D8068156868BFE7200916D14E0A60F9 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C21BB6766A21DB1DF2C3CC0233101C /* dynamic_annotations.h */; }; - 0D8CDE9E0015F838653F7E7F3514757E /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD99E0603B1B6EC1453F32B9AC617705 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0D963D02DD1FD0E8157622391ED909AF /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9F793B8A0479E67F308098B03226F857 /* packed_table.h */; }; - 0D9A0D05231ADA13C219482F16255489 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 12F42287787F17374CCDD6B4BFA0EAD7 /* security.upb.h */; }; - 0D9CA0DF1B5C123204B30A2B0FB6AE73 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BF436C17C9BFB1C58741ADA9947AA0 /* alts_counter.h */; }; - 0D9E127F6AEA53A2AE45E5F71E0EF471 /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C15082035D41D4B645F25B876AA09D /* FIROAuthProvider.m */; }; - 0D9F28225AED361AF8E2421434E7F999 /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 602CF9CD7C25796E7A77A8970E84234D /* bind.h */; }; - 0DA4449CEA891A2DA3A2D0AC9F499828 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 84ADCF233638B2652459B6196C5CA6CD /* status.h */; }; - 0DA6941C935527AC4B798C2372FC114D /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4BA89EC8E54AB0BC2B88D805A3E27C0B /* trace.h */; }; - 0DAD472DD2BBA340D94F726D9BEAAE3A /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F7DA58E1E9C8EE542F6D2E4B6A40F8 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DBA44B7C8D6B43386BF4060BE21383C /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D0A94981A10A14D143BDB2CC307BA7 /* ratelimit_unit.upb.h */; }; - 0DC03C3AADDF26685B883021CDEBEDB8 /* descriptor.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EFC0046E26496A1F9A26354F4B62C1D /* descriptor.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0DC1DDA0CF4EE57E1565F0855ACB55B2 /* service_config_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = A758156457C5411D5001F1A1FB28C414 /* service_config_helper.h */; }; - 0DC73CB68767285A78085CD650119791 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F86F04B64CD41B22A97D7DDE672D4467 /* log2.h */; }; - 0DC9227CBE27E2A8801A1220EE267B17 /* load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEC214A8DAE62F2FC2613742504C98C /* load_report.upb_minitable.h */; }; - 0DCD34261EE85BFE0C3136FFF747AF29 /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE6CBEED5E2F5E8A73040DAE226FDE5C /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0DD084A39741332350ACCC9419D1D088 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3217112B6747670F99C1C88A0A7D6A2F /* lightstep.upb.h */; }; - 0DDB9D866E0EDACD7BE8E4F0A752B821 /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6C575B2EFEC28EBC10C21536D60913 /* randen.h */; }; - 0DDFD8A0D5B82E1422D0C4009821E9E3 /* ring_hash.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D89732E643C43A6697E3C7C7A9996A00 /* ring_hash.upb_minitable.h */; }; - 0DE32203E9A393AF90BDF335E0966D61 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6378CC56E2A6FCCD03F54631B4CC9B0 /* decode.h */; }; - 0DE481BFB74C7A38E07766206767C0E6 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85722692AE9CCA8EB8BF18819F31A39C /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0DE5A3DA9348025FAC1322D2BCAF3376 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D0AC4B0CD11D6DD88E78AEAD7B974B /* channel.h */; }; - 0DE9560FC6EABDB115A02A9E47D90D76 /* client_unary_call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 1DBAD11703F8C6EF4501BBD89438CC22 /* client_unary_call.h */; }; - 0DEDD26BBF74BAF53F9FA1E00885C365 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 99F1CDDB5A920BA239150FAE48D1C9A3 /* thread_count.h */; }; - 0DFEB71E3D1D918A2B0F88F178B2C675 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E470A32C365CC3366E4C27FDFEAD00 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E0133C3873696D6C4428EBD6B20A6CE /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A31E948DA64C1225742257A00CCFB19C /* pollset_windows.h */; }; - 0E01D3A751AF128E617B048820E363FE /* default_event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = A56BF3AB49941D318ADD34668A19197B /* default_event_engine_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0E0C71F0ED6030ABFB4CCFA502973F82 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 98BBE761BACC50EB0565DC8DB23F2CF8 /* slice_string_helpers.h */; }; - 0E0C79265255AEEBFE6B737DB9827C87 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7B5F05E41DE039472CCA4A11F3BE6645 /* closure.h */; }; - 0E13127E5B27D6A3B5B8D8C6F616E3CD /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D289F69EE14CC82115272DD58D44D1 /* metadata.upbdefs.h */; }; - 0E218BBE5C8089C7245309FE0D125911 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B99BE5C6D4D361D6398606E1F9539244 /* deprecation.upb.h */; }; - 0E2D49702E33ABA5BE9B2B051BB9F20C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7D37039F136465E317E3CE20770AD59F /* PrivacyInfo.xcprivacy */; }; - 0E2D5172598CB9149D4B96C55187577B /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = BA3238D7277EE5A3144781EB139AE850 /* rsaz_exp.h */; }; - 0E31E8D54ABBB6D9C5D7C49AFDD739AF /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6F538036EBAE5BEE0501E43E67569ED /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0E32045EB2CA047F00B2929561A65F10 /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81D6AD186315CEBF69D63FBAA9C159C1 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0E4937609FB39790BC468FF84263D853 /* posix_engine_listener_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BBC283693E7D65C7BF998AC8BC5411D /* posix_engine_listener_utils.h */; }; - 0E4F79448153025B9A8656F6DB56019B /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE394902CF7DE17D6A106550A137727 /* port.h */; }; - 0E65806CB68E1E17E86F026E761C2766 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = A297D3378BC4DFA19F8DFFE9F9362E0E /* check_gcp_environment.h */; }; - 0E78BE371FE9E17FD9D542B4525F10D4 /* status_code_enum.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 75B81C9F886C85C2BF0F896D880D6458 /* status_code_enum.h */; }; - 0E7B9223C101AECF6382858662ADBBDF /* GTMSessionFetcherService+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A7955A1BDC65EC0B9461673F12D08F /* GTMSessionFetcherService+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E7BD2CE0C6DAF35493638C4B527949F /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 11EC6DD53D771CF3D99C9ED1E4E0BEA1 /* base92.h */; }; - 0E7F5A364C2244F2FAEF82A01B17BEFF /* leveldb-library-leveldb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 5F8C1626C73591959F16DB1CE2536F54 /* leveldb-library-leveldb_Privacy */; }; - 0E82F3DAF106550C975A246B2D8B2322 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 81468FEC8291566A0D03DE6BF5809C81 /* http_uri.upbdefs.h */; }; - 0E8A8CDECC88D1623A1E5E68E962A999 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB6E91B5EDB4A51E08ECCAF1F20C1D1 /* b64.h */; }; - 0E8B96A4C889664DB9A9B3EF3C7C45C5 /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = 8C3D0005F7CD21EC248C2E41F247B7F9 /* can_track_errors.h */; }; - 0EA33BE5C67D1E27D60E7D4E49853F35 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = E915D0437CDBAD0A094880EB90D2E36F /* orphanable.h */; }; - 0EA8B46769965E8B0D282354F784087E /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D626193C9858E62D6EF289C4B02EA1 /* GULURLSessionDataResponse.m */; }; - 0EC3E7359AF0C4FA7E7ABF3ADE6705E9 /* semantic_version.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3356F56CCB8112776C72B8CB5FC02265 /* semantic_version.upb_minitable.h */; }; - 0EC82E19F4B1512DB7247DE31FA4C5DA /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD3E75867E77686D21FE85207AEE761 /* span.h */; }; - 0ECE8369C422CF49B3CA381B41CD4D23 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D06C32649D374D4A5DD56AE535AA7A /* internal.h */; }; - 0EE1E6C21D8C5239949103DCC5B6161D /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE8E5DDBE5A9E2567FC26FB23480A87 /* syntax.upbdefs.h */; }; - 0EE207CB7F18CA9C6BE7CD1E5CEE513F /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D9691EA7903225D2ADE8D4E0586BD3 /* GULNetworkInfo.m */; }; - 0EED8A54B34726D7C1F523C281B45AEA /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = F1DF06477CCE388E456BF05C201F4E8F /* google_default_credentials.h */; }; - 0EF33F14013AA0C0639A9D99997FC87E /* resource_name.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B8CE1529C4456333FB8B36FD579A836 /* resource_name.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0EF59BC68B6047EF8960EE538F1A548E /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5ECB33CB36369E6C8047418480FC55 /* resource_locator.upb.h */; }; - 0EF69767AD30B53DAAD8CAF798D4E562 /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A3770F98D78AE8E8845B4B4413E5DB0F /* walker-inl.h */; }; - 0F082AE0620C195EBC43843EC4FBEAB5 /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = EE5E9127F8583D9C86580AE986E2BCB4 /* spinlock.h */; }; - 0F166DFB16C790CF8B2541CB9542D1D5 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E3D2249B111F7739A6FBE4AE57C5B8 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0F1C884E0FF6135B4826B11DCA7DE75E /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43F76492E1B7571AAB0C628F9AC6A9ED /* composite_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0F2204AFA539874DE9C778EC1C963824 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA5FF935C4CD6686F0C0466E9ABA34A /* plugin_credentials.h */; }; - 0F24CC06B7C937551B789BC5E5DDE44C /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F717D02A2AC49B312AC948E773DC4A /* sensitive.upb_minitable.h */; }; - 0F260D59187D2547E9ED1146D316F185 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D23041D7B6BC2DEB1E4A9F73EE967A9E /* base.upbdefs.h */; }; - 0F2A35A7789D7F195B845D21BF9F286C /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 982D02FA6C13FFA78FBBAA16672EF323 /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0F2B0B916D8782225EE13A62C25879CC /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B366CF55B8D8E43FA4A5E47FA8AF6EFF /* fault.upb.h */; }; - 0F34CBB5BCD81252459DC0AB375F90A2 /* chacha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 31953C8C6D07AB196DBB3C9B336B1641 /* chacha.h */; }; - 0F3A9C3ED189CC39EDBFC125D06F05A6 /* client_stats_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 400E4758FA88E5BD8FF8C6FD0B82365F /* client_stats_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0F4304FEFDE6BFFC5FF7489EDA25F6D4 /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6686F7B412E2588A47DE4EB61AED64D /* mutex_stats.upb.h */; }; - 0F4ACF7EB5130C35F5E9DB582DDA3680 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96E85054D8F704993811EBA5291733AE /* opencensus.upb.h */; }; - 0F4D841C9FBB9297CDB02AC27CBE37C8 /* FIRCrashlyticsReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0702C55C3328F13C3152C0EBBF72C9 /* FIRCrashlyticsReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F600BC7589A47AAAC3F21A409AFCA84 /* validate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A987A247F315171F67487859383D76 /* validate.upb_minitable.h */; }; - 0F618CC392DE1FC9A7514C81543A7FE7 /* file_def.c in Sources */ = {isa = PBXBuildFile; fileRef = E15C671F23E192E1280B33B9B5D1310D /* file_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0F6B7AC835950F4F8BAC18C2A63F8CF5 /* percent.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE16C8D0C391914F6DAD221B7BC0BF6 /* percent.upb_minitable.h */; }; - 0F7106B12088CCCA35210ED7E02C5074 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 361F7680B677C6C76B1ACAB60B6C28BF /* common.upbdefs.h */; }; - 0F736D61E1EF7E60784946AFE14A2086 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 886713718FCADF8C8CC23FF2BF7EFDD1 /* map_gencode_util.h */; }; - 0F98012CA6D231B6AF40CF45F65855F3 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B82393F86944C1986FF334882CA313 /* channelz.h */; }; - 0FA19E8E37F76CD9075E1CCF7EB69CDD /* call_final_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB9B19BF4DBACA5660EA7908840773B2 /* call_final_info.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0FA5637A670EC40C3298DAB4AF7889CA /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = D1320B11A6184E1B519FCC3704E7DF56 /* rls.upb_minitable.h */; }; - 0FAAAFE3FFAF402084AB944EB71ED00B /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = 65259DFFC4BD1FED84641EBE8B273A7B /* rc4.h */; }; - 0FABC46F30D7E8E38213CAC70A61CD67 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 14468A2427543CDEF697D838BB82834F /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FABF0E292C79B2D25D837568E7AD055 /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 2BFC12448776047F1419B137DF2AC10E /* json_args.h */; }; - 0FAE16633356262B41A5D7406A75CAFF /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 105DB998E777092AE75D0378C60FF747 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0FAEC22FE02402D31F051578F53C9B18 /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03405BE9BC3E546E06DA933435E5F566 /* inproc_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0FB2B84C4514FAE2D6B7B9E937784F55 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 101757169B31195CC466EA9AC900B4DA /* KFImageProtocol.swift */; }; - 0FBFDDEE8698093432598B62CAFE031D /* join_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 505BCD1BF7D4B69DF22FC71DBC8C1B81 /* join_state.h */; }; - 0FC2F9BE7C13787B1EE77B0A384F762D /* blowfish.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A67EB494C457178E4340792DEA1F4D2E /* blowfish.h */; }; - 0FC437D343FDC8A0AE6AFFC7B7137923 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 862D93E2D730795ADD020CA403E6F609 /* api_trace.h */; }; - 0FC8292F14CB3742F9443739C000664B /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1FE712602E3AAF9B54D6A9177CA687 /* context.h */; }; - 0FCF048AD4F76ED2427CA9A8EF4A1E51 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C90E462E6BD24B3C5EBC223D795FA37C /* common.upb_minitable.h */; }; - 0FD8D61C280949D2DD503686349ECC3F /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 5632E72CC99A204206E3F97354316083 /* lb_policy_registry.h */; }; - 0FF2DB491F8B439B5CE661CA19F27AC6 /* FIRSESNanoPBHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 439A96E738E2C1A9A3CE7E126671962B /* FIRSESNanoPBHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FF2E68C21E0575B4CFD5E1F62B6A739 /* hpack_parse_result.h in Headers */ = {isa = PBXBuildFile; fileRef = 540CFC326E8518F744DF9A930D017993 /* hpack_parse_result.h */; }; - 1008D232E830B45FF7A7C7C8808F8C15 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 812BFA2B6C3FB4F8FA96351F8148F275 /* wrappers.upbdefs.h */; }; - 1009A6A0CF6CBBCA89AEFF69FDF102EA /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 163BF052754DD3CF24C2D34AECC920FE /* inproc_transport.h */; }; - 100FB000AC58D17636C07D08B33C6D11 /* call_op_set_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 863486688E8195BC916D92EEC7B05DE6 /* call_op_set_interface.h */; }; - 101B98A337DD374E19FBCEE05F506F68 /* call_op_set.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 70D68C3C3EA99B305C08246903640806 /* call_op_set.h */; }; - 101DB4F51BDEA5952D5A69D50980EA46 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D56EBBF5CC50E29BBAF0FBC3A9E5DCB /* resource.upbdefs.h */; }; - 1020A8FD895222820A6AB9978BD46731 /* random_early_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0CA0275650C7FA9D1253A813DD07BA /* random_early_detection.h */; }; - 1036BE63CF71EB4FE9C8D7E6094EBA27 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 6140C8A561EC38A79B440F5B9B948A24 /* frame_settings.h */; }; - 103A365D558B4DCDB6D0ABC6ED4E4CB0 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 234CCB12474FE1E2EF8608788AED770A /* service.upbdefs.h */; }; - 103CA154B2089F732D28356BD3555A49 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DAC4DF1581F815924BF9CA44DA875F43 /* cookie.upbdefs.h */; }; - 104D078C570671F52F46928B0EC565C9 /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 44DB17DFFA784892A79E3BBF03FDFD14 /* closure.h */; }; - 104F05F77E35BAB76FB1F608C3EC4F14 /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D172B924BF6172462B2D5C2DD98029 /* forkable.h */; }; - 1054A416F24A5C0FD7627D993E5C0106 /* charset.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = DDF3A7DC0D03217AC4D44C5383C07044 /* charset.h */; }; - 105E9F2062DBB7BF7CD59E4DE49C0D64 /* build_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B9EF12CD33D87E902EE7F8D2E0448D /* build_enum.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 106166CDD464C27062E15CA75A468E20 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D5DA6E47B73F17C0A8DD419F23DBFFE /* xds_http_fault_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 106354975ED3C38465F77B83B01E1A3C /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2F8CFF4F0269CE996EC083F7C6A3E8 /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 106D407E18381E3E5147F46C8CEAA7A2 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 456224646C705846CBE832F3A42F39B7 /* range.upb.h */; }; - 106F66D360F66F7AF9AD620B9D4E36CD /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = FFB0C464E44E29F08FC8D6EAAE45A04B /* fake_resolver.h */; }; - 106F9DA502ED583F81D863260F95C40C /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AB09D214FAD65ACC303422FD1D4FF3A6 /* route_components.upb.h */; }; - 107CD09CE48689B176B0A6B1C627049B /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 92604036CF303CEBA4FAD318F6E0DD82 /* str_split.h */; }; - 108279ACC1CC9ECC7B00FAE93B591762 /* bootstrap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EC04B63006A940542A3047AAE353C5 /* bootstrap.upb_minitable.h */; }; - 1088F47A6FC41B8BD58A5DB2EDD00332 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31545E1B646163E49C4D59902E6D1C7F /* grpc_authorization_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10972E6BFED02729B65AD91C6B09A87E /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 87F510A6D696CD28CB73FBB9EC520AD3 /* grpc_service.upb_minitable.h */; }; - 10996434F94B440636B96CB558031001 /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2937658A84C4EA9BAAFD51052180EBD /* cidr.upb.h */; }; - 10AC4BD8300158A7C93CF12BE86F7CFE /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = A055B0758BF31037229CA728F6323A9B /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 10ADC73017594D0A7BA31B763E95B0AC /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 80E737B633A88C64998C60BAD13E0970 /* grpc_polled_fd.h */; }; - 10B35F92081B9DC0F7E6AE60BFC816F1 /* asn1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 323E708C84FEC7FFCBBD6D05130AF9B9 /* asn1.h */; }; - 10BF727044456DAE9F4EBB795426E15C /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 42716016493C37BCACA2F7CC5BB85A29 /* method_handler_impl.h */; }; - 10CDCB01F5EC808B132562C1F2FF06A9 /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 320814AEB4C3B9E4465BE1D7F91A278A /* stacktrace_riscv-inl.inc */; }; - 10CE352014293489AD2B47B0AA1426A1 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B390F198735D7EF93C29CC3FAD6A42 /* randen_hwaes.h */; }; - 10D18F72975A7EC6944E00AC3B533153 /* SessionsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBE8FA21C4E297C5153BCFE10BED9FF3 /* SessionsProvider.swift */; }; - 10D6EEC55AD3899BF4D73CA051A17D00 /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B5885FB07A214CD54E7DD22A020EAC /* re2.h */; }; - 10DB368261A6A22B4CEC0DF97A3BEB85 /* http_status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 38D4E52B8E98B3BC31A0CBC5F72984C6 /* http_status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10DE85704C3A247FCFFB3AA3D8A24FAF /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = F1528A6DE6D9BA9D6B0D60361F6FB498 /* exponential_biased.h */; }; - 10E2DDC6B79B3A5B3BAB23D341110FC3 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F12F6E61802A2B7FFA3CAC97C54F849 /* endpoint_components.upbdefs.h */; }; - 10E591FBF40C1B8FCF0566DEA91C13C6 /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A1CE2B12E88D83CE209416CE7519AE /* enum_reserved_range.h */; }; - 10E77D9C422DA3CD0D2100C73386A7B4 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 4637AFA665C7A04A54C0CF891D59527D /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10EBF0C608ACA57E9CF0083155648D32 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 90BAE62CE723BCE1B68F51DD632C8ADF /* gethostname.h */; }; - 10F76BFBBD9CD61BAC7628E7D3BA88D3 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3506714A0619609E55545B209725CAEE /* circuit_breaker.upb.h */; }; - 1100BAE344FCD8C476BEF4BA72C6E197 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A674441CC0A9235681D164531F8477A5 /* client_channel_filter.h */; }; - 110C2ECEC7D7D7CD1C45733AC6769962 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 550CCBFBD6EBE331F60E57A4B6A6208B /* internal.h */; }; - 11155A3AE03CB3D2A4AC7F8CD7597015 /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 323EBE9AC12186E4E0577AD20F12D0FC /* ev_poll_posix.h */; }; - 11183F01C286B06929A9886A4CE6400A /* base92.c in Sources */ = {isa = PBXBuildFile; fileRef = BA768EACE534AE696AB4B30C436A92B0 /* base92.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 111E6465573C596FE39C928CBA85E293 /* common.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = E9357B4B2C647939E1AA94BF61A73255 /* common.h */; }; - 111F6CD7F0EB36F848771E31B9C866F1 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDBF1A11DA6467FCD22309D006F6134 /* endpoint.h */; }; - 1124F17DA33F36DF5AA00FA1E25085B5 /* default_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = A95EB79462FB650FF21D508D7374D597 /* default_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 112664C6C16691832E9AB975ECCDF6E0 /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 25092DA6BA8FF7A07D398DC734419046 /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 112AF1649BC25FF6AA17CAF856317F05 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 20816FB41B5E2C0E9C61DC5C8E4FE4DC /* health_check.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11308EE96197FD2AD2E8E8AEFEB29CC7 /* encode.hpp in Headers */ = {isa = PBXBuildFile; fileRef = C9BAFF4928197B0497CF8A2BE368A5CA /* encode.hpp */; }; - 1130A854DAF744C8AB909BF70D6A097C /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 79AE503692A32CB56DDCCDC8D7A62BC0 /* authorization_policy_provider.h */; }; - 113EA6CFD5D164459336C8C8D0A926F1 /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F1AADA5B6ACD77CAF3EBA105BFCE145 /* census.h */; }; - 113FDC01FA79FB9946EC417AD6FC3AE5 /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E641F7BD50A16E01014256EF886A5CC /* grpc_if_nametoindex_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11505412028688E5DC471662BED62029 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A55C25A2F00018CDF8DBED24A196F78 /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1159FC2153BEC7FFDE2B748A1AD8F8F4 /* histogram_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D09E2D03E609ACCB2A4E16CA5569C2 /* histogram_view.h */; }; - 115B4108C122D87484F0D71A3E9F7D9B /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 02250B05FFE0D6443F1208F07198C570 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1170C539DE7F4F7D54287F915D25E256 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA62110E09A9C639BAF7A0252EA9016 /* event_service_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 117E4C4164BD70DBD917C31EB4DD270B /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0FA1C9F2749DD9B8EB1CB673E4CEB46 /* Promise.swift */; }; - 11879228CACBBEF6131635FC25A6FF16 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = E6899D2A0E524989E8DBF863378295A6 /* server_callback.h */; }; - 11879A5E29BD93A8623739A1B161A6E6 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F57CB85BAD1F84BE859E953CAD787D3A /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 118C1B37D5A760E32B84C112FF2627D1 /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = B339189D4A45506F4320592CBD21CF85 /* bn.h */; }; - 118DED77252E7D5D2B7E155BAAB1E42F /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3E9D61FF3949EACE0949F8423B9FA1D4 /* grpc_tls_certificate_verifier.h */; }; - 119899BDE16A40333200E80A36F2C307 /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C0838D32D479807FC6AD1C9657D95E4 /* load_system_roots_supported.h */; }; - 119D0802EFE68A86F1EB033339BCBB79 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F9CFDC969A9A34291CE5F39A34C4AE /* grpc_service.upb.h */; }; - 11A112F83F9C7C536D2D63C58131716D /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E95CD7849EA3C68955762818BB771D /* xds_client_grpc.h */; }; - 11A1913F7DECBE79F7F680733AD0E5FC /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = F6BA093AE1072223EDF8CF10780596CF /* alts_security_connector.h */; }; - 11A5116CDA24B288E7FE1BDCE6F48648 /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F27C3C371B2D0301725F8BC353B4A5 /* grpc_server_authz_filter.h */; }; - 11A8D11BA9A226C7E55396E439A9B72E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9E048134B3F404280AEA150DE6BEBE61 /* range.upb_minitable.h */; }; - 11AEC0983FAB9870C4497BC1708F2A58 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 5F20C0FE94696902FBF412C309B1116F /* decode_fast.h */; }; - 11B8758EDDB97B27DDF21AB27B06EEA2 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B86037E1103C4172FF1904F7A92087A /* time_zone_info.h */; }; - 11BE0DDDE41AE423DB4A6B1DCE0750FC /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A610A8661AC0420867C4885276308238 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11CB82FF4529791612712F784E514925 /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DB052CF89343201C6B80B737BAC572CB /* metadata_compression_traits.h */; }; - 11CCD832BD537718892C6A216A38490A /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E05EAAB07BBBD737B2BD6B62B6493FAA /* URLRequest+Alamofire.swift */; }; - 11DB94B907F324166E7DF2DC96836727 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E83CF6696072013AC704295715423D2 /* versioning.upbdefs.h */; }; - 11E5E6A4B8BF286BAEADDCEFCFB0D1DC /* seq_state.h in Headers */ = {isa = PBXBuildFile; fileRef = F3991EC455A1E6DF6F8026CC7389E88F /* seq_state.h */; }; - 11E709C7F70FD4C8ADC2E2C898F31711 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0371E084AFF469696B44928C6AF9F9F1 /* udp_socket_config.upb_minitable.h */; }; - 11E7668F654B5FCB887C01FB3BB52C08 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = D86F3F1D2AA358F1F3F30F5B38723C64 /* load_reporting.h */; }; - 12009B6E84219F6AE3A99D5EE7E6F4AE /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E395C99063DF245B82C8576625E5E985 /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12042A2B12E60ED4377520201090909D /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E76291771F6F5B95D8AD2320E86A655 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 120452180538F523639B929363FB8F1C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = F41B63D8617D03EA68F2F22FF7759A2B /* internal.h */; }; - 120D8B9B5A4390E738ED2321F322E775 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8BFC4B2CAECA251381352554EF79A20D /* ref_counted_string.h */; }; - 120DB24E2CF0886930C7B3C2567BD90A /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 994C92B6C8EF13F1B02AE6B98BF69C31 /* FIRCLSSignal.c */; }; - 120F997029FFCB7956BF30067976AE14 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0015B3A0C65E2E6A644C56E7BB547B98 /* api_listener.upbdefs.h */; }; - 1219B0807405D4D272786F77D42562D0 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 895FC2487D455C64633ED2D339429314 /* orca.upb.h */; }; - 121C05BF4E7A24C237C37927C56B21F9 /* trace.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 75C42818EAE9EFDCC436D770255AFD12 /* trace.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 121D0AAC0560DC6E3851B86E385C5761 /* tls.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B22D22282B23C5B5BCFEE73E00BDC66C /* tls.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 121DF2F36D81820BD1F5563D11E70D3A /* fork.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8D721A0F2C94BD0C0F9695358D997C81 /* fork.h */; }; - 1222A14D775B6631240191DB4BE47F5A /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C46FF9CC1195D12A51E78D9A4BC4DB /* secure_server_credentials.h */; }; - 122A286C7A7541F3CDF88871C09D7835 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6E18FCBC9A467C0E85B1FAFA91F9C3A /* bootstrap.upbdefs.h */; }; - 122B2683F4B9A3D494BBB0D6D6D1E772 /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB55448DD3B1EE0276A8EFF4C087DDBB /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 122E5142ED034EE80280A173E6451E25 /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF65A1FA5ED0E47C890BDD1BC0D9EE /* def_pool.h */; }; - 1230C6C351607114F4D95E9D582C4B52 /* party.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66399A79B9D1A60DDE5A3140218904C2 /* party.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 123A79C8A299E9383CEA4FACB63E2FC3 /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = B94B6250395B0EBB6C62CE20A747C2A9 /* policy_checks.h */; }; - 12492EB12A9FD1A48B6805E2AFA98FFF /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E6A6E25D19DCBF5646D240BECC0C10 /* route.upbdefs.h */; }; - 125B03E872F1DC8274944901AF760024 /* objects.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9473CAE593EE65B44E4C740E68FD508E /* objects.h */; }; - 12844BCACAFA0707F5D97A82C1733785 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 79A127703EB3FB57B7460E9A97E17FEC /* alloc.h */; }; - 1285E3ABFDA6AACBB41FABBC79751052 /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FDB564A31EB7C47B792960600726595 /* socket_option.upb_minitable.h */; }; - 128DF8264151547334F6D07EFA120453 /* handshaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DF41B1443E368F9F1F07DEA4A1680BD5 /* handshaker.upb_minitable.h */; }; - 128FB4F8D9D581722A236BF577FD671A /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E674C6D3BB078AE0480205ED962493 /* try_seq.h */; }; - 129758B6905FFD00E11113E063222498 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20D04045F3509BB99DC4CD860B11E8A1 /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 12A80F45ADD1258F3CF84214A8868286 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 790D7EAAF52205F72B1A52F9320AE170 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12AF4A32FCA0749FAE629C7910104B62 /* create_channel_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EB7428C8B5CCC8922D0E59D2E9236825 /* create_channel_posix.h */; }; - 12BB888F85D582CDC984A2B0449149EA /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 07037E4FB8345A70E266E4E994D2781A /* status.upb_minitable.h */; }; - 12C2D45918A0FD132BDA012DC6B950A7 /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4540FCB063D3F1843796B6A61F7CF7 /* arena_promise.h */; }; - 12C7581BB6921E2F5C4DC0F9133C4963 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = E35C3F3CC723E919C3CF8C1812245F1D /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12CD4723861351C5D46496478CFFE5CB /* write_size_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD472CF83DEDA02082B07F074B36AFE /* write_size_policy.h */; }; - 12CD9D5122DF143AF7AFA8F13C1930B9 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7625FB6BE969F35F3D8101F8D51D62EE /* port_platform.h */; }; - 12F3E4487F877B33570A95773B4E526D /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = EFD133054A08C540848EEBAC62B6C8F7 /* config.h */; }; - 12F98E52839DEF6B5583128E9850B5FC /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5EC5143394310D99B0D1089752D504E9 /* xds_channel_args.h */; }; - 12FF4E0BAFA1DA818B76DE1F2F3DEAF7 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BD3BEC24B27CF14E15C25C99D0D2D /* event_service_config.upb.h */; }; - 1303C376E69F3D6E7AE794AE83575DD7 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B254C34025FC0096E42AEDF4B2FDDE /* ev_epoll1_linux.h */; }; - 130464AF7C27FD4AC25836624CA21708 /* event_poller_posix_default.cc in Sources */ = {isa = PBXBuildFile; fileRef = CAF399DC69F1A99BC086B6FF7668EA59 /* event_poller_posix_default.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13072E6FAD289AF7C4E375250051AB46 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 6C4E6F9792D1AF7FAF739D4FF3DC0F12 /* fake_credentials.h */; }; - 130FD9E581D3A2F7D775790191EBCF39 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 3490402352A8F49AF999964E757FA378 /* bad_variant_access.h */; }; - 1319D3962F41BAB1BF566B0170B25014 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF65F4FE5270B6BA89031CEB3099FAB /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 131FFB7F6C521C84B746CA95AD3A87AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 1327F6688EC08B084058FB0266361A5B /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = F4673CC8D72E5FC265C1C03037AF4B70 /* output.h */; }; - 132CF1CC81FE780960320844DD8BE7E9 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAEE4536374180ED87E264526BC42C4 /* alts_grpc_record_protocol.h */; }; - 132FFDF5D750FB469A0BE2021ED403FE /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B32D1586709778B640CDE8222CB5CF /* ev_poll_posix.h */; }; - 133002D2F236C3BD70D5C55CE2297A23 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D56EBBF5CC50E29BBAF0FBC3A9E5DCB /* resource.upbdefs.h */; }; - 13423364C4DDEC8100F1234F2AEAE449 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7849418B70BD18FFC9146E5F783CB8C9 /* FIRAdditionalUserInfo.m */; }; - 13439CC133B2B8034A08A1D26C866844 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A27829C72F9612DAEF484A5ED39A3225 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 134BD62933EC4DFC97507ED547FEB872 /* init_internally.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52F846B3D74E05B8F3DCC2E16C724A1B /* init_internally.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 134D18FC356561E3D5BA4E9B9378B2AB /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 765BB0924C0B0E2AEF1F1F1D1DB6D3BA /* ecdh.h */; }; - 135F51757516F8861034F158F89B905B /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E277D6FD9EC317D3436C81869F09A64B /* channel_args.h */; }; - 1365696ACAE8DC18556FB8AEE5881FBB /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FC569B4670188B4BC1D87E4A971A27F /* jwt_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 136B56B4C6061C72AD26BC8C8257A1E8 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25B4898CED8A9CD6591A55083D76E905 /* channel_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 136D8EDCD79C4C0C0274B4705EFDF69E /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 359C3370A5956F3140DB85F3ACFF6861 /* credentials_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1374CA912B598117DB59CA20790E4234 /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = C398907E8E553BFE759FB80854F33F13 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 137EE16B9DE9A60DB6930B96F73E9758 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = D505917CFD2AEA37A0886AF0AB8221EE /* channel_creds_registry.h */; }; - 1382C2C23A80DB25515C3334DD6C674F /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = A297D3378BC4DFA19F8DFFE9F9362E0E /* check_gcp_environment.h */; }; - 1386C63BAA0115C54F878D9DF1D3BA88 /* curve25519_64_msvc.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = BD3E252FD455E57F17525D84AE0780E4 /* curve25519_64_msvc.h */; }; - 138B13B32B9A185E8A0792F982363396 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D689A84F08407313A524E648169E9AC8 /* PrivacyInfo.xcprivacy */; }; - 13961E5C35DF8554D074EEF1C70EC141 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 80C67396586E7D232483F6E2E2038624 /* transport_stream_receiver.h */; }; - 13965E029D43A5336A48B9DA7454A9A3 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FB6C5FBE2A9DB288ACF02B4F674777F /* channel_args_endpoint_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13AE739508717BACB36FFD5FE3B43D9E /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB22C23D79EF8DC546F54BD2DAA58CFB /* xds_http_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13B5F4A625027183ECF3BEE9B29897DC /* message_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 112E8D59287846D2D045996244F98F00 /* message_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13C5029AF1B2C9854D1D1808DC80324F /* common.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 30CA2E709541EEFB1916BCCD36431182 /* common.h */; }; - 13CD86899306A2A77E66C64E62577EB8 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = D2176FBE839C998AECC824CD189BBC45 /* message_compress.h */; }; - 13D4C435BE4D9494F9643F5DCE138766 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 13B2086CC068F04B86888304FFD8C8D2 /* modifiers.h */; }; - 13DAD0F8385DCB2BD56537E033E43678 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7167BFC60892B8B55471E5910FB6EBE0 /* xds_http_fault_filter.h */; }; - 13E22C4F6E081F5475AB8D2411E20387 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 812BFA2B6C3FB4F8FA96351F8148F275 /* wrappers.upbdefs.h */; }; - 13EB503C2A2B65CA547E83BE6BB995B0 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C76D397E4A03B06F0C1A97BF2DA6CE7 /* alloc.h */; }; - 13ECB0B3296E3E885B14BB2CDEBCFB8A /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = BC76A984AD47B0F691FA833447676F58 /* enum_def.h */; }; - 13ECFB15F0B4F31D90EB79B5DEEA8DF1 /* status_flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 440DE3E38291C3198B325B410DE8E11C /* status_flag.h */; }; - 13FB154BDFCBE6EC2731C71F0B35FA24 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90DB3951B3AC8E395EE7E5936DC5796F /* metadata.upb.h */; }; - 13FDBF5085397203E7463E146FA3183D /* external_prequest_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = E73B0F50D17496287D43F61A2E0DB950 /* external_prequest_context.nanopb.c */; }; - 140B3AB6DBFCAC8EFB0F9914B4BB4D69 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 028EED6897FFE902BCDC3FED0BAA1C8F /* FIRInstallationsErrorUtil.m */; }; - 140C37F1B39D5DC05EA5E376C1BA54C4 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DB7FCEC58C74894DB824381DD8248D /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1414C9D545B18E26B5CC74D24C362BFE /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A853077C45C0106CFDFEDC2A4F5CD2 /* ratelimit_strategy.upbdefs.h */; }; - 141EB766597A52FC1B06558A909AB59A /* percent.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 632FF3B0CFB03A0E62EF4B22C7B0045F /* percent.upb_minitable.h */; }; - 143A2811BE6137DFACCA462CF206BEAE /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = C01177EFD1127EA98EE2221F41D1BA60 /* FIRFacebookAuthCredential.m */; }; - 14446F55E3D2C53AF012A735D48E26A6 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FC2C28E8FAC22DE203D9843619402081 /* http2_settings.h */; }; - 1444B7CA9BA60B8102256FC2C929326C /* cpu_arm_linux.c in Sources */ = {isa = PBXBuildFile; fileRef = DB9C28F85B9E16EAEC2C6FD14040C96D /* cpu_arm_linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1445288AEBB06484A1C4C8E861DB9762 /* spinlock_win32.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5F1D2B3DF29D47675BC05D834103E8B5 /* spinlock_win32.inc */; }; - 144769332E81CA60A7317047588A1AF7 /* md4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AF161B7323D899687BBCA264CCC2B005 /* md4.h */; }; - 1457CD912DAA1827CC7943DD4268C995 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B9E014B0C58956043AB038223FD38811 /* frame_goaway.h */; }; - 145B9862B87748C6DC961DCBAB39D4E9 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 670AF1EE8C59932255BDBD53BF84AD20 /* service_config.h */; }; - 145DDC703782C8E0C4C97471D899FB05 /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 786B3BC13115D43F07C19AA9DD2521FF /* address_is_readable.h */; }; - 146A55B6F5BEA75B4F47C2524E57E16E /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = AD465F2A1DF637CBB3D74FDA9682444C /* legacy_inproc_transport.h */; }; - 146CEDDAADF6C76780F814609102E192 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 11CB9A41AF61BF16424BBB49CF6088D2 /* conf.h */; }; - 14765E2B8E2B951A9C81783C8344ACB3 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D9F2B8A4E863C351E9BE537D8D1248C /* FIRCLSUserDefaults.m */; }; - 14781198E6A62826BD2FDA3082D39202 /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 96ABBEED7F94C87246BC1899F8029A8D /* map.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 148046131C01991B55860A1A4F6B1AA1 /* xds_resolver_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 841DECC28AD0E66EB1C6F8B70A350357 /* xds_resolver_trace.h */; }; - 1480B9F2D2466B5969187080F66EB0CF /* validate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C898B28E6D3D27E77CEEF2AB1FAEE92 /* validate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 14894233BABF9F8F87B56796A9DA036A /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08F3621B950AAC05296727D2E63A0421 /* endpoint_pair_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1489AEE008A3A28AFFEC87CA16ABB502 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F12158875D197C9FE823EA0623FA59A /* extension.upbdefs.h */; }; - 148E00978CEC20A142B19E3934F6C25C /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 620DAE10F967B7FB8673A1CB378B91D5 /* FIRCLSThreadState.c */; }; - 1492A5AABA8BAF5B3258CAF3FCCD5674 /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C42CD51ABAFFCFC32FA5BEE570463B /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 149D02D6433BBB2B3C14C8C4D30F16C4 /* all_ok.h in Headers */ = {isa = PBXBuildFile; fileRef = 607CAA4E0E074F78849083A01F106CA0 /* all_ok.h */; }; - 14A4CD84BF1AAA72E58CEFFEE0D8E2D0 /* sem_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 653BA8BE79F5F3572FB03321B39B1EB8 /* sem_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 14AB421D44506BD967DC6CEC4FD2E440 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2D05F324EBAA66152B869494AC1CF2 /* extension.upb_minitable.h */; }; - 14B2437CE1212AD85107C8FAC320D7CB /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 95751A275DA324D5831038BD76349D71 /* config_dump.upb_minitable.h */; }; - 14B546F0D782C3DE70F537C54F6C4AE8 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C41D45EEF249B5290C2A95953B636D /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14BC80700D6F31943F5969573778E2F0 /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 7331F47B7D4809A8C4CA334472D341F2 /* FIREmailPasswordAuthCredential.m */; }; - 14C4EBB4FA41E2FFFF4CCE4D00DA68FB /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = D248384B85F4B29D7DE2F886429B1879 /* any_invocable.h */; }; - 14C7E59931C56FAFF5E0E5F94BF6272B /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E2C2287B0CA2EB81871504CAFB82D7DE /* xds_resolver_attributes.h */; }; - 14CB300EC68E00F340DFF388048272BE /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 26CF7F052AECAC91833DAC832BC6CFAE /* overload.h */; }; - 14CCA8A74E1AEF41531B45F56CBC18DA /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DD564C8A9F3ECEE31F45820D5AB875CA /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DB2B832EA82CBA22AAA9A8CA09082C /* address_is_readable.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 786B3BC13115D43F07C19AA9DD2521FF /* address_is_readable.h */; }; - 14E558BFEC327142337FB212E8ABB178 /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 38451210B32A429AF18C08E5E840DD0F /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14E7B0BA761F431001EAE33A94B4E958 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB1FD9E212279AB3586C3F95DDD79D8 /* timer.h */; }; - 14E8604CCB8BA7367FB3FA259A3C8AE6 /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9862A7FFEB93346F2E0C8C4E24D942F7 /* authorization_policy_provider_vtable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 14EE4DE9E44ACDE6E328E9547C00C8CE /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 485BF2666AE10AD0282B1DF9C8577B85 /* decode.h */; }; - 14FC153BBFCEDED4FDB7E136DBD8F371 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA3D0F5CBCD7C8E82B5690D33489616 /* alpn.h */; }; - 15002B55FF1FCD8037C61B369A5C6C8E /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 0A0B09C9C37C26D07E52119AB0197BC6 /* gsec.h */; }; - 1503221E98F5809FFF2FC989F8A5A703 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = C8496FCB62F80ECA26094B1A49A54E69 /* arena.h */; }; - 1519BCB1DEA7C046AAD5936BC7EBFA08 /* outlier_detection.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 14FD740B10535F9B76E33D73E0614B5C /* outlier_detection.upb_minitable.h */; }; - 1519D4F8D1B35C74EE64267698747A95 /* domain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D8DDC6ADDE85529A704DCE0D09B78B7 /* domain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 151E0A8CAA543F5A47E0F3CF78AC4A18 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D33888A40609DE9EF7CEE232F10326 /* auth_context.h */; }; - 152012EE03E6A4DDAD33C6E31059B59A /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C35C2652375DAB2F10E27B4AE1E11D47 /* rbac_service_config_parser.h */; }; - 1527CEB42D86AE7F03B5296B869A2907 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 6D415A6C2F9B61D668C9E23B59933045 /* map_sorter.h */; }; - 152C9DDBF136D5D89174EC4B538367CB /* utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 362346D8CB9F43A1EAB3C6D71B6CD0B3 /* utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 152FFB988E4A0B0F69E4E53B8F4F5B6E /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9F3B2A8F5A9C2B96D84AF1C0C9FF02A9 /* service.upb_minitable.h */; }; - 153A670052FA0D0D8AB1A98302E031CC /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0EA04DE1EF452033480844DA356595 /* FIRStackFrame.m */; }; - 153C5C09B0D9821DA38EDE88DC431770 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 86562D1A2B1EC4D647060831DB630F29 /* socket_mutator.h */; }; - 1543F690DFEF80216767F0FDBDF0E3EA /* arg.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 0FABEC692EDFA2ED841001DCCE3D73F5 /* arg.h */; }; - 154C5AE7387308687B729D0F9BB21E33 /* range2-sse.c in Sources */ = {isa = PBXBuildFile; fileRef = 61904A4654D76DDE32175575588F8762 /* range2-sse.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 154EE7AA48BEA6563E1B492036C65C14 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = DFFAB69EDABE0F6B19436D636EC55BF6 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 155508D306B23324BAA68A9A5C273670 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E01528A26913878A1635A06928823C0 /* cord_rep_btree.h */; }; - 15587F7B9735EC3856AD646E396834B5 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E13FFFF8AEABA4F4DC9AD9F1114D8485 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 15605A74CCB58BD86E1CB4935406470C /* wait_for_cq_end_op.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B0FC4262F21FE5B285CC64E5ED85CE /* wait_for_cq_end_op.h */; }; - 1564FFC34581EA9B9298EB40BCE8C865 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF73DB7312DBCFB64C49A10B7AE96C41 /* resource.upb.h */; }; - 1568840C7EE814E9A789DB74D8F4F9F0 /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D2FF27C96584D2CCB0DAD4B246EFB8 /* cel.upb.h */; }; - 1594A2147DBF640343BCF959DEC13D9D /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = B8882543926AC8B86E049FDDF461A92A /* evaluate_args.h */; }; - 159554DEC14E78BB6EF57D29996D340B /* serialization_traits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E4E7F0E67A185AFC6692D82CB641FF90 /* serialization_traits.h */; }; - 15972D44A268CDD6EA906BA1EF18B0CE /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ED1CCAD3A5E9991950EF508816805C /* timer.h */; }; - 159B23EE4A8A69E2B85360BCA8FE65CA /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B3A888A4C5364208181072275F9B7A /* udp_listener_config.upbdefs.h */; }; - 159C03FB9C13C36014EDA03D30C9FABA /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2EA71B7B69AE32082F0CFF468E7DDA34 /* duration.upb.h */; }; - 15ACA900C0F578547BBD6C44ACEDA475 /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FDBA0CD5F76A904AE29CD728260F73 /* thread_identity.h */; }; - 15AF15D16BB52C5C768450723FF525C0 /* raw_hash_map.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C14A063B8246E70787AAC32CB64289F6 /* raw_hash_map.h */; }; - 15B3DBB1468FC5600BA61CE824E239FA /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D710466B04F429F4760395A8A428F24 /* trace_config.upb.h */; }; - 15B4CED306B480187DC0150E9FCFC3BD /* tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CF1D81A68D47EDF6B1829E38115047 /* tls_crl_provider.h */; }; - 15B7790C66DFBB344D4E442CA39364CE /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B849A930F12E15A515112A0995A06278 /* service.upb.h */; }; - 15B99374F40E72EBCFD2EAB3251154DC /* StringToHexConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA8C86F0A325CFEC1BA870C8FC8DC539 /* StringToHexConverter.swift */; }; - 15BB2C09F1852F4F26639ED81A3F7271 /* xds_health_status.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A4964E854CF697B328D04F7E8DD7F9 /* xds_health_status.h */; }; - 15C18BCDDD57BDFF0DC2E8320F870E53 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BF653CA99AF258533B810C145002EF /* bdp_estimator.h */; }; - 15C1EF4B2CDDBE6CC63FCC4A9A2D4ADA /* slice_buffer.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = B1134EB811D808F9C741E965BFC1EB86 /* slice_buffer.h */; }; - 15C50F88815405D65FACA7396DB24612 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = CEDFB42BB6C2E136F6BEA743B900CAF5 /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 15CC2227B7396F232E711D5B29768F07 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = C9BAFF4928197B0497CF8A2BE368A5CA /* encode.hpp */; }; - 15CCCCC9C6BB4F8BAB851187014880E5 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 557D475DDAED8EF223AB94D084C7FADE /* http_connection_manager.upbdefs.h */; }; - 15D605EAC041462F27EBD70D75C38432 /* channel_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B3A3E771518CF728A4E77F87206B70CB /* channel_interface.h */; }; - 15D74C5B0A3D96A409952149E792CA8F /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = 913028E3CDA96DFF21D4CEC3AE925A3A /* avl.h */; }; - 15DD543D7FE74FDD2A05602164385745 /* certs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 296ECCF5CF73F4BD97E8D045D16BD9C4 /* certs.upb_minitable.h */; }; - 15EEDB3DAD17A78CAA14F745C1BDF911 /* cpu_aarch64_fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E887EF0262348242703FEA5B0C4F297 /* cpu_aarch64_fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 15F4FE6E0813C54C62307D01F8A450B0 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E65093A641FA101D246F602CBC224D0 /* parsed_metadata.h */; }; - 16019B3346AB8D08DBBEB7201A938E23 /* crc32_x86_arm_combined_simd.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DA57F4F0B36BEB663899DE92D4C0ECF1 /* crc32_x86_arm_combined_simd.h */; }; - 1618553B61B193EE38E7943B7FB4549E /* connectivity_state.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8E9E1D7D090ADC52E2EBE8960D68145B /* connectivity_state.h */; }; - 161BB989D41CBBF5684C4F4263109730 /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = D99EB2123A339F585FF159309B17B28F /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 161D2BD777F0B59DA2E9E6AA00D5B052 /* inline_variable.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1243B069E9AF35E0597E947D50C7BD3B /* inline_variable.h */; }; - 1622C63E3997614A75D07DBC28E9BD32 /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 50299275AFC008EE750C97AD84718888 /* api.h */; }; - 162984546FAD0FF10AF470B56A14B77C /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B6EF7FDFC28912741C281EF068379D /* binder_security_policy.h */; }; - 162A94F14DF6946B59ECF312ECD8A7DC /* output.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = F4673CC8D72E5FC265C1C03037AF4B70 /* output.h */; }; - 163865649A33BA81CE8989423905230A /* status_code_input.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE884A2D11F77E08541760530B948C9 /* status_code_input.upb_minitable.h */; }; - 1639056885FA8791DD719064AF333FA3 /* lhash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 77E5FA9927C45065B3D28A80B7A822DA /* lhash.h */; }; - 163EE9F4E2810AE18DC34479B312E7F1 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECB34415817EE17001F0F1AAF7556FD1 /* retry_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16407055E8101B4270344CAB16577E2D /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4EF0AA0978396FD6B77547F4C7F5A67 /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 164563B179D302D613CDE982EF821A07 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68D4401C6D7972CEAD895323626D3AC6 /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1648352E1F69E485C1EEC3CA9CB701E0 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22D52111DA1EA4E3D38377E42D5E505F /* alts_tsi_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16484DCAFF2F2BBEF4E223CD558C8ECA /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = C482D451BCF333482DB5BFCEA19970FD /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 164998C47DFD4A1FEFA7E101AC5B4C0C /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 06739CBB50807283709553E114355905 /* GDTCORConsoleLogger.m */; }; - 164B56E75EB6A1E06F7F261852326BA9 /* cpu_aarch64_openbsd.c in Sources */ = {isa = PBXBuildFile; fileRef = 47B804916692B6CFE6B6B4F1506A16C9 /* cpu_aarch64_openbsd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 164F7FF92FF99FC2ECF60FE7D1856C8B /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 66629A6211AF7A808B848869CA44539B /* overload.h */; }; - 165F46E5CFD8C972B4243FBA455AB1D1 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8E1F8A2C966F41AE032156EEB5DB54 /* config_source.upbdefs.h */; }; - 166612075D2BF2BCD41684A4DF284FD6 /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F55617C3B7C11660885C7E345921FB64 /* http_service.upbdefs.h */; }; - 16676785F2483FE1279569BF01449BA9 /* registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2282AF84D17C15826DDAA3D0CEBB7FBC /* registry.h */; }; - 16693F1A657648624109960CC8BADA9A /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 451D2078F9E634EAD58436F1A55BDAC9 /* resource.upb.h */; }; - 1670FA6AA18252C716B6714F31D40155 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F6994781FC76951917B92F15849405 /* resolve_address_impl.h */; }; - 167B65D9F51C42C053B46E63DE6A956E /* xds_override_host.h in Headers */ = {isa = PBXBuildFile; fileRef = A166E29FC21D0E06B30532680B0906B1 /* xds_override_host.h */; }; - 1683E7C69FF8EF0040D87551C211CAAF /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F71D0F63AFB60BABE18B3A18391ACAAD /* datadog.upb.h */; }; - 168D3125C26AFE4C12D8C1565F24603F /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 61D4739B8FB20C12274D8FF0F875E066 /* versioning.upb.h */; }; - 1693F55664225A8BE4CE1652750B0E1F /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 50299275AFC008EE750C97AD84718888 /* api.h */; }; - 16973D6479DCA2FEEC91223EC1B426F0 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1FDF14D6B98E2FE2F144CB6F95541C56 /* rls_config.upb_minitable.h */; }; - 16979390FC512628007F43F6CF9D64AB /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E1A4A500B58E579720FD544CA53887 /* http.upb_minitable.h */; }; - 169FAAF6FA933F313C57C3713B05379F /* opentelemetry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA4019EA241E02193679E07966AE8F9 /* opentelemetry.upb_minitable.h */; }; - 16A264027616F8D13EBDCE2C9F04FEB3 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EB08833A61D7CABB80975291060B03B /* grpclb_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16A6053F876CCDAAAF2070947CF9E1BF /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 002111222DD06B0B7E47C7219378342D /* debug_location.h */; }; - 16AAE54499A9462646F42A30D512B196 /* event_log.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB03B1E704802522988C23B60A84BE2 /* event_log.h */; }; - 16CBF708814A5ED1BE95692A9DCC2C7F /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 704AC69F34A44390E2DAEB78D4040430 /* client_channel_channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16D2E19D5B03BE359CCD7BF0AA42BFAC /* thd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FBF930A9F0EEE93D0033649121368A5 /* thd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16D3142CADD4920D12607F4D4F4869B7 /* curve25519_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 38209C1FC2EF87EA43B2CE7BD2C5B387 /* curve25519_32.h */; }; - 16D7BB2C85515030F3A73EC9330B6318 /* clock.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = D43D4E62B5168E61DFC104467622684C /* clock.h */; }; - 16D89A1A0A63E64798B48858130A297E /* thread_count.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C85BEC84820E0EF2F58B68255A7CB1A /* thread_count.h */; }; - 16DF9F206C48DDB516E4EAE08430B16D /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8672752CFB1EA47BF1ECB4113BA878D2 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 16E4B4B769D99FC130891380E730A065 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B3FA302F3DD424D298733BD56E9A43E /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16EB7344F9F95BBA65B8C99E37689E67 /* status_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8F2B7D72246D17F4BEADA9DBB937CB0A /* status_internal.h */; }; - 170D54C627FBF9E94EC71C0B88FE0039 /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 075FF71C687B5A4A53929A5031DAA050 /* enum_def.h */; }; - 1716CE0A3ABE65C991036CFE7CEFD7E6 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D9561534433CC55BD4754DA7E749D257 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 171A7BD2A78AAADFCD5F299B5E015823 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5E387CDCDD8E5A46ADF1EA0BFB2A6B0 /* config_dump.upb.h */; }; - 171D711A793D92722E225B145A137519 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 44DB17DFFA784892A79E3BBF03FDFD14 /* closure.h */; }; - 171DA622D1A1DB2BD50FFDEA659AFFDC /* base92.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EC6DD53D771CF3D99C9ED1E4E0BEA1 /* base92.h */; }; - 171F258721B95C24B48F5FFB45A05D06 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B25A34F5A362169DF84C7FAB3FE0EC03 /* deadline_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 172043F68BFFB63E5059A8815C9B138A /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C9C9F5BE805D2A5A498D7B39270CA8F /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1728954675B44E3A53EF59C040DF82A2 /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A96EB4D118E98F4B3A4284962FEBEB1F /* sysinfo.h */; }; - 173A00E1FD6375293E2D8CCA892FBE54 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D13457CA04E90674E1B6F4785D601DA /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 173AAA1EEF8FC9EB9C58431F907CB404 /* discrete_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 54F6D782C4787A708D1AA3C1246C4BDB /* discrete_distribution.h */; }; - 173F57A392AAB8C0F16C1A7DE1BE63BC /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1E017ED370EA39926247976D0CCA1C0 /* tls_spiffe_validator_config.upb.h */; }; - 17499BF9E690F61F9CF12F61FEFC15D6 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCBAF2B953BB65283B1E5535FE97094 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1756826E58C90EBF76AF515E0D85B36B /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4560CA607C7FA62D10093B638BF2B591 /* transaction.h */; }; - 175F541EBC00BDCC18D0879F33BE1758 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF9BFEBA9E5D2514AA367CFFB5827F9 /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17687AD18E2C140CF288234B5208345B /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5949EC60744841DB3EA879DC5BC66F /* FIRStartMFASignInResponse.m */; }; - 17690E4EF99CC581EAE0FA70EBA92BF9 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D8E488AD8ECBB44EBAF2BDEBE69C96 /* dynamic_annotations.h */; }; - 177BC16D8DB00854181028C8260D647B /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 225FD5981B0B130B8F4DCF775AA76327 /* json_token.h */; }; - 178380733E0CA43B8C4B5B448D041DBA /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4EB81173860B252F34140C897AE6C73 /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1787771820C3345E8DAFDAC6A7784353 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4EA405A5CC4A3488DCD0AE1CEFC9E49 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1794DE855E55D24F068D0A8E94A797C6 /* optional.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6521A1C2A21BBC9D6870DE4241035CE3 /* optional.h */; }; - 17988A4D473342DB7415D42778C617A7 /* NanoPB+CustomStringConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1592AADACC4BAC73E2F3912015195960 /* NanoPB+CustomStringConvertible.swift */; }; - 17A47D1DF00D3C58BDDB1809C9D66643 /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 946313CA695FBAB3D89599CBA1758326 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17A6A72315573DD7718D40D6FA6C2313 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 8FE4D521A4BCB7206381FCFEF9E33E39 /* subchannel_interface.h */; }; - 17A76AAEB36FBB11AFD7417D4A4C517E /* WriteBatch+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D479250A1B38BDAA17C260830910FDF /* WriteBatch+WriteEncodable.swift */; }; - 17AAA6933021DFA969710E300A3CFCCF /* rc4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 65259DFFC4BD1FED84641EBE8B273A7B /* rc4.h */; }; - 17AD0D2CC9C47634706506930C57A7C3 /* zipkin.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E3A4FCF7A011FCEEEE73D2278052322 /* zipkin.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 17B7DDC43EA896DA9D19739D294D1E9B /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BCC5DA45182727B05845450D619BE13 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 17BF4097DAB95989A4DF15418276B81A /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C732411E52EF3E4DC8D15025D94AB4F1 /* xds_cluster.h */; }; - 17C5408FB9D6E5E0093088DA793EE982 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 183DC523ADF123FDC1D135AEE622BE7C /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17D4A0A72FDDDC884A98B582C27A462B /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2F2D49D79E1DE69800C84447BE69E8 /* internal.h */; }; - 17DD269D05F91254D5189EDEF0B4CFAD /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 713A4F254B672B87E5FC0C08527B84AB /* lrs.upb.h */; }; - 17EBCC269192315AD096AC505741E24A /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = C526226195096608CE917308E505EC19 /* FIRAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17EF4634FA32D151107CCE887A800957 /* http.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F766E58FDCC504A2097302AA586150C /* http.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 17FE23F143A7CC60F6B1ACCD00F4EE50 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB09D214FAD65ACC303422FD1D4FF3A6 /* route_components.upb.h */; }; - 17FEF37B086BF65B8E549B71E7FBD1EB /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6FF85DFCB01E03246F176424A2CDB9A1 /* alloc.h */; }; - 18099DF29B2D7FF1C62B140A9FA68494 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F0D439E14E76F41FACB3B0E8B5962178 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 180BE95F60406A62CD794746BFE108B8 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073AB6A5CBB88F9CEC48170726D08C45 /* KFAnimatedImage.swift */; }; - 1813190603CD65C96F12F920261F8566 /* p256_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 85BC386546AF7DD29EA582A3FC13832F /* p256_32.h */; }; - 181CE8EE955E5122E87307A6CBA9F1FA /* log_severity.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = B4D800219185881FA740C21EB1E91B39 /* log_severity.h */; }; - 181F0445D019D74DA5AD4EA35DB342DA /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E9CA2296761C88D10EE8125E13CDB116 /* tcp_posix.h */; }; - 1823BED530DD406CFFB9E33063639611 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89384998CC669C7FFF93DAC3C853E811 /* protocol.upb.h */; }; - 18292AF5EEDAEF886C07CFAB82626650 /* FIRLocalCacheSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC4009FB958B4AE743A08D6E6206E3A /* FIRLocalCacheSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 18325B19C70853DB3CC83407589717D6 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF5E735402A7DF50344C28B7E5A8D97 /* trace.h */; }; - 183616F4286253CB1EF91AD57322FA58 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 91B01E8740EEBDA5EB570C4B42AB7532 /* file.h */; }; - 1838D17B13F13E7C5CBE97A9E2DA102A /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6399349F4D18281E2E0185F9B9D7F4F /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 183D8B3E057B885EA7DF9A8CDCCE9029 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9075251794A5555B48F463B552F86EB5 /* ConstraintMakerRelatable.swift */; }; - 184D7332571451C2ABD45D993AD6B48F /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D3EE7ABE8F58C25033E4CCBBDDE0795F /* endpoint_components.upb.h */; }; - 18505975C7B4B8EB1DC2E62853C4CD54 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC25FDC9C397785DE6842F9FFFAF2BE /* aws_request_signer.h */; }; - 18546C226E9757ADE08B1FDFD810EA00 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D6C17A8997B9B181AF2AAF934EF99858 /* port.h */; }; - 185A27F46AFE5A28A349F43B79496629 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9005173A8ABDCCC111100C21A05D0657 /* range.upb_minitable.h */; }; - 185BD88EB6F609CF33C4BD94489CD6D5 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC3B68CAF25F52193DD03FBAF736AAB9 /* proxy_protocol.upb.h */; }; - 18609CA852874FE28E6C1B10FC88A4E3 /* call_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1BF5ECECD45225890E75A208A3E976 /* call_trace.h */; }; - 187C3C5E034819C507B8C2CC819746CB /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = D433A453F07E5BD47D42C3FC8D862318 /* function_ref.h */; }; - 187C90EDF1EF5D5BAEF02AB6682CE003 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AC9CF5ADEF3646F11121258357436A4 /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1888CBF619C461815E69C709680193D5 /* extension_range.c in Sources */ = {isa = PBXBuildFile; fileRef = 33F3A75CC6FD1EE992ABBCFCDD50F916 /* extension_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1891C2CC809D61818C92F398D186A271 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FE84750E89CB9DCFC61A67D526AC697B /* PrivacyInfo.xcprivacy */; }; - 189B2606BCE65AABA759250F655C36A9 /* TZImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA00D7F2388C39EB960CF37BC0A7AB24 /* TZImagePickerController-dummy.m */; }; - 18A1F47C1FFF62D6D96501DC27F214CB /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C757EBF98072C2040A0E7C45B277CE /* crc32c.h */; }; - 18A5496997981B40EC5B01EDCC66449C /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D272A39D9AAC4EC10B8D127CC46B028 /* socket_utils_common_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 18A5FA4E58AEF3AD2C074806EFB7F87D /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CEB8D8E960CFABD80C78C61822B1F2 /* bytestring.h */; }; - 18BCBE1F88BC5205095811385FF175FE /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76D93F0479D367602D7FA1737DEEDB39 /* fault.upb_minitable.h */; }; - 18C049EF52D95F103E7D656450C74115 /* for_each.h in Headers */ = {isa = PBXBuildFile; fileRef = B00CDE5FD43FB743D491D3B2944AF9B6 /* for_each.h */; }; - 18C0D49B630D13FB72AD6E1FF7F19BFF /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFA3FE648DA7BB1F321EFB5CCC94553 /* wakeup_fd_pipe.h */; }; - 18D857E355381CEF0BDA026C6F843A1A /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 46DACB750B5D843F239A2DBEAF07BB98 /* activity.h */; }; - 18DC6E1A84463DE1231322C9EAD59482 /* legacy_channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D38E4FB67021D76521E3CC3C98061D /* legacy_channel_idle_filter.h */; }; - 18E0B4937035F17206D623857AFDA61C /* merkle.h in Headers */ = {isa = PBXBuildFile; fileRef = B53B60727CA739D5076A8C0D59EA142A /* merkle.h */; }; - 18EDB652F03A41D5E2C32E08677459CF /* log.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 39B804F2F64C3FBF1E577B2CF6E851AD /* log.h */; }; - 18F661F820C37545D2A0BC577CAB5491 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89384998CC669C7FFF93DAC3C853E811 /* protocol.upb.h */; }; - 18F79D649D39A489F731270C2B0EE74D /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 21D84C26C58981D3681C74CC2201F346 /* http_uri.upb_minitable.h */; }; - 18F9FE818958A4625CEAACF7463C3F14 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A1ACE6E799F3B9BD67FAC7E0274F82 /* frame_data.h */; }; - 18FE6FA37B4192218F0F18FEF0F5BBCC /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A85ADAE6CCEF0BD8CB443ACA3B15DD69 /* stats.upb_minitable.h */; }; - 1905E96E13BF64579CEE7BC3697AFF00 /* cpu_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96F0BE6F3C268C46084B47BCD57D6DEA /* cpu_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 190A0AE928D1038BA6F1A4B47CD41401 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 406348FB675B6A7087B3E0556D1751F7 /* client_authority_filter.h */; }; - 190A459025B672636BBEC43AA810512D /* address_filtering.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 510A582E5F246F26A1E4389151F2EFCD /* address_filtering.h */; }; - 190C14A0B049A3DDAF6BFC48F73A90B4 /* crc_memcpy_x86_arm_combined.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CEF51CAFE1A4CA2008B17D6BA5DDC1A /* crc_memcpy_x86_arm_combined.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 19114FD19BC5FD1ADA8C8ABBA08D5F9A /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A2DBF7809E36DEED8E8C5737361A4958 /* cpp_impl_of.h */; }; - 191751E30758B2DBC10D96A44C82AE62 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = BFEAF585235931BD346A3FCE5EF84435 /* enum.h */; }; - 1920A96002B868CE8C52DCAE7AAFF7B4 /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BF27C76EABE04A85BE8054973EB9457 /* typed_struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 192543FA31D16966CC8477F142B76874 /* windows_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0899E2B58A674DAB56775D7694EF648C /* windows_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 192CC66A4667B1D0BAD58D8BB02F989D /* Promise+Testing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E4BAAEBDBC94E59BEC8DD792BDA51A1 /* Promise+Testing.swift */; }; - 1931945B994A1DFF532A079BE8985A43 /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37C75244C820AC8C899749EC66783964 /* migrate.upb.h */; }; - 193277926C753D9F394CA597EAFB2A2B /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 8681CBA9E444AA66B2CD00CA2F789740 /* strdup2.h */; }; - 193362D3527362C0203BD5B1C6245176 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8C69E2BF54206031457C69AC5DF92A /* iterator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 193D04252D9D516F248C78BEEEA4D36B /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9A08219D354E1BB155157391DAF5702E /* xds_http_filters.h */; }; - 194C83DA8DFC4AAC0210F43806DAD9D6 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 11000792191C163AACE3D6FEF1D5409E /* async_stream.h */; }; - 195197CF8A1FA4D57D189561E828A904 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6C3A93D680AB8D69959687EE085AFB /* status.h */; }; - 195681D6C87A645EB32F7BDA7083BE69 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B318381DC199B7BB2F63DFB7FA74D04C /* http_service.upb_minitable.h */; }; - 1957E97A63B323A93E0487F3B07D2439 /* windows_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC0B5391006E40B9E10475C2B1B3EDC9 /* windows_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 195F08410620E1860C75045478D7C302 /* for_each.h in Headers */ = {isa = PBXBuildFile; fileRef = 0577A00D3B0F2F6F1C5BBD6B2769E181 /* for_each.h */; }; - 196134EA6E3DF57175A8158FAD0BDF63 /* config_vars.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4BE5C00ED57E745A174025D2E032406 /* config_vars.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 19644F39715027A0E657BDA09FC1B48F /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = A56C4143E0243CDCCB29AE531FF9B387 /* context.h */; }; - 19660DDD00CFEF6B28D18A949B2F6D69 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C7282473988DCD943BEB870737824236 /* iocp_windows.h */; }; - 197339FB03DDF0FA5CF673F2248B00D9 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F53DABA219B04C15BA666DC81704FC1E /* mpscq.h */; }; - 1973B5A008D41EF483B1775A7B1B1C7B /* event_service_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 63913EDA1D3499038EDF265D957F4C5A /* event_service_config.upb_minitable.h */; }; - 197457852FC83E905248660B0F930452 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A24711792213B5E3689B70E24FE15D9 /* AuthenticationInterceptor.swift */; }; - 19840828873B6D64767DE6F6F4B414BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 198B37123B4BF57AF91E079FF04CF8DA /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 570F331B44FA6E758365496D81FA2181 /* spinlock_wait.h */; }; - 198B41AE03542ECCDCBCD2C6D60FF413 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC281F5D14A3758FB257539BEC91983E /* accesslog.upb_minitable.h */; }; - 198CFCEDAF023D57E03EAA469A029834 /* basic_work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D04060858C4489E664BCB8FC36FF44 /* basic_work_queue.h */; }; - 198DF91FA884377CE7A8546CE8E8098D /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB6F14CE9DF7B51111A2E82040C151F /* service_config_call_data.h */; }; - 199246351B496E1FC515AF2D2A8A9865 /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = B926FBF7A8FC1FFA18726BFD3E661991 /* xds_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 199A572C5AAC9B04652B19B19CC36918 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 63E7389081392986B9A983813C96642D /* channel_args_preconditioning.h */; }; - 199EA8DE792DF89AB9EEBAA72D92C659 /* resource_locator.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A537D4AC3D57E5B94F256658DA8850 /* resource_locator.upb_minitable.h */; }; - 199F1B549A74F1CDCBDAC0CC7F1FB26A /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 74176EFC8797E5255BD3939DA4BFD2E0 /* curve25519_64.h */; }; - 19A3DC607C4972D960555B79EFA3A768 /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAAB837A72F5FAA99CE0AF59681A429D /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 19A8D2B65FD92B8602C8091B33CDED8E /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F56220AE62BFA95BCAB58A3B59DF77A /* backend_metric.h */; }; - 19C028651C9D5BEA3B20FB1C5FF5DFFF /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E60F2027EDA9FF1DBFB9AF5A634EDB /* subchannel_pool_interface.h */; }; - 19C267F22EC1480079654D9036281D81 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7954AD846BC13CCE0078B774592D0812 /* http_uri.upb.h */; }; - 19C4E712F5E55B442D2013C2A34EC0BA /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = B231B1BDA8614467FF05E7411E302218 /* sub.h */; }; - 19E0294826EBC5B5687EE20ECF89DDDD /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A1ADBE10DADAFD5B375F80BCF5E7FC /* tsi_error.h */; }; - 19E08C9C38D5BAB836292763C6A05302 /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 53A5CB24F2F06925103751C58D89CA08 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 19E33BD9A5FA52D5D5C14F3AF32A8BA0 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */ = {isa = PBXBuildFile; fileRef = 96D06C32649D374D4A5DD56AE535AA7A /* internal.h */; }; - 19E4942A7590BE4A3C607A1FF5F77620 /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 070D8B1747941A0FFAF2B5A8716370A5 /* engine.h */; }; - 19F594FFBADE97D9F585F37C67BF6CDB /* variant.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 4BA5A8003A4E0C064BD5C6B922CFC49C /* variant.h */; }; - 1A0589129701E067B1B7B6AE0EACBEBB /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = F41697C1435528F925010EC47DDBD28A /* sha.h */; }; - 1A07A8E84C2CA516063B0AD57F3AD2AF /* posix_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 52A8B91E9A9704653E4581A22F5EEE85 /* posix_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1A087FBFA883DF4966BB50337E7A2F91 /* client_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FCB07890D9F10903856F7563BFFAA3E9 /* client_callback.h */; }; - 1A14B541FD091C63812F274E22B90819 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DC969C39B0193418BCC5F111650A48D0 /* call_combiner.h */; }; - 1A1831818C297CF2DCF9A48DB3716262 /* stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A85ADAE6CCEF0BD8CB443ACA3B15DD69 /* stats.upb_minitable.h */; }; - 1A1C59ED1D7E4B7A7A08CCF2CA190D3A /* GDTCORMetricsControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4E5C01E9A6284F14B5B48F7C0A7BD8 /* GDTCORMetricsControllerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A2122B027E9FBC180E720E75986C997 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB53127D8951AB1961F02035175F6BB1 /* range.upb.h */; }; - 1A2E07D72429DCA9042950EAD619E412 /* router.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DC71238D75501C1909F6DBC339BDE977 /* router.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A364F1B73ACF1456086AC6B0D20BD07 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = C0D9BE8D436FCEC974FDEA660A5506D3 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1A3AD848178BFE83B7AF856EF3623399 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B76C841B027D0497AA39B01AAC696295 /* hpack_parser.h */; }; - 1A3F815CBA4268B1FF024131B11EED49 /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B60005A52F1B8446899A22647C838AE /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A4AF85DF2CE8441BDD035298896BBBC /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 75536C31D327C12A3ACC9E73B206E200 /* huffsyms.h */; }; - 1A4CD57696EC33BD4F27AB3C01DA3C2E /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AF70D0C44F3344550673BAE9CDCA15F /* file_watcher_certificate_provider_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A4D0F8607ADA1924C8F8D773BE2BCC7 /* waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 525B843E2307084D8AD49AB7D9829353 /* waiter.h */; }; - 1A4F3822728D5B51DA8D705D09BCFE2C /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBDA447F723DCDF10E392F71AAA50339 /* tls.upb_minitable.h */; }; - 1A4F65BB2D2F9332DD9A19A96AE9630D /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AF7CF301381F42935D77DF371945126 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1A4FCA48C8F111FDB3DB3CA33F1D965F /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 2481A3CB14D0436BBED2326A9AE07492 /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1A4FE3FAB7CBFF4DBD4246F8DB93B4BE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6EFA5D21D96FF6FF14F73DC3FF3F8159 /* PrivacyInfo.xcprivacy */; }; - 1A502CB64E022ACC32D8048E9FCDA2A6 /* sessions.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C92618D674FE6EDEFB36E41C8C84393 /* sessions.nanopb.c */; }; - 1A60BA3602A815F1F09CBFEDE2D8196C /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = C27968FB484E22487BB5EB684E5EAA26 /* auth_metadata_processor.h */; }; - 1A61FC778BEEC2AAE4259D551102FB72 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 819C99AAFCA8EA438E85DC0517D8F1FB /* unix_sockets_posix.h */; }; - 1A6AF6352E3577EBDCE3B0E128E2C294 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE15FCDF6A6A6FDA5241F5A7DD153C7 /* resolver_factory.h */; }; - 1A6C69920F33D87DF7A49EB26514A113 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2071A2E83CAE3AD6BC5124A665CDEB85 /* deprecation.upb.h */; }; - 1A70C13077042A1FC74BB2F9A7453F5D /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C7540704BA93D813D8B965BDC100796 /* string.upb.h */; }; - 1A71B2F555F9C8DE14A3144E5F0A262A /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E8F8A399560DDA4C413745C9AA55C7DE /* versioning.upb_minitable.h */; }; - 1A7C0F728E030A75BB7CEAA2276AEB6E /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = B158402490EB5CEB3B93AFFCDBA5B45B /* strerror.h */; }; - 1A8303D091FF29E641DEEAB3F459B671 /* event_poller_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3EE244A861D4E743F3FEB9E87FC639 /* event_poller_posix_default.h */; }; - 1A84223606FEA51AD67D74F77E0E4A08 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2D31B3A4F6D4BCE4A03220CE60F2061 /* ssl_session_cache.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A88136CC819ED0B80E2DA0FFAF8C7AF /* create_thread_identity.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8A35364C377E8FDFC06BCD398D799554 /* create_thread_identity.h */; }; - 1A892C4ACE1F7191C1C570A47E0AEFC5 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = A12E517EC84F573B01F2EA4BB568B565 /* alts_frame_protector.h */; }; - 1A8A23194F2649007D8083B59341DB45 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DA1AE196DDF6E7FB7B22C555CFDD86F /* TZVideoCropController.m */; }; - 1A9552E7C3DBCCBC4261709C14B8FBA2 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D14F7D0A29BB1778024B6D03EAFEEA /* manual_constructor.h */; }; - 1A983E827E6C1138C38400FF808659FC /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = E98A046C925B2B79DB747C573EB4CA94 /* FIRVerifyPasswordRequest.m */; }; - 1AA8897DD6B4733626CD654F6DF34C89 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 92FFB678471DA1578A749126D64B316E /* metadata_query.h */; }; - 1AACAC903501554BC7922740F23F4465 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = F6ABF86F65FD54C34BDF5CCC3B3FB6A3 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 1AB18BCD08EF839072B29CB78FD4AE0A /* udp_socket_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0371E084AFF469696B44928C6AF9F9F1 /* udp_socket_config.upb_minitable.h */; }; - 1ABCD22DA9DFCDAAE1C537B769B6232F /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADE2BC0622143B625017F10281E650D /* authorization_engine.h */; }; - 1ABF53F8C37F9409025C358C8BDA4DD5 /* unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = D303310AED998DD4A92667AA0F563C50 /* unicode.h */; }; - 1AD21E3A07EB8219BD38FF188F5B86E7 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BC60FFD97DEEFB6F65CED23BED52E344 /* native_posix_dns_resolver.h */; }; - 1AD255D6960ABEA3251C1360ECE22052 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 367A6741B8C65DACCA715860B6A6194F /* TZAssetModel.m */; }; - 1ADFF2F4892E0E6125ED01F3EF2DC5D2 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9957E7F6B48425ECF537BFC69F290A /* matcher.upb_minitable.h */; }; - 1AE3E46B590ACD292F4374CC313FF7F2 /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A34BCA09CC61E363BEC9AFFC9D03FCE0 /* tap.upb.h */; }; - 1AF0DA1A1DEEE7C067663D23E15EF357 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4AFDCEBA0F18491C1CF0338549B105 /* node.upb.h */; }; - 1AF72E7C7C13767E4ED7E1313A189BBF /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D9CDC3F5CCC1B4E83CAD482BA8D41C6F /* subchannel_pool_interface.h */; }; - 1AFD57838680DF58184FF94D14C7F3FF /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC99CC3586EA439CF0FD4B8709710338 /* RequestInterceptor.swift */; }; - 1B05235C5E75342DDBEC706ED08DB51B /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D89369F0B5FEE7E7A5255BD5E138653 /* transport.h */; }; - 1B0792EB16FB13185BC85E8F68DB3F12 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F50C047392518B8B092B160E596DE23 /* FIROptions.m */; }; - 1B167C5EF10B3886CCD784412A8B4BEC /* shim.cc in Sources */ = {isa = PBXBuildFile; fileRef = 248A1223D340B73A00D4C8B02ACB1589 /* shim.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1B1CE12EBDCB99AD4E4602744DEEF509 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 85C1065F1E836E6B90EDD1B515F0A0DA /* load_system_roots.h */; }; - 1B2543D41C48846A8376B4F4E99704CD /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6A49AE2F5773F38906A31DA8F60BDC /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B25C1DD31D5D44E3C7C57B4A85B0CA7 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D0B5115BEE490A159D58166B7036781 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B2A5A519C75944FDF511C1A6675B008 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 54BB13DBE33C8F03A2D6A77D705E3F8D /* versioning.upbdefs.h */; }; - 1B2EB08AB641D85E92B2D36F2D16A53A /* windows_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCA634ED13903EBDB7699B5362F50A3 /* windows_listener.h */; }; - 1B307BBE70C226129CA662594F94B9F6 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 057B1493136BF2D604E1110272462085 /* common.upb_minitable.h */; }; - 1B347361B333B9426F7A57DC5ECD9151 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF37E10482D8CB0DD923B341150EAB7 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B3649896632F5E65C98B27967AAA8BE /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = DA409C85BE624D2FE8FC85180348606B /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B3B59E46AC49ECEE9DF7EFAE04AEE36 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = 872EACA1595161C2B7F7A1E4C212D68E /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B3C02E21619B899B0315DC92C43E6F3 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 59567B37CDD79AFCD4D50D261B592FC1 /* alpn.h */; }; - 1B4780DA3CE74571392387848CBE3B3F /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 226917686FE46B844530C10023AEFF0A /* http.upb.h */; }; - 1B4B79D24ED915040FB8DB0FE0761EDD /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0ECE025FFD0D39C3525DA468A1DA687 /* wrr_locality.upb.h */; }; - 1B53404008CFC256F613D2977AC510E3 /* filter_state.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A70DB36A62A1E82E966D88A365181EA0 /* filter_state.upb_minitable.h */; }; - 1B5394298B6D53D0884CEAB95E75E503 /* string_view.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 6DCFC5F7A193AD34D76B2D6A46683251 /* string_view.h */; }; - 1B5B10740A2175D5C46F016DE884298E /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B2390656BCBCADF144D787121DF157 /* load_balancer.upb.h */; }; - 1B6597D16EDA57061DD94C5949ADBE5B /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ECB73502594CBE06B38D68AFA4E3D77 /* FIRAuthAppCredentialManager.m */; }; - 1B67F1C195A622AC45A41F697A356B34 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B599DCD01FDAD8E70471EE517823F4F6 /* outlier_detection.upbdefs.h */; }; - 1B807E3787F8163E38E7DC7217D05FC3 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 12D31495032003E349AA7A8542626E7D /* xds_cluster_specifier_plugin.h */; }; - 1B824E1BD3AB070C215007DFA3681D59 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 88B0FC4262F21FE5B285CC64E5ED85CE /* wait_for_cq_end_op.h */; }; - 1B94922DB61CA7BEFF91A34FFF38F7BD /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CEEB958A67B6C896ADC0152A69919BA /* front_binder.h */; }; - 1BA2AA4BDBFFDEF0A38811330D2155D7 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D50FAF4EBF3B474CAEBD93D15AC9C06E /* timer_heap.h */; }; - 1BA372F4EE0FEB3462D0D72E830002CA /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D37BD89DADBC7004676D391DE9926D /* compare.h */; }; - 1BA5FEE3467473738F08F0ADBCA270D1 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E86DAD4A9FD845E7CA8444A7774785FD /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB355702862947DBB86A62B2BC3D285 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB16C4AD6DD2392A4B4C9D648AA99CD1 /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1BB7C5EA66E6AAA26605E25EBAF5D6AD /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 41C9EAE5A8B15C985867C5CA8DE120EC /* timestamp.upb_minitable.h */; }; - 1BBA59305AFB8933109E48B9F573F12C /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB565228E55524530A3E2B5C10BBC03 /* FIRAuthSerialTaskQueue.m */; }; - 1BBB7EE473AB4829EB4CE226392F3EE4 /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 30EC2D99909FF69C253823578062D319 /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1BC0DC2C023E59D8217E3163382433B0 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C93B8889B1EBD80E24D17AC9EB5AA1B /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1BC5E87CEBCA3EEE92F25A4E7AAA87F9 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28511D4E249249B60B14CF898F9A05CA /* hash_policy.upb.h */; }; - 1BD2F303060A6547826B1B0205C3232D /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 159320A4725990DE64E734FB5005E364 /* compression_filter.h */; }; - 1BD3E6510B05F47D817AC91EB5862AB7 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2798F8C0005C7684EFA41A9A04C43C8A /* service.upbdefs.h */; }; - 1BE0BC25789AF3EDACC8090021AF6D46 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 7A5A298A993C621814772DE0E7D32E17 /* struct.upb.h */; }; - 1BED31EA796348D9F047D1E353D23C5E /* def_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = A56AAEA6F8331DB7199BE5C8444E1E3F /* def_builder.h */; }; - 1C0240026E090487066AC7B5393D5C50 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D792EE387EF0A20BA20A6B928E8336E7 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1C06C4CBABB0C0D1C2AEA501F44556C4 /* endpoint.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D4836B90A850D94BE1AA35C424300D /* endpoint.upb_minitable.h */; }; - 1C095D0C97F7EBE84C2ADB11AEBEC306 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B230A0CF1D5E7A3C172AF518AFE22659 /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C0981EE85C8C8106C5FE1C9A6D58287 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EF7B20C636CABE1A42E3A4372FEA19 /* subchannel.h */; }; - 1C11F4B9672BB5710E533936FB0D1E50 /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C5F0316E1207F13C99E59889B653CF1 /* number.upb_minitable.h */; }; - 1C15CBC38A18C98003A22A10520C29C8 /* FieldValue+Encodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212D6E06A3EDC133FA15680D33AAB2B8 /* FieldValue+Encodable.swift */; }; - 1C262B06242851146240E957E32B0870 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DC9A57B15E3F9DB493C16351E3473B3 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 1C26B159D144BBF6302144330EE82873 /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D21EC8AF85719B4418B4A8D39A38A58 /* proto_buffer_writer.h */; }; - 1C2EFF56A61D368C4FA4627E5D65EFE8 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C28B18E886E55CFA250ACCFC3FABFFF /* cel.upbdefs.h */; }; - 1C2FDC2AD5748B672D9F888FC2898C71 /* socket_option.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FDB564A31EB7C47B792960600726595 /* socket_option.upb_minitable.h */; }; - 1C33B10590124504FE3153C7E8371C86 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 64FB65EB344C6A961F74159F26002913 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1C35B5986EFBAD80ED96433806836003 /* down_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 761CF092E4DD7B8C2E50A681DA4C27C3 /* down_cast.h */; }; - 1C3C96AB6ABD218836F0E07695309C86 /* service_config.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 4AF4FEEC4DC2584C3B804DCFEA40153B /* service_config.h */; }; - 1C4336B495667E3330F7E2A8180CDB4F /* fors.c in Sources */ = {isa = PBXBuildFile; fileRef = 0576077D5CF567B8A76E848449A409B9 /* fors.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1C4654FD84463C5EF497AF20FFE216A3 /* randen_detect.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E7DEACD7DC5DFC5774AC43E6273A3A6B /* randen_detect.h */; }; - 1C4972A468577D6E91E3FD1B5634F80E /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 204863ACC4A557F50611957FA468CAAE /* field_def.h */; }; - 1C4D6BA0DEB8B7BF41D42934E107D0E1 /* spx_util.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 319C9A4FA4B28FE78C7617331F891726 /* spx_util.h */; }; - 1C58BAD07E9589D8A98E6DD929BBDCDE /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD96C35BE308639A1D88F4EFBB63ED4 /* deflate.h */; }; - 1C5A0AD27C0B81670806F5703E64107A /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C811D756A27952756B93119E0BB1B395 /* cert.upbdefs.h */; }; - 1C6127F73B98E6871CE469FC553849D3 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 49944F8B9DA9B718503EFB179F01819F /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C61B990F3AFC8F4EF5CB4757B67A67E /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D2C5C0C00806766B0991291F67CF1F /* iam_credentials.h */; }; - 1C7220EE0C17A3EE35600B8C32D85625 /* cpu.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 340C6C5BDCAABCC2624F2BB93AE5DB50 /* cpu.h */; }; - 1C74D8C7932B34B47C3F69EAED39AC36 /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B66DADE975874A3A38B8A996184055E /* backoff.upb_minitable.h */; }; - 1C75CA8381EE2CE994295D4A3DF27BE9 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 528DCF32D6BFA6C44CF67FCD70C31AA8 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C77E5123B45A6623A5E2079872F1409 /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80B2310EE41F97B123788FD609A47401 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1C7FE47BE3DFB824E63D3951D60963A7 /* FIRAggregateField.h in Headers */ = {isa = PBXBuildFile; fileRef = 32ECCCA1F57EECEBD4FA168DBB5FAAD3 /* FIRAggregateField.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C8607FBC0CC64FCBA59ED17E7E7E981 /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A31836D90E2EE5D9E47CE4AC2D252E2 /* accessors.h */; }; - 1C890DB9794730E51FC84C7D4E7CE668 /* tap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE9E04B87CC48A4A0ED6C78CCD9739A /* tap.upb_minitable.h */; }; - 1C8CA2967B649DFA63FD044BE7A65210 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 7318BBBC5B818BE2F5B9B8833F1CBE6A /* timestamp.upb_minitable.h */; }; - 1C906576DFB908E76A4AB1F858ADF24A /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B3DDCE91DCF9B4286A8D607FDC951D /* create_auth_context.h */; }; - 1CAC484100F577FF3E1011EE747109C7 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = C61ABA763E3281249AF07800391747AC /* security_connector.h */; }; - 1CAC486B5F1FD70A0FE9D4E7B636A5E7 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = A9A446BEEB863C559EA33DE553CDB39E /* windows_listener.h */; }; - 1CB06F1C0C95677AB5BA81251A74F084 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7167BFC60892B8B55471E5910FB6EBE0 /* xds_http_fault_filter.h */; }; - 1CC2944199C66DE2B410E49FCAB2F54D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 8643133904C4A64DDCAF880CE53C9719 /* chttp2_connector.h */; }; - 1CCE7F80567DC19566A4A8F6B979BB78 /* FirebaseInstallations-FirebaseInstallations_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */; }; - 1CD94949BE6C9B0B8F9C578E0B0D886D /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AB02B3DE3163633095F905A51D67C4AF /* http.upb.h */; }; - 1CDF51A6E4BA28D2F3E81E7929E5AEEC /* channel_arg_names.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3DBAD5AFC4A76AFC05BD7D93B1BF3170 /* channel_arg_names.h */; }; - 1CE0B4AE41B496894AE097FFF777679A /* load_system_roots_supported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 199FFEB83D38BFB4884AE4998FB60B54 /* load_system_roots_supported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1CE78802D2CF3927196631FE84F1AFEA /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D114B42C57477DD4AD2A9780CD30976 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1CE988BE7FC1E58AC7208F753D9B438B /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 915D6F1B41876A716316AEE5B4287689 /* xds_lb_policy_registry.h */; }; - 1CEA32C4F934080C3BCD564C4B025731 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B06EFB3F9B3CB2557EC8CCDF6423EF /* python_util.h */; }; - 1D0499381EEC36968794B960DF33304A /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7498F062FA23713711BF0EAEB3B348CD /* endpoint.h */; }; - 1D09D64E239B44581E6E697EF6D7E7FB /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C02BDB56DEC2AA0A1FA78A39B6AE6BC4 /* sockaddr_windows.h */; }; - 1D2813078ACFFCA888C5CC8C70FC813C /* legacy_channel_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A60304B38388686F81E19A4389961C6 /* legacy_channel_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D2D362B93FFA6BECCEA22CE2838FA37 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96088310E27B0EAB04288825FB6FDC15 /* grpc_method_list.upb.h */; }; - 1D2F979ECD8C55EEA5ECD56B814EAE4A /* any.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DFA413BFBF731CF0569E3E494677BD /* any.upb_minitable.h */; }; - 1D2FC1708DE826EEB032C813BEBE2C5F /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = DF47AF8B72DDC76FBC9F1C4E02983951 /* compression_internal.h */; }; - 1D325CFE11FE13A075C835E922BE1017 /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = DD25B8FAAD8A918B9E77BBED2ECD8D0C /* SVRadialGradientLayer.m */; }; - 1D39966371A6017450411761D48D7E38 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 9530D53BCEE8C160EA57F0B7C79B5F8E /* alts_zero_copy_grpc_protector.h */; }; - 1D3D76AA03DF89D257BD29080F685D16 /* cidr.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 66403CCFE9F8B97AEF3187E718BF6BF4 /* cidr.upbdefs.h */; }; - 1D4B96F5912A1D76B6F089612B9792FB /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C6F33FC580EA4E6E5EA0B0105A30A77 /* ads.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D4C2267D083D6D3A03F013C5E011339 /* pkcs7.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 29C4C5AEAC858E80F025422D7FF087B6 /* pkcs7.h */; }; - 1D55AD2CA455D5AEED14DB4CFED8DD17 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D388313978ED744D2E082958155869 /* client_context.h */; }; - 1D560EF3B7B68911A95548AB53BF888B /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92D16D18A9BD44DC71BCA576A8B2E609 /* grpc_ares_wrapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D572B8D37DF2DC13209435BF0C12D6B /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 220AED87ABF8C858FCF68FDF7EFD8E51 /* ssl_transport_security.h */; }; - 1D60FAA93C46109F93764733D28D99DA /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DC1553E5042B7DA524D469F3261DC5C /* deprecation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D6835C98A4415D9C35AA0082922F534 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 62B963135E1B5D0D0871A62C8DC29B85 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */; }; - 1D6A3807FD29875C8CCEAC2C1B7E1B80 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6D239552CD811E20244E26BB616F08A /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1D6D06570852377976EE4A66F0A976C2 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 5E3ED2F1F4DDDC268CF16F2D83A0CBC8 /* matchers.h */; }; - 1D72D92710E8291EB96E630E75F0D982 /* atoi.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 2527209A6AAE2CA0E149E347D521BF0A /* atoi.h */; }; - 1D75DF605B8B0FA5684316E463C0A9A5 /* bootstrap.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FAF071F80E6E8FFA5999722823D24407 /* bootstrap.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D783D21677C7CA0A5AC7009B5A8496F /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEAA2E6F49A772854306257A0A69E15 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D87A780802C50051D8786F066477C88 /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = BFEAF585235931BD346A3FCE5EF84435 /* enum.h */; }; - 1D899939ECF1CDF0C8EE9C24F6C280D3 /* modifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = AE47A5A1D31DBCFCF671036F3B85179E /* modifiers.h */; }; - 1D95B45328470D0C4EF842D5E4676C16 /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 767F51B8A3EB779C830980D5E8DE5EEF /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1D9FD8DD5DC6E99CA62AD687C1024738 /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 504544840BF8634866E9C200F8FEDFDF /* filter_state.upb.h */; }; - 1DA7939541CD0971A79AE40CEF6182A2 /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0FA06F8A3FD7D84E0072502B013B5BC4 /* health.upb.h */; }; - 1DA9633F1A81E4A8A6B17509C8160E98 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 192FCDF2D7B68DEF8526DBACF7EE11E4 /* time_util.h */; }; - 1DB36C3482BBE042483B7946A57AD1DA /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AC7A49F182CEDE4D3169A0D57E9A70 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1DD28D8DFAB9E31C0179008A2FEF4F71 /* json_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E69C1F3348373C1CB7108D5BD6EE5E /* json_channel_args.h */; }; - 1DD2FA9034E56547CEDEE8DC8FDAC825 /* ping_abuse_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9254B411AFA07B5589884D70D84DB1F1 /* ping_abuse_policy.h */; }; + 0835E95D13ACD987F1F4E51C74DAB04D /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B89EA296D0AE3F39289DB07C264B703 /* chttp2_transport.h */; }; + 083767003A7CBE2D517E84226695B14D /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6229344D07E0B9A93C615C8CF36868 /* rbac.upb_minitable.h */; }; + 083803EF0943B5412C6EC87CC742CB7E /* ping_callbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7EF0F7CF5C84CE9746736BC4D3A7AC /* ping_callbacks.h */; }; + 083E0838D07E34D72A5CA6E88CC62C4E /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6783443F1BC5C670643A1AD06C3AB73 /* socket_utils_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0841B988C418A73415F263DA12D56F09 /* err.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B8E9471C313F1B0CEE32848842A35D5E /* err.h */; }; + 084246030B5545ECFC6AF39CB4C4FE3B /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B7F45AFAAB484F0C05AFFAB757A079 /* sysinfo.h */; }; + 084B6680E03FB7CD6F7BC3077D189994 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = E383118FE0F566BE2CB7C75C4A0F786E /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 084F0CB235BC57930897B78B28E77F4D /* string_util.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DA7F7D5DBB2ED192E20AC05F7477482A /* string_util.h */; }; + 085297A3C9692B5568AFA5D556DC44B2 /* any.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CD99316705661920727ED2C9E2E47C60 /* any.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 085732F0F90A2452F9D9BC6ADC9FBDA4 /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B78CC3D88493EFE53F69EE7580A9AD3 /* route.upb.h */; }; + 085CF33D05B8DCA8641B7BCB74B3B176 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 085D3DFC9D9EA273C0977BFA40843152 /* resource_locator.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 754DDF2453DE9BFDAEAB5A3300929F3A /* resource_locator.upb_minitable.h */; }; + 0866B0D0F00144332A8892C747A48004 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FD3305C939ED2B4CB98368D7C3CDA86 /* endpoint_binder_pool.h */; }; + 0868686F78D85A2C77A4D1B0059A7070 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = B36F583FE29809D6895D91EA028AF69C /* trace_config.upbdefs.h */; }; + 086CF34B4EABB69B98345B0DE1EF809F /* rsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 65971FC4027B4F130E79F906F7FADE54 /* rsa.h */; }; + 087DEAF201F25D577F2EC1601BD0FF93 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 813F4EB2D2D99F75F159AC832AB3A930 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 087EED57B18666910FD9B14BFA8B2C63 /* http_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D2EFE35BCA2F634C4F27117C81D8E9 /* http_trace.h */; }; + 08923846D88DF3ED6D918079C91116C6 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6454F4815982BD2E1ED47976337CB28 /* ImageFormat.swift */; }; + 089C2524FBA519FBB8A823056765EBEC /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FF3BA3114B9CA0F2EAC1F5491D8D498 /* authorization_policy_provider_vtable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 08A217404FEF85E4A259409E71CE1580 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF011C37D62CED60344F2B3C84A32A7 /* fork.h */; }; + 08A924439807A594D4FE7F6E9298F6E4 /* str_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 636EFC315727A9EA1DCC5E55866C100A /* str_table.h */; }; + 08AB54FAC68CA99DF3FA55433C22B469 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A78D284A99973E11E58017DC8BFE6082 /* channelz.h */; }; + 08AE09F9672CB94888F5C72C1C718C52 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3546E524A0014BD5105D9212D6BCE3B0 /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 08B09D7A3DF64209ABD545B6D50BB1C7 /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D74CF56D91A2B240038CF5F3471ACB /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08B3D321E6C87DF274282E5FFB49C30C /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8EFFB6CF341D91DC4C77CE8F899233 /* http_status.upbdefs.h */; }; + 08C3BC3FF9F08C1F21E7C879656F69C7 /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 87311A2FB7E243DA6EEF8CCD88537014 /* thread_pool.h */; }; + 08C58625A91FA3DEE5C0A45ADA511CFF /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46975123C6FAC8940EE24B461A74B04A /* http.upb_minitable.h */; }; + 08D2989AE38627DB84A70A9BB17D2ABC /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 55C598169F32D3E91A4FEE43EC23624F /* range.upb.h */; }; + 08DCC1703B039D00A2EFE9709215309F /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BA58EEE52FF5B8747329F5F9C28872 /* rbac.upbdefs.h */; }; + 08DFE2F16CA5BB63B192DADFEA287FB5 /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = 534F5BD6E93D5166281FAC383473608A /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 08E2174D103320E02B692961C58312E6 /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 818D6903CA6D272786D430CC5E9DBB3B /* httpcli_ssl_credentials.h */; }; + 08F4BC93FB159C754ACF2A3306D96068 /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BCE8D260BAF318DEB935A53786536DC4 /* xxhash_inline.h */; }; + 08F4CB6D2A68272628DEF0C9AF92ABE6 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F19D3FB9C0867E24D22CC3ABAB956314 /* interceptor.h */; }; + 08F4FB97D1E47706E262275152ED0B34 /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 6748FA655DEF1878DD214B92CF296076 /* evp_errors.h */; }; + 08F89805705317E692BB0E4D053FBB88 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 59860DA3CFF3383A7658F8229347EEB7 /* windows_listener.h */; }; + 08FB23DBD962A3287995AFCB55F83901 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D394E544D23761F3E61C7884752180E /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 090690E6A77101F48FF09BD940E1CBB8 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D4E2D63525F96F7DD7733FEA9275DAE2 /* tls.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0908FE945EBAB6DB588140795BD50E85 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 45504586DB648020C757B47EE1A87B9C /* python_util.h */; }; + 090A7E702DAEBDC0C9635840976BB5B6 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDE00C1BAC83873179DFED479FC6090 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 091DE5B0A53D36DEE4A793EF67EDAF15 /* def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = D7EB96A1FF9B447D779D39F0BC7DC907 /* def.h */; }; + 092844AD1F37759513F9AB0268B1BE2A /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2BC3BCCCFA2EB9C772F102EEF87BCC27 /* memory.h */; }; + 092ED3C220727E27B84AD61B66CA1C32 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = C27BCE59DF6D67A451241FD0F5AC4DB7 /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 093EB2AD84875D082D9A73FB09702AC0 /* client_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DCC79DD562693D4773E5B6E18233416A /* client_context.h */; }; + 0944D0DE05BF53EAEBAE62AD7333DE65 /* metrics.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AB6C71BDFB2D4664819F2B806559FA8 /* metrics.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0946D1E7C71C4A942A22FC58CBA6638E /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 66F1D65AAFD39A05952F4349829ECDEC /* uncompr.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 094FEC76D5F269C9BB2D0E2DF6559712 /* address.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C456C11C88B04763CCBB4B3AAFCDA44 /* address.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 095889F01EA9E42F50B0AF79EB50F2D7 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8F4963BA5CD85660FFBD09F4C888A9 /* oauth2_credentials.h */; }; + 095ACB15DCE479D350629EBBF1331103 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = B410220C2B10321CEF85FBB00A8A7875 /* mix.h */; }; + 095D41875FE257A71D15CCC9C4A9D016 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80AD10CD9DB465587C8B8832C50426C0 /* config_dump_shared.upb_minitable.h */; }; + 096446E99EE881247177D96AB0738903 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 664E953178B529B64C5370B83B3B78DC /* call_combiner.h */; }; + 096CC48AFA76F26F34E39C33A9EAA9AF /* ring_hash.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDB47DE229007F4FABCFF1F6B932E79 /* ring_hash.upb_minitable.h */; }; + 096ECD74DBFCDC36C3303A6B5DB3AD35 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05331F5E509EBAC1D6AB831CB125A2BF /* metadata.upb_minitable.h */; }; + 0971963063B24E9F3C64353D89D3DCF4 /* FBSDKURL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2862922363918110F425169EA55856F5 /* FBSDKURL_Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0987CF608A5684AAB52D3173FD92D0CC /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; }; + 099230761240DFACB5F85995AB7F3094 /* internal.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = F1578646908CF8E016D713540F9ABC11 /* internal.h */; }; + 099E950D71496D54E9075920DEF46715 /* grpc_polled_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = A681ECD0D1A2210AE23A0683D7FE93A6 /* grpc_polled_fd.h */; }; + 099EEBE24F791EEEE1638FBE6E92837D /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A2003F4F57FA9E6EF1E3D517C4D1362 /* HeartbeatsBundle.swift */; }; + 09A4356465FCD1959DF043AD2D6372DA /* stdout_logger.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1F16A5A805502A0733DDC416BF957F6 /* stdout_logger.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 09AD9E12C9D731F9CDA9775207B2696A /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B894C984BDD3BB684072CA42CA7EFCA5 /* context_params.upbdefs.h */; }; + 09B053E14F5DA9EF31AE397887EE6177 /* internal.h in Copy crypto/err Private Headers */ = {isa = PBXBuildFile; fileRef = 8C2B85D7F7C3628C045F018CD97D56EE /* internal.h */; }; + 09B986196DFB3541489F31927D5A6017 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 0C5C2E71FF7D53BCE90ADD445D9C65BB /* authorization_policy_provider.h */; }; + 09BC5C178FC697E4E6F7AB4536C2DA47 /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE7DB61CD4A0EF5FF27F3110E65A8414 /* ratelimit_strategy.upb_minitable.h */; }; + 09C3D160357629086AD5A8077FE81984 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A828E20A2E96059DE02C6626E515B95A /* load_balancer.upb.h */; }; + 09CB3F542C83C197389369114DDCB81B /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73F02D3C51C7B76AD551148EDA431BF4 /* trace.upb_minitable.h */; }; + 09CB75228D60EBB3F9AA34BA3A5BD561 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4DB2772CF935CBD51A927A99622699 /* status_util.h */; }; + 09CE9226CB5B6182B40CA539BCB3EDAC /* tls_credentials_options.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = EC7C0229301F79AED3A36199B04A58B7 /* tls_credentials_options.h */; }; + 09D2C1FA29ED6D264D8474BED59C0620 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = C4A8F516D5197A9010D1054716F8F6E7 /* grpc_tls_crl_provider.h */; }; + 09D350EBAD82FD31CE6E9FA2F5C6825F /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7DA9B361FAB3F5B61BF3140DF7C370B6 /* cf_engine.h */; }; + 09D55DF8C5A1120FC8734B6C7A7A7247 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC54E2199C6CD6450C8866E126A91C7 /* ev_poll_posix.h */; }; + 09D75F5AE1A1458EC0C8CD543E06AC2C /* empty.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C64433550B0A02A048DB7EDE5E949DD4 /* empty.upb_minitable.h */; }; + 09EE363EA270F456BF75DF8AB4F5E35B /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = A998CED494A840B340E5F0C208DEDB37 /* parser.h */; }; + 09EF91070ACEC591DA681B5D3C381389 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 1A06C44CCE2BE7B37A26CDC854D0B216 /* connection_id_generator.h */; }; + 0A00794B5C54F98DD4BA90A4EBC2AE82 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D52358171B44E55E2FA1518AE8E7DF9 /* FIRCLSThreadArrayOperation.m */; }; + 0A049C4D5C349567AFB0E8C3ABCA98DA /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC035354F5F85E77F3355E70BA6FA9A1 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0A0A546FCDD417D9C5B4B47B922F9F94 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 36132476F8BE0AD71C0F772961DB9E08 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A0DDDD69D1105278D41D22BF3659990 /* event_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB5FD01B9B33505A22D5A182D71C3BF /* event_poller.h */; }; + 0A178DB1EB74AE3811EDC65AF67EE16A /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 74109632C97CC01C77DB8780945E9DC8 /* nameser.h */; }; + 0A1BE45CB725F25B6A1722253E519B8E /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E00893F8B7F2892A483696ABDE8E2537 /* socket_option.upb.h */; }; + 0A1E7F06A1E1CA1DE2B389E6AE0A66A0 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F45971E679A9797C475FA1594E4251BF /* Indicator.swift */; }; + 0A204547DF7B851D31441F53CCADAA2D /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1EDC218BB564292AC93B951E0D7878 /* errno_saver.h */; }; + 0A3A235F2B778C5BD9C6DB4C96761892 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF4D720930238207C2311F547ECDDA7 /* sparse_array.h */; }; + 0A3E8A513DEB8EAF7BBAE68959E6D098 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 600F2054D5E8D8D66BA21B29001A8384 /* slice.h */; }; + 0A4D166F06B41D6C3459451FFA38C22C /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = AB05120CF8F264A020E4126ABC10EE5A /* can_track_errors.h */; }; + 0A5560553924C2807B3AAFC5BABAE1E5 /* metadata_map.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E720B97DE378444176CBEFCBE49E7C61 /* metadata_map.h */; }; + 0A55F6F5C83402EC69F510431DA53043 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D88ECD4A3E237588147176C9E0D5A5 /* bootstrap.upbdefs.h */; }; + 0A7F6EAB53D5723ACEFE9819336AC64E /* descriptor.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 176DFFF366D298A99313BB8787166AF9 /* descriptor.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0A85B9D6A0E94D962D051393DC6D37A9 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34002933EC0A8063F759DF5E36EAA1EA /* alts_shared_resource.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0A8C727F472FD1A8FBC449C602FBAF45 /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 078CB796672DFBD04616D55CA789A85A /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 0A939529B48C618F05259F32EC4D6055 /* atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = FB94F69F562E39C8E4149FA22A03A68E /* atomic.h */; }; + 0A965ABDE73993B670D9414F3D4C5395 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = 92C6C891FF0ACD9B8B2235CE69F780B7 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0A98CF72385202359AFC6E4D43FD51FA /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = 740C1EA05FB7B4BADB22AF785CCA7A1B /* poly1305.h */; }; + 0A9A7109F8CA5D3BEE124CB5CF328A0A /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 450451951FC2AC58BF47B481D6A744B0 /* construct_destruct.h */; }; + 0AA8FA90408BF04CBC5A0AF3D9E27AA6 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F42CD9B72A26EC7DFCE91DAFEE5F467 /* GoogleDataTransport-dummy.m */; }; + 0AADA20C941D7B7004D8E1C98644CF5B /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE032DF9BD8ECED04AE75E1A0D58B0E /* inproc_transport.h */; }; + 0AB8B2F5FCBB4E39F5A7CE1F0A13F903 /* FBSDKWebViewAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 90BF7D348A86BBAC059CBB61B9CB86A0 /* FBSDKWebViewAppLinkResolver.m */; }; + 0ACE17F1C13CA334289F66F3D4FD6932 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46F65140EDF246F99A41DAA9643FC884 /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0AD8AABFF336CCD28E69C32E6FCC9025 /* hpack_parse_result.h in Headers */ = {isa = PBXBuildFile; fileRef = 39264091EF4205BF19AE80B40397CCA6 /* hpack_parse_result.h */; }; + 0AEEF962FC38BC52DE6BB4F7F68CF03B /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAE5F37E544BFC32E2D1DC8BF9F376FE /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0AF238D6F5C337D6DE08E400EECF5D0B /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 9C8E6CCBF3D64A0D02C9336F9AB124F1 /* alts_credentials.h */; }; + 0B053F3F47D31EFAA25F7CE64C3CC56C /* client_channel_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = F88007D9A28DAB4FE43B7967CAE08BE3 /* client_channel_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0B24403491C229B31F0F71F6461AF4B8 /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDCAA6D14788445CAFC20DA4EC9533A3 /* backoff.upb.h */; }; + 0B331A84CC7A19AC11D2EC87086F4EC3 /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 08F4AAA7ACF0C3E894733732CC69F28C /* semantic_version.upb.h */; }; + 0B36D609C9CEFD3CD676C8A21F312B1D /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 52B569BF23ACD1A8B6C517C65E18B591 /* udp_socket_config.upbdefs.h */; }; + 0B3CDC50F3BD608299303E2B8452E67D /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B269678607D0E40A0A57F85B76C4B3F8 /* backoff.upb.h */; }; + 0B3E82F0FACACDC505F873C65A6A52E1 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE6BDF9A7B37A86BABF2DFD7148DC4A /* resolved_address.h */; }; + 0B60D612A323E3B90BEF10C474DF60F8 /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FEA5A029FD97EF6A5AE05ADF3B693B /* call_finalization.h */; }; + 0B683EE38B060C5D4310B50A55B7937E /* resolver_registry.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 4C3B76B146875B3D30724F236C83C4C9 /* resolver_registry.h */; }; + 0B7522417EBE531FC84E78977B6540C0 /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12283868D953D1562E52ACA8D346E5C5 /* custom_tag.upb.h */; }; + 0B7632BD75D6E35DCB7F385391FD9D3A /* hide_ptr.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7A5797544FEFCE28FEB9A43AF7A54AD7 /* hide_ptr.h */; }; + 0B786EB423721094F9105FE93F5C7491 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B3E3991DB0BAB4E8CD65AC2DC95321 /* frame_settings.h */; }; + 0B88400F5D8E680F19DA75A086CC042D /* decode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 5C55C3BE3C5252E886759596C422F5A0 /* decode.h */; }; + 0B8A521E130D87029E3AE6C7E53211C7 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = E1C20055A8B5AB7809706BEFAA51138F /* load_balancer.upb_minitable.h */; }; + 0B907BB5C3186F8BB794A9CEF330607C /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 225FF9A3CF2E85308B488605BD96D4EC /* propagation_bits.h */; }; + 0B94FA711FEDD65CDB04B1A8ADC7D192 /* crash.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D1EDFBE42B2ED9F583E96FA5D864FE /* crash.h */; }; + 0B96C56A1F927BB85233BA1A7AB916A7 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = AD2DAE0893C53A282740663127D76D95 /* dns_resolver_ares.h */; }; + 0B97E0CEBEF579E5BD178D7E8CE8C521 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1E2F3A7634A730F5AC3D41FD89688E /* frame_handler.h */; }; + 0B98AAAB92D7DC12DBE09248640F5994 /* directory_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = B03AD2AD291D8DEC20611791A57ABE7E /* directory_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0B993E1E510DC8DD93F9EB65B671CFAA /* annotations.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 707D0474D6544F841ABD4E3838C82C0C /* annotations.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0B994CDC79B1AD3A7BE62490D27C60C8 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B9913383CBE472E71F347E0B3866F6 /* ConstraintAttributes.swift */; }; + 0B9B8E10C4123879AB327FB7F017A755 /* pod_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FE44E256CA75E326F046678158529C3 /* pod_array.h */; }; + 0B9DE8CEE52AAD5865723122792F77F7 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C2E64955E1233D783AEEC378DC07FD6 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA291E521D23B66DCD30D7C2B3C41F6 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFC564CFBC92108450742085B686B61 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAABE96C9CB62F07A6C81A8FBC3F508 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6A865CFECECAC270FEA4C03ACAFE36A2 /* sensitive.upbdefs.h */; }; + 0BAF3402BAA5D467AFF0691A943290AF /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFC76EEAE50418DE21A4264AFB29292 /* resolved_address_internal.h */; }; + 0BB4541056E1EE2A653AE680E8F60458 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CEC7B45047AB8C8288C96FCBAF5FC15E /* sensitive.upbdefs.h */; }; + 0BB74DB9121DC7CE015104B5068F4E96 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A8546B4FF71CD2FB24AEF5EF3D857A1 /* extension.upb_minitable.h */; }; + 0BCAF29ADF74FBA87C2111CD792A06A1 /* client_side_weighted_round_robin.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A4F3C4DBA5AE9D01F851E5B6B1C16E6F /* client_side_weighted_round_robin.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0BCD34E4EDC68182DF92B834EE6338D6 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 217C799CBEBBB002374699D31C1A0F05 /* frame_data.h */; }; + 0BD7B4A8DA6185C04E67E3AC2D550928 /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2FAD40416908BCB713E3ABEE6850F3 /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BDB54ACE6FB97A33ADEBE7C72C2B627 /* zconf.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 10C6B1753847694E523A0B03C7B3C502 /* zconf.h */; }; + 0BE01BC9117BD5CAA293F34F3237BA49 /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96B90786498B4958CE62FF627226FE0F /* init_dump.upb_minitable.h */; }; + 0BE6B7F5CA75DF11BABFF59742E2A285 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = C0BCF04EC09CBD90C47BCD73CAD47B70 /* alts_tsi_utils.h */; }; + 0BE8D8230922E8103604E5952921F73B /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE76D21C34BE1F038B52C0F3D39A2AD /* external_account_credentials.h */; }; + 0BF7E141AAFF122A3BBDB10A80FFCB6B /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 060F1E0932ADC5763EF50B3376B161C9 /* custom_tag.upb.h */; }; + 0BFF42788D7539CD82A871129742BED9 /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 754989CF3D917F01594C759FB604816F /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C0240635B1BB1851A0E0A512C28CE66 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B3CA84D20F17D3835780FBAA3EE4AD /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C03B41A6E0504BF2D4FD5EAD538094F /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABDA888A6341F4DB2DC01D3AEF6BABF /* timer_manager.h */; }; + 0C11702D2D15BDB260C382D32513D43E /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 922C7343DA0C7DD3D66119CD4807189A /* syntax.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C143072BFABE3F0B86BC77FCD112504 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 553F15DD3F87A0220A3B6CF03FA2BBCB /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0C1C099E21343912BD5C369298FB2678 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 28E28725FCD17190A48271CDD87EFA96 /* stats.h */; }; + 0C21230F5E97DDDD5DB3367A70F6D6AC /* custom_tag.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 10730966B090146D7F323EE0072A5619 /* custom_tag.upb_minitable.h */; }; + 0C3EA89A7E959FEF09AE0579C30CF710 /* wrappers.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C6550250CE95E675EB189FD053D7287B /* wrappers.upb_minitable.h */; }; + 0C4BB0074CFDE61D7790485A918653F1 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD738DC70F7562C0D899EFE0E201E830 /* wakeup_fd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C4CD16BB4F1155BA5637EED32F12C30 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 36010401C0AE2273ACF3A522425E54FA /* struct.upb_minitable.h */; }; + 0C5808167E091F3AAB3E452681E1779D /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E6ECE2A2DBD1E3F350C19BB840ED06 /* http.upb.h */; }; + 0C595D8FBCD7A109D3A7DE6CD209DA3E /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46DDC59131AF4570E3645F57AE45F701 /* circuit_breaker.upb.h */; }; + 0C5BB9C3DDD39B355719495A3764DF15 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 585241FE4AD5B773407AA98D69CB7E22 /* frame_data.h */; }; + 0C5EB285D9E110E2EB8DFB4B5A28FB11 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF4E1A097A5ED167A3537230DA96C6D /* reflection.h */; }; + 0C6A5FE0DE0F463D4C7088F763F706F1 /* binder_security_policy.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = D7DCA06EC936BE11ECF451031CC26AB2 /* binder_security_policy.h */; }; + 0C6B70797E08032B5F5303A66E08C7BD /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 67889827EBA785CCA7846E14DEBD3834 /* hpack_encoder_table.h */; }; + 0C6BA0A0E1534498F574759E7EEEF329 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A64E2EAD57C355DB2C9447B676EAF2F /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C7B7CC86CE4EB0EC24CC9EF09EA23C5 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = FB301A3D77942E4405E7C6C934941C89 /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C83AD5117B2178B8BB57F08C29D92F2 /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = DD8E71583F7393424A9296FE9A42ED6D /* legacy_inproc_transport.h */; }; + 0C85CD018BFA9B560157EB3EAB449C87 /* curve25519_64_adx.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 36AFFE60E3761D7AC34D18C0E00642CE /* curve25519_64_adx.h */; }; + 0C860E6E6ED3DE9EEBB5C1F518FE1128 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D0762FE3DAE776173B25626323975B /* fault.upb_minitable.h */; }; + 0C86EE6866CD92EF5DB239548FEDE937 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0196F4BA873F60C8C5AC8C068C39683E /* wrappers.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C9709973A1E67AFBFF1DA9468F6F3BF /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6932997A3C17E8527348925BB1618BDB /* tcp_client_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0C99A488FB0AD75936D9A4067C801160 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 0C9FFD157C1B351801D35758187A0D6B /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 83F537E912183026F3C2D08B8CC9204F /* def_pool.h */; }; + 0CA2058B016F42F2D3FB648B6F408A06 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1992FACDA91EB918F83842032D03A9DE /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CA361EEFF69131C11ACA6006A7C00DF /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0945D6920CB844DAE0B3CE5380CE625B /* rbac.upbdefs.h */; }; + 0CA6EE3494D23AA495C1E7CAB8CA7AB3 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = A3406D7AA9A01C9409274AC248F39BCD /* slice.h */; }; + 0CA899739BAF8E24E8F092A0DF280F8A /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 183BA33C67A9589B181F92F5D58CEFE3 /* executor.h */; }; + 0CC6AF1CF3F09259A9A1CE59B3776291 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = EB84B1FBD0E5A5BBD49EB470E22C11E5 /* aws_request_signer.h */; }; + 0CCB745981EABAF09B360440D21C836C /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2587AA1480BF27141052B195D3B8F132 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CD4A532BC1B307A16A69F37D496A2E8 /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19092B1F8DF66787A7B50E9739BEB065 /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0CD6E4A2FA0A72592C794B231CE6E728 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50F4D13BFA38BABFA51066F774598572 /* typed_struct.upbdefs.h */; }; + 0CE09CA62741FBD0BC21888876FB42B6 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B36D13C0B1B7A537187B6AA728ADE52C /* posix_endpoint.h */; }; + 0CF7745400D41832CC3FD3CF8F1BF6E6 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 627F6A1FB0A264B491C706A18FEAA4AF /* bits.h */; }; + 0CF9A25E33EC3997C396129E3795EB8E /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DC1258048E5FEDB446CD6B0F8257C25 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0CFBB0AA39CF8DC9F1932E9689C44F64 /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = E1FF1A97EEDC57A23F57950A152AB7EE /* ring_hash.h */; }; + 0D03E01CDFB84C3B37705FF50E45AC5D /* connectivity_state.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2044367157951ED94395EAAB25976BE1 /* connectivity_state.h */; }; + 0D05BE9A1EAC6035EB8A3512BF80312D /* FBSDKGraphRequestPiggybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F39EDAFAE8653C8D14E6ABC6262E88 /* FBSDKGraphRequestPiggybackManager.m */; }; + 0D068D6267E6814445101429814D8E11 /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8612E8103987A169A4B9B36802CCFCEC /* accessors.h */; }; + 0D0703E7BDDAD81EAD9B76C73A722AB1 /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92172A953BD682E0CA4EF42CC5D9A603 /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0D0A5DFC2939D74BD0A70C09AB6D0F12 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ADDB285F6F29B08791666BABE495037E /* versioning.upb.h */; }; + 0D0B41B112AE03861DE64362A08C254B /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2764FE21A86807A1E9A53531B8FDEA6B /* hpack_encoder_table.h */; }; + 0D17F6A6486744081EF5F37850931B8A /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B30883073CF68E35297B32F1520F322B /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 0D24AD80BF0F602E48F1FF11B5B0D7C8 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = A23C841F9D82A03CD8167C5FA0ECEE8B /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0D3705FE126E248DBA4443D9A1BE1AA7 /* method_handler.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D4D18C01450834E4074D7269CA5551EC /* method_handler.h */; }; + 0D3B32D160FC6E691E20377109E24FEB /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = E251EF59481D661125DFBE0CC2D0C3FB /* validate_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0D3CC2FDC16B5285D73D39AD6CF65948 /* party.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3401891A7528095CFFA9331F9F7B6BA1 /* party.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0D50A534B70A026AAC86B9E26259851D /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A2F74BF9348C375DAB7DAB986991112 /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0D54FC60350A60AC1B62957A91123D19 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 573D9A4901E2FCFE2F80FE964B74808C /* internal_errqueue.h */; }; + 0D561EF3DE2490152C93A3112BA83F96 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3374CDDCB22FFF8D7511049C55C72C40 /* client_authority_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0D58AB21CAD235F5E0389DE44A7A1B83 /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB47E882BD767811470A4DAEC30419CD /* cidr.upb.h */; }; + 0D6CBC7BF7A18BB5FDC2521B90B00B57 /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1119FF603772F68F0EF43F859CB6BA /* binder_credentials.h */; }; + 0D6FC0648072DF26565AC3658598DE00 /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33C08343B1CC02F2421BA3F58A251EF1 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D7AB79CD1E07E28E2389D90CF0F721E /* call_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D5BEE1ABCFBAAF35D3DC9C385E37A46 /* call_trace.h */; }; + 0D83A2189D3E669A52A47FDC7EB31485 /* FBSDKErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 486E952847461D5718996978CCC95C84 /* FBSDKErrorRecoveryAttempter.m */; }; + 0D8406DC9B7466AF99C734CA9BAB3BAE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D4D368D7AA6B332EF836DB7AE71E7209 /* PrivacyInfo.xcprivacy */; }; + 0D848CF4AB6BF01A176A18C01D59FCF7 /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926DB44435F707EB750EBE109254986 /* reader.h */; }; + 0D8CDE9E0015F838653F7E7F3514757E /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 572585B0F7B0C23ADA0FBB6BCB13474F /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 0D9E127F6AEA53A2AE45E5F71E0EF471 /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 50EB003993E8806E79731EEB8DBE9E12 /* FIROAuthProvider.m */; }; + 0D9E4660595B8668B8A417E9E4F2DDD2 /* can_track_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = AB05120CF8F264A020E4126ABC10EE5A /* can_track_errors.h */; }; + 0DB4F2DADD37ADEE059CCD2FB50B52D0 /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = E147DEB1B5F1AAE448F78A750A6A96B9 /* time_zone_libc.h */; }; + 0DBC5D782B2F4834988D31E2DAB04F48 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14F497602FD4F2DDA1DA879D40A0BF79 /* http_filters_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0DBC714DDB6A4848CA9CB4C46ED6A3E1 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = F02DBC18AF9A74E333A2E67AAFBAD386 /* legacy_compression_filter.h */; }; + 0DBDC7E3A4E2A9F19B30A94FEE001809 /* FBSDKGraphRequestConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = CDBDE076327E954D417FA48FBC96BCFF /* FBSDKGraphRequestConnection.m */; }; + 0DBEB3FE5667561C75972C834D2B0784 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC1FBA6F0918D019593D12D0831EEFB /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DC5121B1649AC30CA739B01105179FF /* Promise+Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4975D738EB356652CA9290E0774A3E6 /* Promise+Catch.swift */; }; + 0DD716209AF9B203409C38AD32A62EC4 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A6406BB3E13FF01D50BEC63228443EC6 /* security.upbdefs.h */; }; + 0DDADD0531F7B0F2974765595FA03E1E /* version_info.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 319A9686A895CC8629E9E92A607A3932 /* version_info.h */; }; + 0DE8E40CF5E26B414162110954D768C7 /* ring_hash.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B5D905FDF21D8D5021957EEA5A57CF /* ring_hash.upb_minitable.h */; }; + 0DEFDA05A36AB9171FDC10732B3B9BBF /* prog.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 1C234FE469BEFFA259C3F4E08AE20C16 /* prog.h */; }; + 0DF66AE1FA1C58EE839FA4CBACE19374 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 0022DDA3BC8899CAE7D63D291D29ACD8 /* int_table.h */; }; + 0DF87B77EF843009036677F3ED0740E1 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4937E03E67B6D30E02653E5B5BCE30A8 /* xds_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0DF8C2B3776F89A6CC2FCB53B77FD00A /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B1C2E10F035D823B9FAE82D86DB2BBAB /* sync.h */; }; + 0E134E8D79335A95F4AACF4EAC04B04F /* futex.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 792036288DB39F80E461A474D78BA116 /* futex.h */; }; + 0E2ABEC46405637B1ACEE7CCA7D926B8 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B0CEA750A3AFE2CF950ACB69E12220CD /* FIRConfiguration.m */; }; + 0E2D5172598CB9149D4B96C55187577B /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = FA07EB746D9159D0A87226BD322F90DA /* rsaz_exp.h */; }; + 0E32D45490CDB62C348D098DA2E44436 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F4FFA3C62BAF6B7AEC283BA73E15B9C /* cookie.upb_minitable.h */; }; + 0E3C438788D64A7E230EE04BB85BBF32 /* client_metrics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = F6653EBAC45BB5F36EE1F6B7F344026A /* client_metrics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E49100617CFB405D81525D7989CA5F8 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6BD03A1E0D48430505A8969A36029814 /* ratelimit_unit.upb.h */; }; + 0E49821CC15F59D45357A63CD7E5D92C /* json.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 54E2DC980E75F2923C1722FB78E1F33D /* json.h */; }; + 0E4FBC2CD18FC040EEA8FC222E29204D /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31BC0B59B3C2B32E10D575E7FD148942 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 0E5102D7C487DA02B5244ADF91C83611 /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF979BE8F866438BF343CA3E1E5BFCFB /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0E5EBFA2F9D8E86AECA2CCC15FEC9E00 /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = B7C109DB7108DBC05464C6C9EB0F8D15 /* binder_android.h */; }; + 0E783E3445C9D6FC2AE683EE16B3B916 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DF46B42F5BDB98E8C7352F862B2617 /* secret.upbdefs.h */; }; + 0E79100B14017B10DDE9848775DA65BA /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = A85D2071E0503A42E850F78A0C696C6C /* ssl_security_connector.h */; }; + 0E8C6E3C174FBBF07E0F4A8234D53712 /* periodic_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6307A093D9BC18D408C2F093BBDF7DD0 /* periodic_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0E8DB05FCF227AB384F812BAF80CC2CB /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B565F4DAB9AE09AC14AF6C453B10559 /* http_inputs.upb_minitable.h */; }; + 0E957DF51589010EB758C0C921D740E2 /* windows_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = B664D724F5A3A49A8D5AA1DE80FE4BFD /* windows_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0E96887D647D05C7415A13E1F1E5F3CD /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EEBC42FD007B030C9DE8B3C6AF8C6FB8 /* unix_sockets_posix.h */; }; + 0E97A0F5DCD1004F57854D956B2EADC2 /* dns_resolver_ares.h in Headers */ = {isa = PBXBuildFile; fileRef = FE39787B54BF98136F1313DC8FA0EE42 /* dns_resolver_ares.h */; }; + 0E9A4EC384F63B46BBFDF0D3BC2E81F4 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F8491CC060E772CFB396D7843B9C92 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E9C2337D7F9E787ECCDEEA84EE1734B /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 1CF2685CAEC151D34C43B1950454F2EE /* ssl_session.h */; }; + 0EA31846807CBB79FBD89DDF39A5CD74 /* grpc_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 89F1C50B03728877C28C103DD5741AF5 /* grpc_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0EC82E19F4B1512DB7247DE31FA4C5DA /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C6286CE0E1D0201096978FC5206734 /* span.h */; }; + 0ECE8369C422CF49B3CA381B41CD4D23 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB9DC7E5DE2D9C15677B61B36081821 /* internal.h */; }; + 0ECE902EA02122DE9DF891AE7F5AB9B4 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0395580B465B960AF189190E59F37B /* field.h */; }; + 0EE04FF6D17793BCA9DFA29FAE82B432 /* FBSDKCoreKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 493C0C3997F9218C31FA181A5CF0F535 /* FBSDKCoreKit-dummy.m */; }; + 0EE06D93D6EBA2D7FB899CD897F36F5E /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5059D6447B84E257B72DF9A03B61C509 /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0EEADF2B8149AE28AE9FAFA012A7746C /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B22D5089DAE6FDDDC3E87BB24B580E /* win_socket.h */; }; + 0EED4597A8B4C066DCDAFA6E470BFADB /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD9759F3AD68DF73DBD8D5F184879AD1 /* substitution_format_string.upb_minitable.h */; }; + 0EEF457DD179C0EEDED44EAA5D5A76F5 /* semantic_version.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 725CB7834559363F37758D622B2F8606 /* semantic_version.upb_minitable.h */; }; + 0EFB5DCF150ED34BE8D484FF67DD8F25 /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 37359C76E29736C274F9D7D62D92F619 /* config_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0F007AFD068226250589295AD3490799 /* grpc_method_list.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E838014959FBF2423B5B1D5620E71E74 /* grpc_method_list.upb_minitable.h */; }; + 0F02953C2CE84B9B79A126060ED2512D /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 89B2F11700A22D57FC4AA9FD8C066B76 /* xds_resolver_trace.h */; }; + 0F03070F7D0434EDEC19D9B1258E3965 /* basic_work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C33A1DF63A0742EFF029EB8360BAC8F2 /* basic_work_queue.h */; }; + 0F1B419C8293F4FEB3F46ABDEB89FFEE /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5E42570E13EF4F4520D7BFEA50142D /* listener_components.upbdefs.h */; }; + 0F1C3E22D9396E766DB0D33E012105D3 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BD5EE8DE3620713C1F4C1871FEAABAE /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 0F1D561B1037872DB0404C0538A0A376 /* FBSDKAppLink_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 888B6D95F831F025AC2A345B041A58AD /* FBSDKAppLink_Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0F28A4A37BA769A87CD466B8797E6329 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D29B955AA5999DE2E293C0A37D10F8B /* status.upbdefs.h */; }; + 0F34CBB5BCD81252459DC0AB375F90A2 /* chacha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A80135F3C975E3F6FD234925CB330522 /* chacha.h */; }; + 0F39A2601FE5437EE321341211CF8805 /* FBSDKLibAnalyzer.h in Headers */ = {isa = PBXBuildFile; fileRef = 543760E2E2C263D0180B21A29CC31C36 /* FBSDKLibAnalyzer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0F3E95EA9AE43BBBFD1B57CF3B3FB41E /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = BF3A79A07ADA92BAF9E4CD2E8B5C55D6 /* base92.h */; }; + 0F44C428D7092654690B9A028A46197C /* value.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = C9E09DE2071F3742B960815F41C604C4 /* value.h */; }; + 0F4D841C9FBB9297CDB02AC27CBE37C8 /* FIRCrashlyticsReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A2E8AFEDF20CDB9C2B5F2E12A081F5 /* FIRCrashlyticsReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F52DA8F9CF8F71C6198ABB16B023358 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC407F57B849D30D04B1C8FA46F6D06B /* tcp_server_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0F561B8F3B52BC5E0DF04B2B2A3935D6 /* http_uri.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 315AE2BA7BAFCBCD2EAA09292EBADC82 /* http_uri.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0F580218F59A35B5E753969F4114670F /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42D42F19709E981385C5C67466DFEF8F /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0F58E009323EF5B97CF9D72F77319B2F /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = BE5BD7CBC9C677C1838F8FB6E95774CB /* default_event_engine.h */; }; + 0F5B0A2D3C948C9C2ED1074CBF1B68D8 /* iostream_state_saver.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2A567752FB8434D67135D1D54C014B25 /* iostream_state_saver.h */; }; + 0F6F0FDA982A7D8CCBA7D7D6999D13BA /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AA4A7FF0E2090319017EE65CC03C55 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0F7E3F31797B004A4E848BAD29AAF6E4 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 643C5A40526EF6C34E22B318CA88B199 /* tagged_ptr.h */; }; + 0F7E72B1240E5357DD9417E0C10B36AC /* interceptor_list.h in Headers */ = {isa = PBXBuildFile; fileRef = A968F1A606769CCB592834B06D61AF11 /* interceptor_list.h */; }; + 0F873595384933F4AA4C36CA2743DA24 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADD26FE6B281D8182D9CFAFDA280B84 /* credentials.h */; }; + 0F8ED67C9F8A17BF78DD60EA0AC1517E /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 14236A57326ACF9E8BB7E2B6F72E689D /* directory_reader.h */; }; + 0FAAAFE3FFAF402084AB944EB71ED00B /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = D585A5F0AB707A445E89269AB9E372C7 /* rc4.h */; }; + 0FB004969C5CA036F68BA52ACE95D1F2 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4120B479F0B22598CD098DDF4724236 /* bdp_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0FB2B84C4514FAE2D6B7B9E937784F55 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D55BA3C5D53A9EADABCA2704C8918D /* KFImageProtocol.swift */; }; + 0FC129247C0D13418706D7F74115EDAD /* cordz_functions.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BDD14A74F0B21942D941ED9284A16562 /* cordz_functions.h */; }; + 0FC2F9BE7C13787B1EE77B0A384F762D /* blowfish.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0FBE015D20DB562567D4D68C7E968A05 /* blowfish.h */; }; + 0FC34F31779B1C160A9944C8C94AD280 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AF4DAB70CEE3D3B20696D44BD32666 /* message_allocator.h */; }; + 0FC435FF39FF846C077A83618EB862F8 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C2C3907AA9C4ABE4C7E7B13E9AF0391 /* load_report.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0FCCDFA0D3CB73BB1D96FD74FCFDE558 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2B19DEC830A2FDB116E84FB2B500EF3 /* timeout_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0FDC0E32364738CFCAFFA45D56A2B313 /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6696A6292A6E9FF46FF0AF03EDBEFDDF /* int128_have_intrinsic.inc */; }; + 0FE1A23951F5CA6D8B61DE704299A610 /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = 3309249A31F1F80C8D7B86A739FAA322 /* elf_mem_image.h */; }; + 0FE1AD8BE2652D5E9C01643A2DEB25F5 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DFC2A8277DBF3201CF7309BB6EE45A5 /* router.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 0FE9EC3301F2FEB5E1079C61748CD53A /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5355BD7231CDC743BC861A50BF89F889 /* atm_gcc_atomic.h */; }; + 0FEE97B08FF776958DE2D902AD0A2DD6 /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = D3938536D0A1B83C8F413A6C30641FDA /* tcp_connect_handshaker.h */; }; + 0FEEA14557EB91D8E2AA1EEBD01422DF /* FIRAggregateField.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C5F9B27DD63B637927125533D551D7 /* FIRAggregateField.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FF3659D5AD52E2575FF560F94E5465A /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3157A3A378F000EAC6165E92B2AE9359 /* metrics.upb.h */; }; + 0FF5FE1C798C25EF282DEFD2BFDDD735 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 975216F287D16E422FDCD00B07B59633 /* ads.upb.h */; }; + 0FF95FDE16DF67C9DFCF0C208760F814 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0337B689407131D89C420A9259700E4 /* dynamic_ot.upb_minitable.h */; }; + 0FFA562815CE984FAEA1901040AD7D1D /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE9D287043E11F521F958CD1AA4DB6D /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FFC68AFD169D6F6B26E1C71857308A9 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D3B6E5614BD7670DAB4242F2391580A0 /* socket_utils.h */; }; + 0FFD7569971D3040A356293BEC57091C /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C099D1AB937AA8514F2A9D8FFAC0DB9 /* timeout_encoding.h */; }; + 1001B7684D336A8B932ADE02C676CD32 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C50049D8BA304480C09FA60E2F3BD41D /* extension.upbdefs.h */; }; + 1003084BFFF49F726668883FD4212981 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D1C7EA2FCD37DE5A3E3E89148F4AA0 /* accesslog.upbdefs.h */; }; + 100A3B007C512EDF738540DC9D8F1096 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33C76AF33796F016C01786FE4F22B506 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 101A5BA5C791C237EC94294ED938E3A8 /* grpc_tls_crl_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86C35BE09025F32AE286B78D5B2B07F6 /* grpc_tls_crl_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 102BB0ABDA1B9F3D0A05FF16A3BA38D5 /* naive.c in Sources */ = {isa = PBXBuildFile; fileRef = 0427C763D1D8E38F7D239BA72B39D41D /* naive.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 103BD3ABBAB72D1CA577F021DE6A3F1D /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B8C0C6257E215A440EC87428A6CF3A1E /* http_inputs.upbdefs.h */; }; + 10419AF408F73CE2C89E8B9C41D58906 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79F0509347570C541AC9E8F448309D34 /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 104ABEABBA39C3FDE97517551EE7F97E /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 702657EE6A06843D795E1F6AAD7E5463 /* time_averaged_stats.h */; }; + 105D9B682930BA077243C258C51066A8 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 167D26D26AD14700DD26C2294FC5ABA5 /* backend_metric_data.h */; }; + 106354975ED3C38465F77B83B01E1A3C /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C28AE572B084E805FC97C3A52FDBDC7 /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 10687B094637A4C4BFD5D214D8158A37 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5D8AAB532E5D04BDAB9899CBCE1219A1 /* polling_entity.h */; }; + 106F47DDA0BF136AF6BD877BA5FB8D6C /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = AD55A0009FD747E50AC97E64086FCDD6 /* exec_ctx_wakeup_scheduler.h */; }; + 1072FAD4AAC8C941E74F12443607E47F /* memutil.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 46183FEA8FF83CD38CCACC4A09CB37C9 /* memutil.h */; }; + 1073DD5826F66DB7DE4D0D07AF3101CF /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 00674DD5986B440E93365029671828C1 /* retry_filter_legacy_call_data.h */; }; + 107A48E43D8FF740509155D37B0D0903 /* crash.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C0D1EDFBE42B2ED9F583E96FA5D864FE /* crash.h */; }; + 107B81C27B14E008D6D52D8618DD06F9 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D739F899C346E6A692960CC8D692724B /* load_report.upbdefs.h */; }; + 10AC4BD8300158A7C93CF12BE86F7CFE /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E7B9FCE0825B18D9EAD202E9996E6A3 /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 10B2A1F84C37554203AAD6D7CAFCC633 /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = E41471B370718C31FF08F13AAD9BBDE8 /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 10B35F92081B9DC0F7E6AE60BFC816F1 /* asn1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5AFCB4462BA45D27EFEB434938710185 /* asn1.h */; }; + 10B6C286874467B7ABC645F02119CB40 /* FBSDKEventDeactivationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E664A996662FD444B171CC5A7F852EA /* FBSDKEventDeactivationManager.m */; }; + 10B7346C142BE9F11A2FBED41A301605 /* load_file.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DF0B4ED8F911E4640B6F6BCDCF0A004A /* load_file.h */; }; + 10C130BDCC604C4E9F251C50069EB360 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4F49888031BAF02647713384C7C775C1 /* wakeup_fd_posix_default.h */; }; + 10C3B670B0740AEDF2E74A81A7AC6E43 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B5BBD87DCB8E6080DBAECEFDB91BE723 /* resolve_address_windows.h */; }; + 10C651770A60438A42581A5BE08ABE90 /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = EE50117705ACA9EBE580D1ED171A91F9 /* GDTCORUploadBatch.m */; }; + 10D0F4C5065DC688C0FDC0993B801A0D /* backup_poller.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 54E488EB2A4B341F5CD2DE2725EFDACC /* backup_poller.h */; }; + 10DA381980049554016695F881970B42 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = EE65D35BE38936E3AE594C5FB94C9DB4 /* polling_entity.h */; }; + 10DF17F529218689788A43BE2D9C86FE /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 102ECAEEBE642B8AC95EAF77B423593C /* seed_gen_exception.h */; }; + 10E77D9C422DA3CD0D2100C73386A7B4 /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B6946D20F608276879EFC491621446 /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F03276515C407C5CD785E69B90C634 /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 324927FF037FFCDAF54B3D564874DE2E /* tcp_socket_utils.h */; }; + 10F377A9DCF8ECBBF96DF9111B7A1A39 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = A097A083EFE6D8D57B02A0EB2F52F800 /* completion_queue_factory.h */; }; + 10F4FAE6B8C4BEF3122E9015DDCCDA5B /* native_posix_dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03D920ED0C01A38F179F78451B8F51DF /* native_posix_dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 10F75E3E83E4DB6B03DCE6CAEBF645A6 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E691A42EF1AAD0BD557089D39C7A21 /* xds_common_types.h */; }; + 10FD38500E7479A5DDF2D363F596AAEA /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E5BCB7350BC184041797E26EE53DF900 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 10FFFD541DA20AB496325B1770CBF543 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9BD864EB18CC0DF745F5CF17B745725C /* status.upbdefs.h */; }; + 110C2ECEC7D7D7CD1C45733AC6769962 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D8234C54E88610B48CA9B1F20857F7EC /* internal.h */; }; + 111D3F1879D1D74F0225E1E4AB91A36C /* outlier_detection.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BC5DE1E2C6B2170CE161DB8BC65B8767 /* outlier_detection.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 111F6E03502EBBC053C68E1AAA46917D /* trees.h in Headers */ = {isa = PBXBuildFile; fileRef = F100167E1BA7B5E787231793F97F2896 /* trees.h */; }; + 112325E68B73B7722BFC9DCB8F041F79 /* batch_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 276F785FAC03A397E512DC4BF9B71249 /* batch_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 112508DCCCFB0D799E83942ADE34C7FC /* security.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DD168A5F901319ABC9261762DF2872FF /* security.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 112664C6C16691832E9AB975ECCDF6E0 /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DF54022A2C18CD8E0489BA46B21DFAE5 /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 112EDEAE1C3F7AF784E82E7F9663A2A6 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = AC73FD9713EF2177257AD2D96A972FA8 /* http_client_filter.h */; }; + 11300FD8C2A56A680E9206E0F8D9BE5D /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FE4FF7FA2D579817F3B8C036C29E8750 /* hpack_constants.h */; }; + 11305C7C87D52677070D4A5BD50E7C65 /* cordz_info.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0D7F3939B262DEA091AC55CC78E885BF /* cordz_info.h */; }; + 11316E2C5809F28196927F7EFD2C4F12 /* FBSDKMonotonicTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 355460D6B7E4E88DBBC17EABC8010598 /* FBSDKMonotonicTime.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 113516EFCA552BD7EEA38EDD0620898D /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BBE4EC7B42E028D542E61D944DC319 /* arena.h */; }; + 113B43FB8F65937C7BC9254D2A965DBF /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = B73036F901C3D684641CE1171B98C9E3 /* aws_external_account_credentials.h */; }; + 11450E791644F883734B140DCB95C10E /* program_name.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 09BD709C9D89BADE736CD13E38E9B202 /* program_name.h */; }; + 114D57B2E839EA146D8725573D5E9913 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = AD24BA53FC6DFBD6175D54A192B8110E /* matchers.h */; }; + 11505412028688E5DC471662BED62029 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = B15F855076143CD202655A974A63FD2E /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1153D9421A110139FD0C1084F5853877 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = A383B79EADD24AD543FC9C2C159D10F9 /* call_test_only.h */; }; + 115DE9CAB3727BB52FDB41DA43286088 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D902D1670582C13FB6341A1373D8C8E4 /* struct.upbdefs.h */; }; + 116296390411C97E0A655F4E67FAFCE7 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE2670E0253A5848E1DD9F89E4845DB /* event_string.h */; }; + 116EC8F69F0CB00A43998F16592D4B72 /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6456ED705962FD068F963C9F8FFB7B62 /* barrier.h */; }; + 1177B128C9A25EE1F430F61F1BA64AA2 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA07169A088B333584848676CE1711F /* types.h */; }; + 117CEB3F11DC1EB0B128D3E2A71E1F17 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1DE39448CB794C50ED28AA351406A1 /* accesslog.upbdefs.h */; }; + 1186F4C85194A65962A2ECCCC2E45387 /* authority.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1885890F43C2CB80F0D4F4A205EB302C /* authority.upb_minitable.h */; }; + 11879A5E29BD93A8623739A1B161A6E6 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C089D48D6151E1B4CF56CEC48C776C3 /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 118922AE13BE2D89D004CE9CC5F72D52 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 12CEBB24C5195A4EFE1CADF565A850D2 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 118C1B37D5A760E32B84C112FF2627D1 /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = 1756F094278124D0342AFC197188A8EC /* bn.h */; }; + 11980BF4D50B8896A0A380D5E840501B /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9AA4B068482C1B7DA4AB991E3163AF8 /* semantic_version.upbdefs.h */; }; + 119AAC8F669A5083DF025B67637DE509 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = C53437037A7B05B6717A650C59AF0A72 /* builtins.h */; }; + 119B89EC6BA39C66F205B9FC6FD19B4A /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = C3CE467D40FD7ADC5242C107F093DB1D /* seq_state.h */; }; + 11A0DB5B92424BDF417FFA4994F3B706 /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4273EE544A82FC13F1A09DC66D885FAA /* protocol.upb_minitable.h */; }; + 11A501A45F6E0B1EAC3458B44A6AA42F /* kernel_timeout.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C0F7911D65AE35ABB189D678A1B9C4F0 /* kernel_timeout.h */; }; + 11AE0E2F9C9CAEE79B198AB4A7DA4A12 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 664E953178B529B64C5370B83B3B78DC /* call_combiner.h */; }; + 11AE4A4B4CC7C593FA8147DB7969355D /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0856618FBDD58D2CACDA39CFBD2D757F /* load_file.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 11B10CD306D7232F75FE5BF85CA638E7 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5928FFF79984ECB96858F2A90E2E4381 /* custom_tag.upbdefs.h */; }; + 11B42A9AFC7134C816F4D678DBC2C299 /* call_size_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0DF267EBD5FC7FB9621F679FD79A1B /* call_size_estimator.h */; }; + 11BB1F55976F802F5B2401FF1D44B55E /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 3249D83376DB68858EB11310C25D2848 /* tls_credentials.h */; }; + 11C4D433618D03344EA5474CBF02412A /* certs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F63BF61B52D2BA66E8FE087AD036C2D /* certs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 11CB1CEEB11098CB7735C9B3B52C8DAF /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 93A42BD801C841DCE3C63BBC355E88E2 /* skywalking.upbdefs.h */; }; + 11CB2D833910EEEAC35536F071F14F91 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 140E8876EDF24635777F700D1C8AA853 /* grpc_ares_ev_driver.h */; }; + 11CCD832BD537718892C6A216A38490A /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA8BF8D232858F1AF12E1DAD3CDB36CF /* URLRequest+Alamofire.swift */; }; + 11D42D0E738B9753B4D04DBCB2CDC503 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = B82E3924A002E35AA886E8DB4C229475 /* FIROptions.m */; }; + 11D6C3DE386C5AF397CD1B8798DC81FD /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3489B2E9E3175644C8EC1A7B26ECE77F /* metadata.upb.h */; }; + 11D7EDA5F12ACD9B22D210DDBBA574FE /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = 1FD422F656B01D24AF2B1DBBAAF4AF71 /* composite_credentials.h */; }; + 11DC85157D0C583331C3829A897391AB /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 30FC7A2C92E15320F6E7ADB7B3117AD0 /* rls_config.upbdefs.h */; }; + 11DF5E5F3516E30B2A1B2849E362990F /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3909FCD58DD34A75D7644E315F321862 /* scoped_route.upb.h */; }; + 11FA68AA2BE63DBFAA0B3207DA71A939 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 1113D75D7EBF9099F244C81D614A910D /* trace.h */; }; + 11FCD60D0B48C10A86B223000F19E1F6 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FD47565DF241542F4C6E81F71E9053A /* sync_generic.h */; }; + 12000916B41F9DCF1D19ADB3BCE2D129 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = C6488F90B0B0A6C016A9DA067888E5C6 /* thread_count.h */; }; + 12009B6E84219F6AE3A99D5EE7E6F4AE /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9FEC5DCC48ADD32329D714C835945A /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 120452180538F523639B929363FB8F1C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 94474D2024D38D7A959FAEECB16869C4 /* internal.h */; }; + 12098103CFA4200007A08B220091A242 /* substitution_format_string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9759F3AD68DF73DBD8D5F184879AD1 /* substitution_format_string.upb_minitable.h */; }; + 120DB24E2CF0886930C7B3C2567BD90A /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 07EA3A15DD453FCBFFB9644E4331982B /* FIRCLSSignal.c */; }; + 12195C486C57A58CD42F3F9D14FBD4BF /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E4ECA7A1489C446F54E069416379E0 /* types.h */; }; + 12312F4BDF5D3E2B286171517E8F1604 /* connectivity_state.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9426DDD895464BE8CAE1DA9C640CC9D0 /* connectivity_state.h */; }; + 123213A74A29A5A80F79AEBC5E96E6A2 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCD782FDE9B645FB5C4F2F90E7C7BBB5 /* node.upbdefs.h */; }; + 125B03E872F1DC8274944901AF760024 /* objects.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 725365E125175FC6C7A6EDF6DD977478 /* objects.h */; }; + 126DD3F38C240E70E7C6B07F79BE4386 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 09733CFBCE6B0C53A6BC20CB2F08BB61 /* stats.upb.h */; }; + 127F289EB0318C78462FECC00BB28308 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3AC40F49B6361CC2C00F5D6D7510B52 /* file_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 127FF2AC90A6C0C3DEA20AF9B729AEE0 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7FA537A4942E5D67DACB8B9319E20FD5 /* config_dump_shared.upbdefs.h */; }; + 1281B088F11F782A151747EB18594713 /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12B2970BEBF325640623C0874E8456C7 /* security_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 128606C279A9BC38FF908F8BDE84B528 /* stateful_session.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BF8E6E83426025C6771927041586D54 /* stateful_session.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 128F429F4D29C6168D9A51A4D6BEB6F0 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 910FCDDC101106D024FD6966BFEAD6C6 /* cluster.upb_minitable.h */; }; + 129356CDA3CFDF7507C0ABC92DEBC349 /* cidr.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8E09FE794D42D2C542C46EBEB04337 /* cidr.upbdefs.h */; }; + 129B780A23CC9B668F35C9EC4E4770AC /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF5A1ED977BFE96D8D2D55B2FE64162 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A66DF0AF6CA06F29FADFB5351F039D /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4AA4D3A6D5A7CE76510A43B0092C11BC /* server_info.upbdefs.h */; }; + 12A8FD34A6C0D5B43881A025F83EB2E9 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 6274ED70EEE9C9449451D48E1033A5F1 /* channel_creds_registry.h */; }; + 12A9EDA551503F72160C7C98B754C7DF /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E899AED87468EAABA717FDEABC2276D0 /* lrs.upb_minitable.h */; }; + 12B2DAA9A5B5E4762C3E241BFD5BBD55 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 042DEAFAEA06E04F444CBC0D33478866 /* frame_handler.h */; }; + 12B44BD26E808FF84FADA5FB75667479 /* FBSDKDialogConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E265E34DE094F003575451E4C7026B1 /* FBSDKDialogConfiguration.m */; }; + 12BEAE2E4598FA3E0CFC497DA6CF3D92 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 880192DEF3DAC7A13AD607A3E4BA9AC7 /* outlier_detection.upbdefs.h */; }; + 12C2B7B4F7BB1203AF276CD31B439C02 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 462BFA9BD4AAC20B74D100C51E871B96 /* udp_socket_config.upb_minitable.h */; }; + 12C4F6C5F2EA6C459547561F4660A096 /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = C059A0BFCE76498885F4FF65EDF2B9A0 /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 12C6D437DA382E0BC51F484671122227 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC45B37CD9844D5B79D918083CEFA81 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C7581BB6921E2F5C4DC0F9133C4963 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = B15F654D2B9D66123601CCE42C3B3336 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C94660CA164610F9D24FFB0FB8AF44 /* ip.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF45EF61D72EBD819F7A6AA46CF54BA2 /* ip.upb.h */; }; + 12DEA3D804277335028F5F22407C695C /* fault_injection_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD514E5D6ACDD8F1DAB94CB8F050681 /* fault_injection_service_config_parser.h */; }; + 12E44919F31ECCF1239429D992FEE416 /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7F54A8EFB557515B47B3394119D694 /* channel_create_impl.h */; }; + 12F52531EA8040121BED2B89B3B1A386 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 704700246C923DD586015B33DFF80DAC /* socket_mutator.h */; }; + 12F65625965C8A6CCDCB0DAADC7CE6D3 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 99F798745055D8E8393D8198C37E0527 /* tsi_error.h */; }; + 12FDD188A73A14B6BAF8DD2C76D85283 /* prefilter.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EC2DFF1B50C5B3AD6B3ADDCC78AF85F /* prefilter.h */; }; + 1301D0F95AAD1662144009358CED8FB3 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BFD09AE34DEA633396CAF709518F0899 /* slice.h */; }; + 1303B7CEBD5F6E7C8BB9EA2B3269B956 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF01E997F8B64A183D650CA3A91F0EF /* wrappers.upbdefs.h */; }; + 131051187B4E556E8A00D2B104531D49 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B00AA305068222D6811F33E949A9EAE /* def.h */; }; + 13153ABCF0E4B73EE27BF51D02E5DA9A /* FBSDKDeviceDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EE8E0B7A526304CE2C0719C37B4A93 /* FBSDKDeviceDialogView.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 132B918B404DCE0A5562B1D8567B3421 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 585E063B6E1941B1F4289876A91F7F6D /* udp_socket_config.upb_minitable.h */; }; + 133EBAA3040250288927BA4B469435DD /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E052C7ACA7A6848D29E42764B8483BE /* method_handler_impl.h */; }; + 13403CAB898B82D4E48C5C93709EA6E1 /* common.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 6BCA06BB4286E9225870E3163A2A5643 /* common.h */; }; + 13423364C4DDEC8100F1234F2AEAE449 /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D75E03CEE98624D352F8DFC1722B2E6 /* FIRAdditionalUserInfo.m */; }; + 13439CC133B2B8034A08A1D26C866844 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F9A5DF3E10E226910426BAB4B4BE25 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 134D18FC356561E3D5BA4E9B9378B2AB /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 967F346CB6DEE2795C670C5ED6C2362E /* ecdh.h */; }; + 136731A30B58359438455655C5094A2F /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41FEBBF2D4596E7DF8F3087764FC44B9 /* router.upb_minitable.h */; }; + 1371C35C5BB569BC58F8DE85C6C9AB02 /* pick_first.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9867C30C3526556622B304743941F16E /* pick_first.upb_minitable.h */; }; + 137493B12F901DCF847BAB578B46C4CA /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = D4C2A85E8388DFCA2BBA93E79D4F089F /* load_balancer.upb.h */; }; + 138004E4AB959588FC99A95C14F2635D /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1CDBD8917E2F8A1BD7EA98055520B21B /* sync.h */; }; + 1381AD9B7E1DBC4052188CD9C60EE9C4 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B822548E0DD1429E6250389D2B1500B /* event_service_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1385E5A48826D6A0A89E1F62BC545C5F /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 36A6B42EEC7C6B56E155F31B5715CDA6 /* grpc_tls_certificate_distributor.h */; }; + 1386C63BAA0115C54F878D9DF1D3BA88 /* curve25519_64_msvc.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 5544712BFB30DB344E74DF0AD26E5F79 /* curve25519_64_msvc.h */; }; + 138EE8DDADB132BAC81C82EBD05A3ACB /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E537BA85B518821A51C8EE0B80DAA04 /* syntax.upbdefs.h */; }; + 13977A85B6F237016AF4664A8F57A092 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 476E9FC75CE82108A5076276301F21A8 /* iocp_windows.h */; }; + 13A0D72C45A2D3B2A92D35A02CB0A326 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F0DED6B727834B5F0083666C4C8E71E /* datadog.upb_minitable.h */; }; + 13B714681FC30C99C194F1D8501F6431 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = E71D3C0F6B143D70E77407B07D7BD167 /* completion_queue_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 13BB9151DA586E6A4063CDE8E405A1C7 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B61C9A08380AF73479306F79B91A346 /* ssl_session.h */; }; + 13BE0A1906713A4BA9D5E54AEB3510C8 /* FBSDKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF1F3448142C79BEB23431CA2B8702D /* FBSDKColor.m */; }; + 13C7BC06841E47E3596B735AE9F8050C /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = E1C6DC8FA47C7660CFA9A78B7BEBE9A1 /* idle_filter_state.h */; }; + 13CBD2EE53667F1B839302AE4F957E60 /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34F450EEA6A37787C36717E23C7A1397 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 13CE78C0231FFF0970F6D572AD5CCE71 /* port_platform.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3904B0C96D501803FD008EFE03257767 /* port_platform.h */; }; + 13CFD0FA00F719DCB93E96DB0E7009E7 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49DF6616812018C5951D9BE110B107E5 /* grpclb_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 13D78D23FA99209E48245FA8C817D068 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A4109A9542966028880CB8A807C2F4C /* config_dump.upb.h */; }; + 13EA31D36614AB1D5FEFCEA2EDB10208 /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = B872D203FDA6A8A32B244D5B1B537F24 /* message_reserved_range.h */; }; + 13ED86ED8062557BBD36749E8345F789 /* event_engine_client_channel_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = FE796BCEFD744AB66B3CB7979111BC53 /* event_engine_client_channel_resolver.h */; }; + 14016261280565187486FC75C8D6E8E9 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D35A392B50C2C5AAC271E23DD56D2BF0 /* status.upb.h */; }; + 1405AE3D2B12CA0510B13E57535D9E01 /* udp_socket_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 585E063B6E1941B1F4289876A91F7F6D /* udp_socket_config.upb_minitable.h */; }; + 1413AD049CD7DFA9207691E7146F9219 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7004DB89957E893C9DED5646D5ED6872 /* channel_stack.h */; }; + 141AB514ED32493733CCA6AFB86BC78B /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8529C387FC8E6CE9989E0CB752D65360 /* http_connection_manager.upb.h */; }; + 141AF82D6B95A6FA8B31AF3E9405729A /* service_config_call_data.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 195EC0FF6FF60CB384EBC8CD10DF7A09 /* service_config_call_data.h */; }; + 1422B14A1E14C6E61D45FDB745A2D92C /* service_config_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BC159E4985A12F0A622CAEB4CC7A60 /* service_config_helper.h */; }; + 1436BF510189D799C33E32725557AE87 /* eps_copy_input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC05EA13DCEB02BDDC7EBBEDB20C9C9 /* eps_copy_input_stream.h */; }; + 143979FCB7ABA84378AC4EFBE7F2637A /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = D5B00CF29F6168B1200134923B3D272A /* channel_stack_trace.h */; }; + 1439A0D71A86F50F2BFE0D78A55B223D /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = BCD6BE33FACFA28BE27C1752638304CD /* tcp_client.h */; }; + 143A2811BE6137DFACCA462CF206BEAE /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = C36A89B21E39F42EF3BC8D7DA2664CDF /* FIRFacebookAuthCredential.m */; }; + 144008DB75678C36EB978F7E6B7D792C /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = D99FDE256DA14E2B8415E8A9BBD7EE83 /* GULNSData+zlib.m */; }; + 1444B7CA9BA60B8102256FC2C929326C /* cpu_arm_linux.c in Sources */ = {isa = PBXBuildFile; fileRef = FE84EC04A5893514B49011A2391B73D4 /* cpu_arm_linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 144769332E81CA60A7317047588A1AF7 /* md4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4A7339F5D4CE983891F11B49A9DACCEB /* md4.h */; }; + 1452F634E761111FC3E803C52D2435ED /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = C30552A34197B5AB208AC1E6E2777D47 /* fast_type_id.h */; }; + 1464DE5062E95E64E49DE03211ACEFCA /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6566B5215F119EDE945A46D7ED9E35EC /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 146CEDDAADF6C76780F814609102E192 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C25019820963EDEEB6357F411264A6 /* conf.h */; }; + 146EFCFD8D7592C630D2B5A92218CC07 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FBAB3464975EB6D9038D9AECC945B53 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 1470AC93A4E9FEEC158627A2D8B9CC81 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = AF09B5128F73173272282257C4FAECEA /* config_selector.h */; }; + 1470C988B93481812C8335DD690B3C32 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72534F5D94210C74D6CDDFF12E8D98B9 /* resolve_address_impl.h */; }; + 14765E2B8E2B951A9C81783C8344ACB3 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = EC1E8DB7444EA770E8BD585D227CD70A /* FIRCLSUserDefaults.m */; }; + 147C6A5E4CD38B0EB4026F596FFE8FB5 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5C8C411AA4ADDA75CAF1EC4EA5E3A8DA /* call_combiner.h */; }; + 148E00978CEC20A142B19E3934F6C25C /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 46651ED3A21E9AD366A829124EE96C16 /* FIRCLSThreadState.c */; }; + 148EFF134D7FFE3E9200B397676BF39A /* slice_buffer.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = E1C7FCA59D7D3CCB0F4A9CAABE405DC5 /* slice_buffer.h */; }; + 14904FD518B3CBE0C4149D67E725BF07 /* sessions.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E689BFD5C4F7A5CCF55A1C8AC7053B9 /* sessions.nanopb.c */; }; + 14920FF47103C33EE77148C15DEEC325 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = CCCAE901A616A68B11CEC75AB0830C27 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1492A5AABA8BAF5B3258CAF3FCCD5674 /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC963FF936222599527EAF16B48D379 /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14AA08441123138EA18CA7962E767A0E /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C058EBA148CD89D7D088770FEC7BDD8 /* frame_rst_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 14B546F0D782C3DE70F537C54F6C4AE8 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A991A1A4D79B8510BC65EFC0194A1104 /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14B7E0E9D6D4D62F570A9C2F0B7D51BD /* EventGDTLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F4F5F489E05B33CBDCDB73853505ABF /* EventGDTLogger.swift */; }; + 14BC80700D6F31943F5969573778E2F0 /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = AFA1C856D66D434A1353FE1B7FC28303 /* FIREmailPasswordAuthCredential.m */; }; + 14C01164AB8E48351602799E98A51828 /* compression_types.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 78236B8A90818A515AAC4176A8826D81 /* compression_types.h */; }; + 14C48DDCCE615A85C395E53EBA7850AE /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA1653975165B59F4F656B9C046A2694 /* cluster.upbdefs.h */; }; + 14CD19743C99C139D9903D738F249448 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A5AB6BE3F6EB0BD817ADF418CDA90EAB /* value.upb_minitable.h */; }; + 14D3FC60DCDF676B82679F1B73257AA2 /* function_ref.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 66337294DE335FBEAED1FE737C7BDFC3 /* function_ref.h */; }; + 14DA15A4FD5BB4DE5C7E177944F140EF /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 89126F02575A746613161F7C170589E0 /* load_system_roots_supported.h */; }; + 14E558BFEC327142337FB212E8ABB178 /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9998EBC95031E4A952DC68F268355 /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14E7552157A9916930AC1C13EA71C8E2 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7200826E96969B60CA9D4BB190F5CB3B /* write_batch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14EBD784E612BADF3B96F21743EB189F /* str_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = A23F05121D096FDD4655C7C46C2EED3F /* str_table.h */; }; + 1501372947F03140FCF7B5909A822FE4 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 520A3E57A8DDB1B6E1233938C38D023C /* filter.upb.h */; }; + 15100FF62B5F3D4A4AE33CB141B86F6D /* config_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F506A8A197B588F9FDA209A3C7F8FE /* config_dump.upb_minitable.h */; }; + 1520C5DF315D0A452411D26D8654711F /* atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AFEB8DA88850D45913D5CC66D07572 /* atomic.h */; }; + 1522FCC5FB22810407EC1FC5FBCED142 /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29579D714E026D8997FFC4D40EEBA57C /* error_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 152FFFE9122928C9BA9EB750D90B4780 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 6D29B955AA5999DE2E293C0A37D10F8B /* status.upbdefs.h */; }; + 153A670052FA0D0D8AB1A98302E031CC /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = F09B17F6502AAD87CA588DC5F5CB90F9 /* FIRStackFrame.m */; }; + 15487E2FE378853ED4CFE555C5631941 /* FacebookSDKStrings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = FCA7E285516DE63FED39AFAB0BAB3FBA /* FacebookSDKStrings.bundle */; }; + 154A5E0B2131E37F198F3CB290B859DB /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA869F11E65CF95C057BAB2F374ABCDA /* domain.upb.h */; }; + 1557CDA19CF4946EE42E351BFA2710D6 /* config_vars.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06937BDE8B1B06D2BB6716C2EFDBB615 /* config_vars.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 15610A58BD3C0D6AE911E1395C71E9F7 /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0531A33B3B23DBEF2AE9DB7E908FC467 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 156839207CFD0D5BE78C96658FFF36C1 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CEE9DA45EBCA53AA803E0D0F863BDF /* grpcpp.h */; }; + 156B6B8A6D1153E022FA5EAD56F4590A /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6B35E78E07E97DA2BE27A75D1586F40C /* deprecation.upbdefs.h */; }; + 15790819C2AE212534D2E31C54726D98 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 45504586DB648020C757B47EE1A87B9C /* python_util.h */; }; + 15796D6B8D02C3BF53C0FACF61A2E12F /* const_init.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = B4433F0BED3DD4926BE32C7F59CCCF02 /* const_init.h */; }; + 157F4321A5F0E054E8D1835B347519B9 /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C59F7A07308B84035C60CBA4ADE93FDD /* trace.h */; }; + 1581DC995B1629B1C0008ED7A8FA5E15 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 931F859713CFEC938AC3CBFB463DCCA0 /* checked.upb.h */; }; + 1584EBA8B7B83F0074E7FCB69FFFD59F /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = BBD514E5D6ACDD8F1DAB94CB8F050681 /* fault_injection_service_config_parser.h */; }; + 158F99A6913AE8C0B5A7D20A7E3A4519 /* descriptor_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 88481D67345334B11AC692394A2A3E56 /* descriptor_constants.h */; }; + 1596E020935893B5E15290D5CF8B6E9F /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 434FC5BCA3776D4C8FE2416C48938107 /* ssl_transport_security_utils.h */; }; + 1596E5C9E207928D317EAD0CD3F2E3DB /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 952B64ECCBB03860B15675CFEA3A4CC4 /* ref_counted_ptr.h */; }; + 159EA7F12C2924E74A79A3C744C26C5E /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C0608D8396B4A147998B629C97B132 /* uniform_helper.h */; }; + 15B99374F40E72EBCFD2EAB3251154DC /* StringToHexConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D872D4A90F06147852FDEFD7B889DF16 /* StringToHexConverter.swift */; }; + 15C50F88815405D65FACA7396DB24612 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = EC2F00712FC7EE1BC6A0F861FEDFCAB2 /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 15CEF7B5A6EE073474FD2C088E3F2F4F /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5155949D59D63F5F615087138900CA /* connector.h */; }; + 15CF8C02E245875F04AF75C4660837D5 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5599BC18EAA61CEFEFD8EC4C52B87CE9 /* ev_apple.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 15D229B10918F0A27B82726C3578A75D /* log_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3736FE31042C781E7AD85DF3846686BB /* log_internal.h */; }; + 15EB19EE83DA455ECB02878F9D3DF8BC /* endpoint_addresses.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = DE7A49CECD389B8C2149CEA10E1BA576 /* endpoint_addresses.h */; }; + 15EEDB3DAD17A78CAA14F745C1BDF911 /* cpu_aarch64_fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 249E287FAB0F46B28FFC6867B9839237 /* cpu_aarch64_fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 15F8BBDB9ABD79C19B9739B95AB90563 /* pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCF127BDC10F759E018660B33620549 /* pipe.h */; }; + 15F9D83777AF3F926FBCFF1644938F9B /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF98C80D38C02A1561B0885311EA4FFA /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 16006D2A8759495DC683CD7F8338C079 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E28725FCD17190A48271CDD87EFA96 /* stats.h */; }; + 1603FD59F25826A96F6A0C59D101FB37 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 3E42701F635480077E799571518383E1 /* security_connector.h */; }; + 160864B9DEB40081991ED33E9EE405A9 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7F7D5DBB2ED192E20AC05F7477482A /* string_util.h */; }; + 160D4175EAE130F3AB4AFADF2BB3DA45 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 11C55FF47033A21639D06FE209A13FE9 /* work_stealing_thread_pool.h */; }; + 160F3D67E5B9491892CECC1BED1051D4 /* work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC01C3375DF8E9CCD6B3FC32FB4531F /* work_queue.h */; }; + 1619201850C3A07D74D242E351B3CB36 /* FBSDKServerConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4D6DE797B2BF05AA19830747A36DD6 /* FBSDKServerConfiguration+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1627357118413B436D3C8EB2F149D38F /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = DA43ACA20FB56311C79C7D6992F28AAF /* channel_args.h */; }; + 162E5A5C0F98BE180AD262972940385E /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = E54DB0ADF1DE0E5B1DC3B88269DA1A6D /* call.h */; }; + 1639056885FA8791DD719064AF333FA3 /* lhash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7FBF3ADABDBEA7C90217E5FD7AA0274C /* lhash.h */; }; + 163922657103E89ECB31EF93A7426B24 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7D7DB2029934A01A86BBF0C6303782 /* cel.upbdefs.h */; }; + 163E573FE829EDE0520EBB1D4896D1FB /* for_each.h in Headers */ = {isa = PBXBuildFile; fileRef = FF69E35CCF06F522DF4630762EB50302 /* for_each.h */; }; + 1647C7A1713D07728504F783E7A5C60D /* get_current_time_chrono.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 24095270D50CB4758E5CCEC708790AFF /* get_current_time_chrono.inc */; }; + 16484DCAFF2F2BBEF4E223CD558C8ECA /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 89979B6C7FFCB6E4885282C2F03502C6 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 164B56E75EB6A1E06F7F261852326BA9 /* cpu_aarch64_openbsd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AABAB210B72304C565898A24ACF525B /* cpu_aarch64_openbsd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 164C513EB2F4B4DA32413531C40319D6 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B21E2B89D1A7E42F1390347DDCBBB0C /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 164EE3316F4409FBEF1DA5B59950A8F2 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D060167DCF47B640338CBFDD6D7EAD /* http_connection_manager.upb.h */; }; + 1652243B30782DDEB625382FDE1858D4 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 5827D54E48155DB5164D23980D1654F6 /* message.h */; }; + 1656BA993CF89EF6093B165CCD737170 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = D7104CB6BD39CEC58FCFECDB069AF2D0 /* ssl_types.h */; }; + 1658833D1CBDF141379584AAA208CD91 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44FA8E88A17C45BA9D7BFCC874485CF5 /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 165E53DE3B4984DB605E652A3CCAB109 /* client_stats_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D9EC2ABAC7F787967D705769441D246 /* client_stats_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 16667D80300066208EB9021CBAD748DE /* private_handle_accessor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CDC48DE4A8A024738B189B3F401F760 /* private_handle_accessor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 166FB5E6D86438F53A3857449E38E46F /* xds_health_status.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 16400AF1EB01F50C2B1A4A9A0007007C /* xds_health_status.h */; }; + 16824969E3A80B82D41B74A7ED8EEF07 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 38A4F5D02B383FB0FDE19668EECDF132 /* custom_tag.upb_minitable.h */; }; + 1694FBD9CB0F1D8BECC3869C17C10D64 /* versioning.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AB650BE9BA281C830536AD2E57696D0 /* versioning.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 169B65489D9E7982DFF8BCEE4C51F0F1 /* domain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA869F11E65CF95C057BAB2F374ABCDA /* domain.upb.h */; }; + 169FEAC2F51DA09C6F956E5412CE5D6D /* atm_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7FD8184C72CB03F002425E23E210EF46 /* atm_windows.h */; }; + 16A2823C637F7D2E2FBB7B0DCB943AEE /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 60CCC2C0AA5FB1BA4538769CF2F5E425 /* client_channel_service_config.h */; }; + 16AF5A11851A3AEA571B24F6BABC6BCC /* rpc_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7A7025069235CBE4CA97133170E1C9DD /* rpc_method.h */; }; + 16B3A1D4E64419E0B4CB2C5225294E9E /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F785FAE0FF3A81CD14B7CBE43785DB7 /* xds_channel_args.h */; }; + 16CF0E048C6AD7E17340E7E525745AB7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = FF8B41DCE927E3E5776E24F9E461D9AE /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16D3142CADD4920D12607F4D4F4869B7 /* curve25519_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 9D9AAC87CC4E55348A92FB3690FCF9B2 /* curve25519_32.h */; }; + 16D97B6143F41CB388C7899DD901E81A /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 7FCB4D7476A3D508952EBE917ECFB9EE /* transport_security_grpc.h */; }; + 16DA8DB247EF4FAA2F8766A2AA783052 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E1C8E546B7CCE5D647C794E37D3520E /* router.upb.h */; }; + 16DBED3A48C4EF11BC0F0DE52C307EE2 /* decode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = AF75B9495B657565F351B102C6424CE3 /* decode.h */; }; + 16E0840F878F058D71460F73C7E556C7 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = E5206A14705293CC45E74A95220224B7 /* backoff.h */; }; + 16E5A36FAB8130BDAC526CBCAB69BE12 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F9499DC636B7B1CFD05CA2FF61664F /* json.h */; }; + 16EC51F0200D055FF74FDED7A10684A4 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CADD25BA50F9320F2C9C0FC6C5ED210C /* resource_locator.upb.h */; }; + 16ECBC9867477DFEB682EC9699D01AEE /* work_stealing_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49CC4435CEF6E673E70E4ECDBC86ACD3 /* work_stealing_thread_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 16F9AD59895208F5CD8B8FDE5CCE5388 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 16F6973C71247B0DA38FE8264F97C7C3 /* resolve_address_posix.h */; }; + 16FE29A860B2558B014C970EACB360F5 /* container_memory.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DA75A507E719903D2064EB697CF586B6 /* container_memory.h */; }; + 170998967DB75230F74881BBE3559EA0 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = CB330D624113B5BA45CAB97D76B425CB /* byte_buffer.h */; }; + 170E32A7083F716F54F088C9F889EAE4 /* stateful_session_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D2712B1470F76E1C899CDF59EE6B50 /* stateful_session_service_config_parser.h */; }; + 17155979B6AAEC63CDD4658ED71B4373 /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 4E7B4253EBB52E74F4BB8EA50C5B331F /* oneof_def.h */; }; + 1716CE0A3ABE65C991036CFE7CEFD7E6 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D4311CD0D6322F4A5A5E61E304D44641 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17271DBD07A2527B7CD4F71EF77EDDC6 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A92B67678D7CC5B14C124DC2EC2E41D /* collection_entry.upb.h */; }; + 172CA387E4021070701FB9C4065ED3CE /* resolver_factory.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = E5B2F6F554AA7BF8CB0C10FCB73B2665 /* resolver_factory.h */; }; + 172EC87F5FD232509E5BC79611116A61 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 03F97215454A794F48BC5C2AD0F11EA4 /* decode.h */; }; + 17481C2E25D6C141B55D2BFBC3A587A6 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FF31DA07A359FB043DEB6DC1FBA47783 /* backoff.upbdefs.h */; }; + 174C5607CB7075E820754E1C01F97408 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = C831018E2E0EFBD4B5C4CE1E7CB043CD /* basic_work_queue.h */; }; + 174D380B3E8938E70E3AB6BE3063210E /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 734A623634B0C342E6240597BD853C3C /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1751B17FB8606F7169DD7850BD6046FB /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A9997FD53D84EE8EE4DF0D9A412A12BF /* stacktrace_emscripten-inl.inc */; }; + 1752DE2C128EFD7821AA70177BA2753A /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 9CAD5D5CC9D260B6C3FD57528192F5FB /* dynamic_thread_pool.h */; }; + 175A795CA8A3DD9CE8F6AF384A4C2C3D /* handshaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 296B5518BE12B5ADF27F76FFC05BA766 /* handshaker.upb_minitable.h */; }; + 175EE7C460AE70AB0974CB44B708F247 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C6550250CE95E675EB189FD053D7287B /* wrappers.upb_minitable.h */; }; + 175F541EBC00BDCC18D0879F33BE1758 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = CA56E7C9DECB1E588D7A82DE5D4DE08D /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17610C341B72E62B1548FB95783CCE3D /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = FC626C3ABCE615F68F6622071BF4D02C /* stateful_session_filter.h */; }; + 1765ED054198E23C6C1DDBBA56A9DCE0 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA64FBA7286618B844E2AF7D0717A4A /* retry_service_config.h */; }; + 17687AD18E2C140CF288234B5208345B /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = C31CA087009AC09B3938BAA50A4AEA85 /* FIRStartMFASignInResponse.m */; }; + 1769D31D6E1E943642E4D35CDC3DC36A /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F5D4FF28BA8A4E5DED92935490964D /* xds_listener.h */; }; + 176BE4714CA85E3BA505FA6201A1B034 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 3AD555EB8BE7918273A7E282BA85C8C8 /* swap.h */; }; + 177263112106588C5EA5051317CA8DDE /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEE0F94F0D4E821D6E4EFCC04B54965 /* bin_decoder.h */; }; + 177365461BFB1C85BF249138F42E68B4 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 07A85BBC3AE927B528663D13A61D4C28 /* lame_client.h */; }; + 1774DA293E5DB799E690010D6D0F6A5F /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C7D7DB2029934A01A86BBF0C6303782 /* cel.upbdefs.h */; }; + 177DC0697906B342ECC1E2CF47FEAD1B /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = E2500F487F6AA1532F8FEEEF1EA97707 /* enum_reserved_range.h */; }; + 178289FD987ED59D4CCBC10FD09E79B9 /* cookie.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AABBDD87E1B7718E7D74B8E75ECD43EE /* cookie.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 179057129B09FB212EED33C8FFBB7E0E /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0B210E5D7498AFC73473C794A8037D /* alts_handshaker_client.h */; }; + 179A26B572E7604B23D47146F084E252 /* FBSDKDeviceRequestsHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 27BFFDC723D955E6F1BCD09F4992A679 /* FBSDKDeviceRequestsHelper.m */; }; + 17A47D1DF00D3C58BDDB1809C9D66643 /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F31E87C8FFD63C857049BAE97EFA6326 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A553135700B1EB66B868CF00669B7D /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 54938FD7E1E99E34C685EA5143983EE9 /* status.h */; }; + 17A76AAEB36FBB11AFD7417D4A4C517E /* WriteBatch+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F366FBEB70B8638D4BCEAC6B65715B4 /* WriteBatch+WriteEncodable.swift */; }; + 17AAA6933021DFA969710E300A3CFCCF /* rc4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D585A5F0AB707A445E89269AB9E372C7 /* rc4.h */; }; + 17B120E9D7F97492B1C04EFFE59951AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 17B7DDC43EA896DA9D19739D294D1E9B /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 56803A5BD4C3E16F5A674D9E5FB32880 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 17BE7BEB7066975E2445BEF3876726AD /* FBSDKURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FD0B5B8A38EB86EEB51F03B419ADD5 /* FBSDKURL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17C2EE15BAB93BD9BD1E7A0B30F89DF8 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BBF9D91C0920D6A3336842D2A9432D6 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17CC2EB7742C73F69897850B83F28B8A /* elf_mem_image.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3309249A31F1F80C8D7B86A739FAA322 /* elf_mem_image.h */; }; + 17D4A0A72FDDDC884A98B582C27A462B /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 74258E045FE9A0062ACDC0019024358B /* internal.h */; }; + 17DAEDDA7CCD62D71DCC95626490FFDD /* httpbody.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECF0A062391796E90C6039670E91775 /* httpbody.upb_minitable.h */; }; + 17DE7F6A4760D4D867F47C7A9C495415 /* accesslog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A978AB01FF78E73661C19B073942A993 /* accesslog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 17EBCC269192315AD096AC505741E24A /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C0DD33433FFA6807DFF864F21EBA62 /* FIRAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17F08DDB46C96B7FEF67721AEDCAFE90 /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = F54AC6AF3E0B6B56F2ECDD6A23CC4666 /* direct_mmap.h */; }; + 17F0F38F472943C0BA84EBBBE831FF0A /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9AD0C399468DA572136CAE86892578 /* alts_frame_protector.h */; }; + 17F60E7C6DDC3080C7DB438C0504B6DB /* symbolize.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ED2215B99B2E6E039AE270318E90F8F1 /* symbolize.h */; }; + 17F7611CAB8B030547FD99BEFE96806D /* FBSDKGraphRequestMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 01AF09A8FB896E366C3E47B7975332F9 /* FBSDKGraphRequestMetadata.m */; }; + 17F78C7DACBC35239A2346C2BB7CF785 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = B7474BB8A9EDE5A2717BE78437126845 /* httpbody.upb.h */; }; + 18027EC423AD38676CE197AD2D300052 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 304AE726D484BA2928C1569B5617B493 /* pollset.h */; }; + 1803E9BDEF37219D3001D286A979C42C /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F05A9384C55956B000020425C8582748 /* regex.upb_minitable.h */; }; + 18099DF29B2D7FF1C62B140A9FA68494 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = B9782E4B0AA1232E826B40E29F823AD8 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 180BE95F60406A62CD794746BFE108B8 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F698F53692D051BB4C6D1BFE3D2A51C1 /* KFAnimatedImage.swift */; }; + 180EEF039A101494DC5BBF7CFBB8F07D /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6639F825B1F5D0EBA9E94470D661844D /* status.upb_minitable.h */; }; + 180F78DB79293D39117B9331A05EC227 /* commandlineflag.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8D116A2C7C9284BE01F6BBE45A35BDB7 /* commandlineflag.h */; }; + 1813190603CD65C96F12F920261F8566 /* p256_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 17BAF3C4A7F98749D7DB3B6764214D42 /* p256_32.h */; }; + 181A85FC3BFB50D0E5A222722421351C /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 58019019C02E1CCCD55C30ECF4B2BF20 /* stats_data.h */; }; + 18292AF5EEDAEF886C07CFAB82626650 /* FIRLocalCacheSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A99D04E8C9483CAD6E58110933D5AAD /* FIRLocalCacheSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 18365B062C99168A882959FB3DFF90C8 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 166ED16BB8F4F774A8DAF8AB097C5815 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 183D8B3E057B885EA7DF9A8CDCCE9029 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C103A6A8C5CBA809FCAB4870E85339C /* ConstraintMakerRelatable.swift */; }; + 184354D05E499C6F59FDD49FB17C1A0E /* FBSDKInstrumentManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0F2F1ACA0E48C609C0BF04C44655FC /* FBSDKInstrumentManager.m */; }; + 1854BE3F59057FA536570BEDEDB42B8B /* stringify_sink.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 17DA4656ABD065B24B858811D769722B /* stringify_sink.h */; }; + 1862E57E3A168A9CE40B2050EF8B5123 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4B0A11252FB9702070E354D82D2858DA /* xds_client_grpc.h */; }; + 1867403BA2EB148CBAB4783931D368DD /* typed_struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1ADA24C25CF60AC5D8F637A76BC24AB3 /* typed_struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 186751616AC3EA0C386796792902D0F4 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6690A4D06E95E04C825C452F8C71C777 /* xds_channel_stack_modifier.h */; }; + 187178A9F203C9343FD1E7C78397BA5F /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70209DE383128F80CCC9BBF7022307E8 /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1874F98DED1B13A0A43E57BF1F0AEB8E /* FBSDKUserDataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9043CE0FD8B12F5F5916BE44B86CA101 /* FBSDKUserDataStore.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 187C90EDF1EF5D5BAEF02AB6682CE003 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 71EB02048AE893D76F572CB6952E150B /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 187FB55BBA7FD28BF59B1402EB8B1E8E /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = D67DA71FBA2308277DB011354B7B63AB /* status.h */; }; + 1893A59B17C9012AC114A63095BE60CA /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5062670A66696A9B7B5CC25A2AAC16 /* base.upb.h */; }; + 1897805E63B63D4F73DE74E4FD7AD694 /* health_check_client_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 751719767A12B1B026005FBE1B610B8D /* health_check_client_internal.h */; }; + 189B1E7119295CC6BBDE3E44385E3E2C /* unaligned_access.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 78D6477D47444CC4086FB290AD1948F9 /* unaligned_access.h */; }; + 189B2606BCE65AABA759250F655C36A9 /* TZImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 344C70F1A4C13EE08CB5A21AB44585D7 /* TZImagePickerController-dummy.m */; }; + 189D3801560D32AE44B4B312B06539E3 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B566B5EC448034456600FF8068F55AEA /* resource.upb.h */; }; + 189DAC4E65CE8461EF2777DCCCFA4598 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A03F2D70D1D1B86AD09724CFE68FF2F /* file_external_account_credentials.h */; }; + 18A5FA4E58AEF3AD2C074806EFB7F87D /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = C6AE6B3FCC5E18BF443F021FDBA2B3B7 /* bytestring.h */; }; + 18A6BBE100D14C34E5EB0EE3D883B189 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B16B2784A1F0B05970DACD21A8FF39 /* json_util.h */; }; + 18B39E230E7DD76EC703268D682F59E7 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A0E2F5F961481198732507978F50C3 /* stats.upb.h */; }; + 18C137B323A1969D55FA48E4190E5A03 /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DA8C5F3CBB6A113CEBA9F171B2CE37D0 /* semantic_version.upb.h */; }; + 18CCE1DAFC16DE2289F29326EAA4A61F /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C234FE469BEFFA259C3F4E08AE20C16 /* prog.h */; }; + 18D67BDD90FC356B1300BCC9E7E98AD5 /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8F9754309134FFD36E727ADED311226 /* socket_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 18D8F214483E2E65BA7AC07663C53F7E /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 2BD23DFE2AEFD50B6D959CE1BD1A0C40 /* health.upb.h */; }; + 18E0B4937035F17206D623857AFDA61C /* merkle.h in Headers */ = {isa = PBXBuildFile; fileRef = CF57A7B6ED159A6D81D564DCB9F7E96A /* merkle.h */; }; + 18E2A781513B3598D7992259B55682F1 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93DFAF18F9DC395353EBDB6E17036466 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 18E7C79EF34D935240E5D56FE3EAA021 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BDC33B952AFE9EF82DCD5369B3B967 /* extension.h */; }; + 18EA73F5E25D9D81BFF83A728DBD2047 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3898D90349B37CFA2F2BD513393E50F4 /* sockaddr_posix.h */; }; + 18EC236E4B552ACB4296AD987FAEC02D /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F24957709F7A47A32D2145CD817D8FE /* uniform_int_distribution.h */; }; + 18F52185FA71DDC2A74FA1CD1A81A3A6 /* audit_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4B4F1B6C1759F53BFFBBD22829E935D /* audit_logging.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 18FB710CE04876E7DD4D57D5EFBC0BF1 /* pick_first.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6A7B9663D35B5F9DC678735C6C6759 /* pick_first.h */; }; + 18FC4B207334ACFD7B42BB9A299002AB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4CD641701F99B8793587E3EF169BBBE4 /* PrivacyInfo.xcprivacy */; }; + 18FC840DADBAD5FCD91C19305F30730D /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B681F99BAA7227C03D826DBE4D2E51B /* file_external_account_credentials.h */; }; + 190ACED3CE95932A216C8FBF7B62CD86 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 383367349D382C5493FD3C7C0AD8B0D7 /* endpoint.upbdefs.h */; }; + 191292255AEFE70E89824A9F9F9054C5 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EFD16BF22814106C3659B73FE770D9C3 /* hpack_parser_table.h */; }; + 1914F809AD5C9BD9A9CA594F13BF99B6 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 54175CA9F046F766F33AAE32287D1100 /* spinlock.h */; }; + 19197AFE9E5189C5031166BE34FCB2EE /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E13A6EE45F5C1CEFF594B79A5E56CEE8 /* filter.upbdefs.h */; }; + 191D376AC4033279D43E11FF5075ABA9 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5C57C4AD7B0FFEBBC087FF286D2655 /* encode.h */; }; + 1922034391AD9856E31AD24A4EB38276 /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1987A908DFBA7A903CA9CF06E9BBF924 /* address_is_readable.h */; }; + 19248C68A3AD211333DDFA6C8AFA4CB7 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F7AEDE035ABDA429AA2ECE7B25E8FAC /* cert.upb.h */; }; + 1929F46764DAC4A6628AF396487DA2B9 /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 925D857E35740CF5DFBB62215C234BFD /* server_info.upbdefs.h */; }; + 19369263C81B653488EAE24943828631 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2EF7567A65647FB4CA55A7CB6DC228 /* alts_zero_copy_grpc_protector.h */; }; + 193A3E947462485FEC0A81DD32C5702C /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DBAA8B818B5D7EC873BF03BF72526F /* iterator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 194046D1B88B09B5A61025F9F4DEBBA1 /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 021A132FA201AF8F9268BF36DE1F3233 /* trace.h */; }; + 1957C87597077FE04F94437E69B57244 /* vsock.h in Headers */ = {isa = PBXBuildFile; fileRef = 13915032D0B114E937BB5C725A0B9BD3 /* vsock.h */; }; + 195FDF5630FEBAC3B89C4D24639CBD51 /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC66ED798BDF0147D6E7FD62877B5B39 /* frame_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1966E915A06F297A867CAFDA106F643F /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A5779B12A40DE7B1823D1858E94F0C /* trace.h */; }; + 1969D1D92B708E2C00ABDBF9ACD8DD5A /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 69B63BFAD6328893240B6BAA8253420A /* examine_stack.h */; }; + 196C5262E963CDE653989C4072D304D2 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD2891EE54F5C3D774D2D1783A72519 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 196FC0F067161AB1135C73A5F66804D5 /* common.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = E009B0B46358EBFA777795FB03F0AEF5 /* common.h */; }; + 1973A73DB1DC4E755BFE3AA70BA4F62F /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 719A6AA385499D039EA77F612AB6D262 /* tls_spiffe_validator_config.upb.h */; }; + 197457852FC83E905248660B0F930452 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 744917350A14EEAFE5874A04BECEDA5C /* AuthenticationInterceptor.swift */; }; + 1990BDA46557C133D01491EE7AA459EF /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FFCAC397DB0F74F647277B5B515B0B /* http_uri.upbdefs.h */; }; + 19940D07B402F635610185A62A158045 /* sessions.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 19437EBEAA186FA348CF59405FC8D6E6 /* sessions.nanopb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1994DD53523B82952069C0D948385002 /* common_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 60974EF69B1484582DF23C543F229C0C /* common_policy_traits.h */; }; + 1999E1367859EF6F165EBBB494FAAA9D /* client_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B4AFD11BF80F8D85D3A788B7E8B727 /* client_channel_internal.h */; }; + 199F1B549A74F1CDCBDAC0CC7F1FB26A /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E4DFA2E53B585C9BED91D23E32A759 /* curve25519_64.h */; }; + 19A8B96767479821688146EC82702D7C /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B76E00EE4152ACEC6A7EDA536423B6 /* http_server_filter.h */; }; + 19C0B09F8B593A9FECB2457E7DDD4231 /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B478441A73E763A20CA702F1EA83A71 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 19C3C8176F7029BBFA6D2C1ED532A116 /* tzfile.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 18146C7EB413A4F310202598CE889CB8 /* tzfile.h */; }; + 19CDE950E3DF6B639D081E92D93406BF /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 925C4C9648E7D5A8F9BFC257FD818688 /* ping_callbacks.h */; }; + 19D5235BA0B0FF44459555335A665373 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3E3312B2C72FE2F3DFAB4EFA94BA22 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19DC62C49190E2E62EBAD73AF77449FB /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 401F07B66BE397BC40F5F28FEC6D0EDA /* unicode_casefold.h */; }; + 19E33BD9A5FA52D5D5C14F3AF32A8BA0 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DB9DC7E5DE2D9C15677B61B36081821 /* internal.h */; }; + 19E4942A7590BE4A3C607A1FF5F77620 /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = F07D30E0A40454CEFB2B45E0C9066998 /* engine.h */; }; + 19E959B2A7D303C3F26543312856AF7F /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 7019A5CB967B61B830D03F00D94003B6 /* local_transport_security.h */; }; + 19ED5F27C00B067A314E3A7FBE2C3A18 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4DFB39B29A23990C8F77BFFA2D0F25 /* message_compress.h */; }; + 19FD01241ADA982408CB17F6246839F2 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CBA5D57AB712C13D9CA5F76DA5D37FF /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 19FD9072320B80A5D1E61FAB68D57F95 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 969C62914FF38BFF0856F98D616CB14D /* wakeup_fd_pipe.h */; }; + 19FE3A42060BEF3259B893DC672ADCDC /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A94DC94B39988227912E1F7A39E37E7 /* listener_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 19FEFD73D6B6299C613D74EE39B9DA09 /* health_check_client.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 48E7B61C7EC0E0DA55736BDB920AED26 /* health_check_client.h */; }; + 1A023CF60B3BA061EA6E677B988AC4EA /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 130D97DA099327DAC2E9C2C42FDBAAC5 /* config_selector.h */; }; + 1A0589129701E067B1B7B6AE0EACBEBB /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C36572BAA189CD8738FA6D5BD6FABDF /* sha.h */; }; + 1A07A8E84C2CA516063B0AD57F3AD2AF /* posix_time.c in Sources */ = {isa = PBXBuildFile; fileRef = B4F33589811F8C171543B5559554A2D0 /* posix_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1A0926341B299A92FE84D63F3E010FE8 /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62DC7C3ABC030CBE5373EDA4ACDCE74B /* xray.upb_minitable.h */; }; + 1A1559ABE996CF2B67064EDE641FAAA4 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 5AB429247778E8FDB8334D46FE8B94EC /* external_connection_acceptor_impl.h */; }; + 1A1A41FB5D578148C7F3F67E798DE174 /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4601E2007BB293DAAE07AE2019DA0E8 /* resolve_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1A1A7D2632AADD545131C0A34673183F /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B67A0B06607E185F277467D822D23DE /* pollset.h */; }; + 1A1FB11BF6CCB37ECC08946EF938975E /* client_side_weighted_round_robin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBC73D6E8DDD1F50A6FBA884535AF9C /* client_side_weighted_round_robin.upb.h */; }; + 1A20CC9401DC0AB2DE0E366EE3404414 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5FA6F82414A66921AE3EECE4A25C8A38 /* wrappers.upbdefs.h */; }; + 1A22F799A2D4EC91A4955B6676F766B0 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3AC3D4F575386A941488816EAB2BCE51 /* ads.upb_minitable.h */; }; + 1A2625F2AE40773648BC32920C0AA597 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = F89E6BE6DF2A0C3D2CA0D8A886CBC815 /* backup_poller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1A280972A3B49608631C74965ED95F45 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A29984D6CA3171F4061D9E1AF5568D61 /* overload.upb.h */; }; + 1A30899B6A33A62CAC97834537E0F124 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 14AF35B8B79A4E6F7814F78C31091869 /* civil_time.h */; }; + 1A364F1B73ACF1456086AC6B0D20BD07 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = F6FA8C3518DEEEBE28508BB3D189C493 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1A3DF8A8E42DDA9B8B5F553D0405A2C2 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 9505DB34B0C4EEC0F865510FDA8B32D8 /* core_configuration.h */; }; + 1A4FCA48C8F111FDB3DB3CA33F1D965F /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A81C92DA60AB04FC5EBF8783D9E3E2B /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1A584E725572301A0A46AA9CE456D6A0 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = A210D8C33F560CBD13881279872C5758 /* map.h */; }; + 1A714CF409913C680D1B2550E231BC46 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = AD7B09DE650C0EE784AB640E1BA838C8 /* proxy_mapper_registry.h */; }; + 1A750F9FA054C96C3374205AA3A22164 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = A6780AF02514E89AAF2279370BBFABE2 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1A75E19AEE66409083B332EF82ECBDC7 /* status_code_input.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BC61F4C4E0B88A5EAE49D319FB76DE33 /* status_code_input.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1A8295EF9185817AD929BD99FF0A8DA3 /* context_params.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D53335DE83F827DB932D33F6CE2FC8D7 /* context_params.upb_minitable.h */; }; + 1A8A23194F2649007D8083B59341DB45 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F22A086E67EACD5F24F3BF603BF18A4 /* TZVideoCropController.m */; }; + 1A8BD015D36D207A12B64E4C6483C22B /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 4AE51C6386065DA7D79DA3191A7513BB /* external_account_credentials.h */; }; + 1A91D457AEFF8B736E6ED7973E39E527 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6154FA3F2333D41195377520E7B1CDCC /* discovery.upbdefs.h */; }; + 1A983E827E6C1138C38400FF808659FC /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B821AB26C21BB052B34D5662A25C6D6A /* FIRVerifyPasswordRequest.m */; }; + 1A9F4345DD40FBD6640C8A0B7627193E /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD2AE59D6BF823B584232A6C61B6B21 /* endpoint_cfstream.h */; }; + 1AA1207946935EFBD8E660AE9B2C7CEA /* thread_count.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E0130BCACA7BC76A58902A8C97DBF8B /* thread_count.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1AA6724F499578513AD3F797088BA4D5 /* message.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 5B2E99F1280B86FB133A0236C86EFDD6 /* message.h */; }; + 1AAC94305C9BC4E89D8125275D79EBA3 /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 104F8040DF8D71855263CA6F905F6F68 /* wrr_locality.upb.h */; }; + 1ABA390C0DE2DF3E4912EA824BA3356A /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C23FC429DE5F1B663A7AF880B442D9C8 /* string.upb.h */; }; + 1ABC7D943034117A4B5A765B661E9C90 /* FBSDKCrashHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EA1E51F024272503C513D3903C226C /* FBSDKCrashHandler.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1ACDB4011C694CE2575F62AC836579B3 /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = E36B6486D41A689A74994A55366E905A /* def_pool.h */; }; + 1AD255D6960ABEA3251C1360ECE22052 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D231913482767BD403643DD44A073DF /* TZAssetModel.m */; }; + 1AD42153A694A6C0D75E7A87141C8B7A /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 446C7046C55520ED8CE80B159A908FD1 /* debug_location.h */; }; + 1ADAB5AD68D1AC1FF31CE73C11053DFB /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8EDC407D27259CE348B71F0920FDABB /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1AFD57838680DF58184FF94D14C7F3FF /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFCBD1C034582B6FD69B8EE3ABD99CB6 /* RequestInterceptor.swift */; }; + 1AFDDCBE0AD0BC0692EC19C02323FB49 /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7BFE2F061AEA02AD29426E477844710 /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1B02D06B79C083558DE0E42EB085E511 /* resolver.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F2D22DDB17591F86301562ED6A816A2E /* resolver.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1B0432CBC6F1FB4A47D283DD8EF47C32 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED8FD864871E297F25D2D9DC83C90D57 /* versioning.upb_minitable.h */; }; + 1B0671C3100F59856229326D19A54B56 /* dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5305D831120E3D2D4D914404824AE3 /* dns_resolver.h */; }; + 1B0AA09C57BB628892796295878F5B3D /* pipe.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = A6D64584DE70B509BA1808A32B6021B9 /* pipe.h */; }; + 1B0C58DE48E645E444D891B4E0C0833D /* xds_resolver_attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8F6CB7209392FB9039683874FDD99C /* xds_resolver_attributes.h */; }; + 1B0E1B154BB53CBC5075E7AE02E7878F /* per_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C7944E5A1BD4600D3395DE93C3440C /* per_cpu.h */; }; + 1B101BCA8062144EA1E082C63E7EF829 /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D8439742E1A4F1F3312A23DF2B9BFE /* sub.h */; }; + 1B24A816D6764EB7DD9E2655B3D77320 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6EFC6210328D0AECA05555807D405DF3 /* socket_factory_posix.h */; }; + 1B25C1DD31D5D44E3C7C57B4A85B0CA7 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 83956059F2EE16718696CE35B7EFF8A9 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1B2EBDB7C47CC086512A155386BFC60D /* base92.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B12A3845A7581A776F0ABCD8AA783C0 /* base92.h */; }; + 1B347361B333B9426F7A57DC5ECD9151 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C67A8F1B17E09F955E3B2DD7CC0936A7 /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B35C18FF4592843594CF9D386810F3B /* endpoint_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7A49CECD389B8C2149CEA10E1BA576 /* endpoint_addresses.h */; }; + 1B3649896632F5E65C98B27967AAA8BE /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = 58216706BE15EC4819B2FC248899463A /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1B3B59E46AC49ECEE9DF7EFAE04AEE36 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = E899EB1FD6246095202B3E4C96C27E4C /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1B40164462247DC46EE3ABD4117F2948 /* FBSDKMath.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CFDE9060C30F04E32E47ED23DE2793 /* FBSDKMath.m */; }; + 1B4492962C1AF43302C07085488C4DFB /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14C192441EB045EC717B078632CF1E9C /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1B5064E0477B0CC2EFDAEDC9D7C78FE7 /* json_object_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CBEF518D7F0AB66AA94559E99061458 /* json_object_loader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1B5597718D5B35CE1313E089ACD4DB33 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA4409FEC8D1BBBD9CCA77A2C04D8CF /* message.h */; }; + 1B5E4DA34D84F79587219FB68CC08071 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 48AA1BF41970302A79F0E2AD81F5D195 /* thd.h */; }; + 1B5FAF80C3AE2D3F5AC63686EABF1071 /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9845BC2B0EA8BDDE8748BA8FECF9959E /* xds_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1B6597D16EDA57061DD94C5949ADBE5B /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0418CF0B29D8613D5BC5631C6B27B747 /* FIRAuthAppCredentialManager.m */; }; + 1B6E7BF2947C6BAA797740D1629535CB /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = F719EAE92A66FD311360451B52B6AC6A /* channel_args.h */; }; + 1B72F970BD157F642FD2851D001AF2E5 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 80112EB2D32E874D28690BF2E0C2F18D /* extension.upbdefs.h */; }; + 1B772DF7B389F739A1B93FC8DE18627F /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C2D95EA68B985CAEF75A8C5D1FBA0FA1 /* matcher.upb.h */; }; + 1B7E810C555B7ABF8941609A2188E459 /* grpc_polled_fd_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 49902276A606843554D993EBF875D2B6 /* grpc_polled_fd_windows.h */; }; + 1B7F8B91B846A3F6D8C11485B003DFD4 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6E96DD0222657F272316124E2609B25 /* FIRInstallationsStoredItem.m */; }; + 1B8BA16EC39A4A4B4F9056599858B3A8 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = D366F0A215EDAE739079F47FE21937FD /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1B90E17F9E4CCAD9DB718FE0CA578F64 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 896C7022B25E39CD3C35C0B31D59DF0E /* completion_queue.h */; }; + 1B98844132F9ED84FC7B76C5E0225966 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73D0762FE3DAE776173B25626323975B /* fault.upb_minitable.h */; }; + 1B9F6E15B46FED765CE0FF6F11185947 /* PromisesSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 885092B6A732680B6CE607FDB515E0D7 /* PromisesSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BA5FEE3467473738F08F0ADBCA270D1 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EEAC21B14920F8619496D9147A4598 /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BACAD09AC3BA34429D6E700872E1FCC /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 418791A362A4C145F3F02EE5F58AEAE8 /* tls_security_connector.h */; }; + 1BB1E0A668B7E149E0C9C130544DA209 /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5C6B95836A732CED86B229E4C8BA7904 /* wrappers.upb.h */; }; + 1BBA59305AFB8933109E48B9F573F12C /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 3337B80321856929A0BF4BD1417A3116 /* FIRAuthSerialTaskQueue.m */; }; + 1BC0DC2C023E59D8217E3163382433B0 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD33F6D25E288C494F3E26A28D056686 /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1BDB47E38F0A878CDADE07DA55D7A016 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0960AED2900C1C2FE5B90F99C945E2 /* trace.h */; }; + 1BDC3CB52C746EF9362393F9C64B9953 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = EA502974A37E87CC0C6EA336583143FF /* tls_credentials.h */; }; + 1BE118B2E4977EF0259B4DF171C92DAA /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D69B0B65106CCD1AFE8585EAFE5495 /* health_check.upb.h */; }; + 1BE4A25BDD5530FBB23E43B9AFBD120D /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C435A66B39C690C53578DAE933D7FA82 /* security_handshaker.h */; }; + 1BEDCD13BED5DC0BC02DEBF2AE7DE35D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 78FD91F8927F89D204D115558E248873 /* http.upbdefs.h */; }; + 1BEE2D1024F7034DD88065343172298F /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7575567F5AEC1B26A7F478110C5B7316 /* annotations.upb.h */; }; + 1BF3F79EAC0CED4AEA526ACEBF791989 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 1073C37B9043B745E4B6995922971EA7 /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C0072F638A2C807ACB6829BEF994F1F /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = BA390A9E962D88D97CEE18282C73517F /* context.h */; }; + 1C04B8C3CB311EC9F60D4D2A9DE05BA3 /* xds_resolver_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B2F11700A22D57FC4AA9FD8C066B76 /* xds_resolver_trace.h */; }; + 1C0519745FB09F087A7D82DB5398753D /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4FD1DA5F1D05E410CFB288FEECD96651 /* string.upbdefs.h */; }; + 1C095D0C97F7EBE84C2ADB11AEBEC306 /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C95460A47C4807B25734B4252681430 /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C15CBC38A18C98003A22A10520C29C8 /* FieldValue+Encodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBD072D85D62015AAB327D1123D5D767 /* FieldValue+Encodable.swift */; }; + 1C16A91501C6A4C46B6AF33B5C063892 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 609E2D3149EB320511AA33269BE71DCA /* fault.upb_minitable.h */; }; + 1C1E4C12BF8F283F50D45383B87BF7E9 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A647CA763FFA2B34F759A02B5489C29 /* http_connection_manager.upbdefs.h */; }; + 1C26A481AEEBE02CA2F194DE1A5FA16A /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 39EB86AEF9731B439AABBFBF55A960D4 /* grpc_polled_fd_windows.h */; }; + 1C33B10590124504FE3153C7E8371C86 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C40F809A1586D89D9661523C488CF19 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1C4336B495667E3330F7E2A8180CDB4F /* fors.c in Sources */ = {isa = PBXBuildFile; fileRef = FC477FAB99D18313A71E00ED404DB24A /* fors.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1C43A50F9DA66629561512563A73519D /* FirebaseFirestoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA6E852105B8DCC0A16FDA1BEB594176 /* FirebaseFirestoreInternal-dummy.m */; }; + 1C43AC97466A99387A36478D35D88859 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2BF305DE1AEF8E215BC94766E81A3F /* GULAppEnvironmentUtil.m */; }; + 1C4D6BA0DEB8B7BF41D42934E107D0E1 /* spx_util.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = F4F2B27EC744F63AF966048841A3670C /* spx_util.h */; }; + 1C4E71B71A80C2C38AE538A6B1522DF2 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 615FC705E5D23895E82A27841033549F /* work_stealing_thread_pool.h */; }; + 1C5B0DE724A7EEF3C0FDA3414F189440 /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 764C3829FDD7DD53603435CFA7A139F3 /* ratelimit_strategy.upbdefs.h */; }; + 1C6127F73B98E6871CE469FC553849D3 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = CFDF75A0E52F66250F98E87462053EF5 /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C6370BE1D8B5CB479F8B233FDFE4C67 /* charset.h in Headers */ = {isa = PBXBuildFile; fileRef = B2332B067CC1E5D41E956DFA7CE6E4FA /* charset.h */; }; + 1C6371B239DB244FE54B9FBF187ABE88 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7F13FE06EE1BB4A451428F674FA6CF /* common.upbdefs.h */; }; + 1C71EF1C5B7EB48CF9A33F55640CA0EE /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89C70D7C05FB2FF73668F90B441DEE4C /* status_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1C75CA8381EE2CE994295D4A3DF27BE9 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D17A57D1F8D771CD39B024700DBEBC6 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7E900A05B28382F115D83D0EFFFCD5 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9489F06E802DD3973DEA7BD09AC8E1 /* syntax.upb.h */; }; + 1C8C09EF54CA6645A93174CC3B11CA42 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = F08C9D8EFC3DDE79A79BBC31CA3A8C7A /* channel.h */; }; + 1C936B315CD81E223451C693605FEE0A /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EC1838516B1279A5CE84D5C022605CB /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1C94C7A207E61ED3CD900E83028F1B15 /* FBSDKLibAnalyzer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B60863863CB78879DFBD2A491B95D72 /* FBSDKLibAnalyzer.m */; }; + 1C9BC3CDF228B924DD7B0101103BF6DB /* zipkin.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DDB33FA17AAC7B9CC4EAF24151A167E3 /* zipkin.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1C9DF6684226462C245C960E9EBA0C71 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = E15BA16FF99C789ADE72FE8D0E9719F6 /* callback_common.h */; }; + 1CA1F865F189FC1B543847328092FD08 /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5B6DAA1DF10A58BBEA902F944D61F179 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 1CAF832B649C0C8F250D31B134F658AC /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 969C62914FF38BFF0856F98D616CB14D /* wakeup_fd_pipe.h */; }; + 1CB1FB3CFCC8C8F3CF76D8CAF739E429 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = DE39B18CCF65D75823BA243310C9155B /* FIRApp.m */; }; + 1CB30877845D43B6050E6375C1601145 /* grpc_audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = A5AA3481EDA79EF99FCA4B363206327F /* grpc_audit_logging.h */; }; + 1CC05DC166A3FCA615331D28611E28B8 /* usage_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9237AF0E982CAF65E382E0E0033B191 /* usage_config.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1CC324B596B3ECD050DE2A3678214969 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DF28E6C626CCF25581197481D18B63 /* common.upb.h */; }; + 1CC617CD02BD5EC3844A89C9091F490D /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABF0AE9534086FA1F906261D824385BF /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1CC75176D329DFD4AC19C6C03BB9A1D2 /* circuit_breaker.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E3CA01F5235B8E01963B8558BFDDC660 /* circuit_breaker.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1CCDD2192339A55FCF18FE2335F9F420 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D18C01450834E4074D7269CA5551EC /* method_handler.h */; }; + 1CD378DDF01F71466788D5CE713403F5 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = C5BDA3D1DA764F7AC9F21FCFC3178851 /* field.h */; }; + 1CDBBC5171E4F92FC6D93D0B3ACB092D /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 90206A559E7843E6C794A2BC5207FC2F /* slice_buffer.h */; }; + 1CE78802D2CF3927196631FE84F1AFEA /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 56DC4C9562BBA7B51E97840ADFD0CA2C /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1CEDAA9841EFC1A8AF36B721CC851C92 /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE06A7CF4CB950DA3D7D4944777FB9D /* call_creds_util.h */; }; + 1CF2AA44990E1D0FE53D588E1D87B9F4 /* fork.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9EF011C37D62CED60344F2B3C84A32A7 /* fork.h */; }; + 1CF43207828306D623F7CC9DC6647528 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E91755F205B3699C0F7507D281602DC8 /* outlier_detection.upbdefs.h */; }; + 1CFE5E21A8DE73AF01E10626702E8CE9 /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7F7A18B715C7E16E5ED0FE9B021D50FA /* combiner.h */; }; + 1D0322323CB2D7A72E02B0E81DBFA6D8 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D64B85345F2804481139E4A30B70DE /* seed_sequences.h */; }; + 1D0D6C0F2284C8534379FDD28B205520 /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A95ABEA1E2F1F96D7F8A331634325A3 /* arena_promise.h */; }; + 1D1A6D81B53C82ABBF9842313AC1CA42 /* handshaker.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EBBB53233C94915F4EF629D371F790C4 /* handshaker.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1D1F589F43FC0352D423383C4FB2580D /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CF2B4ED8A869471F3121A72CAA9743 /* port.h */; }; + 1D2F433E8799F5D81287492C281800AE /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = D7422EF2B80F3B97384CA8671F66B0FA /* decode_fast.h */; }; + 1D325CFE11FE13A075C835E922BE1017 /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F3FF5F059379AF76E34AAFD924EDB7 /* SVRadialGradientLayer.m */; }; + 1D3DA158CBA50C0284CEAC7E2BE8A08F /* frame.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBFA53CDE4DA5EC96EBFBDC7E0584B03 /* frame.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1D42B954A730213539D436837CCF3E17 /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08F1646845685321FB671FDDBA053271 /* unix_sockets_posix_noop.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1D482A3C50E0DB5633F713F376928857 /* base92.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3A79A07ADA92BAF9E4CD2E8B5C55D6 /* base92.h */; }; + 1D4C0929ED3838D9BE8DE816314E9291 /* scoped_route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 39790BF71A05EEA06DF499F8CEDD82E7 /* scoped_route.upb_minitable.h */; }; + 1D4C2267D083D6D3A03F013C5E011339 /* pkcs7.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3D43B611DF2A1F8E1D94A3DF73AB3CB6 /* pkcs7.h */; }; + 1D626EF9CE6E6C62C4AC869C7F42F8B4 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C811B9EA5F05DE91A47451E051F14C /* proxy_protocol.upb.h */; }; + 1D654E46772CA44DD0DA71E0E2588121 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 5A4DFB39B29A23990C8F77BFFA2D0F25 /* message_compress.h */; }; + 1D65B1D42BF8AC2473C7AFDF5201D66D /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2171B062D5CC28173819C4F12D8F93 /* arena.h */; }; + 1D65DB54978F998D2918D799F9AF1713 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E428052AC3D8C3773B2D305111E446 /* parsed_metadata.h */; }; + 1D74D6D4633438EA73CFAEB6CA02CD29 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 093C286BA529C3B2D206C3305F3176E7 /* client_channel_filter.h */; }; + 1D75C48E6E72CBE503C85912A03D1DB0 /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D70F00FF85690ED6E331D764BBCC4E67 /* time_util.h */; }; + 1D783D21677C7CA0A5AC7009B5A8496F /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CCAFE38566B1B402B7F8853902D48B0 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D78F9143B3F26DBDBAA6AD7696C61A6 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E73733E95E9AE6DB36487D1D70A0A39 /* substitution_format_string.upbdefs.h */; }; + 1D7D21F73B4E0D80AFF44435514DC054 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 0800843B7A8785A7F9098C9B4A959661 /* map.h */; }; + 1D8250EAFA39FD4D2CA29BA9304B18A9 /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1384468AB0D4FED3CA5DDC6E65BB288F /* connected_channel.h */; }; + 1D843FF77A918E468DFD2732A2B8015E /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE731A116FE8E73A50285F64908EB84 /* transport_security_common_api.h */; }; + 1D8AF6EB01A0C3649DCDB64FC04D7941 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 617BB1D4AA36495D64B6086CB6B64622 /* config_source.upb.h */; }; + 1D92BDA3339AC266BFB5C4D72BA2A702 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F6A21CE60C643FCD83A1EFF03F48A5 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D9E82705F7480259CC3E7743E822378 /* metadata_query.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D33FE4754AEF6E7A9B2F9D475FAF6CF /* metadata_query.h */; }; + 1DAB1B3465B35806BD22188B18FEAB28 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1FFAE872A54041BFA48AE10555CCB7A /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 1DB1D380C60AAF13D33023A1FFF8C2AC /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4EAC9702E2E5E90DEB21FFBDCE056E94 /* lockfree_event.h */; }; + 1DB36C3482BBE042483B7946A57AD1DA /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E7DC2695C770255A666E9C087CF20E0 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1DB56D15962625783C84C1F89B2B248B /* RolloutsStateSubscriber.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52D73DC74E170B5058C851BE12BDE03F /* RolloutsStateSubscriber.swift */; }; + 1DB95A5D939A716EC6A22242D33D39E1 /* interceptor_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 87D7F632338A598BFDFEFF5BF6344E83 /* interceptor_common.h */; }; + 1DC0283A78DF53763EEB53CD4150181E /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B74A4447A10AC48D13CF8728EA9E7F47 /* handshaker_registry.h */; }; 1DD5149A99C3EF221715A7C71B8135AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 1DD6CE12A43E52EFA313F2223030435B /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C8CA7F81397569FCE09BB55D1F139501 /* circuit_breaker.upbdefs.h */; }; - 1DDFBCBBEFB503C8C36D53F080E8D26E /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 1FA727A5DF6400B1BD47F5FE98F9494D /* service_def.h */; }; - 1DE8A9466AEE21CD1BBC9390396110D8 /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D048806C0A92924E04A004AC375B8B /* ring_hash.upb.h */; }; - 1DED2DEDF06FC1F9F30BED7EBB828506 /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6A83C7D6A3692DA7DBBDD4B358C8ACE5 /* string.h */; }; - 1E0F80EFDF9199270EA47FEA64A1CDEE /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 44C2949859712A62B5BA7E1212AD5108 /* channel_creds_registry.h */; }; - 1E0FB9586BC6E0BC3E8DC38F9709BA7A /* ring_hash.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9DE63503ABE59FCAC655FDC6BDC0AF /* ring_hash.upb_minitable.h */; }; - 1E144E0B1A7F97EBF484F6A32A3AAEC0 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F7A83329568B52232C0293114C57D873 /* opentelemetry.upbdefs.h */; }; - 1E176A66D8825C5BA84DE8E3795C3E3F /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = FF839FC2B56CBE383EFFF74CFE02CE07 /* xds_certificate_provider.h */; }; - 1E19FFF2A1FB6691E1A41F8A68E727BC /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = D633208ED18462CD1DEAB7634DC34B08 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1E2C09C8F727A068597533E75D40E04C /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F28326479C2A67563E5108B8EBFFF629 /* def.hpp */; }; - 1E3672189EFE58388818A30B711BA8E2 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F6632B2EC77B3304F3F628BFD638BC3B /* token_bucket.upb.h */; }; - 1E3884B5690E6A497B0E8184392E8B42 /* flag.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 34D9774C7E2703A06D7B9AFE6EFBDF2C /* flag.h */; }; - 1E3F44ADBFF79E3CFA978FD25F03904D /* hash.h in Copy hash Public Headers */ = {isa = PBXBuildFile; fileRef = CCACEBDB3AC9173C1E9847F3B148B8F3 /* hash.h */; }; - 1E42F7425E350F0AF26BF66E6D6A9706 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 1FC25FDC9C397785DE6842F9FFFAF2BE /* aws_request_signer.h */; }; - 1E490882D13280BD52E07998BC9FC45D /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74F18F280096CEBFA533483027281A0B /* socket_utils_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1E50284E5D463D5E6865A2A00323B45B /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C71CCF03FA0DEA38FE829C5B831D0FB7 /* token_bucket.upbdefs.h */; }; - 1E58F04E5667F42EB4C2E720EEA83124 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 5902E6E3D69B0F17E693AFDB9A700519 /* seq.h */; }; - 1E6999D60DE71F58A470900AE533188E /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B744B4C1062998DD8ABF8A3D92C51F5 /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1E7EA6F1E574263590F1A0FFD0145B09 /* call_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A22A805FF4AF82D235126A70C79152D /* call_filters.h */; }; - 1E818842E333BBED5455C42B37F994D3 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2BFACF01D5166A3A9790299D15C9BFFB /* fault.upbdefs.h */; }; - 1E8FF4E0D4097AA9ABF6A9DCDD4C1733 /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A27511D0EA68B95BD35120214AC223F /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1E9BCB2186DF9BD3B78FA19F47ECB1B6 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC4C8AB9215099E18C0F83EF9256F4A4 /* filter.upb_minitable.h */; }; - 1E9E8CB190C02E1C66D3735F6E27594F /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93DC7E47D0869DBB83FF65B0057986FE /* wrap_memcpy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1EA076BD1A3984D18E476A7C781A74DB /* http_proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D23D1D7929FDBC289138987E008EAF /* http_proxy_mapper.h */; }; - 1EAA0780619723FB497B2D3580E60C55 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5D5D0D43B9F8F7C85786F87F0AD66472 /* xds_credentials.h */; }; - 1EAB71ECF9875373738325CB7EA26B74 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 118CAE82C2AA524CCA0D737BB8A3E5BD /* retry_service_config.h */; }; + 1DDEB173A5F49C506BE92AB3A9689FE7 /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 59DCDC71C05CC12DFE2840ADF8B4976F /* oneof_def.h */; }; + 1DE5FEA27C4969AEB615A5A3B1B1EB87 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF8FED3CAC24AFFE4E0B8B5B287D885 /* nameser.h */; }; + 1DE68056E987AAEA5B136F149D29B3C6 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2F623A622B9C721F2AEBA8FCBA6C3865 /* xds_bootstrap.h */; }; + 1DE6FCBB9EC01E0AE8E6396F261D4DD5 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 358F1C4AC16BB36538EB745268BA38C5 /* cancel_callback.h */; }; + 1DE764E723DEC8CA18A64E7F8A4B9CBB /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C42891D51C56A8C09151F3D8E30C004D /* number.upbdefs.h */; }; + 1DE83F9C974522B65447399894658EC6 /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1580331EF4E0960E888ED2DDA700AA16 /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1DF40ACEE2CC4EBEF58444F5835476E0 /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = 590F0B35EB65F958953AB7DAEF990AA6 /* accessors.h */; }; + 1E03CC3BC2D70B25ACAEC19168DCE2BB /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 448F32A96E625110CCEA9E5E234EBC8A /* connectivity_state.h */; }; + 1E137CA79E1EADFDEBC8A5209596B70D /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CECBEF19D2FC13984222A6EA01AA62A6 /* ref_counted_string.h */; }; + 1E1666137736A2C4845C6276DD73BF3B /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD33EF671355E4D225ECED020327AEE /* validate_service_config.h */; }; + 1E19FFF2A1FB6691E1A41F8A68E727BC /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = A75CD809EC9EF93591E1E5031A81D133 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1E241933408EAA013EACD47045684CBE /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B62BC5FF158B701AF207DD2EBBD4D51 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1E2C2B86C227A11670C66BD1056CFA11 /* Promise+Wrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FFB88C6F9320DF64A735CD4A27CA32D /* Promise+Wrap.swift */; }; + 1E31EB450685BDE2DD67CD3E9E8A1FC8 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5793011D448618CCC36D470FB7DB5B47 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E36BA1574E811061A554F58F2EE0D86 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09733CFBCE6B0C53A6BC20CB2F08BB61 /* stats.upb.h */; }; + 1E42A16D14C97EF1D3D416E41F9F1935 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C2838AC26D907FC7ED5FAEE67F8D69B7 /* hpack_constants.h */; }; + 1E50613E45C14EE1C5571FBAE668F155 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 9A0395580B465B960AF189190E59F37B /* field.h */; }; + 1E5314F69802E72776795CFCFB2BFA32 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 45D0347A2321CD0BE176A91A4611C191 /* wakeup_fd_posix.h */; }; + 1E55207A4B93691A6C900ADAB34279F9 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = D0A29A91CAC86790C46D04DF2DB19C79 /* stacktrace_arm-inl.inc */; }; + 1E57A049EB40CB5B40841581137D5D02 /* metadata_compression_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EE3E499D7DCDBC26180D2EDBA305E05A /* metadata_compression_traits.h */; }; + 1E66897FD1B539F2440CA3DC825E0A8F /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13FB9BDA9787821621A20CFEB5EECBE6 /* local_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1E6999D60DE71F58A470900AE533188E /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B0DC75A4400BB6A302B81DA52DA82B3 /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1E779D6178350C5A620001101E005592 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA034FE2D4B71F7F3B895CAA72FFC065 /* lightstep.upb.h */; }; + 1E7C61459B56F53A64044FB26FBA494D /* extension_range.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BBA44D2B22ED2A7B08831B9846119B /* extension_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1E9515F12115495D3AE758418F2C7131 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 33F5A7E4509EE584105C269C19B104BE /* validate_metadata.h */; }; + 1E984B1DF04CC7A008138E0BF5CE7B5D /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6B5D6445F1519AE04AD6D054FE74F4 /* versioning.upb_minitable.h */; }; + 1E9947873417D6CE164F40BE0445DA39 /* address_is_readable.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1987A908DFBA7A903CA9CF06E9BBF924 /* address_is_readable.h */; }; + 1EA8FD731621EA85D369740C0EA3E030 /* proto_buffer_writer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C131EC6553F82A696D462F344470A836 /* proto_buffer_writer.h */; }; + 1EB24D529E61E82EF1C6D7D28BAAC0FB /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 2662A3F533F68D3EE2DD0B2E6C300235 /* fixed_array.h */; }; + 1EB3E79A159BC0EE9CF3BDD262DD3B1A /* bit_gen_ref.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 04FEFCA4CFAB7D3F7DCD90E9AB0083C3 /* bit_gen_ref.h */; }; 1EB90E55F9F5AECD1327D3BE914AC79B /* FirebaseFirestore-FirebaseFirestore_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = B6FC6D7893981399354A5310B0C34D02 /* FirebaseFirestore-FirebaseFirestore_Privacy */; }; - 1EC179425EDEC6762151D41DBC8C2B0E /* sysinfo.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A96EB4D118E98F4B3A4284962FEBEB1F /* sysinfo.h */; }; - 1ECA347C3C6F920137517335EB1EBD47 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F93C0B326FBCAC7C7E10C5AC7F4FD4 /* create_channel.h */; }; - 1ED20DF456F62EFDCB88218E8C054BDF /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EC33F6C69806CDC2D06AFCCB46E1302C /* accesslog.upb.h */; }; - 1ED66C3634586ECE65D34431D8BA25CD /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 87CA6D148D620F53BF6955CAB694A9C1 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1ED9CF2D50D01AFD39D852D7FC232D58 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBBD81E7E6F01561351685C7AB467ACD /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1EDB2C66495196D867BA23122FC5CF99 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A0D514CB522EB1EF54E03C74EF37DF9D /* construct_destruct.h */; }; - 1EEB8082E86B3E1591D6119DBF468E5C /* grpc_audit_logging.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B061F5A1DECC81C84C43CB92CA3CBF9E /* grpc_audit_logging.h */; }; - 1EF292767066AB176E750F23C045705D /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C351FAB6D0438CDA0C91B19D1DD94F7F /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EFA2C996AD56E6254B79BC86E78586A /* quic_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 088A255CE2DA1845596A10B881EC420C /* quic_config.upb_minitable.h */; }; - 1F0DEA113482FD6E787987CEDBE6FFC6 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5969A657C0C6A2740BEA36FC1FD5EDB0 /* slice.h */; }; - 1F1078E8179B2E79A68213E3F9BF0CDE /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D141EC253C650BA4A69C0500324004CA /* http2_settings.h */; }; - 1F1B90C4A9825E77EDB24D8A281067E7 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D96798D7C2C50679295CBF59294DB23 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F1C585BE0EB60C9D24B34384D1648D1 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 0B3A5211D60DAEF9CF488FB14FFEBE98 /* channel_init.h */; }; - 1F2626FF651F9D394B848839BE2C9C8D /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AA23034785E6CDDDC1E0E5643C1862 /* curve25519.h */; }; - 1F285EAFE181E45D258B44A554FF8837 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 364A7966B1A072744B356C9B60A2CCFB /* Kingfisher-dummy.m */; }; - 1F2D3EB31C910FB48536CD91F74F4528 /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9733E4E05BFAA102B3F8C9E7FD11E906 /* trees.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F2FB5AB594CD733F37CC3353224560C /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5BDEF9741323B89C97E039291A13B36C /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1F32811769EDBD922CC2953524FBBA2F /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8690D14027B29E173EE3FEE4DC2066 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F3FD4EFBA83EEC3C06F3EF421BBC88E /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB2B1D619DCF65D5B83A35D169F0AB9 /* string_ref.h */; }; - 1F3FF73DB3304C0A96BF15C019B502B3 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F91BC09C76F83677064C3E28D24680 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F470096A14810424E8D343CDF094C89 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8CB7014B8898ED84436114889F9C8B13 /* native_posix_dns_resolver.h */; }; - 1F47ACB467E8A76797AD9B2A260ED53D /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAF681F9E869183CE6185F3C796DC35 /* serialization_traits.h */; }; - 1F4A13FD6675FCFCD9C19DF350348899 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 616920BBF6C40C6A9F8BDA0F528963D7 /* SVProgressAnimatedView.m */; }; - 1F5610456021ECB615EBB868CF29F189 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 789BC5A41F72446247B700D30848D88B /* string.upb.h */; }; - 1F5C44876B9464D2116BF11BC579E11C /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F71D0F63AFB60BABE18B3A18391ACAAD /* datadog.upb.h */; }; - 1F5CBC019DD0C66F5A34E6C9102CBBC0 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C63F1E14F8C3F5278E376D5B2E16B7 /* opentelemetry.upbdefs.h */; }; - 1F606975A28CAA36DFA230BCCD1CA297 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 148D3CDDBA3D6BDCFB7E34B5483BC29B /* frame_data.h */; }; - 1F67A911E7D5B35483B70972ECBEDB1F /* node.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E26C7D1815C3A518817C9A69C71CA78D /* node.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F72C14B1A31DA0A241B2CCDAEB29DCB /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F14200A519986D5DD86EB630BF302B6 /* sync_abseil.h */; }; - 1F82B5F4FF2716557C0705358756DE8D /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBE64BD16AD44499BCD197F4E75BC85 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1F83432D2B786A5E45D17E3D228DA55A /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = C303180EFD0F780B35D824C29D06F4D5 /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1F83EC1FE8A3C7548E3444BF53E826A7 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3579F694F6A1F78F99DF942C2572504C /* wire_writer.h */; }; - 1F8CDCBBE9608A2ECA2B116E6E3C48F0 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 619B9DF9E6106E19FA7E35277E2BCB4B /* rbac.upb_minitable.h */; }; - 1F980E6123F780598934474A780C5CE7 /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B66DD403FC65637B4E716868ACB1AB6 /* periodic_update.h */; }; - 1FB7697D2E0927AB34C5E9B56613BC39 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D721A0F2C94BD0C0F9695358D997C81 /* fork.h */; }; - 1FBB19178239469BDBF93CF77703428B /* cycleclock_config.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2A4A0167FF5678A293E93A01658A28B7 /* cycleclock_config.h */; }; - 1FC09F9C8BB04861B2FB4E510D142D0C /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50282F52ABB75D1B3EFA4E1D1C3A912C /* orca.upb.h */; }; - 1FCD0FE21B53DC5B237849D2C09C3E08 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = CCACEBDB3AC9173C1E9847F3B148B8F3 /* hash.h */; }; - 1FE271E3774EDD59E4CEFCCEAA1884AC /* internal.h in Copy crypto/fipsmodule/sha Private Headers */ = {isa = PBXBuildFile; fileRef = 4858467CEDBE2B1316B0CAAFB5A3A04A /* internal.h */; }; - 1FEAB6878DE05C38C23A68483827FDB8 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAFA4733763A7278DCC1D9B89B26A298 /* hpack_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20020EA10B8F2390579FE3584E5EC92F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 0D6A34CD13FC3C3E265C0BBF9EA901EA /* insecure_security_connector.h */; }; - 2004D5F4E3B2EA6834F608657115924E /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3657E5765FE50ED544168062BAC9A9EC /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2006914EF17F5DCE7418665860E0CA19 /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = B611762C26372A86C6E4B7BF14EE3BB3 /* utf8_range.h */; }; - 2010E0A2069C0543F510E22A9C3A49B1 /* tls_spiffe_validator_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E7C822600722688B84CF7FC39488BC4 /* tls_spiffe_validator_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20156FAF337544F29BE5EE9F47645D1A /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D5F8EADAB4331E40230DDA8556F3FB /* json_util.h */; }; - 20163A53D720D4314F2A60DCF86AC6E1 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 977643B9A36BBE1E1647A1F2CBDEA9F2 /* secret.upb_minitable.h */; }; - 2016EC1264718E81C4B888821CFE4C8F /* constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C14D15B4E140A571E5B153F7FC78C5BE /* constants.h */; }; - 201CCCE7114FCF428EB294A0E0E252AB /* server_call_tracer_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3221FD57CB7278857D28E46F4B16C99 /* server_call_tracer_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 202B1A29167E0BC2E7B129EBAF303C7F /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 95EAF310EDC699B2DEC3E3CFD017FBE5 /* timestamp.upbdefs.h */; }; - 202DAC943DCDD73CB7912CAB4D28C7DB /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = BBE1BA96B00A3D7B394C3B7C958206D0 /* any.upbdefs.h */; }; - 2033DCDBF12364D5DB214D93463AD208 /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F939F9B85C3E40044A7494ADD3C3FC /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2038AB4EB06AB073D0BC42EF13E82DA2 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1BE9164E9BBAADC40C5EF50C59560CD /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 203AB5C73F00854D05D2160091F040EB /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = CEBFCA7FC767AD4D66D28FE3455289FB /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2043AF61E609832B2006DED439932E8F /* ip.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B620670449037DA21DF772D39887CCD /* ip.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20456C47F73A45A03E548186B780F7D0 /* cidr.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B18C74F4E539C78DB9E2CA0C7F93E9C /* cidr.upb_minitable.h */; }; - 2050308851EF2853ADEBFD53C9D9C1EB /* all_ok.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 607CAA4E0E074F78849083A01F106CA0 /* all_ok.h */; }; - 2058A520FAA272906883306B95E7554C /* stateful_session_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE033E19FD7E8FA4D23D4AF9EF0A849 /* stateful_session_service_config_parser.h */; }; - 206284AEACDBA177BA3B841C847CED7C /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 34887DD7F0841ED43062C53A76C0AE87 /* stacktrace_powerpc-inl.inc */; }; - 207BFDC8FFA4A3ED171B362928AFF0D3 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = FC73E94DFFCB3C4C7BE6CCBE3DFBFD0A /* flow_control.h */; }; - 207E617E29B3E5A4B7AEF91B61E27083 /* FirebaseRemoteConfigInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 21794A2B7EC727BD450EF42B2F9A166D /* FirebaseRemoteConfigInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 207F7F02646318F0734F223F008994C8 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 124DA91942EC9EDED9C0E35980E7D45D /* FIRCLSMachOBinary.m */; }; - 208EC6AAFAFEC0437B138F2540BF0505 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5D0D43B9F8F7C85786F87F0AD66472 /* xds_credentials.h */; }; - 2096EBDF947F59EC8A1F02ECC04F954F /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 79827532D61D258A3A501C56491CEC85 /* sockaddr_posix.h */; }; - 209BDC7EA55501D2F325CC1F13AA3E48 /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 253DFF0200F4DA1DE21A28BE1B2A98B9 /* sensitive.upb.h */; }; - 209D583317B87A2A5E22191B72BD4B19 /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1009FF3F280B4D6715C9E4A9BC06F0 /* FIRAuthSettings.m */; }; - 20A7707899C1073DBE217C45238930AE /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A59B82A2B65E875CD833821AB08A3B5 /* transport_fwd.h */; }; - 20B3E2FB043F3A36B9407BDD98A851A9 /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2935829DAB36688549F2CD13DDA31D19 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 20B74921CBCEFFFF4A821AA345967157 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 041D7B4C3F3B222CCBF641A87224B386 /* map.h */; }; - 20B7CA79F8BB9C39DD21EE8C0D91E431 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5ECDF5690996FF085A50116017EDBF8A /* node.upbdefs.h */; }; - 20B99B76A2E7E8B9E17E39C9836AD8F4 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAB428CA4F461B94421099680BC390E /* syntax.upbdefs.h */; }; - 20B9D8091B4E42E958FD41CE6355C5B9 /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 234CCB12474FE1E2EF8608788AED770A /* service.upbdefs.h */; }; - 20C47191EEA08796BB6A33FE9B106D89 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4547E7D9F448F858FD16D15DCAFC8247 /* security.upb.h */; }; - 20C5A12BD260C4F847E67ACC689CC411 /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0162B78B36700AF54ED2FD4B6468D1F /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 20D360A283C81ACB4614F0CD79E03F19 /* struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 28751429FA611076D22E64EE85E1E71E /* struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20D4528E5968B018DD4F3395DDC494D4 /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4447F50AFD996D792C21F631E370100 /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20E6EE0A8CD6A67D61CC1C81D3F61C72 /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 4560CA607C7FA62D10093B638BF2B591 /* transaction.h */; }; - 20E7B6C12F59A32FB3DDCC1952E07C74 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = C684FD7B093D5925DC786A6380A9C109 /* security_context.h */; }; - 20ED2887377C4872F3FF2AE0CB208406 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 5212F7529C3BDD858981C6100388EDA6 /* wakeup_fd_pipe.h */; }; - 20F6CA80C443DAB5EEA65A92A1239461 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0755369CDE638A834DFC086DC45C700C /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 20FD62234A087726B03BD43150318BAE /* map_sorter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D415A6C2F9B61D668C9E23B59933045 /* map_sorter.h */; }; - 210BCFDC758C986AC439538D42BD474A /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2007CCC3F13365C4BDDD7CF8C2650714 /* string.upb_minitable.h */; }; - 210CC5A3DA54B06EC13B67EAEB8AACD1 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD4F04D238507DFF08B7B8D55C90495 /* method_handler.h */; }; - 2114C09A845128DD2D7E722EE2E240CC /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED890475516CEFE264885724279DF5AE /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2119DB167C3DD0FF3C8AB5D5D2B86CD6 /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAC12AF4EFD05507BE3CB061F019A9F6 /* fork_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 211AAB55AA0273390A73E8C6C0575CB4 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A99A135B7B6299E17400397D149EBF /* encode.h */; }; - 211E465F2E92111C7F526DB6421871B2 /* lightstep.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BDBA6E466D725FDB0F9A993000627244 /* lightstep.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2121798C6F327E6E09227E911AE4134C /* inflate.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 8BF3A3BEE2CA3A174EB796CC2D08C14B /* inflate.h */; }; - 21230A10506D9392CD7C417A3D19D326 /* def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 465ABBC7A794041A8BCA697471C590CF /* def.h */; }; - 212E6F8D162F5A304C949F735278EF2C /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBB8C0129580F16C2F6AB16D79E5434 /* encode.h */; }; - 21432F83C3F87C29E9C142CAD71B9688 /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 597347D12C9600922168CF804E260736 /* cordz_handle.h */; }; - 214C1D9F3642831F6C65BF99A46FE4E0 /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E3860470DE4C6C6490631A1D6CC143 /* struct.upb_minitable.h */; }; - 214F952540436060851F5906E36F2760 /* FIRAggregateQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E5753156238D4D54BA97C023B5A87C /* FIRAggregateQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2152AEF4DF58AF98C4824D3E1AD3A91F /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0CCA4108F253C616C787A9B4036374 /* route_components.upbdefs.h */; }; - 215DA9A9EDFD886027B3A5C6CFD5FC61 /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFD553CBBB2C9FDCCA650778BBAF200E /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 21602B75E84715E700C1791EC6A73C1B /* subchannel_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = C8A47317E9CC2EC634C46C8406DA76B6 /* subchannel_list.h */; }; - 2161B5AADA37828B726CA632E2DC79F5 /* FIRAppCheckProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA19533E99DE37BAF504882C61EB2C7 /* FIRAppCheckProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2170072B677E3717A59A47920737C52B /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12269A09350B211D1D4ACB44062055C5 /* quic_config.upbdefs.h */; }; - 2174FAE7C1E88A26807A188B220A932C /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 2BC759B4F1E6F8A666C72B2E0A462C18 /* grpc_tls_certificate_verifier.h */; }; - 2176EC96EB5CB65C069B17A94B5F4314 /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F4F4A0B3946208326C941D1DDC10AA0B /* grpc_service.upb.h */; }; - 2178E2C34516EC50343D226002BFB217 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B7F551549B2AEF68F94901ED208ED3 /* cel.upb_minitable.h */; }; - 217B941B7EAD896B4945B85074A35403 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = AC0405CD6678F3BC476190E869950DE2 /* httpcli_ssl_credentials.h */; }; - 217BDCF7DF51C3B92BA8EE4B7976A493 /* internal.h in Copy crypto/ec_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 3CA967BF479E9A39BB40F0D6A7CA8BBD /* internal.h */; }; - 218E909707E621F2957A2728CDB4ACB4 /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0B29A39BB54A85D471A83DFB4A2 /* audit_logging.h */; }; - 218EE54A6F4076AEA9135A1375A6AFA4 /* time.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 414FF90AF25776506F81767606359F6D /* time.h */; }; - 218F1A9AB538156B209CD1A42CF2B84A /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = 064ADADF8BF25B35C62A1D77F32C3DFC /* accessors.h */; }; - 2191AA992213A5978909A1E44893707E /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = D50FAF4EBF3B474CAEBD93D15AC9C06E /* timer_heap.h */; }; - 21928A88BDF134D05D3A68405255578E /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 634A0F6B29123750EE8AD30B9374EF29 /* http_inputs.upb.h */; }; - 21A231E95AED5D307746B59CAE733214 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 043AC1612D3A652A5CA624D92A734885 /* annotations.upbdefs.h */; }; - 21B6A25EF77493F553C17E384ECEB8AC /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CE0FEE580CCC0AF1524AF79A4C092E /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 21C890A619C9B397483FA1E0AAF09AFA /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A973544F3E56E140D6043602A49B7BB7 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21CAB56E31FF20B991C78D81E1252ACF /* lightstep.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D760DB2E2C5067691A3BD9ED4573139C /* lightstep.upb_minitable.h */; }; - 21D108F3D377B6E93ABAA85D6D848CA7 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FF839FC2B56CBE383EFFF74CFE02CE07 /* xds_certificate_provider.h */; }; - 21D6A024D6534DC9F2364AB988D79634 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B64D6CCF053B26FC0F13B47C3D90D6E /* trace_config.upb_minitable.h */; }; - 21E74AD3D4EABF5F91050BAFC3D8E22F /* conf_def.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = E914DE0D9527194924998EFA6FCEE623 /* conf_def.h */; }; - 21E9FC5802ECB914DDF5EC6FED95A539 /* posix_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65EB719048A63DFDF9C2997248DFA076 /* posix_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 21EA19D09BDBE83E195566ADC2D6C468 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = B99BE5C6D4D361D6398606E1F9539244 /* deprecation.upb.h */; }; - 2209182970460631E929AED921AAB7F1 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B25E05894166E331C5E2DBE9AF3A0F /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2209C672791296D6A7F7FD72D8CD0A9F /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = CAB7C09D06A8D1E8005D38CBAAADCF47 /* aws_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 220D6AC9B1B1EC8EFFB204F9C1EAC842 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26AFEB2655239EF468BCE05E557CC711 /* ConstraintMakerEditable.swift */; }; - 22194014B36C9AE923A7563DB72E3600 /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 05CE6B2C57F4449471263737EEA57FF5 /* default_health_check_service.h */; }; - 222240CCDCA301E79D765ED1BEF10F99 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 476E95AF619D3E76128B98DF3BDBDAD3 /* jwt_verifier.h */; }; - 22267887777F280564C2F5A86DF9AE19 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD133054A08C540848EEBAC62B6C8F7 /* config.h */; }; - 2227FCDE625780E467C9D917A4F564F1 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9414CBCFBF80441730354A9235CE0CA2 /* cert.upb.h */; }; - 2228C73F449DFA6CC81BA71F027AD6EF /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = F05C57E6AC920C5A807A70F3338BA71E /* NSURLSession+GULPromises.m */; }; - 222F01D222AB2563E788E9D1FE78E774 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE0D6F4C85A7A6AEEC4A1304E1920781 /* struct.upb_minitable.h */; }; - 22327A540DE7E7DE9BC1DA2B6FB0E80A /* create_channel_internal.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 5B75ECC7FAFC088BE5A0E6054D265545 /* create_channel_internal.h */; }; - 223B6633CD7C0A0803F44A75C5ABCE95 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2065E053CB75A9F06D891B887FADF0C8 /* digest.h */; }; - 2247717B2BE769B2DDA5213FA8AC4C83 /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 64F1FF7DEC5DC52570D921B211BCF3A3 /* context.h */; }; - 225D34CF89A87617AD6C330472994817 /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = BC6231376504776EDD4532A76C7BF58B /* enum_reserved_range.h */; }; - 225DCF9ABB533CB0C35F7666F87A8060 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F8738E0C147F4E88C62DFEB4B586CB /* orca_load_report.upb.h */; }; - 225FA337232A56C9765ECD41B84E45F9 /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D777526849BCFFE3B15EB7799EE24E3 /* cleanup.h */; }; - 226C16ECF650B3627F0104F39A168095 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65E702E998D967B906DC6303B431B98F /* gethostname_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2279FE56C854E4A8D1623EFF123490BA /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19151CF500E0299DAF6B220F037E2CFB /* GIFAnimatedImage.swift */; }; - 227DDCDB6B1323EB704AA5C7F3EA0FB8 /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C8EE1D17D77DDDCFDBDCF32BD98E1FC /* quic_config.upb.h */; }; - 2283DCC551F4955A3A07603F92C1760F /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E234CC3BC5776A60498715C767DEC200 /* discovery.upbdefs.h */; }; - 22994934C114DCC3CCEC67E9C8264B32 /* cord_data_edge.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 143141C5A0DA3D3F533835FF6A1DBB2D /* cord_data_edge.h */; }; - 229F8E9A30D2B430C61F36AAB6A90751 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6521A1C2A21BBC9D6870DE4241035CE3 /* optional.h */; }; - 22A1E65695CBC34385D32B5C11C42CE9 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07835A921FFE99D04E58046C46F9A8B4 /* security.upbdefs.h */; }; - 22B66C8CC3B61B5C78EA9C9FEC75087E /* health_check.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A47CE4523EA1C6CB3AC7141BA0E9D11 /* health_check.upb_minitable.h */; }; - 22B6E6AF3F39173064CDF539630EB36F /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F645F622D81A7CC0F583B3802BEE617E /* stat.h */; }; - 22B8BE24F841228ACCA21FF4080BE4B0 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D2374B34A1A33F62E2B32152BAC396 /* cel.upbdefs.h */; }; - 22B9BE64EFA3EEFAE3E43E233C15126B /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E478C200F7075F0EC676DB225F5C1464 /* http_connection_manager.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 22C31957E78A2770B7A14E2D1F2C0AFD /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 45BEBB6AA9731FA724230DED5D41072E /* FIRCLSBinaryImage.m */; }; - 22CF0459F9E911D05320291F27EC1C92 /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7D56FA7FAB8981CB6914974717C9FB5E /* upb_utils.h */; }; - 22D2E6D45B1768FAC57D60F3897D99BF /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D77665CC3B31C3E37ADA010FE121403E /* security.upbdefs.h */; }; - 22D4823F9DBD816E18C2BB82FFF3309A /* non_temporal_memcpy.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4253748157F0B01577CAC8A47A9F6181 /* non_temporal_memcpy.h */; }; - 22D5755D018D4FD126A409B967B8E3FA /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 82CCD1AA314BE9F473658235B8DB088F /* struct.upbdefs.h */; }; - 22E0ADA0477318293827055F84F4D434 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B286313ED7612398CCE2C19EAF7E61 /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 22E4D7447AC49CC6DF867A9603124DC9 /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = C04907A4708BC88E01BEBE0A3741E1E3 /* service_def.h */; }; - 22EAA58B9C88384872FC21B2341A8912 /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B783F76935504F20E497D21A13C190 /* file.h */; }; - 22EC3917276DF31FEF532BAFE81C0432 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E08493A3F0510873B09A764F56F88A3 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 230B045267F8C49873418D8C6475AFEC /* crc_memcpy_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 539B8E307FA7C2ABE77EA5847180BDEE /* crc_memcpy_fallback.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 231175340F3C2E811BBA3F57D012E8D3 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF7F2C02D7661162754CEF9BAD13BEE /* thd.h */; }; - 2316D53D9F36EF09DE0850C3AE48F6AD /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4F8E4BC2426CC0AA8478E89F8AE468D /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2319470B97FE66365447B1B365B291EE /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B4AB7DEDFB1E145A4C5DA064B5E5B2 /* FBLPromise+Catch.m */; }; - 2333E78E9B66E7CF7F6E568E27AC58DD /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 470BA302E4B80C1032BDE9CC0EF3436C /* xds_transport_grpc.h */; }; - 233753438E74E676C4C69052C8281C73 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B079B63B5B748E49CCF3086A6ED2120B /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2345944110A79AA075CD4018CA4650CA /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 755E56853DB01B7AA6C4D695C7CC6228 /* adler32.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 234D86856FC652BC79BC04E9E25D2A37 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 32E83E0FB1877602D9278D293DC318D5 /* wakeup_fd_posix.h */; }; - 2377F0FD2DD6A2C75F217248AE172638 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = BCB234EAD6F2E04D29704D79229ECAC9 /* ssl_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 237BE036AF654B193EF1A19F4130F5FB /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3D44480D057B5634DDDC7A39CB431A49 /* packed_table.h */; }; - 2384FEA68CFD0C7D6F1F4F3EC71C577E /* resolved_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21828441A5527BD7A226F5A07C5E5DC4 /* resolved_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2385D49E4EF1464944DB45DD22379E65 /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 384685F623C7DB737B51601C49936276 /* regex.upb_minitable.h */; }; - 238AF0809C346CC270E69EAD3E077665 /* Promise+Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E9593CD70FBBB63AFD89027623C650B /* Promise+Any.swift */; }; - 2396B27AA8948B3A640CF2A00B4C542A /* completion_queue_tag.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = AFEDD2A9D6D12F1B2491FF874A314536 /* completion_queue_tag.h */; }; - 23A3CED3EE6A0A4815A92D9E0B960328 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12E91E422946C0FCF267D3EE67345EE4 /* ImageDownloaderDelegate.swift */; }; - 23A4E0ED088982C5D2341090C365C19F /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC5143394310D99B0D1089752D504E9 /* xds_channel_args.h */; }; - 23A84B0472238E1F79746454B71BB032 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 761CF092E4DD7B8C2E50A681DA4C27C3 /* down_cast.h */; }; - 23ABB4F12119BC32E05B01CCA7DA47C2 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CBD292B2234BBBECBFA4CD682E66B32 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 23B2CEEC7DC90160826A96267AD3A811 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0179B77E575EC292242B73578555FD8F /* http_connect_handshaker.h */; }; - 23C5447C33BDBFD798E4BDAE36758227 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EAACCF7A3CED5055F79C16E65F68637E /* versioning.upb.h */; }; - 23CF60B4FBF2FFDC63ED875E56DF2FC0 /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 798CB13DC00A8EBF1CD524248942FBC7 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D1D9CB0F735B2D1AA1375EE5D44291 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 35874B4D86FE75070E6F86018CFA2F16 /* thread_quota.h */; }; - 23DD92D5718AE2DF037BBC8C992BC9EB /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 52B3336DA156ED730A3F20B6EB785FFD /* base92.h */; }; - 23E2C508823008A2B4934BAAFBF14A8C /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BCCA2C6ABCDBDECE392301E8D32576F4 /* status.upbdefs.h */; }; - 23E57CD717B7D26DEF4E4F28F657727F /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C291FC84528379E7852C6C24EBA3DF7 /* external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 23EB66318290242681F971E6E58E9FE1 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC3C026E8B60D21212C2D9B2F07090C /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23EFF6EA6AD662E189FE644736EAD629 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CC0637667095CD77B381B1741213648 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 23F8AC7A31B73BFC01EA72CF279A2C56 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C62C974C85D924F1B4A1C89DB37A29 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23F97ADA5B629F1F27D01ABBFC848069 /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 657E9BC62DBEC8239793BFE7B8C1494A /* oneof_def.h */; }; - 23FB19AD2E3211F281FAACC78B80EDE3 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 705B37E7BE0FCCE290FAE9CBFD1A740D /* path_transformation.upb.h */; }; - 23FFAC15EFA9372B1D6525780CAA0C52 /* inffixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C4FF92C2B55B19BF647E41C9355E04 /* inffixed.h */; }; - 241D2DB83F157C81B3B6FBA871F51B4F /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D52B6728C2A28FADE6667EC7A3FE4F /* http.upbdefs.h */; }; - 241F9870EAE25FF22C0FD65AEBCF84D3 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2BEBBB9D2B980BF47E00221740634DC8 /* iomgr_internal.h */; }; - 2424BCB37450490B04699369DBD3632B /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3CD472CF83DEDA02082B07F074B36AFE /* write_size_policy.h */; }; - 242B1A85D3FCB65D5CA96A7AC65772B9 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 07426490B7BE7D6C59755D7500902C41 /* json_util.h */; }; - 242E59FEA39A8DF4DD0B34F09AC6F897 /* compression_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 914F908ACDA16EA3CDC787B93FAA1EB4 /* compression_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 242F113F1C9BD063B54034C01A309D98 /* common_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBB0D09678A6F9312762C7AA0562F21 /* common_policy_traits.h */; }; - 24450A446F1827485EC68539D9C01103 /* call_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F989FF9E30DCA94E3A2BEA65CB38D10 /* call_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 244B90D6C869BF069C695D1A5912E4FB /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = AF940A0212B08D0D802DDABC3A6D9D9F /* timer_heap.h */; }; - 2454D458640E34C913464F422E158B63 /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BC6BC6826400E86E886E64F86FF6C06 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 245B7E84E9F84E50B91C29DCF99C07E5 /* byte_buffer_reader.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D924F2197EC7C216A23C9481C543DD0A /* byte_buffer_reader.h */; }; - 246F67220AB84E86471219807525FCD2 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A940398DEF00EA1AB67316B4B139AA8 /* notification.h */; }; - 247E4B7828EEBD6168B1DE17A57A8903 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = AFB23442BC4CF254EBB15E48FB4EB0CB /* constants.h */; }; - 2482BBCE4F22B2FE275A14D190D4F8C9 /* circuit_breaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A454413DB81E07F483281EDE658198D /* circuit_breaker.upb_minitable.h */; }; - 2485F3F7E478E82E3FC62DADA71165B3 /* compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7F111EA56A29C4F4E778A217A5E149 /* compression_filter.h */; }; - 249255BF66EE2F92C55D2DCAD4EDC78D /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 576A7D10356546E725923C67071AE0D6 /* call_size_estimator.h */; }; - 2495EAFBA92E6DD6E544E148CC1E3549 /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29D1BAE83E3EB59550D6DD6AD27162F9 /* oauth2_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 24ACD72CAAB2ABCB2468A29F80F600ED /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = A020ADF93B391914809484729DBD2769 /* getrandom_fillin.h */; }; - 24B31C3EE21AF70A16FD34BD28FCF41D /* pick_first.h in Headers */ = {isa = PBXBuildFile; fileRef = EC97D5AC6F63F3E9327E8739AAB8D1BC /* pick_first.h */; }; - 24C04C87B91A6C4217FD030BEBC0DB3A /* health_check_service_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0995C5461F807FD7AC19145E9C1EDEF4 /* health_check_service_interface.h */; }; - 24DE27B2F65DEEAFC9BEF447C97A4EA6 /* layout.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E1498B9726DFD9FF0BA00209B233420A /* layout.h */; }; - 24EBBB16EC3A6BB862E01482D26627A5 /* thread_pool_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3DF54E2B197A9FB111B3D52383E071C /* thread_pool_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 24EE79956A01D24F5DA184A9FECCEF24 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = CEF986F2795224295490BD4588C5AE49 /* enum.h */; }; - 24F818D1E65F8FAB80DD833080645104 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD37254E09FA503C555EF338E3C3524D /* udp_listener_config.upb.h */; }; - 24FD05D1ED89DAB989EBC454C0736C79 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BABF2A88DE8AC6AD54C0809A1C3D69 /* lb_policy.h */; }; - 250DC870CDAA1C70291A3BF77FBC7C3E /* GoogleDataTransport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B380EFA2A0B6164689FAD035A99C91 /* GoogleDataTransport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 250F6E040D2E346249368BA8C0E17714 /* Promise+Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CB7A1BCF64A6730C86FEB47080B3BB6 /* Promise+Do.swift */; }; - 25286E8F7C16A2104AB7A20FCBB32A6D /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0C107E53C8C5BFAEB99A72D7F41694F /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 25471F70AE7BE86879163873F0FF0A80 /* client_channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A674441CC0A9235681D164531F8477A5 /* client_channel_filter.h */; }; - 254BD5336716DD0558A902C9AC5E1F55 /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 471813ED1736D58049F8B203826F26E6 /* ssl_transport_security_utils.h */; }; - 254D1BB3DF91464711BA7D3D195414AE /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AD363B0BB99BBA01CE892B6DBA2DF353 /* resource_name.upb.h */; }; - 25532DE736FF1F46C61B3E63FF5BC942 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 196E301BA569EA301081B81CED1FDBF0 /* any.upb.h */; }; - 255384C7B6941273D57D227BD668BF8E /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = EA036AE934DAE90256888BFE6A34479B /* symbolize_win32.inc */; }; - 25556E3C5AF44BE822EFDC6EF3BA2956 /* ref_counted_dns_resolver_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = B2770159786DE653FB3D3B87BC458B0E /* ref_counted_dns_resolver_interface.h */; }; - 2556E9D664D1BE67BABBD9219823ACD7 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 4863CAD719A4359A2ADC342E14049B0E /* aws_external_account_credentials.h */; }; - 25602ACB4922B5295EDBE1A953F19BA3 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 76462DD8EDEBA68931E1F6985CA5FFEE /* memory_allocator_impl.h */; }; - 256558233B40ACA6818F143BBC5B8017 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3AFFE4BFA9E3B1157978D135F05C9DE /* ConstraintViewDSL.swift */; }; - 25708537C3AA4C63F4FD80C917439C70 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 94E53DC545353A2BBA8EA100A4E49CC2 /* descriptor.upbdefs.h */; }; - 2575F67A28CE854F97ED015A64FEBCE4 /* get_current_time_chrono.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D21B25EC26AB97D7B7BFBC48F5C76F6C /* get_current_time_chrono.inc */; }; - 257894044F7DCD9439D718B687EC5F19 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5F7329C126EBA6D0CC19AF25E28BCD /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 257DEF39226F45FB22EF5A7F608F3CAA /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A2781712A1280D98ADDD945970933F /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 257E9C7BDB2C51A273F36127A8454AE3 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AE6E44D3E5F85CEEC6BFD73D8D1144 /* metadata.upb_minitable.h */; }; - 25877EAED221A23990B72A8EC938D7B1 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 523DF9DE0AC5FDBD77D7C992E9094BCA /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 258A528FB1FD89D83512AA538B069E71 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECBC60D2F6B64EC1C5AD1E56FE49CBA /* ImageDrawing.swift */; }; - 258B3D5CF10F47384CCE56DE5A9542C2 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5B6DEE53045506C21D1A54BFEC09B706 /* certs.upbdefs.h */; }; - 25A06A8D3D1D14C31922676F7D6281DF /* fork.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C23F3499F48882D07F825268C4E851A3 /* fork.h */; }; - 25A2C46F65CC1921D95B593666F0D25A /* ip.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D2679660CB39D01D955AABD441C9AA52 /* ip.upbdefs.h */; }; - 25A471B3D41D292B5E3F34288ABA540D /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0414655CF9F1F82EAAF28B46C69510D /* resource_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25B0F96DE22C26364ADF22C97234E5B4 /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = B25C018FE7E033587EC9C05966287100 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25B42674A8B59D08115BE7FDB755F493 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6B6ADD87208E9EABEDCD423DCD278AEA /* load_report.upb_minitable.h */; }; - 25B459A04D64863811461F71B7F5BC44 /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 18333D71ED8DD4C18EE70C484B7AE60E /* string.upb_minitable.h */; }; - 25B7AD019C0A055D8D3423BC05EE1753 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC3105103C49EAD939EDA54B473E1DA1 /* completion_queue_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25BAA3FD7373351AAE4A10339565C34B /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 96214169AD6A018FF6B9A902B05C0AEC /* utility.h */; }; - 25BB19D352A75174D9A862FCD0779A2B /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = EC2235779BC4E636A469F05F4B67571A /* channelz_registry.h */; }; - 25BC1CB027B538797A7A0F0D4F20B5F0 /* version_info.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1370B72B38F87CDBD732E9B537B8D924 /* version_info.h */; }; - 25C534AAA0439880BB78F1CC36E19688 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EA13F1E67FCAD03A86293A86E1622A9D /* tls_utils.h */; }; - 25CAE920F2678F76983D53C1A2D38C34 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5CB2BF5358BFA506016826CF79C18B4 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25CEE4245C5C66C51F6E9FAE5B22CD1F /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D100C64635E1199BECAEA4DB0E5D4D /* grpc_if_nametoindex.h */; }; - 25D65C2D5999FC761D30998D50C577D8 /* def_type.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CA3C31DF5098890F0353BBE40ADACE /* def_type.h */; }; - 25DA5C217689862B7FF7AABFEF2C319B /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = C4AA00EE60DE5CD3B58CF22CED0E5DC5 /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 25DC35E1A2522115C32EC66A5AC008A8 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 4C45B26F7BF05BF5BD9234088FBD3591 /* enum_reserved_range.h */; }; - 25DF4FF38E4E20BBA4F41E44B6DAFB4D /* atm.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 97A688EEC8FE8C67C7056AD3A5EC3CE5 /* atm.h */; }; - 25E6DA4863788CC57D099F7C6E1866B6 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = F2D1CE98B19ADB85E3AEBA96857ACFE2 /* xds_endpoint.h */; }; - 25E868E70E487ACD0CC86A7BF4CBF2E3 /* server_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 423389BF9F3873D6A8D1DAB8AC107CC3 /* server_interceptor.h */; }; - 25F00FC6DDEFF92F8685071E18B5ED7E /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = EB148091F7419ADF44FC8C732666293B /* channel_stack_trace.h */; }; - 25F356D2C4E3F4F817F105E74358132E /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54EC04B63006A940542A3047AAE353C5 /* bootstrap.upb_minitable.h */; }; - 25F93310ECC9B89796B1F48DA968A935 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B22BFBFD3AE4C61B4DB60808662C10A0 /* validation_errors.h */; }; - 260C138F0CF8890CDB626509CFAD166D /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = B89E1A52D42F9E6856D4AB10EE6A70B4 /* frame_window_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2615B4575DBB25E0E6D189E351E0DA11 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 1CBE4FD560A3863EF854BB10B60F7C5E /* http.upb_minitable.h */; }; - 261A17AE9CE8F94BC35B90F34A8BAE67 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 17100517A196018967E9CE077AFB57E2 /* slice.h */; }; - 26238E2CCC560D2FA7747D21AF6D3EAB /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 05EC9D65819C536106DEA755BBE006F4 /* jwt_verifier.h */; }; - 262C72993F3D22885F0678E56BC31FDD /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 146D2F8E15818A7347CD33C5CC9464E7 /* security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 262CF181090C34A5E6E135E5F0C707B3 /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D3EE7ABE8F58C25033E4CCBBDDE0795F /* endpoint_components.upb.h */; }; - 262EF939D23BB16EEF93F57AFFC69D72 /* time.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 392D877CC7FE85A0DB0B2FFD8F5FD276 /* time.h */; }; - 26463A5F7FD34319A02E71B303E47C64 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 5B09556B502F7609ED5C4F3327286FFB /* fake_transport_security.h */; }; - 26565714677BE1F2050840FB81A0D864 /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 841DECC28AD0E66EB1C6F8B70A350357 /* xds_resolver_trace.h */; }; - 265BE7E3B9B1E76DCA801973054B9837 /* handshaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D6C83CCA37B7118D05D6C0775E3340 /* handshaker.upb_minitable.h */; }; - 265D89DA8018CF42BA4BDC01D104EF46 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3CFCE66FB4F00FC2DB631AD1F92891F /* FIRCLSException.mm */; }; - 2670E22D5DC3A84BD69A3C759BA8CA42 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2285CC684E259ED8843E937053F54C0F /* cluster.upb.h */; }; - 26731A058FB76BD5AA7D8BB390245CBE /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D1F42AF2FED7F42A05FC1A0C0DCE7DF0 /* internal.h */; }; - 267863A7DDEDDCD6C5FA4CF13661DAB3 /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5848DBC72136B098AF0634F7894771C4 /* status_code_input.upb.h */; }; - 267A0BE8DF832CE31B538FC135B99F1F /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 14A801A50CB75FC85B6EFED23C98A582 /* versioning.upbdefs.h */; }; - 267A147C2A1D33D67FD8739EA96F9261 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8808350D4AB4E9979836454BE8BED12A /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 267A728ABD3BDD95ADA22668958AD8B1 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = E89884DCC7204C424615F5773D6DE2DD /* alts_handshaker_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 267FB1D8F8AD8C5646DF2759E4303C87 /* resource_name.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD3E7753AFFF537D2D3D54C79DC679F /* resource_name.upb_minitable.h */; }; - 26857094E863C029829A93DDA6C37CFB /* FIRCLSRolloutsPersistenceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEBAB354F0C19921E2EC8B159AA1B6D2 /* FIRCLSRolloutsPersistenceManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2685D9C928345111E3EAEB5558905B69 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9213053A5A55C41D3A4F2F307D5797B /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 268A529AB8396A6FBC494AB09EDCCCE8 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 918E5B1147C6D0D05210E97EE94C05B3 /* zipkin.upb.h */; }; - 2695643611DF52EF19FA35608AA06B3D /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = B1A920B1174F03E08228E8AAA74B9A1F /* message.hpp */; }; - 269AB871A34EEA6A680EC2890032532F /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C0C2F1B6913A8897B21C5466D637B8E /* ip.upb.h */; }; - 26A4B46BDED50A763AE4B4EC13407103 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4FC3C7C59C7CE5C50829AE94ED43D2 /* local_transport_security.h */; }; - 26A58403B4725B58CDCEC0609BE13B77 /* udp_listener_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 696D844BC82B6058B8E138511BCE0905 /* udp_listener_config.upb_minitable.h */; }; - 26ACC465ED4BC955D5B742E13DF92854 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF79A388D5035E2FCC4AB44D22F5538 /* TZVideoEditedPreviewController.m */; }; - 26B672F72E50B9EC6321FD27ABC7645B /* pkcs8.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7629BF6AB980C98EC7161220DD360FEC /* pkcs8.h */; }; - 26C76CB22885F8A3DDB485C21DE2CBAA /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4309668E6EA95D4453AC4CB14786E7 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26D320CBBB9394E2CD2AA967CF579315 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0FAD74E6C9CB7A67E106914AB529CE5 /* TVMonogramView+Kingfisher.swift */; }; - 26DAE5343E0112C44E37C8FC7FC4E000 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DBB9F1B05AFEBCBA403120A4F4DE43 /* rpc_service_method.h */; }; - 26E44908945CC0AB1DA621C4A1132007 /* xds_audit_logger_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 98BD93F0371CD66817E9CA25FF43EBD2 /* xds_audit_logger_registry.h */; }; - 26E7C706AE44BB369E26B073AC7B30A2 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; - 26FD94FD81F86FF60CBCB54956E3E975 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 512F6AC9AADD5C74CAE3871E51BE880F /* ssl_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 26FF43A80EEEC201ECEB8C3C8806B18F /* RecaptchaInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0D64EB04164F295CE8A7983513E889 /* RecaptchaInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26FF74E8F6C4B1C15EA6AD2854435FC9 /* policy_checks.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = B94B6250395B0EBB6C62CE20A747C2A9 /* policy_checks.h */; }; - 27047B109B708B340930C1710CA86698 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A252816BC5CA6A7289611E56E66C467E /* resolver.upbdefs.h */; }; - 2707F63D0769C407C076E20411D6C013 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F32B0202D7BA5E13B6F6CDB085F8978 /* config_dump.upbdefs.h */; }; - 271510231309DA97DFEE4640E5C5B70C /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 2D537565ED91F073EDA2DAECC19D5956 /* def_pool.h */; }; - 271AF80CD640FCEF24BD9E5BD3976F28 /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8204BB8DA26EE7BD7BACE781D7A75CEB /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 27248F24D756856EBFDE2E779480B6BC /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E1393849A066FB6865EF1D367DAB9CB5 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27253B2D61AC99B84033C6738689DFA9 /* thread_local.h in Headers */ = {isa = PBXBuildFile; fileRef = F32BD03B96F34A0BD8C469F77B89B871 /* thread_local.h */; }; - 2729F189E7B75BAF716D069F98BD16CF /* FIRCLSContextInitData.h in Headers */ = {isa = PBXBuildFile; fileRef = DA70BAB941C57EFD0621E670A1D93E6D /* FIRCLSContextInitData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 272AF4DD030E673701AA97DC47CD6BA3 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D64E422DBC9A48EE14D7984F0DDE3EDF /* demangle.h */; }; - 2731AFE5AB24717F2A27BC093530BD3E /* hash_policy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 59849FA3745D828423CB41709EE8B651 /* hash_policy.upb_minitable.h */; }; - 273A71095817C45F9B8A1BF648497A62 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 53A1ADBE10DADAFD5B375F80BCF5E7FC /* tsi_error.h */; }; - 273C0002D31EC123C19404BEF39695B8 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CC119B49AFD9E43E18347A60193AE67F /* common.upb_minitable.h */; }; - 2747974DD110381E82261660BEE6319F /* atoi.h in Headers */ = {isa = PBXBuildFile; fileRef = F352E68ABEA37482D8839ACC09115A35 /* atoi.h */; }; - 274DD87FC1FEB5E9106D08878EDE9C6A /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = 54CC412E0B97C216DB86D2B27938F4E0 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 27545F393FDC76878FBCBAAAA23FDF72 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CF1A18028DFF3B011091047B8A3443 /* alts_credentials.h */; }; - 275BE73F0F843BC9A7FA859D82937826 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = C165389BD31937CF9F05C6C2B2777728 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 276501F0D53F01F3AC639B198700BDE1 /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 912DCD6579D25189F0E2DA27299D450D /* syntax.upb_minitable.h */; }; - 276C4CF42B4CF091C5124D23A0463290 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12BB5FAED5500705BF3C0B81985A0170 /* datadog.upbdefs.h */; }; - 27713EAEB0D125F306264634C8432216 /* p256-nistz.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2D4E339BC4234B7A040AFAA8B0A758 /* p256-nistz.h */; }; - 277895CE3FA07C265E4AE809221D3B5D /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E1DE391ACC93A1EEDDF5FCE2C005A2 /* slice_buffer.h */; }; - 277E4256D693D37F518EFFED433098E4 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 4D016C4023C67F6BCE08A5B98D81D2B5 /* arena.h */; }; - 27845B8ED249B4C036055BBD536280B6 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 08F0E0151DF9EFE4B81FCE1D9EE79EDD /* crc32.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27898C8BADF909FC36F6C98229FBC18F /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 98297097A69F101B796C3E865069F3E8 /* grpc_ares_wrapper.h */; }; - 278A52E52794982C79506DCB13CF0B20 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 55CCB9E660AC8B3C5FF7AA4519064AB3 /* context_list_entry.h */; }; - 27A05CB3A2C319E2E81613D87EB0F5C2 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 5F1D2B3DF29D47675BC05D834103E8B5 /* spinlock_win32.inc */; }; - 27A0DFC24CB579A957B0EC0120015B04 /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 96C074EFD26EE90EC78D8F386B478914 /* xds_transport.h */; }; - 27A614BE6366EB21A1940B693E60A692 /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = B988DB7D30B0AE7437E2C03324BEF55E /* stacktrace_unimplemented-inl.inc */; }; - 27BCE94BE88641724E2E30D73E231725 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 423389BF9F3873D6A8D1DAB8AC107CC3 /* server_interceptor.h */; }; - 27C2540C0A52E88AB04E80744885BB01 /* delegating_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A7427F89621B2911CF4188A2AF95881C /* delegating_channel.h */; }; - 27C313A702DF7B7C0FCD8542EE442997 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = A5CCA80179E72B13B61D17AE65D5BD4E /* time_precise.h */; }; - 27CFFCB3BED258AC3F3E09E3963CC0BB /* message.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A0744F09230C6414EAC22E8C49C6B260 /* message.h */; }; - 27D081E200A036B116606E0F140B593E /* backend_metric.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7F56220AE62BFA95BCAB58A3B59DF77A /* backend_metric.h */; }; - 27D8AD02673A4C9235063BCDA7C0C5BD /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = D92D8001855EB1168E78937A378E66AE /* slice_string_helpers.h */; }; - 27DE7B33CE3A6746BFC717941F134FE7 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A346F61894BF622AF70DB5834254205 /* regex.upb_minitable.h */; }; - 27E9ABDBEE2A90C9EEB5929EF07C10CA /* registry.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2282AF84D17C15826DDAA3D0CEBB7FBC /* registry.h */; }; - 27F2A8D811331E45386849366199B4EC /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = A32880955D94FB6982150FE42C323D81 /* timer_manager.h */; }; - 27FF7A2DED309DE91CD00399A68C30B1 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = BBB88857142E95504AB1DDB4601E4CA2 /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28001B0F05504009CC9832EB976CABF9 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 580D971E48192439E30ED565CD3E7BA7 /* cluster.upb.h */; }; - 28077F7B39D1C8CD56451F44E64E04CA /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 70B5AAB4740DAA7EDD629D8DFB536905 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 281D7BE0FA191CC4A85F706BB213063E /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 78CBCE748C627A9C3F9C7451C3F1BDE8 /* cftype_unique_ref.h */; }; - 281F8BDC6710EBC635A6D79D5FFEB072 /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EE78E00A48E45BE3E887C3A1BFC7B31 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 282C55F291031E0252F5EA40B9C2F61F /* message.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = CD4B0C6CC665B5686D341D602F63C61A /* message.h */; }; - 282F3AAFCE936835AFD21E63943598F7 /* metadata_query.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FFB678471DA1578A749126D64B316E /* metadata_query.h */; }; - 282FCD4EA8B05830E9108690B8CD336B /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78388447258B737CEAF7711A5E75F7A8 /* Session.swift */; }; - 2832DD3CD70F400664B8DF4F2E60C9F7 /* distribution_caller.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 263D637C42A0FF6B25083C4576D4EAEF /* distribution_caller.h */; }; - 28345F42D4A0319136C3E96BF697F2A3 /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C9A01B945E550D410CDF8C6F3F6B60F /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 284354979ABFCEEFD128EF9BE7D8BAC0 /* domain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AAD9BF600CC8454D9D5FADFCA2C00A /* domain.upb.h */; }; - 2845A9FB0E470182C609D04B2D0B690A /* overload.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DA611B3C4771D06B6B0D201E1402A55F /* overload.upb_minitable.h */; }; - 2852270777F1C1E3CD1745B6B0349AC8 /* cookie.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B33B91DC43B41C483F326871F83CD046 /* cookie.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 285E15D7C26801DA3D33F8B2DBF68660 /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DEDAE9AFD60EB7DB462287E8F119522 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2860BAE1C1F76AF0E18AA2CB49310DA4 /* status.hpp in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 670387A0DB7884DD1F1B9AE7EF2B30F9 /* status.hpp */; }; - 287A52CB8174A6C47F2EF7D138F10DD8 /* RCARecaptchaClientProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 042D82265AC86988C1A0624990D1D6E8 /* RCARecaptchaClientProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 287CE6203F5105D6A5EB808A06CB1A2F /* dh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7CC0474287C1B5C584D2F1783A5B1BFD /* dh.h */; }; - 2886DADB4013ABBD486BE766ABAA0A4B /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = B74392A73E6CF66B0F1D2B4C14D67AAC /* iam_credentials.h */; }; - 288F06B80921584B8C9751199EACEB11 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FE37D15DC00CD187F42F2B3250021F /* http_inputs.upbdefs.h */; }; - 2894383712D656CBCC25A8399EA5FE29 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F3DE65898387C162E69024ECA5DC79FF /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28A2C18E060673594C55EA201574A5F3 /* xxhash_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = E698C4E5C8762FE239FB35E7EAEAAF8D /* xxhash_inline.h */; }; - 28AD8583E9E6D4A8606CCE72157D3E59 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 22D292C6288097A769A535E4E8BCA2C6 /* status.upb_minitable.h */; }; - 28B7D285E3CA44CCECC3D0154BAE4847 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DEDF40511D43CFC3335BD8322DC1A22 /* string.upbdefs.h */; }; - 28B85876FF653E46C5E711F231B08F46 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = F178DCFC0057BDCA337351C2DCC0BA22 /* grpc_tls_certificate_provider.h */; }; - 28C904A1920AF3C8BAB1F53623B3AF76 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 86ADA4DBDBC1905DBFFB39528BD30190 /* utils.h */; }; - 28D01200AA1DF3DBA1A3101EBB8A73C3 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB9D4F62C5662F38B7D03B6116FDB80 /* common.h */; }; - 28E5C10997E42C32605CBFF3813B2D61 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = E414256B58D4C3A49CDCEB5867E35D73 /* server_builder_option.h */; }; - 28ED88AAC902C8308172D4C997870F9D /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A27DE79A1FE2BC407C2B749CA68EAAB /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 28F1E41F1CB1C0C32CBBB7BB42D6E168 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2EB1C769307BD22C89242B10B4A9BF /* versioning.upb.h */; }; - 28FD4506D6AF46E0573447169754E60F /* stateful_session_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B352AC3FE796521C810E9BAC8E3D72A /* stateful_session_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 290187E3D66C33FBF7DA4B1E6A0D2506 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A306B7A6789F21EB2805CA14DE9FAE6 /* spinlock.h */; }; - 2909E5FB0C6BC1A0B58EAF11F9E411A7 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F98C97E27031D47EAE9DDDCE115A80 /* cord_rep_consume.h */; }; - 2910191E56A0F5316B03A50241689C15 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF07D196EC535B0664121FED7C8D9D7 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */; }; - 29166052CE9BDB4A94FCA653DD60DA6F /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 429E57C5FAFF1A8A7078A12812786436 /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 291EA2C873C115C940F01E447847F4A4 /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1172B30EA38FFB2C74BEBDDDCB5BB8F /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2924F9222B1240FB557CB0D99E959209 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCEB4D9E7890B536E9189ABCCF8F6F5 /* fork.h */; }; - 293036F11D08889F59D3797BA8512DEB /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C074EFD26EE90EC78D8F386B478914 /* xds_transport.h */; }; - 2936E76F821D9E8B93328E600593296B /* call_spine.h in Headers */ = {isa = PBXBuildFile; fileRef = A166A9CE67297B90D86C71A4A6A3CE79 /* call_spine.h */; }; - 29415ACC6AA34C018DFEB35178263A3F /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CC75871E2D81C3671959942E99A088 /* external_account_credentials.h */; }; - 2943418702E91493568273E466B7404E /* demangle.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D64E422DBC9A48EE14D7984F0DDE3EDF /* demangle.h */; }; - 294E9D364FC31A1481C65277810E5635 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = E56412EEBFE01D84A924C23C63C00C56 /* gsec.h */; }; - 295928D0D558D84C8EED06CCB0C1ECA2 /* call_spine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 777A10606E212FF75E1CF6FAC242E032 /* call_spine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 295C4D01E0615472E5905442ED8C7321 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEAE857E0FA5D7527CF8FC8008CA226 /* channel_stack_builder.h */; }; - 296AE700628B52C148C4247828D3116A /* internal.h in Copy crypto/lhash Private Headers */ = {isa = PBXBuildFile; fileRef = 9C233C387BEC4584B732401F25B53513 /* internal.h */; }; - 296CE47B9494E55A92BF3BE155557290 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 092B924C655848B8AA5D32684C6C8321 /* http_inputs.upbdefs.h */; }; - 297D92AFDB2FB3388413EAD760C20169 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D88A946CE98588A2FF205D3B7AB9C71 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 297E19E62FE5FBF3798F89C02997A45E /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 007BC64783B94A75CD502C83A750DBD0 /* sync_windows.h */; }; - 298BC2C7A381F477181923406E136842 /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CFC91CDBCECCACB99863483B4BBA5BF /* crc32.h */; }; - 298FF4330E273BFC06911CE785EE9E7A /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 9637A6B32113D75B8F6572717D2411A3 /* invoke.h */; }; - 2991E4063B8F9774744B1F21F96A1819 /* cleanup.h in Copy cleanup Public Headers */ = {isa = PBXBuildFile; fileRef = 7D777526849BCFFE3B15EB7799EE24E3 /* cleanup.h */; }; - 29A08C85CB13692D871E1ACE10E9DABA /* dns_resolver_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C0806A278269DC9785FCDFFC38AFAA14 /* dns_resolver_plugin.h */; }; - 29A19D6E759264029C16CE737E9CABF2 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B69A2881C2F6934F6CE85BAE4029739 /* cookie.upb_minitable.h */; }; - 29B865588A1E1CF2005E6FC62BC7EACA /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8A940398DEF00EA1AB67316B4B139AA8 /* notification.h */; }; - 29B901666BF1763C0CE0910FB142AA91 /* message.hpp in Headers */ = {isa = PBXBuildFile; fileRef = B1A920B1174F03E08228E8AAA74B9A1F /* message.hpp */; }; - 29BC93B2B75687785EF376D9A1DFFE25 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 518562F7B0AAB615BC5E2CDDA5944150 /* dumpfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29BDCA86320DF3D2AE1D28F1F86EFFF1 /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 961EE1349B1C94B683BD8DB06522704A /* config_dump.upb_minitable.h */; }; - 29BF2968BDA825519835367A21824CFE /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7954AD846BC13CCE0078B774592D0812 /* http_uri.upb.h */; }; - 29C6FD4BA5321F9BCAD64B0AF0382E47 /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5596F0A7024710ED725B78416F0E9F57 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 29D18333E54D569C22512EC9F4D2E1BA /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B0EFF11EF5FDFAFCAA63B7271EA351 /* bitset.h */; }; - 29D60E30E19D5A00CF0B2994C789C648 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6360712D92D1C09822D85D47E7C764 /* retry_service_config.h */; }; - 29E9CA259A19352402499050034EA4FD /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1780FD900DA96158B3B017A4BDB0D5E /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 29EB570B99FE4CA9B4F7291C73028271 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C8AE9F4A8EF3CBECB506EF85FC60E63C /* map.h */; }; - 29ED8D8890E9111007CE7DFAD022FCEE /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCD90614BC993A382CC0296945F542D /* FIRVersion.m */; }; - 29F76F085BC22E0C58DD750260F649A4 /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6940FFAFB8FAC0D845817FC511A8936B /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2A057C31D5734FE5D745740FB740D29A /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EBC7DD516C2D1301FD499D56E6140217 /* buffer_list.h */; }; - 2A0F46B01F315E452CDC258002AA7D39 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F0AEA0E5657962FA349FA5F57CEDA2 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A11CB2803BF9F32AC99B3A5B5CB79E1 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BC809DD1FD6A1212AABF433A544693C /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A151DB3DB17EB946034C65D980F1F99 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = C93587DB406444D437C27FDBC98FA66A /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2A17A073ACA3EF109D7189F67A33564F /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1B1FD2B477F2428D3CB77FA09DC50ACE /* pollset.h */; }; - 2A194364943ABBB42117AAF2D2A7DE80 /* PromisesSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D4B40646A44E8219D17F2743CAFDF0 /* PromisesSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A1BC4F7AD94FD3598460E9501C0B26A /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8DFF792548DAD2D3D2839840218FDFA4 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 2A277CCB4CB161679833E43FFC2CB21A /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BA4D6CC59095F6546A05043BBAA10DF /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A28A5B1A3DFE06607C8A8C9EF674083 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 65570E28F822E53E33E78FCFF9AF541A /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A31996B2A6D29FF488B1B065771AE92 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = EF165546C5B78686C8DD7FE46A0AC3CB /* config_selector.h */; }; - 2A32EC992182F8E4DC443DF73058C33C /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DA1B457A25A7728C8BDCE8853C01C4 /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A425612E3CB0C0D41D67088404E7E3D /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3207D56A7852BE37898F775FF3D8A1C6 /* grpc_method_list.upbdefs.h */; }; - 2A5266332DEBA1550A531AC987AEA88B /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = C94E974D34976B7FB9F076236BC73521 /* xds_channel_stack_modifier.h */; }; - 2A5C627B151CB2576B9513462A5764B6 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C3B8D7C37F77B3B2D5A6A4DDEA3F7683 /* bootstrap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2A5EA262AFCA4AB051C25E2138436B68 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A2D633336C2E54D4060FE908E7D62A /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A67D19F64A1E6F7B1079292B9F3F36A /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2770AC4D301B970BDFDC46136F81D919 /* xds_http_fault_filter.h */; }; - 2A69AB885FB3B28A229FBA1885E2AD9E /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24BBC365ECACCB912F74D9C0BD9CC451 /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2A6FC44316EA8A9A6FC9FCA2D5A1B546 /* health_check_client.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 648B36C28EACDF5FC065805D01219987 /* health_check_client.h */; }; - 2A71F5B462AE5E574C107AE8AF242564 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EB539C8226F09333E0FE2AD080CF9E25 /* xds_bootstrap_grpc.h */; }; - 2A80CC1BA49EAE3625D21A458F2D6028 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = A020ADF93B391914809484729DBD2769 /* getrandom_fillin.h */; }; - 2A811534DBE7A9EA512722AEF01DC97C /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = EDAF5FA720321D107F9AD4C5B6A868DE /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A83A639448918FDA5C2BD42B34612A4 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E7BF436C17C9BFB1C58741ADA9947AA0 /* alts_counter.h */; }; - 2A9E8AD8F096B0C39A12766961A648CF /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 052DBF58F4408C6C42362255CA08D4E3 /* channel_fwd.h */; }; - 2A9FEC43B85B2C9435816051948465F8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FA99B600E8799E301FA4846C733738EB /* PrivacyInfo.xcprivacy */; }; - 2A9FF82EA4A002EDA6A167580397505B /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 9295D6C24A0BBD768B8A09D1C33D8431 /* grpclb_client_stats.h */; }; - 2AA175F1AAA676B9231D494DA1C2640A /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FC73E94DFFCB3C4C7BE6CCBE3DFBFD0A /* flow_control.h */; }; - 2AA2E559D10D2A4D331CB63258E0EF0F /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 834DCA5A1C83A912DA182C06F223E8BC /* http_connection_manager.upb.h */; }; - 2AB5E11C47C580CB35CB77749EC052E3 /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB68221E8E4BAA917D1D052E90433310 /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2ABD782ECD61145149FFDA3E82FD2752 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D9789E81452F605CE8FCB636B947075 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2ACC524BBAAB58EE2A711554DFF6CAA5 /* xds_transport_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBFAA9D204D67FF799074455B5EE1780 /* xds_transport_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AD8987B16604E75E19FE7172332B9BE /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73AF16F65707A76977BB236194FA7E3 /* ImageModifier.swift */; }; - 2AD8DEB4F64B3A94D888D9EAB4C673C9 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0029552655B933124A357E9609E739FC /* config_dump_shared.upb.h */; }; - 2AE29A89B11AD47C5C4C3CE6BE709944 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 3A90F6564ACC5E89392479A3C202E476 /* status.upb.h */; }; - 2AE30E66BCD52F00FCC1E5E80450F47F /* GDTCORMetricsMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = FACA119EFE61FB4F7A8AEB57E3937585 /* GDTCORMetricsMetadata.m */; }; - 2AE76EC7AAE181EDD58842B0A5564F35 /* params.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = D2C263261239CCFDC4B3BA10C4423767 /* params.h */; }; - 2AE94725350E22D6D89CEB009166021D /* TZProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 039083BDAE39BD9483DEEF0E8FFADD48 /* TZProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2AEA13D60202FFF8B7BF998D4E663655 /* path_transformation.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AC172A73A5633B24948F44D69F36FE32 /* path_transformation.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AED0C16C3BCB37FB8F633584DF431EB /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 2B874719A4AC4E9B0252D10625E06841 /* tls_credentials.h */; }; - 2AEF14470493ECC1C04251F703A026E1 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4E6F9792D1AF7FAF739D4FF3DC0F12 /* fake_credentials.h */; }; - 2AF68A83513000E1767AA3BEC1A3C01C /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E017ED370EA39926247976D0CCA1C0 /* tls_spiffe_validator_config.upb.h */; }; - 2AF7294CFF8027A724400ACCBA5B00FB /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C0D9FB45BFBD628C64E9D8D6D1A6831A /* channel_args.h */; }; - 2AFA65BE1938EAF77890B1CF630EC77D /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 109A85439F51F56834D8F41DD599332A /* posix_engine_listener.h */; }; - 2B085F8BD8BE155CCB1F87A5E67E3F9D /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FC6D7D0A2F55571F827BA81DF0EFBC /* file.h */; }; - 2B0F3E0987343F1B88B6AA4CD2CBB398 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D7761792AF2FFCD70449B8840C6F71 /* logging.h */; }; - 2B2D53DD4C45B70FC7A67FAA74A5272C /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B758D739C0D97A5B9D9DA0629D850F6 /* string_view.h */; }; - 2B4371FAF457C7DFB971DE98FF30C815 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 025ACDC5181D734BF7C462583C7A23E7 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4ADABB7A88644650F7EA843FCD32FC /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA541608CBB1549A411B3E090854125D /* common.upb.h */; }; - 2B4C830A2B564C2FEB547E9F3337F18F /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9ACEAFC24190BF54454B99BAC69B7C4 /* FIRCLSHandler.m */; }; - 2B4D22A98F42075FEC4623C501ABAD3A /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 28511D4E249249B60B14CF898F9A05CA /* hash_policy.upb.h */; }; - 2B5263E420693E26847BC6FE81194E3D /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 207FAC59107DB1FB56E4AAF2F1BAC7A8 /* connected_channel.h */; }; - 2B5787F12B83E3D405F303686583E49D /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CD8E002B5F1EC4242D04E99BC06BEB6 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2B59CA0F30A01C5EC3DDF6E40E7EBA89 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 2B5BF7654C12AFFF4DFCCBABB6159240 /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE66DA9F0987F41B7B55AA687B6EF714 /* ratelimit_unit.upb.h */; }; - 2B646B75516C9059AEE545A3770DA335 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA9D01783965F1D9B96FE76C24AA104E /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2B67641D5635301964A35DCA0F177765 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB6F8DA81993094A19FE38374E716A7 /* udp_socket_config.upbdefs.h */; }; - 2B6802B1BBFF1DAF96B092B1D97A9A21 /* trusty.c in Sources */ = {isa = PBXBuildFile; fileRef = 995E26ABE41E4D8123EB84A959C94E7D /* trusty.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2B6E6B85580B3394F21D2387CC9172C4 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8E77561401C7E969C6BF904E4A4147 /* enum_value_def.h */; }; - 2B8F82C3B363DD258B5013B67718D23A /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6704AB21BEFC2E7EEAB65872C328BFC0 /* status.upb_minitable.h */; }; - 2B941C8D048E40492D8E30A7349EDB5E /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 501E5DDCD16727063BBFDF3F0573E1FA /* opentelemetry.upb_minitable.h */; }; - 2B98EEB65D11443F81161AB9C8FAF609 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1596ACDF03BF4DCEC71D9C726DB0E8 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2BACD6DF540AB1171F8F396E5B6E81AD /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F7D855654CB830C2818788FC9B1DFE6 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2BB15BE6D16E4C07C6761C4E6F575F1F /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6713B28A609A43A8215612174C7FA02A /* empty.upbdefs.h */; }; - 2BB1A48AF06B5F56604372FC005277DF /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = A37D08D216DD1DFFD79045D2B454E170 /* x509v3.h */; }; - 2BB2D7F4CBE209F2AB663C3FB70835A3 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 62FB710546C7F9765D9525DD5879D3B5 /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BB39D21C7F82FBB61ED05840FA4F86F /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = FED67B7873941AAA26BD44CBC236B68A /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2BBFE178E13EE2CBA244542C096A03FA /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF1605268D8D9487BD4DDEC1BD483B68 /* call_details.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2BC1AADC3665C9DF089428F0D3C0775A /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7117987C3863B46F851DDF3338A549 /* discovery.upb.h */; }; - 2BC381F9485D9726F4A4490DA1FC29EC /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B07F26500D6EE123DD36971F43F776AF /* hpack_parse_result.h */; }; - 2BC4B98184A602222770B977B1BE2FB1 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2BFA5DA10C49E4D193D714615E569D /* api_trace.h */; }; - 2BC6962EAE9BFD7C39AC74B76651D02C /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9BCA34E54DE698FDA4E2CF26C51241 /* enum_def.h */; }; - 2BDB30F2FAC5399058EAF7F2569EEBEF /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BE57F722B50DC848DA9C5227F5630DF /* http_tracer.upb_minitable.h */; }; - 2BDCF3C18C65C5901F0B0E44C2AC10CA /* if_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A421F772C1EC941CC387BE7108568247 /* if_list.h */; }; - 2BE14D31EDFB40484C868E1BE01E1D1D /* call_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B546916C9F81C13330B2DE0A35FCAC05 /* call_factory.h */; }; - 2BE5697997352ECFF8E06ECF7477935C /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F0C934CA2D29BB365D5026288C471F7 /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2BECC4259FCFB7A8CDB52223F1E01607 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B804F2F64C3FBF1E577B2CF6E851AD /* log.h */; }; - 2BF4F27D1BCC62AA02445E4A19788B3F /* discovery.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A69437761F18F620768BDD43DCAF7751 /* discovery.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2BF529043C7561CDF567CE5436E0FEAC /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0015B3A0C65E2E6A644C56E7BB547B98 /* api_listener.upbdefs.h */; }; - 2BFDBE9A294443826C0A9CD1FB7C6B37 /* legacy_channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6952E535AD069F00D60346953A66452D /* legacy_channel_idle_filter.h */; }; - 2BFEB014F69A70770539548AC2F542A0 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = B93F7AE4900EBBEA859D8D4B6EC018F9 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2C0169A579EA73BD5BB919852F3AF0F8 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = C262F2478788C7D087CCD51C01DC9B8B /* check_gcp_environment.h */; }; - 2C05467AA256266BB41E4124800BEFE4 /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EB9CA7A8931FB99B91B6DFAD92945D9 /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2C2608759E73BEFD118F54E7A2B78321 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7BFC6A64209642FCF9EC79F3C5281960 /* client_channel_internal.h */; }; - 2C39D1F015BBE512A757D73B14F4AF4B /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43DFBC4F50D23FB23B4E85B33D1AB548 /* error_utils.h */; }; - 2C51B56E58B8CBC51C9BCB3E36BB5F03 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = FA888D84D215A359138B2EC521561AEF /* tls_security_connector.h */; }; - 2C5327E3227F06E8786A384B4326F562 /* spinlock_posix.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E0559217778CB0A1B63C1E252698D202 /* spinlock_posix.inc */; }; - 2C55A3EECC5403FA3261CF5A5C388183 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 47F80AD5385F3B91700ACE5F70886148 /* descriptor_constants.h */; }; - 2C76306C035B5D2AD9B6A7F25E1DA3C3 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F53F350549D32CAECBC975343828B4 /* prefilter_tree.h */; }; - 2C77D86FB73E328F0570AA8321D2063C /* http_protocol_options.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 93403E19016DCF3EBF6D4049D98282A7 /* http_protocol_options.upb.h */; }; - 2C8B240EE80A22C106F08F756775A630 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AEC214A8DAE62F2FC2613742504C98C /* load_report.upb_minitable.h */; }; - 2C909E6488C253D9B5B0E95044408152 /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 837750B2E39F6D7C60AA8B42F25A2805 /* xray.upb_minitable.h */; }; - 2C9347963D249562F9001F2F2E94DA63 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 25B599CD8BAF7CA8FEBBF1C63E72F526 /* map.h */; }; - 2C97477AE12A0568B419D4862421E86B /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 42317275C7C3EC6E4F3B15A961DBFD3F /* lrs.upbdefs.h */; }; - 2CA7DD9DE71B86A1C3ECE87116FAEDDE /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 62B2C9A74DD0EC6272231753BE1D5251 /* alts_tsi_utils.h */; }; - 2CBC1C33655592F1BBD914E54E685103 /* span.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D1326F7ECB39972BF141766EF23C4FBA /* span.h */; }; - 2CC214E42CD0A139D1DEE45EE13FCCB3 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C78376C5F1F8D300B8F47F31037DF507 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2CC22486712DAF72E8DAFEA6747141B0 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B2731373CB55F5F97C55C4F275B2FD /* client_interceptor.h */; }; - 2CFDC9C3A78EA4714F7E312A83C6F14B /* GDTCORLogSourceMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B6E9544525D8AF5CF689B7380D4921 /* GDTCORLogSourceMetrics.m */; }; - 2D0908D8D9DC154B7238E445342ABDAB /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72F4A893420923302362F3205B15EA5A /* metadata_array.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2D0927D886685CEED690B4CBC02FB830 /* constexpr_parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 23B2ED42716C5826248C1BF99C8A647A /* constexpr_parser.h */; }; - 2D0A640AA9C6918CCD67E6A6974E8A6F /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A16575B7C8865A44480E12AFFED6A0C6 /* domain.upb_minitable.h */; }; - 2D0E0DB4F47C942B9C0DA5F0C0DC9533 /* opensslv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7381BCA01752D82A6B77804C5B7C410C /* opensslv.h */; }; - 2D0F1F5FE2DDE55F52586F1D072BC32C /* native_posix_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB7014B8898ED84436114889F9C8B13 /* native_posix_dns_resolver.h */; }; - 2D15EA189FA62851B099FCC1BD004100 /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 5DF66492744F0F71B3BB61A61D5DED6D /* symbolize_unimplemented.inc */; }; - 2D1F4C4C3A2FB734E8C72452977F9B00 /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00D945935FE5B90BA76DB73D7BE0D12F /* http_protocol_options.upb_minitable.h */; }; - 2D2EFF3E357302C8D2D3C3282DD219AD /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 1088A96FA2026B7A2E492D18AB5CE10F /* alts_iovec_record_protocol.h */; }; - 2D2FF96FCF12FAC01A690A74AEA143ED /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 27BCC071053C4324552FC55199407F88 /* wrappers.upb_minitable.h */; }; - 2D3181914F8A2BF8A1C61015C54DD5CD /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2F2AB0912C081E8C6EC4C6A43AED5E /* oneof_def.h */; }; - 2D32DEB031C1CB14B66AE08B72D7BAF3 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111FB7A06FC40B80A398D08F4225ED85 /* HeartbeatsBundle.swift */; }; - 2D590FF057382E9958EF3D1C399883B2 /* crc_memcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 151FA806C4E1198323EF9248429168F8 /* crc_memcpy.h */; }; - 2D652171BAA8EE95CF8652119A6B570E /* path.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D818E260DDB01A1AB476FE19FF5E9C05 /* path.upb_minitable.h */; }; - 2D66964862AA6C4DFEDC3F64B87F0E0F /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = FA65548EC8F192591889DD41A0B84D6F /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D68200ED525B45FBCBB780409010824 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B7F6BEAC736588D103E533B0B740DF59 /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2D69276BB0133C40A4D785C1D9BC59D8 /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E2CCD592A6EE4D8FEFD6421B7BDD68FF /* traced_buffer_list.h */; }; - 2D702C15EE2972D99A8A620C5D9190FB /* pick_first.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 263FF972B1AC579DA706252E41529D20 /* pick_first.upb_minitable.h */; }; - 2D74BFC70CC8681EA7E4CC1768DF9CF7 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 722EB1158BF0A16988B08F3CF6FEF649 /* call.h */; }; - 2D7C480964FF82CC8F440A773F8D92BE /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 93087C7807480537F2B5D1ECBCA2F797 /* annotations.upb_minitable.h */; }; - 2D7ED368BE235D2A7D7325F8395965C4 /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = C04907A4708BC88E01BEBE0A3741E1E3 /* service_def.h */; }; - 2D846B3910D4C658FAD7479494185AC7 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C8944DE2EDBF57302FA1802C6FD7CC53 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2D8480F044201A45DFE6E51132CE90FB /* FIRCLSAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 543CCFF0298B46D95E0DD348E8647127 /* FIRCLSAnalyticsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D8DB981BB0D7B2B3E1700A7670EAD68 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B6367F69FF137D0BA2B9596DB19F65F /* value.upb.h */; }; - 2D9F780238BFCC21DB89DC495FEECA5C /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D89732E643C43A6697E3C7C7A9996A00 /* ring_hash.upb_minitable.h */; }; - 2DA5F9E9B9F683C3C467EEF9B5E16CB5 /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = B8EA3B49540E18C349890B469FC810F5 /* outlier_detection.h */; }; - 2DB51A95387AA98F8A4790B5D3BEC4BC /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EEBB5E7F110964667A2BC5EFA32580AB /* notification.h */; }; - 2DB54E3F4285FA7E070F973BEF59E640 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = AE8A8A548220BF2BB9332E6CA4C799D4 /* time_zone_posix.h */; }; - 2DB5586F571AFA26296670E350B13774 /* CodableErrors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7297F9EC842EC1DF4E63735A5B1BD8D2 /* CodableErrors.swift */; }; - 2DBC900238B7D1B2B301C56C74B24686 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = A6FD99979DD70A7FC25EF4CE3AEE755E /* useful.h */; }; + 1EC96964CA808679DBFCDF13E5112079 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 27EEB3BC6EF6816719DF7AC8820AEB5B /* resource_name.upbdefs.h */; }; + 1ED66C3634586ECE65D34431D8BA25CD /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 49B0971160DAF94BAAA38BB7152A5323 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1EDF69AB9711C47B01F953254605240A /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05DB355DC0EACEBF6A0B5C8D69360763 /* skywalking.upb_minitable.h */; }; + 1EE298F167E63CC90CA0B5065544EA57 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C3D0D6E23BDBA7B9981B1D52E6B2C22 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EE96728A651BA93EF572A2A31D87EC1 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7932A2CF7AB9BD31BB956091DCE799 /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EEE20F9D06D98C869A9BD17FB00A2E5 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9973D7E859A15AFA2524ABEFB0DF3FA /* opentelemetry.upb_minitable.h */; }; + 1EEEE2354D5B27DA10452F32ECDDE51A /* deprecation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 017AD30D5CAD9D9D06D0713310C7D4AF /* deprecation.upb_minitable.h */; }; + 1EF292767066AB176E750F23C045705D /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D710CC83C6FBBABFE4C9ED45049AC55F /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EF53932D5B5035FE8DA7566188FCD3D /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = E2FE16D66F4325B885CAEEDC9C254F2B /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F144385B937BA4AECDBCD4B688753A3 /* lb_policy.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 41307BE757B22092B55AAD4982C3141D /* lb_policy.h */; }; + 1F1B221181DA0CDC83E31B303B60C6C9 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F46316BDCF34B2CBAD26026FA6A9ADA0 /* iomgr.h */; }; + 1F1DD857C10D230963BD02597ED7B0D6 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 5E6AB51A716CB8DF20E1E4F197C0872E /* def.hpp */; }; + 1F25302236D49B7F89CE8D8FD68E72FB /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 5085E25245EECD9BF35418053995D3A4 /* socket_utils_posix.h */; }; + 1F2626FF651F9D394B848839BE2C9C8D /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 628990FFBE6803A20006509E343B32D8 /* curve25519.h */; }; + 1F285EAFE181E45D258B44A554FF8837 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 928E6A84C60E057F9CF5A6B251838E2D /* Kingfisher-dummy.m */; }; + 1F39AF29330D8C0BA56E2E9EE2F5BC6F /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 650A66A4A5F6B90D18580AE3200202F1 /* time_zone.h */; }; + 1F3CBD04025BD3EFC4F5CF5647D12B20 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 677B5F1357CAB93A55C0C19D52A9F475 /* validate.upb.h */; }; + 1F3FF73DB3304C0A96BF15C019B502B3 /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E834F86FC7556FCB776E5725334BD53F /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F4519E5536A75DF02E01A6C4478F55C /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 64C6B874F166D4AD8D01E4971A2247DE /* table.h */; }; + 1F4A13FD6675FCFCD9C19DF350348899 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = D587B10522AFD09810804550074C1AC2 /* SVProgressAnimatedView.m */; }; + 1F54EB5907F7A2CA6AD8208B5E815CD4 /* FBSDKCloseIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = DD165703A4B5827E641B108477B5313A /* FBSDKCloseIcon.m */; }; + 1F5A1C5FD0DF47D208FAA2961B2EABF4 /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1909A8F01183EE5C8478F2BBCE739516 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1F6B5847DEE27FBF7FE1ADB3554C4EB3 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5A8F67A3624734AFC3F0750D214BFCA9 /* struct.upb_minitable.h */; }; + 1F6D52C49B83C62692071CB7D2F2894D /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AF99D8BBA21C896B36862DF8B450479 /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1F72F82934DE40C1325451BA764118EE /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = DEA6288855666920C1EE116899E876DE /* evaluate_args.h */; }; + 1F7405790E29CC2AB8B503809570549C /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0604B132AFC4A12F5562F7D4AD1973EB /* cookie.upbdefs.h */; }; + 1F76F32A85F7D3526EB3ED7C2441C5F7 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF12C38F3EFB2F2E4D72110D7CC68215 /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1F77E661ED9DBD7A0F60893C7858343C /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67FEBC53BFA7982C1B094194220D6E31 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1F803B66C998D2372DE8A87E1E6FC16C /* filter_state.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A2E6714569DEBF1E861A4E654497714 /* filter_state.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1F82B5F4FF2716557C0705358756DE8D /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F00CF3E29B787941D11FC32113D3CB1 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 1F8CA1EC4EA73139C7375BC1E8A6ED3A /* cel.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 00AE0F1DC5B63E68CD5E14986FFC4472 /* cel.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1F92B8F59DE6E8468F320250F1E0ED38 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = E826FA0DCB9AA6E7829C68391B323B78 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */; }; + 1F96DA8A2187CACB84F2DCF5BE5D73A2 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8D683C33572DFAD0744BD295D2FFDB79 /* channel_stack_builder_impl.h */; }; + 1FABE58102DC893B7B0F1D833FA71BCD /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1E0E15097C0C418049C615793C17AA /* versioning.upb.h */; }; + 1FB4353E580A44C7216824DF98B26DEA /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; + 1FB470D64697E3E421D42AD730D5F032 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89DD6706776D592E3D61E458143A560C /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 1FB9CE4F9F384F256B8584F03B0A1028 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FC828EBC058334FEC7EA82859235FE0D /* orphanable.h */; }; + 1FBD875E436118A136AE2C27023CA501 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F3B0C67215BDB68FB0B6E83EF50AE5 /* grpclb_balancer_addresses.h */; }; + 1FC37124D79811AB4705326E5520F2E1 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9C1C32B02D9053890FF4DCF44F13826B /* tcp_server.h */; }; + 1FC6BE4AD977A070E91DBE0F6F9A06E9 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = F019BE0027333EBFE1C6AD830B77ED4F /* matchers.h */; }; + 1FC86243A5440C7A75C3D4D60210A27E /* xds_http_stateful_session_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEDF435A95577DB26B95C4E9113FB960 /* xds_http_stateful_session_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1FC986C48AAF235DE2B7BC06F97B4007 /* algorithm.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 7CCE7EBC8754710CC75CBB7672B4C99F /* algorithm.h */; }; + 1FCEB26B11AA8A671B059FBC491A6489 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 767C2BD8FC610178F1C4801AB4A51265 /* stats.h */; }; + 1FE271E3774EDD59E4CEFCCEAA1884AC /* internal.h in Copy crypto/fipsmodule/sha Private Headers */ = {isa = PBXBuildFile; fileRef = 4B9058BC2E451D27CCD36FE5E4596AED /* internal.h */; }; + 1FEB39C11CACFA3205261C9E1F7706A6 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C29FCF8DBBB76BE7430CC5A863325805 /* GTMSessionFetcher-dummy.m */; }; + 1FEB39F5030B0A00EFDD4E0EEB040C7D /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 901488893C0CB4F545DCC38BD85E836A /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 1FEC15B9BDBC436E96BF8D6E3F6E3B31 /* variant.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 17411B437FA23CD41856403FD256CE13 /* variant.h */; }; + 2004D5F4E3B2EA6834F608657115924E /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 19E26A4B169F49DC1D739FBF65C47B31 /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2009B31287A45D644F6BF16037E8AA54 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E55CA4B817CA18A3582661A230E111 /* local_credentials.h */; }; + 200BCE5102333261043AD38422AF6E7B /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C037663A7B0D797D63F849352CFBD51E /* ev_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 200DE6F9643A63DE035D9A1D363F6F5D /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18A472011BC6B27F81C11222DEA56232 /* security.upb_minitable.h */; }; + 20142FF3237B93D60FAB45AB2265EC48 /* opencensus.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E0ADC549E03AB200B97BA19D925C1889 /* opencensus.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2015F6940126D38DB47CEB01DB4007ED /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBC681CC0E30A623DD0F37A635F3205 /* xray.upb.h */; }; + 2018F92E5635F707C7F1F73333DB93B8 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = A6F19150CA4F687D5EEBC98393D97AA2 /* descriptor_constants.h */; }; + 20244CA6DD8329F42C8E300B527B4A75 /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0870200BAF1C908521FAAAB1394E5974 /* api_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 203118E7315DCD5997765E094BDD6DD6 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 821CF53D948438526D4FF6E1FE072297 /* enum_reserved_range.h */; }; + 205049BD13731AA71A6903AABEDB6F67 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 82BF24D5B1948C3586E081DC415726EF /* timestamp.upb_minitable.h */; }; + 205B8902B2BDA6A151350E8BD21E2D33 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD6B4219392E7B7D65DF024F1F2AB03 /* fake_resolver.h */; }; + 205DEEFDD583544A4D8C9713283769DC /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 70726503CF283EA471A14FE18BBAE3D9 /* alts_crypter.h */; }; + 20674E64855C6F7816E9B3B1ABD022E3 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 609E2D3149EB320511AA33269BE71DCA /* fault.upb_minitable.h */; }; + 20775B074F28A36E957589EAFF01F32B /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1DB2788AB562F78E0CEF29E7CA3335 /* bitset.h */; }; + 20785F96BE384BD1C771A7213C74C29B /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DE09F043A61FE2E06EE3ABCA13420C7 /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 207C8DB7AE1C3DA8B597F57323560D6D /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10D327DB8433E7FB4822F2658AC38A4D /* csds.upbdefs.h */; }; + 207F7F02646318F0734F223F008994C8 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CBAAD301C85759B9D710241CC6397BA /* FIRCLSMachOBinary.m */; }; + 209073E90BCC023ED9ED66D11CC8CA3B /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 58019019C02E1CCCD55C30ECF4B2BF20 /* stats_data.h */; }; + 20980BEEB49AAEAE52F9F8541B2C04A4 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 984D7C34D66154A159CDBA59C739BBFB /* altscontext.upb.h */; }; + 209D583317B87A2A5E22191B72BD4B19 /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 490F6E4646BA6F79A747CAFF0AA51868 /* FIRAuthSettings.m */; }; + 20B95D9E2AA325639B94D04C30026C58 /* nullability_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 983916D434DD03077B1CCAD346CA433C /* nullability_impl.h */; }; + 20C012B4EDEF2C9DB5A796382BABF039 /* callback_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E15BA16FF99C789ADE72FE8D0E9719F6 /* callback_common.h */; }; + 20C344EAC7872BD80366CCF93757E388 /* init_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B90786498B4958CE62FF627226FE0F /* init_dump.upb_minitable.h */; }; + 20C5D8A6B4A3E66E441DA581169CE191 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6B5A0A2E5FB0C168E84F493AE4454DA8 /* common.upbdefs.h */; }; + 20CFC80902DFD9224768BFC916B0F584 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19A30A71E653F61106C72FFEA12F1C5D /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 20D6F63310D1283491A46BABB216F52D /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = BA390A9E962D88D97CEE18282C73517F /* context.h */; }; + 20DB69593528CEC099CCDD9C40C2348F /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 46183FEA8FF83CD38CCACC4A09CB37C9 /* memutil.h */; }; + 20DE264E594FAF51C1D7669CBFF69152 /* spinlock_linux.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9479426056AC9859E66265E50A717C76 /* spinlock_linux.inc */; }; + 20DF894DB9D3E9C9BDEBE0631729CD65 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F9E04139AD67524C8F782FFD0E81C88F /* memory.upb.h */; }; + 20E01D657901726D2714F680F67C5766 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5570CFFA8C62DDDF8F93E133B5ECFF /* rbac_service_config_parser.h */; }; + 20E77BC333617D5D0AB62E423F606422 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 20E78AF1B91C4C96B6F960FCF5FB489B /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = D43B37EAB758CF76353816E525E6D794 /* async_stream.h */; }; + 20E92132561448626A610A33371E43D5 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BC81E35D2BAE406D27CE3D2F44F70AE0 /* filter.upbdefs.h */; }; + 20EF64B8863D046AEADF38F202F43A11 /* cf_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA9B361FAB3F5B61BF3140DF7C370B6 /* cf_engine.h */; }; + 20F911DC53235EA92A6C1B39F2A0906E /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = ED6561745C35AF844EC71D3C9F3B1734 /* enum_def.h */; }; + 2112FC8C7ACFB29FE4DC7393C214CB5F /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7897D9D1F4E2CF2FF6099EEF1D39C29D /* context_params.upb.h */; }; + 2127ADB30837B2ABDCBBD88D9986E522 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = A766B9A92798B3815CC9802F765F873E /* http.upbdefs.h */; }; + 212D812B9A69A99903724E62E235F6C0 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4784FC6D66230BE89996DEFECDE1B032 /* RingBuffer.swift */; }; + 2137788B6BF8FA455001E79AF5D96FE6 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 39D68EE0BE06F0DA87C24ABC2CAC0395 /* endpoint.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2137C688BECD26FC6D7BAC7161C70E4A /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 14312E51E61FEB43A9F01997D694828B /* quic_config.upbdefs.h */; }; + 213EF10A60384FCB7CA3FD3D5603470C /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7076DB19337B1A3AE31FDEE35F57790A /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2142C0168FA4564C1F71766E9E988490 /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE315B69E902BD979D5F06BC5325350 /* validation_errors.h */; }; + 2144F1A800D01B438B159A9BA86AF966 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 115650BD79E89BFDAF948BB5868D896E /* compression_types.h */; }; + 21473E5AE75F0759005447F83DD35C55 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0E679960620D4A62D4A68C12757D7192 /* posix_engine_listener_utils.h */; }; + 214F31E672B363E2320218CB21BEE750 /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = D1726AEC2B2496F2FEA502477C07EEBE /* service_config_impl.h */; }; + 214F952540436060851F5906E36F2760 /* FIRAggregateQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = AB120210889E337D37DC8437EB793379 /* FIRAggregateQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2153014E4E34141435B85E653C9FAE64 /* deprecation.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F8BD5E8B0633EDBC5934DCB0106B7108 /* deprecation.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2161B5AADA37828B726CA632E2DC79F5 /* FIRAppCheckProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C92C830337CB0E5441483F7B22ADE5F /* FIRAppCheckProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2168E7E7297A17B9B9AD0BE63A509D2B /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 54DB95353CC2C222FB6CEE674F479B2A /* xds_endpoint.h */; }; + 216FBF2B2798290EA21F5E532672AC97 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D28B06779C656A3C6065D8C9573F11C1 /* accesslog.upbdefs.h */; }; + 217BDCF7DF51C3B92BA8EE4B7976A493 /* internal.h in Copy crypto/ec_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 93D315C5AF64192D42CE8106985F9488 /* internal.h */; }; + 2181E21ED160B2BB80619CD3414B61FD /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA0DA5EE10A98108058465B3572149A /* http.upb_minitable.h */; }; + 2186BE70FAB81596489DB34E898F3AFA /* all_ok.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F4EAEA37811DC82A6F9825FB5C7E87 /* all_ok.h */; }; + 21A08AC5CEA9865C8150E9B286A13F4F /* dynamic_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 18C352AC892D013D854079B659C70B65 /* dynamic_annotations.h */; }; + 21A35BC68CEAD38C63BBE6BFDFA1F4AE /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A43566E430A5E0FC3DF8FA3A66A0E75 /* hpack_parser.h */; }; + 21A6F4530F989CCA2543CD7B07E3879B /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 8244D4E57A89D0DE454D3FC9DEFB3166 /* method_def.h */; }; + 21A9B2609105B0AF371418BD16F471D4 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 251AE40A16A13CF687EB53C404B66D42 /* avl.h */; }; + 21BDF946BC96934C2F618573FB7B5404 /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = A47CD34AB931A38DEEC12025F0D73309 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 21C5C4C0CF473FD89EB47F8F21A619F8 /* FBSDKDialogConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 37ADBCF86DE59C9C4EDB8961E61F3851 /* FBSDKDialogConfiguration.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 21C890A619C9B397483FA1E0AAF09AFA /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 080C629D6C8C0F92790F6FCF487AE8E4 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21D59CB22FFB3AC174C8E29D4C3E0A66 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = B5695CF007698020C6EEB43591D147AB /* ev_posix.h */; }; + 21D654ABE8AC737B89EA4C89D776B37C /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9663D82191E02C38BC015198778A73F7 /* filter_state.upbdefs.h */; }; + 21D8689A45F2F8BE49454085EB47ECC6 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A2F618D3228252FEBB82FE53AB1658 /* aws_external_account_credentials.h */; }; + 21DC00FD4557272D2035ED827AB08826 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB8FB81AC24181869F954DCEAC237FD0 /* datadog.upbdefs.h */; }; + 21DD21AAF45506BBC7A5225A6F946E43 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12283868D953D1562E52ACA8D346E5C5 /* custom_tag.upb.h */; }; + 21E0936AE14A3EA31D028EE9E4AEEC26 /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3C9637CD1641A6C72173350632E1040D /* address.upbdefs.h */; }; + 21E74AD3D4EABF5F91050BAFC3D8E22F /* conf_def.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = 20FC1382E7C1687E007099EA3E2663FE /* conf_def.h */; }; + 21F0EE0968C7024F6B5C142FEFC3F635 /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 83F5D4FF28BA8A4E5DED92935490964D /* xds_listener.h */; }; + 21F42F2C2DD268014B23FAA8CCDBEFF0 /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C29DE4074E45FAF3B5AB542F47D685C /* health.upb.h */; }; + 22066877F71590EF85181A5B5BA8C8B8 /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57F4CEECD51D672FE8DF50FA3D08375F /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 220D6AC9B1B1EC8EFFB204F9C1EAC842 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D928CC44FDA4A45C83C941EB05E1AE6 /* ConstraintMakerEditable.swift */; }; + 220FFCDC0625F1C089E048D1A875C7C5 /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E8AB8E3D4784DFD475CB9F09D5A47A8 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 222BB7A801DD7B621DCB9BF68D5C6E94 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FAA1876D6554BA39D6557E15D09A51E /* authority.upbdefs.h */; }; + 2237F91D83CE158235BEC1D50CF28C7F /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 063508C7752D5D13233D1226AC187D6E /* StorageFactory.swift */; }; + 223B6633CD7C0A0803F44A75C5ABCE95 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = C513A1BC1CCC6FDA02A6344F32892FAD /* digest.h */; }; + 22493FC7B8671269B3E11110782347AA /* message.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 28C24E25182134441240B9036ED65EEB /* message.hpp */; }; + 22609BEF0945A6D85D664B9DE9E4D53B /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E94BFB29DF7A1EBEF52B100FDD34FF18 /* encode.hpp */; }; + 2279FE56C854E4A8D1623EFF123490BA /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F471431874B905AC803BB71CF5731E3 /* GIFAnimatedImage.swift */; }; + 2281B05179545D3EEED13D4D3F3E45DE /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1EC53A605E1501728A0A2FBF923467 /* lightstep.upbdefs.h */; }; + 228CAD70E74331CFFCEB76A7E9382F29 /* resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = AA2493070FDBB78D4D27A5B939038919 /* resolver.h */; }; + 228CF529A71293A0D97AEC140608BD97 /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC01D961585B09D30999D404EFCC6383 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 228DC7B1838E70A19378B4BF53D6A35E /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 528351337315E599B2016AD9F8946F61 /* subchannel_pool_interface.h */; }; + 22AE6A05D66950CD2A3AE386BC366A5D /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C61702CF2B33745838A4F14769B3F473 /* endpoint.h */; }; + 22B3092EF69E8089D46BC2E8A14F8012 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 29AFE3E2D3B9CCBE7DC0E6A4E606E9F9 /* range.upb_minitable.h */; }; + 22B8E1EF0D84A9B13712D40FBEFC4DFD /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 88ED68FD189C5A9AA090BDBECE6D8F39 /* service_def.h */; }; + 22C07AA9762C6EB1608BD1FF165F8DB1 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BA9751A3932FA70649F94A531A754175 /* tcp_connect_handshaker.h */; }; + 22C31957E78A2770B7A14E2D1F2C0AFD /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B95EEBA957689BB36B8763199751CC8 /* FIRCLSBinaryImage.m */; }; + 22D976814B669216699AFA071A22BDB2 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFD6EB2057EFB79BF53B0598E782DCF4 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 22D9F5799C3CA1CE3353F09585761842 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 511C159DF4F6A0239DE6331ABF01FAA3 /* typed_struct.upb.h */; }; + 22E0ADA0477318293827055F84F4D434 /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 374FFBA0BC66CDE87762F1656FF11B9E /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 22E7981AEA5F396E824B44D11D080C03 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FA887D6F643DCDF03DBFA250DB72A12 /* matcher.upb.h */; }; + 22EC3917276DF31FEF532BAFE81C0432 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FA4EE591D7F6C4683875ABB101A28E9 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2316D53D9F36EF09DE0850C3AE48F6AD /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DA0A0FA50A59591DFDC771CD4FD50BE /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 231BF8DD47F7FC82EF78EB6F299C23B1 /* log_internal.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 58F578A89C374B1A4A774186FF899545 /* log_internal.h */; }; + 2322347CE4E7DA6E543FCC42DCCDB61E /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 975E1C34AACA8170390E065DADF3464E /* construct_destruct.h */; }; + 2340A6564E5E154EE10118E8A28171B4 /* directory_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 125E49F643B94A449EDC5B86F17FB570 /* directory_reader.h */; }; + 23556721488142B6271205FA8563F230 /* legacy_compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 768F69437C5212D8D3C2CAAE2553B0DD /* legacy_compression_filter.h */; }; + 235664F931F4A07E1B64AF24550C0ABF /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6514BA6F668FEA083195B8784D76FFC1 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 23572BA52C7912FD75D5746DFE6DDB78 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4EE2670E0253A5848E1DD9F89E4845DB /* event_string.h */; }; + 235B24FAB18207170A208B5BBA509487 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 703728574293CC44C806F1BA183E0787 /* crc32c.h */; }; + 2365328F38554678331B6D1B8C7F92A5 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 75C51981A47E6EE28086981521858209 /* mpscq.h */; }; + 236E6FE79E96A3059A23B8DE03FBA00D /* has_ostream_operator.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = A918DB6FDF3B9A19BFF707A5C3173231 /* has_ostream_operator.h */; }; + 2375DAA101401D4F4DC61E052807AE07 /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 3405AD789CA36E530A6C93510B207016 /* transport_fwd.h */; }; + 237E83C4689043DCB03E64AEC2C00B95 /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A072111548346D33CA1DDBE86D04FEAC /* str_join_internal.h */; }; + 239559C4D11BE9E5002759B1C83B34AF /* FBSDKDeviceUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4488B72DDD5292EFC1889D62657C85 /* FBSDKDeviceUtilities.m */; }; + 23A0EA808C942D3145619581B5F761E7 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 56016860527DB7D8EE3260C7DFA9491C /* message_reserved_range.h */; }; + 23A32E528457AA170CA9A4B467253A31 /* call_spine.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F62EBC1F92A85DE2237D5C96C5151684 /* call_spine.h */; }; + 23A3CED3EE6A0A4815A92D9E0B960328 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EDC0C0E750FF653D279F2AF4F191DE /* ImageDownloaderDelegate.swift */; }; + 23ACB51FFF9C5B55490607D2D6E351A3 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4773C4DF14D64173DE9E69E8C9AD3B86 /* http2_settings.h */; }; + 23AFA5EF59D5D3FBFE3776850DCAE0D1 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 979CD297063A53F8553B3B8A3C324201 /* ev_epoll1_linux.h */; }; + 23BD3AA9D34562F612C761DD1BA5CB67 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 39790BF71A05EEA06DF499F8CEDD82E7 /* scoped_route.upb_minitable.h */; }; + 23C14E21DD7FF7B611930A8578C921D8 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 893EE7308B0CA610E2470F38A24279BF /* resolver.upbdefs.h */; }; + 23C30E338553CC05DECA6F14D91297BE /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = ED2171B062D5CC28173819C4F12D8F93 /* arena.h */; }; + 23CC8EF51CF8C3E49823C26A6586D460 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8C411AA4ADDA75CAF1EC4EA5E3A8DA /* call_combiner.h */; }; + 23CF60B4FBF2FFDC63ED875E56DF2FC0 /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 04002EA57154400FF38D51BA31B47E59 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D1785500AB69F28ECAD07F370C86CB /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD085EB79E17E0B78FA2C67592881F3C /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 23D7375B5F3F4414A101ECA8CBBB7F1F /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA0C13D1A271597F5413A031B66E9D89 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 23E052F1218041C5CBE0355868BA298A /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0AA2E4D5787774255029049D40F9D75 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 23E49962E21CF1E969AEF23F7C4036FE /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2947BDC3796FDC4038EC0C848E16A2 /* dual_ref_counted.h */; }; + 23EC14E552D1A3814129CFAF8FE4DDD1 /* utf8.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D837C84F7097C4C20B7EDE91E86A6280 /* utf8.h */; }; + 23F20758A8A8761220F3507B6093D69A /* FBSDKAppEventsState.m in Sources */ = {isa = PBXBuildFile; fileRef = B6FF83E0BB5FBC8D8006B236553B679E /* FBSDKAppEventsState.m */; }; + 23F3A63F2782DF54926FCA9350731344 /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ED65CBF7C8B42276C95008855BBF0DDB /* listeners.upbdefs.h */; }; + 23FA5E9D3BDA8F29B85AC74892F733C3 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 78EF00152ACF862616D5F0574DF4422A /* channel_init.h */; }; + 240649D3DD53CCE7AF824DBBE1700285 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 118D396E9DE65249ECBB61660ABE454E /* vsnprintf_compat.h */; }; + 240899A8BA2D2937CC5987F9CD27EA3C /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 6E87D057543D3280C5584FA3D0914BD6 /* transport_security.h */; }; + 240DCDA35ED6DA70EACE6917AB380884 /* orca.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D6666EF9E879FA276C35B21ADD3A790 /* orca.upb_minitable.h */; }; + 240DE129DF6C9339837C83DFA65CD853 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B17FC9378E2E251026632CF6641BE95 /* opentelemetry.upbdefs.h */; }; + 24169547C83DAFF98091DE1BC63921C1 /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = D92B5B9F1A86331F6F56AD819E0E12B9 /* service_def.h */; }; + 242D438B808493E2A3D950314B270B2B /* FBSDKModalFormPresentationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CF6B95AE4ED4318ED1FD512B2FD37F /* FBSDKModalFormPresentationController.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 242EFB4F1FFEC9FEEF149788C1029760 /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3AC2E772599E7379C3590A453E588D /* enum_def.h */; }; + 2431A30F32CC0608ED76849DCECB3E4E /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F9E4FB23F9ED638C4577C26488C28045 /* accesslog.upb.h */; }; + 2440D182DBCFFF83F7A448359B078212 /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 39830D1953A20F4FC26084DBB810E0F1 /* unicode_groups.h */; }; + 244D93A8F6C9B55A721C6513EC52A10E /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 523078B9DCDA3E7BC8AB1F60FE032068 /* xds_client.h */; }; + 2454D458640E34C913464F422E158B63 /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 40ADEA93C8581D4C61659B1C9DF10631 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2464A8705A3461D03FB30943D9F3B91A /* channel_stack_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CF4B567D567776B79CDD2B0A3E18AB /* channel_stack_trace.h */; }; + 246BBD3627956F80C5F584043A93B58B /* query_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E25574A98D381FB10154A276B5DB4C /* query_extensions.h */; }; + 246EB85F3B2BB8D4ECF4EBBBB6AE7272 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 0E0030BBFFA5934BD1BE7CD46D713AB0 /* security_context.h */; }; + 2471573509AA44840499B699BD45E646 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = D837C84F7097C4C20B7EDE91E86A6280 /* utf8.h */; }; + 247D925DA256BD3DD3E8E1ACDD3EC450 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C15B8BA590898C1AC0C99BD032AB277 /* metrics.upbdefs.h */; }; + 248636652988206FDDA6E23AAC8988B2 /* ping_abuse_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB62C0670659062D04FC95FAAA07CF75 /* ping_abuse_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2495F34878F6DA9B29E8941FC2D7DFA0 /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96761BA8F83658511A6F1E61E4466376 /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 24A9C5BBCB604F66F3B2DA27C2AB646B /* http.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DB25C15A3FEB5615571AB78EDCCC7CAA /* http.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24ACD72CAAB2ABCB2468A29F80F600ED /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CF2C090F299E4FE0827AAB1FE1617F /* getrandom_fillin.h */; }; + 24AD90211461CB0693E21098A5D48098 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FD86A089E21337606208E40FC22DCE4 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24B077133EA193F6C2951195CCC836FA /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB1BA536C27E5FA72D8CA0AB1CE0C6E6 /* core_configuration.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24B886DEA3F2F9B5595824614022A2C3 /* accesslog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AB86A8F83E82E726079C4CA48B6C839A /* accesslog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24C082FC3F96FECBE4370F1A78487AF5 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0B68FF2A3EE2D5DB49BF440A2B652756 /* enum.h */; }; + 24CD20736EF1904AA71F7C4C75796249 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 68383F0F6C3E78A9CBEEE69614FCEC6F /* collection_entry.upb.h */; }; + 24D682441466B16013C3A0C2F0FE2562 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 573D9A4901E2FCFE2F80FE964B74808C /* internal_errqueue.h */; }; + 24DDAB5640FAD49E14DDBF8AB468751E /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CA736B700CB3117AF2E98FA3F77B3C4 /* iomgr_posix_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24DF652D594ABD4F38ED6C5FA5F4838B /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9A12931C3F3E4E466D3BB1D500DD6F9 /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 24E0ED1ACEF099B16ADC9B74FEDE348E /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 318A8DB467EB98A104E34B57DB7C2AC3 /* flow_control.h */; }; + 24E231CD3D5D23113015EF775FC147F2 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67B8AA24FDE5EC88BE329667C98EFCA6 /* ring_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24E5309C09FF5F01074C5D78070A0CF2 /* json_reader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = AF2DD7F841C5756293E2BE4EF2108499 /* json_reader.h */; }; + 24E56E3C0C018F3FD9A6C16DB8DEFAC3 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = A08A3C8C8F72AEDE1CA7692285F6E8C4 /* time.h */; }; + 24E95D992C36D9EEFBED560E4E0C76AF /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0C77B3BC55CFBEDB43C42E609E998A /* handshaker_factory.h */; }; + 24F8A65AA098768000AB15A3614AF41E /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E5B3AD64676287314947EEFF1B748BA /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 24F976DCAE3CD99488A5DE79E7B5A258 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B753FDB3145B344A3EC9768035ECF0 /* byte_buffer_reader.h */; }; + 250E385F6CBFD04B1D71634B0142E1FB /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9C40355EB561ACD590B693F7576990 /* enum.h */; }; + 2512EDCD8DB8F4F08FEEB7DCFFF5166A /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 44A2A376DC339E1E89949C89FE48CCE3 /* certs.upbdefs.h */; }; + 2517C430AC76496A44E0AB205FD3371C /* FBSDKApplicationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2FAFFCA9B288D2CB76B01108135194 /* FBSDKApplicationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 251B969163019A2BAFB0FDBD36D646DB /* forkable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A9F278D6A2FC11D4A581F2BEB68852E /* forkable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 251EDFB4844769238E94510FD81750BC /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4FF4BD99E51C5098F1630AA5FEA1E608 /* resolver.upb_minitable.h */; }; + 25218881F93582CC48A2ADB7CDFB85CB /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ECD74B37B35DA29E3566EE1200BF4896 /* xds_http_filters.h */; }; + 253AF95D571F57B84BE9D9A0C4CE0ECB /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 5827D54E48155DB5164D23980D1654F6 /* message.h */; }; + 256558233B40ACA6818F143BBC5B8017 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8158655D46D24502A8F61C389A51D34F /* ConstraintViewDSL.swift */; }; + 2569F0B445540B3571BC2DB1950E449D /* crc_memcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 953F62C62D89975BF7DC366DF68C52C3 /* crc_memcpy.h */; }; + 2575BEEC86D6E2B53E451774B32A5270 /* FBSDKRestrictiveDataFilterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF571DF6125EA61FE82E8EDB8CB5D245 /* FBSDKRestrictiveDataFilterManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 257894044F7DCD9439D718B687EC5F19 /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A332BDF667A5BDC9C38990C4F2BB32C /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 257DEF39226F45FB22EF5A7F608F3CAA /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = ED117AE8411A37F2100D9EB34C0E4BD1 /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2585F19A5D2BA77826ADB630FF236AD8 /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD9DF81E14F838D3B91441C8340FFD3 /* poller.h */; }; + 25877EAED221A23990B72A8EC938D7B1 /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1E77836DAE565631EAAF5AE6339A2F /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25887CB548CEA31A73484FE31F860B54 /* client_channel_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 60CCC2C0AA5FB1BA4538769CF2F5E425 /* client_channel_service_config.h */; }; + 258A528FB1FD89D83512AA538B069E71 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA3ED08D028963D293B51198E13DC8F /* ImageDrawing.swift */; }; + 258ED54C0049EF1E509FFDCAE3D6D7DC /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = E05546E71E507657484622D4B6B7B90B /* timer.h */; }; + 259CC26D6A0CC14B94125681820F7E0A /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = 2BB1557692C4A90FADF74753E7B06A13 /* can_track_errors.h */; }; + 25B40FC1DBFEEA1D5362CDA0B2F45B8A /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 301442C8DDB71CF4AE1F86FA76A5E0A9 /* datadog.upb.h */; }; + 25C4E03413C4760C01BEED7C0CAB24FD /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 896E6DF9A3C1CD888BA880F21493B5DA /* http_status.upbdefs.h */; }; + 25C69C9A3ABF87E8111B1B799EA2CEA5 /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = 947DC6276871344A949FC2127B6596BB /* any_invocable.h */; }; + 25C976ABEA04BD95827240C608339A21 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6DC093A8CF3EDC17229CE85DBDA56ED /* range.upbdefs.h */; }; + 25CF6870C19F6BC42375F2E5433A6F21 /* win32_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DAA1A0C6D7A62A19568ACD600EAE497D /* win32_waiter.h */; }; + 25DA5C217689862B7FF7AABFEF2C319B /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 17129F02609563CFC535C595CE38B66C /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 25DC80DB1400295CA99DBC3FCE5DB758 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A59BFC4E275C2F750B6DF8A539C22F /* status.upb.h */; }; + 25EC6B484F57B317FE527562A1EC8F10 /* http_protocol_options.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A0C32034B20DEA7AE571A0FDB972B7E3 /* http_protocol_options.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 25FD1B18BF74B06F994F7552F50F31C0 /* commandlineflag.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8910926546705CF442CE07C18DF6E753 /* commandlineflag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 26048C9692FAA813E6157F4CBDED3533 /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E0095DFFBC1D88C70E1EA45883A0AF /* ratelimit_strategy.upb.h */; }; + 260C34D2936224874E77A6F996A082B1 /* str_cat.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = A3EB94D32BDDECDBAD037608FC642CEF /* str_cat.h */; }; + 2622E2E7D66E9B800B7907EA71F08A5E /* crc32_x86_arm_combined_simd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C10B6FA0C5FB8EA272D258340A74F23 /* crc32_x86_arm_combined_simd.h */; }; + 262AF10483D14C66B73F850ED2111603 /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12FE3EE3FB43582D2BC9933EC124BE8B /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 262EF15F4B6AA494B755410F63D27651 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 174E4B53B32E8EFF947F36DE237F492F /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 262EF939D23BB16EEF93F57AFFC69D72 /* time.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 1189667F431D5502DE0BF277F42B3C29 /* time.h */; }; + 2633846F5288E94BDD9E5428A2D1E32F /* per_thread_sem.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 38105B2FE1979D77EC2CE121DAB6D7BF /* per_thread_sem.h */; }; + 26365ADC87BA5C0CD7E5D758D78798E1 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 582D323078C09A4789E99E0BBD671DD6 /* dumpfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 263E2B66E424CFF1ECC6D95383059332 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 8BC05EA13DCEB02BDDC7EBBEDB20C9C9 /* eps_copy_input_stream.h */; }; + 264B6EC9C1C07424C154477D48D46EB4 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F61E1B955A52636CC83A3F06CFBD3774 /* xds_http_rbac_filter.h */; }; + 264F555BCD191A53D513913E114660B1 /* rpc_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FC2256628ADD6E35E059E746C33E5849 /* rpc_method.h */; }; + 2651DC5445C41FA7060AA463505D4E23 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 24941496D3F6690F5F235B5B38BB4AC6 /* examine_stack.h */; }; + 2657BDDC14CFAF76B4F33AC6FFAF2F91 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A4B5C67AB7176B35177734EBA54DA700 /* cfstream_endpoint.h */; }; + 265D89DA8018CF42BA4BDC01D104EF46 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E87D2EA3E527FADB02190981A1FED40 /* FIRCLSException.mm */; }; + 2673C8261AAABAA94A24565970CFC139 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 961E527BC8686C0FD202C2BE30E91ABD /* systemd_utils.h */; }; + 26795808D27EAF22FF854463A548BE14 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BB092B1776707616B61B1F34D67517 /* resource.upb.h */; }; + 267A147C2A1D33D67FD8739EA96F9261 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = FA405E9557794C51F99420CA6C454441 /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 267B1A4B83024229548C93C12E0CE4A4 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C3E9F69EFEA5AAAEFB292A61A553A9 /* nameser.h */; }; + 26857094E863C029829A93DDA6C37CFB /* FIRCLSRolloutsPersistenceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB71B4BD68AFB1A48C685B6E9BFFE1D /* FIRCLSRolloutsPersistenceManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2699B4A165320A50BB7046B68BB9AA3F /* def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 9FFD149E7AA437034712E2622AA57B82 /* def.inc */; }; + 269B10C7C392CBD98814A6EABFB57CD8 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D4F8BBCF9035634477E0EB32AAB87698 /* alts_record_protocol_crypter_common.h */; }; + 269FD47506AFC3C870ACD2D38F7878A2 /* ratelimit_unit.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F49928A0B606F2313276C6244B183E /* ratelimit_unit.upb_minitable.h */; }; + 26ABABA6A0549CB52D4E20505766598B /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 029766ADC0C555367A2B56FE9BABC37A /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 26ACC465ED4BC955D5B742E13DF92854 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A7F1BAAB150385AE49F5F6F43AA42A95 /* TZVideoEditedPreviewController.m */; }; + 26AF2C4502FC489A01A98D6345E5DD5A /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 21E7B6FD62C956EA884D6937CA84D188 /* ndk_binder.h */; }; + 26B3356655C61D7CADE27B9F7C962411 /* crc_cord_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7D778A315C7A80CBD4A10D28ADEEDB /* crc_cord_state.h */; }; + 26B672F72E50B9EC6321FD27ABC7645B /* pkcs8.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D4EB2DCF56540150CEFC97DBDC8C4D9B /* pkcs8.h */; }; + 26B84FBBAA8A2B892DE438610D9175BF /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB429247778E8FDB8334D46FE8B94EC /* external_connection_acceptor_impl.h */; }; + 26BA33EC2218F6055098068027A9594A /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3134EE8CF2B523D4C5E4156CF72552D /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 26C76CB22885F8A3DDB485C21DE2CBAA /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADBF1E55590B08248A4D6A996A28F73 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26C92B06640A77FD70D42BF3A4D0E6A0 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = A9BF44E9E7DB2DC3F3B31ABE9089B057 /* jwt_verifier.h */; }; + 26CBBB3223825E4DE183499881B632FD /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F0356E06005588FB01FF24669F107397 /* extension.h */; }; + 26D320CBBB9394E2CD2AA967CF579315 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DDC6ABE53DB28411CA690AC5904024E /* TVMonogramView+Kingfisher.swift */; }; + 26D9CE0822F1ADA6066CB4A7D0484525 /* server_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 447B321D5D636755C973D81B6ADA45D9 /* server_context.h */; }; + 26EBF17B98678BE17248411B04A976B1 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 5255348D483C3A8B784CA6E21A52C971 /* sync.h */; }; + 26ECAFBB1F49E7AB6823CD519CBCC20A /* xray.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DC7C3ABC030CBE5373EDA4ACDCE74B /* xray.upb_minitable.h */; }; + 26EF6C9811CEB9DA06B9DF258752D076 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 3B0C7D0190B8797837E0C8831DB0AEB6 /* grpc_ares_ev_driver.h */; }; + 26F15C1B86265D5E5345555059AD16FE /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 750473E5F8C5B873611001BC018E407C /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 26F7587AAAF2445F45C4708DF1FE7EB9 /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1EA1BCB650D91A73ECA20CEB9A4A4AF /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 26F85292AAAC20769D355F2BF89AAD1D /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = E30E509DD690EE960857E0AC18B77033 /* status_util.h */; }; + 26FD43F397CAB944CBA00A61A4543826 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 798E52A2FC57D196B2812FED56FC0A39 /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 270537B3EA373C983CED2D40973C21C3 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4AFFB29860F852EA35ACF3318485B163 /* fork.h */; }; + 270E31B221A518DE1F01115842A1F8D2 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 995A0DAF8304CD32FCE81A1E0F929A04 /* timeout_encoding.h */; }; + 271BD5CF3C0644796C978D50411A14E5 /* private_handle_accessor.h in Headers */ = {isa = PBXBuildFile; fileRef = DD28DB9279798424D2D5B4CED181A712 /* private_handle_accessor.h */; }; + 272398936A1C200F578CB4DA9C79FCE7 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BAE2649EEA8485A3D0106597CA2BF0E /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 272865A3E56B7CBB503446C645690605 /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E9DEE182B469C187702E8D2EAB3E929 /* xds_http_fault_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2729F189E7B75BAF716D069F98BD16CF /* FIRCLSContextInitData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4444C56DC5190B3A9CD9F2E1D1480559 /* FIRCLSContextInitData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2737FBA8074124C982AFCF4A55B0085F /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 73FEA5A029FD97EF6A5AE05ADF3B693B /* call_finalization.h */; }; + 27386EDD2BFA261B8E4AAC4971E03C2D /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E9541F7E95D69A5F464FEBBE54252724 /* rls_config.upb.h */; }; + 273F406023E73955EE5AC33D49432CCB /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52F80C095FFA06BD703CF7E2F18CCBB1 /* xds_bootstrap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 273FC996536D7E40800C825F887B457F /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = AE5E4C76F0113C682819C79411F73D76 /* client_authority_filter.h */; }; + 274605548A63C14CC8E927D2A0C1C8EE /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F335EB71DF5EE80375B9304FB75CDC01 /* http_uri.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 274DD87FC1FEB5E9106D08878EDE9C6A /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = 09B222784EA4356E4D90C9D3A744E201 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 274FED159A282E7599519BA14D396386 /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = DBFB5B0444B6AF06ED7326A54D0DD973 /* json_args.h */; }; + 275764473960685210386604FC8153D2 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 02258EF222115499C277B1971A0B69B7 /* chttp2_server.h */; }; + 2765D283E82FCA31D83F945D5EB8D433 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED324ECD6E2B0DE01C9B4D09D90E5077 /* sockaddr.h */; }; + 276C14A992B4A41B8D9A36E4C46A7FF3 /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 607B4AF2BE4453329C822E396D9A6238 /* server.h */; }; + 27713EAEB0D125F306264634C8432216 /* p256-nistz.h in Headers */ = {isa = PBXBuildFile; fileRef = B54FA0B93F62A33C8F2B29F0850CCB2D /* p256-nistz.h */; }; + 2771E14C9E5819BBFE7D8449ECB80EE3 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A4EBAC039CA82A97ED76E2A89B0A179 /* range.upbdefs.h */; }; + 2784172CA48B0987B92FEB3D4BCAD5F4 /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B396F04AB66B4699692DF9972F8633F /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2795375FD1647F5BFC3723589B82C03D /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6E91CBD4F387B0A4888CC7D356FB5C /* FBLPromiseError.m */; }; + 279CF0869C103E8E903009721BCD0065 /* wide_multiply.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8049259CA125FB0D326AF6064E0E5860 /* wide_multiply.h */; }; + 279FC397E92836D16D63BCC317E70ED4 /* collection_entry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C9BD2DACBBE8DF3DB30C0DD571264A /* collection_entry.upb_minitable.h */; }; + 27A4A0EC163CA384E059435B774F7C10 /* party.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 66E76A1F4A63EBA535E6396DDC03A067 /* party.h */; }; + 27A8898A180ED5008CFCE2FE924982B2 /* nameser.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 86C3E9F69EFEA5AAAEFB292A61A553A9 /* nameser.h */; }; + 27AF13DF3D95D1CB8ECFF65D8202234D /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 12AA1DB0E6F9E9A4EFA094B2161926ED /* json_util.h */; }; + 27C09CF00DFFD8751F41163E5E2D6A28 /* resource_name.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE9D6E161396B9A52EEA1DD9A884B1B /* resource_name.upb_minitable.h */; }; + 27C202C13A7C4F81216315FA16879C02 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F3C2B4C0002A7745C68ABAE296BD410 /* descriptor.upb.h */; }; + 27C3E6130E88B5D8CA34AFADD944930D /* numbers.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 83B517CC212E5024F664AC7CBA41E285 /* numbers.h */; }; + 27C524C33A82A6E85293E55F2A0ECC7D /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46B1CB1472BFC9190D21F24EA730A9B4 /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 27D48E5E077F1D0A41338667B72D416F /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BB0E553918CCAF8FA5B14CAAF2FE2D92 /* resolve_address_posix.h */; }; + 27E14DABF007142981CD1B56F89F3FAC /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 3F8659D487EBFDB976DA9ABDA10B2EBF /* migrate.upb.h */; }; + 27E1763B821890F4012166502429CB7C /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A82FB96F0B12346E5A7609A66363180 /* connectivity_state.h */; }; + 27E29F7EDB3DBA19882AC6FF8481117A /* trace.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = CFCED5A544E97FE002AB430FF6519DDC /* trace.h */; }; + 27EA2441486BDB2D5C68FE1AF366867D /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = C44E43E9177CB83760C6C8163F86C3FC /* alts_frame_protector.h */; }; + 27ED88A0DD8A23CEFB09EC9C411C2459 /* custom_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C571BEAC714250FF80919B9148ADCBC /* custom_metadata.h */; }; + 280307BD31E614C03D3E018E8245E49A /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B5B398089790AB1A284603FDAC4C858 /* lightstep.upb_minitable.h */; }; + 2809BAFA0ED3E24DAB60CE21CB563753 /* grpc_polled_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0025C76190D38F69B9F1F9759E8B7D27 /* grpc_polled_fd_posix.h */; }; + 281F4618AB75422686882B44A3D807F6 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; + 282FCD4EA8B05830E9108690B8CD336B /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB972FDE9F4CB55BBE6091C8FC42CC42 /* Session.swift */; }; + 2842F1C4E005F522F8C429D0BA415890 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = 765763DA9D33D7329E65434C13A1B500 /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 284D33BDD24E03BA21D34B305860F4C4 /* FBSDKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = AF29B92F677554E30150A34266A84C15 /* FBSDKInternalUtility.m */; }; + 284D3CAF8C2177F2B5B7DEF61313F51B /* SessionInitiator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB311D596CFD12AB1D0B0305CE54DA59 /* SessionInitiator.swift */; }; + 285059573FCC8317617440079804E550 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABCA2FE62A1ED99A46BDFAAC599A16B /* ev_poll_posix.h */; }; + 2875B65DA393F60A35972F13528095CC /* AccessToken.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50486440168DEAA1EC9DA1F0E5A3C3C5 /* AccessToken.swift */; }; + 2878C4BFC9CDC7DCDCE475A39C8E007D /* opentelemetry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CFEEF418991981FCDC62A1F8162E9E /* opentelemetry.upb_minitable.h */; }; + 287CE6203F5105D6A5EB808A06CB1A2F /* dh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A8B2393ABC2DAFCDE78E9B063BAB4F05 /* dh.h */; }; + 2880ADAAFF18AC53034EE0362C4B6E71 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 580D6802C74BCA849523E8BD1F870A5C /* ev_epoll1_linux.h */; }; + 28818843AFF8F01C2A8FC71F6B8D8409 /* pick_first.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6846C832D77D7484C5B1B75669907912 /* pick_first.upb.h */; }; + 288754D722661AF2D3446C51B11C304E /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44A18EB0282FC9E3CC25B5DDB3E2B579 /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 288804E6B5CFDD6F4F3F7EBB54E6AE82 /* map_sorter.c in Sources */ = {isa = PBXBuildFile; fileRef = D29CEACB653EECF14CEDC3C1E0A01719 /* map_sorter.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2894383712D656CBCC25A8399EA5FE29 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7081389EDF4F7B86CB272A919B7829 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28973F8FFC0FE2EEA229EBB8096FF15D /* desc_state.c in Sources */ = {isa = PBXBuildFile; fileRef = E7FBA7426CF932A54ABE29D890AB19F8 /* desc_state.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 289A0EBFC3FEB69134A0AA3F05C0F3C8 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 15411061B17DAC2EC04206BBCC1953F3 /* rbac.upbdefs.h */; }; + 28A017409F797C26958A7AE0039F24BD /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = D7EB96A1FF9B447D779D39F0BC7DC907 /* def.h */; }; + 28BBC7BDFDBF37C861DB42AAD6395332 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ADCBA403E3CB954C6BA892CAAEF6703E /* zipkin.upb_minitable.h */; }; + 28BD161A26F67B6BB807E2378525075C /* path_transformation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB0C3778D693FCE2CEFD24104B35582 /* path_transformation.upb_minitable.h */; }; + 28C479B2C12B4DEF4691D2C2A2E05D66 /* json_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = BE37A7B7377C869AAE7246BCBC6D9468 /* json_channel_args.h */; }; + 28D15ADECF416AD68272B6BE47B6F831 /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F8780E001C2EF5F42FDB51F37F71CAB7 /* stacktrace_x86-inl.inc */; }; + 28D4526B32993879EC71714DB5CBE900 /* atm.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8690F57734734F46755D0A3C8CFC277F /* atm.h */; }; + 28D7D98D40C6C8ECD328D8115F9346D3 /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 644831F43F028842037642EF077DAE57 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 28DD25986AAEC92A7AD2A602C7A292B6 /* pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D64584DE70B509BA1808A32B6021B9 /* pipe.h */; }; + 28E42DC1B8DC9234AFC9B103C45C11A5 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = E009B0B46358EBFA777795FB03F0AEF5 /* common.h */; }; + 2906F0F48AE2E1EFF2EE24935A782423 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 7EF25EAC1E0354ECD9A0306963D9BCCE /* subchannel_list.h */; }; + 290C9B7812DE77E35CDD3F86217B7DBF /* FBSDKAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A61CCE21165007F33BAB0D9EF393361 /* FBSDKAppLinkResolver.m */; }; + 2910191E56A0F5316B03A50241689C15 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FA2CED3DA8A1883FEDEBA1C245C7954D /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */; }; + 291A1DB394BBA3BFE6C13E39B23F26DA /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34CD1108B745687FFF504EC40DDF8FDC /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 29211D5135490181DBB5569A453107F6 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B24E7D93B6BFE288247A94ADBDD44D9 /* core_configuration.h */; }; + 29293AE03106905D00DF5F499D316477 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C042EAF45AE7F2EAE1047893F5C15A9 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29401CA077EBF2B28E5D47D9A1EBD2D0 /* rls_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5D54178E89B0511FFC1F39D3C1FA1F /* rls_config.upb_minitable.h */; }; + 2944F9EA7945BDE42C215EF377DA6817 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 1453134ED8AEA83C94A16F53E9466927 /* frame_rst_stream.h */; }; + 29457413B1B5BC1C0A896BBE2817EC51 /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA2F84D67C7FC0E2DA50BED91C2A99C /* bad_any_cast.h */; }; + 294D12E0CBD2EA57399A525DB6FE502C /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D49191DA1B333EC122067DE970F719E5 /* endpoint_pair_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2950E700FD81937F1281C2BFEE531E1E /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = B05FA754E8AA3ECB85A06C8D81C34836 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2957529EE76B1815B93FC61266D8F45D /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F16F5802C18EC430E4B23AE737CC81D /* xds_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 296141A2CA83C75C14B31D316CD7C480 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 76BFB764AE5B7272DFBDA30F8BA4A62A /* hpack_encoder.h */; }; + 2962355D118DEAB443C9B9C426E7AC71 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D51A59131EC0067B976CDD813FE93671 /* duration.upb.h */; }; + 2962EFE685BB6747E0589AD08EB935E5 /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA90DC2A9F94E7DC7C0144D5CDEF22 /* overload.h */; }; + 296AE700628B52C148C4247828D3116A /* internal.h in Copy crypto/lhash Private Headers */ = {isa = PBXBuildFile; fileRef = 48077CF5CE7A9FC0070ADF71B4BC8E82 /* internal.h */; }; + 296FA52A1E30C6B86B5B170A982E4B0E /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 366B569E9EEC2758871393493E82847C /* call_hook.h */; }; + 297140BAA3612A24E41CEC1954167E58 /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D61D02455FB7F596EE94315BD664CD53 /* ratelimit_strategy.upb_minitable.h */; }; + 29727C6ED65A38C5C9B49CEB7520052C /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 24CF2B4ED8A869471F3121A72CAA9743 /* port.h */; }; + 2976E7C8FCFBFA1F716A0A8B5600A532 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 298CB60C7BB49F02A90F373054C75B34 /* client_authority_filter.h */; }; + 297A6FE5F889F9665818C903D154FB0A /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 225D2499F6826586005F4EB275BBC6CE /* xds_cluster.h */; }; + 297F8EF39DFCF377C145CC130BBA914E /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = D38598EB7735625A66D4BB9665094F33 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2995C480EBF6625C4877C470C991ED5D /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED13D421B0CDE81E034F6FFDD1EDC276 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 29965CBFF711D3EC996022A865D517D2 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EF035AD680FEBA5AA558BFC122C3C108 /* time_util.h */; }; + 29ACCFA2FA14DBB77936C21C3BDE9785 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4256026AE661461F8FCE4EC3AC452A /* sensitive.upbdefs.h */; }; + 29AD860FC3005300BB92D262DBC38C63 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B2429C38B67F25B88647E5CF5C0592F8 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29B1B2458D8CA0403233EA36585C1772 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F0C96C918E5623CB766879A976C97E /* string_constant.h */; }; + 29B512F35757C6BFA9C66B0CC96D322C /* sync_generic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B57E4DE8CF7F089C6C8EB7F1C3FC3D2E /* sync_generic.h */; }; + 29B551CFC4A36268A175FF26C46B2973 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1803D3BF7F8EAB968D9E587E9ADBE8FE /* tap.upb_minitable.h */; }; + 29BB27FB357049FD7EE65CCD28E7396F /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */ = {isa = PBXBuildFile; fileRef = FD0C31798CAE115C04581C52A9A7364B /* arena.h */; }; + 29E3A948388D6C5DC8B9575432A5B526 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 918D43DEC7EA365ECA9D2A23E69317CF /* alts_tsi_handshaker_private.h */; }; + 29E46BEB650FBEF863762D55F98AEC1A /* validation_errors.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A0744CFD929C3DF13B6C2A2A1E88BA3 /* validation_errors.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 29EEE9E55B4747BB2EB332CA7D9E2730 /* FBSDKServerConfigurationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADA036F0A1591CE5FE69BCFD1DA706E /* FBSDKServerConfigurationManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2A0C08FE17D986487BA170C81DF6CCE4 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 934993FC6F4B97CA9B29F93DAE358076 /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2A0F46B01F315E452CDC258002AA7D39 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8587314E20957263F25FAD86B196C7C7 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A11CB2803BF9F32AC99B3A5B5CB79E1 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = B2F74A5DDDDB2E8913036A46A39A3C18 /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2A1F1E0339928B1755DE220949A18B63 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCA4D9479345E718C0C9BE46AE359E40 /* resource.upb_minitable.h */; }; + 2A23B06E4B28F92E1C70D2956A38C38D /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5383432FC28EB2BE9915C3B5A1C093B3 /* cluster.upbdefs.h */; }; + 2A27009B6A7227089147A05F39B09B38 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 49B4A6368FFE1F1946D1C3BAB4C5EE62 /* metadata_batch.h */; }; + 2A277CCB4CB161679833E43FFC2CB21A /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = 732864DC03CF48B7A5ABBFA46B3A2768 /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2A2E6B958FDD9524F4ABCF42409B9A0D /* legacy_inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8E71583F7393424A9296FE9A42ED6D /* legacy_inproc_transport.h */; }; + 2A32EC992182F8E4DC443DF73058C33C /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 447C23445A13E81B49A2419C87B4C559 /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A3A82A5FD99823F0DEF2B2CF4A050C4 /* thread_local.h in Headers */ = {isa = PBXBuildFile; fileRef = 18AB774F1C1CE4ED9113526E5E44DAE4 /* thread_local.h */; }; + 2A40D249E11FF5B2DD65EF6D66297763 /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BEE90CDB82099D2DFFCF9344714F6F9 /* outlier_detection.upb_minitable.h */; }; + 2A42172677AD206652043861130335DF /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9B0E28D281837501F54F7DD25C22FB4E /* ref_counted.h */; }; + 2A42B37EE022622708B0F1C3112ED29F /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C1AE7BD9E237D414D403E7B2EAAF696 /* http_status.upb_minitable.h */; }; + 2A4AA939AED528C8B29A0B8216CECB21 /* pthread_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 10134D4F6AC4272FA5FE052645E14679 /* pthread_waiter.h */; }; + 2A4ACA072417534A3D510358514EABA2 /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 118D396E9DE65249ECBB61660ABE454E /* vsnprintf_compat.h */; }; + 2A4F03FF42628B7028DB66E852581FC1 /* udp_listener_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 34F7835F506D9D8437C74AC0CACFD4A3 /* udp_listener_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2A697CF071EDC4F7524F765A2AC43F4F /* join_state.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FD033A8298FCA8B46A6BD91CFFF502 /* join_state.h */; }; + 2A6A104FC3CA4598BC7D5E35D0D228F1 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 9F3D871188D7F7C9DE7F1D68B13C6052 /* status.upb_minitable.h */; }; + 2A7E85B7FF6EE59378745F7AD82C8449 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0BE3AD8AD99CD0BF601BA411DCCB44 /* posix.h */; }; + 2A80CC1BA49EAE3625D21A458F2D6028 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = B6CF2C090F299E4FE0827AAB1FE1617F /* getrandom_fillin.h */; }; + 2A811534DBE7A9EA512722AEF01DC97C /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = 66B71E49E501E2D2B94EE2C9416EC43E /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2A81446FB2F01871C2005917115AA3DC /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 815E38C5FE4EA5CB649F59CF2F6BC86F /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2A821D12F352800F49F49E4B9C909DAD /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB1CF84F97E9ADBA641EB7ACEA5B1506 /* migrate.upb.h */; }; + 2A865CFCCEFA44D00C8B8F50BE183BB2 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A5E0C2540BC7B029C949112C50E14E81 /* binder_stream.h */; }; + 2A87318C1640C855A06AAA96CDDEAEC9 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = C663CC81BFE9772BE7403B9F12B04EA9 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2A8B8B797FCBB0C7554385BF27CBB99C /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A20DD5AA966072186AF7AD2B6EB4E93 /* metrics.upb_minitable.h */; }; + 2A8DB82436D1DB4564E05482E0A076D7 /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6F1DADD0D28E1532E5C3EA32770BA1 /* server_builder.h */; }; + 2A8EAB45C8934D2D1513F7479FBAFC77 /* time.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CD664630EC279AD48D7A2DC36F2EC5E1 /* time.h */; }; + 2A925F54EEAB35618A6D13ABE14B10FE /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = BD511206BE119E76E954F66B30ED4764 /* wire_reader_impl.h */; }; + 2A96F7F2BD61C84788B1D2898CEF3812 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B886D0C2E02DACCBCEB4949A1417BA7B /* outlier_detection.upb.h */; }; + 2A97E5890C4F7603A99CAAC062D7974E /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1900AE728AF76A5AE5AA5A013A31D4C2 /* event_service_config.upbdefs.h */; }; + 2AA81C3A0503F727597C678C18483027 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FC9CC34E5656BF03856478F093ACAE9 /* udp_listener_config.upb.h */; }; + 2AB1B9DF0FFF6CBB808B3D16FCDB72C2 /* lightstep.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5B398089790AB1A284603FDAC4C858 /* lightstep.upb_minitable.h */; }; + 2AB4F075C26AFEB0B2EC57CD7BF094E3 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0945D6920CB844DAE0B3CE5380CE625B /* rbac.upbdefs.h */; }; + 2AB591F7342CF4CCF2DA29FC203B100A /* traced_buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AB75F34EB5CE44C6D7A3E3B5FDCD811 /* traced_buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2AC4D9DF54E4493F6E63B5DF98CDBAAB /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC1F19E403D6064E004529C4BD87CA26 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2AC8587E687F71209AF72F141252316F /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4EBAC039CA82A97ED76E2A89B0A179 /* range.upbdefs.h */; }; + 2AC96096FB0D0292FD049491BCB7C693 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5997267129FF743354DF4DF01747F0 /* alloc.h */; }; + 2AD8987B16604E75E19FE7172332B9BE /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AFA38D1DA9058AD4E147861083714FB /* ImageModifier.swift */; }; + 2AD99F83AB39EE005BD9564225817590 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = DC91B2D2A3AC7A7C621CBB805086A9D1 /* channel.h */; }; + 2ADA1F1D510494C45AED795F458541C7 /* xxhash_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE8D260BAF318DEB935A53786536DC4 /* xxhash_inline.h */; }; + 2ADD3D05A6FB13373680818A8A498169 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = AD24BA53FC6DFBD6175D54A192B8110E /* matchers.h */; }; + 2ADFEED12EE5300A90F7DE70F6CCE18A /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD23DFE2AEFD50B6D959CE1BD1A0C40 /* health.upb.h */; }; + 2AE0A856DCCCBE706D25D1178B0B185B /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 28365A34EEA0E45D3CC79B53D470E11F /* grpc_method_list.upb.h */; }; + 2AE2E9AF27F0ADBE80895075C79AE38D /* optional.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1A702392A775E9ACB0A9F430868D17E7 /* optional.h */; }; + 2AE49EB32635FB2969B2CF5E4BDEB483 /* cf_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD4743C104AD684CFF4402A64DB0830F /* cf_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2AE76EC7AAE181EDD58842B0A5564F35 /* params.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 91C59A721A32FC4942ACE7780DD452A2 /* params.h */; }; + 2AE94725350E22D6D89CEB009166021D /* TZProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 148B7D7C596A0BF0AD38BC7472A8AD62 /* TZProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2AE9C5F3DA45EC400D081FFAE95CB875 /* server_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BD254CBC5B235C9F594934A8CF6E6D4F /* server_interceptor.h */; }; + 2AEA1314ED35AB364CBAFE26E7956174 /* wrappers.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C036C2C095EFD1A8506958A35F28140 /* wrappers.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2AEC69F4CA48F4E9554C20C15D487E87 /* percent.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 34DE9C6DD82CB885FE2148C40512C266 /* percent.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2B172AF96397CA19243786DA3198E065 /* backup_poller.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2FB9BAD7AF6EED027AD2A61AF467C186 /* backup_poller.h */; }; + 2B1C849685EB654B9557F24E6940B22E /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 526BEF78120CB1D8826A6C65E510FDCC /* cel.upb.h */; }; + 2B1F1FC96E6A769F705D971CB3C8B214 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 2B272424B4AC4CF88840315B872E2161 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 61ACA193D0CD3933B5F777AA94310D59 /* FIRComponent.m */; }; + 2B2D8BCB84AAB7E5DE9E91CB728CB243 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E93DCCEF92A0D6B771519E37D6A620E /* GDTCORAssert.m */; }; + 2B303792365B63F80D1AD4D9177F6F59 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4323076348AA8D2810FA085F2447DC /* migrate.upbdefs.h */; }; + 2B4346EAC28D4797354CED18BEAD9984 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 2F14490AC2054D988C8838AFF59866ED /* alts_record_protocol_crypter_common.h */; }; + 2B4371FAF457C7DFB971DE98FF30C815 /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A6BCCDC264AEEE575D9AA2CF782861 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4C830A2B564C2FEB547E9F3337F18F /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 628347DD1268C3DB6DC9DB98B99D4A1F /* FIRCLSHandler.m */; }; + 2B4D261B2A09A2B0C6BFBECCE08C37C3 /* md5.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9762EE194604C4F44A44A4BBB3D3AF85 /* md5.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2B5101AB1402046C2A26B98AEA5F3271 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 3FA2890982E1AF9F125BBA8E265F4C76 /* interceptor_list.h */; }; + 2B55B2CF6867B30C0638BDF65A21BFFB /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5BD288A4F5A10D382D02744E56DB563 /* zipkin.upbdefs.h */; }; + 2B5747725C5E646F029EBCAF4D15E444 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F39CC8E6D73150B559B118ECF8169ECD /* tcp_server_utils_posix.h */; }; + 2B5787F12B83E3D405F303686583E49D /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C401A15D2BA2363836269FA8FDC7B72 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2B58463C5EE6C1A8C3532F122AC4879F /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9774DF2663F266C7D9A59850627C4E49 /* FIRComponentContainer.m */; }; + 2B6802B1BBFF1DAF96B092B1D97A9A21 /* trusty.c in Sources */ = {isa = PBXBuildFile; fileRef = 426F320C5FB7A54ED3CEE870C57F903E /* trusty.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2B6FE2060291463AC2730DE0819106E9 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4413ED5BF53F70F00170E0C03E98C7D7 /* xds_http_fault_filter.h */; }; + 2B70D9791B7E4F6919031EFBDD98FC00 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50667FBC0DAD0AABAB2E72CB1E9ADC98 /* xds_common_types.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2B71296A19D9C0BF5027C535F09090D2 /* fixed_array.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 2662A3F533F68D3EE2DD0B2E6C300235 /* fixed_array.h */; }; + 2B92BB87E5EBC2E28906F75A47679198 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ACF876A9BC32A7421CF07F9A28C1F1BA /* protocol.upbdefs.h */; }; + 2BA1914962D3DA0FEACF1C742381A720 /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA9A18ECFE0031CE52D0DA9083D23C4 /* ratelimit_strategy.upb.h */; }; + 2BAC28CF3BAB2DF539D9EA5BB26838D1 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 70726503CF283EA471A14FE18BBAE3D9 /* alts_crypter.h */; }; + 2BACD6DF540AB1171F8F396E5B6E81AD /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BDE8F6311B574E29AF91A568E2457A2 /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2BAD1FE6990D68C19AAB3BF7A177BA4F /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 3ABE0D3B8C5C7881E6322671DD0A547F /* load_system_roots.h */; }; + 2BB1A48AF06B5F56604372FC005277DF /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = BFDD37355CA7D01685821B7938D92EA0 /* x509v3.h */; }; + 2BB1E3F4BD56A5A60EADDB5DC7658B4E /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9BA33E88F87DCD84E5775CB00914FB20 /* iomgr_fwd.h */; }; + 2BC9AD5B9F5837523974BDC0826E407A /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0239B1E5AD6AAF7BF606794B925165F8 /* protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2BCB9FA2272F6E23369BDE12A27F5119 /* map_sorter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3A60920392196DBCD52DB016FA2A07 /* map_sorter.h */; }; + 2BD3C7EF70EBA0FFB40A8C9F059BE353 /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = A384FF9E635BC3EE5625128EACD37935 /* api.h */; }; + 2BD48D482288EF07255295AE8E578101 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = BFCC4F63F21D10180B14C88ACA2E5432 /* FIRLogger.m */; }; + 2BDCBD0204B29C1412DE51E640C96966 /* status_code_input.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5FC1623310A03CE949EB3FBD608F59 /* status_code_input.upb.h */; }; + 2BEB0406389880CAA5A330D9C674CE90 /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6E292C16E37A10D2FBC21021719D9096 /* path.upbdefs.h */; }; + 2BF651BBE989D4EBDE84E863AC193074 /* FBSDKAddressInferencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F33A468B27C1C9A8A0C6933DC85991A /* FBSDKAddressInferencer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2BFB6F17AD8DD6FE3C161CA8B8CEF0E5 /* FBSDKProfile+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 669E4F1DA8F16D65F3316E252B4ADBDC /* FBSDKProfile+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2BFEB014F69A70770539548AC2F542A0 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = 806B0DE16BB0A668563A5616C3260E25 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2BFF421E7413C31B3F0FC63927713A01 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 20CF832A472627DC724BD4EB8388E119 /* descriptor.upbdefs.h */; }; + 2C02E21963724C18B3FEA40C9EFBDA57 /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 192098F692168C8F5E8AF4C587D02D85 /* audit_logging.h */; }; + 2C03599661AF619BCE1482A5FB056B6E /* trace.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 00F75B0EF0E2D6F28FE827F44748D332 /* trace.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2C05467AA256266BB41E4124800BEFE4 /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = EFE941329DADD0B9C07AAA8924CFC90C /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2C072D590FD0B858526A8B348533D613 /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1B26FC8EE42B3A5B64EBE778403CC2 /* grpc_security_constants.h */; }; + 2C07D73124C362419935EA1213B35F12 /* load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2810BDBA1045EEEDEAD9F8FFBDF2CF /* load_report.upb_minitable.h */; }; + 2C156E1C5F8ADB73F4CBA78D91B545AE /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F47059D9C63BD280BB0A13BA13E7A8 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C187364B5D3C4F2BC949B7EB43686BF /* event_poller_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B0ECD7783F3BCAED1A9FB2DCEF3440 /* event_poller_posix_default.h */; }; + 2C23BC3628CD0C5F2ADEEDBC1C194F4D /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = F3195573A457B63C8368D974772BC6DF /* oob_backend_metric.h */; }; + 2C2FCF35126792F29273CB2121011136 /* credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = BB6078B1F1F1385EF1D7F77BCC9C9087 /* credentials.h */; }; + 2C305D8CD344ADB2992C0EB109915033 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = FB08401D7390C5802CFC3A8B435455C7 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2C368B018EC45BEAE41190C7F7DC8914 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B46F7EA5C5868573CBC8FA2DCE24F96 /* resource_quota.h */; }; + 2C4D95AD7012A0B7DE3F9EAC7B1D0ECD /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C273A191287CCAA0979DC026DDDCDAD7 /* single_set_ptr.h */; }; + 2C5BD5D50CA4ED4CE5850D865A799369 /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9867C30C3526556622B304743941F16E /* pick_first.upb_minitable.h */; }; + 2C63E5E83711D1B8267F0AE26A3E7B4A /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE9E3E78472EF7D62E82DB8C9DCA00E /* route.upbdefs.h */; }; + 2C6C3BEDE5E372F406AEE1C7DD952341 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D2CC1BCCD2C25BBC8EB9668848D84CF /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2C78863D425EEAD07D279C6FED1A8A49 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C51D257794774E339F2B46646D7BEE8B /* listener_components.upbdefs.h */; }; + 2C78D89571C9AC0E976CC755C21AD1B1 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BED89936E3E1601D58E613534CBF9C81 /* cookie.upb.h */; }; + 2C83B71998A20C15BA06F27992E70ECD /* FirebaseSharedSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB371D88CC400CB971674580643F9717 /* FirebaseSharedSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2C8417C4C1139B1DA42F75825E52FDF8 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 443645381757C021133F1F8C3E4EB449 /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2C8BAFEA6582CB282FF78201A5B8DD05 /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = EBB07A9355639E56C5283F2B1599F06E /* compression_filter.h */; }; + 2CA8E1BEDE9E2191E0419D99C287FAFB /* syntax.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 140CC9A59497434BCF997F46538DC343 /* syntax.upb_minitable.h */; }; + 2CBCBADABFF55B6DBE1C5EC25383EAD8 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53310C2EC8A6D9CA3447F652FCE8E5B4 /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2CBECCC71816D75633B2F04F1F4B0432 /* checked.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF78CCAC6917CAFB5CC25EF959CC053 /* checked.upb_minitable.h */; }; + 2CC309B0495A9B063C84C835A90A1E4F /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 50232EB8A6D9F84D8FA37AD78F863823 /* sync_windows.h */; }; + 2CD2D07D14E42A7949E884C4A185AC69 /* ip.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE875066196DFF0656F3891C2F9BEB6 /* ip.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2CD6BC622EFB7F3B7CCCAD121B84D370 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA883CDB743520939AFD359C2FB9131 /* time.h */; }; + 2CD73CD8F3A2CCAA7FD61126DD4E66F4 /* grpc_method_list.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 58393D95E1AE61E50604C90F280E60A7 /* grpc_method_list.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2CE25C18E185B7FF2442A0B05D4E0AD6 /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F7B72F0B2533CFE9FD7C0AD0E29BF4 /* tls_spiffe_validator_config.upbdefs.h */; }; + 2CEA3443FE2C832BEE887B74035680D2 /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25399ED3D1081E879F215104C645929C /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2D00E7AC01FA2ABDBDBCA313D0955B12 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F27D4E4804CD2939D6AF2EFC93AC3C8 /* validate.upb.h */; }; + 2D08AC251CEA84FD508C75544AB87AA1 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBD9F5E8F62A3CB601AB7F46C29403B /* grpc_service.upb.h */; }; + 2D0E0DB4F47C942B9C0DA5F0C0DC9533 /* opensslv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E3348D6E4089862FB094C264C7859272 /* opensslv.h */; }; + 2D1C515841813E824A3964F6BDC19C64 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F94942325BE95B0FC29FB6CB08A177 /* _FBSDKTemporaryErrorRecoveryAttempter.m */; }; + 2D1FFCD5B58F5547FCF27F80386E8167 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 61CDA1BAD2B60A6E1F66320E0322580B /* ssl_transport_security.h */; }; + 2D2235CA1EAD72ECDACB328146B04400 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 862F4D1BA18CBA9D00A7CEA34F6944BE /* grpclb_balancer_addresses.h */; }; + 2D2395A4BA0D1E8D14630F2EB6DC52CB /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 037F9A302B800B48929412CDD34D5911 /* front_binder.h */; }; + 2D2727D32C5947AB4E6F465247198CB3 /* wakeup_fd_posix_default.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E07CFC431278BB0FAC2D8FDAD0E7278 /* wakeup_fd_posix_default.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2D2A5D49377D65C104159A7FDB75DCD0 /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B212BCB022B31A3A708603EED98BD67 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2D2AF2463B47ACD8062836D8C3E7F6FB /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 086BC6C9F34775812AB3D49FA2AA2128 /* grpc_ares_wrapper.h */; }; + 2D347DA960880B4B67FBA702263B7283 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8643362C6D195D42937880E716237489 /* time_averaged_stats.h */; }; + 2D3553FF12F03DE94A63A6DBE043CE36 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C1400225EFEDBF3983060983B6F3B1EC /* wakeup_fd_posix.h */; }; + 2D35E0EFF575B6E796C9AEF61A3F9648 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46975123C6FAC8940EE24B461A74B04A /* http.upb_minitable.h */; }; + 2D4076849B1CDECB10E8E435D90F8C61 /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DAEB8FC788A26332A6FE8B472C04C8 /* default_event_engine_factory.h */; }; + 2D4174BB1184A0A2F2FE6D12BD366DF5 /* RemoteConfigConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6183D124184B22042FC1A65B9AFBDEC /* RemoteConfigConstants.swift */; }; + 2D42E99DC7A9EDDE23846364BBBAF053 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99EEF19877D3D534CEFBBFCC8357F996 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2D5B64E2D673608AAACECBE4301204B2 /* sample_recorder.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EE707B7EE321E5109F395633282CBD88 /* sample_recorder.h */; }; + 2D60A5CE98369646492110A9E630567D /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFA8D18FB0263DA1A408EBA8D850BC8 /* sync.h */; }; + 2D625A27A35ACDC02DC30C634687E372 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 837777DE51FF4D89DCD509E6E879B24B /* windows_engine.h */; }; + 2D64E106BA6CF544E144A6B6E4114317 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 761100C686855B23A2740B76957609A2 /* chttp2_connector.h */; }; + 2D8480F044201A45DFE6E51132CE90FB /* FIRCLSAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71AFF5D8526FCFBD96D653B2FA036BD8 /* FIRCLSAnalyticsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D88F2FB94B03C0CF0D3BA78391BAACB /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A6D4E0AC70627E20B726416FFC20E188 /* accessors.h */; }; + 2DA2CF1FC38F1ECBF0816FDC634E766F /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F939348F4BCD46418F7E593BE356CA56 /* credentials.h */; }; + 2DB5586F571AFA26296670E350B13774 /* CodableErrors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F797F45D2C98D4B1C3D9ACB2889A07A /* CodableErrors.swift */; }; + 2DB774AA2BC12B9C4BB8258ED2D75714 /* grpc_polled_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E82BC98A2A059105831A3968FC4CFB7 /* grpc_polled_fd.h */; }; 2DC4E4F1CE28E91DF94DC4199448DC16 /* PhotosUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEE886F9074070A439C5F5555307031C /* PhotosUI.framework */; }; - 2DC9EBD9F32ED76AB43E16F3C5188D70 /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFDA4F2656B3C6EC2B87DF8BB5C4BEA /* obj_dat.h */; }; - 2DCADA5193DBC82F8A3B088FCEB6B17D /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE23747AAF0C55DD4D4BFF3B512ED839 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DCCEE3F917C21FEECCDDF51DF6C1517 /* tls_spiffe_validator_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E65BB2C25FBF9AA958B51883D228B3D /* tls_spiffe_validator_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DD153252BBCBA86DBF15DBF807F1845 /* GoogleDataTransport-GoogleDataTransport_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = F73AA961F4AEFF2B46B00AE435DF6BE3 /* GoogleDataTransport-GoogleDataTransport_Privacy */; }; - 2DD3F5328C650D5D89416B6D57ADB1A5 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F6F639AB7D145395B3D295ECCF5C60 /* decode.h */; }; - 2DDCB4C12E16DF24EC7D115761675587 /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D1C774E829B4E4F5135E765B9B0F3AD /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DE2B989C601872BA52A9C0ADD7DFF57 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 303F477FD1498538A8EC65C42549D9F3 /* aws_request_signer.h */; }; - 2E06A1637FF6038801E9BAFDF7C1F047 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = DCB052F9DA7C0514242BF993DDF4EE10 /* security_policy_setting.h */; }; - 2E0C17B845D41B1F41CDEE6879181697 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 920CF98DDB9873937E0D03CA0B45991A /* memory.h */; }; - 2E10A2F97E1AF7503BFC0637AAD45E94 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = F397CD3633B2D9B807022D040FE6CED6 /* match.h */; }; - 2E1749BDD6716B3645B6F79903A60CDF /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 0533021FA6A75717E25B49F1E1ECDCDE /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E2E658F36CEA04D306DA94C4118FBFC /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BDFBD2B8DA089A244FEABE101B601B /* tzfile.h */; }; - 2E35606E4DF78D6F1174D15B750FBD51 /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 316A7163A7B4C17BAF25890EBB45E625 /* listeners.upbdefs.h */; }; - 2E3734C99CCE292518BB639C4AAEDC3C /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 39ABAA7B5E372A916B101CD3A6505235 /* xds_http_stateful_session_filter.h */; }; - 2E3BCD8B2F66321AFC15312B803D5105 /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2487586DB7A01E4E2DFDBE82223493D /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2E3CBA026A04A3FFF9F256F41409840A /* slice_cast.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AA18D6BA3472FE9AE2FC38C388A1C482 /* slice_cast.h */; }; - 2E49A0D8213765F933914CB1746D93B0 /* dynamic_ot.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4B00689331B9502A8C60EA5FE3BD3A /* dynamic_ot.upb_minitable.h */; }; - 2E4C246CF162B3ECFF447FE7095A661C /* bloom_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE6F4F6357995F21DFDE05BE6780A1C9 /* bloom_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2E4F53BDB5223DEC82090451C884CDCF /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 8204BDA20C67EE68C15F83DC227A8235 /* hkdf.h */; }; - 2E5127BBDDE0B23D18F17ABFF30612C4 /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 025DEDEAB299ED2B675319741AA9A1F7 /* poller.h */; }; - 2E55B21F22156C87FD759384F574271C /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 15B1D11CE981C028CF61D442C691D84A /* transport_security.h */; }; - 2E6054132B02050464EF4772C2A2FD7F /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B72DF2E7F49B3504CC37B6C19B57E7A2 /* cluster.upbdefs.h */; }; - 2E66A78A58380AC02EC295C78AE6CC5E /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 1F2F20F9190A3A1C78C0A31460C16EE5 /* transport_security_common_api.h */; }; - 2E6906112225E063AE45F9A4502DB69E /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F4C74E09A733BA0D4D7CD3C19E5A5 /* FIRCurrentDateProvider.m */; }; - 2E6B9C6D1E3471F244C7C7185D0329F3 /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 952E4914EE0A8AA64146D8AC51715CA9 /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2E7321581005F0AAF767213937D29680 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3923148274370BAA83EA47F0BF2036 /* NSButton+Kingfisher.swift */; }; - 2E745542F9EDB57AF14E8B15ADB27D6A /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1DB16D9C65443E00FFA55C9F9D91587A /* host_port.h */; }; - 2E77925EB39F9C31086EF5F55F65779A /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9EE0AFD542A3838411A97FCA585B5C7 /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2E93F2FFBA5544E420DDAF46F1F7C723 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 48E137B3CB080CB819FAD89342C90B43 /* stat.h */; }; - 2E9B7C67E67B023568CCEA4407F41647 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E3F3EB921C216CA24BD2F75154336C /* buf.h */; }; - 2EAADB6AB4F5A96E71EF2EEADCF056F9 /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 58D80CB2A5AD66E6C453C525B0BC459B /* file_def.h */; }; - 2EAD1EF7ECDC0600B637D4BD97334440 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89112F0FB78CC36273D6F580D2F74B52 /* endpoint.upb.h */; }; - 2EAF67FF8A6A81687A2A9498D9605257 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F925EB4F5D79409E721CFBA5ECE67F64 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2EB3BDD7D7591964DC8116C14B7687F5 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = E238E7B3F245300749B6273232A5AE54 /* thread_annotations.h */; }; - 2EB95C402DE59D7A1574573D7DDDB4BC /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = 7039C785927D38D9F7D00DB8BC077588 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2EBB4EFAB6FD7C06C23024F13F8A796C /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = C23F3499F48882D07F825268C4E851A3 /* fork.h */; }; - 2EBFED675CB968D25307CEE295BBC701 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF549E857D33F1BC3659E1353006A6E9 /* address.upb_minitable.h */; }; - 2EC96CB1701A8A7D5CEE9A05A77C0F15 /* raw_logging.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2B18E2BBEC9D8353063AE3E181D1775F /* raw_logging.h */; }; - 2ECE2CA38DDBE2C43C29EC38D91CB329 /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BBBB548A0AD301AEA06D6A3C08BC4080 /* listeners.upb.h */; }; - 2ED1F361545CF911FE6D62A9FB4BF2B2 /* oneof_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F38D9D4941C715808FD6A2B5759FBD3 /* oneof_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2EE2C0E08CC658CF4CE15F80542B31EE /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F07A1DB426F661400B76D1A257C925C2 /* quic_config.upbdefs.h */; }; - 2EE8AEA2BE874D2DDBEDFC19481160A6 /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A585B4BB8333BA259CC81151327B37 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EE918E4FC669029AC00DDAB1E5A6621 /* xds_cluster_specifier_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 741E791772384E141482B0CCEB1D9284 /* xds_cluster_specifier_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2EF26A97F091A152EB87B5C0780AA49C /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E70A2F25B5090AF6F56161675F3CF25 /* checked.upbdefs.h */; }; - 2EF4128469E285D79FD9BB949C56B987 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCD084EDDDE0DA7F15AE22D2F8822EC3 /* metrics_service.upb_minitable.h */; }; - 2EF4FF85318DDC457F670C6690868AE4 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 5873407F88D71B260806D22E3B94DF42 /* FIRAuthTokenResult.m */; }; - 2EF8A9A38693E624F2F7AB0336A462F6 /* seq_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FB62B2036B8C387D2FFF0B70857263 /* seq_state.h */; }; - 2EFE03B334EA707FE092947041C4D781 /* auth_context.h in Copy impl/codegen/security Public Headers */ = {isa = PBXBuildFile; fileRef = D3D33888A40609DE9EF7CEE232F10326 /* auth_context.h */; }; - 2F016E5C1380816F9ADF37A1C0BFF78B /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B04F46FD7592A390BC0B0F834700089 /* xray.upbdefs.h */; }; - 2F03F44CDA48142427B4BB811DF0A1FC /* join_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = FA6D240B644328F2FA6ECD290D874CD1 /* join_state.h */; }; - 2F06179D10D89BAAF084696306C05955 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30D175B829F44DC6D701EB975987E85B /* chttp2_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F08E7296F9F11A23344FD17A32B01FF /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = E08E287BEDAFD6CA0B6B37261FA5513B /* direct_mmap.h */; }; - 2F0CCC00DA7515986AF7F62AE1138871 /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC92DB2407169DCB54842DD27E54FD1 /* HeartbeatLoggingTestUtils.swift */; }; - 2F101F175A1BF418D73913234770434C /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F938F65EFE5A3CD3965B2534461E05E /* rls_config.upb.h */; }; - 2F16198DD771A4DFE858814D928E30E1 /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1397FDEB9E99FC0145AC9B5F9D9A6F /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F1A45B57DBB6FA8D75A1B9FFF4B15B4 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = F3514F18616F1F286E6FDA1EA810BAF1 /* deadline_filter.h */; }; - 2F274E42EA18EE3756CF65D2ABE5EA48 /* bit_gen_ref.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B84D446B7286F65AD2B16DC2FB6E8642 /* bit_gen_ref.h */; }; - 2F2C7143DDD75B390044296059B21A2D /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EFB1734A535BCE10BE0F8A34D8A3331 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2F38075D08E11CAA48DAE1AEC480D53B /* Promise+Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3120E1C9C8E77BAA6A62AAEA975311E /* Promise+Await.swift */; }; - 2F38AA6C442F4604CE4F0D85EAEF7DA0 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E7F0E67A185AFC6692D82CB641FF90 /* serialization_traits.h */; }; - 2F5E4838333D1E7E2C559B27DEF3CA38 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 2F68F7D1007B40248F099B6F39473147 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = C90058BB94ECFB6B899BF59774FD0AD8 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2F6ED5024F3BC59A22EF71451DAD5024 /* memory.h in Copy memory Public Headers */ = {isa = PBXBuildFile; fileRef = 859AE861BEFC599FFD3FCCCF9EC14878 /* memory.h */; }; - 2F6EED4ED413DC2E00F5EAD5ADED312A /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9D589CF43F430D129A40F19A36C985 /* message_size_filter.h */; }; - 2F7609E448FCD728EAA68C01FA2A4874 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37B9578314C15564A01FD21A8BAAA346 /* tap.upb_minitable.h */; }; - 2F79B97D9EFB6D991FCFF565572FCBE6 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 87380BFDBEA90E469C770387535456C4 /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 2F925CB078555ADDBE46E40E855554CD /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 027B1B88C205B99CE4AED1298DFF63AA /* channel_args_preconditioning.h */; }; - 2F99A761655F5C0E22E442DBE150ABC2 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = A2C2E31ED1586A8DCF32F1E90E5442CE /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2FA051895FC87180A228313E775AAAA0 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4CDCC60853F3F70A5FE8CD63F2B0D1 /* FirebaseFirestore-dummy.m */; }; - 2FA84F40C4A2722268A32F6F73680540 /* TZAuthLimitedFooterTipView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C94873E30E4A22DBBC43856ACEC977 /* TZAuthLimitedFooterTipView.m */; }; - 2FA9079292332784AEB6AEB2562AE2A7 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 3632EA6E31DFE932E64ECEA3CC717CF1 /* extension_range.h */; }; - 2FAB5D02FB5A0CC4C82F505D3127F306 /* enum_value_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 23B9C9E655A6F1B9FC5C563338D93C64 /* enum_value_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FABEDCE87175485036590E077EEDD8F /* backoff.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 14B76ADBDF546741E875F54ED2D34D97 /* backoff.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FB13586724C2DE891F1C9706427FC1B /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = F86F37A39E17280830E90F93766D637D /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FB27055C0C12906928B1F264540921E /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5FCB236E5E8F3486231A16383911D9 /* FIRResetPasswordResponse.m */; }; - 2FB334E459128B8C21628E75DBEFAD61 /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 8A4077A31F58134456FCE916A1E18A3B /* transport_security_interface.h */; }; - 2FB755428AB8D51685D64B0229C7E14D /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 3B33CAE0F4284E64DFFD59B568CB2280 /* def_pool.h */; }; - 2FBF04DE6F3BC2B534AEC92524B85D2B /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = BFCACAB9652BFD1C2C0335CBCC25FB3C /* randen_traits.h */; }; - 2FC7029FCACDF799B1E072985D41ADA6 /* encode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 727E2038F35F9651E41EB274E7803A4C /* encode.h */; }; - 2FD07CF35357A5003684C0668AE0611F /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F523359C41E1C07D6179CC4E8BB7A24 /* hash_policy.upbdefs.h */; }; - 2FD259A3299B6A3E89A7ADA489DD406C /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 03CF1A18028DFF3B011091047B8A3443 /* alts_credentials.h */; }; - 2FD41B1A0A71386784DFC0E779EA3782 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 849DE82718B41B9DC4B9515FEEE3FABE /* context_params.upbdefs.h */; }; - 2FD98CB6859104D794572089A617B87A /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF03DEE324CFDC0D447AAF6A6D3EC56 /* config_selector.h */; }; - 2FDC4E1B73011A7BBDB9A0D723E40CEF /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 3DC4D9FD58BA649EE553536251C67B09 /* vsnprintf_compat.h */; }; - 2FDF5AA59D554B5B241B968002E798A2 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 809BCE39C8B6AD5F6EACD1626B44AB16 /* http_connection_manager.upbdefs.h */; }; - 2FE386981F626BF106C68374D67B47A8 /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD6B9E22466D5995921AC754753CA690 /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2FE6E607663F2E60B8BF683179004125 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = EFAEE4536374180ED87E264526BC42C4 /* alts_grpc_record_protocol.h */; }; - 2FE92C1B93D0E5FA70530823DA16F2A1 /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74EA57AD4B5807578799FDECE437BCF6 /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FEC502EDEE6356D6D33992D1F629500 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE96FD0498A01DD7579040C3A43B8FF /* wide_multiply.h */; }; - 2FEE4FA5A72176514E08A2E8E0062501 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F91BD6E9A28F7FFFFDE86B52B6EEC232 /* custom_tag.upbdefs.h */; }; - 2FF16D04A05F5EB34CCFEA399E178F85 /* overload.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C0D64E4DAC063D1D602D384192A1455E /* overload.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2FF2BBA993F7F3ADBBC891FBABE8164B /* endpoint_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D3CA75E403DABC232D981178DB088BF2 /* endpoint_components.upb_minitable.h */; }; - 2FF9B7672998C43828DD17A86F55D867 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2E639EB65BEBA95967AAEF9F95A4FA /* posix.h */; }; - 2FFAAE75623726A050487CBCF018A5E5 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 95CA2356F945F30F886053EED3D53027 /* json_util.h */; }; - 2FFEC7A6FC516B235FCE6BEB07A16BF8 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 090070DE996700C15DD7A9F5C306DEB2 /* per_cpu.h */; }; - 3000568177F6955041529CB4C147E18F /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C1801D23257F3C9A9BB507EBCDAEFA7 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3006B7E203E43747BE489A7147CAADB2 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 778403589630D1CA5272D39F429BFDCC /* secure_endpoint.h */; }; - 300A3D5EF7F8013F75A975E5A5D00509 /* descriptor_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7BE00CA778E215D245166FF7B02280 /* descriptor_constants.h */; }; - 3018E70FEBF757CEE42BB7DA8EDD7458 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB49D17E39CFD7A959DD3DEB1E70E5A0 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3021A21B1837647442D913983FBE668F /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = 456D1CB604855339A9E5EFCAD1937FC2 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 30247C376CB41CEFA90D7F747AB0ABB8 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9B76DD8640345C6A41FBDDFF76E558C /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 302B9AAE4CB4F22D41F7776AA1908009 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6CBA20175DA726772DFBB285762F0FC2 /* stacktrace_generic-inl.inc */; }; - 302CE147EF17BB5AA7440D45E9E7272F /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B9C98371CB14C790755E51DC47624A8 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3037D01D788E1DC24195C669D29AB72A /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECECDD9DAC840149B493B0D420EFB35 /* stats_data.h */; }; - 3038853D4BDA6B289A9A2998653CAC53 /* client_channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF865F67308744FABC5588627B0486C5 /* client_channel_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 303C143599341BE5D3BCAF25D5EE90B1 /* FirebaseAppCheckInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B8831EC85E9585A64BC115197123C0 /* FirebaseAppCheckInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3042CD62CC137547772C5FC615E09961 /* router.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C760B88E15DB71323A3D54A4CE8359 /* router.upb_minitable.h */; }; - 304A7AAFF20B6DD5A4F2F4433913D8CD /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C68BE53A42342FD409DBF66DAD8B00E /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 305097462E64B6623D4C09A7DE7B7289 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4F4B00689331B9502A8C60EA5FE3BD3A /* dynamic_ot.upb_minitable.h */; }; - 305BE0A9A80D7EE0B4C177F6322BB98B /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 84F306197C835F480D5349792CE0C426 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 305CC887EEF90FDFFF09D1EFE7C738E3 /* party.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 942563C1A95510BBC8BE0834461E9451 /* party.h */; }; - 305F5D66857FDCA885338EE762ABC273 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = A5579755674E17C9D727AD3EF1FFFC00 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30605C5F9D3175BEB295A426E2BE13AE /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 731ED4AD0FF2E8B4320401606ED0E31E /* timeout_encoding.h */; }; - 3060FC72F0D59D9C2DC5CDE5EA41DE2E /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A31E948DA64C1225742257A00CCFB19C /* pollset_windows.h */; }; - 30638465A3C56843E94BB505A60F5EEA /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 583FBDFFD2FFB7D4AE6248B0EA06429B /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 306DB7BC06A49C19261FF823E3E936AB /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C619A52FD85BD46515C74A5A00CD939D /* frame.h */; }; - 306EFCE7D87276574648E39875367A12 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C038BB4467DCBA2D7F72A05FF197A4BD /* authorization_policy_provider.h */; }; - 3071C782AE63D29C64586316B146633E /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B32B278E98AA1EC0666EF2CF43C16 /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 307F09AF749D5EF313F64D9F722E4B11 /* obj_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E326C6E7398A6F61A8D2E724B1E6172F /* obj_mac.h */; }; - 30853FFC039BCEAD9CD7A6B248A9F358 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 411AFA1497B46ACEE745FF3B7EB0A50D /* hash.h */; }; - 3087C8AE902EDC88F6ECE9BC91727BFF /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3FCC3F04109CB34B00001FFB2EF099E9 /* xds_http_rbac_filter.h */; }; - 308B9AB6619913DFA381A5D19E37F849 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 222B5361B20C3CC2F2DC81CB9DBDAEF2 /* matcher.upb_minitable.h */; }; - 308E7291B0A4C23E60EB326CDFAE9328 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 7E4A7ADCAA16E3D5344C1B2BDAB2ABF1 /* frame_handler.h */; }; - 308E750279A3196C03997561D3ED53C8 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 367AE3FFF3B5B73A808CD7356F9E7740 /* host_port.h */; }; - 3091C1A315FA87E7B3B32D1184F47CEA /* EventGDTLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7DCC04AF1C810FD42FA6AEF28D75636 /* EventGDTLogger.swift */; }; - 30994301195F1257374306041BC27730 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = C684FD7B093D5925DC786A6380A9C109 /* security_context.h */; }; - 309DBAA2800E56F9DAFD86124C413B7B /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAFB357736092443CC8F7869843B4121 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 309F1BC43B8F3F2B5DAC902BB64A9C0F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43D787E52F867D44C4B1F83691D348E0 /* migrate.upbdefs.h */; }; - 309F43BF1755348DE762FD8211DA1977 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E278354E9BCE50B464C824ED5DA39E6 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30ABCDCCCDCA5DD90A547BDA95C936EC /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B9610D9E06318A33473BAD3301973F /* latch.h */; }; - 30B328D86750C0803398A8BF65CF6683 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 491B5FEBED90992741A4E6B7EC0FB706 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 30B61D06CAE48105BC8652D93D8AC4D4 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DC125F2A24CEAD47260DA56856362E07 /* custom_tag.upbdefs.h */; }; - 30C6E3F922D1CE7B9C6227152CD979BD /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = BFDB94A5273769B74893F966F015E439 /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30CD347D03E5D0B385F83D9E75114DF2 /* windows_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A07F4C291140D065D094F128C692B64 /* windows_endpoint.h */; }; - 30D65FB709F8B7FE942505FC2F6FBC9C /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1BE3902B533722A230C98831CACB6E30 /* sensitive.upbdefs.h */; }; - 31035CC7DC323CAA315053CB89F67D31 /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 84D7E84B4A1C99EF739E6B3AEF914E06 /* server.h */; }; - 31051999A624287B4C190E03F9EE00AC /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F959E6F318B889AFE54CB76494B5AE42 /* wakeup_fd_pipe.h */; }; - 31069CAB49103A2A59ED8E0F5326446C /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = A62CE157F51D232C04BE0B63F1D82004 /* thread_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3109A7629E882DC09121066691BF047D /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = F6BA093AE1072223EDF8CF10780596CF /* alts_security_connector.h */; }; - 310A88929E94ACA6424C0807C546A9CD /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1E4A6D699222FC3F27B311DD090D66 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 310B76B7B04C971CD0CE9C9EDF150930 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = C1947919B594167EA34376275D5DC349 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 310CE2389C35B64722DC50E83E901757 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A06CB284586A3D1CCF94B6382EE376 /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 310E580F3F9BAD83192E851846C95216 /* crc_cord_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 345657A60FF0E53A2560D932ECB7150F /* crc_cord_state.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 310E7638FBC9D512B6C3477A4769E566 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB389B6F723FEE0D0E430BF7F466913 /* handshaker_factory.h */; }; - 31168E894AC25D1DA9A14A9F3F0FF782 /* evp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0A28CB94C97989FDF3BA0C40138DF2E0 /* evp.h */; }; - 311A041A733BB9339263FAA4008F84C8 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 533A3F058CD229E527B926D584E2DC4F /* FIRCLSDataCollectionArbiter.m */; }; - 3120AC905C8E51BE78C662B9BE898A45 /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 6794F0D329E77DC6DEB3C21DE5C54E34 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 312175239F81A9997A484B2A5AAFBA91 /* atm_gcc_sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 01A2DB61D1C769DA52F83C426022F933 /* atm_gcc_sync.h */; }; - 3125DA9905C4A9D8473CC0E990AC56AC /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 92F0800D6EC34F7321887A8B957897DE /* migrate.upbdefs.h */; }; - 3129EEC9FC5AB45F65DD773ED42099AD /* server_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3B1B976FB0540F9F4001D2CFC90DAF0A /* server_posix.h */; }; - 313311F8C68CC4C238EE8923E3C525C8 /* proto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0589BB1868031242E6E43AE46B2AAD /* proto_utils.h */; }; - 3138F349B19B07A8962759AD76A0FED9 /* datadog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B0465EB4AD0139CE149C90B77EE9D8 /* datadog.upb_minitable.h */; }; - 314342345821662AAC78505737098765 /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE88266BCE228BCB5AA5F5967AA5C56 /* blake2.h */; }; - 314FEE0C3867D66F792888E8A4AE7765 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1F9B587AA39C7268AE07F46CA65053E /* host_port.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3159B1D607775C0CD846A5CBA37648AF /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DFC967B3F8C93896DB2D3D61B769825 /* grpc_ares_wrapper_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 315DF1E6358BF4E2F7F25CAB0815AB75 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = AC396AEF6746FA01BB0C89657FF942AB /* tmpfile.h */; }; - 3161307B4600A27EFA45C1F21BEC26BE /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFE95BDD3A75E2E0EF5D6539EB93633 /* FIRVerifyAssertionRequest.m */; }; - 316670B65B03639E189BEF91D3866042 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 9470073353FD474824F7230C99E25D9C /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 316886636F93D0FB1466392DEDEC1B22 /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 85D172B924BF6172462B2D5C2DD98029 /* forkable.h */; }; - 316C015B44DC6FDDCEC4B89282440DF8 /* ExplicitNull.swift in Sources */ = {isa = PBXBuildFile; fileRef = 052DCF0F784245D1C018C5113D2830A0 /* ExplicitNull.swift */; }; - 316F7B119F3606B8FCA410EFDB9DD402 /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF8B4190451FE8304731CE7391A226 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 31773A7BC412BC6A5C26476EB8866A0D /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4E8BDA85C75A0D44E7BAC6019838D5 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 318163E84408DD33D984C2C980E7CACE /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 473BF06FC9D94C0D3F80FACA43EF44D6 /* lrs.upb.h */; }; - 318FA3129A441EDD24E52596DF3DC63C /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 528C92DEDD1A070B225A259281572E82 /* proxy_mapper.h */; }; - 31AB4398291A52235B09FE025D7C1A44 /* waiter_base.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E59A487B3E5B45F0C7A53999F80460DE /* waiter_base.h */; }; - 31BB079AF08A2E3A18C9E97688C51A54 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 032F1ABFE35C8B3EB4DEE347F01D044C /* cluster.upb_minitable.h */; }; - 31BF8D0F1F8F691B1C4724A0E07800EC /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BFC8237077EBCE1518505C28091387A /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 31C3A47B3291E5D639B2D94575401DEE /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AE9F4A8EF3CBECB506EF85FC60E63C /* map.h */; }; - 31CCFB1FCB4F63B1C0589514DB8EF1E5 /* cidr.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AECFB02F6665D6DDD0AD5499AFA5CE24 /* cidr.upb_minitable.h */; }; - 31CE77E4ECE6011083C3B8AB87EEE584 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 251E472B65D83C09BB5FC0E294DAB1AF /* unicode_groups.h */; }; - 31D7E18FD8E7B34C06FF64AB62670FAC /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 15275EDB4469AA6B9C24A03FF4BAD201 /* FIRUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 31D90576354A2C691413B2E8FEB7DCDD /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = F89BE8687F0505920BC07232F4612DE8 /* experiments.h */; }; - 31FB8C09BD3944884FB84356BE5B15D2 /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B18ED09E4AEE80B5A47CE1E5A390E8A /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 31FDCA3E29D58B23A9477DA48712B6F1 /* retry_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BB0DD1BB5FD2124ED992F133DADE457D /* retry_filter.h */; }; - 320C0D7A88AA812EFB20016BA1F5D7AE /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D61EC3F8A049A564B2D14B912FAF7BFD /* AFError.swift */; }; - 320C58CD11AF817DE054A36AF59254D7 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E55E5979986DCF814DDB037E773A654D /* http_client_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3210A9DE563AEB989C0D9DA0EA77E867 /* proto_buffer_reader.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D9EC23A6BD58AB4E42720C2CBC5DE893 /* proto_buffer_reader.h */; }; - 3210F306DB5759BD34CC659681787D70 /* build_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC47B95D3AEC68103499B0E04DEE8A0 /* build_enum.h */; }; - 3218710FBD61D049C6E38C9E6601B3C5 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA8B9521AF875C04F9B44B8E062D991D /* struct.upb.h */; }; - 321D9849FD3F6EFACCE3713E3202950F /* symbolize.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 16C55C66D955EB8A867218F6EAF96DE8 /* symbolize.h */; }; - 323A3C871A757E0138D89C9ECFC0BAB4 /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BB0D6854E8FD372EA5F5BFCBA01464E6 /* posix_engine.h */; }; - 3246F881C144331C0B0F3B88C44A6374 /* xxhash_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = 7229EF69FBA5207DBEEE1D38AF23773B /* xxhash_inline.h */; }; - 325A8EE622FF3AECDA560738674E9DDD /* cpu_arm_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = CB537A2B3D8A1EFC2409FFB0CC695BF3 /* cpu_arm_linux.h */; }; - 32649CA14C2CC38B2790D88973A5A3A9 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 72D6A644BD7657DDE516553B99B159D2 /* arena.hpp */; }; - 326941C448ADF2D312D8E093F090B618 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 113EAD460563D7BF492D20F34ADD6A4F /* promise_based_filter.h */; }; - 326C38DECBBE05044DDDC00F7A56E411 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8F31DD387F1B89BE48E2F37675F6045 /* gethostname_sysconf.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 326DB05C75E43431DCCE55C96F99DB9E /* TZVideoPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = D2DBAEB678BA703DA602152442B4BC30 /* TZVideoPlayerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 326F4846C0B0E9422A020C6BCA36D2B7 /* placeholder.m in Sources */ = {isa = PBXBuildFile; fileRef = B6D207CD8011C99BBA59B0ADA64AEA28 /* placeholder.m */; }; - 32743F129631BA12B046598722F4A335 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A33D82D64ACBA6E825512F1BB1E67AB8 /* internal.h */; }; - 327EF813BF4BAD729536019C32848596 /* endpoint_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 7642E133E72BD6830A416F9C2238A77D /* endpoint_list.h */; }; - 327F40CFA65A94EF6AB93B113E9633CD /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FA55054C90A3DDEF6F8F6FA4E1711290 /* ads.upbdefs.h */; }; - 32819B0A7D8C7D1128A452E9D2ECC46E /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02C4DC1A8F0BF0E8EDAD9815ED9DF0CE /* xds_channel_stack_modifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 32850268074F9B695F61722AFB79C54B /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BCD02F979BBF262ABA4BA9831BF64AD /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 32912F29641BCD3F143CD71EA1818545 /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 951142A1009E9A2BFF35513BBAE9D7DB /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 32923DBB13E56B154016E686BF78C791 /* params.h in Headers */ = {isa = PBXBuildFile; fileRef = D2C263261239CCFDC4B3BA10C4423767 /* params.h */; }; - 3292938C3BF6EBE5FCFC75AB52759CE6 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AE7B271237ABA3B085F81979F52FF6B2 /* annotations.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 32993EF6CC7D9D75CFA12D79A60EAB12 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 00A3310EBEC3EB62D858EBC2873E6EC4 /* slice.h */; }; - 329BA7D3F381D734FFE49C44EE573667 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 2049B8C4F1747E3F69D27F3B117169C0 /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32B164CAE42BDDDC747770D0C8255F73 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F9CF494B0CDFBB51CF39A55ED96B444 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 32B347CA1E078DCE709114E3216E82D6 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0865506B4A627A56FC227E85D966FBB1 /* sensitive.upb_minitable.h */; }; - 32B3CEB2AAD9948EB3E8B06E59A7A086 /* FIRTOTPMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = E16A8AFF5BB4B921F47A4AFD1C1843D4 /* FIRTOTPMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32BB48B313B097ABA310D0E389E1CB81 /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 614A9A9E7CD54012A209A39BE6A07F21 /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 32C9E0BC4736B4D4C0712FBB16AA7F99 /* internal.h in Copy crypto/des Private Headers */ = {isa = PBXBuildFile; fileRef = 6E2F2D49D79E1DE69800C84447BE69E8 /* internal.h */; }; - 32CB49E680EA9E92651C9CAB685E1C02 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DF9341678074928BCC2DFE10495C02 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32CBC44346D16CF978B9D5F1CDA1454A /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B796447A38FD30A677499B2A231EBF71 /* rbac.upb.h */; }; - 32D733F3BB806463764443A0304D68D5 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1E19E28CB4D8F7BB8958CB5C21800C19 /* http_service.upb_minitable.h */; }; - 32DFF318AC37920C8BD09C2F5A82DA30 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = A3957DC8A3A9269B0894E8849F2F3478 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 32E24CF8CD1F79BF443EF8CB08FEE446 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F98D6FAA3EC9E475EFC468D2FBD92F9 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32E88416DA977C2730EA65C7C4D5BBBF /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA5D9A66210D7C3F5F3EEBB207EAEE1 /* p256_64.h */; }; - 32F2C47B37D6DD5C11E87F6687F0F5FC /* wots.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 32947AF78BAF6898A12D50DCBCFBC211 /* wots.h */; }; - 32F6BB649C9025712FA2A4D3FB92754A /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0ADAC606EFAC8D5E37E9F4E04EF9B9E6 /* client_side_weighted_round_robin.upb.h */; }; - 32FA02243C8FB96D79D90D2B65EC21BD /* spinlock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9A306B7A6789F21EB2805CA14DE9FAE6 /* spinlock.h */; }; - 32FCF11D9B74AF6A71ECCB3DB407F63B /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B01E8740EEBDA5EB570C4B42AB7532 /* file.h */; }; - 32FF99222065B576A2AB5B586A60A939 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F273C6BF8E39A0DD763D3930D94D127A /* call_tracer.h */; }; - 330018C82E5885B0121FECB3894B0010 /* load_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 869D5F3DD075965EBC017C2964B14002 /* load_config.h */; }; - 33001A310213D4AC8928EB7051DAE9DD /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64286176CB18734AE8DBA0165B0CEF76 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 330548865897C400762E14EDA7372CF7 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B655C3BAC19516D76C7F738CAFC71F8F /* fork_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 330D9CCA1D659AE7513B5AED021EE4F4 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE1BA96B00A3D7B394C3B7C958206D0 /* any.upbdefs.h */; }; - 332A8489E6065E518ABF0225C86C8D05 /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 895FC2487D455C64633ED2D339429314 /* orca.upb.h */; }; - 332E57A644AE3A5A948C197A0441D11C /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C5C54AC33E2E1780B73178C289492D3 /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 33300208F68FA414A5C0C60602FFD52F /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3ACC95F11E30093E5E8DFCC8AED40B /* metadata.upb_minitable.h */; }; - 3334D929DD3F922E291070BE88B42FB6 /* xds_health_status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 759A899795D3BD4998338AC05BBDB07A /* xds_health_status.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 333D786A2EEF1C62ED49F93B4C2427B4 /* health_check_client_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C399604159E4055004553B0562F24E /* health_check_client_internal.h */; }; - 333F769DD7ABEFD9B5D2348C3C85145A /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7229EF69FBA5207DBEEE1D38AF23773B /* xxhash_inline.h */; }; - 334DA0D9B3EE6FA59D2874E9F0483531 /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = C85EED01882DF8D046C53A2B926D5F71 /* grpc.h */; }; - 335830133406A10A174852E5BF6C3182 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 310E4A228602FB184F9F75A762DEE768 /* resource_locator.upb.h */; }; - 335B0485DBEED9F0006EF264C90D07F4 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = E0559217778CB0A1B63C1E252698D202 /* spinlock_posix.inc */; }; - 3367D13591D1DAFCD63A06B27C504DB8 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 932171988474973CF95276969F1F42BF /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 336851FF21BE0DA33EFBCD402C191E81 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E809F4F199336624BBA3C5105B23CD /* xds_listener.h */; }; - 336A62BAD5F8760B4A49C43606428870 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = 91ADBF363E9176A0D1049EF5B9B49E2C /* ssl_key_logging.h */; }; - 337A075EDC1C70D4AFE349B839221F5C /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 928864F925FEE1C35C292577A1E0B1DC /* timer_heap.h */; }; - 3381673DE783D280232433DC6043F356 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 027B1B88C205B99CE4AED1298DFF63AA /* channel_args_preconditioning.h */; }; - 33872A5E1B3B0B024555A618713CA320 /* win32_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFB03DF2C9ECBA156F4CA31A01F5A448 /* win32_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 338B5A3556E999AB611A51AC3DD5F5FD /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 6952E535AD069F00D60346953A66452D /* legacy_channel_idle_filter.h */; }; - 338CA38DE89771701F8B5461CFBBF3AC /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = B33F58048DE87EABE6BB2926AB523372 /* client_callback.h */; }; - 339A94428AFD915D261D76CE1BC4BDEA /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CA8E057DAF25B87BBD524AC71447E45 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 33B4B4718B1B9E753D3AE000EFE8020C /* internal.h in Copy crypto/rsa_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 550CCBFBD6EBE331F60E57A4B6A6208B /* internal.h */; }; - 33B5A1553A0995C1301B82FFC7A6A705 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 74ACA241350C63E43FDBBFAAB8224E6D /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33BBE5067C1F18126464E309E14B8007 /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2451C17659EBFFDC3771CE8CE3BE0FA7 /* socket_option.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 33C46385130416F2CC2376C1558D0B3C /* client_side_weighted_round_robin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 316B3FCAAE0B3AF1BFB4FAA62A1B067F /* client_side_weighted_round_robin.upb_minitable.h */; }; - 33C7EE176C7BB89DEC456A8CA6CD5AB7 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = A4FAC17AD804A43DFA3B49BB117E176B /* table.h */; }; - 33CC9E68E29625158AB9EF80DEB440AA /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 346DDEEEF2F10DDF4EA0B42C6E345AE3 /* ring_hash.h */; }; - 33E29DEF590C726629670ED1C65F80C2 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED3803D062079F64B1F1AD1F5B58AF2D /* exec_ctx.h */; }; - 33EB4731BDE3FB8AB319DDBBB9DECFEF /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C633050ED284A82E1EACEF72B68595 /* optimization.h */; }; - 33EC7DAE9A50A876FA806942E55981A8 /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BB77408A39B7311844ED55FBD14BBA93 /* trace.upb.h */; }; - 33F4A0420A53EDD16D2C843C0229E4B2 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DC52C321879830BA38EF4FDDA7783D69 /* http.upbdefs.h */; }; - 3401F10FD79A2574587A7046AB4C5FE5 /* sync_abseil.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6F14200A519986D5DD86EB630BF302B6 /* sync_abseil.h */; }; - 340507BD9648723026AABB0DAF9AED59 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 900A505CE99C86C177908F564B73AD49 /* call_test_only.h */; }; - 3405A75520116DB3135FE6DBEFE2DA23 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 99B99D4371C776066C19F10B5F240E68 /* nameser.h */; }; - 341181FBCAED9F8F39977896658E7B9E /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90B488376D0A2761F90A5AE80D003589 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 341416D4B93BBFB43A0AA84C418C0F5D /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D649FFCF03ECFBF68AA1171E0DA7ADD /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3418EE893D4BABBAC57334E186E0B1DF /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 4EC1F6AAAB906C1F20A113D2C2F95195 /* message_reserved_range.h */; }; - 3423A75674E10CCA58E589DB5AA55472 /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3399446665F8D5AAE2C8F70307229976 /* number.upb_minitable.h */; }; - 342F33A25C1F0BA1BD5383A4E83BA813 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC2F86EDD170643F034AA9A6C4917E70 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 343366D8AFEC0B15B17FC7543F47A84C /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = ED84AA4AAEEC791C0F797EBA62EC3BC8 /* json.h */; }; - 3433D085CAA21B8597DB906FEDEE6402 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 5796E2084EE002FF5A07646A2FC164EB /* slice_internal.h */; }; - 343D8655A0B64A3B6D12A05D91825C1D /* max_concurrent_streams_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFE36352B0C7AC26830253951651DEC /* max_concurrent_streams_policy.h */; }; - 34446B29DC359BF5EE6AECFC89749D64 /* uniform_helper.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B586FDB11E1B70D090A2D879BF88D039 /* uniform_helper.h */; }; - 344A5D918214E60015DE7782778AE143 /* client_side_weighted_round_robin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3028B86698D2E73380CF642C444F68D5 /* client_side_weighted_round_robin.upb.h */; }; - 345800955B6A02B4E1BBB7019FCA6E89 /* deflate.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 2FD96C35BE308639A1D88F4EFBB63ED4 /* deflate.h */; }; - 3460501A136059A824F4D8D1EC973F18 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 18928BED288FA394FC04DFAE39E39803 /* endpoint_cfstream.h */; }; - 346526113BA687DC5524AEE10A3B9FF4 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = C88A194950D04730AD3241B3B94E2D87 /* TZVideoPlayerController.m */; }; - 346BBCF9E2849F68C856F3E522180A20 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 480F5224DFBF86913665D6E13339AC0C /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 346E8FDF38EDEA33F4A10D80488C2A84 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 065F346BC1B1578431F4E47528F3269A /* tls_security_connector.h */; }; - 34767DDC279BB0BB7FFC65B7F4F2DE7B /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E238573CCE3E841887E4B6587058CDCD /* checked.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 348C6A5DD596CFD08EE4D5C6C0F7D3AB /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713733E24D998C8DCD3494C7280E241E /* TZPhotoPreviewController.m */; }; - 34B987692D142433A6EB31F2DEC8E0CB /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 760AB1E3EF12F00104FFAB0D814EFC01 /* duration.upbdefs.h */; }; - 34B9F26D1D95EE7A9F337CE4FD9CEDFA /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4FB0146BD56619D704B4F7979C3E4E7A /* authority.upbdefs.h */; }; - 34BB76D1DE4B8CFC440EE9B1D37E6165 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE264681665B427608BA6D3B5D79431 /* validate_service_config.h */; }; - 34D61AEE7CA9CF419CC55AA643D1AA55 /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6AB930FCC836F884773D9B18110803 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 34D67B0887D244DA8DF6F9E1B9D2B91A /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 2BC8FE01BEF4277D5A3C7B65B70A1768 /* trace.h */; }; - 34DB8E23F5D28FA1C00DB80B8CA2B75E /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F6864D29D015A79E4D22591907C54E93 /* metadata_batch.h */; }; - 34E3EF2285CE3AEC3DFE2D6B5260EB2D /* circuit_breaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DB95911FB10F4D96EEEF7663EC7A394E /* circuit_breaker.upb_minitable.h */; }; - 34F919043F1B70C653833D0065C760C0 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 406348FB675B6A7087B3E0556D1751F7 /* client_authority_filter.h */; }; - 34FAA43EB465D02B3502ABB02ACEC8D1 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = E15F03B4EC78BA15BD2526D25D8E2AFA /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3508063C504C19FF66AB41FE4CBE8A1B /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74453525B29772D6691604D8D5F9817A /* win_socket.h */; }; - 35088771E4BECAFCF9A4AA4F64A23B41 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 98164156886D60F2B56C012B3FD5C31C /* base.upb_minitable.h */; }; - 350EC299D10EBD84AA4EC054172EAF1E /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA635543B2B1CC1845CBBF6399330F4 /* slice.h */; }; - 3512F3BCEBDB20AEC8F4ABA1B6897AB7 /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3238D7277EE5A3144781EB139AE850 /* rsaz_exp.h */; }; - 3515F04CFA4CFC1B49B641AE021172B7 /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 821E26753FFB4CC5BABD7C9DDA170905 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3518289FC0BF30DE1A7BEC12161E4C4D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4858467CEDBE2B1316B0CAAFB5A3A04A /* internal.h */; }; - 351C75B8A34238D839C473819BC727ED /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7204E0905990748D9F67710E2FF835 /* FBLPromise+Wrap.m */; }; - 352754E06604B4CD2452FBF39138FD03 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FC089BE5909835E906AE70D8930151B3 /* atomic_utils.h */; }; - 352E739882B54217B0C8E4C6C6FEE4C6 /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A3E771518CF728A4E77F87206B70CB /* channel_interface.h */; }; - 353316157A30A58D919E5A0CF86F2D7A /* ssl3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5F70CF4378670EE116F2C798E5C11E02 /* ssl3.h */; }; - 3536C5368A258BF1EE622D7DB14490A9 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8E65093A641FA101D246F602CBC224D0 /* parsed_metadata.h */; }; - 35381F9AB41D1BFD3379CDDE77F0F3D7 /* sync_posix.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C474B9386670F91EE9D7CA2C907B7C57 /* sync_posix.h */; }; - 353A1B7E55F120967D128640AC01DD63 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = D001FC5FC54190835D47F85A15807E1D /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 354E4789FE2C38CE6B872E0A565156CF /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7577E6082576E39219D2A5CA43E871 /* sockaddr_windows.h */; }; - 3552A6CF2CC445EE7DC0295567E5099D /* call_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = ADF82B364DFA6C74FA42B2B500AFC65E /* call_trace.h */; }; - 3561EBF7521156BB9F3E256CBA8D8750 /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */ = {isa = PBXBuildFile; fileRef = EC97D5AC6F63F3E9327E8739AAB8D1BC /* pick_first.h */; }; - 3569856E97D770D596584BEFCF2D298B /* des.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BD5DA2BF4CD439B73B7B82CD6B4D6D37 /* des.h */; }; - 356EBC3079525286C2ECAB9A71BC4664 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F85AED924534D15520C25F1EF51D402 /* resource_name.upbdefs.h */; }; - 356FFB483D7445C24437D1FC99CBE659 /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = DB450E5A167A88D7CF5B38632315A2E4 /* json_object_loader.h */; }; - 3576D26CF6B1FA6A5573C8439C2BCD36 /* p256_64_msvc.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 0133C914A92F7F71AD03098BFB501D40 /* p256_64_msvc.h */; }; - 358C343C266E8EC50F8B1574F150BC21 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E526BD931B4B1B89E12CA440F98673 /* secret.upb.h */; }; - 358D81CAB922ED5654ED2D951BE27CAB /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0F1199AD733CEABABF72E12EC87A95 /* trace.upb.h */; }; - 3591E02CFAA01CE401D5DB8AD64D4FF2 /* LLCycleScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 922D48D26DA0DC44799D7595B5364078 /* LLCycleScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 35B3AD193CD7A65823B135DE00B986F0 /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAC3240B4940D9192E7457A02564EF38 /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 35B597B32D8C54E6D422729B3C1FCCD1 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 49C0709331C653B6BA0FCE3DF39ABBEA /* duration.upbdefs.h */; }; - 35CBBF5F926985EEF7847BB7B3BFBEE9 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 23290E311FC66A357367C44883F62C3B /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DBABDD108EAE0B1E1AB90556AD106D /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 07835A921FFE99D04E58046C46F9A8B4 /* security.upbdefs.h */; }; - 35DBE712C5B065402F994268C14D6325 /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 386D30109FA2324EB056598B8DE7BE64 /* opentelemetry.upb.h */; }; - 35DCDACE9F4D72EA3DFBD3A44851D310 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4F62ACE71082FF74FE7C369D7388D790 /* bitset.h */; }; - 35F93E9C6AB620C5CD161F7EC16FFA52 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = F955802C27ED91054B5B5FD92E6846C5 /* hrss.h */; }; - 35F9F3377280894BE28CA504E7EAAA03 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 72DA6ABEC05B309F2FC06C1515064260 /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 360F88DF4A8C4AB6934A159C4FCE85D5 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F3514F18616F1F286E6FDA1EA810BAF1 /* deadline_filter.h */; }; - 3617CB95069862B7DAE912A41CBC7053 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 444B335966749FB38726138EBA40D15D /* file_def.h */; }; - 3621579629EAF83E56EA7420981F09A5 /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BD643AF3B199FA18A14BDD4996383F72 /* resource.upb_minitable.h */; }; - 3621C22C1F79BBE32864DEACA83C0E6F /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 70EE2BE7DA42018B6F3564D3D1A98126 /* matchers.h */; }; - 36256FBB8871BCF3D54098D96EB263A0 /* endpoint.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CFAA31B8D8F3F7CFDDCF88ABD6FE34E9 /* endpoint.upb_minitable.h */; }; - 3625FC71446718720C958498E96787C6 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FE4024DFE5EAB3A90F9976C4BF3F4A /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3626B85B16F3524AB59CD2C1065F75A6 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 629901019E458BCAB5B79BC7E8A84525 /* FIRSendVerificationCodeResponse.m */; }; - 362CDF8655742105A5ABB42A559A770E /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1734B428DA8697D9A6C357B6164640 /* sockaddr.h */; }; - 362FC23115AFDA24135C2E52E4766EC0 /* ping_abuse_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2D41C24C06D1A11B72E1E0821C2FD48 /* ping_abuse_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 363A4031FF62A61C3E54DF1ACF77187D /* call_size_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 576A7D10356546E725923C67071AE0D6 /* call_size_estimator.h */; }; - 363C9FF9BAE2E4D10828BC01ED4FB30E /* SessionStartEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42496CD02F67640B1C66ECB00B5EB3D2 /* SessionStartEvent.swift */; }; - 363CF90A62788BA1C81815685BFCF1C6 /* metrics_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3015CCA3E486912FD0066220E4064D9D /* metrics_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 363F4BA77466F526CA72DCF96621DCE1 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 657E9BC62DBEC8239793BFE7B8C1494A /* oneof_def.h */; }; - 364C7D4516E2E5F88EA49C4D008D7B6C /* usage_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29477639FFAF4893AF46978826A8EC06 /* usage_config.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 364D6C98AE610F2C8CC68AB8B50DAA01 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 9011234425A9297A0FEA0D27792EC7F3 /* resource_quota.h */; }; - 3653460992972273387C4C7ECD4944D3 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 95FAAE3F0AD6860F0787B1E5EC83F185 /* orphanable.h */; }; - 365396765D7DCF6F86E22FEBF3CBF8BA /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A58FB6C09960C4D935CCEF0B9E1B2A3 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 365A50F6D4B9BD89659AFE990E42C7E0 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = EC7954EBDC0B400A492C5C533FFF7A18 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 365EDE644CE7EA447F1D9FE91E4784AE /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AB4D6FB2B61A604701FFED774CC24E /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3660B4F629053ABC3C1DF69366770289 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61F9C2EA78975EA9AC830198190F8766 /* ConstraintConfig.swift */; }; - 367AE1D880000506CBB305448E2C2A96 /* http_tracer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE57F722B50DC848DA9C5227F5630DF /* http_tracer.upb_minitable.h */; }; - 367D846C48B2B187E9ACA92A07774D7C /* Device.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79A77DDCFCACADBCDC6D0B7F242C5D95 /* Device.generated.swift */; }; - 367EE327769CB1AEEDDD8BAFF5A7AA3D /* xds_http_stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 00738290675AD91642CF06283DBB273B /* xds_http_stateful_session_filter.h */; }; - 367FA3C9DEE8048351C8B6CC77677623 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = D9E4CA51EC76CC71DCC14DE9CC3974DF /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3680D82B97DAFDCE4C9ED8382BC44350 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 017EF685DFAB85DE4F8134A70C1D1489 /* aead.h */; }; - 368257519BC59A5AFA5C7B00CC94FD45 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EDB2B5408726AEEBAE0A77A2048A56D /* udp_listener_config.upb_minitable.h */; }; - 36882849E3841443F96FA932810829AC /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B3D7D42BF26F1735C773557890D19E1 /* route.upb.h */; }; - 36895E9D79A082380FF7E300B87C9A4A /* cert.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B488456A8B81B35D2F6A39FAD1DFB4 /* cert.upb_minitable.h */; }; - 369195CEAA3C90811017E6E036C46E00 /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6413EC9272F72409AF37654B70F8A598 /* ping_rate_policy.h */; }; - 36929D7AE258738DA4A08D6A77885078 /* value.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = AE5CE8535F193916A602F693915F5982 /* value.h */; }; - 369C3261B2F7AF97F2552AD7C5366826 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C836880CF27D45A8507DB4670CEC6D /* json_object_loader.h */; }; - 369CD3A3307B90445A9AC8C4A599B49E /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F3CDD8294396447F0DD8804D68E14E /* metadata_batch.h */; }; - 369CE63B8154C3BEA399DE6B7F0D2D4B /* cel.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BCE53010DA0877FC42A08CC3A5B31FB /* cel.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36A4CB13AA42F119B02D114911032484 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BE2686EF1613AB44AED448B2D97FAE /* infback.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36A5D9C0FACCAE0672C9B0ABF82480BB /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B73C93D2279D380D3DA65191463A6F /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36AB702562E3120271C4C189C5B6F56B /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 525D7E3D3D4DB52EE7E26852A33EB3D1 /* channel_stack_type.h */; }; - 36E37C5A117280FBAC17728371C67957 /* call_tracer.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBCC66DAE7C7C28C0E7B935D23B6D378 /* call_tracer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36E4BCD37CC6F935B2A59A01C7EC9C20 /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C0DAE092F849F06F45E365405C46DAB /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36F4C18FCEA169CA40A65760541B6B9A /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = BD34B8DC4ADE83CDEB44CFBA4850AD6F /* sync.h */; }; - 3707F1D0029DAE580D7CDACE085C70EC /* legacy_inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EAA66CBE5438D725BA35266F95D8EF /* legacy_inproc_transport.h */; }; - 37103C57A8D90A566F3C855AF74901F4 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B663B438D0C53ED4C507479F080BAFA /* ring_hash.h */; }; - 371A52EC7220814CFDAABF8608A92334 /* tap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B9578314C15564A01FD21A8BAAA346 /* tap.upb_minitable.h */; }; - 371F92DDD433FA34DE476F6B6CAE7EF3 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 974562F00B49FB233A38EFB5DE835BC4 /* alts_frame_protector.h */; }; - 3728E3EBB6130612F941D24FAF9CE2EC /* FIRTOTPMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05803BF9362D41A26D5B1BA2A6B520B0 /* FIRTOTPMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 372914FE7C46C453F985D985B2F88B4E /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = A96CB6983BCE6F00AFF6EA9D7833A05D /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 372EE19F6414ABB1E222969857F1F6F8 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DD8C7415CE5E467B12AE81DB4CCAA2D /* CoreTelephony.framework */; }; - 3732FFCB7ECB711B8F85307478299025 /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49049DFD3C7B63E7C58E8AB879FD4E0C /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 373703B3A22E9211E778E4566044A1C5 /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C95A2DDB39D010A65B8C19BC910BC74C /* skywalking.upb_minitable.h */; }; - 3738B9983D732A63FE86121A82E9138C /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B35CC8ED7EFC19F4222AAD9512F1D89 /* fork.h */; }; - 3742BE70F80DB69B34E3D14F348570C2 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 76462DD8EDEBA68931E1F6985CA5FFEE /* memory_allocator_impl.h */; }; - 374B5F140C273F80B235E2CC71878E38 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = E33A753E47FB73482C025898990CACC5 /* array.h */; }; - 3758F0C94758F2D62328A1A86A749B5F /* types.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = E36DCC9E2104C542390C3CD6CE48E5FF /* types.h */; }; - 375BB5B785EA03371BBE873D9F321F88 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9826265A4F6F1DF7747365C2CF3F612A /* range.upbdefs.h */; }; - 37784FC9C99AC703F6F9DF9C58E2CAF4 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C54E85A3BEC10700C9D517C5505F3F /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3788E7F9B4152B1C81C2B5D5DF33E1E3 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = CB6C825BB1326BDEEAACCEBDF2599EDF /* resolved_address_internal.h */; }; - 378D949AB5DA16D25E98C62825D65E85 /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BD5DAC38E85AA3701E93FFDA9EDFF12 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3794F0D87FB28D024F4437A8C052CCDE /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F800EB3ED9BC3CCE6B95FFAAC90067ED /* unique_type_name.h */; }; - 379C22C8E31981EA485FCE0D0114A6E9 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA20938B4C213BD14C852ECA3F187B5 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37A4CBE3EEF9BFD0AFD01E841510AB57 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C568CEAEA758D82FA8B2BD71011E8E14 /* cookie.upb.h */; }; - 37A59DE4E245F810E671AC4F4351908B /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 279C8FF40365FCEFC9B80F6D5D15EC6B /* seed_gen_exception.h */; }; - 37A749E1E30FB27AD3ACE55E0CD7A670 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C64AB1511BAA1C03B21F86C06CA0C925 /* PrivacyInfo.xcprivacy */; }; - 37AB67E731AF93BAB9609AE1C79FE9B3 /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8401E857A60AF4A335B22A157EC48CA4 /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37ABADA0BF3CD0CF59384CEEBBEA2826 /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAA440226BAC7DD9C68DC9A8F4A827CA /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 37AD4071E17DEBBA98141C29CE6E7E91 /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 328AAD5AC5A2AC6097932D27CE82EA20 /* trace.upbdefs.h */; }; - 37B41A47B1CDA110895CA2B150B8BA61 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CAE774C59DD71AE8E9FD62A5C2A05726 /* dynamic_ot.upbdefs.h */; }; - 37C0EB3F3085BA53D19FCAC4D2B1203E /* vsock.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9BE8E16D3E7E028B77AF7A0CEC238F6 /* vsock.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 37D7DE3C8382F45D491D73EEEA2C76EE /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD807151E44B72B3E51D456197AB0FF1 /* lightstep.upb.h */; }; - 37D916832A3B65A00950DA8834534B50 /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = CF5ED980F8CADD8CA7788403169B0861 /* stacktrace_config.h */; }; - 37DC04B1304359BC7DCA34E9A82A9F77 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D0CCA4108F253C616C787A9B4036374 /* route_components.upbdefs.h */; }; - 37DFC1912D9217C977E7C2FA6FE24060 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E84A4DF28B1E51CEDC413EE2866ABF2 /* xds_api.h */; }; - 37E51629F94B9C7EA46C2758B9655D42 /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8F326B243DF2EA18A2A181B950EE829 /* event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 37EF2BC4C742EC065DE9810C827EED41 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2120944D48FFFE005EE3978F14F8E591 /* ring_hash.upb.h */; }; - 37F1D55E483CE83244BDEC216946A5DA /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F727E7D96BEE81828697D7EF1E5E2ED /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 380206F250CF0186998A83E5E2ABF909 /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A99E80DED3AC3D1D646903CFD4F8EA2 /* trace_config.upbdefs.h */; }; - 380D7AF94A77A024B28B5C99850EBB13 /* token_bucket.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 822E9B494745631909CEEBC2CB1C4107 /* token_bucket.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 381134228E53DF4EE35D7A2B06B8CCC2 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 800B010B0BE61A517F1465FEAADB9CF8 /* tcp_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 381E630AD64EEA81CA7FE837888CC89D /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 23833A4BF9BF6742757DD734773129DE /* ecdsa.h */; }; - 38349FA8222EAF2C8C5C0BDFB648E7F0 /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 86ADA4DBDBC1905DBFFB39528BD30190 /* utils.h */; }; + 2DC9EBD9F32ED76AB43E16F3C5188D70 /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 79557DE2808E93259F13C28FDFB88E0B /* obj_dat.h */; }; + 2DD68806F75A9959D35E258A3640B247 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 51DC9C58B7EE5E8055B9DED375592C3B /* poll.h */; }; + 2DE1B28685E583F5B177F0240B4704DB /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F002FBE3E4EE73F7023F25BD03C3BDF1 /* cert.upbdefs.h */; }; + 2DE559A96A99DB759C148B86BEC819AA /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 672178A044A61662869DD710AC77AA3F /* validate.upbdefs.h */; }; + 2DE9F5973E6B7EC03D7F6A27A1503235 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DB9397D484677F59798C700222EB52D9 /* timestamp.upb.h */; }; + 2DF3027CA2D682E9379A91680A5E20CB /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 6502A92FD63A4466D7A8460424CCFBA5 /* FIRInstallationsErrorUtil.m */; }; + 2E1749BDD6716B3645B6F79903A60CDF /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B67A89B9951B300C1D2101C6EE5A5AC /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E34326EF434E7FD3509BA0460C39DC3 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3157A3A378F000EAC6165E92B2AE9359 /* metrics.upb.h */; }; + 2E4154A23022B100A48F888C7A359205 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = E10242ACC5900D68F532BF15ACCEED11 /* encode.h */; }; + 2E477BFA2A3FF17D3782217864C5713A /* crc_cord_state.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2C7D778A315C7A80CBD4A10D28ADEEDB /* crc_cord_state.h */; }; + 2E482D2FB0F4EE1DF9C77F8388F643DD /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C10F4CDDB413D39ADF8735627DBA040 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4D57302A4D0232A07BBF7D3ABB99B7 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 2D565150ADB81184135811542EB3B9CB /* enum.h */; }; + 2E4F53BDB5223DEC82090451C884CDCF /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 5893991E37307B26AF05049149BFADF1 /* hkdf.h */; }; + 2E51BEF767434E40C1387621A8F58F7B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 2E5DAB8B858A3AF6511CC5AF33510F1A /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B1CAC77F4BECE8CAF50BD4CCE91250B /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 2E69AFEF5231B483915743A9DA13F7C0 /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E8421D0BF7F26B9830B73ED34DA3FE5B /* stdout_logger.h */; }; + 2E7321581005F0AAF767213937D29680 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D17D84DB9BCEFCF79D67A795D262010 /* NSButton+Kingfisher.swift */; }; + 2E78D23AF3B7591B9E2F24755EC8E274 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 883BE0D7EF525B1BCB72733D765B17B1 /* cfstream_handle.h */; }; + 2E88EBE7798BAE795D25112B292E094A /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3AE61B5E040A7E8BA7F76DCCD21ECD4B /* cookie.upb.h */; }; + 2E8942B294DBD8B077EEAC7F328DABDA /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = FC828EBC058334FEC7EA82859235FE0D /* orphanable.h */; }; + 2E8AC703626B4ECBEDD02FE6950DCD95 /* cert.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A9182F7EC9E1A62E66B7BF03FEBEAAF7 /* cert.upb_minitable.h */; }; + 2E97C81F3FB0E44CD0CEC74D46390403 /* FBSDKAccessTokenCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECD6C7F7BA47CE2A70E5DAB5DE62B5 /* FBSDKAccessTokenCaching.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2E9B7C67E67B023568CCEA4407F41647 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0C7DF062789407CA949CE6E368A1D1 /* buf.h */; }; + 2EAE277F8AC3715401D97664E58C1C3A /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4FFA3C62BAF6B7AEC283BA73E15B9C /* cookie.upb_minitable.h */; }; + 2EAF67FF8A6A81687A2A9498D9605257 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F32CE6923BE66E09587A971E7CB5F468 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2EB23FB429C269D3CDCEA50B8570B568 /* auth_context.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = E776DF48869A6C5BCA25F9A796F2CF22 /* auth_context.h */; }; + 2EB95C402DE59D7A1574573D7DDDB4BC /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = DE711311B08945961A0E127370419FB7 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2EC9F86285BCA997E31B03B7A99A08ED /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5B78B979FA81E9FBA05BE7E88499B4 /* outlier_detection.h */; }; + 2ED77D634A082488767B2532378E969A /* Promise+Always.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0500046B7A27D1B44C32989A4C0037A2 /* Promise+Always.swift */; }; + 2EE36F21AB07F976CCB8EF0DA7A65FB7 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DFE6BDF9A7B37A86BABF2DFD7148DC4A /* resolved_address.h */; }; + 2EF4FF85318DDC457F670C6690868AE4 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 6907D0E81ABFD302CBD45E548610D242 /* FIRAuthTokenResult.m */; }; + 2EF6093A420D4A89CB31DD2A7901F1E8 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D63DE9855032D6C2ADFB43B232F698 /* endpoint_config.h */; }; + 2EFD486F1FA0C7EE3D47092A428DEBD0 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 373DF2458DE3BF317317E3C5CF63513A /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 2F0B00640C12B6E5279BE9403CE05BA9 /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 235377E76B4457683AFA38A389E6F749 /* lb_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2F0F96A78EE81DEDEB6BA5F731343C41 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FEA7FF178B8A88A11095A696441C2D /* overload.upbdefs.h */; }; + 2F16198DD771A4DFE858814D928E30E1 /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F3CE6F0DA1C6619373300B20115BF9 /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F16D16400F3F7302F0D4392137C75BD /* FIRSnapshotListenOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = CF94DA4A5C394A41A8CE80F4F78B45F3 /* FIRSnapshotListenOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F1E0451E11D1C6488F543D7379DC3C3 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D23F86E0F10A138211B2005FFAAB4B7 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F22B4D7BC8B732CEE6CC3DFF52B9FCB /* status.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = E93BC63A9E9C3AE740308AC2FF2A6CD0 /* status.h */; }; + 2F29B65DAEB856B84D28081DAC849563 /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 558C340C0CCBF82A1B11E949EB579FBC /* empty.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2F2C7143DDD75B390044296059B21A2D /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = FB13C91824795BE057F33662EDE8C56A /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2F2DAD410B09F2115019F0278882C251 /* client_stats_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 389182502744935374B7E508D6B63BE7 /* client_stats_interceptor.h */; }; + 2F301E49D8543300596607300FE703A0 /* ssl_transport_security_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E505A8D53EFE792BD0DF1FF87B1753DB /* ssl_transport_security_utils.h */; }; + 2F3ED2D8884EFCE8E3479239DCF9B17C /* fast_type_id.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C30552A34197B5AB208AC1E6E2777D47 /* fast_type_id.h */; }; + 2F43B90C205CF8A9856B10445BF2AB3C /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 324780AE1726A5F92DB20061E237CF62 /* http.upb.h */; }; + 2F4CBB98B646A097E6DFD4DD2C47D110 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 77CD3B43F0F9D4344A2CB5FDED5C154C /* ref_counted.h */; }; + 2F4F477650CA1F08197098F3BAA939F4 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBCEDE61A7D1F36DDDD91EFEDE0A45C /* httpbody.upbdefs.h */; }; + 2F5A3F478BABA826D78D8E6BB5943967 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 500373D32C105A54483ACA56A30C93BA /* ev_posix.h */; }; + 2F6B0D764DA3D5E23979F1F6752BB4DD /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = EE707B7EE321E5109F395633282CBD88 /* sample_recorder.h */; }; + 2F7D077F29388DAE155358E07951E5EC /* filter_state.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1898B05547D6373D26BCAD112102CD73 /* filter_state.upb_minitable.h */; }; + 2F7E8E35E08A038F10A65DAD18E8FF1F /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9A0960AED2900C1C2FE5B90F99C945E2 /* trace.h */; }; + 2F83949FC3CA17D5AF40448B20582BDA /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = D644010FE420609F31B5405C47328D13 /* stacktrace_powerpc-inl.inc */; }; + 2F93560B31E15C26BA3A9370EC3673C7 /* xds_enabled_server.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9A33E402A8DFB7DD2EF691B918ADA94E /* xds_enabled_server.h */; }; + 2F967A79F5BA046AB3F4367870746598 /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F2181F62F9FF574B6A0A4F1122C798F /* service.upbdefs.h */; }; + 2F99A761655F5C0E22E442DBE150ABC2 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = C034F04ABD8E20A06C2C5F3415D99F7C /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 2F9D97CE153716F89C8695B9CD782315 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E776AB437A9A2B02F56C9D839F23A798 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FA051895FC87180A228313E775AAAA0 /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4111E1E2FBCD43CBBA2ACC5B4953E68F /* FirebaseFirestore-dummy.m */; }; + 2FA84F40C4A2722268A32F6F73680540 /* TZAuthLimitedFooterTipView.m in Sources */ = {isa = PBXBuildFile; fileRef = E32250DD36BCB271621EBD0E54625A8C /* TZAuthLimitedFooterTipView.m */; }; + 2FAEFFD6D0DA7322E8C956A211692F64 /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = BD5A25CD20AA55DFEA01DC46E1EDB323 /* wire_writer.h */; }; + 2FB27055C0C12906928B1F264540921E /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E93441E4D05780CAF8B0BE189FA7954 /* FIRResetPasswordResponse.m */; }; + 2FB3230235024CC27BABCF3C4FDC3568 /* server_builder_plugin.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 56D1B9696F1DAFBEB3D98CC490B48673 /* server_builder_plugin.h */; }; + 2FB6CECDC66F6A2F0DC1B357C046E68E /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = D6E767A0ADB9E541373191C5939D69AB /* closure.h */; }; + 2FB8F23421CD87D878F52066E64A3C59 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10E8A2D604EDB05298F1213F66AD5FB9 /* ads.upb_minitable.h */; }; + 2FCD892F9005326FA2479F99F3815081 /* def_type.c in Sources */ = {isa = PBXBuildFile; fileRef = 949CB3228805EB27247F75FAA4EBB469 /* def_type.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 2FD8025FE624FE3A7E166A1F983215FA /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = DA07159965FA9EA0E3F9FF1C77E4D36E /* FBLPromise+Retry.m */; }; + 2FDE8877A0B4BB3B1C567C15D76A2E89 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DEECE2DC078FC22D7E4F331669AD113 /* GDTCOREvent.m */; }; + 2FDFF4497797921B53915908DAF5132B /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2DC33BCC453265C8F25AED441418D737 /* matcher.upb_minitable.h */; }; + 2FEBDFA2B8BE4BE8EFDC103CD817AF0E /* orca.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EABFBC9CC0613CBBE7BE764DFAA815A /* orca.upb_minitable.h */; }; + 30057C41D7937FDEA8DF72DF492F2EC5 /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C998A73F1F3811975FB98779E37D4603 /* grpc_ares_ev_driver_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3006E3DEA7A5D0DC8402E4B965399888 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 611BBD02BEAAD597EF7F34199F28A9BE /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3011D93F145FDCD29B3D6EE43DF1347A /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD392C19A972115659F61BBFD2B712B /* poller.h */; }; + 302231866E73106CB05CC9919F25729D /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = E29DDAA054622D6073DD7B8ADA7D19A4 /* uri_parser.h */; }; + 30255EEB06A58D09A99F937EA6728DFD /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 082019FAB27788E9C338BAD586E5376A /* parsed_metadata.h */; }; + 30290372C730B0D2C437AFBCC35A5677 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 77DC4CFDF96F15D343F690C68973F793 /* arena.hpp */; }; + 302CE147EF17BB5AA7440D45E9E7272F /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 16CC648A1226D874A1C167AA186E7087 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 302D4BA8EB6A1601BEDB815A34706CBB /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 0046B41FFE88114B720B3B22DA4CF018 /* tmpfile.h */; }; + 303002996D0386FA52575A29D0185FC7 /* FBSDKModelUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5414A8BF7832E136CECEA07B175A1160 /* FBSDKModelUtility.m */; }; + 303BB17AEEA22AC19110E97B8B9C96DA /* service_config_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B687D7681A5F16DAFA3F4CD87619C65 /* service_config_helper.h */; }; + 303C143599341BE5D3BCAF25D5EE90B1 /* FirebaseAppCheckInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0320469249B1965E9E9F66AA4C004273 /* FirebaseAppCheckInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 30586D0218C2F0B8F07A5A4846418D86 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 504BED23A97D35659ACA2A9957C15030 /* cfstream_endpoint.h */; }; + 305BE0A9A80D7EE0B4C177F6322BB98B /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 449FE1ABCECBD5E5FAD246CE75E060A7 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 305D6E1E3A544D4122EAA1D8FAFE73EA /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1FF785AD622F0A3DF65D916157DDDAC7 /* upb_utils.h */; }; + 305F5D66857FDCA885338EE762ABC273 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = F40666CCACDA0E36BB62018752C0B964 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 306670CE55DB4644BE30962502F8CCC1 /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = C88DEDA04B03624DD635AEAF37209E30 /* fake_resolver.h */; }; + 3071C782AE63D29C64586316B146633E /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = C0429B1E86F7322CF73ECE977F4251EE /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 307262396B6771BFB6A5D8E259E86D38 /* mutex_stats.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 445A0D1E50C1903C8F08FB08B378D6C4 /* mutex_stats.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 307A27B733F452CC392F6809DC63FA2A /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 704CAE6EC4FFBD86E3564590CE48F5DF /* http.upb_minitable.h */; }; + 307F09AF749D5EF313F64D9F722E4B11 /* obj_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A68DEE40B53C8BF08B94E4D84D756A8D /* obj_mac.h */; }; + 30861A48035A287D964976D52BAD2F81 /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 42E23200D3FA272EC1A8497FB0352394 /* init_internally.h */; }; + 309278FCFD70372712F7DC95E0288A7A /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 6751189DE78F3450644220E50A234BCB /* promise_like.h */; }; + 30945733782FEDF9F8CA854785773A44 /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 206F283281F979D4C9857BC2255DE56D /* ring_hash.upb.h */; }; + 309F43BF1755348DE762FD8211DA1977 /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = ABFA95D5A9FA6D08CEC342F1573409F8 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30B04B3AA4BCB314AB5B4B6660518DBC /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0441646E8D0642BE5A01B59FC499B739 /* versioning.upbdefs.h */; }; + 30B35E54C6FFA234B1E9FE633B07113B /* circuit_breaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D35EBAAFD689028C738A1791980CC6 /* circuit_breaker.upb_minitable.h */; }; + 30BE01C9DF3478CC1343E79AC3C28D73 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FAF8FED3CAC24AFFE4E0B8B5B287D885 /* nameser.h */; }; + 30BED102A5C545104AF28F0A362ABD7C /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B19DEC87C65D84B485E0D3F2CA8C0D23 /* xds_bootstrap_grpc.h */; }; + 30C69B95DF4A999BD4C5EEAC47B58423 /* listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B9090A791BA73C8B31D57BDA8D92256C /* listener.upb_minitable.h */; }; + 30C6E3F922D1CE7B9C6227152CD979BD /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 50215C4C8CD371F7C8D658A5F74BA300 /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C716AF82A25B7E3AEBD51F2C3471CB /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F4815ACCC3E583361C1BAED97D3246 /* regex.upb.h */; }; + 30CD62BD928C5A0AC68060D3F1C6526E /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DACEB13AF35389BC6CEA06E9FA0E2942 /* percent.upbdefs.h */; }; + 30E0F25C15BA11828EF487B06129F3F0 /* service_config_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94A1592F7D06A7593C29DCA2BA18B775 /* service_config_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 30E332237A3EDA068429D7745CCD982B /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 26FB4DC14BD60FFF27F46CFA4536DA97 /* slice_refcount.h */; }; + 30E7CB90263C45E796B2C1B1324550B2 /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DE2CF6AFB1BFEF3D8FCF0DB30F1E3C1 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 30EEB91D3D044C4C4886D3088209D2A5 /* direct_mmap.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F54AC6AF3E0B6B56F2ECDD6A23CC4666 /* direct_mmap.h */; }; + 30F14FEC4C9EDABB80FFEE1B8C2E627A /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 931F859713CFEC938AC3CBFB463DCCA0 /* checked.upb.h */; }; + 30FCAFFBC7B450045368A72D6DEDA6A4 /* handshaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB7D3B6D21DE64C2F9F8607BAA5C14D /* handshaker.upb_minitable.h */; }; + 31064FC1F08E3288F305B802E70C5EDE /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF4FAB214E4AB4E595DE7910F61DA6D /* path.upb.h */; }; + 310BFA851E30688F73E4DA7B0A36E6F4 /* any.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF28AD96A549E01E602FC42429D25BF /* any.upb_minitable.h */; }; + 310CE2389C35B64722DC50E83E901757 /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 275217AB5148412A8F3F75BC6D8A1F10 /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 310D2AB1CB388A84E0262190274C8EDA /* Time.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3F8DD3C56B52416E932EFEA6F6E251 /* Time.swift */; }; + 3113F19B3E32DB46B157D624A34A45D3 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DC7388AF037A243DF6D8A181A80EC4 /* jni_utils.h */; }; + 31168E894AC25D1DA9A14A9F3F0FF782 /* evp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 14E78D0AC1F5AC1D382B64AB314D9CC8 /* evp.h */; }; + 311A041A733BB9339263FAA4008F84C8 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DC4C215147F2A604E06489DDDE845503 /* FIRCLSDataCollectionArbiter.m */; }; + 3120AC905C8E51BE78C662B9BE898A45 /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = B512DCE065414B45169DAEF6743A3CF0 /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3124BE2B970D655D9EB44E19BA4564B8 /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8051AFBCB4E542311E9576389518EB2E /* hash_policy.upbdefs.h */; }; + 31304394C6E2DFDDD89C15023017281C /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DB89100600F1F85ACC29FFCF69EF675 /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 313C7011FA0986A4EBDF85CE1EF2B317 /* sem_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FA3B175AA29D012C76A20A49DB6D38F /* sem_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 314181F6D9D971898BB14B89DED30273 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10730966B090146D7F323EE0072A5619 /* custom_tag.upb_minitable.h */; }; + 314342345821662AAC78505737098765 /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2A6FA25AFC6989A144FE8BB8B40670 /* blake2.h */; }; + 3145F6D4FBEDF7660297E8A315DBB2C1 /* ascii.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 205E39A569C9F6C3DC1F357C3FC1919B /* ascii.h */; }; + 3149141FA9C39272A32C056EF6CFB03D /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8506793237481CECD3F65763028F9400 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3149A4CF6EB15A9CD05E0CA759B5FB37 /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 43B01CDCCCABFCD19655EE996C004F95 /* xds_listener.h */; }; + 314A8E2D0597FA52DA48F773219CBA05 /* FBSDKDeviceViewControllerBase+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A8956A652AB39D50EE983FDCA3E169 /* FBSDKDeviceViewControllerBase+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 315EAA3369BCEE279A0A536248A3ACB8 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 673F66BE163240E0CE8356A42657B3C5 /* common.upb_minitable.h */; }; + 3161307B4600A27EFA45C1F21BEC26BE /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C925BCBA81C52E4EBE3E55AA7E45150 /* FIRVerifyAssertionRequest.m */; }; + 31621BFC1F2A3E738413E339C4D9CBB0 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E776CA55E6431CB4C85EC82BD5FB6E /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31635C61A6FF1212D0B1CABAEA78FBFA /* def_type.h in Headers */ = {isa = PBXBuildFile; fileRef = F1973C8685CF61D20E6AC3A37FC14447 /* def_type.h */; }; + 316C015B44DC6FDDCEC4B89282440DF8 /* ExplicitNull.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DC91953CFF5EF58D7F5016A05B1D058 /* ExplicitNull.swift */; }; + 317297BC48FBB8E9597DEE03312F85AF /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D99A6C95B2B8F522054E716D8DF24CA /* transport_op_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 31773A7BC412BC6A5C26476EB8866A0D /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FC41FCE9B55B88B9DE0B11BDADACE6AB /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3177E3D5C74ED8FA5C83447D35315BFC /* node.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 665B0409A3F57783061FBBC03E3452B7 /* node.upb_minitable.h */; }; + 3184005CD8A45D9F2D72E283FB46E3F6 /* clusters.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F81AC8D1A039840A26132A716AA5038A /* clusters.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3193100BAD0502502622388813301939 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5A57E04E920D068D5329324B5814C7C7 /* endpoint_pair.h */; }; + 319FA0479D01FAEB0C75A09B5871F2FF /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 030297E84877EC3BCB685E4625582A99 /* grpc.h */; }; + 31AC8995EAB47EDAF590929BBBEE0329 /* timestamp.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 91FCA79D074D0C5BC8F541F8F7998FC4 /* timestamp.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 31CD8CD81E1E8BD57618897A5D547299 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D53971E59C9827B377E343B2D278FEA /* load_reporting.h */; }; + 31CE42C15E025EBD10333526FFC44F6B /* endpoint.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 82A0CA80EB96DFB7FFD7B44CE86D9D0E /* endpoint.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 31CEC98396DF85738A88FBA92E36BD8D /* unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6742A15D25027A572A9660DD2BA277 /* unicode.h */; }; + 31D0A3163F3825C18D60BCD82B1BBC96 /* path_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF726A5892D240793F6BDA24F29ABBE /* path_util.h */; }; + 31D7E18FD8E7B34C06FF64AB62670FAC /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C755C35E92A951ED207A6856EAC0C2 /* FIRUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 31DCBA5C2E9EE22AF2F6816FE686F415 /* FBSDKURLOpening.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2034FF7EBB1E469BD7B5B26FE2F3FF /* FBSDKURLOpening.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 31E8A1BB1FB56CE9C1F768319C89C054 /* tap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CAF3B55F6062372BB232C4E796F8B6 /* tap.upb_minitable.h */; }; + 31EFBAB156E84EC6940F290DC5E22EF7 /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C78A35EB73BBC00A3B5F21F3DA3AEAD /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 31FB8C09BD3944884FB84356BE5B15D2 /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = F38602E91BDEEFFFFDA156C244C0CF00 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 320C0D7A88AA812EFB20016BA1F5D7AE /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2968B3D2606A4252FB9F52CB0AB10D55 /* AFError.swift */; }; + 321367B53CED5DDB4DADF688D39E703D /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C0D2EFE35BCA2F634C4F27117C81D8E9 /* http_trace.h */; }; + 3232EE73F15EB96B9DA165A5569FB5CB /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 283C228C6601C0F7264092AF42AAA4BE /* alts_grpc_integrity_only_record_protocol.h */; }; + 324522300CB447773CDA3E420B779454 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54662C6612FA321A53EE49B4955C7240 /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3256D3456FCF12A88279C37F9AF15B5E /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 97797B4F2624B11B32F40C0B2944D0DD /* endpoint_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 325A8EE622FF3AECDA560738674E9DDD /* cpu_arm_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = B3AF27A10AC3A14EDE01BDC617215D80 /* cpu_arm_linux.h */; }; + 3262645271865A15C9E69E87D55E78FD /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9BA1944D7A0B43518EC0B7CE1CD03C7F /* exec_ctx_wakeup_scheduler.h */; }; + 3264856DF3C1FE6E466DD768FBD80EF1 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 89ECE2A1E61C968CF5515F63E4CEB655 /* GULHeartbeatDateStorageUserDefaults.m */; }; + 3268ADB347DC60C07F12E97451CB6886 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A2300D4E52F3DB19972F4A4FF1CBD338 /* url_external_account_credentials.h */; }; + 326B786A81218A22CD977F43BAED06DB /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = 29FC1EE4F0C528DFD60CC6187F3072B4 /* decode_fast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 326DB05C75E43431DCCE55C96F99DB9E /* TZVideoPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 283514F0FD818F620F214A6249936785 /* TZVideoPlayerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32743F129631BA12B046598722F4A335 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 838E3B074ADF8D45DE7832668FAB99DB /* internal.h */; }; + 32755D9AC263E719ECED45A6313C5893 /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65F8EC92EBE698D0685A3517103241D1 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 328E02B3A433D1A5B6810F539C336F56 /* endpoint_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1C5881A90F911277D2912DF2FA0A75 /* endpoint_components.upb_minitable.h */; }; + 32923DBB13E56B154016E686BF78C791 /* params.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C59A721A32FC4942ACE7780DD452A2 /* params.h */; }; + 3293797F99823FBF6D6BFD9FD7E427F5 /* int_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 0022DDA3BC8899CAE7D63D291D29ACD8 /* int_table.h */; }; + 3295F7924971E532C1C71D8BD0706C40 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20DB3B1BBA877184F8BAA1AD8C4343DF /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 329A8A3F575D64A154C87AAEAB803BAE /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CA87FC69D4CB26E9CAC0E31240A59C /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 329BA7D3F381D734FFE49C44EE573667 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = CDFE6E83FA53278155210B941169C98F /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 329F5C5ADBC090B0B58869A0FF3B513F /* cordz_update_tracker.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 58346AF408FED4FB13D306374A150883 /* cordz_update_tracker.h */; }; + 32B068B0BE35392238A4DE19623073F4 /* pool_urbg.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E326D34296E21D7276601A310F814E90 /* pool_urbg.h */; }; + 32B3CEB2AAD9948EB3E8B06E59A7A086 /* FIRTOTPMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AB696449B6ACC4B116CC4B252CD690 /* FIRTOTPMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32BAF728195B4B5751761D5F756636E6 /* fault_injection_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D5FA53A481E9A24C18F63149ACD8E1 /* fault_injection_service_config_parser.h */; }; + 32BD991E67849085DDC6040761AFA4A4 /* usage_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F71C51ACFE53D69EA7829C3D019A242 /* usage_config.h */; }; + 32C25160B2E4F189E92C367EFE8121B4 /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F12467FA5E0348A357F273FF069270 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 32C9E0BC4736B4D4C0712FBB16AA7F99 /* internal.h in Copy crypto/des Private Headers */ = {isa = PBXBuildFile; fileRef = 74258E045FE9A0062ACDC0019024358B /* internal.h */; }; + 32CB49E680EA9E92651C9CAB685E1C02 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D7918E08478D81148F308E5F17DFE8 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32DC3D98CBB83A3EE5E10276026FE604 /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4390F9661FD6C5C61A10718F3D017FE /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 32DFF318AC37920C8BD09C2F5A82DA30 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = E17614BB18BD20783225949CFFC2DEB2 /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 32E33B1CA0A3426D8B5B6FED31CEE548 /* crc32c.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9E494C6DF99E643B057C1F4166455583 /* crc32c.h */; }; + 32E5EC8952D5A614BD936BFF50BDABAF /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = C397224F9225070F9BE854D27B826E46 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 32E88416DA977C2730EA65C7C4D5BBBF /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BB23722F26A469F36C0D2A852FDC9B /* p256_64.h */; }; + 32ECFE1EFEC7FE9E0C3D1CFEB2C813F2 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DB979A2E0026DE32DAC1B2CE468345 /* server_config_selector.h */; }; + 32EE08A5BEDD6DA0BDB87D7F5B0BA9A6 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 348D60671652BAFF17D678F29D7C20C8 /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 32F2C47B37D6DD5C11E87F6687F0F5FC /* wots.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = B9CD933EE59BD639887A59ABF4FCE8F3 /* wots.h */; }; + 32F897D199F3C971E71CE881C7B225E0 /* supports_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = 288736EDAA926B1680188A6454F0C93A /* supports_fd.h */; }; + 32F8B78C608B6B251EB0A6E5C9CBDAC2 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CAE6A6F3E580472B76B60B6521F1393A /* udp_socket_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 32FB776B2B8E4207BBF4DC9BD93B454F /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38D97748C114EE1EAD580528041B0700 /* check_gcp_environment_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 32FF54D62EA90E02A407060C942D1887 /* server_call_tracer_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FDE8281D54FFF00F8B6CD20B4A4FE77A /* server_call_tracer_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 33022E8D8B9942097E49700AC273477F /* def_pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F8F163C8FEA26E7D4A21BFA2C061874 /* def_pool.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3304E0A79B94A78A56B6FF2E99F0ABEF /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3948EAE03DB85DBAD79D229A5380402B /* resource_name.upb.h */; }; + 3309CC906C5AC747EE0F7E75FACB6B2F /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79D363A61F4810854DB31DD22F37FC69 /* trace.upb.h */; }; + 3322C35768F83C5A6CFFEBE9C89B0C14 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = C74D600204969BD8418F8E220FA5F62E /* extension_registry.h */; }; + 33262699D921BEEA324CF9600A35914D /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1208B6BD54DFE33FB3DE02491D887333 /* substitution_format_string.upb_minitable.h */; }; + 332D6C69883559EACAE63E3E5B9821A6 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10EF5DCC84E169CD3E5CD443024AB085 /* address.upb.h */; }; + 332E57A644AE3A5A948C197A0441D11C /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = CF8144CFA778E460CA4ED0E750B7C5DC /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3339BA0DEAAA53B973D64B13821CD0D1 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6FDB47DE229007F4FABCFF1F6B932E79 /* ring_hash.upb_minitable.h */; }; + 333B17A713193CC4DD42D369331C07E8 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 227F52B69264CCB37E594C8E1E6EEF13 /* struct.upbdefs.h */; }; + 333C04040AA87DCB3DF0B5861F2D15F0 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B5E42570E13EF4F4520D7BFEA50142D /* listener_components.upbdefs.h */; }; + 3346FDB92B462FEB8CF38645F04EBCDC /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 35E65CBCCFD1099D5937596B6CCF53F4 /* internal_errqueue.h */; }; + 334A5C8D636527350D1F3E897A0F41C4 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA05C204E9F1EC12667621EC5190C525 /* value.upbdefs.h */; }; + 33521F3CA055FDEC207DD2524CE57354 /* crc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51740CE8DB059C14863C90CD6C5FBCFA /* crc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 33541374C01044116627A72AD98D28A6 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 27653A18DDE5238E8C1A7E7669622ABC /* optional.h */; }; + 33577B926F260B9F77C2431F40BF8424 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9ADD73079F1E466144FB622AC618A9 /* message_def.h */; }; + 335F0E1B09EBAB30FB17CF1537BBD10B /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = A3608605CA5FBFA1263E771DCBCFA8C9 /* field_def.h */; }; + 3367D13591D1DAFCD63A06B27C504DB8 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = 69809B438DC04511118F9B7D35E9EC09 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 33692E1C7BC36132F7424C9154ABFE71 /* GDTCORLogSourceMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7F50F1C6CBDCDD125B734C4CC46426 /* GDTCORLogSourceMetrics.m */; }; + 336AB9573A7A4D65BE7C45C293484374 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3668F71DE277B867F99FF1ADC3A2E3C5 /* security_handshaker.h */; }; + 33704BE1BF3D3EE51B44F764CC1C4E72 /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA210656FF735DF747E77DBA993AA4D8 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 337E2984487FB5DF86994B06DE4C5491 /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63DDF73DAF675A124C2AFC3A219E0924 /* alts_zero_copy_grpc_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 33933DB04F707A1472E1432D5C9EBB5D /* if_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0FFCC30F1E3483D75E191CD8CBDF551F /* if_list.h */; }; + 339A94428AFD915D261D76CE1BC4BDEA /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF1DCAC541B7C00228B80068B73C79B9 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 339BA3267214F2DF14313F386DB53397 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E6B54C1DBF08A33C7FE4200184F56E /* http_connect_handshaker.h */; }; + 33A0C3EADE878CBDEBBBBCA4538E29E7 /* protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8156AB8CEE897031773F626FB60377DD /* protocol.upb_minitable.h */; }; + 33B38B2C957A0366FB556270820A0F43 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 49E7F7C214A9B6C080449612EE3E5697 /* subchannel_pool_interface.h */; }; + 33B4B4718B1B9E753D3AE000EFE8020C /* internal.h in Copy crypto/rsa_extra Private Headers */ = {isa = PBXBuildFile; fileRef = D8234C54E88610B48CA9B1F20857F7EC /* internal.h */; }; + 33B5815CBC7E576F5094779A45E10914 /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = D42BC68F597656EBAB3B5064246A3D84 /* resize_uninitialized.h */; }; + 33B5A1553A0995C1301B82FFC7A6A705 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8AB68E2E9105A16B556B9879BBE844 /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33BC35AA1D94E4158D6C888C841C33DF /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2131F06BECBDDAA96B8A5A3D6671BD33 /* channel_trace.h */; }; + 33BDDAE04792799D3E9084E39CFFB529 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0EF563F5E08A2574EA67351C90C1F6F /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 33D4912D881F45C371AD1D066A9C5E06 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = A9469BE178BDE38AB715AF6BEB7E3C6F /* alts_grpc_record_protocol.h */; }; + 33DF93575988A7C8D5CDB860DF06CBBF /* tap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A5196EE9A7F80B86D7DAAC724BE2F37 /* tap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 340756E50091426AB4BE4E9FC5D9FFE8 /* load_balancer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FF078A3747EF899BD8D7EA46B7A80A62 /* load_balancer.upb_minitable.h */; }; + 34087EDAB197696A2084153C9CE12603 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 624427A4D9203A45AE85C79CA188F9F4 /* fault_injection_filter.h */; }; + 341181FBCAED9F8F39977896658E7B9E /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27DB3747274F7ED6DEF007024176E823 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3411CE7EEE8AD69D35159CD953726B27 /* bits.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D1342F3908357D6B53C451703638E9A5 /* bits.h */; }; + 34263EDFA12F9796352D701A48D3FAE8 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F9525707E11CE7B27B60FF2CCCFAB8A6 /* certificate_provider_store.h */; }; + 342712CDAE073B1CE93CF16946A38973 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0331AEF47CB85BB83186F87C900F1B /* custom_tag.upbdefs.h */; }; + 342EEA4A1F0D018879CD5017754D1AF3 /* FBSDKModelManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE51C065D713D109A054DBC33FC77291 /* FBSDKModelManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 34338FDDFB178AFF0CAFF9D2145E4C19 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 506738232EDB1D4F7E9F1709853F4A9C /* error.h */; }; + 343D15EE00EA41A4A5404D68515232C7 /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 600555E1A9F6A501116ED2273BD9F3D0 /* lrs.upb_minitable.h */; }; + 343E7358127A41D6B429A4A601AE1664 /* string_view.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 827DFD5EA9639BE29190D8221D52813F /* string_view.h */; }; + 34625B468EDDA6F5A3DA1C384BFC6115 /* tls_spiffe_validator_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BFED273CCA70F54B3AE8E24F99D3CB /* tls_spiffe_validator_config.upb_minitable.h */; }; + 346526113BA687DC5524AEE10A3B9FF4 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F05901FE62F5D2CE676EAB4468E829F /* TZVideoPlayerController.m */; }; + 34686D3C01FC427E5454AF999AC2638F /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4FFF2329F4927600B649F3D57BCB8CB7 /* service.upb.h */; }; + 346B4AF9326F53304A009B6FEBAC4250 /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5874326F9C80DDF29398998EB13AE58D /* hash_policy.upb.h */; }; + 348528E163AEFF09197D0A6ADA696105 /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = CA35DCD18E305A1F2DC4885E6A86F2ED /* call.h */; }; + 3486D2F6593EC3583706363A06B2AB73 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = A9997FD53D84EE8EE4DF0D9A412A12BF /* stacktrace_emscripten-inl.inc */; }; + 348C6A5DD596CFD08EE4D5C6C0F7D3AB /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C724D095C5E266DF1C662E9B8095AB /* TZPhotoPreviewController.m */; }; + 34967D47A229A54491014C744FE3486B /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F3BE7A0EBA838BD5FE55C16E4C918B /* trace_config.upb.h */; }; + 349AF27336BE0A81C04CD0E4A7339D6D /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = D348E5527F55EACBBACA53A285657F8B /* inproc_transport.h */; }; + 34A8F658A556BA6F245535F0CDEE08E9 /* crc32_x86_arm_combined_simd.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8C10B6FA0C5FB8EA272D258340A74F23 /* crc32_x86_arm_combined_simd.h */; }; + 34CB20F646A8430B4207E7CFFD28085B /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 47CDD622E24ED6E5DCC3731FCE0BF2A2 /* opencensus.upb.h */; }; + 34D5DA12F5F0E860409FF21D08D82C04 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E07E9F26A8C8E4D6968AB7E67D3B45BB /* tcp_client.h */; }; + 34D898B5BD6A679E3AAA7EB399DC706B /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 08978A04CA1B8CC0C90F4CA36A596A14 /* tcp_client_posix.h */; }; + 34E4B7CD8049AE10B257AFD9C03BFF73 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 194E78EA270B0C18BAE95B7769388747 /* circuit_breaker.upbdefs.h */; }; + 34E76EB544CFCDE666913F8B92E52864 /* grpc_method_list.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C35C03BA6312643C6C7EE82150C61586 /* grpc_method_list.upb_minitable.h */; }; + 34E9FA047348AEE66E5476ED55CEC655 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1C2ACC1088FF89C844BC8F833A38A2A6 /* posix_endpoint.h */; }; + 34F9993D456C0B31177BA705609CF3AE /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3DCF775A082682293D3ECFC91C0B0B3 /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 34FAA43EB465D02B3502ABB02ACEC8D1 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0C0868CCACA33F1674DD39032B0EED /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34FB516210E8C8E01A8760013E149B86 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E65D49138798FEB52DFBCEB615E5CB98 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3512F3BCEBDB20AEC8F4ABA1B6897AB7 /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = FA07EB746D9159D0A87226BD322F90DA /* rsaz_exp.h */; }; + 3513A0791893F8356253B67312B15300 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = CE57A3E9106A6C13E5339161379E413D /* grpc_library.h */; }; + 351496473C1555BEDD861F199E9EED6C /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E2500F487F6AA1532F8FEEEF1EA97707 /* enum_reserved_range.h */; }; + 3515F04CFA4CFC1B49B641AE021172B7 /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = C402DA860E2803F930F4AFE6E5347A74 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3518289FC0BF30DE1A7BEC12161E4C4D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9058BC2E451D27CCD36FE5E4596AED /* internal.h */; }; + 353316157A30A58D919E5A0CF86F2D7A /* ssl3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CCEC0C8CD81533D6B08DAFAF4268DA9D /* ssl3.h */; }; + 353720D54A7BBCDEB3AA1C3DBD7076A9 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 32C783B873ACD390F2779C6FB361427B /* wrappers.upb_minitable.h */; }; + 353801628692B2A3D35033D36CEF264E /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BF145C39D60187BF9ED0E515B896E63 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 353A1B7E55F120967D128640AC01DD63 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 119B4FCCD8EE3285F2F5C511CABFEF21 /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3543D37852B3F8AA486CB8C8F578F49F /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1DE3FF01C1F211D497B327E74EBFBA1 /* mimics_pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 354FACF254B04427E46FA4268096455C /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 2DE580BD399B992A5FB8CCB74A9E6EB9 /* memory_quota.h */; }; + 3553A9AA27E538604FF0881B99B5DFCE /* http_tracer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F2E7D87C520CCAC0EE364D5A2EB716C /* http_tracer.upb_minitable.h */; }; + 3563FD29EBF57635EC0E3C99115A87C8 /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6828EB6D32DDAA7B9F9B0FC3C9800A5A /* ref_counted_dns_resolver_interface.h */; }; + 3569856E97D770D596584BEFCF2D298B /* des.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 46829D1B1885FD727984670EC73B3DC2 /* des.h */; }; + 356C069C3B28229805851EBC7A40C21B /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B3D0966C3E1529754CD35C7D2C851D3D /* seq.h */; }; + 356C30D7557A15FAB75D01E915355F79 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7463DEC1F79B7AAD20A235ED86F8BED9 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3570E2859BC0BDEFB49BEDEEE504B3C7 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3948EAE03DB85DBAD79D229A5380402B /* resource_name.upb.h */; }; + 3572DC65E55447A0B6BDF3BB2051C539 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 749F875413EF0D34AD54421862D3B399 /* types.h */; }; + 3576D26CF6B1FA6A5573C8439C2BCD36 /* p256_64_msvc.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = B1AF30AFFEB53958AF5F861DE2552E84 /* p256_64_msvc.h */; }; + 35784368845E4438FEF0EFD68A053AD3 /* slice.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C7811AAF98DC97B3D6544E943B0A71C4 /* slice.h */; }; + 3581FAE952606F6272DA7B96941BE631 /* status_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FD16681C6EAEAA67750B1F656B07DE1 /* status_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3588FBF528729ACB62F59324CD1C505D /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C355760C363A281BB0BD8A82E2358359 /* sensitive.upb_minitable.h */; }; + 358CF58912087C78BB9CF90F312ED9F2 /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = BD511206BE119E76E954F66B30ED4764 /* wire_reader_impl.h */; }; + 358FA8524C9002B915A0016B9086216C /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = A34F8272225C80E0C30A69D22D00704D /* google_default_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3591E02CFAA01CE401D5DB8AD64D4FF2 /* LLCycleScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D66BEEFED5A1A0132252D00F5C7173E /* LLCycleScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3595D7D936B938E4BA8C16E6F0C87BEE /* certs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 72AC7D82028C0BF8382FCF04B0F7DA26 /* certs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 359A33F15D1DCAAEDF4C0F7F55476528 /* cycleclock_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB58FCE4E2F127143D55869727AB2D6 /* cycleclock_config.h */; }; + 35BF7E5853F656AFE45084170B9940EA /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74634B5E8C139A87CF3FC3B690403324 /* common.upbdefs.h */; }; + 35C1910F89546AACF0AA7A1A2FB909DD /* crc_cord_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB2CE24871A9EBFCDB1B27EBC84B5B76 /* crc_cord_state.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 35C243CB2690618F461DB61EE3CCE242 /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2E82BC98A2A059105831A3968FC4CFB7 /* grpc_polled_fd.h */; }; + 35CACF99E1E2439226DB569236A62111 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 03398E0505A3C705A1DEF3DAA4DCF3DC /* tls.upbdefs.h */; }; + 35CB230DE2C1AFBD898812A454313DD9 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = D166041D8F3EF9D14961C96E42C30F1E /* json_object_loader.h */; }; + 35CBBF5F926985EEF7847BB7B3BFBEE9 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 882DE963604E1BC3243A722C3BEB32AA /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35D515AD4D17447F8CFE870AD2577496 /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AADA90DC2A9F94E7DC7C0144D5CDEF22 /* overload.h */; }; + 35E32DA6E9242B4B4BFFC3D7B1A5BD6F /* Promise+Then.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8501DF2EF809C6480B06918E372524 /* Promise+Then.swift */; }; + 35E766F019814AF2EF06189FD4A9AC72 /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB647950EB3928A166BE76EB670B4A4 /* certs.upb.h */; }; + 35EE412EE76FD22D46CB3DA027442241 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 65E5710FA4A909F203090C71AACADD20 /* gRPC-Core-dummy.m */; }; + 35F93E9C6AB620C5CD161F7EC16FFA52 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C4D0F0F94200FFC0C91212D20CEBFE /* hrss.h */; }; + 35F9F3377280894BE28CA504E7EAAA03 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = FAB85DCE8C9D458054B951376239527A /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 35FBAB05AF7E2D33767CF4801721C6A4 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EFA3A2E2708D59389925C37F2FEE35FC /* pollset_set_windows.h */; }; + 35FCDAEBFCD3B6E7F904E89E8964E6F6 /* metrics_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3906F842EFA94D806516F6AEA41F41FF /* metrics_service.upb_minitable.h */; }; + 35FD91AB6563384B78132AAA5EE2CB14 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F7440D2D6DB003DC677BE569B7A9037F /* security.upbdefs.h */; }; + 3601157250FAC20A67B47D4E5A75C354 /* wakeup_fd_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F49888031BAF02647713384C7C775C1 /* wakeup_fd_posix_default.h */; }; + 3601EB2826EA2EEB07F514334380B505 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = AF97B3143BB8AA31449BADCC490A4224 /* huffsyms.h */; }; + 3602BC23E6D653027FA9200067A3EC00 /* server_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB34D251FCC3F24B3CA4D358794CC2D /* server_metric_recorder.h */; }; + 3613D3E5458BCD5796BD3182DFEA8983 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 111B419DB5E28FF9227401FCE6A7E5B5 /* field.h */; }; + 36187B3DC0A148BEA1193C5B9E1EA3AF /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0295369CB1CFCD3AF9EAB9369E0F8F9E /* wrr_locality.upb.h */; }; + 361C3599569A6C28756BE9EF621B4257 /* status_code_input.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3C36CF56C53B293DC7CEF1A639052A /* status_code_input.upbdefs.h */; }; + 3621BBBEEF72764259CCE9E3B11E6E49 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32B554197B4676332C81742FB6707F9F /* common.upb_minitable.h */; }; + 3622D5F903CE3D05FD9F1E4AB9FE629D /* FBSDKContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 483D50E47A79FE49116AEFF08D439CEE /* FBSDKContainerViewController.m */; }; + 3622D6FD5DC81AF77065FB055083B0F7 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E07F048B07A9BBFFECFD6D9FF2BE309A /* timestamp.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3625FC71446718720C958498E96787C6 /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4CB2532687F13FFF5D1C332FCCA20B /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3626B85B16F3524AB59CD2C1065F75A6 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EE654CC607E1716227A572320FF5A5 /* FIRSendVerificationCodeResponse.m */; }; + 3639CC4F111425F8CFA3EA528227C918 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2FEE4494AB0D04CB9567FDB69C9159 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3651A0957BF03D31F630433B7E53D8E8 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 27A8595117323D275B71D221EBF06CAE /* wire_reader.h */; }; + 365396765D7DCF6F86E22FEBF3CBF8BA /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B518FEDCE311627101C7640552EA1FF /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 36552AD869D46D24B5CA3996D2F37FB6 /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B1420F151CEB85870E38AA3030CA26CB /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 365A50F6D4B9BD89659AFE990E42C7E0 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = F66F54B85AAAA9910452001114B90885 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 365D159B070C3C7E913C44C1562960AB /* route_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6CC05617ECD6E34E04312E1AAEAC22 /* route_components.upb_minitable.h */; }; + 365FC78EE41A85D3867A590398D69E91 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6CF6C142A8CC512BFCC2D85202356F02 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 36608900D097FBBF80CC83EDEB99F540 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 10F5CB28F507E40C702DB0C4BFCE7201 /* call_tracer.h */; }; + 3660B4F629053ABC3C1DF69366770289 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1170979C257561ED850C7CE2944683EB /* ConstraintConfig.swift */; }; + 36649ADDF30F43C7AE205F9B9ED7B0CD /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 571FA01481C452247E5020B939B68446 /* struct.upb.h */; }; + 3667F8983ADA5D96D88D64BE6961079B /* aggregation_result.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C78E33D9A251E589F5E29C8A5A7F434 /* aggregation_result.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 366E741E1325591E9A06D4F6334548A1 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 48F7B72F0B2533CFE9FD7C0AD0E29BF4 /* tls_spiffe_validator_config.upbdefs.h */; }; + 36779A6191D637D6B2BE2FBF85E99FA3 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = C953A912856DDEEBD34389E4F0F682E8 /* json_token.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 367D846C48B2B187E9ACA92A07774D7C /* Device.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B141F442DF41E1140D8DE73F025571E /* Device.generated.swift */; }; + 367FA3C9DEE8048351C8B6CC77677623 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 60C67170E34421F0AE4784672B5394B5 /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3680D82B97DAFDCE4C9ED8382BC44350 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B276DFA17A2C8DE3DE273DC3F914760 /* aead.h */; }; + 369B12B3923CF7889180A648D44936E7 /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = F3091E2712308EB93EBED0E0D29DC895 /* context.h */; }; + 36CEEB4AC4EE0A806AEDF89D353F73A6 /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1492D1D9E3C677DE7AAC241EA54CC6 /* tls_spiffe_validator_config.upb.h */; }; + 36D46BD1E83EBCC244C62382416B5BEB /* exponential_biased.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A62B38ED755F685277B407ACC7759FD3 /* exponential_biased.h */; }; + 36E0A537CA91490A01C93BD4DD5E251D /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F593C429B124FDBAEEE79DC22172117B /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36E0BD3217257928B4BF009EFB3FD510 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E7A7B33E40AE1E84098917372E9F1920 /* range.upbdefs.h */; }; + 36F1EF0623BE2E0F041663D9340DDE01 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 102FBDCB199D7C551CEEAC518C5532BB /* strdup2.h */; }; + 36F34F0F74C81025CE3BB1353C00961E /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EAA92A9E6D3E215D0EAA17C69D691F0 /* hashtable_debug_hooks.h */; }; + 36F4C5EB200F891222F3F4F6F0AF48EC /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9628B1F18B1682910970BEAB83B6D32 /* decode.h */; }; + 36FB86BB065DCB1AA06D7835F5E4EDEF /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D9A479BE9CE60283DBF1DB9B73C853E /* regex.upbdefs.h */; }; + 36FBCD4F1085382ECC258788040BCE83 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 627AB393B9E6D561A6E2486604B4AE71 /* debug_location.h */; }; + 36FDFE84427FB65053293297F187B2A0 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = AF9EA33204474B97263677EDA6324E05 /* timestamp.upbdefs.h */; }; + 3702C63048DEA374BCAA68D5716F1331 /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7C9118CD4B37ED6702C4C8BD200B2E /* metrics.upb.h */; }; + 3707EA6A58E9CE70623CF4EA11AF54A2 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 4647A20C327B2BC18460420ED1BCB0F3 /* port.h */; }; + 37084DF42C84841E287914D989159A18 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EAE2FE83D15AC08E0EBC818EB951B0B /* udp_socket_config.upbdefs.h */; }; + 370ECB70DAFA7B43183B583F6A8295B8 /* context_list_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDD9A23A397D55E55A458DFBDA22E8F /* context_list_entry.h */; }; + 372019ABDAEFE16D061A44125C557117 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB19F16F72E32C61ECCEF088FD30255 /* create_auth_context.h */; }; + 3728B9D77F38FD3131F6BFABD26B72CE /* RemoteSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDEBFF4EB4CD7E76F6A23B924B488306 /* RemoteSettings.swift */; }; + 3728E3EBB6130612F941D24FAF9CE2EC /* FIRTOTPMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB4B6FB4024D158878A99A6FB8BC1F7 /* FIRTOTPMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 372914FE7C46C453F985D985B2F88B4E /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = 566F146444ECBA39329D1A18389913B3 /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 372CD72F74F313E66483E31862FF488A /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 4ECF0A062391796E90C6039670E91775 /* httpbody.upb_minitable.h */; }; + 37314B52D245B2FB5DA133767C9B7DB3 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B5695CF007698020C6EEB43591D147AB /* ev_posix.h */; }; + 3742A04C536867961D3198C14C30FAED /* RecaptchaInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A454F31E752B56E509B416431703C838 /* RecaptchaInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3746382B6870964BA2A725A2FF0DA997 /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AC8BE5573DA4BCAEFB1597234B16F5 /* distributions.h */; }; + 3748B4D19F95BEDC3289564262EAF41E /* no_destructor.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = B3EEE40DD6739F80BA48749E9960A5FE /* no_destructor.h */; }; + 374C91AB6DE4E7EC11131DC5B0773921 /* cord_analysis.h in Headers */ = {isa = PBXBuildFile; fileRef = D0884C94FC7925BBEFD5FC12C73F2065 /* cord_analysis.h */; }; + 374E716B9A543C32694C243B763ECE10 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32DDEDC785C4077848CE90656B5BFCF9 /* scoped_route.upbdefs.h */; }; + 374F0C8176A0ACA777C551321979D402 /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0AC2856287BA14533C0D09246BE5E13C /* config_source.upb.h */; }; + 375CBD90F736D2878C50533C8045DFE1 /* filter_state.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 023343C108EDAB199DCF48A0AEB0AF50 /* filter_state.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 376D45B451C13B529818DE6093B35929 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E1A864210E3E09F3F42AF8CDB29EC1E /* context_params.upbdefs.h */; }; + 3771D95018C8293EE0F40538C912737B /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 399BBABC4F4F46AFAF404F21AE3B1E19 /* resolve_address_windows.h */; }; + 37731E71DF2FEF990DF9E5A00BBD599A /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D8F7A49BF99FCC523C3DE1273212402 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37746C1AF82073B928D9D32779563CED /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E1D45D02EE58165D838A5CC7A9DFED /* FirebaseCore-dummy.m */; }; + 37765D734B863874037C2EE182FED5D3 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 22BF8BE9E5930035355F54EF5E97840C /* versioning.upb_minitable.h */; }; + 37784FC9C99AC703F6F9DF9C58E2CAF4 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = B36F399DC1B9192E5FD5BAA0BDA5E3D4 /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3787CCD2DE4EB56A9838B044EE249A41 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF2D5E9089AA02EC35C14E3C6B6B1AD4 /* datadog.upb_minitable.h */; }; + 378AF47F24384441ACBB9BE83C4F1F6C /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 9914A7AB404BB98EDBD9B8AF78C4D883 /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 378D949AB5DA16D25E98C62825D65E85 /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = D1903EA4145270D4E67B161A5D1D0988 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 378E599120DF8DCC04001D7290DFB380 /* router.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A214EA7CD6E64CFC844620E5EB3E5AD1 /* router.upb_minitable.h */; }; + 3799DE1349A44840EE978BE74514F1A3 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 98E4ECA7A1489C446F54E069416379E0 /* types.h */; }; + 37AB67E731AF93BAB9609AE1C79FE9B3 /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 605A35141343112AA0F57F0E3101A62F /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37AE09059EBD9D5F3DC1D370DDA47D8C /* join_state.h in Headers */ = {isa = PBXBuildFile; fileRef = F54ED98182C938EF40E6304B598A4C8D /* join_state.h */; }; + 37B4F42C3E19E9A891AE62B7745A5C47 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 74109632C97CC01C77DB8780945E9DC8 /* nameser.h */; }; + 37B6029D344838A3999C68156B637477 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 724EF8390234812134B7A355C468822B /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37C341E2B4CD89B6C3338EB4EB61D61A /* sem_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 607F4F2D4AA478AD49A7FC6E0188C944 /* sem_waiter.h */; }; + 37C3F168DDA34DB228F95BE62E59C716 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7048DE6824E02773E82E3B0A8FE67F6E /* timer.h */; }; + 37D80BBD28D393AA407D3698CD5468B9 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A96D17E103179F79402D1DE92BB649F7 /* checked.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37DB0E182646FE183A4E5B2ABD635006 /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 97BF481C7BA3B9263200549647BA2284 /* sleep.h */; }; + 37DCC369887727E66460D4EAD90EA80A /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = E505A8D53EFE792BD0DF1FF87B1753DB /* ssl_transport_security_utils.h */; }; + 37DD1F12DD64A0135E9FDCD1470E6A6D /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BF44E9E7DB2DC3F3B31ABE9089B057 /* jwt_verifier.h */; }; + 37E0201026D01A6600B72BB39A077CA4 /* skywalking.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BDBDEB25439F7D6F827019DCA0D04F5C /* skywalking.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37F18FB55700B3CE5B407BA07F061283 /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 214DF793F610AC81F5D6EE5685FFC265 /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 37F28076AC0322A2EB666BE60912E0B5 /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10C2D3F8662FAB3F53D075B5D324F23F /* jwt_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37FC9C0257BA0D87068A95DA4D09CC29 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00D5CEC50C73631B9856263E676D38BC /* time_averaged_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 37FDF2DBDF0512D849DEA4CFE3EE02AF /* unscaledcycleclock_config.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 91D1CD83F62705A6D8AE4FC386BB6617 /* unscaledcycleclock_config.h */; }; + 3800175154CEA3CABE93DD272536F0C0 /* alloc.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FF5997267129FF743354DF4DF01747F0 /* alloc.h */; }; + 3801F50F68EE7A63B9ADD7DF38087672 /* FBSDKWebDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A732F06ACE72B8D272FF4447BE8C003 /* FBSDKWebDialog.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 38065568BE14AF1D2172B1C62659AB4A /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 0BBA631369950E57896D456AD4A5063D /* wait_for_cq_end_op.h */; }; + 38089D73E80F7143EC9905F93E8B6E61 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 8F80E17F9809F78E5F47387BBBC540A6 /* method_def.h */; }; + 380BD8424A390E14FD3A73643981A076 /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EF55F0F8C923247204BC486A7FC61F29 /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 381E630AD64EEA81CA7FE837888CC89D /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B4F7552B1FFBD01D22FACE315BA5C3 /* ecdsa.h */; }; + 3825E9D148E3BE83C9F91CC36302E629 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 77F42F28D71F4888BBADA58745A9CEF2 /* wrr_locality.upb_minitable.h */; }; + 382B5DAD82E126BE76FD4BFC95653422 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDBD8917E2F8A1BD7EA98055520B21B /* sync.h */; }; + 382C6CDD2B06B1E7CEE3A86D4993CF85 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D9E1F6D2924CC0F362A1230E00B419 /* config_dump.upbdefs.h */; }; 3841545F19CF975D5CA907A73A949FF6 /* Kingfisher-Kingfisher in Resources */ = {isa = PBXBuildFile; fileRef = C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */; }; - 384916C9F7D8A9D1EC64EE6DE8C69026 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 928864F925FEE1C35C292577A1E0B1DC /* timer_heap.h */; }; - 385744DE4D5BB8015B9BB8FC5057BF4D /* uniform_real_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9D138605ED78A5D37B233341E030A1E0 /* uniform_real_distribution.h */; }; - 3857731B5A518FFEFB29C204D273AE1E /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45EDDED85395A7191744049707819A50 /* mimics_pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 385BC4B250B6A6DB8AAAEA77D5B7A46F /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F72F2990247B0AF4F58FC2CB1EB06BF /* Combine.swift */; }; + 3844B9CE3D150B5F68EC34C70596E414 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DAFFD02C700FEAA1B3C89E9973B1C0 /* matchers.h */; }; + 3847DF42505172EC779A6B0493FE33D8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03417063D7390AD042E1D760D319086D /* UIKit.framework */; }; + 384D3AFD42ED476D6BA40BBD0FFF2756 /* FBSDKViewImpressionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCCF9BBEF50F35E096A6147FE7081B8 /* FBSDKViewImpressionTracker.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 385007830143A06A10F36BA571231BC0 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 4B681F99BAA7227C03D826DBE4D2E51B /* file_external_account_credentials.h */; }; + 3852B157ADCE6FA020B3420721EEE26E /* json_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC675347F72E3768CAC090F7422422E /* json_writer.h */; }; + 385906F91529AA357AAA25B698F248D5 /* httpbody.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CE2A41C775CA088B555DF37F91B1F6 /* httpbody.upb_minitable.h */; }; + 385BC4B250B6A6DB8AAAEA77D5B7A46F /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E138A656226C5FEBBC365BC3BFACE80 /* Combine.swift */; }; 385F88B761BF59DF1D04FF09072375D2 /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 859AE0302B28BD8AE67A780BFCAEE082 /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy */; }; - 38654BDF6E99B77F4B627AE31CACD002 /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41F9033A6DBE1456C4181CA7F9F7B6ED /* migrate.upb.h */; }; - 386BA1ACF8BAA4F38F11354EFA6EFF62 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 88792C4715CF51DFCD4F3BAE876724C9 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 386CD0B3CBDB1C34A748E5513A6E6915 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EFD554D8F4BC580569DA329F8164D3F /* validate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 38728F0320A253E677A27C5646A66B83 /* ping_callbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = E0BDE1EA1A0CB7C54D7C13341D37D2D6 /* ping_callbacks.h */; }; - 387DF2542426C29C2FDB93E366703DE5 /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 2FBB8C0129580F16C2F6AB16D79E5434 /* encode.h */; }; - 3880809BA8316FF690C50AFDC8BCA563 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 6AD5DD5F94140ECAAB85DC0DFAE90E6C /* builtins.h */; }; - 3881B8C2F19664D8635E2AB35F7E6177 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFACF01D5166A3A9790299D15C9BFFB /* fault.upbdefs.h */; }; - 3886C9E35F01EE1829A997C2B4B4C16D /* port_platform.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EE9648F8D323227996A12459D40FD398 /* port_platform.h */; }; - 388D874AA209FDFAFB5776EA2CE3E0E2 /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 3972F39724143066B743A4F253A6CEB4 /* sub.h */; }; - 38940046B32F87D21062BA6A30B8872D /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = EFCD326E9E72F726E8EE9EC7E20CCF28 /* lockfree_event.h */; }; - 389C30C1107406C49CB7E28416EF6D42 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC2EB1C769307BD22C89242B10B4A9BF /* versioning.upb.h */; }; - 389DFF4CA4B30DAEE39AA23381C8C713 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 092CC3884043312D31D0F05C405B5D9B /* FIRAuthProvider.m */; }; - 38A0317833D349BAF2BC0019DB886B5F /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0ADA180427FB7D5383013AD295C67B29 /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 38A6C5CBD9A806175A6CBC8628EA8909 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 27927E7E0F16B228559681A2AA205959 /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 38A957BF0EB229154D1A2CA69C340B53 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D60FF42970D095DD2F85609E969176 /* GDTCORStorageEventSelector.m */; }; - 38B22CFAF6AC709625F45FA20306ED9C /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4C6D02958D37D28CB2CDB697812150F3 /* xds_bootstrap.h */; }; - 38B9D58E94D9C1CECD7E381C64A2329D /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C497D99A2C1FF2CAAC2F3A1288386E7 /* UILayoutSupport+Extensions.swift */; }; - 38BDA9ADF916C6FFD8BDB3E8A67AA8A3 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = A22F7947B101D362448812554A639FA0 /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 38BFFE498FF2491FD1C152319A94E9F5 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 662FB2CC3163AB40E59CE7DBDD660797 /* ImageContext.swift */; }; - 38C40113CE73153124CE64C904F92884 /* digest.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2065E053CB75A9F06D891B887FADF0C8 /* digest.h */; }; - 38D21DAA7412B347D28EAD8A3B534EA6 /* external_privacy_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 69B86868A7026FF483181CC49E0181A6 /* external_privacy_context.nanopb.c */; }; - 38DF296DCAB55D23566DDA39F3AB2AD3 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F63E7D5A3F3FAB4CA7C9A3C5BAEEE8 /* subchannel_interface.h */; }; - 38F9597DF1B2AEE0C13BF90D191796D7 /* TZAuthLimitedFooterTipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 141E890CF628660E7B697E482DEBD044 /* TZAuthLimitedFooterTipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 39018CF7CD2D604379249D23E4CE922C /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9D5F8701EA35AFB82F6748DDAB48CC /* channel_stack.h */; }; - 3909BB6162FDC3D1A5AB066973E5EF7E /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = F79D4980958BC2012117386CD69A6889 /* api_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3910D868080E2FAA85EAE2F562369DA8 /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = DB22B5965687EE84D1C2CC5B2FF2C42A /* beta_distribution.h */; }; - 39163BAFF7CDBA0704FF25A62533D4F4 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E17B108444DEAD973992DCF69AA1AC /* FIRCLSInternalReport.m */; }; - 39170887C33EF362F874F384D87418F7 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 403D8D64A43E4E5C1CD0F19CFDD6AA05 /* fault.upbdefs.h */; }; - 3918867687AE6101A63A630CACA7FBED /* strerror.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 329BAE694E1A92F13AB8359AF0F3A4F4 /* strerror.h */; }; - 39197F7FC2CFD5B6B27B8EFD6089C525 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AD0DD2D60E036CF04D2768655870DD4D /* chunked_vector.h */; }; - 393564E43C631E35DD2829AF726E0D0B /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D5A68B8E670AFFAEF823444334C05E /* GDTCORUploadBatch.m */; }; - 393727B5775C1498AA31A1CE093D9A6D /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C92B38AFE785138E7173AD2973C2B0B /* accesslog.upb.h */; }; - 393738F7DECA0206AAF28E227BAFABC8 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 9879F180640DC899A35DFC38DEA9879A /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3960DFEC342D43DB168736340ECAABAF /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = A26C730435E710CD4C66CB72B55D2CAD /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 39618920B95912D946E9DFFD3F24E4FD /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC7E49CEE0CFA1AEC01AE03BCBCEDEC /* sensitive.upb_minitable.h */; }; - 396206E2835046C327337BD9A661503E /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1F21650F0605DA1B03EEE743E5279AC /* parsed_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3965291BE78DD134045C7D8ED21CA6AA /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 2BEF65A1FA5ED0E47C890BDD1BC0D9EE /* def_pool.h */; }; - 39677C0475E3F894840F6F25B496C049 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = D46647395605F700FB587EC4049181E8 /* crc32c.h */; }; - 396976DA02E9C1688ED71D5B2364BF75 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 857E5446EDA11C05E4B85AA17EF29A7F /* resolve_address.h */; }; - 398358B745EF370444FEBFA559B68932 /* orca.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6F1AC05068C1227393DAB9D214FFD7 /* orca.upb_minitable.h */; }; - 3987C48F5133AE28BD878F28D181353F /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 9248F2A6BCCEE8028302281C51F3317C /* alts_handshaker_client.h */; }; - 398C880A2174FA66E12DBE75D50113DE /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 049AF067CE61494C19FED162F2570C99 /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 399B5ED188D40AFFF46FD27C26EECEC9 /* swap.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAB555D0069C49F88B07DD94BF7F483 /* swap.h */; }; - 39A333C8DF1F0E2EB8585AE70616D5E6 /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = CCAAF9C462FBD516E79047968271E216 /* resize_uninitialized.h */; }; - 39BEC041FB56F837DCBB8B74FFCAD696 /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41FC1BCDCCC3B3167652E3070572705F /* http_status.upb_minitable.h */; }; - 39BF1B779F4A50F52B87738714626255 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 8B86037E1103C4172FF1904F7A92087A /* time_zone_info.h */; }; - 39C4DD8F92BD0AA30677B7986C1A7795 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBA0CDDBD199E403CB1C9D8B952F0B3 /* client_load_reporting_filter.h */; }; - 39CECC2BC928605A8C706B6F04E8E7C2 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 713A4F254B672B87E5FC0C08527B84AB /* lrs.upb.h */; }; - 39DD524BC7D5B6538113339DE76CFACC /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC1CBC41D108E277644F0723ED22ED87 /* grpc_alts_credentials_server_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 39E079FCEA957F92B162423395D26DBC /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F4FD7E7455DECFDE822918742C132956 /* range.upb.h */; }; - 39F4F873A00E56A948CA098D9AB93DD5 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEA2570C6BC58EE3356FF9BF456CCD3 /* tcp_client.h */; }; - 39F8E886AA4C106327E49AE74B16598C /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 3D329B59D0D28AF155D25932347CA14F /* chttp2_server.h */; }; - 39FE0170AE358C428282664DBB65C7F3 /* call_spine.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8094DFC3A46899E473DCA84886819184 /* call_spine.h */; }; - 3A05889D2FEC6FEDCD92CD5B9576D65C /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = E684F9C7C2C3E8629E5D15A940314092 /* supports_fd.h */; }; - 3A08101F15F735ABDCF65B21F16F08FB /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1C010766A87AEEF3BAD8191296D589 /* struct.upbdefs.h */; }; - 3A12012EB2EA51201924DCC8AE7ADC11 /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 1F2FF53C8F35A3AC4E998129BDE7EF2B /* parser.h */; }; - 3A1560C43683AA00436AE6B0BC555964 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6583A7EAE3880DFFCCAB8F9B276766 /* iocp_windows.h */; }; - 3A16C13B93B669E5B043E0B35D77403E /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 053D6C95F1E7EB9818E79E2BD323E0A1 /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3A2D692C0440C8AD80554AA2770E516A /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */ = {isa = PBXBuildFile; fileRef = C4592A13AF3ACE60F08D9B79788442AE /* static_stride_scheduler.h */; }; - 3A33A97DB890E732CE4A39EAC6B9EF03 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B988DB7D30B0AE7437E2C03324BEF55E /* stacktrace_unimplemented-inl.inc */; }; - 3A35581441E5C4C4723BA5A14287CE59 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = F14520324794E4C2C7B4F6180D311EB1 /* field.h */; }; - 3A41AB0C92251ED84D50F71BF023CAD5 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 980E233CBBC5D8ACC847ABB330406CE5 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A45B8FAB955D06EF4C3FFFD20097653 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7B22B1BABF7295CD069F18FA514E92DE /* race.h */; }; - 3A506760943577E1BA61AD205927F4E3 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A61E14B3002DB6042226A85F2D2292F2 /* percent.upb.h */; }; - 3A5303479351BA0D72B64BD6CC240080 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7DEAF50E0F5B76706CE3B1C80FDB8F /* GDTCORTransformer.m */; }; - 3A55A1AA648D648469AD6880B8F1136B /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB98DEAD8BEE879F834C9642D41E992 /* cookie.upb_minitable.h */; }; - 3A59D8FBAF9A54906E3644AC80465AFB /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D0ECDAF0FDB111840B47BA25D115170 /* Notifications.swift */; }; - 3A6671660BF3912A3AF5E8154B2C8725 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F032CDA691A85CCBEC57CB83A6B6691 /* HeartbeatController.swift */; }; - 3A7302DD180AECF4E7F42E81BDCBE4B0 /* binder_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 4C6EAE0B00B431105BCE7283261B3F8E /* binder_credentials.h */; }; - 3A760D1084AEC4C2E61439C9B1753A60 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8E659591CB37CA0D2937AB09BD5B833B /* local_subchannel_pool.h */; }; - 3A8C0AC951ECF8A9988F5BDD1270F05E /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = 0863F11F2B67BC00FEE850B989465C69 /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3A8F7F1C922915E8878A95B21132C118 /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2D80F784A11F9F6E9FABFB2CFCF54FC /* chttp2_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3A92BBDB7DF5AE1FFD19BCC92FEEEA99 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DB119CB658797BA2A2327D1317896F /* work_serializer.h */; }; - 3A9471B0F81865C8BF459EADD94BD769 /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE774C59DD71AE8E9FD62A5C2A05726 /* dynamic_ot.upbdefs.h */; }; - 3A95B829A044DBBE1F87E50F25E97AFA /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4A7ADCAA16E3D5344C1B2BDAB2ABF1 /* frame_handler.h */; }; - 3A9C8ED678E2EACF93E726E235448FA3 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = F25580AFE97D709780A7B2A021292734 /* hpack_constants.h */; }; - 3AA1C5EAA42BE1EC60EC3E1DF7B20C14 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = DD4CB51F7B2F26C53ECE572D193CC324 /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3AA3DABB241FB655F8EE42D02EC95DFC /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AB6AD22546F169278FE5FFA595A284D /* Kingfisher.swift */; }; - 3AA7A8F88A6376FB83C0EA34DD25BA4E /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E940DCB0EEE2E3A7B7546DD74E6C9A /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AB255A7FAB547F9CD69A06E61AA9AAD /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 16777B6A8DAD11482EEB437A06ABAEEA /* trace_config.upb_minitable.h */; }; - 3AC0D16012893FC32B1DFB9980DD4864 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E0141B5338DA4E7E182FFCD1783F22 /* fork_detect.h */; }; - 3AC9B10B267F82E3840B9C9922752AEC /* tagged_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2396142431D680935936F6A3D40E2498 /* tagged_ptr.h */; }; - 3AC9FBA9756B8125A4F433F332757CC7 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = AB001268A485BA0104D8AE3D677FE72E /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AD9A9F8223F76A85BEFC1E2E0FB30F4 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F6171660A7AC8983FE33488403CF3F6B /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADB05AB664BC7DDC4F02DE8FE58D79C /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 32342701343A3C06482D1D6C317965F3 /* external_account_credentials.h */; }; - 3ADF6FEF52FD51E0B4648A4469702766 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B00A45DB09EB334EC29B2593AAB728C /* token_bucket.upb_minitable.h */; }; - 3AE70B034891B41CF5A6B0F16EB6E74A /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FD1BBB6CBE34419218877A44D2668B36 /* secure_endpoint.h */; }; - 3AE75B819E1ACFAD08EEE7B6D57516D6 /* call_size_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = FACC69F5E008BE484AE7F0E1CF3DBD53 /* call_size_estimator.h */; }; - 3AF8596E43D07433094BEDD5168888E7 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 973386DBA4083747BEDEE17ABE8818FC /* scoped_route.upb_minitable.h */; }; - 3B03643E79C7ECEF0D705F58DDC050AB /* array.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 3DF4C34D1CB8CD3A607AFA203B19CA09 /* array.h */; }; - 3B058EA72FB9C264541DD3492A1EB683 /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E95DFE311A1C04AA135F9DF97050768C /* clusters.upb.h */; }; - 3B0A866A1D702B27FA7BD14D7E5166F9 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 372677D7A65A0511831962CB834AAD96 /* timer.h */; }; - 3B1FDBC115C31E0CF8346A532169B3D5 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3E3CCB86C9341E6317CF79D27633B3 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B2459B1E573524C4CB49E0882E3E71E /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = ED8B5BEC2B605A4D6DFE286FD4CD62B3 /* accessors.h */; }; - 3B27337AE9E82DDB0C971F4B4F09F3BC /* httpbody.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BE3232DC012B728472576220B9644CC /* httpbody.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3B33BB9837A99CFE245D356004B4917E /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CDDB5D6BD165D5FAC7D5DDE793F674EF /* manual_constructor.h */; }; - 3B35E4281971BAD2DE38CA62A8E6E6D1 /* timestamp.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C9EAE5A8B15C985867C5CA8DE120EC /* timestamp.upb_minitable.h */; }; - 3B3807E6B654FC690919C2586B2522DE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2679660CB39D01D955AABD441C9AA52 /* ip.upbdefs.h */; }; - 3B44EC920E976E5A7E9EC3BD7A760CB9 /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = 30221A4E36E3CA0FD8D0754D5E01D350 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3B49C62987C963D6B9A6EDBB9B135FA9 /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA4366AAF1EDC94CFE2D5CE158646A2F /* BoringSSL-GRPC-dummy.m */; }; - 3B54CEB9CF203FE92BD6E4A4C9BA5B8A /* field_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A51449AEF1774303FB6180394760BDB /* field_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3B5CD2D628129EE3D54975804EDE0A6F /* status_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3F839208013616201860A74C11C6C0A /* status_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3B607615F5289FF44E88FDFF3BA22918 /* def_builder.c in Sources */ = {isa = PBXBuildFile; fileRef = E7540EF435F96E60D134F1A246C6952A /* def_builder.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3B6B2C5450E25687888E8D9C102D9F27 /* any.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 995BF4F9223E8AFDECEBF12CD550AD29 /* any.h */; }; - 3B6B4598C45435A47A1EB54D1637DFA4 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = A09403A69693A1DCD3666BA458BB041E /* status.upbdefs.h */; }; - 3B76BBF0E86AAC505289B8122E85C6E1 /* log_internal.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = FCE264E6D1F44D1A75536B0C07E31931 /* log_internal.h */; }; - 3B897304F8437AC3454CDB5ECEC38673 /* thash.c in Sources */ = {isa = PBXBuildFile; fileRef = 98FC7B2356B924F6BD0A16FD5BE7536D /* thash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3B8E4CBCA261BA22DF05234F38FCD949 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E293D596DD9BFABD0A4A16909060067E /* range.upb.h */; }; - 3B9E4BF705EDD08421FB2C40994E1E57 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 85BC386546AF7DD29EA582A3FC13832F /* p256_32.h */; }; - 3B9F7DEAE4D05C508A3E9BF9F2F6B6F8 /* log2.h in Headers */ = {isa = PBXBuildFile; fileRef = 01380D2F77DD7D2F2BE0BBD347157878 /* log2.h */; }; - 3B9F7FECDCD78B1595E49943DE02C40B /* endpoint_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF7B924804E8138987B5F66EB337B66 /* endpoint_components.upb_minitable.h */; }; - 3BA1FB928AA9C67D5D4FEEDDE477D927 /* resource.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DA76C7E90EE8192B2BAB73402D26528 /* resource.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3BA60F0E808BA07438E269E9C688106E /* FIRCLSContextInitData.m in Sources */ = {isa = PBXBuildFile; fileRef = 668C92575D4E6847B5462460C7686A8D /* FIRCLSContextInitData.m */; }; - 3BA8E12C50A2438CA11981B96AFF33CE /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8407CA71D4371781FC540D4FCC1A01F /* tcp_server_utils_posix_noifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3BA978E2A5403B86F4CF6120CD0C712A /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B61545C812D657BCDF23F79314F553E6 /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3BA9D176365476DD0C2F2F300F256D89 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6C0AC698547866C5AA129FFA0B9069D /* api_listener.upbdefs.h */; }; - 3BB398039CC19AB563565F937DB83A88 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = D8BE91B60E6169CA0E0736C630746A64 /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BB825B4A332C89FA5B804F588B89838 /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 18B92839692D8C8573E34D97F502F83C /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BBAFFD3521C8AF061F88DC7F76396EC /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 33472150593A741653E9C7075B46E328 /* proxy_protocol.upb_minitable.h */; }; - 3BBCB62D63702DADF02152B7B13792D5 /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = E80DF185130B2DDADDBCE50CF6B7727B /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3BC24E3DFB3A8338E0D9EF754E16D27B /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2A8EEE0EDFD3F779B2C02D5E13A04344 /* cidr.upbdefs.h */; }; - 3BDBA14EAF99A3A851C35DC38214FE54 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = F42102CACF269840F5A449BC646433B4 /* retry_throttle.h */; }; - 3BE0FB96E0A38048D370DDC1B72D1D57 /* csds.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F61A9ED09C6D75EC57F8D984E4CC5B /* csds.upb_minitable.h */; }; - 3BF95E7CB17AC04ADEC5EBF321ADDDF3 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E03176AE00822C69C0848DF460742279 /* token_bucket.upb_minitable.h */; }; - 3BF9B0F22E4EC2260F65E19787B1F04A /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = CC6AE4DFFBE735486D703300C5C10B54 /* child_policy_handler.h */; }; - 3BFA87FB59EEFF39F1FD960999971155 /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A28E9B6EB25B958CA44C7528BF144B60 /* lightstep.upbdefs.h */; }; - 3C01E18562AE38A4278E5EAC1C5E6710 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01E3D0F2F86E1F8A3A829780B2197E0F /* check_gcp_environment_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C07A9D2261B0BEA9CC08DA9AC55F204 /* connectivity_state.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7A7EFEF54388370A2F00475D35C52028 /* connectivity_state.h */; }; - 3C1321318E5D55FF814FCF2BBE273BEE /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 7CF5E735402A7DF50344C28B7E5A8D97 /* trace.h */; }; - 3C1BC3E10CC61F5BB254E1652D5CCA21 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2FEDD07D606A83E9F4989AFF5D7AF5 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C333F9DBB73992723F2168E3A5D4AA9 /* endpoint_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 11B5BAE8A47EEC1A5FA1255BEB0A6095 /* endpoint_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C34130398769B330599EC7B7B7D6E63 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CEBEF68E3E5A09668AC13F02B7F3CC /* python_util.h */; }; - 3C4C69502D6DC17C692B13C08BDAC664 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3044137CE44488A15F008CCABC6DFCA0 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C50FF122EEFDEF5D65BB50B782C2F44 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6F94E380F0FB4FDC9C6131214BD7D57 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3C5172358BD10FE3B61A11FB761FF748 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A801A50CB75FC85B6EFED23C98A582 /* versioning.upbdefs.h */; }; - 3C5F47EC4F1F7E75FA5A6F64A378AF54 /* inffixed.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 91C4FF92C2B55B19BF647E41C9355E04 /* inffixed.h */; }; - 3C68ABFB0606E6A57CCE6DFD312CBE67 /* channel_stack_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CD10E7FF58DA289449568C540590CD /* channel_stack_trace.h */; }; - 3C9CF6FA136C66CEC7E59215278C7F4E /* ip.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 665D83E73C3A63763C8E96898D7D3569 /* ip.upb_minitable.h */; }; - 3C9D5C8459ACA05E7217AEF49D407FA3 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D921424096C898F7B9E464E9EE1593C /* http_tracer.upbdefs.h */; }; - 3CA029D8D5FC6283983D084079D51BF8 /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0063973BEBCBA43B519D5B381BBD53D1 /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3CB4795819D1CE84573E1EB62C36BD1D /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0B9B2FE37F43B4F25A2BECF4735F07 /* macros.h */; }; - 3CB5CB4975D9A9CE68FEFB35B14D862B /* path.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A3AC4534F22DD112DBC7FEA096D37B /* path.upb_minitable.h */; }; - 3CCC86EAF10CE1F1A0763F2407B386F6 /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 908202D55C963B79920D7557DA291BD9 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3CD465971BE32FF09CAA8FF61BAC730F /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = BA78481929C898206BA67720594EC5B9 /* message.h */; }; - 3CD5A49C38AB4426A7B9DDBC44402B2C /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B5A1E5F9C53F5BA056227E3A0760F3 /* file_external_account_credentials.h */; }; - 3CD87D07408873538955E4C9D018BBBC /* channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9572DF590AA7017E54B253CF02A726F4 /* channel.h */; }; - 3CDE95BEF1950143E8D0318DE075E8BB /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = C90C398B456A6033B1210F26E251B471 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CE1E30E5E482E01D00A858A54A98FF7 /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 62B9610D9E06318A33473BAD3301973F /* latch.h */; }; - 3CE32146E3FA3DDDBB680543C99D66EB /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 066B725709D49D7394CE004D0D7610D9 /* client_authority_filter.h */; }; - 3CF2D3247BF85EF1F8D86853CA221AFF /* LLFilledPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = A936FDE037557223955EAA708EFB7619 /* LLFilledPageControl.swift */; }; - 3CF8141B89C0EEABE867302089B88219 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FB24948A4D8D3623FA684ABE2A3EF2 /* health.upb.h */; }; - 3CFA7C5C782ECFE359E0997854FEC32B /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 705E53EF093D33CA407FDB957E5EEFD3 /* sensitive.upb.h */; }; - 3CFF1A54A4AEAE3AF0C2C161D7389658 /* unscaledcycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CEFCDE7B743786D0F754033372BC97B7 /* unscaledcycleclock.h */; }; - 3D0910008D57082F2B6B8B7E28748C27 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 7975526DB00F6FB0B8C9189E34958F81 /* ev_apple.h */; }; - 3D1BC99F9782AF50AD478AF6AF3A0F7A /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = D84B22DD9FD2044BC1A75DCECFA400FD /* validate_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3D2C933DB934CC1FCE43CB061F5D75D7 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 777AAF2D67C0DE7495DCE4A0F1B74E0E /* authority.upb.h */; }; - 3D3A20D4A6D478143D1078D1FA348C37 /* hash_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 901EBF253DD697459DC6EB4D6A633512 /* hash_policy_traits.h */; }; - 3D3EA65D007FE33C2EA7059E8486500C /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 230D3A293F1E7BA490605CBB81C7D32B /* status.upbdefs.h */; }; - 3D41F07396C636494628E3AA56F0B897 /* call_once.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6EAA1E94BC07876BC87A521FF67B1657 /* call_once.h */; }; - 3D44176F00E521CB2BE1A8FBBB860283 /* event_engine.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 11628222CA65B5A9B66312991892892C /* event_engine.h */; }; - 3D4CD7AD4CC9A9210D720D883B4A6DD1 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0FB1FD9E212279AB3586C3F95DDD79D8 /* timer.h */; }; - 3D5EFF677D571C39E7FF307AAFF80D70 /* sync_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5CB6330933658E520FD011074E2CB805 /* sync_stream.h */; }; - 3D628B96B5C48CA06A309225C2FB9F82 /* strerror.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B158402490EB5CEB3B93AFFCDBA5B45B /* strerror.h */; }; - 3D6B5C6E7FBC6846A1360DAB0CEDD187 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 010C426291A1E320C563F1B943F64FB3 /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3D710B4CF7D40CCAA106AF6DEF872E88 /* getentropy.c in Sources */ = {isa = PBXBuildFile; fileRef = 15EC208DC675464D9933B0FC4983524B /* getentropy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3D734B1F2565BDC89CA9B9B20A0695CE /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7727E0EFE169FE5670BA681B4890264 /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3D7CE2BEDFB382D901146813BCB1CF9A /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB1F0C58F51B70481B2251EBBB9B75E /* endpoint.upb.h */; }; - 3D7E1C65AC56F786117B7CCAA3FEBD87 /* stdout_logger.cc in Sources */ = {isa = PBXBuildFile; fileRef = D678C098DA0362493A7009F70EDBB967 /* stdout_logger.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3D8394B4A57D995B3A7FAC6FB0E0634D /* custom_tag.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DA5C74FA320190F6D074569AB0D93CAF /* custom_tag.upb_minitable.h */; }; - 3D860CDFA1DBEBEED69557657F81A7AB /* deprecation.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A624FCE13EA7FCC3BFBA0B88575B757 /* deprecation.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3D87C5561E005BD9A6708FFFC5BCB405 /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECB0F5D380FCE2654CB49D72D600AF7C /* ip.upb.h */; }; - 3D8FAD94F91E64766BCD0D2AD44C8EA9 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B386EB39ECA224E535492F7164C080D /* csds.upbdefs.h */; }; - 3D90857F1D3D2133E12F870167CF0F88 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D0A15FF2E154B8654AA395C1AA5F56 /* orca_load_report.upb.h */; }; - 3D974D1EA1671D7E90AA484101766D31 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C636CF0435002ECDFEE6DECEFFB392 /* GULNSData+zlib.m */; }; - 3D9CC4929C14D5E32DFAD3794E34CA73 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 9524A473FCF277BC6952F5DA1E777D39 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3D9CCB41A121F4F7F67F94AC1D2445DB /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 88615DFF5A5AE2E8B2B8CC34598667B2 /* str_join.h */; }; - 3DAC3897E6D63A317EF89F1FC43642A3 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 69FE79B348ED5AAF5BBA866EA2471587 /* tmpfile.h */; }; - 3DB9B3496EB0C857A5171DBB54EF8E3B /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = C39A869103799DECDB7FEB9517645E5B /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3DBC3D01636C6A18CD06F3C2E7598A4A /* if.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC1A1BACCE579E33672F8927136D636 /* if.h */; }; - 3DBE1F088BCB8776709ACE8F441B0870 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E0C9D1687C114554133216DA12EF6D56 /* regex.upb.h */; }; - 3DC882719777F9EA87740D154174F835 /* systemd_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A5244514FA4AD1E1073E7156BDAD5A2 /* systemd_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3DD066C5672221D8A16926F723773905 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2235EB1743BB1FBE4FE529BA44151F4B /* regex.upb.h */; }; - 3DD8B0C730B67BA052F4F4045A09F6F9 /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F0A6C5CD33B08BF32056A4C9033989F /* idle_filter_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3DE72CF9C63093C91F0DAEC9E78780A5 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D34787CE3E5EC4DEE24AF365FBAC930E /* internal.h */; }; - 3DEBC4A846BE7422181057F408871A42 /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E60330B07A5528BF4764837EA8F145E9 /* cord_rep_btree_navigator.h */; }; - 3DEC9B9EF4CE9E8BD4C34F7FD3FFFB2F /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8603C33CCC3D37473187F000C2676D06 /* percent_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3DF31F0269C4CBA18BF80ADB75408860 /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E85054D8F704993811EBA5291733AE /* opencensus.upb.h */; }; - 3DF64E9380605CBE5BA96FD61641C392 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A252816BC5CA6A7289611E56E66C467E /* resolver.upbdefs.h */; }; - 3DF9E9ADF4C1F485A9E8B34C24670046 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2886C70DF5B59B998B6C5C6B5B47A7A4 /* path_transformation.upbdefs.h */; }; - 3E053D15724E3251406290543708F583 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 155960AAEC901EEDBBE13F17F3E570E4 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E087B9A815E5448DECCAD61830441DD /* extension_registry.c in Sources */ = {isa = PBXBuildFile; fileRef = F7535B3E4A8F0B2DB8EA3B43BD3A63D2 /* extension_registry.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E0C647FE8765D366D0FFB33592D0EDC /* can_track_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C3D0005F7CD21EC248C2E41F247B7F9 /* can_track_errors.h */; }; - 3E0DD9AC0D352DF8BE21DDFDAC269003 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 8799C57587C8AF9EAEBA09FD764819D8 /* message_compress.h */; }; - 3E1897BF8595F8907091BE7E15A2318F /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C348FDF926C27AE9A1898707E2929002 /* health_check.upbdefs.h */; }; - 3E1A8D52CFB0D990A077183023829303 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FA4564650F8DB6CF4E4C0BCAED7587 /* subchannel.h */; }; - 3E1F316B4DDE3234BC3E2B151698A4C1 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A08E99ADC3971463ED36EDFEF8B4B07B /* event_string.h */; }; - 3E258034B647542F78DF83BAE48DF995 /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = F842432E98B45B4E53E9CB5C1149C59F /* workaround_list.h */; }; - 3E2EAAB983CB4795E45FDEFE91B2F65C /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 634124EB01F71DB8F00C9A6CCC58D12F /* rbac.upbdefs.h */; }; - 3E30DA66A532454EBFBE7CEE55468846 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 07037E4FB8345A70E266E4E994D2781A /* status.upb_minitable.h */; }; - 3E3EA009B36D167A9A0CD07BDAC1B862 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D710C7D011AB9FB51546F67412FEBF9F /* socket_factory_posix.h */; }; - 3E4A44F9D4B0BBFC156B6C9272B247BF /* ping_abuse_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C09D4ED674359662D57BE06B01974254 /* ping_abuse_policy.h */; }; - 3E64728E32DD411CCB1F6955B98569CC /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0021800EE727D90A7B806CCBA93BF0EF /* extension.h */; }; - 3E6FAEFCC6AD9895D194E5B052C99925 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FC089BE5909835E906AE70D8930151B3 /* atomic_utils.h */; }; - 3E7C957D053F9D45A595D2718678ECDF /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DC51F02CDB3827326A44E8CDF019A45 /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E80BE665FE25523D9646000CA472E99 /* orca_load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E91BC802D2BAB27A3AAF7FB0A6A03F2 /* orca_load_report.upb_minitable.h */; }; - 3E8D7588C3BE6EF2987BEF1C2E381DA7 /* testing_hooks.cc in Sources */ = {isa = PBXBuildFile; fileRef = F028BC348BA97366FB18506E220B390A /* testing_hooks.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3E93D15D2F36CB40350837FE514CC77C /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 5DD69A21784C4ED429F86EA763023B04 /* ssl_credentials.h */; }; - 3E9CA42FD0BF760B15919FDB77B2E774 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A031356235358DA66ABC273C15376E /* callback_common.h */; }; - 3E9E0EDF4FE33CAF7B254A862B9F5BD0 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98F9289ACBD51C25F36630D7FD9A64A1 /* prefilter_tree.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EA106FC187FDBA5C6DA98AFD981AF2C /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 62B1C80CC08BC5D5EFCA04BE552FD512 /* sockaddr.h */; }; - 3EA15E6A5AE0560C5F10FCB997E20719 /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EBCECA327301271EDBD88D65C28DA0F /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EB13D599EFF4D7E33FBC297BC3CC729 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FD516CF5067DDC0AF15ECEE6AFEA453 /* retry_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EBA5EDE6300331CF4FAF64940C5E9F5 /* ratelimit_strategy.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E8DB2B91B24B61F1D5DCF8179D6D2F7 /* ratelimit_strategy.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EC4C67F729AD146CC1C386810296944 /* representation.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8D1B752CE7226DC1F51C0E87D8F68D8A /* representation.h */; }; - 3EC52B4E100BFF964468C8D063CBD665 /* FIRTOTPSecret.m in Sources */ = {isa = PBXBuildFile; fileRef = 56302989F1DD11B6551B6072B8ACEB9D /* FIRTOTPSecret.m */; }; - 3EC69B5C1FC9B45EFE070B9BA138D9A9 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23DF3E873FE9096B47A98D9EF27A4DFE /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3EC7FEFE185A17D0605B0CA9F3F95F0F /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C0709331C653B6BA0FCE3DF39ABBEA /* duration.upbdefs.h */; }; - 3EE27D95446A697C5D5CEAA18EA388F2 /* client_channel_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = C15BC6BBA4B13D028495C59B8183DF55 /* client_channel_service_config.h */; }; - 3EE3B0A442FDB875AC4EB7B4F4221BC7 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 974562F00B49FB233A38EFB5DE835BC4 /* alts_frame_protector.h */; }; - 3EE668E54A641E3CA18BBD5EE905F1D7 /* authority.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 00A6C05A097586B3751554BD52F98A2E /* authority.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EEF0198DFC647DF3EC41C04DDD3AD87 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 9E57DD5C73964EA2CA7F91C33ED492E5 /* native_windows_dns_resolver.h */; }; - 3EF83E354E561E03876881F099342360 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3B35CC8ED7EFC19F4222AAD9512F1D89 /* fork.h */; }; - 3F1B10DFDEE57ADEE51E4FE9181E85B9 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7312E40A892CA3E19A266738EFDEFA3D /* bin_decoder.h */; }; - 3F2F6D6D61526A1EC0E72EAD8107BF2E /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 2959CCE459D1D600FC0BE513087C1FA2 /* sub.h */; }; - 3F370A70B180A144259AA4A4609DD5D5 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 61FB43B964EF9E69412ED3FC3F8066DD /* ssl_credentials.h */; }; - 3F384155F32476EE7DC9352C8C860B16 /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A5CE65CF1C4C8E66E97FA6E88799BD00 /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F3B208285D9B785BDE49E4ECD1C2704 /* log_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE264E6D1F44D1A75536B0C07E31931 /* log_internal.h */; }; - 3F49463779800332019B4DCBB6EA6509 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 0549D9195420939D4A58DF0EB7611916 /* time_zone_if.h */; }; - 3F54A21ABB2B8BC228689D3E0DE91F3D /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06DE69DE44B0C05AC4E70D6305682C63 /* string.upbdefs.h */; }; - 3F550DA15E3C609BED496196ABA87605 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 03B98F20E5478D679A5C838AE3B998E8 /* FIRCLSSettings.m */; }; - 3F5AC14678ECE006780D232F930C4ED3 /* ratelimit_unit.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4308C383E379367BC41410AD2C702E72 /* ratelimit_unit.upb_minitable.h */; }; - 3F5CFA835828DED84401B3014FD0B01D /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AECFB02F6665D6DDD0AD5499AFA5CE24 /* cidr.upb_minitable.h */; }; - 3F5F23A372312EFA98603210BCEDEA67 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = C262F2478788C7D087CCD51C01DC9B8B /* check_gcp_environment.h */; }; - 3F6355841871DC89496D42BA8B909A6F /* arena.c in Sources */ = {isa = PBXBuildFile; fileRef = 41EE0819785CB1355E739542A02076E1 /* arena.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F701A4C8BF6E78F615E26F879116724 /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CC568764A308FBC6B04C43F97D87A28 /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F703ED4FAADE79C2FB5118AF833BADF /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 613FF4777C0F1FF37222E3B289CBE116 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3F767C94B5E644465DB15C8E66367E0E /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8916151EBCBF678F98EFB875BA0C0F70 /* xds_cluster_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F8248549B5DE007A2183809D9B2B94A /* hashtable_debug_hooks.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 51DAE8DA6C1625B178443E8B726DB7D4 /* hashtable_debug_hooks.h */; }; - 3F8E377FB96B6CBB0BCE5C80AF925916 /* base.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD4A7C8AD5D0DF53E3763DAF1C546F8 /* base.upb_minitable.h */; }; - 3F9527E7CEBF7B8437977A21E1E11FCC /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 84170237FAF94476A3AA0ECD74429473 /* decode_huff.h */; }; - 3F9D95D7276C1F3C72462486305D7615 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E4F7E2523546253CD5054BE6ED22CB /* frame.h */; }; - 3F9FF70BA222967C6528B6CDE228678C /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = B586FDB11E1B70D090A2D879BF88D039 /* uniform_helper.h */; }; - 3FA127A261BB563409868A0DC21807B2 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57252850DF54CE59A2755F65FE9EDD5A /* ResponseSerialization.swift */; }; - 3FA1EBEF205B619CBA72F7635FD1E386 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 996A200A69247F5203CB01EC2E265B6F /* syntax.upb.h */; }; - 3FAA71604C48DCB96CFD68A859A52CF1 /* socket_option.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 779321B678294D892E121844F28E486F /* socket_option.upb_minitable.h */; }; - 3FAC695F698BCAD17E3052463CB17234 /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF8AFCF10E6174A486CF83B766F792D8 /* typed_struct.upb_minitable.h */; }; - 3FB2EFFBAAB19E8D854316638F69020F /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9034E9636D93DEAFF1220CBD7974FF63 /* google_c2p_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3FBCE200BFDFEFD1ACEAFCA527FF55AA /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 51CC75871E2D81C3671959942E99A088 /* external_account_credentials.h */; }; - 3FC8067CA108B3E8F8C782C34A772A24 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 526A1E2B361D232DB8112E67236A10CB /* bin_encoder.h */; }; - 3FDD53DFBAF6E7896297212ADAE1C610 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5D853C737A2F31D574C9C31C9F441B8 /* listener_components.upbdefs.h */; }; - 3FE0EE7F94B1B39FFC23BEA6CFF44B30 /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7312E40A892CA3E19A266738EFDEFA3D /* bin_decoder.h */; }; - 3FEB8992BDA18BE7E942E5E549C33FF7 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A7427F89621B2911CF4188A2AF95881C /* delegating_channel.h */; }; - 3FF2FC59CE68B225F06F97E9D2648F68 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 143717EDEFF1DC176A514EFC7B01FFC6 /* deprecation.upbdefs.h */; }; - 3FF72A305208D2A14B2D5E40AA0554F0 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F4A357A608295126724028D4CA431840 /* parsed_metadata.h */; }; - 4003416F99EBD4F7BEB66E3E55883649 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C6CBF8AF3D699E0FB8CEC8D73D1574 /* base.upbdefs.h */; }; - 4004124779DD6DCA3EDEC43CC63ECD3B /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A765490A7BB63493E0C223B0EF371B /* metadata.upb.h */; }; - 4014616FFA975ED2234FECC282150225 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E069F621B9A559B83CC71B0567C55F3B /* load_report.upbdefs.h */; }; - 401C68C84A6FBD3086BF6AB39705DD8B /* str_format.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = EF310751FCB3F73A4A3AD17AD78A8DBA /* str_format.h */; }; - 40243652852BA35C37CBC3F28CE95539 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 456224646C705846CBE832F3A42F39B7 /* range.upb.h */; }; - 402503100BC188F99D36934D6FE666B8 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = DF9BCA34E54DE698FDA4E2CF26C51241 /* enum_def.h */; }; - 402C03BF4856FCBBD30307343A861824 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BCACDE9C6D3F94179DE6FB8E62FD2CC9 /* tcp_socket_utils.h */; }; - 40317B4C27A7FF6B2D94DC98835DE57A /* atomic.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 55BB65AECDCDF60BEAA79A0ED3098D6F /* atomic.h */; }; - 4044E7778EE6ED27A36590DCFB9F94B5 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD689D670E52EDC7EBF1D9526AD40DD4 /* matcher.upb_minitable.h */; }; - 404CDA62673476BBF053803FB7A1A677 /* tls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F2B52E4E042C7AC9667E6EAA5638E3CB /* tls1.h */; }; - 404E21EF189AD7FDA6284DC43462B022 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F64526520B4D1F5C2061701A97D545AA /* ev_posix.h */; }; - 404FD12F03C357838A4D91A872910C1B /* sensitive.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E3D0CC740858F5DA38999F6C2E5E47A9 /* sensitive.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 405677C959A60A4E39A7F3DC773E1474 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4E5B48E882D94BB69D26350E416866 /* http.upb.h */; }; - 4057A86A358CA709BA06FDDB00D7E225 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC125F2A24CEAD47260DA56856362E07 /* custom_tag.upbdefs.h */; }; - 405883ACDB738A68B78FAFE7FCE09106 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 90F03081A2FB31930020C49FDE51AB53 /* no_destruct.h */; }; - 4062D2EA4BF7547AEA07A198D078FE46 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 88CE413EDBB75A32943B9160D9FD2456 /* bdp_estimator.h */; }; - 4067B3A1DBE4254A19B15C92FD23A261 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC606A342A15B28747379F2203F7F63 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 406CC08086D9D0DD77800510404835A7 /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = B11C0B3997386B33E4E9F736CF1FAB37 /* global_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 407097A35C012B2F5FEB1B5C0DE7C812 /* string_view.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E610A9E142E5F041F6267D8CE495C9B3 /* string_view.h */; }; - 4073E0098902F07C038ECD11DFB5F8DE /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F515BB520E143DBF4B9576C83D0EA911 /* range.upb.h */; }; - 4075071C4BD1265EEBB2F4DEED63AB62 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 54BB13DBE33C8F03A2D6A77D705E3F8D /* versioning.upbdefs.h */; }; - 40866C1F32FAC035381ECBD11370EA1A /* pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = D67B56314DE8CE5E49E8EB9F4A0EFE5B /* pipe.h */; }; - 4091F6698EA14A8868290E9A722AC100 /* api_listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2560E65CA816C50E92F03E5BC09355 /* api_listener.upb_minitable.h */; }; - 40922B294B5B33494FD5F018E143AE64 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 648B36C28EACDF5FC065805D01219987 /* health_check_client.h */; }; - 4096B62DB765DF0D6FB6FC2358A409FF /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE2EBA3DE3FE1EE6AD0AE440FEE89EC7 /* skywalking.upb.h */; }; - 40A31B2FC6ACF939BAEA9F44AF5FE652 /* FIRGetRecaptchaConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B77EE8EC537CF92368A0C8259F4AB14 /* FIRGetRecaptchaConfigResponse.m */; }; - 40A9DBA33C44999C3A0DDF3E670808A9 /* eps_copy_input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = D08180E1C44F0D5FB404AB3224A094F2 /* eps_copy_input_stream.h */; }; - 40B778C7911877781951C23C7563C64C /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = DECEABD4206226AB14F87D8855BE4CAD /* wire_reader_impl.h */; }; - 40BD33535CE675FAC7FBD590630F80AC /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4F6EF8F9C34530DD51238567230EE00B /* http_service.upb.h */; }; - 40BDFC0D4F017F507CF4499BD6B68C0F /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 161D52F2794300431E6C677A995F9F35 /* pollset.h */; }; - 40C5C32B75EF3BDE857D5837402A52D5 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D969196E294DC1D00131EADFE479678 /* varint.h */; }; - 40D926572C52D27517FFC92545819FFB /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E648D50118D6CE58E27A6882E38067CD /* AuthenticationChallengeResponsable.swift */; }; - 40DBC677E11B693288E3966272728110 /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = BED8E61BB5553A2E063537CDE673EA2B /* set.h */; }; - 40DD8911318F768F0B4921A2617F703E /* alloc.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 3C76D397E4A03B06F0C1A97BF2DA6CE7 /* alloc.h */; }; - 40E528B78986962E834166D03CA81727 /* naive.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FE3467EC0A4F9934549FAFA50D5119A /* naive.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40E9D7646505A6CD7EB0206F9A321632 /* resolver.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 55EE6AB6B08E44479884261FA747F226 /* resolver.upb_minitable.h */; }; - 40EE4D58D1268FBAC1A0AD2913464C39 /* path.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FABB772091A94CC5532A064F8F11EC36 /* path.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40F9D4B0F23FBA99E7D3098C3A4EE2B9 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E07A4D74882F5BD7632C96974F11E1C /* string_util.h */; }; - 40FBDBEE83FCD2B25CB3A4C239E37B47 /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = 098A0466AE3CD02755A5192B77DAB049 /* substitute.h */; }; - 410EEDBBE9049794067D6A118ABBFF83 /* common.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BDB9D4F62C5662F38B7D03B6116FDB80 /* common.h */; }; - 4111B2F8A6D9BDD59B52E128A7130627 /* FirebaseCore-FirebaseCore_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */; }; - 41130733D51A7511F9C4BB58BC713638 /* custom_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AAB28F2DCEC55FAFED1B4A00631FD4 /* custom_metadata.h */; }; - 4115469E897554592D5DDCA4856D95ED /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = F3CDAAD1C983B858DEEE9510207E2A89 /* httpbody.upb.h */; }; - 4123DA5F934CDEEE4DD1CCDEFCCCE248 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBBB548A0AD301AEA06D6A3C08BC4080 /* listeners.upb.h */; }; - 412FA08360F4E65FD97C21A0D57EF27E /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 635EA521A6B2DF7F5E5FD79AC2F50061 /* authority.upb_minitable.h */; }; - 41346AB34B1A95B33F3D7A7EF0E2024B /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 565537A4A2A3F4A4FFDA1782252A4AE9 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 413EA7E0158FD3162C7615E7902AAD45 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C7BC8510A195B2F5B0B92A42867BA859 /* address.upb.h */; }; - 414770C4B62FAC026E75B4A817DC6DBA /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = 86B54DE1981D5C1740D09C8E578B29FF /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4148FE477565D4898E7D76C528FC67A5 /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 1BF8D2A6267FAB6975A3BD3DDF64A3B4 /* ndk_binder.h */; }; - 414E8BAD8A2C8EFEB1E9A4C92AF91077 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBB28C4A306ADE2AF12FA5490ACB0E8 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 415290080FE6E380C4D746CEBFC8747D /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 418897D38DC6B97964B32A387860BBA2 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41558C9A5B08081C2BDA05F8909DB5B6 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = F31DAACA30C2A66CC1EDE7E6712214ED /* FIRCLSUnwind.c */; }; - 4155E1924B8FC76EF105D44698EFB548 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49B5DA74628EC3FD7545D519E736DD45 /* Delegate.swift */; }; - 41572A4BAD4344F1C5D498869ED35558 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 2AFA03F02AB27507DBFC5017477FD8C0 /* endpoint_binder_pool.h */; }; - 415AAF8AB22DF4E226C098865DD2598B /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 6FB077B5F55D95D0E57A224C18D5198E /* status.upb.h */; }; - 415CD93BB8F47FB636BFE38ABDB8B12D /* index_backfiller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CA395612C1F557C35C77655C65AE4EE /* index_backfiller.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 415F159E0066656A9E1294D3E2DF4FD0 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = A9AB458C4D9667A2984515DEE690B491 /* health.upb_minitable.h */; }; - 4163BA384A3BF73372BA492032296C77 /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = CB35A86EEF79D279A2203550467CF5BA /* type_check.h */; }; - 4166A440C4AF4FDBC0DBDD9A07256B22 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 1243035B194E2ACABC9418D979EFDEA0 /* basic_seq.h */; }; - 4170B3C56458C272FFDAA752616665F7 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D9DE63503ABE59FCAC655FDC6BDC0AF /* ring_hash.upb_minitable.h */; }; - 41742EC00980B4D5D094FB081B2D8E2F /* server_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3C53F2BE338B4F6E2A28992FA0A33D47 /* server_context.h */; }; - 417F41C00893EDA9785C9D21BFDDCEF2 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EA5E6A5172430F2B625D5EB942D6EB /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41864D416DE279FE70B3281B664B57A9 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 7C54CC2D4D2D74542D65B73AAECC8DE2 /* lame_client.h */; }; - 418D2CFBE7C75C7AEA4F70C3C9851E81 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FB894B9601326269EA632F8E211BAC9D /* secret.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 418E3477A2F4777505BCDA8E04DB1078 /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = 29C7F8112BADAE0F74CCE5464D10AD14 /* work_queue.h */; }; - 418EF26E98BDEE72114DF338A9032A05 /* memory.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 21816F12823835230ED25751E5B3CAF6 /* memory.upb_minitable.h */; }; - 41901F9CAF017999E1F5279EBC621948 /* FIRRevokeTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D5DA424035C4932813745B3F49A7C7F /* FIRRevokeTokenResponse.m */; }; - 4192E8E4C25E8B8F9DD8FE76CA2E05BC /* non_temporal_arm_intrinsics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2534A0F9CC1A29AACEE4F97AA19DD6DA /* non_temporal_arm_intrinsics.h */; }; - 41944A3821D9FA4D4DBBC92E7A58DA05 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2B80DA056FD147D2E84186E4DEB324 /* message.h */; }; + 386696AD9E0090737066EB3FFCEF3362 /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA6E0ED9DBBE8136AC2DD64A718493B /* regex.upb_minitable.h */; }; + 3876BDC11900430EBA35A1BC29A0D211 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BEDA82C1E7BDF827622D625AF2FE273D /* outlier_detection.upb.h */; }; + 3876E91C01A4E39C28D074F6A3EB7558 /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 42552E1FDBE02EC901E1D21058204E56 /* lb_policy_factory.h */; }; + 389271EA4E9D8410AE5C1AF30126C64B /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43E37BA335BBE13DA9DC0988A29C8605 /* dynamic_ot.upbdefs.h */; }; + 389D19CD0A790D805713536FFC306592 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = C71F2354B188E3F2F992FE83C3EBF280 /* evaluate_args.h */; }; + 389DFF4CA4B30DAEE39AA23381C8C713 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5AD5436AB55215ABDE756C907C07AA /* FIRAuthProvider.m */; }; + 38A6C5CBD9A806175A6CBC8628EA8909 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = F4DC09138A91E215F5328E439CFE03AF /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 38A75467EE1968E51E4B6F8E6B015A1D /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CBCA1C8B3B17D9B5FC1FE27E9797E4AC /* struct.upb_minitable.h */; }; + 38AFF073A91CA26F341485E14D0398E0 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D16CD495A3998B57BF573BC453F5D9 /* api_trace.h */; }; + 38B9D58E94D9C1CECD7E381C64A2329D /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 516561CFB2EB3E21D014A8CC90BADE8B /* UILayoutSupport+Extensions.swift */; }; + 38BDA9ADF916C6FFD8BDB3E8A67AA8A3 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = BBD32D7A1573F2DEAE733DC1B4537778 /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 38BFFE498FF2491FD1C152319A94E9F5 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA4C327C273139A3733F96E498F1E6F0 /* ImageContext.swift */; }; + 38C40113CE73153124CE64C904F92884 /* digest.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C513A1BC1CCC6FDA02A6344F32892FAD /* digest.h */; }; + 38C4C700FDD9435628DAA98D78631828 /* call_final_info.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF4A17F969042C0C8E709DF4748D818 /* call_final_info.h */; }; + 38E6D0F49357C0F32BCEC50D85AFA76E /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3157A47CD653D5C6555523F2C2383E03 /* endpoint_pair.h */; }; + 38EB8F444B5F318673DAF717E123848A /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = C124A038594E1E83613BD48ECD0037A9 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 38EC12B80F515DB6C09D1FE5195CD918 /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A567752FB8434D67135D1D54C014B25 /* iostream_state_saver.h */; }; + 38F489B51B365B785F2A4D08527AB983 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C5FD094A098AEF3C55AD3812DA0DC97 /* GDTCORConsoleLogger.m */; }; + 38F9325A1DBDF2616B807CC6914C94FC /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C69321C45A392236004A842A701CA954 /* authority.upbdefs.h */; }; + 38F9597DF1B2AEE0C13BF90D191796D7 /* TZAuthLimitedFooterTipView.h in Headers */ = {isa = PBXBuildFile; fileRef = F66598499130BC2E96CB4F67283AB59F /* TZAuthLimitedFooterTipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 390A196E48C05E4BB781503ECF81942F /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C3B171F0ADED8B49E5F62E3E7E40D40A /* gethostname.h */; }; + 39163BAFF7CDBA0704FF25A62533D4F4 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 548453F7D0C3D2CF89A4139403611799 /* FIRCLSInternalReport.m */; }; + 391B34424CC42B65DBFA4A6AEDF0BBC2 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 4E6280440ADAD91FDD792772C960CD37 /* delegating_helper.h */; }; + 39410ACF41C49D6F93D45BE72664C6A4 /* sysinfo.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 17B7F45AFAAB484F0C05AFFAB757A079 /* sysinfo.h */; }; + 3943D2E5C65FF78C2CBB4ACF75D70CD9 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FB803935086A92E7AE757969A977FEA0 /* chunked_vector.h */; }; + 394F092C789A4583F533155C0FF1D610 /* atm_gcc_atomic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1B03BB8C2CAF5BA748E66A9D04F0454D /* atm_gcc_atomic.h */; }; + 394F700E11BAEA81D06B3BD1B2B917EC /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5A5F0331AF0816E9F57AF43A2BD4A2 /* escaping.h */; }; + 3960DFEC342D43DB168736340ECAABAF /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = D7B0C58CEAA3ACE574EB8987E2245A0A /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 39713681B5AAB79E8CDA1BFBDEF7E392 /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 01DDA8A6943C8067A84D50B9057552D2 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 397D2956F65B27C9E26753D1BF2D53B4 /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 97C0F1E12B870810DC5F5026432DED76 /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 39840ECD14B76221AC83897569F1CF39 /* scoped_route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5AD6D97E7A49197ADF100156C1EA7E /* scoped_route.upb_minitable.h */; }; + 3989027B4EA65EA85208F499800F0D96 /* status_code_input.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8459D9A428CE4F5997614456FB4184 /* status_code_input.upbdefs.h */; }; + 398C880A2174FA66E12DBE75D50113DE /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A12684275B9D5C7A26DBD8B166DA60 /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A1304CD002B09DC3FDBD82FC4CDC77 /* channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 52446B53C1125C2A9A76B588D69A051C /* channel.h */; }; + 39A2CC0F46DAAC1E4A81D748498C9E94 /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C30E325D7D1C222524474D3C30A820F /* thread_manager.h */; }; + 39AE0FA98633D9CC1E553F90874E6ED7 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F21C27A15A012A90CED6A39854B3DF80 /* error_utils.h */; }; + 39B1DAA935090AF8CA9A25FEFE964C63 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE6ECE863DB1437BAC440A05A44A8E1 /* node.upbdefs.h */; }; + 39BE1AB81BB8640EE76202C5FA85499D /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED65CBF7C8B42276C95008855BBF0DDB /* listeners.upbdefs.h */; }; + 39C53F2DA22D943AEFDBD19A988F39B8 /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBEB75F8C21E4E5A5E2C0FA3F065DBE /* skywalking.upb.h */; }; + 39D287366D07D417F150B7EA9F0EA5BF /* atomic.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = A2AFEB8DA88850D45913D5CC66D07572 /* atomic.h */; }; + 39DF76161820EC66D45F76981B53F714 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8256867FB1BC4F55EBB140CD1CB48E /* jwt_credentials.h */; }; + 39EBCBAE3B5787F45ECADC65589C4FA4 /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F7746F5C489019CAF221A920115092 /* alarm.h */; }; + 39EFF9E2FBC16F80629203659DC15951 /* endpoint_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 613046959DCA58309EB0473BB322467C /* endpoint_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 39F2FAAD23B8E0C9BCD20407A4B275EC /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C22BE6BA8E55177569E74CFBFB6B573 /* migrate.upbdefs.h */; }; + 3A02B0946F1166A0EAEFAE065DF18FF1 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63E0DB13E8B06E3BAE9FF9943F86C7A1 /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3A065A0D8C1F5F935C01359D8BC2B9B3 /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C24C574683A0F3719EC7FBBA4B5ECC43 /* alts_counter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3A070DE99FCAF2B4F583F8F38055C287 /* wait_for_cq_end_op.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AC3A66959BCFD933D1DF4A41600B6 /* wait_for_cq_end_op.h */; }; + 3A154BFC5778205691825D1CFCF10BBF /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 6F4F73CA06E08E2B951639689D702840 /* binder_constants.h */; }; + 3A1A69505A6C5022674C8E26CB34A700 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B9C25FB7463848DDB0BA395DE1C722 /* slice.h */; }; + 3A2C7CB1F97033CF214B3A3759CC4A79 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = F19F771DA3CF7E0A9081F4EE5DF7970D /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A3FB2D0AEB251940C4D1B1CAE82B67A /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 434F3B48CE807859FDE920B8429707A4 /* discovery.upb.h */; }; + 3A4430EF181379A823F066E83123B120 /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6107471E137FB2243B9F476F2085974D /* any_invocable.h */; }; + 3A45982735C4A4536561AB692470BB4E /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CAFF0A6A48D78553506885E9CB7AC600 /* tcp_server.h */; }; + 3A48E7D25887C43790A970BC9B15C6A7 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E40501E6A28ED3F6AE0910D29C3796 /* extension.h */; }; + 3A59CEE43F03A495144A1AB2D1C0D962 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = CD664630EC279AD48D7A2DC36F2EC5E1 /* time.h */; }; + 3A59D8FBAF9A54906E3644AC80465AFB /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C24823550296D9E0312652A2019288 /* Notifications.swift */; }; + 3A59F83C1054D1C5331324370DA943E2 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = F21251B3B2BB0CDD851AEC879C820B27 /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3A5B8BDF5B59D20173B58AB3D850E052 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 995A0DAF8304CD32FCE81A1E0F929A04 /* timeout_encoding.h */; }; + 3A5F1619AA73CF65E35751D8C14FE5F0 /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EA2AB609574DB36A6E122F01F2A9DC /* export.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A5F4D2076FD68630A05E2AEEFBEF929 /* non_temporal_memcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4CBA6B6FAB805AC62E53ED590A1DA6 /* non_temporal_memcpy.h */; }; + 3A654AE3365D775FFA7666D8F19715E0 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = DDEF3D448B41C07B784BE9937D42DF0A /* map_gencode_util.h */; }; + 3A6AC325E25F84C10152C0BC4D227964 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBD9B612978860EDDBB8B3D852FCEB9 /* http_inputs.upb.h */; }; + 3A72D0E50134ED59CECC78D11CC2A4A6 /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6ECA2329955F1B9390C60EE398058D75 /* external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3A7B2ED7A8E468CFBA7AD70B14B4F628 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 527C7153FD9B0737F3C45E979DB9CB71 /* metadata_batch.h */; }; + 3A8692434FF9F9FED3FB4AFBBE439E1A /* polling_resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = B03A4227E1A0DB6BFD7CB042796D6A57 /* polling_resolver.h */; }; + 3A8C0AC951ECF8A9988F5BDD1270F05E /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = CD76D0C13173E592063AB8EA4D1D9ACE /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3A8E82E44C97367339708F4C36D9C799 /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 1E5532AE10BFEFE103F4595E0A58B2EE /* message_def.h */; }; + 3A9054D7F16D65F4BAF8EC570A694BF3 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 500470F19C96815DAC95C93796976B04 /* arena.h */; }; + 3A92466D4AF5DCBF9EFC1FC364FBD1D7 /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C35C03BA6312643C6C7EE82150C61586 /* grpc_method_list.upb_minitable.h */; }; + 3A93BA082A36E5381EB506E26DD7514E /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 104F8040DF8D71855263CA6F905F6F68 /* wrr_locality.upb.h */; }; + 3A9E0D5F2709E94A45B958E9F6D1B82C /* message.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 9FA4409FEC8D1BBBD9CCA77A2C04D8CF /* message.h */; }; + 3AA1C5EAA42BE1EC60EC3E1DF7B20C14 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = 625FB89E06D81C5B010554937BAC33FD /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3AA3DABB241FB655F8EE42D02EC95DFC /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EAC2428D431B65CF2A7F9125542E5C4 /* Kingfisher.swift */; }; + 3AA8A4F7A05730F06B0A62F10CA1B371 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D327DB8433E7FB4822F2658AC38A4D /* csds.upbdefs.h */; }; + 3AB376123E2E7AA29CB69ADA7DD2747E /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 505F2C19D0EE4A3524AA460499EE6087 /* resource.upbdefs.h */; }; + 3AB6370A48DBC0732E88725BDB76EC03 /* listeners.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 40EFD834DBC3F9F29E735265E09298A2 /* listeners.upb_minitable.h */; }; + 3AC0D16012893FC32B1DFB9980DD4864 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7FB9127D8D7066B5890F31B35A0749 /* fork_detect.h */; }; + 3AC30356B1DFC774CAB1DA7943FD122C /* default_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F319EC7880A470F3792BDF2326734CC /* default_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3AC9FBA9756B8125A4F433F332757CC7 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5829A558FA18F71C179308930C7D75 /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ADB2C9D136788D89B014138A82DB446 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = B774369EACB83F360DA6154321A7DFB1 /* hpack_parser_table.h */; }; + 3AE75C7BC72B6A5C06BFB4088A9B44BF /* FBSDKMaleSilhouetteIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC3D6C2D94C86343A9E8BAB1BB9BC08 /* FBSDKMaleSilhouetteIcon.m */; }; + 3AE76612CC1A1E0431788EBC2CCFFCD0 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF2BFB844345F7E1E8654E74FD5F7649 /* channel_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3AEDE3D2DC93F8B078E927E176720133 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A8EEF2A96629191931384C824A92A9C /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3AEEA905BA6F5B05DC3107C2FD86CB0E /* ratelimit_unit.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 327A16D23D15556F50569E28B07D4DB7 /* ratelimit_unit.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3AFD12617B6031A25791C2185EB6ECD7 /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FF4FAB214E4AB4E595DE7910F61DA6D /* path.upb.h */; }; + 3B0C447E1BC34C7F0F678E4C7C8111D9 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38C25ABD5997A282A109A9B5A8B0078F /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3B10467C119D682599BE01C8DF360654 /* FBSDKUserDataStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F51CC21AF56E6EFFAE28975D182E5A /* FBSDKUserDataStore.m */; }; + 3B135F1519446BE5223599CA2E060A30 /* enum_value_def.c in Sources */ = {isa = PBXBuildFile; fileRef = BB2F0AF93C0B22F9E7AEC54F23428972 /* enum_value_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3B1FDBC115C31E0CF8346A532169B3D5 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B8CF72AADBB85E061621EFD9D1865B /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B24740F62FD0B408DFE95578B84EC73 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = D95B920C1E119428D6415786CAA23D26 /* alts_counter.h */; }; + 3B3D3C4E533F60A5E081332EC25EEA43 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 017AD30D5CAD9D9D06D0713310C7D4AF /* deprecation.upb_minitable.h */; }; + 3B43D5CD64E9F6E00D018E923607E0B3 /* if_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFCC30F1E3483D75E191CD8CBDF551F /* if_list.h */; }; + 3B44EC920E976E5A7E9EC3BD7A760CB9 /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = BA9FCA856DF504C762115F471031D101 /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3B49C62987C963D6B9A6EDBB9B135FA9 /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E13E0FBB4974BBF1B64711E76875D9DC /* BoringSSL-GRPC-dummy.m */; }; + 3B54DED160D29C043355ACE7B0BE64EF /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5489B99BD81FC0861591486FF9F50927 /* FIRInstallationsIIDTokenStore.m */; }; + 3B74CAC6D42EF92E35C50DFE040FB4D2 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 382ECE3666C1FB2A3CA2734C67DDD67F /* certificate_provider_store.h */; }; + 3B7D39CC1A855F9D35E19DE03E51E824 /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 140CC9A59497434BCF997F46538DC343 /* syntax.upb_minitable.h */; }; + 3B7DA705F27787695F529BF95D6FF072 /* status_flag.h in Headers */ = {isa = PBXBuildFile; fileRef = B80D48C5A64A7624D67CE3927ABE8C1E /* status_flag.h */; }; + 3B85C79E06FF9A9A7BAC7DE9DE2E9005 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC44C019E4D79F61A56306C537EEF020 /* prefilter_tree.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3B88BEADCB6CCAB344E88AD80CE01E07 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = AD7A6710522D06E0F1CC7067623893D5 /* status_helper.h */; }; + 3B897304F8437AC3454CDB5ECEC38673 /* thash.c in Sources */ = {isa = PBXBuildFile; fileRef = 91A3C41F940C61B1D0B6B183594F79D2 /* thash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3B8ED1F0772B86D35291B8BF1FF4116F /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7BCF0920BA72807BACCFBC594DFE99 /* channel_args_endpoint_config.h */; }; + 3B96F2FC4C5D9FA3EE678D0EE229B633 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 212A4E78CB9B5A5BA548266334DCD4C0 /* substitution_format_string.upb.h */; }; + 3B9E4BF705EDD08421FB2C40994E1E57 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BAF3C4A7F98749D7DB3B6764214D42 /* p256_32.h */; }; + 3BA60F0E808BA07438E269E9C688106E /* FIRCLSContextInitData.m in Sources */ = {isa = PBXBuildFile; fileRef = CA4F0C1BDA454DF890A3D16551E4E1C5 /* FIRCLSContextInitData.m */; }; + 3BA6C7AA69EE8220EB129C8919B09AF7 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B364B3CC3E3C1CF6704440D2FA347A /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BB398039CC19AB563565F937DB83A88 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 47AE1B4EE32BBCE2D93FC26E9E617B02 /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3BB825B4A332C89FA5B804F588B89838 /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 925A1E66E589523CC8F70D722AA39208 /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3BC41177BFFA9A1482F1266901E036E9 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 79F47A8A559BB5BD3B3F822BB238E789 /* channel_args_preconditioning.h */; }; + 3BD3CCF9397AAFFB5BF0B86FD07E2A24 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF37A4C13D7762AE7F66A1DE2AB82B9 /* metadata.upbdefs.h */; }; + 3BE0401C7585E5DDDEFAC211C2AED79F /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A3DAEB8FC788A26332A6FE8B472C04C8 /* default_event_engine_factory.h */; }; + 3BEC7B693B5FB632E697E85816976A12 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B82E110E2968CF39A4040E577F7644 /* load_report.upbdefs.h */; }; + 3C13F27792A858B9D0C0FD8A1E06222D /* windows_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = D84AE38CB5DF65BDEF784C13AF5CBA54 /* windows_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3C15A911C4A9CEF1800A88301BCAAD9E /* if.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A51E8BA4EA401B015CBDC00F02A33A5 /* if.h */; }; + 3C1677A8C48D52BAD81EB6A5DD19DA05 /* gRPC-Core-grpc in Resources */ = {isa = PBXBuildFile; fileRef = 3A6314653B568326014FEB5B7B3E6ABB /* gRPC-Core-grpc */; }; + 3C17471ADE90540BE7347630D7ECAC93 /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6C504B1FA1D2B98CF832062D374ABA02 /* call_size_estimator.h */; }; + 3C194B236D7E2726639A91394DEF3FB7 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52E031A728FC0EFC1BD71A918550BF0C /* tcp_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3C1DF01E9116C0BBB92EE0AC7FD69BE9 /* string_ref.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 10385F0BE97FDBD9CCEA5F03BE1196B1 /* string_ref.h */; }; + 3C350D227F2EA3863088F3DAF1E60290 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 35F7E5549B387FF4D2F6749F2DA954CD /* ssl_credentials.h */; }; + 3C396A3EEFD81B076C362D90B088003F /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1F2CF1DECA8502F4A9093E03F9DAAE /* xxhash.h */; }; + 3C3D4A30AF3B3CBCDFF7426811648DC0 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 699D5BE84EEEB74D95A4362685B1488C /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3C42500D4F621E042A7F67D8EC28DFB1 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = B431E850FE0204967E67090AA5A47E71 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3C49108FBFA525EF458C48B1AD17D097 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1951EA0017420B74D4D7088EB45DB400 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3C5AE7A93EC96719033C59C0B302BD02 /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = 723B34E1B8F9F615E43E996810C17CA5 /* security_policy_setting.h */; }; + 3C5EAF6CFF9BC3B485600E9B3529F728 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = C82031B0255609EA7E40093773B2AEE6 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3C64E855CCF6C4904AD57BA706FD1E67 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0510791D2E6ACE818657EC1890F0F139 /* listener.upb.h */; }; + 3C86BFADCBB5D0FD060B7A9A149258EA /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 2CA3B9A39D5D2C3EF6A4AEB2354DA837 /* latch.h */; }; + 3C89B810A40BA66EB6087EDA5BC4E95F /* port.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = E90D9F53B1305DA51E4A2A6B8092362F /* port.h */; }; + 3C8FD6DE474F6ADF6FCA802900529E3C /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = F61D0928ADC480E05115063FD02D07A8 /* single_set_ptr.h */; }; + 3C9BFFEDD59E6437DB0E072F5302815A /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = F89C6664671D9F492BD9FE022A8A3CE4 /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3CA98F3C4EC50A33CF125382AB1A3F3F /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F7CDDB596B05FB09FA70EE09491E692 /* certificate_provider_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3CAB82A1F13B6851515A0F28B6896872 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = F33CB711856B63E4629A0C42C1164025 /* random.h */; }; + 3CAD3F2D58FC3E3CDF688433CF8235A1 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = CAB4A9A40E8DD8556CE89DEF326F707D /* slice_internal.h */; }; + 3CAF1CA891A2328D7FF396713F6AD787 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF785AD622F0A3DF65D916157DDDAC7 /* upb_utils.h */; }; + 3CBB86CF125C5BD14574F000A8A4FA5B /* create_channel_internal.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = B7B6A8F1098887444BECA6204C2AA58E /* create_channel_internal.h */; }; + 3CCC86EAF10CE1F1A0763F2407B386F6 /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = DE79A230F7B541D0AF099D7F3F8AE3A4 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3CD2BBFD955DD75975A2EB16483BC7A2 /* hpack_parse_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = 377AF364183169413C9BA5427A199CF4 /* hpack_parse_result.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3CDE95BEF1950143E8D0318DE075E8BB /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E020E1E84316E92D6E005259196D4F /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CF2D3247BF85EF1F8D86853CA221AFF /* LLFilledPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A6C400984391DA1AB803D642BD6DB1C /* LLFilledPageControl.swift */; }; + 3CFE364D6D0F152430B4AAD6107CE4D6 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = A78D284A99973E11E58017DC8BFE6082 /* channelz.h */; }; + 3D0607A1A314A24B26FBE0A105EB378A /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DB15F26B5599F886315F481D1DBF12 /* hash_function_defaults.h */; }; + 3D07D6E7DE2661E00EF15E6BF448BB73 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C45570006BD7A0807F70C19B48D1202C /* cel.upb.h */; }; + 3D144E3959A611FD5E1BE20A123EED00 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = D362951DE6C3CDFA6F7EB8A6BD777F18 /* file_def.h */; }; + 3D1B3AA254E8F800F6A4D5E15549D3AE /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7751D2F359D542F4C5F31C687F7344AA /* tcp_server_utils_posix.h */; }; + 3D224822CEA74DF436A97251B86876FB /* default_event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9814270A1CA8890ABDDC4E6A264D7F44 /* default_event_engine_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3D2AF10951635344102E33DFDF30274C /* SettingsDownloadClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401FE22CB247B28C9FEBC9C2A8DD823E /* SettingsDownloadClient.swift */; }; + 3D30FAC015725502E1C511B82BCF7ECA /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91787E9B4360E9F5B839CBA50D55ED14 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D37159EE7693F7FDC7359E630674824 /* any_invocable.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6107471E137FB2243B9F476F2085974D /* any_invocable.h */; }; + 3D5114E34E21FB9473FDE6941FBBBBB1 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 17E35F82579065A021A5CF6DB45F2162 /* ads.upb.h */; }; + 3D57447CD2C986C8854DE7083B819135 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7962DA9A5A23711DB38B557970DEDDBF /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3D710B4CF7D40CCAA106AF6DEF872E88 /* getentropy.c in Sources */ = {isa = PBXBuildFile; fileRef = C6DBFE1E6CC27B6F12CC8C3B1272FDE6 /* getentropy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3D76D3A160B2AC8E1A3B13A2CEAB6F2B /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = C91B90B0871D3277820AD583B0E198F1 /* resolve_address_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3D7C5DEE6E3792020F7B16186D52AE4F /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 67B9AC9D46A1063714610CCB157579F5 /* env.h */; }; + 3D8538C1BEDE7B1986640A39762FA5AC /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D0B78FEF05E3593E16E2194140D530A8 /* block_annotate.h */; }; + 3D8FDC5B818C642485F6374A2AFF8C9E /* Promise+All.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBCD7AD3FB337CAB57637052E84E93D1 /* Promise+All.swift */; }; + 3D9CC4929C14D5E32DFAD3794E34CA73 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = E4DE7ADDB73941D5687C54494C0815C3 /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 3DA9F5579C437ACB7AE5C5158A4273BF /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 312267514EB8F4C7FEA7345C8559C202 /* timer_generic.h */; }; + 3DADA038A5055BBC53A5494B4D4C93AC /* config_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F29F49366F585AD008162B3AC2AEB3 /* config_dump.upb_minitable.h */; }; + 3DC2F6706B22983F9196D4719049461D /* call_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 710972CF4955B7E1676B60D502F63B72 /* call_filters.h */; }; + 3DC7116240F2FAD8F8009E934C63CD33 /* endpoint_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 538B140C5121F157D97EC84E6A98A4DD /* endpoint_addresses.h */; }; + 3DCBF23B9DC7C9F96340EF615D6A900A /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = D54D665EDDCE65E364679A76103AB8AE /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3DCCA6C7EDB7E982723152D0AA8E3CC9 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E185FD75CB4F7B4A14F314AC655A3AC /* handshaker.h */; }; + 3DDAB080C3AC3ED1C1EEF80D23462173 /* proto_buffer_reader.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 4F9BD488AA18A32470D5D6F8B023473F /* proto_buffer_reader.h */; }; + 3DE72CF9C63093C91F0DAEC9E78780A5 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD647239CFCFA71DB0D248D785F2087 /* internal.h */; }; + 3DF2908D0FF997CFA0F2742B446EC09A /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 430B809D104C159A84D2687EB355C365 /* spinlock.h */; }; + 3DF402F5F965FA6095762EF9F618AFD9 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3E659287A74927D9DEE58530FC8514 /* cordz_statistics.h */; }; + 3DF56527A3A796ECB5B6C42869A795E0 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4C7C91C465D8F1AFAEED9EDA3454A11D /* rbac.upbdefs.h */; }; + 3DF5A73609EB7F7E4AA5C6B4B00F2ACA /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D4300B8A14BF4D6A554879B1690EEDE /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3DF8158DC3F43A4DF5558951DDF790F1 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 042DEAFAEA06E04F444CBC0D33478866 /* frame_handler.h */; }; + 3DFDCB82A18CB97792106C4EFDCFB32F /* ping_callbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C4C9648E7D5A8F9BFC257FD818688 /* ping_callbacks.h */; }; + 3E052FFC1DD614DDE6119CE63BD11EF8 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 399814B0D4DA3B134F4D98D4F6951D1C /* alts_tsi_handshaker.h */; }; + 3E0B0DE49E6536EDF4181DBA7A9E63BF /* ads.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E8A2D604EDB05298F1213F66AD5FB9 /* ads.upb_minitable.h */; }; + 3E0EE01D0D92F8BF65A74D61505F5588 /* opencensus.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE688BC1AF39CACB0F3ED48D817EC72 /* opencensus.upb_minitable.h */; }; + 3E0F3DD95AB4B7EA769C85482F4CB6B7 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D2800BA967F85ED0C36E2F1A4453F921 /* posix_engine_listener_utils.h */; }; + 3E1D11B05D654B8D7434B0D622E2DD46 /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = A7A5779B12A40DE7B1823D1858E94F0C /* trace.h */; }; + 3E2AFABF18EAEA632EDBD6BD28E5013D /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0579682425E9E8135CE7A3796D2481C /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3E322E5C14077A090B84DC417BB9587D /* crash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8772FF80674969F8FF5111EFC17888 /* crash.h */; }; + 3E3969B734859F8A136750DFA2F1B3F4 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D40F2E40BF72A20CBDED712AC9EF43EB /* config_source.upbdefs.h */; }; + 3E3E4A4F97FB1F4FABF1E83917A03384 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C855CBEDD9DF6F6E3FC6D8B6A6D12943 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E486A8D7C5CD2C6B09F4557D50CF610 /* interceptor_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA2890982E1AF9F125BBA8E265F4C76 /* interceptor_list.h */; }; + 3E4932CD54C34964450D9DC0D0479C95 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = E90D9F53B1305DA51E4A2A6B8092362F /* port.h */; }; + 3E5769EF5BC6F538AB5D6D868BEC34E5 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A67D9B600EEB932F89171189FBCB4BF3 /* fault.upbdefs.h */; }; + 3E57F4965B71DEA90B65ABF5C35CB6BB /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41B9F4CAFF01F1C56AD22E88DB5A6EB7 /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3E5AC8A44774E756CDD9D1484E39D560 /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0398C48D3A0C48734E31C33CD52381EB /* aes_gcm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3E5C752538B53588FBD9AB4778E6C2B0 /* byte_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 96266F5B228DDC071537C6022BAF511D /* byte_buffer.h */; }; + 3E5E17F0A1A866BD69F0C65EA1C3A105 /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE420AA17E265CAAD868AD8349EDDCCB /* metadata_array.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3E65ECD978A3947EC36FCC20E528B70F /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3ED481E813ECB0A8DB0FA0274C0C5B4F /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3E6805937A22D30B6E892C27DDC5C46E /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 663F4FFE7C8BD9480AF2AE3AC32E899D /* clusters.upb.h */; }; + 3E688BA70674E8B1FACB104A41E33156 /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC826BD434761D664ADC85D3F8AA5CD9 /* xray.upbdefs.h */; }; + 3E773A70682099F40724460D6EDC9272 /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9F4F6D73B2B03B0A70402CA20064DAC /* rbac_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3E77DDDE033F5E14121BD9B36EFE1541 /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CF860ADF4B6DBFBD92AB24314971A38A /* tap.upbdefs.h */; }; + 3E7C36AC94133294AF80C1FBC28044E6 /* directory_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 14236A57326ACF9E8BB7E2B6F72E689D /* directory_reader.h */; }; + 3E7E0DE230DC9398FDF82A374875ADA1 /* LocalOverrideSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0F1DC1B4F860960A3DE9F968C10A130 /* LocalOverrideSettings.swift */; }; + 3E7F9F5E63DC7670CFE4A68547F61A14 /* marshalling.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8AEFA1D9937659CA0E31E830B332CC /* marshalling.h */; }; + 3E8A22CD5B1D1365B20EC84AB97018A6 /* encode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 457AB4E2347A73977DB84A45DC127DEE /* encode.h */; }; + 3E949A919EF7E8ADEB932C61CFB12DD7 /* random_early_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = FD983B46E98A25461E2DB0A24AAE9A63 /* random_early_detection.h */; }; + 3E9605E4D10CFACF8F1B7C3CA0183068 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 09DA971D368C899A08884B7857A9F4BD /* http2_settings.h */; }; + 3EA28E69BF4732D55F73D9316020D2E7 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F495A82F0CD5BF03685A234AD607E6 /* path_transformation.upbdefs.h */; }; + 3EB52ECBD3B570A41A8CA16E80776070 /* futex_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A789329F38CB15D560580E9B75B4DEDC /* futex_waiter.h */; }; + 3EB69234EB4F13384B8D97CEB073AA8D /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C8604C2EF5E2350262E257A84A9614 /* opentelemetry.upb.h */; }; + 3EB9128A86297425F45B6B4CC4A814C6 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 80392821CA2BB9E2206B98032B7AE913 /* fake_security_connector.h */; }; + 3EBA77D1E10A793FBB4A64B88D5816C4 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AFFB29860F852EA35ACF3318485B163 /* fork.h */; }; + 3EBC999BE0E89AFC43C10084F0D57614 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11C7C71F95E6B821CA04414968253420 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3EBE4B936FB701DD319B8E05AD73754B /* encode.h in Copy third_party/upb/upb/text Private Headers */ = {isa = PBXBuildFile; fileRef = 7B09537410859BB96FBB351CBE568C8D /* encode.h */; }; + 3EBF8D5F7C88B633E82FCE1BECCDA5B3 /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = C2475BA7C195E5EC2CB6EC170390794C /* deflate.h */; }; + 3EC39249543E56A1132585F97D8E917F /* GTMSessionFetcherService+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC059B96F9DADED28310C06307B6C584 /* GTMSessionFetcherService+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EC52B4E100BFF964468C8D063CBD665 /* FIRTOTPSecret.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC533A5CBB2C1B2034F83CEF8A41BBF /* FIRTOTPSecret.m */; }; + 3ECFBAC9D170F690C00CBB468A5D28D3 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 4159CD378B07B500BB26724A9649F928 /* transport.h */; }; + 3ED22EEC1536CA53BE6D5894CD840830 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8E0398F98DE22BCE2D5ACA65FD3070B8 /* tcp_windows.h */; }; + 3EDE280150730279A29DF4AD0DA2F2C6 /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9616AE8C05562661742A4FDCCA0FE471 /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3EEC383BC368C98151A06A2534C548C4 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 0F7E164C552CE8C0736461BA6B3F0993 /* extension.h */; }; + 3EECEE5FD83ACEA9958A25D414AA7554 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4D60F3E51DBA83A0D8E272C9F2887E /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EEF98F763B1F54B16F18FA63084E18B /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C748D23C4AE21CA75CD64E57FF083F /* gpr_types.h */; }; + 3EF48727D7D9B90043FC9C76D871887B /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = FB49750C126A44CDBF1595A4033B3DD6 /* call.h */; }; + 3EFBFF5E8FBEE0AFCB43F0AC5BDD30C3 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CC2FB3696CC908F00BE9F98BB1DFD9D /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3EFE9857F51107480C0488D4DD1C0295 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = E188AB154183AE844F9DB05C403212E4 /* NSURLSession+GULPromises.m */; }; + 3EFE9E066D2086BB46528F7C97D4FAE0 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 145DF62D59F52E6D5DF6E58FC9F0486C /* zipkin.upbdefs.h */; }; + 3F0AF62344ECE03FCB7912DD3092BE80 /* sensitive.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B29410B439ECC404ACDDB43D0FD91D7 /* sensitive.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3F0E2479F9E926F8C36AC52F9A89256A /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 005B1C80C2CDA870B38AA4AD9B8CFEE9 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3F205337CE82A3BC564647DE815FB8C0 /* server_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B8C207BED72A28306D7CF2BAABB1A1AA /* server_interceptor.h */; }; + 3F30283B6E2ED003D5B40B9B17421119 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D31A6D42386A8B38EAB70FE4DA55FB /* alts_tsi_utils.h */; }; + 3F37425B480147DE8096122CF5310CFF /* grpc_audit_logging.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A5AA3481EDA79EF99FCA4B363206327F /* grpc_audit_logging.h */; }; + 3F54F6B19507762B409377F7C4940354 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 78FEB31CDC03FAA1066CD0B893063427 /* handle_containers.h */; }; + 3F550DA15E3C609BED496196ABA87605 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E5DBE4C86A8077220295010033D540 /* FIRCLSSettings.m */; }; + 3F5716D5A9A87E838DC8DD5E35CB5E21 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C9854A6EA2CFA14B25D6619D3656E478 /* http_server_filter.h */; }; + 3F59FC896CE8A14749BB51DE7B396C7D /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = DA3B2A1CF1B7D81BBD1DF3B0BEC2657D /* aws_request_signer.h */; }; + 3F839512755F36B328C00E056B8910D7 /* shim.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D5EA5E43CFE905014D68BF50ED8D786A /* shim.h */; }; + 3F867FD7552871D96533E40E5EF8FEEB /* bloom_filter.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8580F5B403061ECEA18849EFE74AE859 /* bloom_filter.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 3F8A68FA14F4F3E39A26283919C4237F /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF860ADF4B6DBFBD92AB24314971A38A /* tap.upbdefs.h */; }; + 3F8B0CE28BD8D0BA322098A3AB264966 /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BCF680A82772E13DEDFF0F091B6A2E2 /* oneof_def.h */; }; + 3F8F626ED41F8C73D05A4FD934F9C64A /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AB7C827319214B0C570025E230D6E2BD /* http_tracer.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3FA127A261BB563409868A0DC21807B2 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B7D024FF8444ADA7AF2E7DD190F43A5 /* ResponseSerialization.swift */; }; + 3FA76183BC738BA403A3D14F3303DFA8 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F362C72EBC35A29BEF0D09F9848663 /* timer_heap.h */; }; + 3FAA73648783DD1EF5BB9F84D705BD37 /* prioritized_race.h in Headers */ = {isa = PBXBuildFile; fileRef = 455057A8FD941C3E723C4FD8C0EBCC2E /* prioritized_race.h */; }; + 3FB3C08450F5B4E53D1686FBBAE6F181 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0462BAED6CD71EF7BC99875A9BEA0B76 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3FB51F1A06EC6D09EFDD9A98CEFFED5F /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 065AE978F3ACF0CB44B9FC14E6F42A31 /* grpc_tls_credentials_options.h */; }; + 3FB52EAC948983987F561F069F57629C /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A3FAA1E303655DDF15F2B874DF44DBEA /* route_components.upb.h */; }; + 3FBBEB35C704406696E92DFDBA936960 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 18852AC03B7A2985EEC2441932668C80 /* decode.h */; }; + 3FBC3BAEB3AECF5231A6EF0818A8EB14 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C872351956896144B8026A89DFC964 /* alts_counter.h */; }; + 3FC8249386E0FBEAB5F6B3975433FED2 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1492C4A8F115A4F91913A29837BFE192 /* lightstep.upbdefs.h */; }; + 3FCECD08BD8182677266EAA5105DB8AC /* string_ref.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 344023CAD2B4DAAE09F010F3F36FE020 /* string_ref.h */; }; + 3FD7DCD83A2A933CA9C3B2283B0C191D /* config_source.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8255E0322A42BB9AA4EC784CD5D6EC87 /* config_source.upb_minitable.h */; }; + 3FDC8DB69C7CD39690EF848F6D03662B /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93204152A35CAA5AF7F22BB973484FB1 /* fake_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 3FE1C5A59B6B8B117FC030A5448929E0 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6EC189FE82AB42456B9CCE5450249765 /* ev_epoll1_linux.h */; }; + 3FE520395D8961348C29846945758FC4 /* crc_x86_arm_combined.cc in Sources */ = {isa = PBXBuildFile; fileRef = C84505D42524DDBE316D6BC328F474E8 /* crc_x86_arm_combined.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 3FEB1F139EDF9AD8FCF9A9503B081789 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B95F6F6F19ACC00DBA2A8CC706B573 /* cel.upbdefs.h */; }; + 3FEDB3251DEDE3919AF76D42FD277B5A /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BC81E35D2BAE406D27CE3D2F44F70AE0 /* filter.upbdefs.h */; }; + 3FF40F0936177EEAD2A93086A1365E82 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CEF911855FD910696A582BFF8497939 /* resource_locator.upb.h */; }; + 3FFF326B0DB54F08BBA47AAA29025819 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 627BA41E2B8E5227A95EAEB8396A46E3 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4006F6370F10D4CCFD357D9D39301BAB /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F9DFD1621AD255EAFB1DA3554DE62D /* generic_stub.h */; }; + 401207A92BD2C6B04808DEB1E9208BED /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 627AB393B9E6D561A6E2486604B4AE71 /* debug_location.h */; }; + 40177514F2DF5992274E3CD34C8A8C0E /* FBSDKAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1484D5569EECD86C427EE87510C04B06 /* FBSDKAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 401A18CF4606C31388002981B0241BBE /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB62CD82A8DA0285F385CB86C072455 /* clock.h */; }; + 40312919EC4CC904B00FEC2D2E2DE3D8 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1AB41D141FAD4E821D5F919C8610FC31 /* protocol.upbdefs.h */; }; + 40343EB90C0A23739A8E53637628BECB /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 799C98826FB7B3D4092483E00BF9F38F /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4035F39F5C08B7293A35A8832561DF00 /* pick_first.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B075B5E22B3D9365467D4B17D89289F1 /* pick_first.upb_minitable.h */; }; + 404509D4611A66E0AA70CE35BCEF46A4 /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 265646EF2B71CD269C23336D2EB19B4E /* proxy_protocol.upb_minitable.h */; }; + 4049E0CDD386A2B9A69C8E3634A35637 /* arena.c in Sources */ = {isa = PBXBuildFile; fileRef = 695959291EB4010C42EB83FA2F7E0508 /* arena.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 404CDA62673476BBF053803FB7A1A677 /* tls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FD74546C6B80318E3AFA18BEC6CD00E7 /* tls1.h */; }; + 4059375BFD7C88B7A48A441B795586F7 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = DFEAC7466F5BB4C5E6D2E2AD501B283D /* wakeup_fd_pipe.h */; }; + 4059A31AA620C4B1655D0740BF0635FB /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA3DAF3C67CC39DDC0DEC7A38BCF864B /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 405A4C32454EA0CF5B2035CB396C3264 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CAFC7942485836905B6004A161A454B /* matcher.upbdefs.h */; }; + 405CA8E98DF6277DC89943CA65CBD6D0 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F17F7B5049ABB1E34EA9F558ADF427E8 /* rbac.upb_minitable.h */; }; + 40615F5AF220BF26AC70C981970383D7 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5D0D9EF104A926D047786C97744C121 /* http_inputs.upb.h */; }; + 4067B3A1DBE4254A19B15C92FD23A261 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA233ED2C54C8E2744A66184C64E8FD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4068CD13587D4FE00957DE104965BC96 /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = F79B9DD255D7C81A67EA416054EE17F4 /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 407B3B9851CA6AEBAC4DB45942A483D5 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C10B8017B7F9C09517B5511D2E6C5601 /* token_bucket.upb.h */; }; + 4084188617A161A900C481002C38187A /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C2838AC26D907FC7ED5FAEE67F8D69B7 /* hpack_constants.h */; }; + 408924008C77C6E183ED9638CB722F35 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECFD5E50527B395D33202A9D991AF841 /* cert.upbdefs.h */; }; + 408936DCDA01198B1333332902651CBE /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B5FC53837E0B6E5CE60F64EF677812 /* avl.h */; }; + 408A970F264BA1EEA20521D2A1CC21B8 /* external_privacy_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 040F15ADA2E252656E99022DEAAD73A4 /* external_privacy_context.nanopb.c */; }; + 409C85F94A74E496FF330F7EAF3BC9C6 /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8837AEEDD09A4EF408C833BDE339CC00 /* symbolize_unimplemented.inc */; }; + 40A31B2FC6ACF939BAEA9F44AF5FE652 /* FIRGetRecaptchaConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAA46B3D7839471D11A3F71D4FDA57D /* FIRGetRecaptchaConfigResponse.m */; }; + 40A471C92D5A7453EE9C4AE2660BF397 /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 36010401C0AE2273ACF3A522425E54FA /* struct.upb_minitable.h */; }; + 40B005EEA14353F5F7F79257995BA9B8 /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A90CD91C2CA9F3DE5D3FD78499B8E49B /* socket_utils_common_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 40C5F32C33081C52CFDA9E06493234B4 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0A38E4E4386BE64FAA131A603EA677F4 /* grpc_polled_fd_posix.h */; }; + 40D8682C58601443C9B2086B3E29F6EF /* mutex.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 54CA7C7E4B3D7D5FBC0C839823DDDD1A /* mutex.h */; }; + 40D926572C52D27517FFC92545819FFB /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90D0D01B52391BFB840AF92D198D6B42 /* AuthenticationChallengeResponsable.swift */; }; + 40DC7AE79B96DCCFD250F74B255BB40A /* sockaddr_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1ACDCA1C46D56E00091B90CD18C77C6E /* sockaddr_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 40E4FC657A96788CE15967827C317FA5 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F798745055D8E8393D8198C37E0527 /* tsi_error.h */; }; + 40E6F1934EC134A0928BD7CDA9485EEC /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 841660A97AACA14D209F19C1709154F1 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 40EA575A946C4F5CB849F1F57B9D2C9B /* trace_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B572AF0D232EC364C4107CDD6089EE1A /* trace_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 40ED7E41670FBD156B4BBD729E5F691F /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CC66354C2272C751E890DE94F1BE6A7E /* rls.upb.h */; }; + 40EFC5FD92AC118C7DC8BDB5B85157A3 /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 6B75DA7E50545F64C9639A64EEE2391C /* child_policy_handler.h */; }; + 40FC9B97A888A836E962B89F60768BBA /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 678E732DFC993679248B1E13731374FF /* xds_routing.h */; }; + 40FD1C6A23FD1E2DEEB7AAA35D2966B4 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 004AFF898D0CA15FD3960E4DA1D42375 /* dynamic_annotations.h */; }; + 4104637007E4C7FBE7E087011A50CE49 /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A22270E5371D3C8930058FC8449365 /* table_builder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4109ECE99A8B28FED6477E7484ECE0B8 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 324780AE1726A5F92DB20061E237CF62 /* http.upb.h */; }; + 4114822C214232DF87A79BCD6124EB40 /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42AF463251D6E48B2FCB0A0537DEA684 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 412C52167BCC1F455290F06042C01306 /* http_connection_manager.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E56391EFF25C42B0BDB0EEF85DD2D2C /* http_connection_manager.upb_minitable.h */; }; + 4133887C9A17C242433E5B33B02C12FE /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D5AD6D97E7A49197ADF100156C1EA7E /* scoped_route.upb_minitable.h */; }; + 413CD6B05CED8EE09F82B92D2143E6A2 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = AE640469579EBD27F08779D242AD7D48 /* channel_stack_builder_impl.h */; }; + 413E5257AD31722D1FAEE94FAAF851AB /* FIRLocalCacheSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 979FF2E128B513079E1E8106CC0ED8BE /* FIRLocalCacheSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 413FFAEEC894B8E33558B7F2C6029979 /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = F15089016FCA88A885EFB7C04CD2BF2A /* thd_id.h */; }; + 414770C4B62FAC026E75B4A817DC6DBA /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = C4959451FB8E91661B69EB3502FE675F /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 415070FCE375F201662663BE9CF2758C /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = F16DFC15CC2A8CACE59771EFAB3C910D /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4153E5328A19A557E049CE80A66F06AE /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50DCA6FC262C39588D2BE53A5258C7D1 /* endpoint_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 41558C9A5B08081C2BDA05F8909DB5B6 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CA8718105C90B05F0517949C8D67307 /* FIRCLSUnwind.c */; }; + 4155E1924B8FC76EF105D44698EFB548 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16D1BCF1F01268CAFDC2246D77FE7A8B /* Delegate.swift */; }; + 4157F890F88BD7616E1113E049F2CFD3 /* stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6DFA830A822BCA0A1432F9F929456E /* stats.upb_minitable.h */; }; + 415D701CB8D6C2A064AEBF1006E3E183 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67D28F25F38EB2CD61DCB724A2D7D862 /* clusters.upb_minitable.h */; }; + 41602152544BFBDC0436875BE8FA632E /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5491274C1AD334EA7FDD43C95333B8A6 /* tcp_server_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4160C263F92AA628D5385596DE57B9D0 /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F66336A1BC7C3479A0479FAAFF938B7D /* grpc_tls_certificate_verifier.h */; }; + 4163BA384A3BF73372BA492032296C77 /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = 2007EEDC44C5FC2FAC588A2337B897F2 /* type_check.h */; }; + 41695E6E89D3FBACBD6FDE409C34D5AA /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 724A32183241FAA749F5A32CE4BFFBAC /* def_builder.h */; }; + 41696000B51E00033FECBCF2A1F90EC0 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 396E22B3321418E2FC734FC896EEB426 /* escaping.h */; }; + 416C82BBD88272B4B4325EEAFB43B91B /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 9A03F2D70D1D1B86AD09724CFE68FF2F /* file_external_account_credentials.h */; }; + 416E3A2F65AD01A3C353AD3A8E9A5A94 /* ping_rate_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17A9DD3AEDB200F1736DB2BF21C3F82A /* ping_rate_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4175C14CD95D8760CCDA7D32299E8091 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4713D32CE013043C8D0A38E24F98E1 /* time_zone_info.h */; }; + 417A7DF73ACE14374D635CD6DD8225CE /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = E60734FA3CA3A02F0AEE16B144ED4406 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4189060DAB34401BB792322E48891A0F /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBF9871A2B0D2457AC3EC3A66814507 /* FBLPromise+Testing.m */; }; + 418D9CC012BFF27B8F06EC545CCC5825 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F074BB9160D0B90013CCE08A570FF9 /* iomgr_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 418DC4A60D31723D339BD49277A3BE72 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 828A71BE037125559073E603850BD4F5 /* opentelemetry.upbdefs.h */; }; + 41901F9CAF017999E1F5279EBC621948 /* FIRRevokeTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9788E1CB40144BC50DAC2585CF6B04 /* FIRRevokeTokenResponse.m */; }; + 4195C302FB4BC54B5CF3A4F9942254C5 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 85F024CA7C06E17AC0ACFA74FA903B6F /* datadog.upbdefs.h */; }; 41969B630F7BB8483850BE6CE61EB1A7 /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = ECAC028550A03412C51913B85686D98B /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy */; }; - 419B85036BADBE4F91AE9C5A591E9EC1 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 372677D7A65A0511831962CB834AAD96 /* timer.h */; }; - 419EC3DA4FB67E8F352FBD09AFB6B0B7 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE06E66781D730D676F15E77461C0F3B /* grpc_method_list.upbdefs.h */; }; - 41B769566E02AA33DE7B55B5985CADF5 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 208ED97C6A6A5F2C67C7736EC4B8A7DA /* route.upb_minitable.h */; }; - 41DCACDD071D8A59808B0A582239E51E /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 105A4DAB33F487045ACE6D834A5A73F4 /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 41E43A06D7763603F396D7CAEECA570B /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4B0C6CC665B5686D341D602F63C61A /* message.h */; }; - 41F6072E1D13F8C3739B78D59963DA3E /* channel_stack_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CCCF8E339BF233DB476ED5C959C2F60 /* channel_stack_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 42066032EB59AC5493BA0CE2D3524799 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B30DAB5953B9CF5BE3DFC3A37831B06 /* custom_tag.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 42070AAFD6A89E40F5D8E842BA018730 /* resolver_factory.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 4EE15FCDF6A6A6FDA5241F5A7DD153C7 /* resolver_factory.h */; }; - 42075EAE7236067907F81C5232481C0E /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 6B94482ACD1BAA2B73225243481A3591 /* lb_policy_registry.h */; }; - 420AEF958C3C1A3DD44227C6CA7CBC20 /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F598569041AEBFB5F3F199DD53B0FA7 /* zutil.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 421B2F0A100989C56D3BA0A9AE948881 /* migrate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B647E7ED9BE7E7F0FFA736DEC7BD9C7 /* migrate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 421B2F7EFFFCFEDD1C16BF201AFC8801 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C4350D6C303BCD5E89DFBE0F5346878 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 421E4CC3DBCC336E5361EB142FCEF382 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE88DA66541FBB708C55C91912017C7 /* timer_generic.h */; }; - 42277DE06A0E3486C8E9919B3C20E46B /* json_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6859ED0C989D05ADD19BCEEE30B5F7D2 /* json_writer.h */; }; - 422A9ADCA63C76586061ACB6D091339B /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = CFBD44CC220A1BC0BEA73F0AF1282358 /* fault_injection_filter.h */; }; - 423D6FFD13C50BCC9D20D832F9BA4D7A /* FIRCLSLaunchMarkerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 79201FA101A8FC3670A3149E43C1BC4B /* FIRCLSLaunchMarkerModel.m */; }; - 423EA1431E568F08BFDA7DEC894DCD95 /* custom_tag.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 750DA2FCFFCD9A3F463CF2EDF11347B9 /* custom_tag.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 423F4F174BE537AD3B6225E13C5CB6E1 /* retry_throttle.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F42102CACF269840F5A449BC646433B4 /* retry_throttle.h */; }; - 42425D690AAF738DE3BF9D28D4C6A970 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 360762E34447526C744C1CE22899908B /* wire_reader.h */; }; + 41A1668AAEF4DD92E54C1398D6067045 /* commandlineflag.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E559AFE5EC2C77B0A2AD35C850ADE41 /* commandlineflag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 41BF9E42C59638DAA814467BCF49F96A /* map_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = EAFF954A9F26F8CB957AF832223F59B9 /* map_entry.h */; }; + 41C1FBBC3DCCB1A7D4414FA1B12A1A85 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = B0B9C25FB7463848DDB0BA395DE1C722 /* slice.h */; }; + 41D00D990F1E26E0BA488D6848E5F9CC /* validate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 73F02BD61DFC61DD06F443A723872F5C /* validate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 41D14A9D22596F284556F54C4AFF7551 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = B57E4DE8CF7F089C6C8EB7F1C3FC3D2E /* sync_generic.h */; }; + 41D4D847996F43C41DB6766E038DFDCD /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22DC611BBC9189D72D43BAC4AC5C4F58 /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 41D63B060E9A93854F4349FB2D0B08C2 /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1734C3DB32580FDD0FBA0D3DE38B1C98 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 41DB38A367D4A92306D8DD6C677D6233 /* extension.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BFBC8F9EF32E2BB4CCD9F03F66D3D46 /* extension.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 41DCACDD071D8A59808B0A582239E51E /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B876FFD7B34CC743E095C0BDAB587A89 /* FIRCLSMultipartMimeStreamEncoder.m */; }; + 41F3D0368FB67EC943661517BDD1F1BF /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0CFF749DB4528B80CF31FA89FF70CDD8 /* file_watcher_certificate_provider_factory.h */; }; + 41F667C1420F56E71864F0BD309FD312 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 191FBD7FDC9E956904AFF0A1E42B50CE /* range.upb.h */; }; + 41F7652B54CBCE324BD9B62595ADB2F6 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9BFA8653177A957CE3FA52562B6BCD /* local_subchannel_pool.h */; }; + 4205AFC0B6D84B502A4B5DC8681570B3 /* common.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 57358FC81AD350B751CEB3D16D6C0368 /* common.h */; }; + 42088085EBBDC974FC574564BB131389 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 10385F0BE97FDBD9CCEA5F03BE1196B1 /* string_ref.h */; }; + 422037D576E22CACE155D2F14B4857A9 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 858D2C6EE1517E196D3666DD315AF311 /* rbac_filter.h */; }; + 422573498C15A011E9DA43007C2C7AC9 /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7552AC5AD5C8D20FEF479C82551B4C /* xray.upbdefs.h */; }; + 42389EF5D20FCECD0D50117152E8BABD /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 75FE3FE99262515E649DDBA2B3D4894A /* alts_tsi_handshaker.h */; }; + 423AF94FC0C980ECD83DE56D7F07ABD0 /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDA8B1069F2B43E2F349F87C59B8055 /* channel_fwd.h */; }; + 423D6FFD13C50BCC9D20D832F9BA4D7A /* FIRCLSLaunchMarkerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 44D187E4B832B2448E9BE0BBB1849F5A /* FIRCLSLaunchMarkerModel.m */; }; 4245F3590ADE620DFB1FF673DC35035F /* FirebaseAuth-FirebaseAuth_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 75BE3742280F17326166DFF0B2AC4FAE /* FirebaseAuth-FirebaseAuth_Privacy */; }; - 424CE9E4B5FF1F1ADB97B34CC83881B3 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F89A58CAC92FB2553634011F46A4C803 /* http_service.upb.h */; }; - 424EB03D83942791D9F0ED17B08F0660 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE895694410F0A9D7B0448A06943CE25 /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 42510EA5EEAA57992214D869FFECE9BF /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 300955CA4E742DBE537D82AC315DAE2B /* ev_posix.h */; }; - 4254020475FCED0C529491288E4DA3C1 /* backend_metric.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 73793FA1C770389887981763EFC40B11 /* backend_metric.h */; }; - 4258BDCBFCA84949E314E52305C0ADCB /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1B008C966022D983FE7169899C89A5 /* percent.upb.h */; }; - 42688633F09940CA54E53C7A616EC74E /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D31495032003E349AA7A8542626E7D /* xds_cluster_specifier_plugin.h */; }; - 426AFC370EC32B1E52A8EAF021084974 /* string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B475AB331E1C1237D3D1C1F6AA6A3762 /* string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 426FAFF8B185DABD04E0DE4B093B2880 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A45E7885F645D15E7CF66CB98F47A59 /* grpc_types.h */; }; - 42835EE23E9BDBB0B9A6136A3B293E75 /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 76E4BA64E73FE7F1ABC120E935E7CA81 /* any.upb_minitable.h */; }; - 4284DEA3B3302A381A45B18457C4B9F4 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 35E9D4F5BFF2AB945E446A0A37BD952F /* alts_handshaker_client.h */; }; - 428AD4F64B1007468EC25A368D9B5846 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = D52A725E76FD4976195763B11B76F3C2 /* experiments.h */; }; - 42908913C41E29651199B8451CD30754 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A83D4EA98E182B40FAA9E2AA1A191071 /* pollset_windows.h */; }; - 42AB6E891A3164DE0F7D269C9B697941 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 008893870926896AD0E43D0CB385E0D6 /* certificate_provider_registry.h */; }; - 42B40FB76606E683ACE6655998B8DCC6 /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDAFAB13A996BE75B259AE48D861E65 /* dynamic_ot.upbdefs.h */; }; - 42B6ACFCF650183030867CB3EF345E95 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03E464C4BDC67A4C1FAFE1A83F72358C /* ConstraintMakerFinalizable.swift */; }; - 42B862C4F828BBCF06FC8473F40C3712 /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D53E68F0BBF7E98CD46AEBB8BE97F96 /* asn1t.h */; }; - 42B8EBC805FA41BDD0A1966B724B3727 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A19199735F0DBC03CC365F31D2DCFA87 /* http2_errors.h */; }; - 42BC8F307B18C185DF09DDE7D153CAF5 /* supports_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = E684F9C7C2C3E8629E5D15A940314092 /* supports_fd.h */; }; - 42BEBAD0235A3C70F51C91708D62169D /* ads.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3869F4838AD817E0363E585CA8E0A52D /* ads.upb_minitable.h */; }; - 42C0F7D67F5232D18714B1557B37F0AD /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4D1FE712602E3AAF9B54D6A9177CA687 /* context.h */; }; - 42D2F40AED03D1C2518C38ED4FA98DC7 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBD44CC220A1BC0BEA73F0AF1282358 /* fault_injection_filter.h */; }; - 42D3848BDBF8F13167CB5FB9D1E9C5CD /* channel_argument_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 511C5D0A3891A67D4232826B9379CFAE /* channel_argument_option.h */; }; - 42DB65AD4F0B59750EFF9D07FFC35E73 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F32B0202D7BA5E13B6F6CDB085F8978 /* config_dump.upbdefs.h */; }; - 42DDEA74CC07A85E195AA95CD2F229EE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 32116F7AE9C9FB401D3C67428751ACE5 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42E9DE93111D338BF145744532994235 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 59567B37CDD79AFCD4D50D261B592FC1 /* alpn.h */; }; - 42EBE3482E171DDB5A2CADD34E449BC5 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = A08E99ADC3971463ED36EDFEF8B4B07B /* event_string.h */; }; - 42F24C1D1E429C6B2884EC98EFC2D30A /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 220AED87ABF8C858FCF68FDF7EFD8E51 /* ssl_transport_security.h */; }; - 42FE1A25335CE3B2CF36031ABA65360A /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2328507915D9863D164088E86059CD /* aes.h */; }; - 4301C63C28C96427152D6204AE94228C /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = DA4B4193E71B3A6C6EA3CB751ADFFAD9 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430B6A479CB97A20D6C400371795DB36 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0C528BB2B8142B1B7599784F60CA69B /* extension.upb_minitable.h */; }; - 43108799D69CBF4730C9FE7DBFA84F36 /* context_list_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = F0456A529BCDE9BC38DECC656B2AF0D0 /* context_list_entry.h */; }; - 43187786A8696F3D54F5056090F4911C /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2096E2C313DC827C2B844A82B97A97EB /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 431F0D29D5D2BB15AD151C6C0C6A4A27 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5D9DC4917F302A535FA08E0745B0396B /* value.upbdefs.h */; }; - 4320CC945B0B72C4D212B03AC5498C2D /* status_flag.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 440DE3E38291C3198B325B410DE8E11C /* status_flag.h */; }; - 43230B254E73922921492EC15CED2964 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = DB93866588EDA352FB85C85A1287FA7E /* alts_tsi_handshaker.h */; }; - 432FA24618463FB2FC5FC2FDE16E2970 /* server_callback_handlers.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 896B004BB65913CDE0E15DA7051D6E9B /* server_callback_handlers.h */; }; - 4334DA7AA8FA123F8829B611FA955E8A /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = F645F622D81A7CC0F583B3802BEE617E /* stat.h */; }; - 4338CE05245080761A88185C2504906C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 59AC23C57BCB53BA1410CEED39301DB0 /* PrivacyInfo.xcprivacy */; }; - 43449527C5440C707AAD1C104471B51D /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 9248F2A6BCCEE8028302281C51F3317C /* alts_handshaker_client.h */; }; - 4345CD4F542A7536570A328D444F03CB /* win32_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9A50E557A2EF4E9E9125BD2A9C3A6299 /* win32_waiter.h */; }; - 43479A40D39129846858A7DD2BC39716 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE381E3CE33802715B65A67B1572137 /* internal.h */; }; - 434BEA88AF7C93D6DB1DD2CE12E033A3 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3EB439D3516FB855ECA8BFAE2BC7A8 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 43570A88AD9EDEC47F9D4C624286DFDC /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1088A96FA2026B7A2E492D18AB5CE10F /* alts_iovec_record_protocol.h */; }; - 435A659239C5F1947E9F85C7FE73F8F6 /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2601A94CCA2B27C2ED1B7813D960A432 /* slice_string_helpers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 43661907C5883AAD33919987E73D267C /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAD198D7B82CCAAA26F5FB855E8A787 /* GULSceneDelegateSwizzler.m */; }; - 43832C8ABD2B086378DEC5EE7CB0C08C /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = AC64901E169229CB2F3A94FCD6915619 /* FIRMultiFactor.m */; }; - 439111B9CC36E4BC1754DDDDF1CB0E63 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB4F563C5945BCD2F47AF757E8E7EA7 /* call_op_set.h */; }; - 439FF8ACD6AFDA72EBED8226FB30CDA5 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2D5129B7C96ACE5A8A175A8ECD5FF8C /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 43A14D3C76F1840C92414E0E8EA0BA21 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C09AA0C1C1EC18F2942986C46139D1 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 43A66794D4FC02FF29EDA0E2FF90E899 /* grpc_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F510A6D696CD28CB73FBB9EC520AD3 /* grpc_service.upb_minitable.h */; }; - 43A9043EF70CFE58EDC1EC1DF2B63AC4 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1254238D650F1DFC2070AAE152983E0F /* metadata.upb_minitable.h */; }; - 43B358029CFCA379539C068816C442AA /* http_inputs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FDA73535E4733FB14E7A76EB7E76C8 /* http_inputs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 43B92C7F06C519AB6250273538470B90 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2CE4C141264DDDACAB7B96397637A7D /* collection_entry.upbdefs.h */; }; - 43BB3E0B60628D499A59E445D145C90F /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EBEF906384E65F4396B93106DAE030 /* opentelemetry.upb.h */; }; - 43BF302EAD58E2FDE810ADDD10F8DEDB /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 43CB6F558A14CCAE690A45C498CECFC2 /* examine_stack.h */; }; - 43C3198B3112267DD102F7BDF2B0B6B4 /* float_conversion.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 2C189C161B98E5D16854F9A731F4C2C7 /* float_conversion.h */; }; - 43C89358BB61E73227F6791E4697FCCC /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EA4EFE467B4E711C9A880A89BC95D4D /* RedirectHandler.swift */; }; - 43D0AA928AFAE764BFB7C40EE9208D28 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F3A6B3000342D453398E0AA93E4D6AC2 /* cookie.upb.h */; }; - 43DC498A6F492D656DC2E40A1ABB9B28 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 938AE4540950D5C68F3CE3B9A066E587 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 43DCA595ADC1B33E1319F276B1749001 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1BBB6CBE34419218877A44D2668B36 /* secure_endpoint.h */; }; - 43DFB49930346A1A730DC21E94E2F731 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5FD313D783E7320929DEA2FAA8FF000 /* ImageProcessor.swift */; }; - 43E324242273E120DF9C3D76CF174682 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B177ED0E555FD5E96EB59C8AF09685 /* transport_security_grpc.h */; }; - 43E4242AF063F002C60832C474A37586 /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 98BD93F0371CD66817E9CA25FF43EBD2 /* xds_audit_logger_registry.h */; }; - 43E707752358CDD150062AE0574D7BCD /* intercepted_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C3C77A805EA36913262D0D0D15BB81F6 /* intercepted_channel.h */; }; - 43EC04B387F98CD8D6090771CED762E3 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0F7E6A6AC1723A43EEC56F5CEC073F /* channelz.h */; }; - 43F1943EAF61A5B06863BB43206DC50B /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = CC8CF2386EAB31DFF03672FF26555333 /* tcp_socket_utils.h */; }; - 43F48A29EC253BFD6FC5229645C32AA7 /* client_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 08D388313978ED744D2E082958155869 /* client_context.h */; }; - 43F5B2BECBB6F6028C05DFC01E86863B /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A82B859A322D3B5C5B7568CE8E2313 /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 43F77F5FF1684FA8B07FFE7E8A3B9DF2 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = AB03E51A506CBD2C0EFEF25A1ACF233C /* grpc_tls_certificate_distributor.h */; }; - 440AAADDE9BA3D9079FF64D9A73D7861 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3C6698CD9ABE53968B30B912BB9FD54 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 440DB0AE39A9A5841013DABBB23A8DDC /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C1065F1E836E6B90EDD1B515F0A0DA /* load_system_roots.h */; }; - 440E0A37D48C93763E2951E666D77B71 /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C26E0D2533352F51DECF06D544D5B36B /* init_internally.h */; }; - 4413F003E5AED6A6D298D60354C1C7B1 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE889FC9969BE3D0EF86761C518F1E15 /* extension.upb.h */; }; - 4421353BA9C40192BAE05EF8B44580BC /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 638E6C2530F9711459ACCD8BC4EDE2DD /* plugin_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4423B293FBE439A7EECCD6072F4F0643 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 383E4F563D7ACEDD5692B726601FC918 /* def.hpp */; }; - 443318B46A72D0D6ECFB24F7E345EC5F /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BC0F1199AD733CEABABF72E12EC87A95 /* trace.upb.h */; }; - 443599D87357134B804557E9F585C9E1 /* semantic_version.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 23792007C36234A6105C3ADCADC74389 /* semantic_version.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 44422E8439C337E1D5AF8B814BBD90A8 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E7A00553447D75B5F53F06567D3621 /* optional.h */; }; - 44553F2BB361929D76AB607BBDF54A05 /* bloom_filter.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6650D8FCA693D63F813841B0F052B3C /* bloom_filter.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 445CDA724650583DFC5A50C07B8C7E35 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4216FAB27FDA8EE029FC7B688C1E78 /* matcher.upbdefs.h */; }; - 445D3389CD556352DDE486BD3DAE88FE /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6EF103A88DE89AF362ACF0F7C8704B7 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 446C6E90C768341822A690704AE21C08 /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE82DA880AEBE9AA8EBFFDB9AAB226A3 /* sockaddr_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 446E0A1CE4F33E583D4D7A3767320EE1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 4471A77BAE23C877DBE14C79AA3CE654 /* FirebaseSessions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A02E7A4F1F16616D91BA311DA3F919B7 /* FirebaseSessions-dummy.m */; }; - 4485E682C843CFCBC506BF8971313F2C /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7776435A96C3EB2D82CF371E3144C378 /* resolver.upb.h */; }; - 4492C1EEEF090CBAD513419CA3AFBB18 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1B68446DBA73260839F3F4151994CF /* server_interface.h */; }; - 4493FDF3A2783006B60203FDB43A4602 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 09EB730AC1BB16B0F347CFC41AD002D0 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4496D12CD45302F7C7999D9EE6CDCBA2 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B99D4371C776066C19F10B5F240E68 /* nameser.h */; }; - 449E76A8EC5AD2A0AF16EC31140D73D1 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE6C2040B420513CA7C9174EDEAA6472 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 44AB2F9C9A3B5832FF279F1B4023BC72 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6E8487FFBDF32AB2EB23543FD2A27F3B /* grpc_server_authz_filter.h */; }; - 44ACA692B557363D502F2239EA7A752C /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EB99588AB7781AA3499FC348C11A341 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 44AF2D71007265C7901A31DDD50E0463 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = DD4D0862F86639E3A4E0E1516200F5FB /* FIRAuthAppCredential.m */; }; - 44BBA5D55EC9A4CC6827BC9EF710CFC1 /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1FE583B87EBE7D69646ABB37D7A157F3 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 44BCF18A3A9415639B5C7C9F5C7F9B00 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 915D6F1B41876A716316AEE5B4287689 /* xds_lb_policy_registry.h */; }; - 44D32B7662A0215E89BAD5F6C4FC6F54 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88ACD2B1A963CF3372CDE2B108EC1B7B /* rbac.upb_minitable.h */; }; - 44E1462F302201DFF6219414F79433E9 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 529F18E50990155F5D243C404A412698 /* completion_queue_factory.h */; }; - 44E8788623647E591B863A599D5ED7F3 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AEE16C8D0C391914F6DAD221B7BC0BF6 /* percent.upb_minitable.h */; }; - 44EAC897036762A2B9EBF3423BCF20D8 /* str_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 9D1175799C832D620404D7D519750107 /* str_table.h */; }; - 44F07D438FB730B64A01B7023F206FCF /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 73F0BEDDAF3B410D7B8F4AA9545C8ECD /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 44F432BB940F2004C26F45101A6BAB2A /* config.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 7413EE8505C6C89248F4BF68DDDA029F /* config.h */; }; - 44F43809D88AF86A91AEBAD1F4D79387 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 4950A37AC301CE860C4F3C38D1411E4D /* time_zone_impl.h */; }; - 44F9B7484E173004E8D52521418615FE /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A3310C1A069784323A0FF13D26B74E /* channel_idle_filter.h */; }; - 4507CE78E2395C1D6B1EE39F48CE0B89 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C35711351F8AA1E6F10B6B53BEA400 /* http_uri.upb.h */; }; - 450E47143E97BC8C759EEC5E5809E8C2 /* xds_server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 361796B9FAE16C7E8B7DDA1EB49B5C27 /* xds_server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 452C262707873C97F96909F39AE2EF59 /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 66E0B51AE99AD63B6A13F50FDCDA456B /* memory.h */; }; - 454A9F8E09B23FC09289A6E0C78A77F3 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 13DB2A62622C53DE32ADAA423884587D /* TZLocationManager.m */; }; - 454C4B2EB57F3DB80ECFABD0C095143D /* event_log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24ABE8702AB439FC3B8B3ED3DC1B08A8 /* event_log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 454FB47A35DB3F2BFDFF4136C3BF07AD /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD40EF545F900894B267FC816D89EAF /* tchar.h */; }; - 4552FDE404165FD467C5175322CBF4C7 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC9A0A73AE1AB9A6FEE34A4933F7861 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45607530B7F76A9D1E0C6008A04EEFB4 /* load_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C0C76BA78C6A6AB220801F058A41225 /* load_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 456ABB4A3AD1EF931FF5151941EE79D3 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7D5EF29A1362F97EF59D667FCF33030B /* work_serializer.h */; }; - 456B4C775F2266B0F4A8151E44DD42F5 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8ED4AC2C7DF185CFDB2E727A4B89ACB /* FIRVerifyPhoneNumberRequest.m */; }; - 456CD16A0F04BB933D4C6C87E6487D29 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95FA23105FC71458DE5A4C240015F727 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45726F6370F947D6854BFFCEF2B6C826 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A28E9B6EB25B958CA44C7528BF144B60 /* lightstep.upbdefs.h */; }; - 4581B678644E9FD0C9CAE043C6A6D397 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 76348806DFBEEB3A6C694308256DF53E /* connector.h */; }; - 45844144E5170BB6207C902B9E2A098A /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = E0364BC79A4355D9E17463ED12A4B6F3 /* filtered_re2.h */; }; - 4586B4686AA83382D3B07A1A4E8065AD /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59750EBA3E648663EAE993A404A55761 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 458A9D1D71C288FA9A69697D4EB0F73E /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D094A0D7334E880AA652CE915F752D /* cache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 458D18B04787D67A4F2EBA75174CDF7C /* batch_builder.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 99DB7752FA7D58CB4C37CED6B48D1568 /* batch_builder.h */; }; - 459235ABEE8B06A82D0DF21E52494046 /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = A8A239BB4D029E152C87236DABCE8D96 /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 45952ADB6E678F9554A8950CA7B48C99 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B7235EA5FF1219600226F5D94874F5B1 /* GDTCORReachability.m */; }; - 4598717886B29721DD35A5B6337648A7 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 04E6A19DC49EEB947A6CB9068FFC1BCE /* FIRCLSInternalLogging.c */; }; - 459E247109D46F3E7832DD40ED0F2EC6 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = D95A0CF5C1E40A00E38F87B10D93D688 /* time.h */; }; - 45A1CCD635E2FFCFD00AFC9A429A50F2 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2770AC4D301B970BDFDC46136F81D919 /* xds_http_fault_filter.h */; }; - 45A3832FEF820261D32A8EBFB8C92699 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 518AAC019D56B05B910D626E6E5382DC /* address.upbdefs.h */; }; - 45A57798AAFBE72F15822D727D54CB46 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96191C2A5B93F2757BACF4AF71AEB772 /* proxy_mapper_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45B27A9B4A4BAC8E4C2FE282AFACC72D /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 02608A5BF2F4604CEA7B86FAA91B91B4 /* certificate_provider_store.h */; }; - 45B2862EE8857E47AC34BDA70E2AF5FC /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = E209AB528B59E2F9D924D00E1581022B /* xds_common_types.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45B8E7FEB8867FFDA205D67C359CBFB3 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E8DEBB9A5E026BA814C5BD1D36C98B94 /* authorization_engine.h */; }; - 45BB15BD5FD6583F7BF322FC24F0BAA9 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E30AA59D0FDDCAF12445E8672E04CAB9 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45C10E05E2765C796698B82EBE21ED35 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46B6E5743008445CF6B683722EA5C6EB /* accesslog.upb_minitable.h */; }; - 45D0C565E1FFB7E1EC0AC7ED67861721 /* histogram_view.h in Headers */ = {isa = PBXBuildFile; fileRef = B9664509B3217AE336D905DFE8B6EA7B /* histogram_view.h */; }; - 45D4AB51590EE663B7DCDEF807B78863 /* bind.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 602CF9CD7C25796E7A77A8970E84234D /* bind.h */; }; - 45DCA3F3616151A934A1D900934E9027 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 045FFF6B223D3FFB613B878D9F0A1B8E /* uncompr.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45E3BD09BCBFA2AB87CEBF8ADD6EFC5B /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = BF0EC1614C31388E5CDB2395C147DBB2 /* grpc_ares_wrapper.h */; }; - 45E3BEE98420B784C88E37ACF069D40F /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F6632B2EC77B3304F3F628BFD638BC3B /* token_bucket.upb.h */; }; - 45E70083DEEDCCC9BF6F88B7C3F6B850 /* base.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DE606DF9650A210E082386156CD77DE /* base.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45EACA5D029651ACDC40D5965D2C37CC /* static_stride_scheduler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26EC7CED9F796EE81542C27ED042CFA3 /* static_stride_scheduler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45EB011DEF2526081157BA7DCF595690 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FAF64DDED404A8401C0E0E8E03A6F6FD /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45EE7847B2F84E093BB02E0833B085DE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 27D03EB17485CE1EFD77549564C067D6 /* PrivacyInfo.xcprivacy */; }; - 45EEE9DB8E317FE8D496616C93005BB2 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 735146869A243C589BC88696A526147C /* GULHeartbeatDateStorageUserDefaults.m */; }; - 45FA7B7D108997394DBF0DA3206174AD /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 532C1CB41082AFE90005245EB3A046F8 /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4608CC60E7ABBEB051F3721875509E94 /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE7AA58153FF634CAF517564949FB202 /* buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 460E00AF990909D3787B49AE78E57E0F /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6C825BB1326BDEEAACCEBDF2599EDF /* resolved_address_internal.h */; }; - 4616B54480032A19C6639A635F364092 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 5250C243D467FCF26BCD9437C66D4B67 /* chttp2_server.h */; }; - 4618BBCEEFA8A0BFAF7415EE722E6ABD /* posix_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 87262ECF8F2F02E371745C61DD88B00C /* posix_endpoint.h */; }; - 461BB01DB2D17F37770308905BA4149C /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = EC66EB135376BE3ED5188301BB7C7F7A /* security_handshaker.h */; }; - 4638584AC1B30E4F2ABC6E905F7EAE80 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = B1134EB811D808F9C741E965BFC1EB86 /* slice_buffer.h */; }; - 463C00C4582150E1AB1E460BD56C3F13 /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E1A70F2F45CE05E01C0F4622E8B60B /* cel.upb.h */; }; - 4640349DA620D46652A40CB695424EAC /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BD8AB57391CD01902AB44919952B3767 /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46417CCBAA0267F09BA7BFAD819C94BE /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EC1F6AAAB906C1F20A113D2C2F95195 /* message_reserved_range.h */; }; - 46423BCF4DBD6F952DCE1CE0700E2D9F /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD70F2563E3A929D07A390DE8C30F88 /* duration.upb.h */; }; - 465CE6A44CCF653E39967782235CCF33 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B6A63BC3D115EDFD3D88BAC89D449C /* ev_apple.h */; }; - 465D9E28267B58282A9BF9F2CD72FCD8 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = BE139C80441A192780C1AFC22D1E1986 /* server_config_selector.h */; }; - 465EE82640EBB31B1C9EFAE93F00BF61 /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 644AAB1720281C6EBDF01BD7F37995DE /* FIRPhoneAuthProvider.m */; }; - 466083CB44F8A6E3BEA55788F8045AA1 /* resolver_registry.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = FD9DBD99BDFC777A3EF2FEC5A9ED8E74 /* resolver_registry.h */; }; - 4660BAE7F04CEFFDA5FD5309F393A751 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5CDA8F44599B1283B45828F31AE472 /* frame_handler.h */; }; - 4666075C0E8C5D94DD39701EBDC742F8 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F6ED6CC53DF9ED048C3195D85BEBA5 /* FIRCLSAsyncOperation.m */; }; - 466BB46B8191BC0759833D604EB72954 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B19C041FDCA67B2FFD930028B686FDB /* fault.upb.h */; }; - 466CE34FC76C92C0A0DFA6AFADF39122 /* tap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 03DD25ADC357D23E546296B96C9DCBD5 /* tap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 466E5B0EFF7B64044D405BA5B978BB4D /* curve25519_64_adx.h in Headers */ = {isa = PBXBuildFile; fileRef = 1092CCBADED9F1381639D4CA0F8DF203 /* curve25519_64_adx.h */; }; - 4677AB802DC2A7F254933823515EE4B9 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FD3E7753AFFF537D2D3D54C79DC679F /* resource_name.upb_minitable.h */; }; - 467D30401669A583D703AD3EC17D163D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AF798066412E7294A85FA30F4F0B4A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 468080322CAEED331943E7EE937FE3B5 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 6380DE7654F38F02FA7B0B8AFEAA1CCC /* loop.h */; }; - 46825C0DE2F66434AB9E79757D662B31 /* endpoint_addresses.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = E8B51CA5EE0C9EC5E11483B9B703CEA1 /* endpoint_addresses.h */; }; - 46950FF78F9044FF05C3F43E3DA8AE56 /* http_status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A670993025AA4CDB4F59C201F66947B3 /* http_status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 469576A9EBDED1C3D42AD33CBF785BE2 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = 011F6445D8C9C16599733624A162557C /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 469791353F8A6C3B307E5656C962A569 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8C9D5F8701EA35AFB82F6748DDAB48CC /* channel_stack.h */; }; - 46A10787E70FFBA35631A73C26790338 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 4993B2073990B4B0C8D7EE28D87D4CB5 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46AE1432EEC258D78BF330A856060FF4 /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62341EB4CCF010E229D49725D9CAC773 /* transport_stream_receiver_impl.h */; }; - 46AF828F2314DE65D7A89A62B47AD16E /* srtp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7F3BE62D8F38C4677FDFCBCF4A68E429 /* srtp.h */; }; - 46B4B5BC2F8F7A25E2E59873B92997B4 /* listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 253BAFBE1F4E02AC866FF34802C20DA5 /* listener.upb_minitable.h */; }; - 46C103F122B8107CF648C3AA8DA62754 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F0C4E2FD751FCB73851D4AAD6035425 /* regex.upb_minitable.h */; }; - 46D1AC427528D84C075969A085C7D7D6 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6516992D91E24D075E158A26CD7AE /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46E0CF84958402F2406C660CE6E94F2B /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 4394A73813C217AE431572BC314816F9 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46E49FA0E0781E1A7272198010288CC1 /* internal.h in Copy crypto/evp Private Headers */ = {isa = PBXBuildFile; fileRef = 0B6D0DFF352114DC0B0C28ACF2CDBDE9 /* internal.h */; }; - 46EEAE5A591A0E6B71893D2D0D780D3D /* flat_hash_set.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 2DBE7C9F5F5ECBE292BC53CA6862FB05 /* flat_hash_set.h */; }; - 46F70DDB83AA759CE4A09B9EF61EDF16 /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5AD17697C856BA55D15D9605CD349F5 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46FA833AF784311C97FDBEAEDB318AB9 /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5C07CFCBE60D402638219D8CD0350339 /* byte_buffer.h */; }; - 46FD05FB450C928851ED1CE7EDC18177 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11B1649E2296FBED0FA6DC432EE5ECED /* frame_rst_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47062A5F52AF207CE80FCF78F3DCBA77 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 167DB6694918F3C0D5294165F693C692 /* FirebaseAuth-dummy.m */; }; - 47096E1ED5D935DFCF11F65BB86AE42D /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = C04F1A564DFA3EC956C17787811AB427 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 470A43BF4555E9BAC40C9BD7538017D5 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 5ACFBFCAB763A1A8B6DA1B3A3AFB83F0 /* method_def.h */; }; - 470BF71071C96FD9163AF90C695A8FA9 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = 099EA6D04599E19AAEF023AB727D3742 /* escaping.h */; }; - 470EF6B66A33BA6838BD5B84DDB23C23 /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 852D129AFADF9518F5A2A7C6931A1734 /* FIRFacebookAuthProvider.m */; }; - 4712C258EE7BF2882FE37A9D53E11444 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DF2C20AF8CDF3DCB08773F34DC978D11 /* collection_entry.upbdefs.h */; }; - 4730F99DBA45002FCB857BC4011D1E41 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A95727CDADB70B77BE512454A59515 /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4733285ED11FC23D7623E7B2068C67B8 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 023E932E9549394B6AA67327690E43E6 /* grpc_tls_credentials_options.h */; }; - 4741183D0A0580E6822387A1D3749D30 /* number.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5F0316E1207F13C99E59889B653CF1 /* number.upb_minitable.h */; }; - 474CF20E17EEAE4EED576FB06A08B96D /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 090CA4031B145C1D83FEF73AD0555C8D /* client_channel_channelz.h */; }; - 475ACA1595DEBB3EB35A29774B72A32F /* duration.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E1969FF83E644647830D04DBECB59 /* duration.upb_minitable.h */; }; - 4764C677160504E8488E3B9016F5CD5A /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 189111CBE3328BFADA8C2412B97B36CF /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4764FBB146855DC6927852751C4F43E8 /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = C959C5C96A164C98F71DFC3331CD075F /* http_filters_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 476853B6BB17F7D70B8F411BB83ADE27 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50E49093A510D0041B0A06FB8A8FC057 /* versioning.upbdefs.h */; }; - 4771A9086D09614E7A2C965208ADF8F9 /* outlier_detection.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB32A2A8BFB2B42ACCC7721D821A35A /* outlier_detection.upb_minitable.h */; }; - 4771B55C34AEA10875CED7EA4D83541D /* any_invocable.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DC832F91EF1566B9F7E45C1CA9C23731 /* any_invocable.h */; }; - 4780C7ED86C2AA7E37A54ACCAB2428DE /* per_thread_sem.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B48AB02D0B00ABD75D07444A1F748E33 /* per_thread_sem.h */; }; - 478A5A3538406A56118C32822FBB9D38 /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = F5E42DAFBB2D82F8296E8C5BE55F6D38 /* stdout_logger.h */; }; - 47910717CAC423D5DBA6D8CE7F07410E /* tcp_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D36163A5C640671A65E1C5F6468A0B /* tcp_tracer.h */; }; - 47A17F66D3611B18CE6E089AF4DB1604 /* FIRAggregateQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29E43CEB87BCD334FA1878279B8463EE /* FIRAggregateQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 47A7FAFDE35F1907516AEB7C622447B7 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 26EA1B370BB9E95CAF8CF7285D0F757C /* low_level_hash.h */; }; - 47A93A381D99238C4ED0DFF07929B2AB /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 499F47899CE9F652A96C724966ACD1B6 /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47ABB248ECBC769EACAC17D78871A264 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0A2CEC4E173568BB8D012C330DBFC3F /* address.upb.h */; }; - 47C04ECF1A0AF52A6B8C425C1AC38DFB /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA38410825375D61AFC7D9F5A3E2BB1 /* promise.h */; }; - 47C2FA4AB27DF451813B4742749A6F71 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 55C7F4F35FB4941747E688ED651E6E1D /* substitution_format_string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47CB97DDBBD438495E9D82F0EC5D6CA2 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A826815122831E69A31E7E1F3C4995D /* rpc_method.h */; }; - 47CCA9CEEA78AC6FFA96B619020E38C9 /* internal.h in Copy crypto/cipher_extra Private Headers */ = {isa = PBXBuildFile; fileRef = D6005FA3740E47FD53677C3EE6C177F4 /* internal.h */; }; - 47CD645F58B5D3C13B98D9E0301277D3 /* directory_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A10E49606DB0FE993A6C508CCBA1EE /* directory_reader.h */; }; - 47D6D49294A5A7BD4EFCAFE25126BA82 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CBDA3B21BB2DD5D9AFED735F3DCCCF /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47D961BE4CB5236159F8B9FF97D0474B /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4797C79DB0836243727CBFFBF888F28 /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 47E1009E160881B1E9CEDB6A64725E5F /* shim.h in Headers */ = {isa = PBXBuildFile; fileRef = 9939A46740D7C0810FB7060C6CAA232A /* shim.h */; }; - 47E36C1F04D5E6236AA63B8DC64E5C77 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = F7856C2B819A04DEE390E522D3CAA5C3 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 47E4D382244D666D64892EF93C03B0CC /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6C9B9343F81A4CFBA7BF3B708C43FE9 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47E60C701835FE837C4420D0C8B1DB97 /* encode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 1F375D3660D03697E2762A691FB90299 /* encode.h */; }; - 47EE0CCAC36C103318091ED251D6FCC4 /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACAE8B5B22B0AB176B0E34438F40DC7 /* randen_engine.h */; }; - 47F21C00470EAF41AAB09A2491281508 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = E7725D1B1FB2BBAECBB74183689ED610 /* poll.h */; }; - 47FA0A350F4AAFC85D38A6044513ABA2 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 605352223FF1E1E1D53817EB67E3BD36 /* number.upbdefs.h */; }; - 48023470021CFBA75092BF2C29336D85 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 06348E15D4F46326849FA9DBACF1ABEA /* down_cast.h */; }; - 4804E91E8C9A95C51AAB2299DD9363F9 /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6B3D1C6684B5CBC279BC8F4249BA76 /* unique_type_name.h */; }; - 481DE571293F88831659584C2B776CE4 /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D682163456BC452FF97DCCC5882159B /* FIRUser.m */; }; - 48263CC9844319ECB26C8B831BCE7330 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 88789BDF03D8B76766903F5EAF954B41 /* grpc_service.upbdefs.h */; }; - 482B74C0548970BB9C095E2D8530E421 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5734A5DD2A229D91C597741F0BBEDCB9 /* ParameterEncoding.swift */; }; - 482DC8E97BA687B01E7CB333F9854BC3 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 977B1E2D16089A838B7948DFA2E8551E /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 482E1DCB2020012578D76F0FF0E2FD02 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = C38D555E419ED488644CFE9DDFAD6ED2 /* check_gcp_environment.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 482ED76C6CAAA0D1F995011D1A6161BC /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = DCF8441543F763A93D9A5322FF59717D /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 48305E325C5EDEA67826039E58FE15B6 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C90E462E6BD24B3C5EBC223D795FA37C /* common.upb_minitable.h */; }; - 4834EED12C77C6C8AD074A311D84D538 /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = D21A4540798184626B9B40F6B30F0897 /* binder_connector.h */; }; - 484794AF46820919822D0AC71D6EA369 /* rls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D1320B11A6184E1B519FCC3704E7DF56 /* rls.upb_minitable.h */; }; - 485002CA29020F30183BC6C2C1B31EA0 /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 32ACF4C32A486D6DCB2ACA733E6CF816 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48561C16D06DA1D9BE7F043AA23C0581 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C94CD1FB6DE25CC228DD3FE2AAECF31 /* dsa.h */; }; - 4858FD3A66FF009A6E370865714BB8BC /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2CA85C4866CCE1BF1EA1440E70E77D55 /* migrate.upb_minitable.h */; }; - 4864AA3104A982AB0A75676485ECF90C /* pthread_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66A11D7AB916FE02BAF0A2EB0938CADD /* pthread_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4865F29FBFC3AE3BB9A3B3A97DDE789F /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 98ED9F2600208326F3AC3D793C5A8E0A /* wrappers.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 486E65533F463923EC3CC66BA3D04D53 /* max_concurrent_streams_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1E562D989F0217A0F9DADAAF594008B /* max_concurrent_streams_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 487DFE0A3DF5929A940B4D16F72D492D /* cookie.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E4F306BDD115D27C42FF0D27F86FB353 /* cookie.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 48823A86F0E0AD20ECF66D2246E3A07C /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6C93D1F9F3C7E59293F1C83332E319 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 488F2D8C111D27808965FEA221D8F082 /* FirebaseSessions-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADA7AE9FF75C014CA562848F342BF34 /* FirebaseSessions-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 48983B845574E32257E260F9FA740232 /* FirebaseCoreExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22ABDCCA5BD111EE349FD36AF8470271 /* FirebaseCoreExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 489AB4D44E4BAE8D5A279E217F0EF15A /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5ABC2AE27C58056FEDF38A20D51F47 /* backoff.upbdefs.h */; }; - 489D55A8A6ACEE13F4D2616783D75C97 /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B898F81F9210A5FA081080224D4CF62 /* create_channel_binder.h */; }; - 48A33272982F76597CA253CAC5D67E8B /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A0B981440B0317AFC154749F87D0D80A /* pollset_set.h */; }; - 48A7A18038805B8B84A63262831871E9 /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8251B09CAD5F1E9B8BE996128FA6DD /* http_status.upb.h */; }; - 48AB6619FD1E0777A14D3B58D7D5BD07 /* matcher.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 93FAF27630A786A446361581B52C38F9 /* matcher.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 48ADB1B0361243DC0C2A50DBA104D9E2 /* tls_credentials_options.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B31981322C27D274AA72AB8536896007 /* tls_credentials_options.h */; }; - 48B6914BB894190D44473D456A2E50FF /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 5366735C4B1E27870DBC3B7C162609E0 /* rls.upb_minitable.h */; }; - 48BAAE90951E4249B8CEECE345D051DA /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B1CCF88112DB34F9F954F1DC4E9486 /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48DFB28BA04E87F7CBB405D5C8643424 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C269E8B7D1B059D3155601A01F1D00D3 /* nameser.h */; }; - 48EA2C059739346B1C496801FF9B5C0C /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 37975AFE65765C6DAA35506A2E20D9D7 /* bootstrap.upbdefs.h */; }; - 48F8027BFE17266B2B0199FBA99EF299 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 12DB919E4D466E111F24A3D9EF9E6F96 /* xds_resource_type_impl.h */; }; - 49158123B0BE305D40A0F5ACC7068D37 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 39711045BA516A440F17EA389C3F031B /* socket_windows.h */; }; - 491E5AF6F87EBD29BC0B26E864FFE831 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18114A7F197EBE26F17421EE306B5731 /* datadog.upbdefs.h */; }; - 49242F64BDCFCE40BD35C809E94ABB34 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = A7D6C83CCA37B7118D05D6C0775E3340 /* handshaker.upb_minitable.h */; }; - 49275A8A1D5BD254C090891F1D41E56D /* call_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 843EF13431F0B75109D89CED49A02D43 /* call_filters.h */; }; - 492D1D277EED36D4B02169D16A9511CA /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA85C4866CCE1BF1EA1440E70E77D55 /* migrate.upb_minitable.h */; }; - 49349CC51941FA5FB5E27F4F91785B52 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F89C51306B06A37DBCB30484ED4DB30B /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 49408D815766DDF0790CDE134756F16B /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3E2B6A789CA4FE0A2D02A392D9D0EB1 /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4958F236C127A36B47028162580E0AB3 /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = 7381BCA01752D82A6B77804C5B7C410C /* opensslv.h */; }; - 495F18175E406582EA96F3AE09D91DD6 /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87FC5427C5AF02CA8214F18E2E57EB09 /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49608014398EA9B853ACEAA4EA5046DD /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C1ED01B464A40BE09622E687A560EEA /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4966A48A7DE4C7EC60C9CFEBE4044287 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 3110B31D5A3DBAB888115B58C6220F48 /* struct.upb_minitable.h */; }; - 497B3A00F2D1D143427E59F320975155 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2FE0E919955E2B82AFB8CB63D76D43BE /* string.upbdefs.h */; }; - 49833ACD3C282E6273DD3CB42B8E621D /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1894C60BD67C777DB430A9CA9A2A07C5 /* node.upbdefs.h */; }; - 49A6EDD6649EA747C10D20FED45AFBC3 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 7197501FAB09CF105CF85818B4ADBED9 /* FBLPromise+Async.m */; }; - 49AA1CFD9B3D79EB0ACBDB7CE511726B /* basic_work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 922FD7FB7A62F498334A7E365E91141F /* basic_work_queue.h */; }; - 49B472CC8061D2168B8C2D178F4FBD68 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F5AAE303D46A3C45F4E4531C44AF6A /* server_config_selector_filter.h */; }; - 49BE8700C443D509F07FD5025F1D6238 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 885C0589F2AA6A9A391C90CDE25AB160 /* sync.h */; }; - 49C075F31C1996FE06140FBF4201847D /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7BFA99452E8D06862CE01B545F7612 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6D906A0FED497FF7CEDFA5C01DD00 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E659591CB37CA0D2937AB09BD5B833B /* local_subchannel_pool.h */; }; - 49D77D4306A09B3A343D42D1122E08CD /* FIRGetRecaptchaConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D74C41EE7102B8A17EFD0EA750AD50DF /* FIRGetRecaptchaConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D9D6CC02EDF682500D5DB5CBC9D01D /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = 89225BDF4B49FFFC1B32B26E5676CF13 /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 49DC5AD85826D6BF22FE290C0A374002 /* aggregate_query.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA91FA3C11A5964346D60B09F7C6F10B /* aggregate_query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 49DC759A70038A599BB5AB3CE70F09FA /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 755D0AB7E4C55457984AC0E86E23DADA /* context_params.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49E08CA02291681E65FD9FCC98AC522B /* gzguts.h in Headers */ = {isa = PBXBuildFile; fileRef = CD19B6939F55477063E47E7EBA003CD0 /* gzguts.h */; }; - 49E0EEB1AB1FE94607D63F5556B42434 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AC477B9C94AB7B22D9372D4F6434B943 /* xds_common_types.h */; }; - 49F0F8B0AC00E6055B148FB12C962A61 /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 431ED3E3ED2FFCFA021ED46167BC5AC7 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 49F233A182D2AFDC097A84168B599E85 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4668CBE38C4B8D4B2B38B7FDC108B964 /* FIRCLSSymbolicationOperation.m */; }; - 49FD838F2AC1CCCFE9523F521C888E16 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B81C9F886C85C2BF0F896D880D6458 /* status_code_enum.h */; }; - 49FDDD9F3E5AF962E8134835F4446A8A /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = D8A987A247F315171F67487859383D76 /* validate.upb_minitable.h */; }; - 4A0008CE6B20EBDD155C0EEBDF627AF2 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 15C1A487B00747A031A320769E29550D /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4A030FAF8C8B2064BF91BE3B4467BB1E /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9032F0DDF320799DBB4B2431DD5D9FAB /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4A09AD06B769FFC8F65D9AFD7CA2E2A1 /* stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D43BD3E658FC54A946BD1B0CA51506E /* stats.upb_minitable.h */; }; - 4A0E9F271322A0CEAC2C44F666A602AD /* server.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 404F39AD5C3233120802788A0312B689 /* server.h */; }; - 4A38DDCD0102375DAE0F16249E9A90E0 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDB53D53472AB106C5EE2542444B904 /* auth_filters.h */; }; - 4A3CD911C2C740DF472CB3C091A5EBAD /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 0EE1AE95FD0C137A7D3EC108C64356A6 /* core_configuration.h */; }; - 4A3ECFA41B995EBB47D5D25B8EF5B577 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 268819332727BD1238553D6E7065A3D1 /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4A50A3939D99757401D2EF121DCBF3E1 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 33E32CE2E46FAFF3CC2C0FCE8C76F9E0 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 4A62C263504A00A3F1B67011003E1FE5 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = B8882543926AC8B86E049FDDF461A92A /* evaluate_args.h */; }; - 4A6B423D95127FFE1C2B1757E4087B81 /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 49684D1C7B6FD283CABFCC688839AD70 /* client_side_weighted_round_robin.upb_minitable.h */; }; - 4A71616BA216A668431DD7F16088EA28 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 100E819F57446283DA2902C234B9B5F5 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4A732ECACC87559C3D996C8CE3AD798D /* http_uri.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0938113CE70DC568EF7EC2A1460F7F98 /* http_uri.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4A74C8FF14CA7F52D5FB6AB8895A26EA /* stack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8F499EB3146E44B22F9D3BAFB19BA2D9 /* stack.h */; }; - 4A7B5819B2B5CE2439600B4130C364D4 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0F523359C41E1C07D6179CC4E8BB7A24 /* hash_policy.upbdefs.h */; }; - 4A7C0ACA9E7550C68DF91E2B6BDA2A13 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8EAC0344E6545E4A41C6E2052250DB /* cookie.upb_minitable.h */; }; - 4A8AED5810EAD9C427950F6DD653B672 /* call_creds_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86C85D32DF2823DAF85035185374885D /* call_creds_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4A900B112673DEEE59AB71B01DDD658E /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7B61AC6D6FE871BE30AC105747CFED /* hash_function_defaults.h */; }; - 4A9D65AED21C5A3FCDA09A0622A613AD /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F4A0B3946208326C941D1DDC10AA0B /* grpc_service.upb.h */; }; - 4AA307E28064E8A6DA1FEBDBA74B48F3 /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5626CFE4ADC6597C66E656BEF9F5FAE9 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4AAEC33D76B0431D2AF9BE034454A8BE /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF3916D31EBC6EAA9EF6DB3FED38E32 /* format_request.h */; }; - 4AB34AA74A0F93A18FCE9D7B7F930496 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8E30C19C12C72F0E35DFCDB40BBD15 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AB437BE0512A2D6562B5CEAABA2DA73 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 174ACD16B7981F8C46CF7BAF95875B7B /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AB6B7654C438469DEF40F8B56748BEC /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4508903E0CD8E90E2456C0B0B11F2E3C /* fault.upb.h */; }; - 4AB918C330DA3F548F080BAA22C67FF8 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = E25B04DA40FE40C6A2112939608245F5 /* grpc_authorization_engine.h */; }; - 4ABA946C3CEA7DCC81D3C3EAF081A28D /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B135243A0E16B216C08EB4D3B05023 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4AC987D18E235F82A4EC014F04568D8F /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3869F4838AD817E0363E585CA8E0A52D /* ads.upb_minitable.h */; }; - 4ACD67DCFE980D79438FEE6F9A017BA3 /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61DDAD684FFE2985898FCE1352A625E9 /* forkable.h */; }; - 4AD1A4B31DDDA8A783BD5A0D303A31BB /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DD96FE272989AA57C7AB37C16741339 /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4AD1D2FBA28A52720BE768B2938639A1 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C571B3AD28C265AD405D5988EA7D64 /* async_stream.h */; }; - 4AD588ACFDADCD2F6D9A73D31125508E /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = A12CE25F30D8B7EAD00CC5F0B3197105 /* FIRAuthProtoMFAEnrollment.m */; }; - 4AE21E122C232BA1A409A2D7FB121127 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 065B01A9B04DD800AFB4BAA6B31C2DB6 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4AEEA5B854AFC582B8A318A114F52C44 /* load_balancer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D57FCC2476F1D97C36CD2DF42FBBCF2A /* load_balancer.upb_minitable.h */; }; - 4AEEACE41C68B77691ED4236A9FBA6DE /* validation_errors.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDF4AF65A7B78F5E24FE30B389CD797A /* validation_errors.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4AF850DB289B4C6C62A32390112CA889 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 010D96541603B8BA1EFB5683C3E33564 /* proxy_mapper_registry.h */; }; - 4B01D820FE5E3C52A379353F086F8273 /* FIRAggregateQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BCC8B265475B2C73D19EE7FF29110F /* FIRAggregateQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B082F331934984B82B96DBDE7FFB308 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = BC6231376504776EDD4532A76C7BF58B /* enum_reserved_range.h */; }; - 4B0D545CA11606CF85512DDE873F01C2 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7C28163E93826BCC1B6FA52022ADDD26 /* table.h */; }; - 4B0F6FC6EC2461E33FF57C52C94BEE77 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B2C9A74DD0EC6272231753BE1D5251 /* alts_tsi_utils.h */; }; - 4B0FBB39C5EBE12BC463F2989D1AC320 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB0EB84CBD217EFB3FA4FC0FC46F7F3 /* common.upbdefs.h */; }; - 4B1695F084AED096AA5E14D9ECB5713B /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E3616F603F7625AABA9E279388EE2F9 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B23B05F62E805619C9B5BA83E34F4A9 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = A293099EF4A711A4695E5C16B3EC4661 /* Box.swift */; }; - 4B2C3DA594AC4F51E381F29A1B377751 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 151ED2A36FED297211F26282B7E00257 /* rand.h */; }; - 4B336F8529351EC54C7E664F17EB8A0E /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D07CC1319D77DC16ABDDFE289FDF0CF /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B3418567A5C99EC59597C2BCA0DAD63 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6607EA33BB1E93D61FB76288B32D647 /* fake_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B35C5FF3BE83E43EF00CCCC14A6E361 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 59E525D8B736394E67AB1BCBB9C6A133 /* decode.h */; }; - 4B36182062B3B6275D415B75B5BC5BDD /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C811D756A27952756B93119E0BB1B395 /* cert.upbdefs.h */; }; - 4B37B65BC002753EE46AFBC11D74F3E4 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = DFC5EF68382C280AB564D81BE2CDF02E /* wakeup_fd_posix.h */; }; - 4B3C808ED5CD88A7612B1C043987EF75 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 345749E9B085C56C0A5DFA4C6B09D370 /* posix_engine_closure.h */; }; - 4B3C844CB483FC99731D4CE83A5097CC /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 64ED43DF3F74D112C447D90F78752B6F /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B3CDF006990B97B94E554E3BFACC483 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 6940CBE161A77C4573609F2454399AFD /* symbolize.h */; }; - 4B3F2E1D3116D446BEC165A19744B107 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 68D3A7438C1992CF9EBED8A918145180 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4B45BFC4EF1F883AD64784E3DE918D0A /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 4442F3FC3F394F063DFC75DC062FBC48 /* def_pool.h */; }; - 4B4B943013E8B78550560D23811B9B65 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = B7C492571D73D1017039470FBC604782 /* hpack_encoder_table.h */; }; - 4B4EBC1B6A82912EAC1D19E3664AFBCD /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E7EB2202587F6BBBFD3D2EBCFD64C5 /* substitution_format_string.upb.h */; }; - 4B508EE4E211412DD57D89C80AE23586 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 8C6480C95F39734B254282D5EE05466F /* matchers.h */; }; - 4B53CFE52DF06570F54E748EA6107406 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B5B7ACC6F826C6F4818520D0DE533DD6 /* internal.h */; }; - 4B5706D9A858B0E9FFCCBAD6F99D9ECF /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = EAA2CC3BB1D2FA9E93A62797D8730BB3 /* transport_op_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B5C809DA489F7E3E76BBEA6741B432E /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = F542D6071E44736DA1954BCFFA599565 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4B61670FF155E47049078B66BCCB9121 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E62B6D7D9FEFB3814813C86F4061EF /* semantic_version.upb.h */; }; - 4B67333CF51FEC3EAE07E45563B7DEDE /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ED0F54099911F26AEBC845C20481123E /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B6CB2330AE034AA3F9824458146C508 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1B498BC60171E83447E674B5446B5D /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B72583C44A1464363CF6950894576FD /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBF786A43D1B5120AF704E3DF28ED53 /* ssl_security_connector.h */; }; - 4B74C29DE61DD895A9723B9A4985000B /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4924926305DFEFB1B0ED02E63DC991F0 /* time_util.h */; }; - 4B78211DA5585D378F3D9D171C0D8C2C /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C20A34A60862DB9E4160690FF3E446D /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B82F4A23CD7DBC328D9CDBC9553693E /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8831706ADAD1EDA590ED81BEED2CF171 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4B84F889E703CAD8BAFD808D1A1E1F38 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = B959B2B81FAA88AD48EE54F74298F222 /* field.h */; }; - 4B87EFE35591D1B7971EE1DE00A3CE20 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ECB675CA57F41F80A88EF5B1B349F25B /* xds_common_types.h */; }; - 4B8CF91966BCE450AA6CA41EFA823E93 /* native_posix_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60FFD97DEEFB6F65CED23BED52E344 /* native_posix_dns_resolver.h */; }; - 4B969A712C49CC414C92A9514AD1A0F1 /* crypto.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2E0B7CA02DFBFA6DB00559DD9459B08E /* crypto.h */; }; - 4B9EF60A2462FE7E7B3C3CD52B2EA7D3 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = A64E9B9335EC45AF9D5D13AC8E79DE13 /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 4B9FE693FC527C1975E58718615666F0 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C7282473988DCD943BEB870737824236 /* iocp_windows.h */; }; - 4BA016DCA5BFB726800583C87D76E1AD /* backend_metric_recorder.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEFFC3A3C0F651281DCB05CE0891848A /* backend_metric_recorder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BAD99B7394E225CEDBF94B8100BCC7F /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87971FBCAB5DBFA78A360026CF32661C /* ConstraintRelation.swift */; }; - 4BAECB624F94CA0C8AB2A43A9B482ED8 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 677DFB0EA22CBBEE9F273A67633D6AA6 /* matcher.upb.h */; }; - 4BAEE768A5B9EAEB4F2647291FD6B6EC /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EB6B8E02C955B877026B1DAC80C801 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BAF751759B3ED00862B3B8380004B18 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 451D79DE50BA4E891CB3530A5AE55229 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4BC11193F16091088DD1BF9931264812 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E47D90E1B806EE67B1DEA1F6C7ACDB15 /* default_event_engine_factory.h */; }; - 4BC45EB79D1A1ACEA20EBAE51D8A4E93 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB581C06827D37B915F6796556340A91 /* fault.upb.h */; }; - 4BC5580C0998AFC52F2E10C23E15890B /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CEDE9C05DAC498E6036ABE073A2AD15A /* udp_listener_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BC7F10A84CB2083042C3E653F7F4A1A /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D14CFC1A9BAAEAF560BD093558BDBC9 /* FIRAuthWebView.m */; }; - 4BD979ABFAF1D9C8BBC89A3EDC3564C5 /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5965409D567BE1FC90914D31820D47B /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4BDFFAF2745D8A84B84E2E4D8753E973 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30DC697FDA9F9AD419D6386096D4AA6E /* sockaddr_utils.h */; }; - 4BF04152DD56D32ED248035434FC37FF /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D329B59D0D28AF155D25932347CA14F /* chttp2_server.h */; }; - 4BF3154051591DF3D2C79411DC202C92 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 305E05AC4BA4B3B5D2EDB20072C2B8C2 /* cert.upbdefs.h */; }; - 4BF9A2B16AC0E5DBA17587AFA8F5C549 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = 280A08541D398152A40E2342E751F5E9 /* field.h */; }; - 4C03887179408C2DE8D99F1B701885A7 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF06DA41060A6A82B91BDBA1EC7F908 /* endpoint.h */; }; - 4C084E909E724DC67BD7EC34FAFC6FB2 /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FEC48AB17D6584A42698FACD7F414C4E /* scoped_route.upb.h */; }; - 4C08542614EADDD00687B54429870637 /* stub_options.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 18DFD175D21D04070131E2FBA2D1E4F4 /* stub_options.h */; }; - 4C13219F7C14002BD423F8CAB73866FF /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E698C4E5C8762FE239FB35E7EAEAAF8D /* xxhash_inline.h */; }; - 4C1407C47F98BD353A95A45732C7A587 /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E3E70BCE8675834C96B69DFEDB90FDB /* alts_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C16182EAC9AF7E574D27BEE5A370404 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1243B069E9AF35E0597E947D50C7BD3B /* inline_variable.h */; }; - 4C185C9DED6ACD6D28CD2C3B900E45B2 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD370114BDE3DF743F3F64F6A334E74 /* httpbody.upbdefs.h */; }; - 4C1A95E2C1FBDC38F0BD3F7C6A38DA9E /* transport_security_common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 718F2FDAD76D01AE02B40C06910AB2BA /* transport_security_common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C1C7009262DEFE258B4E9514E7BD4AC /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 05210DB21890E691DC3488EE05B32C8C /* parse_address.h */; }; - 4C2FA0E6A5CB98536FC5C1D637197096 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACBAE3969A3D1702571ECB0997BBDD3 /* cordz_update_tracker.h */; }; - 4C33B03E009A9E42A01F9EF1B7DCBAC0 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D3650A7B18E2F5B9AFFD40A7E9BA5D1 /* metrics.upbdefs.h */; }; - 4C37A0BB79E2C8743000E6F61C425353 /* extension.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AD0EA6840C5A16DB2B6C73B3670817F /* extension.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C3F72B32CE6C5271B213A32BC64F73A /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2AFF478FBC96E6CB85524B5FC5308999 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4C41121DF049EF3A693DEB7946781166 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A442805C210ED3A9AF422F716FD34863 /* resolved_address.h */; }; - 4C4842177E24DA7F51E35F56EA23F7AE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 38EC6592AD614E17FD3C58B642119AF3 /* PrivacyInfo.xcprivacy */; }; - 4C550E2EA71200A90501F79D4DD6970D /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = ABCE99F0D6AEEA6EC4AD39608F997CEE /* build_enum.h */; }; - 4C5639FF322CE31D429BF0EC29787045 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5331D0BCD321C46E1DA411F7513EBFE5 /* resolve_address_posix.h */; }; - 4C5C64B8C44BC5ACAA6F0A809DDD6FB8 /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C35C85E93AD53C6EE61E93D656B58DC1 /* tls_spiffe_validator_config.upbdefs.h */; }; - 4C629CDC0F4B45E595DDA6F73462F748 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 60DEB18A8A0DE1F79AE3213BD6992BD7 /* compress.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C6CF296D3EBF0B06A4FFF67E0D8CC20 /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 497ACF4E1ED7F22EF93E88A828356EA3 /* memory.upb.h */; }; - 4C8F07033ABFCC7B00B377BBD03DDC72 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC0474287C1B5C584D2F1783A5B1BFD /* dh.h */; }; - 4C93C843465CB16A7B7F08F2381FE006 /* kyber.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3B2C19B0C9E2152EE98E4557CE89A30B /* kyber.h */; }; - 4C9AC1D1E07C243B596C1B18FB82CF9E /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D3CA75E403DABC232D981178DB088BF2 /* endpoint_components.upb_minitable.h */; }; - 4CA0B476C14DF59C2A28AF7EB81E537D /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ABF16F31952F2A8B12F31E88EED76651 /* lrs.upbdefs.h */; }; - 4CAF76D5A52BFE1922F6232680A3195F /* cidr.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0974B9D3EE9FD734B09C2A860E0F254B /* cidr.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4CBC29E5EC107FBEE10C193D86902A9A /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BEFE63DFBAF0FB4BF9EE8561C51CCD5E /* string.upb_minitable.h */; }; - 4CC52476AAFD78591545BBF6474B03AB /* persistent_cache_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3EDB79602FD6EC4F9AF75AA69E7FD83 /* persistent_cache_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4CCF510B266BEFFB6F7EDA157508651B /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79FD8A9513A39CD6C41044FFF2CA7CE9 /* FirebaseCrashlytics-dummy.m */; }; - 4CDC6D9AE1B8C777D585E1F270C7553E /* server_builder_plugin.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 67945CFEA190F5F4CFF78E01CB46E9BB /* server_builder_plugin.h */; }; - 4CE68ADB4421578E8C0005C2C4556930 /* EncoderDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78F050A2FADA8A0D79ACDF9E8DB86F9C /* EncoderDecoder.swift */; }; - 4CF0B47A94048D2C5B8228E44B7A9150 /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2EC9FAEE89E7A615BFFC0A9EA3255C70 /* query_extensions.h */; }; - 4CF61CE6C2D25C8ABCF24B18C85FFB04 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = DF0CA0275650C7FA9D1253A813DD07BA /* random_early_detection.h */; }; - 4CFE6DF53311C5743997E21A8B44BDBB /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 161D52F2794300431E6C677A995F9F35 /* pollset.h */; }; - 4D0DA4AD46AEF842260D4BC8F195755B /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB17A351687619B6E905C7F757A689B1 /* frame_goaway.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D116A2D0048579706E42148CB7B1265 /* alarm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 56ED09848C607A06A17723386D5755EA /* alarm.h */; }; - 4D3C7ABC39ED7A8B32B5B635CEC0218E /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 6306681AD6976A24015AA25D5CFD9665 /* channel_args_endpoint_config.h */; }; - 4D435AFE643FA5ED566BD6810F20009A /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2430350EB4D22C4E96B0E574909CF5FF /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 4D47FE7202705D610BE8B84182626FB7 /* timestamp.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7318BBBC5B818BE2F5B9B8833F1CBE6A /* timestamp.upb_minitable.h */; }; - 4D4C3583B965FCCB332577E2CA55FFB7 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 026F1699DB5C538D35F20AB275D2F3C4 /* tls_spiffe_validator_config.upbdefs.h */; }; - 4D50CC66084288938278F144670A2262 /* call_final_info.h in Headers */ = {isa = PBXBuildFile; fileRef = D717DCEFEC34714B43F9F0FC140F4670 /* call_final_info.h */; }; - 4D51AC5C679EA5E22F153239624A633A /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFE7D9ACA45A57C70EADB50E2043CF4 /* prefilter.h */; }; - 4D5516A11075FECBEAD196B4D12AAA34 /* ref_counted_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFC4B2CAECA251381352554EF79A20D /* ref_counted_string.h */; }; - 4D5EB89783853108474415ACAC480D99 /* common_closures.h in Headers */ = {isa = PBXBuildFile; fileRef = ABEE3DB0C97380CEF6BEA23535FF0FFD /* common_closures.h */; }; - 4D60B69A697BEA88874FBF9D4EECA26F /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CC83E42C95FEDB25AD89353288B3F8BD /* overload.upb.h */; }; - 4D61F0757B41AEC849F455A10C683F7D /* party.h in Headers */ = {isa = PBXBuildFile; fileRef = 942563C1A95510BBC8BE0834461E9451 /* party.h */; }; - 4D6BA473C245610A07DDBF994438BDA7 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1023F15393C24C162D81295DAFCEC79D /* protocol.upb.h */; }; - 4D7751D3B0D61623561FF30EC2A90D41 /* pkcs12.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 350D01C3718DC2F00ED3C396DCF5645F /* pkcs12.h */; }; - 4D8CDF4AFD0285D4ACC16D9982743FCA /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBD4A50E111FC5E6E3D281EF9EC89EB /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D8D00A071F7373470B7438BD5C281A6 /* memory.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C432973545BA04932F464AB412340AB /* memory.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D8F0BCE491EE624746C31C65A002EB2 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C55C66D955EB8A867218F6EAF96DE8 /* symbolize.h */; }; - 4D9412AF7E802A0E9E7AB2521405EFA1 /* create_channel_binder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0B898F81F9210A5FA081080224D4CF62 /* create_channel_binder.h */; }; - 4DA727B8547CF770A1FE4CD21EFCF018 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 0DA67406F8B702773925514F4A8C57D4 /* transport_security_common.upb_minitable.h */; }; - 4DA72FD7F1FB2C0449EDEF4B8A579807 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC681F28E429A49C9898FD88EC0482F /* ConstraintPriorityTarget.swift */; }; - 4DA899A5352214CD96528A898819B5E1 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C13BFBC97033E026755A35681D9BDABF /* rbac_service_config_parser.h */; }; - 4DAAC02542557AEA87CC0EF61F321A8C /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D016C4023C67F6BCE08A5B98D81D2B5 /* arena.h */; }; - 4DAAE24229717ABE050CEAE1C08E9BC3 /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6985E67F9F9BAF9D848A6D8A9D53B6E1 /* attributes.h */; }; - 4DAF418E07C2B7600231957B7768B290 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 860476035CD3F219B33C187D47CD7913 /* timeout_encoding.h */; }; - 4DB3D14275DB026EF9BDA7F784E34538 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 677D68E7D070231927304F8F8D4EDBE1 /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC032894868226AE220360BADB2C237 /* SVProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C57091A6FA7896902B922B29199A1E21 /* SVProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DC4F69FF48AD7963DE9D60B755E4905 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = F681F2978E644C27A87A24A4F0B5D0C4 /* duration.upb_minitable.h */; }; - 4DC80BBA2A3333DCE428D3D32C14F744 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3155C8551CCEB67F27E2A259A276C7C2 /* bin_decoder.h */; }; - 4DE5EEBC65C7CE594DDA1DD46725F568 /* FIRSnapshotListenOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A201DC3FA00CD775348851F5E4596967 /* FIRSnapshotListenOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DEAE5703BDD544C9956BF42F7D57CE5 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86B9A5A8CEE6F437E625848852974C8E /* DiskStorage.swift */; }; - 4DF7E112E01F36A717E5F3954C86A843 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 46DD463B0BC80D4F26519A8DB70BCA05 /* ares_resolver.h */; }; - 4DFCD35578AC294C9FAF7409D8FBEA2F /* scoped_route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EFF90C108636B555C6205470D5323C5 /* scoped_route.upb_minitable.h */; }; - 4DFE9E8E36967401C2530CAE9D5E9165 /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2307C782C5BC0B08248689EDD7B45EB /* ssl_session_openssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4E0581E1597FC6529E61A91FA77F8C38 /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = EA2A9439E140B4D24E6A13FBF8F61C1E /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4E09808C52ADB5640792312974875068 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 860476035CD3F219B33C187D47CD7913 /* timeout_encoding.h */; }; - 4E26F8F7337E5DE921E32D69D0871966 /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = C463F36AF2DA8E184580BC09662B59EB /* gpr_types.h */; }; - 4E34758CF74B4C4188FB15556DB2C184 /* FIRAuthRecaptchaVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 47A1682AE2D5E8825FA853BFA90C0A9C /* FIRAuthRecaptchaVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E34F091AABB8EF8E469CF65B0135F6B /* internal.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = CCFD66366FD4ADAA9A668BBAC511C88D /* internal.h */; }; - 4E3F428C61BBF3D9F5176D58F0DD74D7 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B366CF55B8D8E43FA4A5E47FA8AF6EFF /* fault.upb.h */; }; - 4E44C11C868326C714E6C72ABB225442 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B113DCB4788AEAEB54CA0BD2E4E2F0 /* backup_poller.h */; }; - 4E5F09B157D3B55F283E81A0D5E48CF3 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 527A01354EC384FC75B1F585B2CB2E53 /* timer_manager.h */; }; - 4E65EC343813445C227C65D9E45A3991 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 141D683E3C6700E7532C23EA0EB9CE21 /* sample_recorder.h */; }; - 4E66E2A7A97AD7B177A4E88C4932C028 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = E05E313998D96A1B63B6ADB88E761228 /* FIRFinalizeMFAEnrollmentRequest.m */; }; - 4E7407105B3F37AE079BCDA02D7C5528 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EB06127398BE67F7823419E215880E /* GoogleUtilities-dummy.m */; }; - 4E7421D5E6BE05A676363F5ACFAAD5FB /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CBFB900B3B6F14E9FAB0220A31FDEF4 /* check_gcp_environment_no_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4E760CA55E0FCF373975FF7D0EC044E8 /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3579F694F6A1F78F99DF942C2572504C /* wire_writer.h */; }; - 4E762F6C85EAF65474685C75C78E62F1 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D13550205E15058E4DE74180B3B2D10 /* RingBuffer.swift */; }; - 4E8EB5CB9962AE561F49AA3B18BA3FCF /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C2E79D2447D3E41A83EA9023DA308FF /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4E9BFD2B9ECF4B3E8B41B6CB427DD6F6 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 414E17B83AC5B77FFDF389B4AC674C65 /* cordz_statistics.h */; }; - 4E9C77E32A74E50D47695581CEBC1FBD /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 9BB301C266F6D63580BE43FF1227ABAE /* proxy_mapper.h */; }; - 4EA0E369936159C51A3FADDF2DC16C0E /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EC66EB135376BE3ED5188301BB7C7F7A /* security_handshaker.h */; }; - 4EA8705D99761EEEBEC4951E0D615211 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AE0D1430EC983E9BE4082BC9614CA4C /* outlier_detection.upbdefs.h */; }; - 4EAB504FFBC2442036893AA746F091C3 /* polling_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 036E2A7210471EA9E915A5B49B245A69 /* polling_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EAB572A93F5A316E720E0B08B8DD247 /* route_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B702559CC1C852356562A30AAD13F5 /* route_components.upb_minitable.h */; }; - 4EACB1490EE67B6D666A9B5645EEF1DB /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A2FCC0D18882EBB05A32D736011691FA /* construct_destruct.h */; }; - 4EB00330C55245A2E79C6D443749CA69 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = B13978A05460CA0DB0D7DC3C3D4305ED /* socket_mutator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EBB73EA17121357BBB0CE917E605E72 /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = AFAE8203212CEFA04567518E0A94F53B /* time_zone_fixed.h */; }; - 4EBDBCED62021503EDA9F555D31D04B7 /* http_protocol_options.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 83341C6057E85D9FE9044235E0F66A79 /* http_protocol_options.upb_minitable.h */; }; - 4EC0993E1A0EC3F56DF7568D757E9E68 /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2C3E6E52A04136909458121624FCE2 /* db.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EC5640DCEC2792D31D7541CDB81698B /* metrics.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FE320D732F15AA38D6B602360B8B336E /* metrics.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EC5F61361791FA557B592A39CABA651 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A83329568B52232C0293114C57D873 /* opentelemetry.upbdefs.h */; }; - 4EDABA694753D89ADF8980B32875FA14 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D15D76F44B65CC832B5F860493C8EC4 /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4EEB5E44B00F124E65C1E8741E431777 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C2771D3EAF2D4B3AEAF6CC7CDA7D865 /* tcp_client_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EF967AD42FD6FBD2F69A1621CB3E8EE /* def_pool.c in Sources */ = {isa = PBXBuildFile; fileRef = B068C4AC9256A5347976517581E9A478 /* def_pool.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EF9C921089017F08436907691734458 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F336E53477D8798EC6CD45A76160B21 /* client_load_reporting_filter.h */; }; - 4EFD20D8C6CE022BB2A14167C662ADA8 /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FEDDE62CDC131622500059843FD14DC /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4F05651D45799AF4F51000A1AEA496CE /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F0D6E9C7745B8565D13EBE4F134A26 /* event_service_config.upbdefs.h */; }; - 4F09C19531F992B9E88CAE2A670CE8C7 /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3FEB031226EF2F1E7BC5D97603E23DD8 /* http_service.upbdefs.h */; }; - 4F0B7216B442B2D106033BDE15D682CB /* undef.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = A569231358F2A69A54906D2EA6EF8C9E /* undef.inc */; }; - 4F192EB06A177DDDAC8D8C65761B3203 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F242D76852D0ABFB929DC1A5FAADA6 /* grpc_if_nametoindex.h */; }; - 4F224B97889B6098BECCBB0359631D86 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24F0D6E9C7745B8565D13EBE4F134A26 /* event_service_config.upbdefs.h */; }; - 4F234A0CC9442D5CDBB02EEC32AEE5C6 /* http_inputs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E5DDE18FAA26019917E88723404C95D /* http_inputs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F2416003743B03EA3D44F450A174B00 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = AE47A5A1D31DBCFCF671036F3B85179E /* modifiers.h */; }; - 4F25DEF67C04916CAD27B6B34F864D59 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = BD38318973AD176A821C2F3EE6149E5A /* local_subchannel_pool.h */; }; - 4F3504DA63F088DB8DD0FB5E62D7552E /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5BF4282C085DAD045C3AADB7BF92BF /* status_helper.h */; }; - 4F35F4CFB0835BD581FB9DB1A946EC27 /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6255881C8AB52F7E95294D7AD49A3F64 /* http_connection_manager.upb_minitable.h */; }; - 4F38ACAE4D407957DC20E5236AD00891 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD99979DD70A7FC25EF4CE3AEE755E /* useful.h */; }; - 4F3EAFBED233981D1B20A681D3B03103 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6E68EDF258F08B208A4F59A36B3D276A /* service_config_helper.h */; }; - 4F4E35ED102F56158D66A96167240F9A /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 9767567BEC465EC5518CD9ECFA0396D7 /* curve25519_tables.h */; }; - 4F4F93C6B51AFE3544E6B8C631694A41 /* server_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7A8C59A4DC7A737979F96E533C1C4C /* server_metric_recorder.h */; }; - 4F5F7A01F13209A3872EA73470C29A5E /* win_socket.cc in Sources */ = {isa = PBXBuildFile; fileRef = 645096661119DC43F4E18A822A28BE1F /* win_socket.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F6F695028643FD71993F4212F53655A /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 9438B22C77549D02468199AFAEA054C2 /* closure.h */; }; - 4F70D36B5B6E82A152426B1247168C8F /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 4C5096D01F9CFAA812ED9834E0E64070 /* unicode_casefold.h */; }; - 4F724D27EF4091A7797BC27380FEF7D2 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9021CFD21E8189F42EF3E9DC3BFF8A68 /* mix.h */; }; - 4F7A090D469138688E14C555460D5426 /* uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 96C25883D883BF9E1646A4DE81895132 /* uniform_int_distribution.h */; }; - 4F7B20EEC2B7E4297E5BBFCC47CCE4F9 /* json_object_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93CF1B653CA4E7E1EA8E6F4C360DF286 /* json_object_loader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F7CA63C19BA0E63AED31F462A7E2FD9 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC90F4E797C338514D5FA38A48AE1D54 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F818AC3104F50D18DF0A4E98CA49DFA /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 476680B32A51B2F34A384D90C2D71C8A /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4F83FBE45B7BD4C21E4632488DECC23C /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DC4323D32F39CC368DA50B2290CF23 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F846479C43B6911169E12EB9EB3C933 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7C016B125D81F4A7DC7A5386808AFD9D /* mpscq.h */; }; - 4F8882A3B6779A710C0C94DA3694903D /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = C30BB248D20BBB43D15F6901FC8FE692 /* FBLPromise+All.m */; }; - 4F8A86AB71634AF12F99D50FC109ECBF /* grpc_types.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 0A45E7885F645D15E7CF66CB98F47A59 /* grpc_types.h */; }; - 4F8FC590325D685E555D844BE06DBFE3 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0E4583F2C88D06EE6A22441FDDEC55EE /* range.upb.h */; }; - 4F97B71DC7CEAEBA2AD7480280CB8294 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 79827532D61D258A3A501C56491CEC85 /* sockaddr_posix.h */; }; - 4F981F7581EC76EDBAD83DD9CA3053BD /* call_final_info.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D717DCEFEC34714B43F9F0FC140F4670 /* call_final_info.h */; }; - 4F99AB51EA2507B85275057F1CE14F82 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = F07B34CB9208E2B74C307877AB3434AD /* load_balancer_api.h */; }; - 4F9EAA5AFA82F4F8C9B5DC3053DBA770 /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3883B0BD232B648327B92CC7A952AE17 /* health_check_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F9F1202D565B259932DE8C3406A1B94 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 65E296C35546758F758CCBAA65332961 /* FIRApp.m */; }; - 4FA2E2EC62E67A33E16380ACFD93A734 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DFD93751BEFAE373A7C88F41927B46 /* time_zone.h */; }; - 4FAA3F57D96BB177AAF4F9948929A64F /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D8BA1B52642A616868DA01AF1A26CC1F /* struct.upb.h */; }; - 4FAD394E600B87E0042F35E8F6CEDFEF /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 16468FB3A02189A66B735CE5FB8B5924 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4FB28DD8E131D2F9F3114DA5318EF1AE /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A07B8D83C5E3A5C349564E4991DEA86 /* accesslog.upb.h */; }; - 4FD1F40E49E7AFC97B5EA12E405A4607 /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7A135F69389BA089892887FC2D8416 /* xds_transport_grpc.h */; }; - 4FE14BD318970D79F5E072A8B0B1AEAF /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DA69FD707E0A6499D893FCF2851339 /* matcher.upb.h */; }; - 4FE368D06006D8A12EC61D81AE2F543F /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56B7819AFB790A83695C868F08C8452B /* config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4FE990773E38C6ADAE95DF1300F3FA5B /* generic_stub.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = F75EF6D3B654F578AADCFFCBEA8A0D5B /* generic_stub.h */; }; - 4FFB1F60ECB41F0B6CCE14803F554D22 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AE503692A32CB56DDCCDC8D7A62BC0 /* authorization_policy_provider.h */; }; - 5000F0ACE323F02F80CBE192469E1B01 /* ssl_key_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5391036A71F41C55B3D7D7D23ED317EE /* ssl_key_logging.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 500B52F9DF5BAD349AFADE5C3B5B801F /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C35C85E93AD53C6EE61E93D656B58DC1 /* tls_spiffe_validator_config.upbdefs.h */; }; - 500C8ECDF29DA0EBBB469D61DF876F6A /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AB2777ACABE1F0005EAC1DD719D70E0E /* combiner.h */; }; - 500D9D8E32537A646C1A2C533918C5B3 /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = DEC5D8BFB0D796A24378693E392DA59D /* binder_auto_utils.h */; }; - 500F7C0BE731F3EF04C4AF911C0D2DCA /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 289275905D7AC8A0F06F01CB001CBB0C /* cel.upb_minitable.h */; }; - 501131939EFA47CD0E69C16BA95A306D /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C84638E91F8DC5F8C21B38F4F5D964 /* FIRCLSLogger.m */; }; - 501566C8267E058C3E5613036DAC791A /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = BBA6824C858E653609C7C55DCD4A8E58 /* ssl_transport_security_utils.h */; }; - 501A8BA74199B846A4F823549ADAB838 /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 281C309785243050DE503FC0FC24DD18 /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 501CE53D05F1DBF11CC00B65753C6B7E /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72AA78B9087ECF5D45586137FDC682F2 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50208B3ED969B48F02A2536D95B0EE08 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D440C0FFFDA62BE0B42C461B8DB0AD75 /* gRPC-Core-dummy.m */; }; - 5021D783679E1511354CDA18D1D74702 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 15893123E7C43EEBE87529F431D7B93E /* FIRComponentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5024161DCF74D095148096835BF44BCF /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 982A9AD460EB83AA4B01B8EB17BD7771 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5027A6B946FE2FE59A6E2281BA2D664C /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A346F61894BF622AF70DB5834254205 /* regex.upb_minitable.h */; }; - 5029C184BF77486244122506E0E646E8 /* init_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFAE8526A4FD727D2A163741F2280BC /* init_dump.upb_minitable.h */; }; - 502E63F7CED2663021CB5A63CD844059 /* atoi.h in Headers */ = {isa = PBXBuildFile; fileRef = 2527209A6AAE2CA0E149E347D521BF0A /* atoi.h */; }; - 5036571531669857C5440644141647EC /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 891955C5376C2EF0B2A5B9025D6471EA /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 503F0B7FFFB30885711035C87F3CEE3A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 074EBF9B48B90B902C3F91229E1487F4 /* sensitive.upbdefs.h */; }; - 5045A2DA382AB8BA7433B39524C71D0A /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC442F50958FEA558E87DF754A570A3D /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 505B1D379CCE42B3C0ED92EF1153BCBA /* marshalling.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = EE9A4A0E96E61F5C61055EB6CFE63385 /* marshalling.h */; }; - 50693789EF7133FA6273240626DAF896 /* time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 8615671DA648778F043E54934D2ADBE4 /* time.h */; }; - 506D51F76390770FBF68ECE67B3B8051 /* Promise+Wrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10B1C4DCF9DD6F33C936BD37C552EFB /* Promise+Wrap.swift */; }; - 506ECF1A9ADE132E0B6A3E0AF952652E /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3907E8E74532FA1C84D8761AC79B2DE /* client_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50717EB1F4FC4CA5D09A0F9B78F720A3 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DF0F98F78C27F56733F6D5BCEBEF9C3 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 507BF90463EB5781CCC4A8E724501041 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 792651E5C12C1AAB8C91FB5C0CD3C727 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50AC455651E237831572BFDA360B8D98 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FFCDEB1FA54BF1331B4A25531F02490 /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50ADE24A2891F723BBB1A356C81E2D86 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE3F12A4104B95ECC5D33585F2B19FC /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 50B76B1724DC7B8A7C762BEB5FDF350E /* validate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB4ADE843B527126F630AEB1414FC30 /* validate.upb_minitable.h */; }; - 50BB5095BC6EE09ECC3309C4034D9E2D /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D181C7F23811FCF1C5442D013333797 /* resolve_address_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50BF431F9C531888793BD6EF552F05FE /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DEA3BEAD7F2B54FC98D4C72D98413D /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50C16D6C23B12208ACAD60062321099D /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5632E72CC99A204206E3F97354316083 /* lb_policy_registry.h */; }; - 50D427DD08DC638E292E838768A5CAA8 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5F9296C14DBFF81B04B16BA70F8103 /* cfstream_handle.h */; }; - 50DD33A3834DB4DE0C0A8223FD8065F0 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 064D20A05CEDCA68D14CDF541766C3AB /* enum_value_def.h */; }; - 50DDD59B5EC0A0E0C1688B8FC3A3765B /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A69BB4377BDBC5ABCC19D2AC5A58ED7C /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50E46D4BB34BA24FE0F0ADF7398795CA /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 635C6A0C4AB4FFBB705D73E30F673700 /* socket_option.upb.h */; }; - 50E4B5621E65316CD2BF68160756916D /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A09403A69693A1DCD3666BA458BB041E /* status.upbdefs.h */; }; - 50F299BD24E050E5E7D16A4B932F49C0 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC16E91AB87253E111BE026440B4FB8 /* nid.h */; }; - 50FE46268890B217EA2EE27805207361 /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 506CB2C616E2B4BF8AB6B0117E061814 /* transport_fwd.h */; }; - 510016FC1A44BC50DBF3AAD6D7A6E954 /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 206F54EAA2B8A938FDDD394F9BDEC87B /* simple_slice_based_metadata.h */; }; - 5103FC2A8D2DAF776E163B8F77795439 /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 754F54B05C1822233DD8FA9EC94D790D /* typed_struct.upb.h */; }; - 51116996DF66203262E3333DB4CB731A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D31B30E15A3DB3C61CB15B20AE0F19EC /* internal.h */; }; - 51169C9D0D6D4742AB4CD5BA1EB8ED52 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A357A608295126724028D4CA431840 /* parsed_metadata.h */; }; - 5118B2DD013611A237A7C3282ADE8AB9 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7225A14876639C344A8AAF5B67F3947F /* semantic_version.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 51192E43CB2D6090053FFA67A23E78E1 /* gRPC-C++-gRPCCertificates-Cpp in Resources */ = {isa = PBXBuildFile; fileRef = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; }; - 511FE8CF47F933B96DCB723857B05583 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = F86B253B4523222CF9E4BB0AE46C40FB /* poll.h */; }; - 512E7B2AC7EA8386F3D500FFA083DD67 /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 66629A6211AF7A808B848869CA44539B /* overload.h */; }; - 51342F026D671768D163B903BD381038 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0644C393372B0B7C2B0564E776267B05 /* xds_http_rbac_filter.h */; }; - 51378A6A90885885F7E5E115BA075274 /* annotations.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 96A098FB9F594A97C734F76154EE3DE9 /* annotations.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 513F7565DF87C87541FE4BDAD14CDBA5 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 02370FC173FD6565B97E06DE60DAF3A9 /* common.upb.h */; }; - 5146B6C7338D364F686314F671D5135A /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A5DFA413BFBF731CF0569E3E494677BD /* any.upb_minitable.h */; }; - 51500905EBA021B432D7E4BE701A1463 /* experiments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CAD035BB7E5694A0CD85AE16DF1F764 /* experiments.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 51512B0F366AEFCD32AC0E14B979B979 /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = 4505B75B6C55DAF259B99853357D4134 /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5159531F5C72C4EE8FDB4F9ECC44E3C0 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 454D4B6605350A2DB408FC660ED45646 /* syntax.upb.h */; }; - 515ADE7E794C20B99AA65BF77135C786 /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F072C3939DA3D426229A7DAFED4AAD /* no_destruct.h */; }; - 515D89A46A61A94D45990E87FF0F6ED8 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A07975C595DE74393B9FD318D9A6C07 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5169FB1B84246212CE7B9C2483FCA4EC /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B710800662F5999851D61113E8B6EB14 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5173A5E5AEA49B26D8B05450F2E2CFC5 /* base.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 98164156886D60F2B56C012B3FD5C31C /* base.upb_minitable.h */; }; - 5178CE67B345E57BC911CF9ACE086506 /* symbolize_unimplemented.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 5DF66492744F0F71B3BB61A61D5DED6D /* symbolize_unimplemented.inc */; }; - 51790AE929D394B64F5B388593082014 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 4203C03091C6FFD45F1E3C71E50198DD /* tls_credentials.h */; }; - 5189ECA2C13BA21E299D5850A9F19A15 /* trees.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0CC2F8E29ABEDEDAECEBC064D14267 /* trees.h */; }; - 519B05D563C93629A1C8BFB921DBF5BA /* cord_rep_btree.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3E01528A26913878A1635A06928823C0 /* cord_rep_btree.h */; }; - 519FA5847955D62FF605C0F40DC6CD5F /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6320A74A93095A55032DC70BA94AB69A /* memory.upbdefs.h */; }; - 51A27784A4FF93F1B914CDA2FD321BB4 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C6918F11A288B77C93095EC1C2F84B23 /* md32_common.h */; }; - 51A7598900E4F58CD81E55E48EDB81C1 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FF9C09A86715BC07D4E7BBE3F222098 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 51B47F7BE0D6A9429B597027C465BBA1 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = BB4FC3C7C59C7CE5C50829AE94ED43D2 /* local_transport_security.h */; }; - 51BC6CB6D398F2F60FABE575183D3595 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = CA31AF85377ABDA1CC7445C814D41396 /* socket_factory_posix.h */; }; - 51BEC34DA493109A59ABB91F66B60C87 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9BBEEA503839C8CBB06D6D98E42953D /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 51C55A9F34067DAE1E6A6DA6A3748104 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF963187214685F8C9991A1E5193EC1 /* create_auth_context.h */; }; - 51C6952C0FE49A25A4A2013485E6008C /* crc_internal.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 69A75AC896640EF70FC738DC83558425 /* crc_internal.h */; }; - 51D109876C2918DEC7ACC7B83D15A943 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 773D2A43CDC789EFA46F28A62ECDDAA1 /* jwt_credentials.h */; }; - 51D1613F8E9DA5393687883C1B29D1CE /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = 362BA30D667214DAF68D035E51A65549 /* FIRAuthBackend.m */; }; - 51D4677868D8746EFEF089553BF275AE /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 51DEC29333BEC95E8FA992C1D49D7955 /* auth_filters.h */; }; - 51D6479D09C481DF755450177369EC18 /* metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5B95126D1C097DB1144AA079B89C5475 /* metadata.h */; }; - 51E00956081856BBB265B1FADB446548 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 395D0688CFC35F8AA5E7219C0FB71E82 /* flat_hash_map.h */; }; - 51E8111B5DBD55CF4A5495D0CD00EB98 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = E58D18013E17C1BC5BF209826C53E04A /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51F0FD9A5A27A73CD76F0C070E00E0B1 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C9A8A063C81EBBBB51D08FE446233DE /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 51F27166BA01FDF6522DF1C6F2A69E49 /* message.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5D2B80DA056FD147D2E84186E4DEB324 /* message.h */; }; - 51F904E47629965D557FB74869E29EF0 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DEA4516A4EA4A1477F8EB12DD551489 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 520405F72B6FAFF55CCBB9D14919E61E /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 69FE79B348ED5AAF5BBA866EA2471587 /* tmpfile.h */; }; - 520FA7C61A50198F3513932FAC771658 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ADA36D08A5C45E95969103490DD536 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5212C1B95A2B6883151FD8E98725FC2E /* http_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F55617C3B7C11660885C7E345921FB64 /* http_service.upbdefs.h */; }; - 521696FA29EDAE7F5710C700444A65D2 /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 01F752423C98FD2D6F7B535BBBA9391D /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 52196599E38E73EDB0A405B95FA5FA51 /* server_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4A7EC175EC99AC0F37B86B996DAE8C53 /* server_interface.h */; }; - 523734F45D65AB01F964EBF68D925819 /* kernel_timeout.cc in Sources */ = {isa = PBXBuildFile; fileRef = F846FDD9DCE5D0623A1289777AC1BB75 /* kernel_timeout.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 52375851D69DD888475BEEE59D0B2961 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0EF0183ABC76B3DFAE0C0FBC525D8D63 /* http_tracer.upb_minitable.h */; }; - 523C750DFCC3012EB318B038246BE70F /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F6B7C45410CCE61F9538B3CDB22A16 /* security.upbdefs.h */; }; - 5241685E1CBE7A03E8163A0682D1621D /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C242F5C5CF00BE600119F257EAEBB9 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5248524F0C9C6C473FD8BC78FB66EBE7 /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2B7D72246D17F4BEADA9DBB937CB0A /* status_internal.h */; }; - 524AD0A55C048A7E8A9553DB208D8885 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FE001871CD91F13C7992E5B80DE7B2C3 /* GULKeychainUtils.m */; }; - 524DC30524EBE4F844D474B0D6351085 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 226917686FE46B844530C10023AEFF0A /* http.upb.h */; }; - 524F7ABA841C9EF68968FB363BDA4895 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 6215DDF82BAFEF494F492220E3E73174 /* sockaddr_utils.h */; }; - 52534288D9BF3F9E19E26B5334A0BAB6 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 77CC34C2E0202CD9E3301D8F94685098 /* ratelimit_unit.upbdefs.h */; }; - 525FED7A9743F7F20BE94ADE8CC09AD9 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD5DD5F94140ECAAB85DC0DFAE90E6C /* builtins.h */; }; - 5266119397A7A7A0C114D044AD78546D /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = A16D56F10C5B7F24AEC0C25D843C8B3E /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5268ADD0DB7B8B4FE87682E72FDA9826 /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2500FA362F5732800FFDBAF5654AEAA8 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 527BFC3CD2E4C0931B011A367EFC39A0 /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 218E5F564264978AB14947774F6CAE92 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 527C5ECE8E73483BD9C21C7082D1E606 /* compression_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BD71884C33C3393FDF0B72988C4566E1 /* compression_types.h */; }; - 52832D8D0733128E20B8467F3FD1D229 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FD0A0DCF8D27B542EC7486900DDE3AB /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 528E89A39DF668749E4A02C54A6F9924 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C01D818C25AD57E47812CC6D7958992B /* semantic_version.upbdefs.h */; }; - 529173B31EFCD3D199E79866AFBEC86C /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589A626BEB5968C17BE62D6B5E3673E /* HTTPHeaders.swift */; }; - 529F13981187E204ED5DC503856051BF /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = DAD90F70CD94AB2EF5425E9C7627EA19 /* error_cfstream.h */; }; - 52A7AA78049F7DE0D97FA63D81D3B7D8 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F16F14CA75635B99E0B9B7FFB57E65B /* TZGifPhotoPreviewController.m */; }; - 52AF5982A9CE130F74779DC658D3E3F6 /* DocumentReference+ReadDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91F01DBBCF9F49E13BAA932AF0884FC7 /* DocumentReference+ReadDecodable.swift */; }; - 52AF7632BB75271A44C6B4630D985A76 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9FE9D1E799EB73C935D56EEA803D97A6 /* ev_poll_posix.h */; }; - 52B2786B66B86C96B4BFC16E5F42F599 /* lrs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3635215E857462276736978F4811F6 /* lrs.upb_minitable.h */; }; - 52BCC3B2F8AE7F59556925DEC603C634 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA338B4AE4EF61D296AE0C8748532C70 /* SVIndefiniteAnimatedView.m */; }; - 52BDC21AC8295F042BA519ECE75FD3E5 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E288CF607F06884B9EF5A65DAF7391F3 /* matcher.upb_minitable.h */; }; - 52C1424FCDE2B65176BFAB03F3CDD4C4 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7EC175EC99AC0F37B86B996DAE8C53 /* server_interface.h */; }; - 52C6CCB75FDC6946443019B3D31FD5CB /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4C9F71DDF72EFB38649203364C2E9D /* authority.upbdefs.h */; }; - 52D7238CC058A0B67B704FD1C14A4FA6 /* byte_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7C1979B2E561B589F934C63B9DC54C0B /* byte_buffer.h */; }; - 52DDA8D342B2DFCD98A0DCBE053F8306 /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE715CF583A11C8BC6F95D26AFFEC8A0 /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 52EC80A10A846A004467F8A6AA63CAB0 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = D1326F7ECB39972BF141766EF23C4FBA /* span.h */; }; - 52EDEF6138C06777F85C7356927D76A2 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EB5433BD53C731953FB646EA95D88C9 /* hpack_encoder_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 52F0D6809EBB87E6F230622C82923925 /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 486E58D52C505317D9DA124B0982D88F /* empty.upb_minitable.h */; }; - 52FCA997A800537C0723B4A435BE2292 /* event_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = A70BD25C21328A26461B8BFBB2BA9B36 /* event_poller.h */; }; - 5304EE528042929C470DAA555BB065C2 /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A26D375351A72F0BE6B72CEF32619B4B /* httpbody.upb.h */; }; - 530B641328D7D5A1E5654A6A86B41082 /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = 84170237FAF94476A3AA0ECD74429473 /* decode_huff.h */; }; - 53106B1D745D95C6DBCA9A52BC4913A7 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C14106A5AE9203A94DFF7F46CEC2AD8D /* custom_metadata.h */; }; - 53173AB1CA85F90E17497E52E2599469 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F06975170B0BE23C4349ACAC89752E2 /* encode.h */; }; - 531DC3A9AA7B8F4F23997825B36BD8BA /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 0B3DD7C7E54915E343500C840A02357B /* annotations.upb.h */; }; - 53285CE6B45175C8E1EA335FBAFDBD4F /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E03DAF2B7031999C6C11E871A572302 /* intercepted_channel.h */; }; - 533311C5E8DD6F831D0913338E4A58FC /* const_init.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = B37E9DE4395ED895AF8C88D4DE4C90E0 /* const_init.h */; }; - 533318E2260A226CA8958B44F281E197 /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D3E68C6C0C69814AF51E01144D8853F /* httpcli_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 534EEE1F505544B29FA3997AE189FBC1 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE85A4E0500DB7C9ABA1CFEE48EBEFE2 /* http_inputs.upb.h */; }; - 534F25160FFB3D49CD1FA420C2A98CF9 /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0D6854E8FD372EA5F5BFCBA01464E6 /* posix_engine.h */; }; - 53526EC9C9F3A6DC5F9D82F81F5078A9 /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F2BEF1216214FADE8CC634BE998EFB49 /* tchar.h */; }; - 535D84C942E6DBF2C58785E41E1B06B1 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 63932561A7E4C89F350741C46B554F44 /* socket_utils.h */; }; - 5371B73F41CBEB4590F23CE87722F9E6 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C98504F7B481B075F241EE4EE5A09E5 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 537659D4FF14D5F0E1DA17E489E4CB26 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1380AA16327674A6052213645AD3F597 /* call_log_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 537C76015039CF71997A54308F078F25 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 80713B0A07F59477557B1C1215C2EBD9 /* hmac.h */; }; - 5380454C48A12A6E376122ABD8096968 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F43D2749B7622C6553C76885581CBCF5 /* ConstraintDescription.swift */; }; - 53820E91C69BC9E941111F56D9FD36C1 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C1D289F69EE14CC82115272DD58D44D1 /* metadata.upbdefs.h */; }; - 53837F57D87C6775E30501D902DB48A2 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 030BDA3682289CE9C7687AC97FDAFC1A /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 53883A3C4D2548AF1E253B3902670F02 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFE433B249C9F9554EDC97CA02434A0 /* array.h */; }; - 5389C25C8AD5E0C4F79E22DCD55639F5 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5729E892537BA2CE6983AD959EB4C155 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 539A55F74E4D3F8D654A01DBF1259CD4 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE65AF25515E97B47AF3638F6BDEB23 /* internal.h */; }; + 42517B6B99C432818E8006CD45BEBC7E /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = E0544D397B08F0AF899E03DB71395166 /* cpp_impl_of.h */; }; + 42543B516F8DA1A9A4A951BB05016F2E /* FBSDKLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 819C33DBC06454CB9DA18EC4BB5815BD /* FBSDKLogger.m */; }; + 425AE9958466D37DF8909D97666C2704 /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2CBC8426187E184653238E496DDDE9A0 /* lockfree_event.h */; }; + 42738476E7B7EEB78A325E513A41F120 /* descriptor.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1F08A65453217952415D6521325BA2 /* descriptor.upb_minitable.h */; }; + 427D381B6DD54884598BD777F56DCB76 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ABDF795A7707C057F692B4F5EC67E7 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 428D5322637EEA9528443A149902F6F7 /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBA62CB9DC08E749E1CE40592D42D023 /* iocp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42A169E4107DC6A7803D485F6E7EB3A8 /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 50842DB27AFA83E490BFC118B1161CF9 /* http_inputs.upb_minitable.h */; }; + 42B1CD5E5126E18A9ECDC38595BE3212 /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EFB26B786996F644680F54A59D4D01 /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42B6ACFCF650183030867CB3EF345E95 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2021B73E8FB399D99432EB4907CC38D /* ConstraintMakerFinalizable.swift */; }; + 42B862C4F828BBCF06FC8473F40C3712 /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B5D47C884131E60B2DDB60FB0CCB23 /* asn1t.h */; }; + 42BE23A1B7DCDEEF9E1D450C4D13EA91 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 88481D67345334B11AC692394A2A3E56 /* descriptor_constants.h */; }; + 42C1214A8897EF7BEE9DB3CAC634310F /* FBSDKGraphErrorRecoveryProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 230237AEB9E8A036D7EB7EA6C7F7E4AB /* FBSDKGraphErrorRecoveryProcessor.m */; }; + 42C22CE015852CB02739E6DA76E49D9A /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FD422F656B01D24AF2B1DBBAAF4AF71 /* composite_credentials.h */; }; + 42C84B3BC2CC0183EC3320A86D91B4F0 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 2A0770AB5A24D73285D395CB3757D183 /* fake_credentials.h */; }; + 42C9247FC36853A6AC1D2CDEAD47F53A /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6A86A243A7CB1AAA545CF7EDFF6799 /* xds_server_builder.h */; }; + 42CD9151CEE17557B4B56673D7C13C83 /* FBSDKUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBF97B82A5B02AF39843DCA31F76B3A /* FBSDKUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42CDABBD4865B82948EBCB5D2CABAF62 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = EAB955E731405EA1702336FB224DCBF1 /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 42DCEDBB6DB84FC5623418A30C1A96CF /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E48CC40F0D729BCEBA764449017BA0A /* stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42DDEA74CC07A85E195AA95CD2F229EE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F231E5C46CD3475CEEDC6C366BFE4BE4 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42E5DBB346DDBAC6BAFE7F909FF51AAD /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 685FB3EEA42ECF262A271F39D50EF894 /* chttp2_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42E7DF8EA3F36456E1CC440D878BA105 /* write_size_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8DCFCDB15D5444B1C580F9C54D24FCF4 /* write_size_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 42EE39C48875C28CAC9F47B080A01467 /* thread_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 4B62D4057E5597CC6168D2559253F0E2 /* thread_annotations.h */; }; + 42F46C3B2577E39E4C793A7FCC36AD94 /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CCE7EBC8754710CC75CBB7672B4C99F /* algorithm.h */; }; + 42FE1A25335CE3B2CF36031ABA65360A /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3391DFC9A9887592E1A03C67C5052991 /* aes.h */; }; + 4301C63C28C96427152D6204AE94228C /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC0B798E90EDF74D0F4767D9BA6878D /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4303671FC44CAD8ACDB6BE0711A78CD0 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C53437037A7B05B6717A650C59AF0A72 /* builtins.h */; }; + 430A661B9F21083BCDEA5B0437F0703C /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2021D21D17BF908BE79D1181E1489612 /* GULKeychainUtils.m */; }; + 43100075EB60A2125A0A3703D1F97103 /* max_concurrent_streams_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = EB73EDD79502202483A7306EDB1977A0 /* max_concurrent_streams_policy.h */; }; + 4311666C2D45FEF2124F38D7FA6EDCF5 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EBB5C474EB03D710BC548E324C8E9421 /* ref_counted_string.h */; }; + 4311710F044E090A72712AF946AE2D6B /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 791D2732CFDA9B3F6167D53AE68DC0A5 /* duration.upbdefs.h */; }; + 431FF6D7A00E126E9998480FE6DEF130 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = A77034D42547884F23BAA02E22614B85 /* tcp_client_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4325E230054322E044DA0AE32E1C0E53 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = AA27658C6EFAB3B0A518646FC99479E2 /* message.h */; }; + 4325FE3D51A27DAFA1AC760ABF7EB338 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 44E8E2DC3F467CB0F8FFF905151E4F36 /* authorization_engine.h */; }; + 432CD72F29EE4C6DA77F861F0EC1D4CA /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = A1E2697D18720EB6999AAA802A058CBE /* inftrees.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 433BE61EDD02914894D01E260CCE4B79 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D245DF03013D908317A469758A73B209 /* regex.upbdefs.h */; }; + 4340C69A8CBD4C6CA06E613F8E97782B /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 87BBBF20484AE65D65E87A44BB380F5A /* client_channel_service_config.h */; }; + 43479A40D39129846858A7DD2BC39716 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D74E0C976F9720A94FA0C3BAE525460 /* internal.h */; }; + 434A028BB1D2621C9F3B35EA69118575 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = FCB52E35940AE5614028D4FBEFAC1366 /* call_creds_util.h */; }; + 434BEA88AF7C93D6DB1DD2CE12E033A3 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 2970514DD2919DECDCA90B1C8789BC54 /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 435E60BB3DEC72B1529970AFBF6E6402 /* tls_spiffe_validator_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D759464BBE7309A9FA7005D312B21DB /* tls_spiffe_validator_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4365D1908FD17EA0DE50EE3F7D2B7368 /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6AB3F15AB06D53A9B60BBCCF6D8DE7AF /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 43704BC10511434F60DCE666773AD255 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2E3115B4E2A2564B87FDAEBB5B44A7 /* http.upb_minitable.h */; }; + 4376C00F30C2270314E503D85E6A52E7 /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 29A187FC1F72803EFEF1BD9477FBCEAC /* descriptor.upb_minitable.h */; }; + 437FA899890958B3A803F124AB47F2EC /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0E2FBD7854B6C6460B447EEB1895C3 /* str_join.h */; }; + 437FB6D6022507DDC5F51A9F1DEA9F39 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FAC4B868EEB38E245BEA18F7000FBC /* dynamic_filters.h */; }; + 43832C8ABD2B086378DEC5EE7CB0C08C /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = ED9AE210CDB58DF3B188D657E10BD461 /* FIRMultiFactor.m */; }; + 4388EBC152C3D197C85D0D8CB00101F2 /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 301442C8DDB71CF4AE1F86FA76A5E0A9 /* datadog.upb.h */; }; + 438BE7841DC7426CBD0179CA2C611C82 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B49A16FA40368185279B4A2C310276A /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 439CCED26E317D25D721A498905F18E9 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3D02C2B23E2AC89C724545E86CC79355 /* xds_cluster_specifier_plugin.h */; }; + 43A95A865E4C572F7CAFA3EF3E7CC8CF /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9077B079890825456067366E7FF08DBD /* substitution_format_string.upbdefs.h */; }; + 43AC7D34DFB4FC6A81057454E255C263 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D95EA68B985CAEF75A8C5D1FBA0FA1 /* matcher.upb.h */; }; + 43B2A71889C420344DA3DEA38D5F9A4D /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCF7BF70CAB59FB1C37DF29D87C902C7 /* local_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 43BA89E955A33BAA2A5DD7F73FE6B973 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 92EAB37BF4AB9224FEACF42E4607E0A3 /* xds_channel_args.h */; }; + 43C1F492E9FE587172A171F25F2F0F0F /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3B00C50EEE788A83CB36C8F9A10C164 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 43C4EBB533AF4796460CB704FE2A059F /* ads.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F441B1B89FA5B9419A3FD0BC200D724 /* ads.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 43C89358BB61E73227F6791E4697FCCC /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A2649EAD1BBD423859C4852C55F2F5B /* RedirectHandler.swift */; }; + 43CA01B445011273C04DE97E5204DA51 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C52EBB77107C904928C6E232A8CF712 /* status.upb_minitable.h */; }; + 43CA905B198A8B0CE8AB7CEA4EE83440 /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B50EDF341109ABF5DC4AC1851B0D9911 /* match.h */; }; + 43D196C79ED41D746061B589A29406FF /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 665B0409A3F57783061FBBC03E3452B7 /* node.upb_minitable.h */; }; + 43DFB49930346A1A730DC21E94E2F731 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3CB801F2A366FCF02FEBA88F769EF56 /* ImageProcessor.swift */; }; + 43F1090F6429F68E7E577E4E11A2BBAE /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 34DE205920796B4220744C496A612E24 /* civil_time_detail.h */; }; + 440C6189C2444BBBC7DF77B1E763633C /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 08DBBFAF8A8B580E237407FC34F323F9 /* overload.h */; }; + 441F2F1F0D6A28B357EBEEEBDD1E65F1 /* GoogleDataTransport+GoogleDataTransportProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59D556E20FA639C49D6132729D6451D /* GoogleDataTransport+GoogleDataTransportProtocol.swift */; }; + 44255BAC96E061A7539CFC365B8D3B1D /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 801D76EADEDB86E29361BBDB3AB88BE5 /* local_transport_security.h */; }; + 442BD15D990CC7F72B40F757C739A983 /* private_handle_accessor.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DD28DB9279798424D2D5B4CED181A712 /* private_handle_accessor.h */; }; + 443DAC9D42C592948F9503BB5D9F2B6D /* all_ok.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E5F4EAEA37811DC82A6F9825FB5C7E87 /* all_ok.h */; }; + 4449797E39BB5EEE488A8A031057D315 /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9182F7EC9E1A62E66B7BF03FEBEAAF7 /* cert.upb_minitable.h */; }; + 4450842D203F808090C38EA825A7AD26 /* FBSDKProfilePictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FDB7CC9C08B5D9A312264DE7461F6D /* FBSDKProfilePictureView.m */; }; + 445A4E772D47694BB1EE7082BCFF214E /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A96E8B2ABF1F7B815D89F00C42F30EE9 /* cpp_impl_of.h */; }; + 44699EE7E3BFE7C05ED3F1CA6092BFEC /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB47929D6C807581C15A374A681F4B /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 447042159F0CBF3207AD9CB214AC54AA /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C8DC95569442372DD857604A95DB3028 /* sorted_pack.h */; }; + 4474AB8BF8395BCE612CF40FAA0AD1D1 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3668F71DE277B867F99FF1ADC3A2E3C5 /* security_handshaker.h */; }; + 448EE2FEA8C3E5C79FF9046F01EC285D /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 8BC9FAC55551E50EB38E1ADAC3207842 /* handshaker.upb.h */; }; + 449431DFF076202E8207F7663A58C909 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EB6F331BA860997B6488517FE97AF8 /* fake_security_connector.h */; }; + 449A43E43242FE4BB5FFA945B1402ADE /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F3CF4B567D567776B79CDD2B0A3E18AB /* channel_stack_trace.h */; }; + 44A84D4481D7F309CEE0DFDEAC76B663 /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = D05A961206EFABD70FF9427F93416031 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 44AA8979799356A6ACA6F91FE2346808 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 66C7944E5A1BD4600D3395DE93C3440C /* per_cpu.h */; }; + 44ACA692B557363D502F2239EA7A752C /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E46B2A9232778A61EC47A19083EA212 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 44AF2D71007265C7901A31DDD50E0463 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = E1C176A2190F2980F85869C25BDA3B3F /* FIRAuthAppCredential.m */; }; + 44B565015DA56C037C2E7B5CD5714901 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F400970275AB4926E4D1FE9B45CED0 /* rbac_policy.h */; }; + 44BBE91F5E9D5E96DD029C054F6459D6 /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FA927C16905B61252CAA06767A09E9D6 /* trace_config.upbdefs.h */; }; + 44BFBBC2A3B4518B15A46F1EC60BA082 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 620E4543468B31C599AC6E18395B8FEB /* dns_resolver_plugin.h */; }; + 44CA8BCB8B356DE50192471A1E584FFD /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 3565F7CFE0E71D05C56F46591346A6D4 /* resolve_address.h */; }; + 44D5499CEE574119C7510C4D7E8169B8 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DDB647950EB3928A166BE76EB670B4A4 /* certs.upb.h */; }; + 44E33EC3371D5F5B4E0437C6C324AD93 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4817F1C2BDAEC2BA268BE15E7ECDD811 /* channel_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 44F0799BAC4266916209B5840A2C6DA6 /* Promise+Testing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15ED923827E689C870A1A22B788DBA4B /* Promise+Testing.swift */; }; + 44F07D438FB730B64A01B7023F206FCF /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 20996B14CC23F87BAF4A1E8C12FFF96C /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 44F33639411F7D14741E7DE31C67AD90 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 135002FD6EF4CA25D3C47EF7CA14755E /* frame_settings.h */; }; + 44F920D5D0878ECAAA55ADA35E031B42 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = 2122203842423B61F95BA75F4B280B52 /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4505D9B141318F6D9AD2C2D64969EAE6 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE39C0068B47C9E17C04E79539F5EE4 /* fault.upbdefs.h */; }; + 4506C5BFFC800CCCF7225D0B4F48AA10 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41566A93184D41C4B6618F78A566CF5F /* api_listener.upb.h */; }; + 4511317B190A7B96412540538E3F925D /* trace.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B1B813F26E57C67E3CBC76288F80EE5D /* trace.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 451185C81A9180AF833D17095AFDFCCB /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0604B132AFC4A12F5562F7D4AD1973EB /* cookie.upbdefs.h */; }; + 451FCC377A0E89E58FC3E7759D93F391 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0F450728216B10BD7F908C6F56EE37D0 /* strdup2.h */; }; + 45251013C178FB81D2103A6C242452D6 /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C9CFD920B8C0BBD81BA33FEFE806759B /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4526E2A795A144DDB77EB2D98FC16FFD /* xray.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B06900BF9E38790921A94BFD425B6999 /* xray.upb_minitable.h */; }; + 4532BC3349902A02F82A5CB1375474B9 /* FBSDKMeasurementEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 5608CC922CBD3CFB46EB94105C81BB35 /* FBSDKMeasurementEventListener.m */; }; + 4533BC69B1119B6D959B94872817ACBB /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 13D137FB3AF6139D69165FC7696C5291 /* grpc_server_authz_filter.h */; }; + 453B351EB8730BC68B0CEEBBFA462DCA /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A71243831BC5502A74FE27F0568E52EA /* ratelimit_unit.upbdefs.h */; }; + 453F72917FF0A2ED03A5DB8E4721C633 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = B967926046FD08B2A5460D6364D67E98 /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4549A79B3891220A9D70150AC2905B3B /* event_log.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = F65543549E0B682661B30D5BDA5B2575 /* event_log.h */; }; + 454A9F8E09B23FC09289A6E0C78A77F3 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E89FA969C4CBC802392349403AF83FB /* TZLocationManager.m */; }; + 454B0DD9E71AC79E8ED8C699B06377C5 /* completion_queue.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 25F10C4FDEB0EF65CCC8CF029CC34D08 /* completion_queue.h */; }; + 454E0089B2A5C50B7F1FDDE28E263A1E /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1345A4AB4E8E1AF8F9A70C2AF05745 /* cluster.upbdefs.h */; }; + 4551875843D9904F4DEE8A9ACC06B395 /* weighted_round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40B91BBA543BCCA0F62106599C98FACE /* weighted_round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4552FDE404165FD467C5175322CBF4C7 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA461F55C8DE519E17036A85394A3C2 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4553EB1E55A340130249B866EFB59B61 /* int128_have_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 6696A6292A6E9FF46FF0AF03EDBEFDDF /* int128_have_intrinsic.inc */; }; + 45542AE08045E5408D128BE708441D1A /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C943ABB0DF12A8B2FFFEE206C2A75AE /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4556AA2245CB4D87E32C08B3CA569F08 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7252B40877D3F27DC0F510152845FF /* discovery.upbdefs.h */; }; + 455909929B2ACD4BF08FB0E8F390B825 /* flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C20BF97AA928D8E09394423319FD7DA /* flag.h */; }; + 4566305D653773A59DAC8786FAB64545 /* bloom_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACC607E78A58A421AF9E27D6FB8354BF /* bloom_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 456B4C775F2266B0F4A8151E44DD42F5 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 211CE059666A5CFECAB2119A938BD9BD /* FIRVerifyPhoneNumberRequest.m */; }; + 456BD0ADDC886A0EB7C6ABE6E4BB84B9 /* testing_hooks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E019A3720C30096EC12F247AF962C20 /* testing_hooks.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4576E171FDCF42D83B7DA48F1D602F0A /* FBSDKMutableCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA1F574E421A7C6706594D17B699C61 /* FBSDKMutableCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 457A1CBC729145062CFB23348D8D5D38 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = 5086762C06A68DB3D1A7785F4421A359 /* prefilter_tree.h */; }; + 45866B5EC48326055CEBFF372E9B5B00 /* leveldb-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE11C78CAB73DFA41289A7A66D0DDE03 /* leveldb-library-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 458B3E31B0AFAC8BFD1099B4051390D8 /* arena.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 77DC4CFDF96F15D343F690C68973F793 /* arena.hpp */; }; + 459235ABEE8B06A82D0DF21E52494046 /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 180682A0DF066769F1128B8650E42D78 /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4596489E2F74593D01D9855EA6D78FD5 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = E635CFEF526F7F9769CF8C74AAAF5B54 /* fake_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4596C17B38666DB92420F9FD643DB2E4 /* stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77C74072B37A028D4905D1843F3753C0 /* stat.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4598717886B29721DD35A5B6337648A7 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = C53DBF44197793C22DFB118F19789EAC /* FIRCLSInternalLogging.c */; }; + 459C9DAB85F8EBB90A4E42673F29E627 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE161852803F78EF378AB054EA479C1E /* overload.upbdefs.h */; }; + 459D334DB77A6AE70418131EB8C83916 /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 827AC848C0CADBEB847A47784E54DBDE /* http.upb.h */; }; + 459ED3D3D8ADE457AF4D597ACEE30846 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D90C9E5D9DA4BD6FE63556B685F94711 /* retry_filter.h */; }; + 45AB1E210D70A68E786219A2F3FDE902 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D963893BAE4A49975BBEDA637DA9075B /* matcher.upb_minitable.h */; }; + 45AB44C85A96D540D000A4B851E46181 /* listeners.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C003480FB5BBDD0DFB60FA578B39A444 /* listeners.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 45AC42B8774E67E2BBD9D9A04781DA6A /* call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E54DB0ADF1DE0E5B1DC3B88269DA1A6D /* call.h */; }; + 45B51FC21451059B0AE4338778E54011 /* symbolize_darwin.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = A5CF7CBB44B435F8D993901568EB0A54 /* symbolize_darwin.inc */; }; + 45BF535D71B0A61829E381742F8A3542 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 93474DEBAE52FBC40F7692A4F239C1EB /* internal.h */; }; + 45C020E1945F0BD78B4637755BFDEECF /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 09A6A35572805CD3C1AC86BF8DBBA663 /* connected_channel.h */; }; + 45CA2F9149F13595BB4711B828E485DD /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D51208312732FB36AB71D08B0F42E8 /* message.h */; }; + 45CC1AA308AC3B73C2779AE22E383721 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCED5A544E97FE002AB430FF6519DDC /* trace.h */; }; + 45D14942DA97CDFABE3206518AE7D9C4 /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = CCCC7D89416B229F0F4EE20E0EF45A43 /* load_balancer_api.h */; }; + 45D23C3F8BEF9E3C436C2AC9985DB595 /* rls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDC8B058FB2673D569F17DD83CB9769 /* rls.upb_minitable.h */; }; + 45D739618C178D1E5ADAF6985FAD8956 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A515BA93875A75C80E08805019F470 /* byte_buffer.h */; }; + 45E182AC2738285183F9043C50551618 /* undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = CDD03177AD567F42E6C685E45F5ACDDF /* undef.inc */; }; + 45E29EEC24111D187F0E38EBDCC69CE3 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58E9686C6725D8EDD3F973B36B7AE209 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 45FA7B7D108997394DBF0DA3206174AD /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C91743CE946EDB50E95A7FE6A561C3C /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 45FB2F47F6510E095E4B62071E4EAD3E /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8A762790AA3792FFEABB7A43903175A3 /* endpoint.h */; }; + 4614D5B60ADE71CFC44BA7F5719A01D9 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = FDE9971441B6542A07BF888B6269BFD7 /* seq_state.h */; }; + 461873D0A45B9CF40BCA6672A74A889B /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E1E3D98D5B32C50F03001A1E013F9D /* grpc_server_authz_filter.h */; }; + 461D3E7A5599D9E8E9F0ECCFEA22A74F /* zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = D79295064D1834C4D110E37CB525094A /* zlib.h */; }; + 462C87D1BC3C261C03CB19D4AF5C0658 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 1B24E7D93B6BFE288247A94ADBDD44D9 /* core_configuration.h */; }; + 46313A10F24D0C954A3E3847E2BD7E99 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF8CB945BD7CC1326CF34340A5FF143 /* common.upb_minitable.h */; }; + 4639FC9E8CD09CC636E7FEF5A2669BD7 /* FBSDKBridgeAPIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D98C36989E256519A289FC2CF7DBDE /* FBSDKBridgeAPIResponse.m */; }; + 46424E1119E060A84F75446279925263 /* event_engine.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = D01F212465EFCEF1181AF9AEA299A46D /* event_engine.h */; }; + 46461AB4C2E5E30352B08071578CFB03 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B6E5614BD7670DAB4242F2391580A0 /* socket_utils.h */; }; + 46470374EE11B43793585DB56408DB34 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A85BBC3AE927B528663D13A61D4C28 /* lame_client.h */; }; + 4650FA60120702A2013AADF7C6AC6E25 /* percent.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E554E5F0B728EA89B84601D5B349DF8C /* percent.upb_minitable.h */; }; + 465D49DA67F9857B27E7DB48EB93A4EE /* filter.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C68D1872B2CABC7F9091677542BF6591 /* filter.upb_minitable.h */; }; + 465EE82640EBB31B1C9EFAE93F00BF61 /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2128B3DE5C5D7E3C9836F68E31F9EDBD /* FIRPhoneAuthProvider.m */; }; + 4660E4FBF4CC48CF1F90DF934DE90211 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCE39C030A91A9136C6DCE4494636885 /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4666075C0E8C5D94DD39701EBDC742F8 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F767A8DD54CDC6FF6B6E50760AAF34F3 /* FIRCLSAsyncOperation.m */; }; + 4668DBF2D5871FED86AA96B8476324B5 /* call_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D583F498D5A8ACE0493107B23DDD28 /* call_metric_recorder.h */; }; + 466E5B0EFF7B64044D405BA5B978BB4D /* curve25519_64_adx.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AFFE60E3761D7AC34D18C0E00642CE /* curve25519_64_adx.h */; }; + 467D30401669A583D703AD3EC17D163D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C0776099E6E100AF931314C78BAD9597 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46936D1AFCB0CC6D970E6FAC97F44264 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = EDF2BCEFAD0EFD06A3FC24B06A8AB1C5 /* insecure_security_connector.h */; }; + 469FE07E2E053B7E3D2058EDBDD4A60E /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0A0C77B3BC55CFBEDB43C42E609E998A /* handshaker_factory.h */; }; + 46A5492F946A361C66B3103832A5D4AF /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2526A0755B587983DC01295E004D89F4 /* service.upb.h */; }; + 46A85DB767AA564AD4DEAAF2681F00DB /* listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 62969704850874537502F2CAA4205BAF /* listener.upb_minitable.h */; }; + 46AA9A779C3EE91D5992FB4A1AB88F08 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1203AAB4E3333D73F665E0B7DE765432 /* api_listener.upbdefs.h */; }; + 46AF828F2314DE65D7A89A62B47AD16E /* srtp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B3226F7D8B5CFAA18479D8F1BDC064DD /* srtp.h */; }; + 46C4EDC51E47D461E293E705019C8BCD /* FBSDKBridgeAPIRequest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6303AD5813CD70C34FC91D432C974C4D /* FBSDKBridgeAPIRequest+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 46D233F72932F76736FDBD558B480620 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6078B1F1F1385EF1D7F77BCC9C9087 /* credentials.h */; }; + 46E08C31C4EE806E93B368D5F49EACF1 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 80002EAA6E4893D3BBDE704F50BAA8A8 /* httpcli.h */; }; + 46E49FA0E0781E1A7272198010288CC1 /* internal.h in Copy crypto/evp Private Headers */ = {isa = PBXBuildFile; fileRef = 5588F96F20FF174B05FD3FFA7754ED80 /* internal.h */; }; + 46ED73B481C67DFFDA0C043ECC7B44CD /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBF1761A0AD8E9E8D5BB19E57FCAC04D /* skywalking.upb.h */; }; + 47062A5F52AF207CE80FCF78F3DCBA77 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F666E93383D700B2D8D1709FCEFEF0EE /* FirebaseAuth-dummy.m */; }; + 4706B6FCC2DE9F823D6D3CE50EE11E9E /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = F16EC86F46C78461778912AA1C8DDA62 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 47096E1ED5D935DFCF11F65BB86AE42D /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 3300CA36BCF60CF1337FF190ED696758 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 470EF6B66A33BA6838BD5B84DDB23C23 /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A666EADD66B11C47DAD02DF68906E2 /* FIRFacebookAuthProvider.m */; }; + 4715BD71EB0000C7D2FA146E620FA68F /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 29ACFD3F2349F8B2424D25A435F895CE /* notification.h */; }; + 47178510152456BF14D749A769AE9F57 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2827DCE479256B69B94919A8CBF62277 /* oauth2_credentials.h */; }; + 471D3A54D6DA150982497FEB64AED7D8 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3A4510DC32A0DF3CD82A111999EF8C /* decode.h */; }; + 47228BEB17DCE4A4AA6E1D66C9745AB6 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9E34A8B1BB7EE16FE03A44FF4297F3 /* resolver.upb.h */; }; + 4730F99DBA45002FCB857BC4011D1E41 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = D10BFFF8DC539EC221A412CDB22DE11F /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 473AB20647AED60BE56DBC2BF547AE7C /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C52B4800703AB8C0DDA7A051EE6BAE75 /* handshaker_registry.h */; }; + 473F2593A03A80A5564CE44747D3B4DF /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = F668FF19C626C6EEBAD846DFB42BFE3D /* json_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 473FAD50CF9F97AE4DE9507BF8BF267A /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8760C2551E3EF6D3CFF5A9D8DC260A84 /* cord_rep_btree_navigator.h */; }; + 4743B8F608B896EE1C4A1A0BC2AE4051 /* FIRFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A005BFDD5E490070418397507EF803 /* FIRFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 474E54D00E9ECC0743D0D587136AA700 /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2E41B159D97428071D2CDBC7EEDECDF /* http_uri.upb_minitable.h */; }; + 4754FB1C26D1B7B4D7CAF3312A743826 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7D18194489388681DF933D43B27019 /* plugin_credentials.h */; }; + 47561F80226A2F9E987A0B2C0B3F567E /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CAEF4EC7C93486445750D0511730C69 /* randen_traits.h */; }; + 475B6D247C35AE4B1CD4995A840E8E4C /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE93FA8C24CCF9B1F26A826CC4B7AA5 /* init_internally.h */; }; + 475CC3E13D7D1A3B5E5FBE840E43D29F /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F2ACB450DAE5AE291E905FF2ADA819 /* windows_engine.h */; }; + 4764A27160B49158371A8CB946F42173 /* address_filtering.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 2942A465403889B09A1170673A09ADD8 /* address_filtering.h */; }; + 47661AB55764649D12CB9BBFB6F43955 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = 650A66A4A5F6B90D18580AE3200202F1 /* time_zone.h */; }; + 4770B0822129B11FB84EA89DE3625417 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEFC843E0309ECB939A737D7BE62A63 /* auth_filters.h */; }; + 477E176D01C322023A7D573DAED06C86 /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9E7D0A90AF6064F0B34E55F558D81 /* method_def.h */; }; + 4783C181D3E14239ED75D077A1FE968D /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = AA85465C87E5CA3FCE9B08A996CC982A /* client_unary_call.h */; }; + 4786A54F8299651F5AF0A79D5F05746E /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 4F212B33FFAE46FFEA6C2785B14C5BE2 /* json_args.h */; }; + 478E5ECA26D2B1778BB0FA72BC0A5540 /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E3D060167DCF47B640338CBFDD6D7EAD /* http_connection_manager.upb.h */; }; + 4799562522BA82259ECEE6079CF88FFA /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5788D3BA0B307F728027B1E82D1F7F32 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 47A8C34EC64ECF35434D6A5A3147D9DE /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5338D96B0E004E9A4DBB28E3EBE0DDF1 /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 47AAEA5AC63F6D244F173840D8C499B9 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC1F9C3D6461B2727D6BCF931945267 /* path_transformation.upbdefs.h */; }; + 47B270F8217C14DF146772DFED00A9C2 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 9284538AE559FF562D95575CF09281D7 /* service_config.h */; }; + 47B8563D0656075C18E7526637C44F3F /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 172E380D54302D72B0735B57569D9A73 /* range.upbdefs.h */; }; + 47C072F25D148B65BBAB8EFEBE6774F7 /* hash_function_defaults.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C6DB15F26B5599F886315F481D1DBF12 /* hash_function_defaults.h */; }; + 47CB7569AEAA14E5CCDFD85E36D49BFB /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BD0DF267EBD5FC7FB9621F679FD79A1B /* call_size_estimator.h */; }; + 47CCA9CEEA78AC6FFA96B619020E38C9 /* internal.h in Copy crypto/cipher_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 1C460D8F2FC2299D6B46C6844DBEF179 /* internal.h */; }; + 47CD7D6209D6975635BCAA5678ED3E6F /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7C55ABCDEA47B66E9EEBF316D24727 /* init.h */; }; + 47D2E16BA3CD7223E9B33792AB35E161 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F16FA970EA0602D07C67913753FC16B /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 47D6D49294A5A7BD4EFCAFE25126BA82 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = D5880DB9493C765CDA0CCCDFFC4E8C80 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47D973C405B79EF255BAEC5675F6519A /* compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1666305AA6C2FE0D63F604D684364EB4 /* compression_filter.h */; }; + 47DD7A3C5DFA4C24FB645356405997F1 /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = 97667718C1A7D320C8FF591C8BA67CA7 /* config.h */; }; + 47DE932F5C43185414FD58502C28B82E /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 6D15D75EF21230E057732909E28C009B /* enum_def.h */; }; + 47E2483764220E2DCC3C3381CA7927F1 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 325EF1482161ACB5BAB5EE840704EE22 /* map.h */; }; + 47E62EFC601857F98C671BC52BD1F076 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67B9EE64E4269EC06AB89AFBDDC2A5E8 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 47EA7A97B3733347179FCEC16FA5DD43 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D791CDDFF9D6D48697A5EE052AAC3CD0 /* status.upb.h */; }; + 47F76CDE8B4234172D8A4980070AE752 /* FBSDKBridgeAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C773D61BCD20C2408EECF40EFDDE42 /* FBSDKBridgeAPI.m */; }; + 47FBFDACA0D6B474872DA3AFC20C2166 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0432C18E76864F5A4842908742EB4FE2 /* alts_zero_copy_grpc_protector.h */; }; + 47FD78FA555AB53564440A4FFF872679 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 880192DEF3DAC7A13AD607A3E4BA9AC7 /* outlier_detection.upbdefs.h */; }; + 48049599C02F5A98B4DC4DF8656B3CC6 /* SessionsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 996DAE7395EEDBFFC7914BA037CE3ECE /* SessionsProvider.swift */; }; + 481DE571293F88831659584C2B776CE4 /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEC43A18DF22EFE5945C54A16426FDD /* FIRUser.m */; }; + 481FFE93E56A014C2D787399F788C576 /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = F1973C8685CF61D20E6AC3A37FC14447 /* def_type.h */; }; + 4826C490E7C793C74E2C6FD680F256D1 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 979CD297063A53F8553B3B8A3C324201 /* ev_epoll1_linux.h */; }; + 482B74C0548970BB9C095E2D8530E421 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8926C4D9F02E4F4E7FCFC91D6370D500 /* ParameterEncoding.swift */; }; + 482ED76C6CAAA0D1F995011D1A6161BC /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = E253DA5BC5DB49CD986162FF3701D93B /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 48430A0714EF8BF9BA3EE460E4CC3E8A /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = F01D9BCA2BA32FB5A96BFBE0DEB7E9B0 /* bernoulli_distribution.h */; }; + 48433F3DBAD435767C9DE3DE3EED5EA1 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E30F3FF6DEE7537BA04B9CFC9C55804 /* event_service_config.upb.h */; }; + 4843F718554817CA2433E87151821BBA /* output.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 82EAB6287BD69D4B6161239F3AED83F2 /* output.h */; }; + 48492E8E41A4107396678E6E11CCD2FC /* charconv.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 9113579C24CB5BFE9F1450E092739F0B /* charconv.h */; }; + 484EB3CF3FD8FEDDD39310549C139FCA /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = F97104ADA3A816E7DB13DE02A9E2D930 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 485002CA29020F30183BC6C2C1B31EA0 /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 749F692094FB6B83EB53B8762DA3339A /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48555B579F5C2B126889E3C9EFD148B8 /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 41F3BE7A0EBA838BD5FE55C16E4C918B /* trace_config.upb.h */; }; + 48561C16D06DA1D9BE7F043AA23C0581 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE580411ACF731463E060B3FE637B09 /* dsa.h */; }; + 4858D4946AA8C0E635C51C4C6E5960C0 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C7772EE3624AFCF7045622DB188BEC8 /* lrs.upb.h */; }; + 48634F47352442AABBB0320C4DC14ED5 /* grpc_polled_fd_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 39EB86AEF9731B439AABBFBF55A960D4 /* grpc_polled_fd_windows.h */; }; + 486649242E35D3838B9C2117DA27949D /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3C7ABE7BEACEC537427869586E990E4 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4866EF8B5913122EB14A3F6F3D3FC1A6 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B72C150BE0BF5ACA4A63559B7C4CF04 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 487CF3E177959C6E4FBCF63EC701C5AF /* decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AA07301BB0B092B125B2788177C3E3 /* decoder.h */; }; + 48823A86F0E0AD20ECF66D2246E3A07C /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A00B39B81932371A65D921F3564445C /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 488623BEBA690A2D64E0031B4E5D7BC7 /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F3F363F46E2E686DECB811B5873B4619 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4887C9174E9DEE754F4A67C205A2B869 /* xds_override_host.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC65F366C366ADA7C666454E2107E16 /* xds_override_host.h */; }; + 488F62A87F1DC1FAC8BCF2BA20D00C89 /* atm_gcc_sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E00C097ADC1C02EDA0C7838567776DD1 /* atm_gcc_sync.h */; }; + 48923706777F8324A5BB5C9EC7F634E8 /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81BB81F34D9E4E6852890C3E0BDE282A /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 48973407248F5B61D3D952EE32720FD3 /* gRPC-C++-grpcpp in Resources */ = {isa = PBXBuildFile; fileRef = 28F341633BC96126DD3A7030F0B54124 /* gRPC-C++-grpcpp */; }; + 48983B845574E32257E260F9FA740232 /* FirebaseCoreExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 946353C815FB6D0E4E0DB6DF0D5874D6 /* FirebaseCoreExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 48A5501F764343EE0DBA1110D840DB7D /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BB1E6D3AAA38DB3A7794C70D6357E0 /* timer_heap.h */; }; + 48A89022B968252EE4ED63422B5A4969 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 48D1C7EA2FCD37DE5A3E3E89148F4AA0 /* accesslog.upbdefs.h */; }; + 48B06FDB9B4166B255EE027381455446 /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F167F068B6DF85CF46C7C1377B902F23 /* memory.upb_minitable.h */; }; + 48B3C49AB849AD64C9B4E7B027E7CEB7 /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 9E7F54A8EFB557515B47B3394119D694 /* channel_create_impl.h */; }; + 48B5A484C2BED3019609A0B82B2BCD56 /* FIRSESNanoPBHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 129C50E2E57433177947028E411E96DB /* FIRSESNanoPBHelpers.m */; }; + 48B69728D77F24CFC7DFFFD5F13748D5 /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCA655961FCBD27CE5BB13A17EB3CB0 /* file.h */; }; + 48BAAE90951E4249B8CEECE345D051DA /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = F09F50D86FF9D6CCB5370C71712E5039 /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BD3086407E648370EF6F9463B7AE33 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 85208430284189CEBDCE21D516EF8D2A /* buffer_list.h */; }; + 48C08CF5B77AC2A2E371A97082CEBC11 /* def.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 9FFD149E7AA437034712E2622AA57B82 /* def.inc */; }; + 48DD3869E8A9A8C4FC71D77EB7CE7FC3 /* FBSDKSmartDeviceDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9861FD6B23C0DEF2D2601727143F83BC /* FBSDKSmartDeviceDialogView.m */; }; + 48E8CCE349696F3D7E26F4CCD2AC9B5D /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C31CAC29D50800B422B9F821B07AF454 /* service.upbdefs.h */; }; + 48FA3582C43B9C7C8623709597211E51 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = E07E9F26A8C8E4D6968AB7E67D3B45BB /* tcp_client.h */; }; + 48FCE3011A36893DCD4FE1B2F1FBD28A /* stateful_session.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 56470AB90F2B6FF6463FE57FD3CE2523 /* stateful_session.upb.h */; }; + 4914D5140A0DC55A536D49B59FF30C49 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E0DE4567157587AFBEAA2C6E4E12FBB6 /* file.h */; }; + 4915B6196BFEAA87B1220292B04E769D /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7E329122497A76C9E90D9065EF072A /* base.upbdefs.h */; }; + 4916E62665B53992F0BF20283F46EFD9 /* spinlock_win32.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0C01B76116B510E6C490BBFE5C04C821 /* spinlock_win32.inc */; }; + 4934BE64DC219221CB01E37B1D0CE523 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FF31DA07A359FB043DEB6DC1FBA47783 /* backoff.upbdefs.h */; }; + 494212C421A1BA9B65E3948CAB3FA1C5 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 447B321D5D636755C973D81B6ADA45D9 /* server_context.h */; }; + 4955A31B39A640A31EFCB0995E98485F /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 515283E9D95A7CC03044FC14C20E5EF6 /* periodic_update.h */; }; + 4958F236C127A36B47028162580E0AB3 /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = E3348D6E4089862FB094C264C7859272 /* opensslv.h */; }; + 49616455168AC039AC2888608F2CE8EB /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1AA53FA5458D1AE881439E1DD978EA34 /* path.upb_minitable.h */; }; + 496390397CDAD6C52499677D58B62F68 /* histogram_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 7570E786D499EEE69E92D4FD150EDB79 /* histogram_view.h */; }; + 4966E9A1CFBF89D4703E1AB746A4E154 /* client_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 875DAC23D3D02534E4D5C74AF10C54F3 /* client_interceptor.h */; }; + 497100039CE6BB0748266F6A81BFA7B3 /* status.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = C9359F072C2E5E0123094B282F6D1215 /* status.h */; }; + 4972352C36D3791042DCDF5F6B4C44B5 /* bad_any_cast.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = DBA2F84D67C7FC0E2DA50BED91C2A99C /* bad_any_cast.h */; }; + 497DD85D7722D33150BF58CC855A9970 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA9049F6464A13F299F017372C06A2E /* builtins.h */; }; + 498CD08C01840935F11D88B298BEBF92 /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AB9F4541AF1020DCED98DF0F29A525 /* posix_engine.h */; }; + 498F51F15A995DD776D3CAB49005BD60 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 492455E16CF8AF9E7DBD4E8148FC327B /* path_transformation.upb.h */; }; + 49970A97B1EE40C998688EB148F78B93 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = FF98068A851B922CC051736DA72AE6F1 /* FBLPromise+Wrap.m */; }; + 49A4B66E7604596BA63E1159C046B16C /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B32D1FE61B82BFA1A44475F711A7239 /* common.upb.h */; }; + 49B346FB56246DF011157861521B4375 /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E74931488EEA0B818F1FDC414BAD4D1 /* fault_injection_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 49C0056BE25738A9FED0B646F0FFBDF6 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3404E050FC33C005D9DB27C770417F /* router.upbdefs.h */; }; + 49C59F31FB0274EED226F6A85A594AC2 /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D0F2A4ED30FEBE73CE78A7CD6E2B585 /* polling_entity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 49D44AF69FA31705AC3FC1ED0C4C682B /* prefetch.h in Headers */ = {isa = PBXBuildFile; fileRef = 551E89DE5FB4ABAF45B2D3EE044F9E2C /* prefetch.h */; }; + 49D77D4306A09B3A343D42D1122E08CD /* FIRGetRecaptchaConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FF56C7B76276422F3A359C14722A01 /* FIRGetRecaptchaConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49D9D6CC02EDF682500D5DB5CBC9D01D /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = 1118363C6C663B93861E3284D1BD81E3 /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 49E5709BE053449A33AC2F99601E3B82 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 662EB73880F51F07D408F80C66A7CA88 /* ssl_security_connector.h */; }; + 49E8EA71DEBE30220B925562B35C5389 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2F4E33923E94D25415EF3B944AA2494E /* unix_sockets_posix.h */; }; + 49F0F8B0AC00E6055B148FB12C962A61 /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6E4FA46DE45706A2D9D3DB3C3BC56 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 49F233A182D2AFDC097A84168B599E85 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F9221C2A87359430A172BD4E52BC3DE9 /* FIRCLSSymbolicationOperation.m */; }; + 49F509F6F6BAD743E0C30ADAD9DF6ACF /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D98DABAEE772BB1DD63617B8FF027B /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A0008CE6B20EBDD155C0EEBDF627AF2 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = B92A64215BA14DC1F7F545AF784AE3CA /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4A009249969DE50515BE94AA4BF84CB4 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = BE0577105E7F3D1AE85BED915C80855E /* channel_stack_type.h */; }; + 4A087863C862FB3AE028CE01F567996C /* xds_dependency_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C9B59308171410F6DF75E5C80CBE123 /* xds_dependency_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4A096F8D08F654B9EE9678520581AE85 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF0205CACF899F8B29383D0C677A168 /* matcher.upbdefs.h */; }; + 4A19CAB3C54B62473B9BE36FAF0AB322 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 478A82331DD40A74E8459B036C24E695 /* dynamic_annotations.h */; }; + 4A31B2A241ECEF73D780EA7C9A197CD7 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D188360BAA228FFAEFE47B939FC88CF4 /* context_params.upb.h */; }; + 4A3408870AFD7A52C3C222AF478FA3EB /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = CB98109FB15681396C94BD634132256B /* grpclb_client_stats.h */; }; + 4A3CB78352AAC9001D0CF94BF6560584 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F44F5AE8D7E6FEACE180E0F3BD93F36 /* status.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4A3FC2E50FB6199091B4FEB7685F3B55 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8DB373B281F6E8C9040D8C7899857D63 /* rbac.upb_minitable.h */; }; + 4A40910AF1C2DD2DA22E7BA95F091339 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF6F268D29CF47170A71E10FC03D7E6 /* extension.upbdefs.h */; }; + 4A504C630EBC88F14556199DDB8A2B97 /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E9299D245185A97F0B6CD8F87B3DD934 /* metrics_service.upb.h */; }; + 4A527C8DF96FC52DD9665CDBCC6C41F0 /* cidr.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A1EF75B569EF74151CDC67BCCB06744E /* cidr.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4A54D48D14F4E3084E0EC819ACCD314E /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = 3DC01C3375DF8E9CCD6B3FC32FB4531F /* work_queue.h */; }; + 4A556BB4C2D5DA65D0E2C7DE53C6AB2D /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 081E3D4DF4D923D6DFD96CD8F8CB1483 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A58DB470CB9309C4C76432B2C821310 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E4A2B1C71DB6E19727046CB35419EE /* server_interface.h */; }; + 4A74C8FF14CA7F52D5FB6AB8895A26EA /* stack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BA7DA97D498987E9D8B7C35E40C75306 /* stack.h */; }; + 4A7D23CED05C42719C7840B1EA8A6CB7 /* server_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = ECFD3097CA6CFCA07921BE6F5AEEB485 /* server_callback.h */; }; + 4A8365AA7FD8821405FE0762E1C99D7A /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D5DC7BC3E5D72E2F4CD63CF029D674 /* propagation_bits.h */; }; + 4A83F89A9F41DE8E431A5243C997FDAD /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EAE2FE83D15AC08E0EBC818EB951B0B /* udp_socket_config.upbdefs.h */; }; + 4A84C3F37F6A88397504A40CE2320989 /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C8203C214C73CD19DDFD77218D3DD6B /* validate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4A89C2432372696C4618C552E849D305 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F2957244BBA0D0E75C513E7506E12E /* empty.upbdefs.h */; }; + 4A9710F59C3E6C0F47624CAA39B2F8A5 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 767C2BD8FC610178F1C4801AB4A51265 /* stats.h */; }; + 4A9B0211EDAF39167B798C55F6AF7F31 /* cidr.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4E6DF5FA6367DCB929C8578F84FC7C /* cidr.upbdefs.h */; }; + 4AA10E51D004538FC6890CDB46DBE6AB /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F21BCDEBFE1D43702E790F02BEFDA009 /* migrate.upb_minitable.h */; }; + 4AA4BC4393E89274E6CFAF3D5FF50A5D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 4AA657585D06FCCE5F3FF9F50A446FE2 /* stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48E89A501E903C80A214542DDC55A99B /* stat.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4AB34AA74A0F93A18FCE9D7B7F930496 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 64823E725C4E674E267401AF506F605D /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AB437BE0512A2D6562B5CEAABA2DA73 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DC8022568459FE71B141DAA3002060 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AB6F1D3D8A196ED51D8840B1C717202 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 945F6670C8ACDF675B89A12DA99FE082 /* resource.upbdefs.h */; }; + 4ABB5967C1036585B4D7C5403F85C79A /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FFDD9A23A397D55E55A458DFBDA22E8F /* context_list_entry.h */; }; + 4ACADB984B3D06BF5AC7E9BD0B08D9CA /* FBSDKBridgeAPIProtocolWebV1.h in Headers */ = {isa = PBXBuildFile; fileRef = C2B56B87FA91A4376FAB5266E0A835D5 /* FBSDKBridgeAPIProtocolWebV1.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4ACEFAC69C404913A0ACC2D81F043020 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A219F78CCB8BD7B51B3385F1A62D425F /* versioning.upbdefs.h */; }; + 4AD3DA18F5DDA609CB5410267598A8DF /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ED636F11D37D99AEFFA05BDB3E021E /* metadata.upb.h */; }; + 4AD44686487540E337DBE8CA2CA6EE6C /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 231E225200B7B4B26138CDAC2C61E4D0 /* representation.h */; }; + 4AD588ACFDADCD2F6D9A73D31125508E /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B013494A829E0451B92A2F3A7252EF /* FIRAuthProtoMFAEnrollment.m */; }; + 4ADB8F70ABD19C5D7823B62CF8BDD865 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = D639857D089B39120D462486C6EF7EFC /* zone_info_source.h */; }; + 4AE16C80243B084CD02F9B245C83C7C4 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C18E7C0E11862D0DE6F443724525B37 /* dynamic_ot.upb_minitable.h */; }; + 4AE21E122C232BA1A409A2D7FB121127 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A5874ABBEA879E35596C057661A097 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4AE3A7EEBE6024F870965E4FAD80F1FD /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C52A14E3421C29A12DC02885AF56F0AB /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AEBFEAE4562683AD7B5A4E2E985A6D3 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B5B4AFD11BF80F8D85D3A788B7E8B727 /* client_channel_internal.h */; }; + 4B01D820FE5E3C52A379353F086F8273 /* FIRAggregateQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D42DF066086AE998DC530B594EF4EED /* FIRAggregateQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B065844AFF3B55EAAC80CF1907D02D4 /* FBSDKBridgeAPIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 57640E43E0D37843AF4DDAADFB28A441 /* FBSDKBridgeAPIRequest.m */; }; + 4B0DA8B8E08F1F4AB88663883A901A55 /* str_join_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A072111548346D33CA1DDBE86D04FEAC /* str_join_internal.h */; }; + 4B167706AE71D74D3BEA7610E8A2EE2A /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CFE919F1407BAD9EE0B18001E8A8B3 /* init_dump.upb.h */; }; + 4B1CDFB8435CF9ED66915E85F3C05260 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 7575567F5AEC1B26A7F478110C5B7316 /* annotations.upb.h */; }; + 4B23B05F62E805619C9B5BA83E34F4A9 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6BE896FBB6DC715ABFDBF34D72EA44F /* Box.swift */; }; + 4B26FBD2C0448E0B0C0169EFEA07B2D3 /* cidr.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DB47E882BD767811470A4DAEC30419CD /* cidr.upb.h */; }; + 4B2C3DA594AC4F51E381F29A1B377751 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 371607E68776D3706052B1D33CEAE9A1 /* rand.h */; }; + 4B30C7D4586D43D3ACAA11EB5062E93E /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BED89936E3E1601D58E613534CBF9C81 /* cookie.upb.h */; }; + 4B336F8529351EC54C7E664F17EB8A0E /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA9D653E40E75F81500BCB0FEA6B09A /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B36208B8CA65F2DCF260286C5E794FE /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7642E2D7E217F38AB587323DDE51FEE8 /* base.upb.h */; }; + 4B3F2E1D3116D446BEC165A19744B107 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 0363B16BD4835DECBF3FF29B1470D8D2 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4B40547F849A9F8F8F81B07B0EA57ECE /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACE7D1D0A2BD2EE17BB81AC243506556 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4B40F177D8DB9B1AACD33836573D032B /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 8A95ABEA1E2F1F96D7F8A331634325A3 /* arena_promise.h */; }; + 4B45C5BA8274EA4995740FC7FFDEE4AE /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 751719767A12B1B026005FBE1B610B8D /* health_check_client_internal.h */; }; + 4B4669E1DED6E87B82F50B83BF00F35B /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3F2604761CBD21284B33A1C25941E42 /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 4B47D0EE827D27A041A9A76AAFB90BB1 /* modifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = A778E2CD824AF7FC4304D9C82C9A3D0E /* modifiers.h */; }; + 4B5C809DA489F7E3E76BBEA6741B432E /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = 3031066C94875208E9092FAC035F7A6B /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4B656A22FA21F5E031C12155D412BE7F /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 029A68A22F958AC46BD2D39C84C90396 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B686B917CBD8D9780DF942541CF3998 /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFC874BF57537F54CBB4DEAC1BCBC4F /* cel.upb.h */; }; + 4B6CB2330AE034AA3F9824458146C508 /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 83405120103B79BBF404D754E1264A06 /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B75874866CFC5FF763477054A29E6FC /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77601B09F46C8D3C79CFB47D4FF63562 /* frame_goaway.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4B781AF6AD46586E9A1A7152EB465AB0 /* struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BCB6B9B277D901673B2FBB41D73F2294 /* struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4B78211DA5585D378F3D9D171C0D8C2C /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E93BA82196D234E13353D0C4D3D818A /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B969A712C49CC414C92A9514AD1A0F1 /* crypto.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B1AE9CEC1FD5628E6FFEA201AC69D619 /* crypto.h */; }; + 4B9D12F4CA724E216568D7444C0BC9DA /* FBSDKEventBinding.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C869930C53A23E4A0ADA5E1B7F38AC8 /* FBSDKEventBinding.m */; }; + 4BA171D4E1364FC6287AFD8BBB7E1B18 /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CB0EB5C4DC5A866277758CFBD1D6B7 /* string.upb_minitable.h */; }; + 4BA78EEFC8BB9380AD3EDE83E5A2269C /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA0BAE943222B1EDF73DC518107871E /* gRPC-C++-dummy.m */; }; + 4BA9B91E655DB542056857A7FFBEAE62 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 737EF08A43E8AC1FFC9A7A089F6916B8 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BAD99B7394E225CEDBF94B8100BCC7F /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6FA9E2354FD1E112C661A0A7FD4154 /* ConstraintRelation.swift */; }; + 4BB1D17D70901258FB5C7B847D0781BA /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE0E8085CDBD98BCEE03236276A7B75B /* datadog.upb.h */; }; + 4BB670F0857F4C1EA2B72C96853A94EF /* pthread_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 10134D4F6AC4272FA5FE052645E14679 /* pthread_waiter.h */; }; + 4BC14FF2F83A6308F63E968F9B00C710 /* all_ok.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 1FBFA5581BCEB2880164A123D3E935CA /* all_ok.h */; }; + 4BC7F10A84CB2083042C3E653F7F4A1A /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D5C3AFF6EE7278E4BCF504BB78F7F7 /* FIRAuthWebView.m */; }; + 4BC886F653CC39ED833D4042913909C7 /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DCACFC67253E0AD9E2C3E795F4A6E4 /* server_initializer.h */; }; + 4BD40E900B5DC8842E425CB39A1AE190 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = D651AD830D0B2DD09F116EB98E66A8B3 /* FBLPromise+Race.m */; }; + 4BF3C8C9CEDDAF2135B073A0520DE9A9 /* server_address.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = EA9F21C6268F4D663417020AD861CDDE /* server_address.h */; }; + 4C0AEBD1EB6589B83AABA771DF0B2305 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA6B4411B3165A412F7531337B03E4CA /* struct.upb.h */; }; + 4C0D432E07F39EA382A10ED31EE660D2 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5C2E71FF7D53BCE90ADD445D9C65BB /* authorization_policy_provider.h */; }; + 4C11A32FFBB1C104B851C6B35D508C8D /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 33A2FFCCDE41FFCA9FD0D8059A7AD717 /* regex.upb.h */; }; + 4C1263025422C97137DAC95083CC3138 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 319B79CE8F4F063308E3019CC9C2ADCB /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4C13EDC20109D1E2F925241CD667479C /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C2E7D22A36C083F38D01745A2F8B0FA /* collection_entry.upbdefs.h */; }; + 4C1D1161348D585CB4614B5F4E662AF2 /* tagged_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 643C5A40526EF6C34E22B318CA88B199 /* tagged_ptr.h */; }; + 4C20593E3F9D7910567635E1F01CD6DB /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE996A2703EDB59B1A55C774793D315 /* FBLPromise+Async.m */; }; + 4C297C477ED9595629C0EF80133F75D4 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = F69094A131B58FC883475257ED46370E /* memory_allocator.h */; }; + 4C2986A94D68AB50BDDE10FAA3180D1A /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46AD19559DE72E3F65BBF3D2D7492095 /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4C369D62C3C7A1166C82609259FE2904 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AF97B3143BB8AA31449BADCC490A4224 /* huffsyms.h */; }; + 4C38BF6437C55ABBBC2DD446EB64EE8D /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 436EC4B6C0FDB8B459D9B220FBD03700 /* iocp_windows.h */; }; + 4C4D55559C5FE480089612E0E6F42EF9 /* regexp.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = A3DDBE30C53AA26B7305D89532E5474E /* regexp.h */; }; + 4C50407FD3A5656A9F7178E8D4F0DF53 /* distribution_caller.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 42479477DB3C48F6561B7F96EFB1EF8E /* distribution_caller.h */; }; + 4C5FD03DB2827EA42F4562D055956305 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4F15AE20B1C0428AF21729BBE10A3B /* api_trace.h */; }; + 4C65EBF03C368606F744B0C94C13FCBC /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F439FB85B24117162638A4C1214C40 /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C695254F619AAC60DB7EB3EC6C9FFDF /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EBC98009ABE8EFBA5CC6AFCDE27266 /* sync_posix.h */; }; + 4C6BADCCC1F2AE148E614E88D8B1E1E1 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E9C872351956896144B8026A89DFC964 /* alts_counter.h */; }; + 4C732B84027DE8288B08773A798BB1B4 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2AA776829552D8EA7BE0D26D689C98 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C78B614D60AE4B57B1F4A293284A304 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F7911D65AE35ABB189D678A1B9C4F0 /* kernel_timeout.h */; }; + 4C833902593FC89E17187C4B0E75D7CC /* overload.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F2D07C712CAABEC484B78C3D0E40384 /* overload.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4C87896D543E7CB4972EFF1387093BA1 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CB75ABD3A3E8E2CD870C85073B9CB1 /* lrs.upbdefs.h */; }; + 4C879272F099B4B71E96D5880E090A40 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02D9136B2BAD3886D7C81C724C8CD75B /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4C8BE462B06273C4E8E4281C6D28A1BF /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = D810BEE2A2B1ADCD657A1C38C5F2F9A4 /* vdso_support.h */; }; + 4C8F07033ABFCC7B00B377BBD03DDC72 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B2393ABC2DAFCDE78E9B063BAB4F05 /* dh.h */; }; + 4C93C843465CB16A7B7F08F2381FE006 /* kyber.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DE6A43626FD58AB63DAF48A516B2E9EF /* kyber.h */; }; + 4CB57588A4683C2A81820BF83D357E60 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F53DAC51266A2F8ED76CD05BE5407E1 /* loop.h */; }; + 4CBA415A3F8AA531D4F8495DBE8254FA /* FBSDKDynamicFrameworkLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A1DCBEC967DB4100EFBDEFF353D4408 /* FBSDKDynamicFrameworkLoader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 4CCA6A34B0F6F98C8ABCE9223E4B87B5 /* metrics_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A758B21CF7D10A8CFD19B110022217D0 /* metrics_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4CCF510B266BEFFB6F7EDA157508651B /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFD79274571CA0C63B5C132A4970ED4F /* FirebaseCrashlytics-dummy.m */; }; + 4CD15BF2FD420D6E45A8EDA36BF149B3 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFF749DB4528B80CF31FA89FF70CDD8 /* file_watcher_certificate_provider_factory.h */; }; + 4CD1FB946221B26AEED0AED97FAEB8B7 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = C04417D143FD9056D6F4523C379F728A /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4CD38DB1BA455471667B8915521D3793 /* win_socket.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8754A76B454FA080798D7C35F71A131 /* win_socket.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4CD3C34BFF5B1AB3D63B9A6FA487FBB0 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BF655FF1A10B7578E130FAA7C94ABA /* xds_http_filters.h */; }; + 4CDD9E0A2E8DB3004DF2543F31C22526 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = E84F4396968E8AB6DE8331911581D9CE /* server_config_selector.h */; }; + 4CE67C1BDEB98C14070DB808BC01B750 /* str_format.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 5260CB27F328410DC320448C4263A7FB /* str_format.h */; }; + 4CE68ADB4421578E8C0005C2C4556930 /* EncoderDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA1FF472009747A0FEFD13039A0F8A5 /* EncoderDecoder.swift */; }; + 4CF9F6B107936C9F96ACE8F72DAE4842 /* client_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3839C8671F503EB6E49E49EC80D16612 /* client_context.h */; }; + 4CFD43D125BA96AC891821F572AF6E7D /* FBSDKBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = CEAB1794060052BFEF723B37FD006496 /* FBSDKBase64.m */; }; + 4D04AE8D59A24D71BDAE10769F298572 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DAB1482A21EDB7671405398CEDB0B2 /* slice.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4D05218B323FC686EB49679A0D616DE0 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = C167C10D459E66C58FF34A745A8FFA10 /* alts_security_connector.h */; }; + 4D09DDD128091CFDF3E11E24782C2B60 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = 8ED72FA4442983F7DD9471C5EC527487 /* ssl_key_logging.h */; }; + 4D0A63D72B7D7030D336346BCDA2BB6B /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = EAE08AC4C65240597CB47221E81A069B /* parser.h */; }; + 4D16A5A76908B7EC2078A2A9B8E07B8A /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 854EC16F449FC756E7A801B07EC4A1FE /* channelz_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4D19A81ECD50CC217FDE073383E3E5CC /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AA2A83FA6E2761A77F0EDE4C71E9193 /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4D25869F144AE911B5AE68EAE92F24FC /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 08D9602C0EC12C594ED9982B5DFDC241 /* proxy_protocol.upbdefs.h */; }; + 4D289035FE6BEF9D293302E1C309C32A /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B12F16CC2967047916D46A8F0016938 /* salted_seed_seq.h */; }; + 4D30F6B86E9A18F6185A83009A16AB56 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E758399C9E1ACCDF32F114E98201AB /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D32873C4ACEC2A1130235AB48B4818B /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB77311EE6259A8BF15FBEF46A8ED31 /* frame.h */; }; + 4D3DCF3F302E92D108E9CB0BB6E3FCB1 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A1212CE60092825327BBBC84D7F91ED5 /* any.upb.h */; }; + 4D483F9AA9B229C1C389AF30809A0322 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 768F69437C5212D8D3C2CAAE2553B0DD /* legacy_compression_filter.h */; }; + 4D71E5E896BB0BDB2B741B92445A9E1D /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 36D6A3CB32156B4288165D3EB988D1E6 /* filtered_re2.h */; }; + 4D7751D3B0D61623561FF30EC2A90D41 /* pkcs12.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8BC0C33DF90EA62D68E2D250249D26E1 /* pkcs12.h */; }; + 4D7C830EFF37AD0718DF1EE9C59137B0 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = CD7D433AD86C837E52DE6AD9E51A9403 /* build_enum.h */; }; + 4D83E415E3051C0E3E61A442CBED2224 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = F7E03634FA7BC1085A08D4DC7500CD62 /* closure.h */; }; + 4D8CDF4AFD0285D4ACC16D9982743FCA /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6102E5558CCA9C1FD3EEF9263FAF8EE7 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D90EB9B245B86F315B96BD7A0C78D07 /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = C85DA2ACEE5E86C9DFF1E65866B0FD44 /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4D99F5D547C21ACB19ECB6E951E27A9B /* channel_argument_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2A5F2D23C39D8ECF783244317E257876 /* channel_argument_option.h */; }; + 4DA6A4F68FC4584CA41DA240D3CEBCDD /* systemd_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 961E527BC8686C0FD202C2BE30E91ABD /* systemd_utils.h */; }; + 4DA6FE1179781D115C966F5F10DA6D74 /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = F5CEE9E369CF1EA76B66C2F5BD7772C8 /* supports_fd.h */; }; + 4DA72FD7F1FB2C0449EDEF4B8A579807 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5CE102580802F51735077BE3F25FD88 /* ConstraintPriorityTarget.swift */; }; + 4DA77B1AF3426AF6C7574B17312E3A9D /* FBSDKAccessTokenCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F57F4D11AF9F1CAD8962A6008D2D9CA /* FBSDKAccessTokenCache.m */; }; + 4DB8BC3E87F876F6FEEE4AB6CC341E79 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EEE40DD6739F80BA48749E9960A5FE /* no_destructor.h */; }; + 4DC032894868226AE220360BADB2C237 /* SVProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AD08A495B88A28E047B00F5CCA9851 /* SVProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DC06928DEB8598AC2AF5095497FC46C /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0122E0EE204F151DFACBC75897A6C5 /* tcp_windows.h */; }; + 4DC276B1F4972533EF79AA628A2995CF /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 60CF40161B6ED2F5CAC3E38CA16D9340 /* transaction.h */; }; + 4DD9325C17CEF3807153448E8E3DE63C /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F1DE39448CB794C50ED28AA351406A1 /* accesslog.upbdefs.h */; }; + 4DD952DE4FEDD1CFDC700077C108DC41 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF2BCEFAD0EFD06A3FC24B06A8AB1C5 /* insecure_security_connector.h */; }; + 4DDC20C7DC842A4F979A6562BDCF1944 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCD5E981F393E29F7F963AEC8EB71FE /* fault.upbdefs.h */; }; + 4DDF4EC8BF6F41C42E7E59352244F800 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 065AE978F3ACF0CB44B9FC14E6F42A31 /* grpc_tls_credentials_options.h */; }; + 4DE5DA4F1D6026CBF3F95050BCFCF550 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5001D2C44EEDD6CD5C7F2C326D7E9BD7 /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4DE5EEBC65C7CE594DDA1DD46725F568 /* FIRSnapshotListenOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC0C60DC5CC38FA0E83B8C7040351E1 /* FIRSnapshotListenOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DEAE5703BDD544C9956BF42F7D57CE5 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7636C8CC20D4C9DE849AF3A77913DE35 /* DiskStorage.swift */; }; + 4DEB490EDC9393566C7BD00B0DFD636A /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1076BC0E0EE46072E92D9C13A58B8BC0 /* filter_state.upb.h */; }; + 4DF58F5D07F1DDF6CC14946F19069DD5 /* legacy_frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DF28C0645ABA2711196640ABAB30B3 /* legacy_frame.h */; }; + 4E0581E1597FC6529E61A91FA77F8C38 /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = D59E07E1E6E030561B557C59C202D5C5 /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4E1737BBD14961ED5EF5546556B7CB02 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = E67552D31E12F6F80380F059A6A910D6 /* native_windows_dns_resolver.h */; }; + 4E1E9D5749293908C12D97A873D3FC56 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6012519A575DDA6E63478A74D84DF19E /* iomgr_internal.h */; }; + 4E25B5DCFEA122E2DF70BDA78FB6AB56 /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 145DF62D59F52E6D5DF6E58FC9F0486C /* zipkin.upbdefs.h */; }; + 4E2DA3EC5923D5022AD612D2A3DAF875 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2796959A2FEE489EE004CDD8C6484D62 /* load_report.upb.h */; }; + 4E2F6718B94000D998B3ED438A08F291 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C463F3320D453A08BEB89F8B74933AC4 /* slice_internal.h */; }; + 4E31549AFB624311481002C5E427B9AE /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A48CC4717B333EBE6C975A3DFA020D24 /* cookie.upbdefs.h */; }; + 4E34758CF74B4C4188FB15556DB2C184 /* FIRAuthRecaptchaVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = ACAAACD4AF9B293E5F739430F3D32B5B /* FIRAuthRecaptchaVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E34F091AABB8EF8E469CF65B0135F6B /* internal.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = E9E002F22C2C16CF42F8E6EEEBCB2759 /* internal.h */; }; + 4E45B4822BA46CDC8A763D89DF8BF6F1 /* build_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 815D8EB77F86F16CD3DF926DECCB6595 /* build_enum.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4E4B4E5F05CE32F7FAFDBCBBA7648668 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 79AC023FCFF5CB24D75B68DE48CFACB8 /* GDTCORLifecycle.m */; }; + 4E4FE5DA0FDBA57F837F983A953CB87B /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F005CF4605D5130B7D5889686AA81E2 /* hpack_encoder.h */; }; + 4E50B5DD36E8C837EE4FA2B628C529D7 /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B0D4AF986952BE6650CE7A3AE713E4BD /* descriptor.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4E6378010600DC75A658055E0EC101C8 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = A7203EA7D5E06795F067BC4D294A03C6 /* compress.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4E66D62842712244D1A530255C6B704C /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD099D0E9C171AD9F70C096029E241BD /* server_info.upb.h */; }; + 4E66E2A7A97AD7B177A4E88C4932C028 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 150F8C7E54930C3B2291B393DD623289 /* FIRFinalizeMFAEnrollmentRequest.m */; }; + 4E67EBDF3175BD83BF69994AC41522E7 /* native_windows_dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6572FA404F3CA2E684C84C9921EF9AD8 /* native_windows_dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4E6C04D96B190473AB60E6B07C24318E /* FBSDKCodelessIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B41FCAF938923D43BD3A18D4EAA8F04 /* FBSDKCodelessIndexer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4E7536F223C6A20262A1A9822EB0E24E /* GDTCOREvent+GDTMetricsSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B4712AA4522882B52816EAA0A4871C /* GDTCOREvent+GDTMetricsSupport.m */; }; + 4E8642D8339E2F19E56EBF56F920CCB0 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC2810BDBA1045EEEDEAD9F8FFBDF2CF /* load_report.upb_minitable.h */; }; + 4E88FDDE43E9F47694823140C4717C46 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EE65D35BE38936E3AE594C5FB94C9DB4 /* polling_entity.h */; }; + 4E8A7D1700735E2FD751AA2EDEF3D997 /* Promise+Retry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40E98F4C41A7CD2009B6BBF84A8E2B38 /* Promise+Retry.swift */; }; + 4E91C903E92150DD162A824A581F1850 /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 7898B94618A60E30C44240617673FC6B /* status.upb.h */; }; + 4EA36555B088C3530345FE02E13EE165 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6ED37B1A216C18100B54FA3B1FBD5636 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4EA434615E52DB2063D436F82219A1CA /* symbolize_elf.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 2408342D6767DD28091DA74A6CE45626 /* symbolize_elf.inc */; }; + 4EB803766AAD2DD075CFDD4BD92CD513 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = B00BE153CCA246A3E52CD57084EAA180 /* subchannel.h */; }; + 4EBC9AED17FAD7818AD13F9F16F3D77E /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 40EFD834DBC3F9F29E735265E09298A2 /* listeners.upb_minitable.h */; }; + 4EC9A272F134A7A89188EBD574260D6F /* value.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 192142F996E718186E0CF65EA111A3E7 /* value.h */; }; + 4ECDD0E265F53734942B1AAA1B6DB3F4 /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D31FEA1CC24E51E1E389D7608D2E55F /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4ED15005A70894768A6ED099DEB1BADD /* opentelemetry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 002BB04CAEF8B7F80E5EA090FD142D3E /* opentelemetry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4ED1DED60AEE21DFD096A48F79BD7DB4 /* dynamic_ot.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A0337B689407131D89C420A9259700E4 /* dynamic_ot.upb_minitable.h */; }; + 4EDD77C4244FBD8EDCFD0AE1512D2043 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 70B76E00EE4152ACEC6A7EDA536423B6 /* http_server_filter.h */; }; + 4EE1AB45B88DCE4B47333D3D151DCAA3 /* health.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE93F5D9B2EFA17BD4C4C98713B2B3E4 /* health.upb_minitable.h */; }; + 4EF2741D7D9422384E1F39F93A51283A /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601B310BBE704A4D817534011F5DAD8E /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4EF6E9C567BBD9B33C57B6D2778AAE3F /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 505F2C19D0EE4A3524AA460499EE6087 /* resource.upbdefs.h */; }; + 4EFD20D8C6CE022BB2A14167C662ADA8 /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = F4BEB117051A7657FE78FE17B91CFE2F /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4F19ECB13C49ED2CAED28C7600CEC60E /* server_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A7E4A2B1C71DB6E19727046CB35419EE /* server_interface.h */; }; + 4F19FF897BBB74669A2E9A09E6DA249C /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C79A36F5B7EF2349AECAF9B6972F10 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F1E1C6122F040E89D1A944DAC5B6A8C /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C906DFE8FC2D0D80CFD86DE5805311B5 /* http_connect_handshaker.h */; }; + 4F20E748A801D0A42C496326C66DC2CA /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAA1876D6554BA39D6557E15D09A51E /* authority.upbdefs.h */; }; + 4F27018F27FEA19D66A9D9C9114C4212 /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE9BE15C3430A40FCB684ACB011A77A0 /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4F27F5E00FFE1CDE95FA45F074307D21 /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9954B6650074C2141F26763C4080CAF2 /* dns_resolver_ares.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4F34F5FB60B81BB045E99AFFF2E9C70C /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18DED8D7ED4A5937C3F11C6703019587 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4F39E8BCAA6DFACB7D1B0B11FFC4C953 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = B7C109DB7108DBC05464C6C9EB0F8D15 /* binder_android.h */; }; + 4F4A5B72C8DD5D9EA314DFA83551D8ED /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 196F5A88E6FC55CAB2A46410A6342ACF /* http.upbdefs.h */; }; + 4F4E0CD76B4DC6C2E6CDCF76B5B67806 /* empty.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A1330A178B9CDF709895EAD64250C083 /* empty.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4F4E35ED102F56158D66A96167240F9A /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 29B09A01FB20EF9EAD2ED087B30BA1FF /* curve25519_tables.h */; }; + 4F56550567EEF7BA578AE5CA2A5CB593 /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34E8A94557578676BA0DB28AF029B44B /* domain.upbdefs.h */; }; + 4F59A8C81527379B0A32988875AB93D2 /* per_thread_tls.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E46526A5BF9C4A1C334ACB727BCF72EA /* per_thread_tls.h */; }; + 4F6105D4B0FD2F53E2F595DD882BA291 /* max_concurrent_streams_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86934D3F361C37A4A42DA8C91CB9EE18 /* max_concurrent_streams_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4F68F7B93444054A5162EB40E03EB5C5 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8EA75E31B96D119A51904D19D63593 /* secure_endpoint.h */; }; + 4F6FAB0E54B32025DBFADC936725070F /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 153BD321F9CBB19BA1EA9A72848B0171 /* any.upbdefs.h */; }; + 4F7239DD73EFA8CED892633580A8B310 /* stacktrace_config.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 732A8403363EE4579EE7A45A43BD1D14 /* stacktrace_config.h */; }; + 4F818AC3104F50D18DF0A4E98CA49DFA /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = BA7B58DBDC50C4CC8C7A7088D01246DE /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4F8337F0793B1DD34BDA9212579E442A /* stateful_session_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BF56EDFA54A7949A5A3C82421E8CF0 /* stateful_session_service_config_parser.h */; }; + 4F83FBE45B7BD4C21E4632488DECC23C /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = B9CB2221759EE50C9BAD9C61EB7E216C /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F85AEC57F3DEB4DB923EBC38D0FA97B /* windows_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2AA7F598F51E25AE2913C4F2F3C100 /* windows_endpoint.h */; }; + 4F871683548F1F87515474D81528A621 /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 1D6376E62F11DBBD7D6A3C58A26999BE /* enum_value_def.h */; }; + 4F88E6C0AC829534683FF0D4328016E1 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F7FDCEFBA540A7C52ABF77C8EE2173 /* interceptor_common.h */; }; + 4F984004AAC751B50ECDF16BAE2B22F1 /* map_gencode_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 6346DF8941FD9F0A68679D980135E79C /* map_gencode_util.h */; }; + 4F9CE814A99E98846234E3967480805C /* orca_load_report.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A2C79F2995B6AF10EE59D8330F8CD73 /* orca_load_report.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4FAA34919E1DAF1CC827F7D779432A0B /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA4D3A6D5A7CE76510A43B0092C11BC /* server_info.upbdefs.h */; }; + 4FAA678EEA906332F1F5EBC54C5C48B4 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 005FDE1922FDD8B34861A4C31C4546BF /* promise.h */; }; + 4FAD394E600B87E0042F35E8F6CEDFEF /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = E888036BED1251FEABD2B93F4CE3237B /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 4FAD712AA2BA16037CA13D9E9F5E837C /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FFC48E65C33597D6ABF494EDCFA79 /* callback_common.h */; }; + 4FADDAF190FE16BFBD36AE7710DE3403 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 83C8444A3856974819809D0722C49C0F /* http2_errors.h */; }; + 4FAFEF148DEC1194D9C798326EE74373 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 42F35FE91DBA2F29FF8E9A9BF11FFC4C /* extension_range.h */; }; + 4FBB76664D6D5374056BCD0874525EAD /* FBSDKAppLinkNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 57AF3F1EE2DBA786257727ACEE99E057 /* FBSDKAppLinkNavigation.m */; }; + 4FBC505F3174FA4379462D1637BC5A79 /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = D1E44139DA3E017635E0EC416CE8C2C9 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 4FBDB5A42F36375B09D15D72BCA33AEA /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8CBE01C629300257E13E88EE21567BEB /* fault.upb_minitable.h */; }; + 4FC7E998A718B52910B48F4E0640DFDE /* status_code_input.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB8BB439810112811EA1C236A7FECDD /* status_code_input.upb.h */; }; + 4FC93C1B344E0B8AB07918082F4BF98E /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 171595DDC79506E9441EA1FE9DF1755A /* fake_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4FC96B64F37296FD54C5851FE2E89D78 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 0C01B76116B510E6C490BBFE5C04C821 /* spinlock_win32.inc */; }; + 4FCEC80AEEEDA4FF34004DE595469751 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A7A1B9A0081C7B9420637EFE10023FC /* xds_routing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 4FD68AE15EF219126800CC8FF82A4570 /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C9360AEFAD407A4CC16C8003870BF137 /* dynamic_ot.upb.h */; }; + 4FE3F0CC78016FA75706089538B9423F /* party.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E76A1F4A63EBA535E6396DDC03A067 /* party.h */; }; + 4FE6F1AC42D7834DD37AB8F2D82A8BD8 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9128ECD6019ADA644AE06276FBAFE2EF /* filter.upb.h */; }; + 4FE784E45C913ACADD0B86851FEC8075 /* http_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 328CCDEF924D516E84EC40458B4A740C /* http_trace.h */; }; + 4FFD2B881665BE3F3595CC67825535B2 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC3736BC3769C851108C0734F56E0004 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 4FFFEC56B9F1B068007A8D7E4CDC56F2 /* shim.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 35F8C83F9B5FB9E056AC998C2ED301AB /* shim.h */; }; + 5002685C195E286D78F0AF5FB8DD2A23 /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F86A68B4E72FBDC1F4098273C1EECAE /* flat_hash_map.h */; }; + 50103F6DF44A6FB0A854EB40334D152A /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C03034C5B485A72AD6FBC7A40A474E /* frame_ping.h */; }; + 501131939EFA47CD0E69C16BA95A306D /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B57865BDC504D350D45AEC3AD393B74 /* FIRCLSLogger.m */; }; + 50131FE7B4B9B7AD6FA0B24D07EE8EDE /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 575C9A0A492D0380697F2DA52405F64E /* windows_endpoint.h */; }; + 501645AE82EC97A6D592A961CFA09B1F /* status.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 796239BB5D4609175F1F252C8CFA26ED /* status.h */; }; + 50171DE8F37B1003AFD6707B5392BCED /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A6860DEC7B9EABD696E9B3577FF6ED30 /* enum_reserved_range.h */; }; + 5021D783679E1511354CDA18D1D74702 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C73E5DDDDB59CD242BE63B5677304F2 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 502355F41022F3923180FAC6DA85F23C /* ssl_transport_security_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BC9BE8EA97FBF78927FA3656190EF21 /* ssl_transport_security_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5024161DCF74D095148096835BF44BCF /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1484482173EE1046BC9B62C2347008B2 /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 502E831C98A89E8E5E0FFDF319244BAB /* call_final_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12D4C6E75C280E0358CFA3A59609FE06 /* call_final_info.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5030B4C3C1098EB96074EC3DD65C4628 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DFCBB9C8BA88BF4026D258D2BCEAB978 /* security.upb.h */; }; + 50394B01CF97F30FD8DD7A6A90FBC525 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A4093FB160AAD1D9C28AC62D5124BF /* stl_type_traits.h */; }; + 5040610C8B2BFC69F7EC2B56C849CF50 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8F87BC79CEB6781FB4BE0CCFA81AD83 /* alts_grpc_privacy_integrity_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 50461F6AEDD0D10031829A437ECD08B3 /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A8349E32919E01CEE6DCFF6A9E532934 /* filter.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5046742B686CF9FE388D2AA221845001 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A527C888D027A7779DE0C03669E1A28 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 504A2AAE20DBA0091D045D871F3F5336 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = A68AFE229271E2F2B69E588152129BA9 /* any.h */; }; + 504CF29F00515764920B4E7471985EF5 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E5BF4E757840685705AA81C0F89D37 /* json_object_loader.h */; }; + 504DA8998EEC5E289401FC099842DA6E /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4DED4A07B57AB3484526F0E1C930828 /* versioning.upb_minitable.h */; }; + 50538824049D1E57E130F5606EAC7BF5 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4CD2C81E03B9FD7EA603878DA8D46A81 /* tcp_posix.h */; }; + 50549F4134EE5C81E6DAB340DE2CDD7A /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76C8356D5073B835856131DBB06D9CE6 /* status_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 506E13345CD0D59746BEA096BEA9020F /* FIRAggregateQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07555685F0F689CF9D6A521B07BFD0D4 /* FIRAggregateQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 507405BC4BB879458FD0B1E2D98D4115 /* legacy_compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F02DBC18AF9A74E333A2E67AAFBAD386 /* legacy_compression_filter.h */; }; + 5074C2F49FEE4B82967275EADB187ACB /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2FC6DB0308C47F5FC52D4CD5DB232A /* packed_table.h */; }; + 507C21140221B4D0B4DE5E8389E14F7B /* metadata_query.h in Headers */ = {isa = PBXBuildFile; fileRef = 1997154079AFC39ACD5285CC1EC645D0 /* metadata_query.h */; }; + 507F39DC172E61E4826689D4707A2960 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 16F6EC2CB099E30CDA49820E93000981 /* sensitive.upb_minitable.h */; }; + 5085D58DF16AE35BC8DE02A54FE574F7 /* FBSDKIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 24888C84654435A63580C70C5D13D401 /* FBSDKIcon.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 508C7CF29E47ABB7DD10C5D3829CAA2B /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = F4C16D2AE9F346082B4309AB63381345 /* grpc_tls_credentials_options.h */; }; + 509A93D0CBAAB6A78B8E2D267988F23F /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = CCD6B4219392E7B7D65DF024F1F2AB03 /* fake_resolver.h */; }; + 50AC455651E237831572BFDA360B8D98 /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 896E5DB13A578ACFDDDE181C97742ED9 /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50ACC6B31CF4793084DE8A304A9CD83B /* FBSDKDeviceRequestsHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFBF6B26F36AD4465F8D1DDFEEE1F7B /* FBSDKDeviceRequestsHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 50ADE24A2891F723BBB1A356C81E2D86 /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC0EC1F8A379CEB24BD6717D59D727E /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 50B09F8B58A290CA204F493AB163360A /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 25A77749ED273757006ABCF4DC8EA562 /* enum_value_def.h */; }; + 50B44B45FB9681A23B1362A2C558C399 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5028DEA00B756041BFD62CEB50291FC /* overload.upb_minitable.h */; }; + 50BF431F9C531888793BD6EF552F05FE /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE108C1B1CE93C8934E8E52DF5BCE9C /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50C58E14979C704B1CBDAD18D407005C /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87E1A17D4BB1ED1CC16F3A6F32CFF564 /* encode.h */; }; + 50C65A66307C67BCCE827B9BBE406D48 /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A241EB40948D13FB13C501357C4A0FAA /* route.upb.h */; }; + 50EE5D7F76E88AD9C3519729015DDB2C /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 581DE77256B6F527DBFD30D1C2367043 /* bootstrap.upb.h */; }; + 50F0AF9BC78CE720A537F15B42E1E15E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 50F299BD24E050E5E7D16A4B932F49C0 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CE55AE505F681AF1AC5E327B6689F8 /* nid.h */; }; + 50F569F94ABF4CF4160E166CB5685A79 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 71D1EDDC59631D1F882FB7C2A85F9159 /* socket_mutator.h */; }; + 5103C16A96BA87F72670984456974A1A /* FBSDKCoreKit.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DC3E942937373523E7475A4AA6688D /* FBSDKCoreKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 510AD2FD3FD24F4564099C7C93260D33 /* domain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9AD013A5427DBBE4F942FC7784023D /* domain.upbdefs.h */; }; + 510F154D204BDB7577BC62F358046490 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6A95C8C84E918F7F7697E08C696CEEF /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51116996DF66203262E3333DB4CB731A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C972FBBE070C268C4A9C24FBFF0C53 /* internal.h */; }; + 51154F164B6228BF1E680B7F3528B5F9 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F77988CF88BE9EFE4CC56B21FFA649 /* status.upb_minitable.h */; }; + 512A4EC8098E949B6538EAF7B246C5E5 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = C69ED9EC8E710968C328AF9E75E098DD /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5133E969C08B39D1E92589446F468373 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 51461D9CEE41CCD1C6EC011A5075CD27 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F29A4111573F984F14996E8689D9AC3 /* status.h */; }; + 51512B0F366AEFCD32AC0E14B979B979 /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = D8F1A763BBE2171F9A54F20B5A89AD0C /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 515CAE2F1DAF4820259594616F21B035 /* domain.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 106C21C776EE495E25A1DE4839A82C8A /* domain.upb_minitable.h */; }; + 515CB184CEEA1BD0C900E32D90217048 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F1EC53A605E1501728A0A2FBF923467 /* lightstep.upbdefs.h */; }; + 515D89A46A61A94D45990E87FF0F6ED8 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 01256A17DFE15106ED018349B47C0590 /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5161E86FF11B86F869062772230F559B /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F13B575CD1A31C6ABD2A881BBF40611 /* grpclb.h */; }; + 516F10234FAF4E7A9D82B35A0AF7C2CD /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 513CC3040FAB2DBEE976571BA8F79114 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51785F4EFF94B7E5DBFEF1B0C2217172 /* spinlock_posix.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 02361B4228FF40FF56250802343DC604 /* spinlock_posix.inc */; }; + 517931F4FC3229E491C6D3E333F59C3E /* posix_engine_closure.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB530D9AB1ECA44F56CA7FDAC944D85 /* posix_engine_closure.h */; }; + 517F86CB9884F26504407D9554918707 /* FBSDKCrashObserving.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B19BAFAF0F3F0074C39C9DFE3DE2260 /* FBSDKCrashObserving.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 51805DF738823F497B1A993EC0CBF36C /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DDF4AD7E884E9DF913954C391B4771 /* hash_policy.upb.h */; }; + 51853EC83495A89A11D523A449220B76 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07CE4927E072C662D8C319089EB8F036 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51879396DB26B88BA6C45B0C9C029D6A /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 312267514EB8F4C7FEA7345C8559C202 /* timer_generic.h */; }; + 51888A79273053DC9B175E526F49E559 /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7AE21E989455865424CE0958AEC1FE2E /* ping_abuse_policy.h */; }; + 518CA6BA07AB7135D9EA9F4AA27A5962 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AE9B84550090208F9DBBA4D8552262 /* internal_errqueue.h */; }; + 51995EF7C37047EED8C74E2BF44F32F5 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7ABDA888A6341F4DB2DC01D3AEF6BABF /* timer_manager.h */; }; + 519E48BF6A0E214F4B5E72025E005C2D /* FBSDKAppLinkReturnToRefererController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1750E2C7A58B85780ABAAE5C96887FD5 /* FBSDKAppLinkReturnToRefererController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51A20DE292DE4CC56CC9DE7D1ADF0000 /* server_callback_handlers.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FC8CC8F53717C02C96DE8A5C534716DE /* server_callback_handlers.h */; }; + 51A27784A4FF93F1B914CDA2FD321BB4 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = FED56D4A0E67ABEAD3B54E0F8A1B87CE /* md32_common.h */; }; + 51A7598900E4F58CD81E55E48EDB81C1 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = C5492B04E75A566050A939B43D772175 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 51B0B443934AD090B6A0BAD88368422F /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = B186C0E69C8434F22CFB8767B7D0D5C9 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 51BE1886CC3008533D8F053C6A4C5935 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 54DB95353CC2C222FB6CEE674F479B2A /* xds_endpoint.h */; }; + 51C13DEEEAF7DF3F8D8154252520FF4C /* FBSDKURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 30292A458B7E9F548EE21C42C00DB603 /* FBSDKURL.m */; }; + 51C5918D7B1C1F04D0E43C5C1EB33069 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = B4DC7388AF037A243DF6D8A181A80EC4 /* jni_utils.h */; }; + 51D1613F8E9DA5393687883C1B29D1CE /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = DB28735CF28005A2568F1D7964A1C1ED /* FIRAuthBackend.m */; }; + 51D4206844D09BAD7A46D86D184A5C1F /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BC13C62F963F84353F72B432DC4B443A /* api_listener.upb_minitable.h */; }; + 51D8793E53FBB2A23C9BB4D8A775E12C /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 194FE357D19680F0443375602453A1E6 /* typed_struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51EFEE048FB0CF498AECADDE8560A98B /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68CC5B1967E1FAB4FEA8FD80304B3C13 /* uri_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 51F0FD9A5A27A73CD76F0C070E00E0B1 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = CF3C10B9158D141EF201D858CF1857DB /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 51FB1B5EB9632CFF986FA285C1E5FDD0 /* load_config.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 966CBCB8BF8F371C67795F5F3D165AC0 /* load_config.h */; }; + 520DFC2DC9F54D2DA0D90C213CADBAE7 /* log_internal.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3736FE31042C781E7AD85DF3846686BB /* log_internal.h */; }; + 5210356C283FE60F6B49EE0AE5364B8C /* service_config_call_data.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = D1F3DC56935005A8B7B267D14B205177 /* service_config_call_data.h */; }; + 52150992C5F41B2539BD09F9C832E519 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A08D98CD594BA43C364474ED15183D /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 521696FA29EDAE7F5710C700444A65D2 /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = F04B8C66635DB260615D643B6EB8EFD6 /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 52212E5D0CCC2B35323B4DEB7B773C20 /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7B4253EBB52E74F4BB8EA50C5B331F /* oneof_def.h */; }; + 5225E9B5E7B7969DF3A4E26A37834558 /* FBSDKAppLinkResolving.h in Headers */ = {isa = PBXBuildFile; fileRef = 453006F12E23B60355ED7997AD90CA97 /* FBSDKAppLinkResolving.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 522E8255803C50EC58AE17A6ECF5610A /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA083ACC775CD661399C77F74588DCDC /* udp_listener_config.upb.h */; }; + 52382113E3E4C896C6245732EE95B7FF /* declare.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 79348F33F5BA54C37494C6B7DB9D499A /* declare.h */; }; + 5239BCB954A3CED93CCC232B7865617C /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = DB4483F7FDB8EB8EEAEF5F69D8D29E00 /* insecure_credentials.h */; }; + 523D48F572F55CAF60CB0EB712DDF64E /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 492455E16CF8AF9E7DBD4E8148FC327B /* path_transformation.upb.h */; }; + 5241685E1CBE7A03E8163A0682D1621D /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F77BAD1E96623B113370BB5515C65984 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5241D183FB94CD01D4A622654DD73787 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5F46DDF01A1FD1D8815EADD58CF8B63 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5242A897F9F0596A342EE23F33A85027 /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C290C07B8B45B7FBD652507C72C0CABE /* grpc_method_list.upb.h */; }; + 524D3B859ED77DA15DD59CC1885293F5 /* map_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C4FE4711705068B155DEDB6FF77C13 /* map_entry.h */; }; + 5256A5D19351533682352BE18C916FCA /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB77311EE6259A8BF15FBEF46A8ED31 /* frame.h */; }; + 525F7E98D14B655B09B6281D3BDBB50F /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 512C05769C9F338D0905BBBCF23F25C0 /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 526557BF5BBA3D77788B501F6DD83AA3 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AE84F6D661D60A49922B2A22D1D64FE5 /* cert.upb.h */; }; + 5266119397A7A7A0C114D044AD78546D /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = E3BF8CF6A125A7B43BF253CB175D46A2 /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5267BF3693A2F525E38C6BFA6B262E36 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E292C16E37A10D2FBC21021719D9096 /* path.upbdefs.h */; }; + 5273D236CE775C4C07B99B6E9715806A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = BEC6F387256B3E4432A0AD280EE694D5 /* grpc_tls_certificate_verifier.h */; }; + 52832D8D0733128E20B8467F3FD1D229 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = CD4EE3313CB24BD46148824EBED674F3 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 528AE2A2B967D72B9E06EE83C5D237E8 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = C463F3320D453A08BEB89F8B74933AC4 /* slice_internal.h */; }; + 528B23C3D625A1E13238B0B68609DF30 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BDCD1105B73D9F1D3F16D1406297AC9A /* config_dump_shared.upbdefs.h */; }; + 529173B31EFCD3D199E79866AFBEC86C /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB091BE89614C17D4A67EA33BD8CC71B /* HTTPHeaders.swift */; }; + 5292AC440CB91F0EEF197925849246EE /* xds_client_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F83D3FFE61F96D22B7F60D01A8AA4711 /* xds_client_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5299C9DA054B26D5DA83329988AB95FE /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A69D3F10CA02D65124B4579170ACF3A8 /* event_string.h */; }; + 529C3F325F75412F72FE4B1A4C6F2950 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCA06BB4286E9225870E3163A2A5643 /* common.h */; }; + 52A5C24DC9D8AA565FD3BCCFD731D5E3 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3B171CDDDA4D319049ED3C4ADA35D2F2 /* socket_utils.h */; }; + 52A7AA78049F7DE0D97FA63D81D3B7D8 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E7C9D99F71A47F26AD82F5E63DDB2D9 /* TZGifPhotoPreviewController.m */; }; + 52AF5982A9CE130F74779DC658D3E3F6 /* DocumentReference+ReadDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10653ABEC46E494BC09C7ECC68ED4817 /* DocumentReference+ReadDecodable.swift */; }; + 52AFD3C5F42A7903DA3F2B8C0252886D /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0C7D0190B8797837E0C8831DB0AEB6 /* grpc_ares_ev_driver.h */; }; + 52B8F368BC7B87B374279807377EEB5B /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEEA9F2FBC2E593801D309A646B04D8A /* client_channel_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 52BC7C995265E48884499A096B85B444 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F864F9429D394273D384E8A45B6D14A /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 52BCC3B2F8AE7F59556925DEC603C634 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7540275EF47A3297FF38D6BAAE33E270 /* SVIndefiniteAnimatedView.m */; }; + 52BDC4D149CBE70CAF8BD87B156682D4 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = 42479477DB3C48F6561B7F96EFB1EF8E /* distribution_caller.h */; }; + 52C40C950AABDDE145EF4B223AD07A80 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1199CF68F32B82A208261EA63BB036E0 /* client_channel_filter.h */; }; + 52C512DE268FE575B02EF5968B3A297B /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 500373D32C105A54483ACA56A30C93BA /* ev_posix.h */; }; + 52DB7984E6307A81CA5A0FFFAEB1A936 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C68D1872B2CABC7F9091677542BF6591 /* filter.upb_minitable.h */; }; + 52DDFAF32C9CD6237F15E798D1D39236 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 9E07D3C3F59066C80D63F92CA4B0235B /* local_security_connector.h */; }; + 52E18FE3402319BE5A67DBD413E0D47C /* tls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 62EB7E95CF862DE42645EC6B40DECA19 /* tls.upb_minitable.h */; }; + 52F8AB0510500D3B49AE6E1C5D4D398F /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FB89DFA94C92C5945280D7BA8EC909A /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 52F8BDB96D742C90ECE2579CE6DE4F40 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 863F6090FD5561BF48A21C53D9239F76 /* map_sorter.h */; }; + 52FE85D83CC4ECB0FDDA6250461692F0 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A62F294D798209CB968F5CC96626B599 /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 53013BA2AD19B5D84685C769F67B7A21 /* xxhash_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = E71044959D55BBD82C6430347E0EA2CB /* xxhash_inline.h */; }; + 5309E43C2CFE29E1DC10DD85A27BE3AA /* health_check_service_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3F3A787A0D452103D9A7AF5DCB876E51 /* health_check_service_interface.h */; }; + 530A3507F0982478F4A40C37638C4D15 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 452117578F797051AC83C4C96B442A39 /* config_dump.upb.h */; }; + 530F06D1EC812FB13FAFB6D107F4838F /* FBSDKCodelessPathComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = D0065A653BE1322B2A3BC86696560DD6 /* FBSDKCodelessPathComponent.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 531149263B9B3B17DD2DE09CEF7D9CF7 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 6FF3B7E630931C51941ED486D63A8F92 /* transport_security_common.upb.h */; }; + 5315387DC867A25597085094B72D1C37 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 571064C5F4F628AF16339B1522DE4543 /* xds_bootstrap.h */; }; + 532470C19528FD3861A716FD0D2F41E7 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0E923029E756B6A60545227792AA9B9 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 532A4D5B60B23F74DA01B8503160B44F /* FBSDKAppLinkReturnToRefererView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF1958FBCC19C5F8C820FAB3873B48F /* FBSDKAppLinkReturnToRefererView.m */; }; + 532EAC18363EB8C6EBBF6D208BA2410C /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BA58AA4D3A174A4980CD42721884A021 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 534CC9957DC12F5E80ECE83A6A60F611 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 27A8595117323D275B71D221EBF06CAE /* wire_reader.h */; }; + 5352F4D92938C9BD4D83BF7F534EEE98 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C2E7D22A36C083F38D01745A2F8B0FA /* collection_entry.upbdefs.h */; }; + 5354F5DA29C94A7EE8938A3ADEDE3657 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9BBB997CEC532B5554ADB14196BB6D /* fork.h */; }; + 5355697FC25CCAF2A8AB78FBAA66BCCA /* async_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 16BBAD8193C97D725670D7EFFFBEE56A /* async_stream.h */; }; + 535F12D5EFD4B09312A57E145A1A32BC /* custom_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9484CB5ADC48D27FEF042EC18049A0 /* custom_metadata.h */; }; + 536295E72354D956C425D0F8CB855D5D /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = AE640469579EBD27F08779D242AD7D48 /* channel_stack_builder_impl.h */; }; + 5368B1C85D739F8EFF5B8612A78B2FE7 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F6A79A8BB64D59284C77CF3AF81382 /* status.upbdefs.h */; }; + 536A6B2D114CBC2683A38ACD99DC76F3 /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B517CC212E5024F664AC7CBA41E285 /* numbers.h */; }; + 537368FA45D61A05AC25755304819D27 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF32DED9D85FA797B56A07C1493C907 /* client_channel_channelz.h */; }; + 5374AED5DFE22C8AA4089D30D1271A7F /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D0A29A91CAC86790C46D04DF2DB19C79 /* stacktrace_arm-inl.inc */; }; + 537C76015039CF71997A54308F078F25 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 1752AD3C64885B6AA49EFCA1BD2150C5 /* hmac.h */; }; + 5380454C48A12A6E376122ABD8096968 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B66D61138FF668B2B12CDFB7028ED7 /* ConstraintDescription.swift */; }; + 538E1AD10A6036354BFF05688FB9ACA3 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 361754E81BCA51F7C0EC7CBD7ABC0C47 /* certs.upb.h */; }; + 539A55F74E4D3F8D654A01DBF1259CD4 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 847601FD0FDCBCBDDB4361A8A2054B5E /* internal.h */; }; 539B88F632BA63BB8FED963D0B37C445 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 539BD2495B0C75D5144DC972617BFA37 /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = D52A725E76FD4976195763B11B76F3C2 /* experiments.h */; }; - 53A5E18D4ECE523B5430730FAD92DC19 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7D7B7AD66AA1C4349E86BC4104DD0E05 /* hpack_encoder_table.h */; }; - 53B4ACEE24D3A72B29CFD2F7ABDC3FF5 /* path_transformation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D1D4F8F69FD926B37A0D4691E3958D1 /* path_transformation.upb_minitable.h */; }; - 53B79C35D65FD885A0F452E657F66A57 /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 619FB9E8EA788E351EA5252F0C11364B /* empty.upbdefs.h */; }; + 53B3E38DEE720DDDA839D4E4853A3ED9 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C8C8604C2EF5E2350262E257A84A9614 /* opentelemetry.upb.h */; }; + 53BAFE53118A2AC6EACFE8184FE978AB /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C1B56A2DD6A3008AE1378B48F74045 /* enum_value_def.h */; }; + 53BDF85F1D961F7A20A242AC199FF60E /* FBSDKErrorConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE3930DBCA649055676BE458489CFF3 /* FBSDKErrorConfiguration.h */; settings = {ATTRIBUTES = (Private, ); }; }; 53BECA6AA55F80D63F104475EE6524CA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA7B7E335012C96A973B5484854A54D9 /* QuartzCore.framework */; }; - 53DA775CB6A86545D9839914D3882A05 /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = AC8CE9F3DA1F55533F35D78615D252B6 /* def_builder.h */; }; - 53DB6F0D90AD6F1C9B054DB42CE657FB /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AF2CE2FE92DE9FDE3082B617ADC6B7 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53E11B737CFC23281228D4FBCD49B041 /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = DA04D0F43F0A0CC17DEC6D9C66F6A401 /* empty.upb_minitable.h */; }; - 53F77A9E452A4E8E8130D26A8CF67AE5 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = E01CAA0541E8BE0B2F21A56B6FB2BA81 /* field_def.h */; }; - 53F7E7D73F3FE65993E7D8E103C4451F /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 80CCDF272F36CCBFC7503BDACD78A0A8 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 53FA350057ED4A2D40B47199812B40C1 /* cert.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D738C8BFAA82728ABDEE46507B53A2 /* cert.upb_minitable.h */; }; - 54017A6BE411C2DAF347A2598D974FF4 /* posix_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6878878DC17BCD7D6DFD41529C825171 /* posix_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5404CD089A6E8AB38FC10EA5AC1698AA /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 347733DE9302F7F725613942AE441076 /* FBLPromise+Do.m */; }; - 540AAFEFD183769027EECF929AF255AA /* systemd_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD1322F8672B8C26F63A3C806B2FCE6 /* systemd_utils.h */; }; - 5412CD93C3F72BAB7A64A1C9077B129B /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 834864FA1DDDF96BA06BE6A2EAFFB0F9 /* filter.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5414F589E21A33FD2511A299BB66B3B8 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 7EF06DA41060A6A82B91BDBA1EC7F908 /* endpoint.h */; }; - 54159502D6897538C46A215145E3CBBF /* domain.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 869F6318321A1F569784D602870121C7 /* domain.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54176E641D82683B2F072437085BD5EC /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FBEC17AAF6225FA0FB21AA05846083C5 /* subchannel_interface_internal.h */; }; - 5418BC38EF9647BC3E22F6581027FAB9 /* http_protocol_options.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BF87E2A124B4C02629642779542A621 /* http_protocol_options.upb.h */; }; - 54254F8D88910C38F0410965BA42855D /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = BB8D7FA513EC470E9C6575D389B47F10 /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5431312D0E2B7DE51A7D6D66B2BED8F7 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5B695CAC684C1B5CC64B48441F75F88E /* channel_stack_builder_impl.h */; }; - 54359FC87D1FA35D46C226562CF73848 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 70DB96354A476EDA18F370242835CF92 /* useful.h */; }; - 5435B9D96A213D383E3D85387981F037 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E1AF852A2377566F79A0870EF28F8D0 /* xds_routing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54459C0EE1ECF1431DD0504B8CAA01D9 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 204863ACC4A557F50611957FA468CAAE /* field_def.h */; }; - 544753ED73FBE406667D69905D31BB68 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C0BE9610CA9A80B912CD6558426E539B /* value.upb.h */; }; - 54492B65879B9197E8ACA6BCC60B5141 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E7F4D5B50F810E407AAB68AC4EB1E2 /* config.h */; }; - 545C40A495286E5C9C792332A4271DC6 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 212B866DF19AF07C5012C56326CBAC46 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5460EF4CDB0DFD55CBEED86AD8172D48 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 63F190A66993AD73D3268314FF1D85F7 /* cpp_impl_of.h */; }; - 5473103E88A20D3A4E29CD014ACE6B9F /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EDADFB40B8BBAF315D8A7E71406A112 /* core_configuration.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 547633337E261C4DB42117F39CAD2FC3 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2820560C8578A0633E1BFA50E2E83C /* channel.h */; }; - 5484C183C3C25F933AEDAFADF8E4C404 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F8DB3A05AB997BEEFAE4E707FE0CB999 /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 548620C21710A0C548A800D468337EA6 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C7BC8510A195B2F5B0B92A42867BA859 /* address.upb.h */; }; - 548F8C93828EF7383998AEA9A6B33C1B /* trace.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 03ECCAEA46AAD5C1DFB47D795572681C /* trace.h */; }; - 549838F65F7620D7CA542FE2AEFEA25A /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D3E674C6D3BB078AE0480205ED962493 /* try_seq.h */; }; - 54989A938F8A90742A8801A5A6651641 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 4564DCFA45EB5FBD4572E21D76D3A663 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 549E00AE6DB0E65C1D80B262A48FA231 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = CB442CF77FEFBB7CB158A6CDA1114956 /* extension.h */; }; - 54A213EF117120BA6A73D990B308E2BD /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D80CB2A5AD66E6C453C525B0BC459B /* file_def.h */; }; - 54A45A57A27E9149C8B40D44FC876848 /* unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 180046154D14B8B3057977F5DC3829F3 /* unicode.h */; }; - 54A66E05E654865165C318EDBDBC0EB6 /* type_traits.h in Copy meta Public Headers */ = {isa = PBXBuildFile; fileRef = 33F048915EDCFE89B4E37F58D2E07900 /* type_traits.h */; }; - 54ABA81B0EA38AC0E7E9C57A6114743F /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 012782C2DDE1AE0F0AEE32FEFB6D72F0 /* rbac.upb_minitable.h */; }; - 54AF90DEA73AE9B3F9655220434DEA29 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 820BFD1204591CE64316E17C2FBE0C26 /* deprecation.upb_minitable.h */; }; - 54B4661BE2B4B5295110FB66E9D35B7E /* FIRAggregateSource.h in Headers */ = {isa = PBXBuildFile; fileRef = C59F0C46E2BB0C4917C75289013369DB /* FIRAggregateSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 54B5AF3BAF222F724634740BCDE947E8 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 239CCC345AFD04C9139D45F9BA75B1E9 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 54B7B49DBFF2147D65789D9BFE60D6B2 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 04CD4160703BA01D769DEA69A4238F1A /* health_check.upb.h */; }; - 54BADDC5EDADA78EF62ECF3EBA1EC8A7 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 320814AEB4C3B9E4465BE1D7F91A278A /* stacktrace_riscv-inl.inc */; }; - 54BB35DEEB1FF92CBB75F672E2797F4A /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 844804A0F5B6E13C13459576BC6E9D66 /* wakeup_fd_nospecial.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54BF4C86CF9A0A123F94E5B2E6D0774A /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C3432304325DEB517878A4783BAB48 /* timestamp.upb.h */; }; - 54BF546943A5CEB58EC2CC2D31A8E4B2 /* crc32.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 8CFC91CDBCECCACB99863483B4BBA5BF /* crc32.h */; }; - 54C140CA248CB7ECF8FC72740083A50E /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 304CE192CDAC5CCB479A5C1DA82A159B /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54C17D07E94CE00985F196BE04A3703F /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A81AD8E6BB5E0BB3AE8ED551ECD23E4 /* chttp2_connector.h */; }; - 54D5D5A30EC2BB797911D445467F15F2 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 300C8EE52299C9DA0A18E47981EBA8DD /* versioning.upb_minitable.h */; }; - 54DAB5149E308549F69155A1FBD232A9 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 70DB96354A476EDA18F370242835CF92 /* useful.h */; }; - 54E04CAD493672E3F5FBB90E13CF3348 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9530D53BCEE8C160EA57F0B7C79B5F8E /* alts_zero_copy_grpc_protector.h */; }; - 54E253F682499E7B30272F7C29BA41A6 /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FC281F5D14A3758FB257539BEC91983E /* accesslog.upb_minitable.h */; }; - 54E448D1E7D14DA38ED902AD311DFE87 /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 768719912AA1F40F518F31997E057FFA /* errno_saver.h */; }; - 54E85AD3920F0760E859DEB9596274D2 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E635C530CFBAC2507E8770F884BE05CF /* discovery.upb_minitable.h */; }; - 54EB3821A0B9CB6BAD54227D2DE9501F /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6348977877DD6A40971788DA03A70999 /* http_inputs.upbdefs.h */; }; - 54ED301BF3527EF4222DCC4C25F4F3C2 /* PromisesSwift-Promises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 067CED0F0662BBE6DC889AEC6DAB3049 /* PromisesSwift-Promises_Privacy */; }; - 54F3DA9116ABFACBB21A4B3476723148 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4F1716FB66EC3723096784C15FD1CC /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 54F83DEA2E326195B2AFB675F61AE95A /* client_metrics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7827D1240B8B0DC22B1662AB6B1D4DDD /* client_metrics.nanopb.c */; }; - 54FA6FCACFF569C797F5A71FF6127437 /* DevEventConsoleLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38CD663E604F7EDA04C028885B02301C /* DevEventConsoleLogger.swift */; }; - 5511EA2A691408766843377B764D0B3D /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 9732A2625BA75625D71B2B2AC2B435F3 /* certificate_provider_factory.h */; }; - 55139F97229589F4A3A6851A8EFC6A1C /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 768AC917856256AE9AE3FBFC3398F830 /* stateful_session.upb.h */; }; - 551FA06A8A6D3251C3D6CC5DE2D30C14 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC635FE7A5C5949AE624F7AD2361602 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 553D92B5FA8C25AF1912B92F33DF277F /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A6BBEB072238D2059A3B2C946E7AB5 /* server_config_selector.h */; }; - 554D545082C9A594AFEA380C4AF98DAE /* address_filtering.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = DF5E239F02DEBC851CAE617D4F4A30D0 /* address_filtering.h */; }; - 5557DAE5BCBA161F805284C52F885A27 /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 4438EF6185365E9F0BF79A1E7166B47B /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 55619FC75F5ED41493BBB1617D14C019 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B6521E711FB954D237FCABFE225468 /* extension.h */; }; - 556688047A458E6FDA8F48107C3B9DC0 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 719A8A1DAF5B5EBFCAB94F31A53D3633 /* random_early_detection.h */; }; - 556B5F59B6D68E5EC6461749E91D8A62 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9B7E139E5B065C5FFFEE3AA2C588871 /* accesslog.upb_minitable.h */; }; - 5571EDBA7BFE01DFB7B5907A11445C23 /* service_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 70D7F6BB153FE002007B30BE7E0390FA /* service_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5584F566B0D196A6748EF10395E7C12D /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18333D71ED8DD4C18EE70C484B7AE60E /* string.upb_minitable.h */; }; - 5585BD32F09E3EC0560EC820F0ACBD13 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC4225C95354197AD862933C96ECEC7 /* call.h */; }; - 5586FA3DAD335663DDB54271FE7C1C90 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = DA1CCF15838BA86151E97C8A1AAF08B2 /* call_creds_util.h */; }; - 5588273297BAAACFE13CB5F4F31BE298 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = 9208008E4D5CFFF4FFF21A2D43BCAE3C /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 559388E2C4BE188D320D64EB684227F0 /* cf_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9554CB37A09911673688EF8E7694A61 /* cf_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 559E1FA872AF5E934F6F1975E88A24D9 /* private_handle_accessor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B56ACEDE1FFC7DC50D87477D39B6CC1 /* private_handle_accessor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 559F4D29658DB09FC4F4F9D359059808 /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05B5C9AA1A7A2A8B382248FDF04CDBA9 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 55B31AD0786EB611B95474DED527AB70 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB9CF7695B65BD4C7B432F0CD635F0E /* p256_table.h */; }; - 55B97D0F323032C65EAD91580FEA7647 /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1563D8201F7423F9CA8567D4429595F /* resolver_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 55BDEE3FE597482878E245458C061CF4 /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = C26E0D2533352F51DECF06D544D5B36B /* init_internally.h */; }; - 55C0BA87F4B3D3DF3EC25ADA786EA2D4 /* scheduling_mode.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 44A5F6E7EE610DB4C5FA26DABD263AE7 /* scheduling_mode.h */; }; - 55D5848BBADFD531275FE29AFA7EB068 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92C36DEB15669BEE146A6810A4D23C7C /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 55D8685C2D3B07FB1513389B210830CD /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 26445F19C29D86B8E3042E0C087C0C6C /* extension_range.h */; }; - 55DFDA0E6B9B02D38721B218994AD330 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = D45C48A83B7121819E1688B6D9E4B68C /* low_level_alloc.h */; }; - 55E51F45F1E157D3B4942BA7252C277E /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC4080430345470D3B6E6FA7C983BE8 /* ConstraintRelatableTarget.swift */; }; - 55E8F131598F0F3FB538BA949E1ACA0A /* pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = F0449EAF14CCE3ACBD2242EF2D1FD913 /* pipe.h */; }; - 55F67EB9CFDF09BB499A4547BF2AE15D /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A947F14CD44BE8B8145F745BF8978C7 /* socket_utils_posix.h */; }; - 55F7D81375529030BA1B0BD997387640 /* event_service_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73EDF1EB8E3DF1F4C94CEEF9C4832 /* event_service_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 560DE59EDBADC675180FF5F7C2DCA585 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E8151877F9DB73322F11737CB5A700 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5614B2D1C25554B900EB008DA1EDB0AA /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EDDB53D53472AB106C5EE2542444B904 /* auth_filters.h */; }; - 5628B01954D311AFB19F66292C884367 /* slice_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = EC3290C1CE41F22A04734E0A14DC5321 /* slice_type.h */; }; - 562A2B2503EC299178B092D80F627269 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4745A3C2FA02F0F6CEDA05AC7A7682EC /* xds_routing.h */; }; - 562B5D8BA8A5A0BD8E9A2D2ACAD93090 /* map_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = F1523A4C920EAF44535D2CBBBE35BDFD /* map_entry.h */; }; - 562D67583D607F15D0E541CC3B32CEA4 /* call_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = B546916C9F81C13330B2DE0A35FCAC05 /* call_factory.h */; }; - 562DB2DCD6FB92135F3AF37185B5CD9D /* endpoint_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7BA22AB341ABA640C4A34E2483F5E2 /* endpoint_list.h */; }; - 562EBF91ACDB4D275CBE1A3613394FD0 /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = E78C34C9D3FD4EE555F5761F7B50A790 /* service_config_impl.h */; }; - 563A993DA52FCA1A057208150AFDCB58 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = F514F275CA039658BDE097D5AD4FE884 /* ssl_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 563E142DAFE329071FE12B1B4CE20E4D /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = B1EAA66CBE5438D725BA35266F95D8EF /* legacy_inproc_transport.h */; }; - 564F28956E9C5DEB9C46EE4B926FB206 /* http_protocol_options.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1B60A5208D4DD16C550B6D1E5F34A /* http_protocol_options.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 565557D74909631A53076D77B5400D7D /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 665D83E73C3A63763C8E96898D7D3569 /* ip.upb_minitable.h */; }; - 5656C2A00BDD393C9BF7F4FF1585811D /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDEFDDB1E5C396F96159C1B096399AC8 /* FIRAuthAPNSTokenManager.m */; }; - 5669C6DA454A2264BCE307A06A0C9200 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 714DCFF92C91E6788487CC22B66264B8 /* cel.upb.h */; }; - 566A7350D771949E703BAC49AFCEF113 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ABF16F31952F2A8B12F31E88EED76651 /* lrs.upbdefs.h */; }; - 566C9666918D1A36F75043F356F93F98 /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = FAF9E2120FBF75CAB514C886061CBBBB /* grpclb.h */; }; - 56797E5F481999558BF9A3744B640F09 /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB94397DCC85940A68B65CAAB2EFF6F /* cipher.h */; }; - 5684864B31E0E2CC891307D6B80DB22E /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A30DE2BC7D0F5A24E5E0C5DFC767532 /* tcp_connect_handshaker.h */; }; - 568903EAC6AA0A104023D69839701450 /* zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 033BB4355897EDA691AB20E14D08D38C /* zlib.h */; }; - 568B68190EE80ABCD0221D180E70D975 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = CCBC2B00A15F794060BFA1E09A16B346 /* grpclb_balancer_addresses.h */; }; - 5696C8D66505101C7B3A02AD41C2E6DD /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 9B2AADA54DD3E608FF86385740D8EC63 /* field_def.h */; }; - 569957CDA8C960C0F03552B119B67954 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 7561A0B2A4D2B4399C97BDC7179BC3A0 /* grpc_tls_crl_provider.h */; }; - 569AC46853BB741C9C8A46F9123AFD3F /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B51F661AF78FD96392F98C1446FD0D4 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 56A67887618B82A00667D7F4555E993F /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8785D46349637527BCC4D9609403380B /* descriptor.upb.h */; }; - 56A72F6D13D930C4A2568F24DEA33C8D /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39473D2D714EC61A5AF158C6C2FD9409 /* ConstraintLayoutSupportDSL.swift */; }; - 56AC1846A234CCDC19575D37E571DCF6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D1656F9E0EA7130C86BD001BDAC3F96B /* internal.h */; }; - 56AC6DC6459AE47E7BC4AF06E5B148D2 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA44687A4BD46AE4F4E4209102EEEE0F /* ConstraintDSL.swift */; }; - 56BE670A857DE62933899B066046BECE /* altscontext.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9A2D4F9C5B4408CFBED9A06D23B714 /* altscontext.upb_minitable.h */; }; - 56CAD5445975D179454F38ABF425DD7F /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB6A3066D8973D7862E37CA939C8EDE /* FBLPromise+Always.m */; }; - 56D392738E888792AE2C1C2F994E5B4E /* LLImagePageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6AD680256FBFE7564D59E1E55D9DC82 /* LLImagePageControl.swift */; }; - 56D921429EB5290E1BCF437FAB844E5D /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0D872153303F70A539B3141A65F809EB /* executor.h */; }; - 56E3505AEE10E784168DB9BA575C5436 /* client_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A0FBECA10C13B221EC9DDADF7FAE5A6D /* client_unary_call.h */; }; - 56E4FE89B9E4F26FD63958EA31E8DFB2 /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C67396586E7D232483F6E2E2038624 /* transport_stream_receiver.h */; }; - 56F2025E6AA25AE7C5302EBE9E38771C /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C98B8B79581F0A4A816C7DF9FC1F46B /* deprecation.upbdefs.h */; }; - 56F53EE0CD68A6DCF67669431A14D4B8 /* Promise+All.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF484F1159B0B54FEC7CAB6FAA73A450 /* Promise+All.swift */; }; - 56FE17D62C361FF750AE513272FD8F35 /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 92DDCC6F3B9BF1D5EAC672C494C60FB1 /* method_def.h */; }; - 5710D08A63675321D7CFB8F77FD4CC8D /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE852F12F14417453E98A6E5CD50BA83 /* unix_sockets_posix_noop.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 571CA51D21B0D9CDDFDF0663FB86D8B1 /* tls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B32E391D981B9EC01C539196532A196D /* tls.upb_minitable.h */; }; - 5723FF1719C4A9586C26B28E71082DF3 /* inftrees.h in Headers */ = {isa = PBXBuildFile; fileRef = 1761D804B03BFA57B2E8B369FAC1994C /* inftrees.h */; }; - 57240DC7C2D9954DC216A395920E266C /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B7BE8566AC11DF6D7B38EFA8F00727E /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5724A9D824D0D3D41AC12BFFA6EBA2E3 /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 797DA0435E5673ED9C6A868664FA4D56 /* arena_promise.h */; }; - 5735F1415972B85E065AD899FD425365 /* endpoint_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBDC5F0507CCD701A09618811C663DDC /* endpoint_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5750297EC66C2DB73C811801134891A5 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 253DFF0200F4DA1DE21A28BE1B2A98B9 /* sensitive.upb.h */; }; - 5756C8F637D4782CDE9F7F6B01B2329B /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B168568A13963E7033CCA8DE91A415B /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 575B8002787BC0BBD78042AF1AD7AB04 /* stacktrace_config.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CF5ED980F8CADD8CA7788403169B0861 /* stacktrace_config.h */; }; - 57604E6B157DD0A4D52984C91A5F0BD8 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BFF47091CCE6995354DE8C1321E1D9B /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5760FF7194F2C4FBF8553F584497B3A6 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A8763B7E32BE30E21E7655757377C75 /* csds.upbdefs.h */; }; - 5761B3CCE10A205E9F0C0459073B71FE /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = D25132631F045BD2607AC219E9BC1694 /* httpcli_ssl_credentials.h */; }; - 576C377611ABDAAEB76596C6FCBCA546 /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2EE889B380D4CCD6EA0423DCF4F147 /* service.upb.h */; }; - 576EB228FB7FDDA7B4FC885B39C0AAC5 /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 68E3DFB89838DAE73699758C3A0C279D /* FIRPhoneMultiFactorAssertion.m */; }; - 576F12DDAEC73C5C5AEC58B6ECEB5E54 /* ec_key.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 53578E65D8BE193DE833F42DF7D02F7B /* ec_key.h */; }; - 5773847280D548BDE9FF56A929D15E1F /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B4216FAB27FDA8EE029FC7B688C1E78 /* matcher.upbdefs.h */; }; - 5778293D5E8DA493FD5D9273CA2C3992 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = A243920B2C85FD3EF8C007CDEC353AEC /* promise_factory.h */; }; - 577EBE5252ECCB6F9D05EAF563F7C8E6 /* ip.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B24A607DDF42AA6CA67CC881C27CCB8 /* ip.upbdefs.h */; }; - 577EE426B7311CCC333770DADF1C69D9 /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AFE525F7A32BDC4E48C5E5B86508750 /* FIRMultiFactorSession.m */; }; - 5786E79E1B15A0CA54374DFFA3A45D15 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F42E3C3DA6B2CBD0C16D1D12436DCC /* fault_injection_filter.h */; }; - 57877B59EDD56C365493361B48581E0F /* identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EDE8162A111C062222283E0F81C147B9 /* identity.h */; }; - 578D42B652A74E170172A7ED41CA85BA /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9002B5813B9F71F325745C93D37550B2 /* resolver.upb_minitable.h */; }; - 5790B0683910A4A8CACA84671B2782D4 /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9457543ADD65F1933ADFDF9BC7664195 /* rbac.upb.h */; }; - 579B3920CFB7B436E143AC29E3672069 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 0ADE2BC0622143B625017F10281E650D /* authorization_engine.h */; }; - 579D38DEF04F227E910EA1BCDE5D2630 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4508903E0CD8E90E2456C0B0B11F2E3C /* fault.upb.h */; }; - 579F69F4E3560DB476F0E1557F024E59 /* grpc_polled_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEFA58C1FF69B2FA4109449E2E8B590 /* grpc_polled_fd_posix.h */; }; - 57AA55743C24244F9D25C25C423908E1 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 9295D6C24A0BBD768B8A09D1C33D8431 /* grpclb_client_stats.h */; }; - 57B52DDCC033D5115CE6E23EBF0E3163 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = B6876F418B49F4FA7DFFD224E006A7C4 /* arena.h */; }; - 57B5FC595704A33D7F1A788FA2942067 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = C619A52FD85BD46515C74A5A00CD939D /* frame.h */; }; - 57BCBC0612E6865363EBF8716030BA96 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 64104CF882B6F7A79F0B8AA5D4C4F86E /* decode_huff.h */; }; - 57CE41BEDDC64893B941A702079DE01A /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 13BF653CA99AF258533B810C145002EF /* bdp_estimator.h */; }; - 57DB3BF977C4C0B510299F568A8AEEA7 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 901EBF253DD697459DC6EB4D6A633512 /* hash_policy_traits.h */; }; - 57F8FD0BAB2418B5BE6F58B0B61F5F9A /* sem_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B89B6FB3D51204C9D6C4FF1EA5EFC4 /* sem_waiter.h */; }; - 5800620F023547A791911AFD0AAF4CCA /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2F5002531A984C8B4B4421060F775B /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580BF5C199C8F503B011752731FAF59B /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 237B1E5F67235E102DE7CA3435F12A40 /* connector.h */; }; - 580DB667BE4B2202BE879DCDFF0698E8 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; - 580E3721ED7C407ADC06E2669FF147DE /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F70CF4378670EE116F2C798E5C11E02 /* ssl3.h */; }; - 5823DB4F6073DAB75FCD6BC1B48F8B3B /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 162451E4934D48CC46DCD780F8C96DF5 /* syntax.upb_minitable.h */; }; - 582C810814FF9E3068703086481AD6CC /* endian.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F049AF46D7E1FFB877D74FCE27E801A5 /* endian.h */; }; - 582F7FC7983559E09952A17EF4C6ABA2 /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CAF9E402CD803B4201C79C9F7FC0C71 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 582FBDDE45B34FD895C3042F85541C64 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = C952DBE8547BBFA78052A917BAEB04A1 /* thread.h */; }; - 583108F27539DF914C70870EF06A1E28 /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0029552655B933124A357E9609E739FC /* config_dump_shared.upb.h */; }; - 58361A0D878694BA50467CE1C00C13DE /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EFD0E53D784052051AF2BE53FAF1AB44 /* custom_tag.upb_minitable.h */; }; - 5837D2E0B8A4294BEB4D1115D2A8D0B5 /* fault_injection_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BA2D12B4083EA3261EA23BB481BA57 /* fault_injection_service_config_parser.h */; }; - 5838353E1174F59B4ED94783AB4937B5 /* port.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 540B41F89BAFA3F34B2C71EB167A0035 /* port.h */; }; - 5839616547D480385485FDF4D9EA24CB /* wrappers.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B77BFCFDDC106EE46D8B77A228756CC /* wrappers.upb_minitable.h */; }; - 5842F3B6D378613EB1DCB13816F78B1D /* evp_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8A97B6E7187E9BD4CAA3685587985A46 /* evp_errors.h */; }; - 58460DDBD5A015AF18C41FE860A05FC9 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 47341C9255AD26C6852632351A81EAF9 /* channel_args_endpoint_config.h */; }; - 58481EC916C66550CB26EC27C180B3CE /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FF8BDC798418893DD108CFEBCFB9FB6 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 586B7B7A814FD80BD6010D6B58A0DE74 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2C5AA8275259A395629C3BF5D04E9F /* resource_locator.upbdefs.h */; }; - 5870C2A676443212AC67E1D0D16D427E /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = D00ED782D2ED8BF816BD43910A57BCA7 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 58785C34C915126C6C694896F2FAEDEE /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E288CF607F06884B9EF5A65DAF7391F3 /* matcher.upb_minitable.h */; }; - 587EE6A7257D071F3F10BE8BF9F23E85 /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 03B8270A4870CFADF5AC4DE4E1278F28 /* env.h */; }; - 58808B68C2FF82FA1DC22845B09D99FF /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = B4140EA64D386BF303D7C6A22BD3E982 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589374C519D1D889CAA3C85F42A222F8 /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A5BBF82B44B8B2F5D0E176504E197 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 58A300A347C3BB1DDB981010A3A81A6D /* randen_slow.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 25D2405EB455E7BBC31E6C61866F5D1D /* randen_slow.h */; }; - 58A4948678D96E68D613528BBAFE91E4 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F02AAC8A8312352AEAAC544EF34AAF3 /* common.h */; }; - 58A6D53325114B9847B28AB0013E8D8D /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0156D20A9A82BC34E1CFD7D2E8EC6588 /* grpcpp.h */; }; - 58B06C5FD1C30BC813AAAD4DCFB68F64 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 473BF06FC9D94C0D3F80FACA43EF44D6 /* lrs.upb.h */; }; - 58B0D8B9250DF6F2C66312492F01A198 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 58B35A8AA0EFF48D9ACE5CBBC6985912 /* listener_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 219D19559EE5E46EE8DEB2B1213EF276 /* listener_components.upb_minitable.h */; }; - 58BC99B49812CBB6B42C32CCF370E6E9 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D06D8382E762E2FA2876E6673AA5DD /* pool_urbg.h */; }; - 58BD1CDBDD11C3476EC0024B8FFDEC22 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A76578DA18542DD873F446677E6FC26E /* internal.h */; }; - 58C2A288A7FF9E3248B2BCCEA9958887 /* GDTCORMetrics+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A21AAA39C08633C2B854A9EC7106209 /* GDTCORMetrics+GDTCCTSupport.m */; }; - 58CD339D8DC0A67DEED4A6E766126A56 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = A85B143BE17B11B55D7D788F62BDF023 /* time_averaged_stats.h */; }; - 58CFEE15E0B30C18333D0354F50BFA31 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 95FAAE3F0AD6860F0787B1E5EC83F185 /* orphanable.h */; }; - 58D41B1C12E2B3CA325906FAE87F6570 /* client_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 01D0F9CA543A89CA9EA719F1ABE27CA9 /* client_context.h */; }; - 58E2038DA9233CA73702C153EBAF01B1 /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ECEFA014D22F16D7DCD9AFB7C4D3E91 /* windows_engine.h */; }; - 58E52D172385D1455D160D8D7EA57854 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EB96E55E21CF757A3A266919047B79ED /* cel.upbdefs.h */; }; - 58EB5C0B21C3FD02B839422C430641C9 /* xds_dependency_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B42087EE8D983859D449C4459473459 /* xds_dependency_manager.h */; }; - 58F8806C92D64ABB15E8F0774A06BC75 /* client_side_weighted_round_robin.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F32C66AE2EB7344060053B74A6560F6 /* client_side_weighted_round_robin.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 59044903D625B81DEA63B64875A191FF /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2E2AF5E4C96BDE980500043DBC965029 /* hpack_parser_table.h */; }; - 59049F58B127610CD1BF3E9F4730C2E2 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 30C4D29006DDA87A721D6B139B88D96C /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 590F3CFD4D84E68F0CCEEBFAECCA3D87 /* xds_http_stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39ABAA7B5E372A916B101CD3A6505235 /* xds_http_stateful_session_filter.h */; }; - 5913BCB98F24771F26D6FD64C55B24AB /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EEC00375A0ACAF728161A752BAAF08 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 591590E08EA4809D7BE6358AC447EBCC /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B99F33156E9271B5B8424AEECCA63F76 /* cel.upbdefs.h */; }; - 5918A099AAFDE22A4BA7EC9D31B7D01E /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 840858F950B899BE52E6F044B8D44683 /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 591D599580A2395FD19E87BE94AB2931 /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B3CCFD6EA9D6583E7FB73904FA305B /* binder_stream.h */; }; - 59210C0E294EF250C12085E6E9AC6DD8 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 98BBE761BACC50EB0565DC8DB23F2CF8 /* slice_string_helpers.h */; }; - 59268734D9554502039C26E68F20DCC3 /* posix_engine_listener_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BECB2B4513E012794A4232B8569AB79 /* posix_engine_listener_utils.h */; }; - 592723BDC9331F32B5466F36C149A019 /* flag.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57CC8161E59ED5D03D64912E9103408D /* flag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 592CBCA90A30554F498B2A42DFC6652D /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = F3BB762B958A8D439F252FD2AC8EDA7B /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 593315FA07B3330B010AA8AF32757139 /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = D157E9921C3E718D11CF69A00E3E9E98 /* handle_containers.h */; }; - 593FFA17CD2819DC419AD2577312FEE7 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 98B1E05C12FD5E0321FEAE2C375DFBC2 /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 594D63E4B0BF133279A2512BF9A3CE9B /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5832E18E37644CA18F098D22227E35 /* varint.h */; }; - 595C276F19ECD252996678BD2B87C7DF /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D0644E04101028FF000B98AB2A09188B /* validate.upbdefs.h */; }; - 596271F43948D60B862258DEBA8B1844 /* graphcycles.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6C9986A337BF42BF2C69246311E15FF9 /* graphcycles.h */; }; - 5963C16DC31DBE234FD941B86C223919 /* bernoulli_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 3F63F8F026478B0D6CC88861FE70F74E /* bernoulli_distribution.h */; }; - 59675AEAF7A9BE60859DC936A05E5F90 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F6A42A75B68E6E98CBFF5A4F7910F40 /* FIRAuthGlobalWorkQueue.m */; }; - 596913F617175C337128439AABBADCE8 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F126D64AE0D4DF51E1293D97D882BF /* combiner.h */; }; - 596A33A421D69CB12AF5BAFE174E1589 /* container_memory.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8B3626EA67EB654F61851D5DE054DE20 /* container_memory.h */; }; - 59734EBF79A8E484CAAD43C3A67BBC73 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5C35C2AA702A2DF483E0F26B2F1D36C3 /* endpoint_cfstream.h */; }; - 59737C9A6A8AF69103F006B063C86505 /* RemoteConfigConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D8519F673E5109A6A32BCB13E26DEB /* RemoteConfigConstants.swift */; }; - 59766CA24261D4F14C2CC96EFCE6FDD1 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = DB6624648695BB31AC4CE1A2CEC5E44E /* grpclb_client_stats.h */; }; - 597A89EEF9A12A4F73A33C5A27B3ABC1 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 367D36B5B5F7A428F816FE68F34C06C6 /* http_tracer.upbdefs.h */; }; - 5988BADE952609AA15510B503120D2E1 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6320A74A93095A55032DC70BA94AB69A /* memory.upbdefs.h */; }; - 5995EFF37D95359518119F6122BC6DD8 /* value.h in Headers */ = {isa = PBXBuildFile; fileRef = F429A1A8B29C0AFB8DE198B3781CC3D1 /* value.h */; }; - 5999B64A350313CB47B6DC5D782DA1E1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F51B6E80CCB08F68BE055BAD3CBA575 /* types.h */; }; - 59A80DA3CD5247587229B6907F008FA4 /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 113EAD460563D7BF492D20F34ADD6A4F /* promise_based_filter.h */; }; - 59B8CF84ED2C58BC1EEFB79CA0ECFF5F /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4D3684F554BC8D770981EB0E07C7B5 /* idle_filter_state.h */; }; - 59BA7C48B34F41F2FF7D5D7663086A76 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BD9B40A624D3AB6CBDF096BC0CA2A9 /* lb_policy.h */; }; - 59BBE2D8124AC9AEAB9064CC35C2FD47 /* http_inputs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 092E015167A24CDA42213D5D1B463670 /* http_inputs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 59CD2435B86FF5AD568B33DE9F57818C /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A123B6DA590C02C80D01356EF7E6333 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59D788DD8132883552FAEB003B877077 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 0549D9195420939D4A58DF0EB7611916 /* time_zone_if.h */; }; - 59E0800EA5A2A1D3E2B49B12246A9784 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FCD0A2F54C32A0D0E18D2F5368D95749 /* status_helper.h */; }; - 59E5B521B152016AB7BB6784143E7E09 /* proto_buffer_writer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9D21EC8AF85719B4418B4A8D39A38A58 /* proto_buffer_writer.h */; }; - 59E7A7B351D7CF56F0D666F83DAE7620 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = F2C652F30BC541C5FF4A2E380EC1BE7D /* composite_credentials.h */; }; - 59EC917941B205D62BA3C6BA88E0CA94 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D1299013B5C4CE24C2AC297382B82894 /* resolved_address_internal.h */; }; - 59F4D284F6D3F2C7BB1AFC82D3115124 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 995BF4F9223E8AFDECEBF12CD550AD29 /* any.h */; }; - 59F77CBDFEA7AFDAECF8A17FD5D85F56 /* skywalking.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D7DD48FE8F719F551DD39ECDE99B587F /* skywalking.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A03812A862B03DA2B64A0CE3D8D500B /* log_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3974B0FE7DE49148F07F0893DEAFB05C /* log_internal.h */; }; - 5A0669EAF22846C4BBBF9359AEC4E7E6 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 99D65E0BA204B0BF5923EA24AEB97711 /* udp_listener_config.upb.h */; }; - 5A29643FD0F1205FA4460BE7412D1C7A /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0BF87E2A124B4C02629642779542A621 /* http_protocol_options.upb.h */; }; - 5A2A48582656FE566EDE75E0FB823310 /* Promise+Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52DD13592D3A85ECFDC4A1634BC439D4 /* Promise+Reduce.swift */; }; - 5A2B641F1D16A4562D3B4CBC4BB3B75D /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 225FD5981B0B130B8F4DCF775AA76327 /* json_token.h */; }; - 5A2D57CFA964EA4FECB2AB6552B9043D /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B5F6557AE2E08359AD9849F86D0D5F3 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A31FE6FE36D9CF793172B92C810CC40 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 5EA70F6F9014AD7A5694C5C59F234C9F /* decoder.h */; }; - 5A48325287A89CE8CDEFF0C02E021AE3 /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = 7BFCF90D36D72F90B3A49E25FB40B553 /* can_track_errors.h */; }; - 5A50E608C7E9357E9575946C693C7463 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBAD11703F8C6EF4501BBD89438CC22 /* client_unary_call.h */; }; - 5A5CD81B439ED6E8B4BF16C43D5C9215 /* bytestring.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 33CEB8D8E960CFABD80C78C61822B1F2 /* bytestring.h */; }; - 5A635C6B8F738E6C6D50B17008BC61B3 /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B4880EB0DC9B8C191BA7136EB85707 /* security.upb_minitable.h */; }; - 5A6B3EC9D020B140C0A9F97B9C158EB0 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = 56FFB5EB474A61D5275EC6FC48FFDB6F /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A6C58CFDB4249470FCFCFDFFC980222 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C632DD4E7C4574623D384D4058B461D7 /* metrics_service.upb_minitable.h */; }; - 5A773D9005C77CAF6B2148B48413AF5D /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A349939CE18674BAB956E6BA3BAD8C25 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5A78267374188DF5C6B82A01D82CAB93 /* duration.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6202B7E805A58A385C51A390B6E2A3D6 /* duration.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A794AAEF783E49098EC137F0577EC83 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = B93736FBF978B657C4DE3B5FF78EB843 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A7C9E085F7A57FCA4311E634725D0C0 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 528D3F1DE63EFD50B50BC884B78114AD /* gethostname.h */; }; - 5A81468BDE953F95A582FAD35575355E /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32E2B7B237541C5F2C5C54D3530FF9F6 /* WeakContainer.swift */; }; - 5A86876AC7E0B97A2769E91281BD3666 /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D7FB426A8C3DFC11EF76C4DAA8B82DBB /* memory_allocator_factory.h */; }; - 5A8E93B8B119FA250429248D04E133BD /* RecaptchaInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7872A619155C9310B358FCB6AC74FB49 /* RecaptchaInterop-dummy.m */; }; - 5A8EEDF89FCE702DE6B11B26BAD81CBF /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B99D3A1DFE0615E01EBFA20684D97E3E /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5AC16A80DE1415C83766BD45E149C121 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AB40D14D1051D1A3134E32573C9D9CEA /* resolve_address_posix.h */; }; - 5AC26A4829DE0891D03F619AB5486485 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 688CDD9CD61F8876BCF91E5F07BC25B6 /* http_protocol_options.upbdefs.h */; }; - 5ACCF2831F3B68C8D229E1C5AE613FFB /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E1C09ED086985A19DF20EA4DF4F7811 /* xds_transport.h */; }; - 5ACE9DF66D1DED85A29E54B062F603D5 /* health_check_service_server_builder_option.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 97F28F7542DCDCAEC658FD23E7F1AA15 /* health_check_service_server_builder_option.h */; }; - 5ACFE1C712525BACD0CAB56BBB808B7A /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 886DC0DF1A3369931E7C1C9E3ED6CFBF /* common.upbdefs.h */; }; - 5AD3DC26AA9DF42337914C423B83F809 /* address.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 94C847BFA7F4BB377327BB82410D7D7D /* address.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5AD98ABCE3AA41E406100981C37D4375 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABCCF58FD69D3EEE2105F35B53B7E6F /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ADFE0D2637C250E544776FC95DEC730 /* health.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 45C94F2D0AAE59A33296B359229E7A83 /* health.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5ADFFDABB2ED5D7045EDE32067432E1D /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5E8AE3E766BC7FECAF917A88C0932C50 /* dual_ref_counted.h */; }; - 5AF74CF8C16AE6171700B1EFAB1BF5E6 /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A43F36F08EB3E41DC7E9E60DACB69BAE /* opencensus.upbdefs.h */; }; - 5AFA2656C92A761E04877C3AFE777233 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54339C93391DF8A108489A6B187E60E2 /* init_dump.upbdefs.h */; }; - 5B0BE2EE9E68CEE913379411B8BB7828 /* call_size_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98341705993B8806734A9EE68A99B8D3 /* call_size_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B10C6EEDE63D4EDB66409DAC6BC457D /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 47341C9255AD26C6852632351A81EAF9 /* channel_args_endpoint_config.h */; }; - 5B12608CF87E814ED9C7E95EE4AB23DE /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19A3646553FF38262A9D3D7BD25DD0D0 /* wrr_locality.upb_minitable.h */; }; - 5B15D9C9F16B8B3F2215CA3C6F8AA96C /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEEE5E376AC099B4704F25673F802BF /* mutex_stats.upbdefs.h */; }; - 5B18E673DBE792CA1C973668B47FC7D7 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6140C8A561EC38A79B440F5B9B948A24 /* frame_settings.h */; }; - 5B1BD69A98A8A26AB76B8676FC7AC260 /* bit_gen_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = B84D446B7286F65AD2B16DC2FB6E8642 /* bit_gen_ref.h */; }; - 5B1E6CABC8B991CC77DE5B592E36EA59 /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94C5A5BDB13AA6DE1790E6083C140F3C /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 5B345E8F9EE9BF7BA31300912DF5AEFF /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1AAF216B717CCDDFC2F92F674F290AE4 /* time.h */; }; - 5B3A942FA045AC450D005D84F71E7312 /* thd.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3529F7C4123F373EEC72143ABC4B3BE /* thd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B3BBFC7E7367F4EB8D0AA076F2DED01 /* flat_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBE7C9F5F5ECBE292BC53CA6862FB05 /* flat_hash_set.h */; }; - 5B3BDF1DAE695B6D0E8322406EE63939 /* GDTCOREventDropReason.h in Headers */ = {isa = PBXBuildFile; fileRef = CC815A0964AA32C8545CABE4E7E7B16F /* GDTCOREventDropReason.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3D44F392CF49395009F0DE1C6564E6 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E1F1920D3F54CD145216BAF2213031 /* atm_gcc_sync.h */; }; - 5B48BD2E84B268A9E07EEB66BABC2683 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = DB8F4E6CF4BE9C6453EB552FCD81B8D7 /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5B542EAC9F9676F952AD5C96B65FAD1E /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B77B11683510E8116965F762A5EFF50 /* xds_channel_args.h */; }; - 5B57A521C9B03470A9AAAED2FA6FF56D /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FAB60A59725870433FF8E96CADA4BA4 /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B5964C08EABB606338479BA0B8A4A59 /* GDTCORProductData.m in Sources */ = {isa = PBXBuildFile; fileRef = D408C8911F54228630C518F16EA5CCB0 /* GDTCORProductData.m */; }; - 5B60A93364959A25FE4ED8C04BE9DE01 /* client_metrics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FED989AFF9EACAA11CADCF7F10B3CD /* client_metrics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B65101E40C1C9C103065C3435A76995 /* internal.h in Copy crypto/bio Private Headers */ = {isa = PBXBuildFile; fileRef = E2D40A1A16637FE08B870E3E1DC3B1F3 /* internal.h */; }; - 5B68C53F35E5104A203F448DC0E96675 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = B6ED5395BE44F2D16B34F85AB98BE6A4 /* server_context.h */; }; - 5B6C59AA3D5D7CB35F620E8B6C493BCA /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 35AC1DB79CF82CDD122A857080C23A37 /* algorithm.h */; }; - 5B882A15B56718CB1880D5AE92965727 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5946CC9409641098A46E5EF5CABFDBD1 /* FIRCLSFile.m */; }; - 5B92A66A66BD639411C3D839A0F87B0C /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E16406259ED5D15E5C142DD3CA90C6C /* Request.swift */; }; - 5BA00FFB681F44FD20E8AFAC91F3C7F2 /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5839E5AF227C100E3C429EEB10DF36AF /* event_service_config.upb.h */; }; - 5BA7C55521E4B6580F336BCDC9B32B9F /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7744CA35FB672C45C0510E4C8C15D8 /* grpc_tls_certificate_distributor.h */; }; - 5BA7F10BFA27290BB46C03DB98DB38B6 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AB697BF0AC70DE77638A7F08586034 /* log.h */; }; - 5BA976636B91AC5A43E23707FDF89F4E /* deprecation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 329130D62C4DC761A4BE6DCB77EEFEA7 /* deprecation.upb_minitable.h */; }; - 5BAE2F62E6CC978E46625E87CF2DB471 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 527A01354EC384FC75B1F585B2CB2E53 /* timer_manager.h */; }; - 5BB0CF65067ACAD703720F2DE3574BAB /* crc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A119D3CD79C2C5ED6A7120359D56CF5 /* crc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5BB6FB1FC2420415DA2E2BBD5390BE07 /* map_gencode_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 886713718FCADF8C8CC23FF2BF7EFDD1 /* map_gencode_util.h */; }; - 5BBB07F84C36527CFA16E930D0F0DF2E /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FAEE9414C8DFA5DB1A4776C1FFAA006 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5BBCA0F935BA89079DE7A80F81E3BE06 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9438B22C77549D02468199AFAEA054C2 /* closure.h */; }; - 5BBDFB79032F5D58DC36D7F68A83C095 /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2292EEACA8793DD77748E660A3A4F942 /* subchannel_pool_interface.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5BC2FE4635C0259773B40813642EB43B /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC565DA76B1E24393702467C8724253 /* iocp.h */; }; - 5BC84EDA8C9F8530870E810964419FCC /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B1F5C4F4D315D25F080986F4549F4E /* lame_client.h */; }; - 5BCBE1AAAEACF9233EAB3426AD5C6228 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C0CB34C524F08BA1A10BACBE8407F61 /* atm_windows.h */; }; - 5BDACF78ADCF94DAFB3688B78C5D01B8 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8BE93703FB73093C71D82F6A7D99AA /* charconv_parse.h */; }; - 5BE4EFBB9E0CB1968E72E793FF118931 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = E69C06ACB33BFBA8CB1E59C9BDEBA353 /* ImageCache.swift */; }; - 5BEE00B7867531C9F772582A275EB357 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E93B1125D74E42686464A3E671841F /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5BF41080EC208CE7642B9A0AD4E882EC /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C45B26F7BF05BF5BD9234088FBD3591 /* enum_reserved_range.h */; }; - 5C00483C0B24F583A5E4684EB884121B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 5C026C01F61E749879963E025DCA2ADB /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BDF7F2C02D7661162754CEF9BAD13BEE /* thd.h */; }; - 5C0551FCB676F1DBAFEA12EB00FC547A /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A3924EBAA56FD8B8D2CA1F4F483EDF /* exec_ctx.h */; }; - 5C094716BB04423DCFFA4230E2E9CBDA /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = 57219C864CE0804FA7C4156138A9556A /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5C0DCCF0E03B7E1D280B626A2A0DDF29 /* TZImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E1797726160A096C1BE8380E5D6C571A /* TZImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5C12CD7F2C5B327AD3C2A12412E557CB /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9BD717C2BDAE392A7AEB886AAFB969F /* secure_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C1E123389FA4F1E73F767C0F00E5219 /* service_config_impl.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 97AC81BAF5702D091A83160AC191DEB6 /* service_config_impl.h */; }; - 5C213DC10E579AAFB1A0C5CEA80B830E /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3155C8551CCEB67F27E2A259A276C7C2 /* bin_decoder.h */; }; - 5C391249B994DFD506DDD5DCCC4659DB /* LocalOverrideSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3F530D5F4B6665D2C5FE909D32CB88C /* LocalOverrideSettings.swift */; }; - 5C4158700E5F8EE62E7A5D77ACD71CAE /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 660A439AC461D0606BDD564A7CAEA488 /* checked.upbdefs.h */; }; - 5C44582D6B7333727C024CBF8E07461A /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 287AD85075CFCF55BDB46BADC732EA73 /* GULAppDelegateSwizzler.m */; }; - 5C448EB43DBF08E46B1602A22EC03E42 /* hpke.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6EB358824BEA75B233605626D3AA1CE3 /* hpke.h */; }; - 5C44A1F0EA03654AF73C7C5656E4AF12 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 762E164A8C9550C94AE296DE3A6656BB /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C6307526AA9FB3CB0A0A88CE0361BE1 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D7E84B4A1C99EF739E6B3AEF914E06 /* server.h */; }; - 5C6A734FF3CD15C5778D94BB6A143BB8 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = BB9D5F7EDAC23AC46908C7A2CC1B9187 /* httpcli.h */; }; - 5C70A3AC9A13B4BE1C092E04BF23814A /* clusters.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F444FA937E9721642D30B302CDF1DFE6 /* clusters.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C7609DD76A9A003A6A8203BE29D6FF7 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5A854C180A458BD8ACC3FEEDD2EE829 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C801BDE167CD72DE3AEF206962D4137 /* call_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4BE648E53F9A55AF9339B9985EC4CDFA /* call_factory.h */; }; - 5C808EC60B265A13B602D62FC4908174 /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43641668F8FD7CCF7679515CB03BB5B8 /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5C860B8D1840A784C72676579315D3BF /* FIRCLSMetricKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED1044B5302231CCA6BAF17446E983E /* FIRCLSMetricKitManager.m */; }; - 5C8B91D245A451AE308E5C3A49979B81 /* FirestoreQueryObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E1225E020AB532A64E4B8B03C455B42 /* FirestoreQueryObservable.swift */; }; - 5C965DD55470B02B9A53532D5C8204BB /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A70DB36A62A1E82E966D88A365181EA0 /* filter_state.upb_minitable.h */; }; - 5C9EF728C950D1D35E669F72839DB804 /* Pods-SwiftProject-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A82F55E6237597B276F43CE4910ECF /* Pods-SwiftProject-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5CA2C44B67E145FE25CB43A8E32E68B2 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7428C8B5CCC8922D0E59D2E9236825 /* create_channel_posix.h */; }; - 5CA7E5B819B9DAD64125ACAD616061BA /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7727B482374D53B779434792836F16F8 /* cluster.upb_minitable.h */; }; - 5CAFB33C0385D13401A3C0165DBD2B31 /* numbers.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = A72D5AA53E4CD88AB05A875DFE4F5CAA /* numbers.h */; }; - 5CB819302B78921C687056F486A59BE2 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E27B39B4166399076D7A0E6EEF6BBE8 /* google_default_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CBDF35A8092D0886174AA5A8FF82B57 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; - 5CC25BEBF5218F7DCF3B68258BA8EF0B /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 8423DDAF01D41BAE43DEEEC84F049AC0 /* util.h */; }; - 5CD78326C7A7E27A8817F25B8593821A /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8454185AABA824F7F99D112380AE56 /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CD8B78A1AB561B2B06FE90EAFC7D74B /* grpc_plugin_registry_extra.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA75EE3C2D9A57E79B1385DA0B41CF23 /* grpc_plugin_registry_extra.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CE3F7D762F4026428FD5CD3562F6B3D /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA336E705E4C8A048DAEB1CDE1E8FE3 /* server_initializer.h */; }; - 5CE5E76C9084DD4F3392AAFF9CFDF8FA /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0EE181846032AFFA41DD2090B43AF1 /* FIRComponent.m */; }; - 5CE5F057C51C825E99757010B09C898D /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0585B94CF1B21DD374B96ED7AF14D2C6 /* backoff.upbdefs.h */; }; - 5CEA4B1D9C4EF2D4ABD3A95CE0CC4947 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D514CB522EB1EF54E03C74EF37DF9D /* construct_destruct.h */; }; - 5CF38CAFDC2F6AA6D53FCD604C01C4D2 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C7E2FA72302094E2A0D9CD2F104C1816 /* grpc_service.upb_minitable.h */; }; - 5CF7FDAE950F9D24FE9C8A85A544AABD /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 010E33038D703981BD9B1B3BA67113DE /* load_balancer_api.h */; }; - 5D09C807DB39EE77E0E7CA0F49FEA0BB /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 47B5E02C02A93695B48B2BF9DEC9B871 /* http_inputs.upb.h */; }; - 5D1407E80F99F6E9F19A990753345C65 /* ascii.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 035B82AB08DA681C610923EBEBE78CC8 /* ascii.h */; }; - 5D3201073988FE81D2852368E5760B2F /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4583F2C88D06EE6A22441FDDEC55EE /* range.upb.h */; }; - 5D36B99F3CAB1FC7337082D9581FECA6 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECFCEB35B634969A4C24BB05FE38D6E1 /* Debugging.swift */; }; - 5D3BF2CDDB39F378D89B03F6898EE610 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D08C038DBF34B891C2B20E28DBC1EA05 /* fault.upb_minitable.h */; }; - 5D3E0F7599185DA5A918FD9698DEA18E /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0DD1BB5FD2124ED992F133DADE457D /* retry_filter.h */; }; - 5D3F7F1FAAAB5BE79EB01A6DB1332E4E /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFFC39A61E4EADF61BF8B75579481F1 /* range.upb_minitable.h */; }; - 5D428E2992CBA286AB2CCD88CF4CD9D6 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F2E303DE36FDBC0C3CAE89284531C70A /* resolve_address_impl.h */; }; - 5D44C926EB9EC7F5A78E2D9FED00BE93 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 25F40E84B58EBA6B651C8571EC9E620D /* value.upb_minitable.h */; }; - 5D44DC06568E85319A0377AB3048C615 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F6D1ADEA3FB1DEF90FE27AF3CF4BF6 /* dynamic_filters.h */; }; - 5D4EA28B342B4FD079B5E01EE1A379FA /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC1ED9EDC359578761170A6FA3CEF84 /* handle_containers.h */; }; - 5D6A8A9D0BC250C801F233501DBB5358 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A40F7714D2DAF0C998D2C77F9404C6A5 /* event_string.h */; }; - 5D6E757B10D8DE429A47BBC31570EF35 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED5F8FB2D3AA39E3EDA4050774D3B5EE /* iomgr_fwd.h */; }; - 5D7291D14FFC9E6C6B4098BAE2E6096B /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = D041F0FED200C1D8B0436E575BF40954 /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5D79B710F186206F96D36E912191EDEB /* FIRCLSManagerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 596911898B1116E1F806F4BF24DC0E28 /* FIRCLSManagerData.m */; }; - 5D82EDB31E7A9F8DA2BEA2CD37BADA21 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A56C4143E0243CDCCB29AE531FF9B387 /* context.h */; }; - 5D8682FD9650EA7187AC842E60752564 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0A3AA971A988B2A5E579A77EBCC7B9 /* rbac_filter.h */; }; - 5D8D4E977170058F3277081BE0246066 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBC2B00A15F794060BFA1E09A16B346 /* grpclb_balancer_addresses.h */; }; - 5DAD5AFD11BC3598BCBCDD81080EAE00 /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4CAC3B87755E5519961792D880E5EB0 /* clusters.upb.h */; }; - 5DB5BA171754295CA3CAE738A1265D1B /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = 61EE94E22138D3DC0C4CC8DAE8ED601D /* GDTCORFlatFileStorage+Promises.m */; }; - 5DBAE38791201F074792CEBBB744A49E /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F6D9AF88B88F97CD21D89F93542452 /* encode.h */; }; - 5DCE8D26109C141C0D90E0EC59E7F0F0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C25108AE849257D59DB306896F9F7341 /* common.upb.h */; }; - 5DD40D1DF9D9CDBD787D6219E2A6C683 /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3650A7B18E2F5B9AFFD40A7E9BA5D1 /* metrics.upbdefs.h */; }; - 5DD70D845E33A6CB78FFE63B61D28309 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EC2235779BC4E636A469F05F4B67571A /* channelz_registry.h */; }; - 5DDF2439A4EFE7D0B141EAE0CE6ECF90 /* GDTCORMetricsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = CC0FE421ECB2FADF9264EB98D218A22F /* GDTCORMetricsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DEFE60C2C324CC0F3CB0882094587F9 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF9CDF8B7BD057A186F9E38DCCE87CE /* authorization_policy_provider.h */; }; - 5DFAE00FFA1B6FCAB80699484870DA2C /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = 84D2B39DB713BB9C293A72DA6BECA38C /* local_credentials.h */; }; - 5E01E556ACF7B3E09E8BD6A929AFF1EA /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 596871A81894B7D0E061C4DFFC09A7B0 /* accesslog.upb.h */; }; - 5E041C9C5484259AFB767678C15F3FDB /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBA604D93760F312A6A90A71A90F216 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E064C2E28F5B6F8072DFBF9BC1B23E8 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = EA4C0708C24276B87CB9CA08ABDDC5AC /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5E0676D52C1661AD113A4CBA5FB27033 /* pipe.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D67B56314DE8CE5E49E8EB9F4A0EFE5B /* pipe.h */; }; - 5E132EBA36E1E32CCA259D577BF9AF0A /* SettingsDownloadClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFB264982C796B8BB7A01C1041CD9FBB /* SettingsDownloadClient.swift */; }; - 5E2D89CDCD327834D5856ED20828B32A /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 0CC565DA76B1E24393702467C8724253 /* iocp.h */; }; - 5E3021BB2C07994699CC15E407E6ADB3 /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F254CF2160B4363861EE00DBC5833A2 /* FIRGetOOBConfirmationCodeRequest.m */; }; - 5E3BB38735CC68C50DCEA1DB5AD90FED /* load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6ADD87208E9EABEDCD423DCD278AEA /* load_report.upb_minitable.h */; }; - 5E4261F8EFB0E0695CC137163978CD1E /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C13FF01C66F51825794CD24244F00A /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E4DFA22E75F48FB94667DD898F072B7 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C03FA7839059434B41EC36123D4977 /* call_tracer.h */; }; - 5E651CB99E85DDFB37AE2960FF06D353 /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = 843095ED1C736575EF04A39C1A095DEB /* cord.h */; }; - 5E67437B614216D300933B178BDDA506 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03D2374B34A1A33F62E2B32152BAC396 /* cel.upbdefs.h */; }; - 5E6A380D3185ACD6EC6966BF465B385A /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 45532B655A2E523B0ED9112BCF0E60C0 /* cidr.upb.h */; }; - 5E6D12C3F427EDBE0C52EB53C304BBD9 /* annotations.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 93087C7807480537F2B5D1ECBCA2F797 /* annotations.upb_minitable.h */; }; - 5E73F3DEA4F6FCA0D40610BFF9B00133 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 90F528CE0EAA9E192F439FBA6905EFBD /* transport_security.h */; }; - 5E7729F971D3A8BB081822A0B0FF453D /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = CB060A9401770D78AE99D19F78E462B8 /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5E78F4BDA8F5B839AFD92680E5901954 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6331FFF94C86E2CB00F81EFD00A30AA /* alts_iovec_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5E7D986ED0E48FB87AFADDC543BB1F45 /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */ = {isa = PBXBuildFile; fileRef = 2C22955271F4C8B2AAA4921E3DA45805 /* binder_server.h */; }; - 5E85D9166B0891AB9D7D82DB010919FE /* interceptor_list.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D8F67A4743BEBACDCA9F3192450EE6AE /* interceptor_list.h */; }; - 5E85F2A9E95872511C1FD041099019D5 /* commandlineflag.cc in Sources */ = {isa = PBXBuildFile; fileRef = E105ECBB374F7433F30942B83CD4187E /* commandlineflag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5E9287F436C8895CBF576E4E1A44C81D /* connector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 76348806DFBEEB3A6C694308256DF53E /* connector.h */; }; - 5EA3895C736495625C739657F4A46F25 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 0326A1D3B2F48B97C7D37A4E06E2E1C8 /* alts_grpc_record_protocol_common.h */; }; - 5EB2A73ACFA3790E80ED247A570D45DC /* cleanup.h in Copy cleanup/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 087801A5A9FE6072B50ED7A36EB6AE22 /* cleanup.h */; }; - 5EB9C5AE1831918AF4D54B9596F41310 /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13A3B15F514200A0C3103B20DBDDEFAA /* endpoint_components.upb.h */; }; - 5EBC224DDA3EC6CCE8C42EED6063FD35 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47CBFFA617A23D4E2EF3C96A5CDF1BB1 /* ImageProgressive.swift */; }; - 5EBD2E70CDBFF6B69F41DA591924DCAE /* salted_seed_seq.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AC4A3FBE868A3EBD85CCCA83D9F7E7EA /* salted_seed_seq.h */; }; - 5EC0ED3BF9F0E86ADC14905AF098A56A /* FIRFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A24E6DA094FFECA52FEC97EBFBE805 /* FIRFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5EC9361171C63447EFB4AB7A58188C96 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FD8984516BB2DB3B892617BD469491 /* message.h */; }; - 5ED1B79058FB807022451A1E21FA8DCA /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 149966A7E4C6ACA3278C0865A97201AB /* arena.h */; }; - 5EE6A6D7809CF031D17E269113DB5697 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 958730C2973972898C513AA1420D0FB6 /* stats.upbdefs.h */; }; - 5EFF3160291997C7C775F2CF5A237DF8 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B1221A87B06C40AC2F7C4FC41A4EE61 /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5EFFDA625BABDF50DAFC04D136D08EE8 /* unaligned_access.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CA3EE28933BBE5CC605293280C611EB1 /* unaligned_access.h */; }; - 5F0C0D2579C7A6B07B70BE22B30EE521 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = FBC0AB4D0C3FCE524D2A0F4104395D5A /* http_client_filter.h */; }; - 5F0DC884DB0CD0EC844018B95CCCDC78 /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4623E4C9A818AE076636BC7A739BC3 /* e_os2.h */; }; - 5F1405B4C931BB2D267BD15ED670C0A1 /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = EABCBDE0C47112A312154FECCF86CC53 /* alts_grpc_record_protocol_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5F1DC10EF88E1F751757F413E4C19347 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2DCB8637E8981241E03FD4A05F22E4 /* xds_client_stats.h */; }; - 5F2081D45129AD6AA325D69773D1873B /* grpc_audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B061F5A1DECC81C84C43CB92CA3CBF9E /* grpc_audit_logging.h */; }; - 5F21F9A55D579C445351348E3B20BACA /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F01E86156871E486A11E72F6AF85F970 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5F256A905BA20B6848CECC4AA5ED6BDD /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EEB367A2887445CDBFA3CAE817AD606 /* slice.h */; }; - 5F2EBDFD103DF80B270D58A734EA9B0B /* thread_local.h in Headers */ = {isa = PBXBuildFile; fileRef = FF099BCEE42C47A7B7A5E64CC0739DB0 /* thread_local.h */; }; - 5F356195B10A78F5B716B248369AEC2F /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = AE5D85ED5F0FD62C4963F5BAD8BEED77 /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5F38546A5EBC776E61A9C99C01CC7978 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC18E2ECC9049C07F6BBB45E18E18D /* enum_value_def.h */; }; - 5F47869FB278CA493917EC30B142E612 /* array.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 2D987FA0DAAA553094A376CA23458520 /* array.h */; }; - 5F4EF8103F559D6B0D19B6D038A9B99B /* wrr_locality.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B8056AC953FEA527BF1D993A6598A6B5 /* wrr_locality.upb_minitable.h */; }; - 5F5AB7CAA62BCC36B7D7604195F63BFA /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C75244C820AC8C899749EC66783964 /* migrate.upb.h */; }; - 5F5E089CE32A19A29D6779A11393738F /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6A47A03BCFD80CB548AB1C2F8E7320 /* FIRAuthNotificationManager.m */; }; - 5F6E49F285A19FF7DD92C02CEADC4DA1 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 59530CAD4BFDB839F35613F57574899D /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F730809800D7E465FC9EEC18CBFD42A /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC17AAF6225FA0FB21AA05846083C5 /* subchannel_interface_internal.h */; }; - 5F74921FF8059114AE301F218EDD5F51 /* type_list.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5C43FB3047699413CEE92B78EF7FD6 /* type_list.h */; }; - 5F74D9B7BA0D9FFF83A1F68CCB7D2569 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 880264BF825768662058B7981F945A08 /* match.h */; }; - 5F767C98AE9C33920239EABEEA38E269 /* event_engine_client_channel_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0738D0D2DBF3FAFE8976B7BB9CC9D7F3 /* event_engine_client_channel_resolver.h */; }; - 5F8492AF47F653AC95770C4444079E49 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67D2FF27C96584D2CCB0DAD4B246EFB8 /* cel.upb.h */; }; - 5F852523E084D41747E9B0C290F24408 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = B0526F9D4F0D27505D741F0CB3D5CA1D /* stateful_session_service_config_parser.h */; }; - 5F8983FF813977AC1F9DF0C2E25AECED /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A236EC8D614D217C6949C6D2E3B26A62 /* common.upbdefs.h */; }; - 5F8CFB11327D9582F74D0A71026CCA89 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A456DBCA5952D8ACD59BD0C5949C03 /* resource_name.upbdefs.h */; }; - 5F8D1B03B5AC6BAF3B71C0A8090579C8 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 03B4880EB0DC9B8C191BA7136EB85707 /* security.upb_minitable.h */; }; - 5F8F957BECBEDA3F5D551758C40B248F /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 2F58168BECA982741D45FA26DF8ED64F /* dynamic_thread_pool.h */; }; - 5FA085389AEC1724D024C550A1297C0E /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8483BB5E2B6D577B5AEABB82B08441F /* transport_security_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5FAC79677F6ACCB73F1130AEE2D2A243 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C233C387BEC4584B732401F25B53513 /* internal.h */; }; - 5FC1CCECA4D00688FAB20958D070BE3F /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1703F7DCF5F3EDC2689BD2AC6ACC2EA8 /* range.upbdefs.h */; }; - 5FCCE27FD183993ED913D9883D1BB40C /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = B52413AEE015A1986F76002B7A28FC10 /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5FCFA79FD592DDFE5B869598A835BBDB /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 91FFB927E66E7D2E50FF866257919373 /* custom_tag.upb.h */; }; - 5FD20C4B712D27A22D665E2788A2670D /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 577CD40953505E5E5F586A51673AE54A /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5FD8BCDA21BA635EA374B2A9758FCFF7 /* xds_override_host.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ACFFAA029F46AB6F26C261B652E396 /* xds_override_host.h */; }; - 5FF03F08A4316CF4DA9043F3D4E4570A /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D389DF30FD84BA35AC067F4BECB1BBB9 /* overload.upbdefs.h */; }; - 5FF197C9399E8D07FF084C0FBE724B2A /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4ADB22C0931B25DB83C5F1429ECBBD2F /* xds_resource_type.h */; }; - 600574B4C77AB4ADFA750B786787E2A3 /* variant.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D888C97EF7D5DE552B3828AACC447128 /* variant.h */; }; - 6007501A4CE6C4E4520E018381F6A87F /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 04CD4160703BA01D769DEA69A4238F1A /* health_check.upb.h */; }; - 60103F4EF5E3E27B386497B13366CCEB /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A35364C377E8FDFC06BCD398D799554 /* create_thread_identity.h */; }; - 6013663249D230D6CAB15E40C9F91753 /* config.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 540DCF70744C6D2A6E204EF01013B3F6 /* config.h */; }; - 60242DC27C2BD5BD7A505E642DC38791 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F99E6B874D1AED47146BDE761F6DD05 /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 602F027A43D9F2F445DD03E6B8EEDC58 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8891D4B45764C501D226C751DA92898E /* FIRMultiFactorAssertion.m */; }; - 603584E54E878056D614C83DA0461CFE /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DAD90F70CD94AB2EF5425E9C7627EA19 /* error_cfstream.h */; }; - 604901154335ED08290F19E98C01064E /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 04D3CEC0C3833B25E88A3C7A0B0970CD /* status.upb_minitable.h */; }; - 6049DA9A17C5164AC80D19E345F1F5BA /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD34B4294FBA7A5A20C38BC3C499E343 /* Logger.swift */; }; - 604C7A9D792963DF53DF16A343BDFCAB /* stateful_session.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F923A2E0F49C5C346BF2DA9B978FAE64 /* stateful_session.upb_minitable.h */; }; - 604D3C93C17978C23600EC415949AB64 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76B3FC425D98FE53DDE9A6E0B8F7D4AB /* ConstraintInsets.swift */; }; - 6057978390755B26F154FD956231B5CB /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = C732411E52EF3E4DC8D15025D94AB4F1 /* xds_cluster.h */; }; - 60605EC0CB921D536815F8049AFE0454 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84A456DBCA5952D8ACD59BD0C5949C03 /* resource_name.upbdefs.h */; }; - 6064EA6730AAE848769BB22A5F7F255D /* beta_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = DB22B5965687EE84D1C2CC5B2FF2C42A /* beta_distribution.h */; }; - 6066DF8EBAAF4EAD3A904AFF921C3CBB /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B998AAA294328ABBB9953F7D0BE56613 /* ImageDataProcessor.swift */; }; - 606C763C23C0445CF1AB8879BA38C1FA /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 596C294122411236161F77158BDB0F88 /* resource.upbdefs.h */; }; - 607BD112179D3B0380051234B0A24B5F /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 92272F41F223C887F814EE26F783E9C0 /* common.upb.h */; }; - 607E7F00AD3DE112B429752ED359E310 /* resolver_factory.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 0FEB9101EAC44FFBCE4F59F48B1BFF34 /* resolver_factory.h */; }; - 607ED673AFF60383D54D7B2E3D8AE37C /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3D859B5A062AB1920F2AA5ABB9CBD8D1 /* handshaker_factory.h */; }; - 6085012DE78C32BA79029AFA0AF53CE5 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6F3D3CAFFC238B3202D99A12F3E263A /* trace.upbdefs.h */; }; - 609B72FA4A55DCB6349A9FF8A129CB81 /* metadata_query.h in Headers */ = {isa = PBXBuildFile; fileRef = AE0ABA6C039FCBEB3CFCE9CE1D897159 /* metadata_query.h */; }; - 609F700123806E48F903C6A49F61099C /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = FC1B12D5090D2E4C7503AE645758F7B3 /* FBLPromise.m */; }; - 60A63436FEF0BD2A181D6DEE934833FF /* program_name.cc in Sources */ = {isa = PBXBuildFile; fileRef = E529DE322D4458CF608012ECFEC8949D /* program_name.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 60A63E47A4BF82925C1B50C93A51E14A /* zipf_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 30EA548B6BDF330CC26B59E726325DF6 /* zipf_distribution.h */; }; - 60A9BF2C3B0CDCF376B268324FADC88A /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E048134B3F404280AEA150DE6BEBE61 /* range.upb_minitable.h */; }; - 60AD4F224929B9CA19DE0705A4750927 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4203C03091C6FFD45F1E3C71E50198DD /* tls_credentials.h */; }; - 60ADD1CEC29A42F50E469D1FCC84A047 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1703F7DCF5F3EDC2689BD2AC6ACC2EA8 /* range.upbdefs.h */; }; - 60AF154030A651C67E28A5C3C0B7ED5E /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = A531162851D94A7FDC2642D18FF49FA4 /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 60BC44745333B79E6870C3DDCCB888FE /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 714DCFF92C91E6788487CC22B66264B8 /* cel.upb.h */; }; - 60C6857167CA9106AF1B4B01FB3E57BE /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 91207A3ED8394275AC6CA97ED02B3D54 /* health_check_client_internal.h */; }; - 60CABCFFFA0CE38E9530AFF2AA2AF27A /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC06E81214C73BC3E44BCFAC98678B2 /* alts_grpc_integrity_only_record_protocol.h */; }; - 60CB76F2DDF2827AF809B1BE827E466F /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 896B004BB65913CDE0E15DA7051D6E9B /* server_callback_handlers.h */; }; - 60CE31C8F267E690ACC9F9FCA20B39C4 /* ripemd.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1B49DBD18737256E93B6EEFBE33F630D /* ripemd.h */; }; - 60D5B2A6B28F12243CAF79DD3034185A /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF111846FC5120FAEA129EC8E216DA1 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60DFAE816123852945E99910D3334A23 /* map_sorter.c in Sources */ = {isa = PBXBuildFile; fileRef = C4551155FB99BC8554E490BF2E8ECEAA /* map_sorter.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60E7ED40C95035FF86C421802AFA4A63 /* fixed_array.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = EC484B0535EDB787C5039B111EDEAB25 /* fixed_array.h */; }; - 60F0A689A2B9836501B3B0E8F048142F /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A391284F9C8B7EFA6AE0C1DC084CAB01 /* range.upb_minitable.h */; }; - 60F4DB8174100D46BF256C56CFBFFFEC /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 662FA06FF7AD9BF417AB6A1E7C406BD7 /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60F765392718BD63A4F00EA19A1CE1AA /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05E0EEF77540E831F98213A8C8776ED8 /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 60F7BCDFBFDA56873A2E7021582E8D21 /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0995C5461F807FD7AC19145E9C1EDEF4 /* health_check_service_interface.h */; }; - 61013996FA2E852776F62F64BE6129A7 /* mutex.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 076AB9DD52FFDDE8EB5A30CE89B48312 /* mutex.h */; }; - 6102CF0AFA860891CCB6A4591A9EA728 /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = AC0712CE921470A1F3DEDD58F40A5E74 /* FIRIdentityToolkitRequest.m */; }; - 61034E3F7922EB479F3E28EEA964C1B3 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC8FE01BEF4277D5A3C7B65B70A1768 /* trace.h */; }; - 6107E23163156158F9D72C3E3962ED5E /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA84BFA8B69DCC6127FC229FCE4C676 /* enum.h */; }; - 61089FE7CED94C9277B85A28E81AF1D9 /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C25B51A0C4B53577BDC21E2AD8D56E51 /* internal_errqueue.h */; }; - 610E4C05DFD9EE84489FF66958218F3D /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18B7CABA4E0D0C7731F233E86A1E082F /* cfstream_handle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6116EAB033064EA5BE978379096E0BCF /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 844EDF3CD9953DF1D9CF865C687B4650 /* platform.h */; }; - 61186EC55095355FDB16784182F23601 /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = C91AE58E8D6CE6F4C0F9BC4397840987 /* binder_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6119CA59CC4AED7D8395995F28E4A9C1 /* service_config_parser.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = BD0C71C263E910955A3661941FEB7B18 /* service_config_parser.h */; }; - 611CEF7FF1EF9EA1BCEF6C73EEE3ACCF /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09F77B2DA4578E3D0D1AD8DA96029498 /* ConstraintLayoutGuide.swift */; }; - 611E3265CBBF687E79758582C3414564 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 434C448B78C138F9BE8EF3228534AC83 /* GULUserDefaults.m */; }; - 6122079140AFB186673C0652AD1E972E /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF8B4B37CBB5DB73ECE444258B43A01 /* common.upb_minitable.h */; }; - 6122BDC7AEBD7E6FD7B21516AA8A1B65 /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 0BE6B6E7F74397D01C1B8FC6011863D7 /* service_def.h */; }; - 612C0059074CB5EE04225F87DBA9F9BA /* json_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 311DE58A245FE497704D084D2EC99514 /* json_channel_args.h */; }; - 6130867C2DB21590F4D3D56439E026F0 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = EAD27F2B17B387D9F13318A65F38B672 /* status.upb.h */; }; - 613168FACAB72533F9EA8486C6E7E9FA /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 983A79E7D46425FFBB965E0ACED3A530 /* arena.h */; }; - 6139998736AFFA7A1FC0AAD75F4076F3 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 43365096C48052D39836B32B8911833B /* GULReachabilityChecker.m */; }; - 613FF8A121647304D836190CE69CBAD4 /* posix_engine_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FF7A7F57ADD24DD445CC42E2F67FB1 /* posix_engine_listener.h */; }; - 6141B4598BC4188EB0E4F41E17203175 /* strtod.c in Sources */ = {isa = PBXBuildFile; fileRef = BC068C14D3CFCBABB10C63F7F7A3DD49 /* strtod.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 61425C15B1AF8284835A51B7F01CBA01 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 32699098C26F5F65BDA29400B643C9B2 /* message.h */; }; - 614683EA45A9818EC062D905F8B159EC /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB225E8C65E38252EDA580FA8181FAD /* pod_array.h */; }; - 6150BA2527504D4662FF74501E7A9A4F /* regex.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F50E727CBEB856DBAD6639A8AA9D85CC /* regex.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 61581907672CC6DFAAD07B9954BB58CF /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = DB98EB7456A2A85B0E880556467ED50C /* grpc_alts_credentials_options.h */; }; - 615BC27FFFCB0868D8D9B1E2DAEAE0F8 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = E36DCC9E2104C542390C3CD6CE48E5FF /* types.h */; }; - 6161B63355ED9DF24FA24A5181A6120D /* http_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDCC0B7B68761988D8D23BA57A352E60 /* http_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6172767165F155A0B127065D0FF42156 /* ads.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 650DA916690E4CC1218F454C802C7080 /* ads.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6172ACC86F6315FF1FA4D13A68A817EF /* syntax.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 162451E4934D48CC46DCD780F8C96DF5 /* syntax.upb_minitable.h */; }; - 617BE983E7613DEE85B331584B0C4E53 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = AD58238889CD6D3D3A24AF12240E6579 /* tagged_ptr.h */; }; - 6191E136FF506133C09257B1D8E6C24A /* spx_util.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D096C76DEA842A5178132ED27BB4C66 /* spx_util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 619343752DAB17D3231D71E54E19D4EE /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = BAAF37D625AA0C9D73C74B2C43D061AE /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6196BB04C94C45D15FBB567B7BC9D88B /* cmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9D0247AF0657BAF5DF8DF2BE03DFCF11 /* cmac.h */; }; - 619754BF0230C764301E67036C79A9D0 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8F7577E6082576E39219D2A5CA43E871 /* sockaddr_windows.h */; }; - 61A9DE87A9DE8A4E434493A1CB1D3C18 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F42287787F17374CCDD6B4BFA0EAD7 /* security.upb.h */; }; - 61B44A9B1B282ECE06A558D30305831C /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = F8A3310C1A069784323A0FF13D26B74E /* channel_idle_filter.h */; }; - 61C8AED89DAC2F52A90FCE6D261D2F83 /* dynamic_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CC978DFB814E341E054C378F1B3E06D3 /* dynamic_annotations.h */; }; - 61D758FD4313C79A2E791B8BB02E70B9 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 22D67E0684451C583C54316187006449 /* sockaddr_posix.h */; }; - 61D7FB4E64B93B90A799A48AED491F39 /* xds_enabled_server.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FA7B8FF2095FBAB5EE5A3DC2EDDB966E /* xds_enabled_server.h */; }; - 61DA17F7C1652D3323D556A8A8A9DFBD /* p256-nistz-table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = BF0A63226F2EEF6FDE8193BB2C443076 /* p256-nistz-table.h */; }; - 61DC9C62290B5E143EE85B99CE92F487 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C348FDF926C27AE9A1898707E2929002 /* health_check.upbdefs.h */; }; - 61E1930BF6102CF44904D82AE87303DF /* errno.c in Sources */ = {isa = PBXBuildFile; fileRef = A21595FCC0F8B44453EA5B11553559D6 /* errno.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 61E51014CF5BBA56DBA987805117987B /* cordz_info.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3C3CDB91F03FB87B2C8199310168F77C /* cordz_info.h */; }; - 61EA3A489EA32B98C550FE8B2920352F /* sync_generic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F45E26C50A9FD4ACED815ADDADA73073 /* sync_generic.h */; }; - 61FAAB2FDD6FA1D456B9D712D594B699 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C73CB90FDF89359C038EF121CFAD40E2 /* resource.upbdefs.h */; }; - 61FB0BE11BD11A93912467B5473BB7AE /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 36028D163EA6A9DF9893EE590AF0D49C /* server_info.upbdefs.h */; }; - 61FDB002F9745AF59817AB77925F062F /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4808E726E7B9346CD51257A2C1A03F /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62051EB337C9BD982D66A03EEB1A8168 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB235502D6D11BC502CEBF7FF8A457D /* GTMSessionFetcherService.m */; }; - 62080D86140E43A87C59138D0FD929F7 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C9B32D1586709778B640CDE8222CB5CF /* ev_poll_posix.h */; }; - 622181547D5673A231D01DD2E61B3BE0 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = F7935E212CFCAB7A2FC4C8E3AD32CAEB /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6222E4971D073A9C2E7BE63231365A5D /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBA78E7BBA41FF14F1C283F81DDA89C9 /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 622B3235609D7844951D52D3D3CF6B72 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 84C8184A0C5821D982EBF4C70632BB29 /* strdup2.h */; }; - 6235C11D657E5A50D1E0CA310A7B167A /* crc_memcpy.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 151FA806C4E1198323EF9248429168F8 /* crc_memcpy.h */; }; - 62386BE429F2F9DF006B940E151E8C3C /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C24B56C810848E6A9C295D018754D8AA /* promise_based_filter.h */; }; - 623DBF23E22D000F8F8B3366E278F21E /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 36E4AB9CD3F3979829C60C440268D678 /* migrate.upbdefs.h */; }; - 623E6AF51A23BEE43E97246586B50E20 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2382AD08504589A424FC98C8E7B57DAF /* xds_route_config.h */; }; - 624835A4BB50620B3DB316DE70632500 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C941B7124304D06FBF53B4DCE656DAF /* call.h */; }; - 624B2C4BF2A81FE0F3F41DE7672F9A6E /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 0910C9806A29211A8C1FA34E81BE12C3 /* tsi_error.h */; }; - 625E2F26B14ACE01B66DAB7573F8C646 /* directory_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 57ADE961A9D3C60F438B92C935ED87F7 /* directory_reader.h */; }; - 6286E69652DA8A711A3DE01F9A200B2D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EC0058C7B90C486E26542577A691BD /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 62888320C4683ED1B8C638AAC740C977 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = E3ECDC138F660C39B0B13D0C5BF85E6F /* local_security_connector.h */; }; - 6288E3A326822ED5F44C1C90199F97E4 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F12158875D197C9FE823EA0623FA59A /* extension.upbdefs.h */; }; - 628FAC5CCFF24F63B98B1EC8C09EE2A1 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E98C544A99CD376A1577D7D62D8FDF /* sync_custom.h */; }; - 629F74E2DE3B46B9DE1AAA1B645097C6 /* message_reserved_range.c in Sources */ = {isa = PBXBuildFile; fileRef = 307EACDCF4CA3C5C4D7ED7000886969A /* message_reserved_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62AAC724998D86362F210EAEAFA08671 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E78A66CE047D30527C3E4263485269F /* sync_stream.h */; }; - 62BA0C80057048108B5067AA391F9282 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CCAA9072A6DB57F64579C4EC44E2AB9 /* xds_channel_args.h */; }; - 62BC5EDBEE6B81E9452A91ACED035D31 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F61BEEE0A8C8DAE414A6E35EF80857 /* http_inputs.upb.h */; }; - 62BF4BEAD97E6B50E964AA0C1EB2182B /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92A5EA8DC75069CDAE9D21E1C861D408 /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 62C01089EDC87AE8E61D7FC4C932CB5B /* type_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8A082963AFB387C13673FE90E6C69D06 /* type_list.h */; }; - 62C75F6B85CC9F389ECF737E34317355 /* thread_count.cc in Sources */ = {isa = PBXBuildFile; fileRef = A708866792FB843C0F5BDC7E0F1289FD /* thread_count.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62C84EFA23848A4274F2CD2350F9E228 /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 052EB6FF93A7BE89C30E265237EA3E88 /* polling_entity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62D16A10271463FCF3E8CAC3F03D7EB5 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBEC4775CCF9204F38641A35EDEE1F0 /* utils.h */; }; - 62D2989459A26B9CE5EA8EC15266661E /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C2E2BCCFA2B7BCB1FCA78A5DD204A9F0 /* stacktrace_emscripten-inl.inc */; }; - 62D50E222E9AEF5E7FD5ECCF1D446FCF /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B9F2C90A1C8D2544885FCDDD5A9E983 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 62D99A55311534FDF93D006E728EEDC1 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1881928922A74D3CB71A794A862383A5 /* socket_utils_posix.h */; }; - 62E3E85F478240DF4FD5415E43FF4DB5 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 05A1949D89E9D3DE0FC77F6929238DE0 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 62EA77EEAF203D92176E689414E3AAFF /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 150287BAB29B0926F1C38DB737A7507B /* versioning.upb.h */; }; - 62ECF723784DFE4A8E361326116EED0F /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FAF773B18E6E487046FD872DC5044247 /* proxy_protocol.upb.h */; }; - 62F0014DEDFFA41893FFAEEF29E883CF /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38E62FCF4C81944CB64D200947A6A633 /* dualstack_socket_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62F5353D58D31AB48C3CC329F527F391 /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B56440151F2A54C9D777EEF4030376 /* security.upb_minitable.h */; }; - 62F8733BCC43C466B5C996473F0547DA /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8BBC283693E7D65C7BF998AC8BC5411D /* posix_engine_listener_utils.h */; }; - 630F62ECCE015C7B9AE2F9315814F0C1 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D8282DCD09D8FC58C61C2DBB43BF2F /* grpclb_balancer_addresses.h */; }; - 631675DF053AD3E95199E9E64D5F2882 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E70296D3D8A6B35D69E50D2FFBCDF34B /* sorted_pack.h */; }; - 6326B8D624F0E4A013B8CC620791A43D /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F27CE6B17789B9906604A2313469DB46 /* accesslog.upbdefs.h */; }; - 6328644741490E736F686FC1887C63BA /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5F7243AE4E43C58A532B75CC26791E /* value.upbdefs.h */; }; - 6329790921BE54370A3663643DE2C501 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 941C2D84670D0815466CAF7CD7A12221 /* http_tracer.upb.h */; }; - 632A5C1154E049B624B4E52E699BAAB4 /* call_spine.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A166A9CE67297B90D86C71A4A6A3CE79 /* call_spine.h */; }; - 6337BC55370FEAD21C20A0C14EAAF4E2 /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = DC832F91EF1566B9F7E45C1CA9C23731 /* any_invocable.h */; }; - 634889EE7AFCAAD285BB24CC0F04C9A4 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4717B22701E5176D2540877A70CB81 /* ssl_types.h */; }; - 6349AD2FE08D8E78594D2076C51A525B /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = B0108297D325CA8348D69D878DCF02EB /* stats_data.h */; }; - 634CB905B6EABE0C4323434397433C47 /* call_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E3EC87106CB5C604A985518665201B9 /* call_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 63567E3AC9B00D5C1131A3E3ECDE7C28 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F6D782C4787A708D1AA3C1246C4BDB /* discrete_distribution.h */; }; - 635F611CF922A5F0D24D78DC42261E80 /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D760DB2E2C5067691A3BD9ED4573139C /* lightstep.upb_minitable.h */; }; - 6373D2DFC5AA3FFC329F03B092C1274A /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 39995D44F97EA9746E5346D6BF637910 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 637794F2514B958102DAEBBE444679AE /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD69A21784C4ED429F86EA763023B04 /* ssl_credentials.h */; }; - 637FE915C347647E92241C90036B0B26 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D72D9209BC861FBA09B6E42F157152A /* http.upb_minitable.h */; }; - 6384909C549B4D61F2BA1DA7FC42080F /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5FC482D074D516682182045CE37573 /* certs.upbdefs.h */; }; - 638FDD77EC436CA7176759BC15D19716 /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A0BE642591A0C9E5FFABF605CEFC1C7 /* load_balancer.upb.h */; }; - 6393EFEF96FAF790CB7595C193FEB6F3 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D11A1286149543428F53EF885C73B81D /* checked.upb.h */; }; - 63A4C02C6F3A62F3C8E2767466F751CC /* commandlineflag.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 0A313E554C8B7485851EB29B888EB20B /* commandlineflag.h */; }; - 63C1C175A8EC335AF8734D0CEFC2139B /* thd_id.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 190C788D1A98C0060C56F7F820C389FD /* thd_id.h */; }; - 63C58902EE9D8E0DDBCD677187135103 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 91133CAAAAA344D89216D7F199D3EF87 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 63D0C58B413117A9F2163F47DD8D6BBA /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB1F76E85898897D7D58DEC510A80A6 /* discovery.upbdefs.h */; }; - 63DBC12EBEBA267B8A68CA9AD663BB62 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E3E908D3F5BE15DE2B75D64E186266B9 /* http_status.upbdefs.h */; }; - 63F11487AF8C90CDB35618B25C62C9FB /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = BFE58016C7653BCE59599949EF685280 /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 641228E8676228077B3DACCCA8CDE9CE /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = AEEC058B5C99283526322F770386C56A /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 641BAB58170590E8691D51DB741A2AD3 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 216518456E8A882E5358AFE0C6AA1062 /* oob_backend_metric.h */; }; - 641C89F4EEDE05109DA48859EE852C23 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CCE29DAB5B83174F619BBA3204D505 /* load_file.h */; }; - 641E3A3E06E27CA0AEED8785502CE51D /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4863CAD719A4359A2ADC342E14049B0E /* aws_external_account_credentials.h */; }; - 6439700E5A4EE8F58032036C1D40E078 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = CFD799E503F72BE0729177C88CE584CD /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 643A7AFFB7AEB70B2B9B7E0926055023 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582986E84C5875E53FECDF2ECFC18C8E /* RetryPolicy.swift */; }; - 6444BDE6240C72EAA53232D0703E0EAA /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EFF9BCC559813987D6FFC288FBFE6918 /* filter_state.upb.h */; }; - 644F818F2903C5CCEC7C5A86F4ABAC2C /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = DB64E6D145FA402BB4CB5A31789ECDD2 /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6462D28B8D6AC657B7AC339E924710B7 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 45EAA12ECEB4647B29DE35F4F15A61CF /* is_boringssl.h */; }; - 6464382825CCBB1400B0E8E3DDB73AEC /* json_writer.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = E6A60726A577D8F82B8E2F38F13E8A22 /* json_writer.h */; }; - 6472BE8E44D5DC94EC8291C4710D1FE9 /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 49A3AC4534F22DD112DBC7FEA096D37B /* path.upb_minitable.h */; }; - 64738E87D75DDFFC6E98FBDBFCBD17C1 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F50FF556B755B7A4C72D38ED8314CB18 /* dynamic_ot.upb_minitable.h */; }; - 648429F8EDAA7ECBB18F977862DD2D2F /* atm.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = BD1519EF86831A91D3B3541C86707DA6 /* atm.h */; }; - 648CAD50CFA7F0DBC0DBFA6EAE6AB746 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 61C4AC591D69D2E09C4C841360833D46 /* socket_mutator.h */; }; - 648CFEF87E94A945CAA79BEB661971BE /* slice_type.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3290C1CE41F22A04734E0A14DC5321 /* slice_type.h */; }; - 648F0BD647272C94F476A934BDE3D4FD /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C35C2AA702A2DF483E0F26B2F1D36C3 /* endpoint_cfstream.h */; }; - 648F34ED0A6BFD13941715E2D17903AE /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB3AF1AE538FA86AED41AC853B3E331 /* jwt_credentials.h */; }; - 649180E78EA70BDD0308DF86FDAFF8D8 /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 68977D4FEEFC97EA172DAC24E9ED3176 /* secure_credentials.h */; }; - 649B5C46566D4E7026C54C09C6884EB9 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACE7D7EE5380B0CE7E7A4145AE9F835 /* message.h */; }; - 649D4FC9242589DC0052A8DE6272D264 /* randen.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6F6C575B2EFEC28EBC10C21536D60913 /* randen.h */; }; - 64A0940A650C258807E833D8C56E1329 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = F178DCFC0057BDCA337351C2DCC0BA22 /* grpc_tls_certificate_provider.h */; }; - 64A40D93AFDEB1CA8BF300EE703E72B1 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 6D10A781C455DC429755686E70EBDDBA /* wrappers.upbdefs.h */; }; - 64A7B832DC42B610089499ECBD5F0068 /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F4B94D643F2CE97E6D44E4BBDD5371B /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 64A941B0D318C62D2C5D6DF910DB63DD /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24ECEA693EF9B3340975CF965BB0E60B /* xds_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 64B3ECB02246635CB50A901E7F3F15D3 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 635AC529B7712677600C18664502966B /* channel_trace.h */; }; - 64C350AF4FC0A0F9913F9B5EDEE1AD25 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 9965819348BECCC8796F16244D88A007 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64C499C40D6154AF7B67A34A68A878EF /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B81D476BA254F9B6BA385FB4EEB8EFD6 /* url_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 64C8E9F1B440FE59ECBBBEDD3075ABE5 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 07309D413B3E56407FA20F78F0F8EA71 /* dns_service_resolver.h */; }; - 64C9B0FCAD5B8FDEFE47229C06634923 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4998E9C6B005849519D17619CF5DA05E /* matcher.upbdefs.h */; }; - 64CA121A697A663A43F9F8E54BE1140E /* address.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EF549E857D33F1BC3659E1353006A6E9 /* address.upb_minitable.h */; }; - 64D24457C4F0E378EAC52ED9B105BE6B /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB2B3FFC2ADA18DEE3A9DD9041E3F7A /* FIRCLSFABNetworkClient.m */; }; - 64E1F262870E0F6D1210A4D0F76428EB /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D489ECA0805BF5012D5FEA74519D8BD /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 64E394EDF7622973A01404DB331A4514 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD0FCBEC62FFAAFE2C62AC42F88A39A /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64EF05BF4E4887B91DC1A52D9B0572A3 /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0B7CA02DFBFA6DB00559DD9459B08E /* crypto.h */; }; - 64F1E160B49680DEA84B57A0760BC764 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = B53A1D64F3396C7423A80824D6A841BB /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 64F508DAABD37A2542A76DA231DC8B52 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F714B9493145A81FED6D9058D14C92 /* map.h */; }; - 64FA33F9A8C481A0E018AD27996F5842 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3B0465EB4AD0139CE149C90B77EE9D8 /* datadog.upb_minitable.h */; }; - 64FAD6660B018409E23DC1981FF8007F /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CD2D8617212F8049BBF3AF6FB143DA1D /* regex.upbdefs.h */; }; - 64FC461CB5C4513C3FCC0C76F95007BC /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E851D8F9C5AF90AA68534DA5E7C63B05 /* ratelimit_strategy.upbdefs.h */; }; - 64FD3560FB457C08D8AD499BBA4F55FE /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 66924F27DC7368965E312F459D2F0CD2 /* memutil.h */; }; - 64FEDBBBB80EB96DADAAA8E68B546A21 /* altscontext.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B7F7C42A756EB02970367E022E573296 /* altscontext.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 650540FB3BE50A61B447AFF4A4BE1D93 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E60D1804B5820D7CC87945E3D38D60 /* grpc_tls_credentials_options.h */; }; - 650C9A00B5DC1BAFE81FBD7CCCDB7001 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 101A67AFBAA99A5626FFE6E69F491C95 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651585FC1235804ADEDBDF79A07F2E10 /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9B0B69A39502F56DA00442D60175D9F /* alts_record_protocol_crypter_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 651B7518318C646C77681279D53569FB /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 51DB119CB658797BA2A2327D1317896F /* work_serializer.h */; }; - 652761F9FADA1307BCFE30282BF72A99 /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 296ECCF5CF73F4BD97E8D045D16BD9C4 /* certs.upb_minitable.h */; }; - 652AA695D28E2A299D6B5E9025E54819 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E293D596DD9BFABD0A4A16909060067E /* range.upb.h */; }; - 65310320390AFBBF0A8C60CD5D1DA319 /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B191E4358B6A64E620A24D36020B975 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 653FBB746F1293BBCF3166C77CF6282E /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8DC2C376952090A2EB3BF3B33C5F1F12 /* metadata.upbdefs.h */; }; - 6549DA770660F57B936EC81144D730E8 /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D54507454E4AB8DA1C5F04257DF4D29 /* listener_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6555653EB52C1F6AAF078A93FF5658D2 /* arena.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = C8496FCB62F80ECA26094B1A49A54E69 /* arena.h */; }; - 655689782980DE384F7D970157DE50A0 /* stateful_session.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C0EAD7B32DA88EB518D791BDF40B1708 /* stateful_session.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 656556C82027429094A3A7F2697284EE /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A647D9FEBBD5B09EDE48EF529739692C /* zipkin.upb.h */; }; - 65691A660139AF0E86C57C09844776F0 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CA568AB123F0948CFECD5CFCDCE3EB /* async_generic_service.h */; }; - 6569717DA80EEAEC9EC28200C3E2FFC0 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03834C961CBF10B3851B6FAD129AE156 /* connectivity_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 656CF06E5DA10F83A93534BFE273191E /* join_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 505BCD1BF7D4B69DF22FC71DBC8C1B81 /* join_state.h */; }; - 657200239BE1F9737A7F7B3A35057F77 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7221365584DFDD9C62C11EEFBCCC71DE /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 65862F2811320EEC4BB8A6A252059769 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 404F39AD5C3233120802788A0312B689 /* server.h */; }; - 65863B39D14AE7741112EC3DA1C61BEA /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E0E963F0AD04D86E66D760FBFEF21F /* Heartbeat.swift */; }; - 659591FB2E63F3266A0138FE0222B699 /* accessors.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = B0C82587757B393931773699FB1C4BF3 /* accessors.h */; }; - 6597ADFADC8745C7C1843CCB78457D7A /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AF30BF0506F8BE275D747FFBD6FEC0 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 65A2FF1FEAF95BBFFE59CA930FD24ABF /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92C5FF9F2B15DA046552770EA5A24700 /* cookie.upb_minitable.h */; }; - 65B11235A5A4E825CEC10C90D731E519 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 011D2D4DDCA3019C20F784784CCFA356 /* traits.h */; }; - 65B3331977AA9BA1D260482B49ECA878 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 812F668A3839650D61777F9ACC084439 /* GULAppEnvironmentUtil.m */; }; - 65B3A59021A3DECF6D717B2624A3A7E2 /* function_ref.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = F8E6994AF94F5484A5221765F857F72E /* function_ref.h */; }; - 65B89183ADB4EFFBCD83B1DDFA58F072 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 148D3CDDBA3D6BDCFB7E34B5483BC29B /* frame_data.h */; }; - 65C4870CBC1EE0C2502818B038294720 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 260F084485A6993326594889EEBD9D49 /* credentials.h */; }; - 65C5C28475B034BA6A08D6B16315E9F1 /* Pods-SwiftProject-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF20AAF3FF1FD9BB16366796E9261C83 /* Pods-SwiftProject-dummy.m */; }; - 65D6F9ADA069C1C171C967826D61858B /* sem_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 11B89B6FB3D51204C9D6C4FF1EA5EFC4 /* sem_waiter.h */; }; - 65DB7E86D8AAEEF76C864D7E2050FC5F /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = C61ABA763E3281249AF07800391747AC /* security_connector.h */; }; - 65E51E8A69B45550339B7F9892C0D180 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D1D48D92D6F04BFA99B17A9EAA6EDC8 /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 65E549956782C6E869A20FA7349973F7 /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E45E5665FF6AE072FD4E1F8CF4E524EE /* sleep.h */; }; - 65E7EA8AB85CA8B759034C4898B9EA8A /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 6380DE7654F38F02FA7B0B8AFEAA1CCC /* loop.h */; }; - 65F84DB7E847D3528C76C3A0691A7E68 /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CB24C115534668BCCF5169FD46967B3 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 65FCB38A0BAE9FC7548FF3280463118C /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DAB0D10357AC0467943847FCA16B69 /* retry_filter.h */; }; - 66032DC46A86F68E9DE5A93D967E6586 /* str_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1175799C832D620404D7D519750107 /* str_table.h */; }; - 6607FEBE6B2C5212AC989B79F3BB5C1D /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB8D853612A0DB63DD4CD996E83FFE9 /* ext_dat.h */; }; - 66109362CE0EFF45254D6013F9DAD6AF /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 79C011F7488B621868412F0C9D5BC605 /* ssl_utils.h */; }; - 66109644FC4845C3D12C76C6B308EECD /* internal.h in Copy crypto/hrss Private Headers */ = {isa = PBXBuildFile; fileRef = 6D059841F5C4BD6EE2037DEEF318DA95 /* internal.h */; }; - 661C1EC9E8C2CEA84DB5BAECD6629081 /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A28D2B916BA8AC8431B477AFC512016 /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 661F272A47F819FA76F48BCD755D7FC1 /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 263FF972B1AC579DA706252E41529D20 /* pick_first.upb_minitable.h */; }; - 661FA226897DEFDEB306C92749CCEC26 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 106AF318A52081DC5AF3426EDBC022EE /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6627C62EE2359CEF3D1C19F477133F21 /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3110B31D5A3DBAB888115B58C6220F48 /* struct.upb_minitable.h */; }; - 66392C7DD3AC15A55B78B81E35E70DA6 /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 93A2D06FD7B37093AFC02DF7B81FB679 /* json.h */; }; - 663DEFBDDAF4411AFACA9453CCB07B84 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6229DD42A5984CD8F71C568FB4B6C3CC /* metadata.upb_minitable.h */; }; - 664104C81CA632FCC72DC74D0074B19C /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 2EC06E81214C73BC3E44BCFAC98678B2 /* alts_grpc_integrity_only_record_protocol.h */; }; - 66411B211AAEB0C4DB6491A8AED6FEAF /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 045519DF52B0019A1AEB991E05EF09A9 /* WKInterfaceImage+Kingfisher.swift */; }; - 66416C98DF588EDEF6118CB2218FDD32 /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = EF73DB7312DBCFB64C49A10B7AE96C41 /* resource.upb.h */; }; - 66492C3FD91001F9771346446AFDF79D /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6704AB21BEFC2E7EEAB65872C328BFC0 /* status.upb_minitable.h */; }; - 6663A5DA493652778B1FA72013952D6E /* internal.h in Copy crypto/keccak Private Headers */ = {isa = PBXBuildFile; fileRef = 930A48BA362DB99CACD317A972F85185 /* internal.h */; }; - 6679430DED4C5E10F5C9CAAEF4C6A27E /* city.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0E4567D5E4DBFECB694CD4210682E4DD /* city.h */; }; - 6687900E8D60F0EC8615BE42A3722DE1 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D71EC6D6861D4D1352D7B48B9400E08 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 668C2A2B82162613C63BCC55989A7F5E /* raw_hash_set.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EEBA8CD3A7488734ACD7D5CAAF109496 /* raw_hash_set.h */; }; - 668D596118E4AA5DFF4187193712A94A /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = CB75970F75C3611B83EA9301E25B7A41 /* FIRCLSMachO.m */; }; - 6694DC0A098224E3F538869B139DDBAA /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EAEE78FE5778C8E624ABC71174E3ADA /* status.upbdefs.h */; }; - 6698171D454B4DFAA3AE84B639E9BFC6 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 45EF5FDCBD21BEAFFC5381F26C50FD3B /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66A1615C44DBCDFE1D80693A3E85318A /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D72DA12CF54F264CA4F85E6677E100C /* custom_tag.upb.h */; }; - 66AEBD2A95883C72E2FC66E997F3BB80 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 043AC1612D3A652A5CA624D92A734885 /* annotations.upbdefs.h */; }; - 66B067FC6DDFBA002642C5CA0CD35C33 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4D21D691BA51E06383EE19C771D87C7 /* http_uri.upbdefs.h */; }; - 66B1427C44A2A1368644643F2BE94FE5 /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FC4644FBBC5CE0543087F33D0D9C15 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66B7A0D82E1E14693EA0BEBE187A30EF /* FIRCLSSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BC3CACC388D0FEB778FBBB52BAB3BBCD /* FIRCLSSettingsManager.m */; }; - 66C46FCABA0DD64789CF3ACDC7CFB0DA /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 731ED4AD0FF2E8B4320401606ED0E31E /* timeout_encoding.h */; }; - 66CA97DA13E2B7CED9392DF3A5C1687B /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88515C271B8E5809B9B18F66EABBE2BB /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 66CDFDD215985805ABB50B1B686B4A38 /* tcp_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F43C9EDCEEBCA50227AE6DBE493596 /* tcp_tracer.h */; }; - 66DACC392FFE180EDC59F25D756948AE /* tls_certificate_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 38AB6E692EA5619283B58A8FA146ED42 /* tls_certificate_provider.h */; }; - 66E50E16E5EE7E1B07C964E85FDFA666 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6CE50C51DFC4E46E67B47726FD6AF1FA /* xds_client_stats.h */; }; - 66E5C1567BF3E29E6380EAB63865F3D1 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 802E646131CC406B51A64D71B8FB5157 /* hpack_parser.h */; }; - 66EC86EA6E0FD2915C7A9E757012A21B /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA570878CFDB7BD59897DDB87FFB43BE /* rbac.upbdefs.h */; }; - 66ECB3B91C271FBE6769F63E768AA386 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE96647CE4EEF1306B7068A64436309 /* sync.h */; }; - 66F4ED779DA79B78EB0090170DC2150C /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 1471341DC06CF1315B8B2B8A86095713 /* extension_range.h */; }; - 66FB9E95653A4788E967ECC055207A0F /* curve25519_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 74176EFC8797E5255BD3939DA4BFD2E0 /* curve25519_64.h */; }; - 66FE379772B8FEC0E2B02F52F65FDA1A /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C6F95F8143FE8EB12B2E42D9D655B99B /* ping_rate_policy.h */; }; - 671277A86E70DD6859AC876BDB6B8E94 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7466136C0FF3925EB2E4D5B171D132D6 /* FIRCLSApplication.m */; }; - 671609FB160D18B5A898ADCB166B2377 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B02FEABF609569A6858871DDCCA7FD04 /* scoped_route.upb.h */; }; - 671B25BC3785A074583490AAE9C8C002 /* http_proxy_mapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBE688B5FF839CC127019AE65C82ABCA /* http_proxy_mapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 671C1829B892F2017DA8587C8B926E89 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = D9B5A1E5F9C53F5BA056227E3A0760F3 /* file_external_account_credentials.h */; }; - 671E72015474AF77CEA4C04609670926 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D01E604215F98B91E3B1F3DA36901F2 /* FirebaseCore-dummy.m */; }; - 6720426B9CACB22D45E40CC27C3B9933 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = AD899BD5B8237E6163479C8380F7D16A /* frame_rst_stream.h */; }; - 6721B843054BA487F9435A2CE3D566D2 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F1FF7DEC5DC52570D921B211BCF3A3 /* context.h */; }; - 67230E79D72C8F3439907A48E23C2B9B /* wots.h in Headers */ = {isa = PBXBuildFile; fileRef = 32947AF78BAF6898A12D50DCBCFBC211 /* wots.h */; }; - 672AC4AE82A75060EBD4C3833F01CAC3 /* shim.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9939A46740D7C0810FB7060C6CAA232A /* shim.h */; }; - 6730E5D7C4D74A9463F6F3C7C9BB015B /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BDC46E1663E41F98816718667F5B378E /* opencensus.upb_minitable.h */; }; - 6731F317DE0FD1CC6B7A8CF1908A8FEE /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB358824BEA75B233605626D3AA1CE3 /* hpke.h */; }; - 67373121C322FEB08195BC357E312B8C /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 1C4CF7D0BEDF032E294A57E4A442F24F /* http_server_filter.h */; }; - 6739154BF2E295DF3D2855A13D1485DC /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 72ADDC6289545ABA536D81A9196AF13B /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6743EAF3D173EC6231856A14FAAF2728 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CB4E32DF6322690B74A6C9780C71F24 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 674786AF87D2E7C2F0E2AC7E6E79A4D1 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 533696DEC7311E02C6554207E7C4B004 /* deflate.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6755AA802509CB6FD33F6CF993D32388 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BD5D0CE772AD041A5DF08A1A6B6B6C /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 675657D335310A1992B0EFDD63F977EA /* Promise+Recover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 813C0CFE1B4A9277F8D16F03F7C83DB2 /* Promise+Recover.swift */; }; - 676CAB6D5ED17A0594886B494C6A1D6B /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 323EBE9AC12186E4E0577AD20F12D0FC /* ev_poll_posix.h */; }; - 677176E6F0A4B0ECC5E136DE1C2BD52B /* abseil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D711FF2F1BF981B416F4C6D9BEEEF24 /* abseil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 677461B17268FABAA53B9A7AE6A63EFA /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E95DFE311A1C04AA135F9DF97050768C /* clusters.upb.h */; }; - 6776464AE114F9894718A8137CC505F2 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5601741ECAB00B6C03B9D59B2A5698D9 /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 677869FC0C95F5F87A6EBC2C4BAF6CF1 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DCA865EC9B6BA254118E99B227C0CE /* extension.upb.h */; }; - 677E1B988FD7F53AA3FB29F9BBE0B7F0 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 6493C8FB704DB851C08D93A635ED0B36 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6781427A595D417710585EB9E0747CC9 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 196E301BA569EA301081B81CED1FDBF0 /* any.upb.h */; }; - 6781F89E60F0D894E447B4F1D3E7F35B /* pick_first.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FA6EA95FF44E5D9A68FD8F1697549BF /* pick_first.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6782BE2ACF7C810388BE84DEEBD60991 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D921424096C898F7B9E464E9EE1593C /* http_tracer.upbdefs.h */; }; - 679190FFB9C1E7D820394B7B669D56E9 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = E809C3B836CC6FC3406D1FBDC7024CF5 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 6794E59179C6B447D7EE066712F13D3E /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = FD24DF6EC143779410BE4E8448F1EF65 /* table_builder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6797448377DE95CEF858C2EB5DC33D8F /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45E355D4EA881EEA6DC29552D2FDE4A3 /* bdp_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 67B10FEAA3B7E5387D20E76B1085E94D /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02EFF969145AC82D79732D4CA8F322BF /* URLSessionConfiguration+Alamofire.swift */; }; - 67B440890E567959C3839CF33B0D795F /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3887A3EFEACA3D434B84BDBFD2840333 /* service.upb_minitable.h */; }; - 67BAF6D3C6D5168D64717A0E8A0890C0 /* optional.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 69E7A00553447D75B5F53F06567D3621 /* optional.h */; }; - 67C25EB219B6737E0E184AF4E837B024 /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0AF987CCE5DF3B9E77B95A2CC9F8190A /* status_code_input.upb_minitable.h */; }; - 67C50E99EABD0E1EC7E9084F13F7550B /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8BB9281190DA17390FDD4317F0297108 /* status_conversion.h */; }; - 67D855B84E4DB5E0A7071665209115C3 /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 316825C21B3507471F180F05301DF02A /* skywalking.upb_minitable.h */; }; - 67DB0040A6CE2D4B7CC6F9F340ACE66C /* options.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = DB34A32D7894610C2E780D1838B4E797 /* options.h */; }; - 67DD18B4CFED08BFE99CEC5E6573B8C2 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 655EAFF8532D772E7ED748CE96E0E0B2 /* slice.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 67E28BB77FF980AACC83F58826C8333C /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 190C788D1A98C0060C56F7F820C389FD /* thd_id.h */; }; - 67EE73B0752D121193D488BEB0C4DF4A /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 422050A9B8FC3DD6BBC1071002702FCD /* metrics.upb.h */; }; - 67F18B54E93B83A51A70A4F9B7F19653 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B69505FABDCC555D6009945F12735ECF /* accesslog.upbdefs.h */; }; - 67F4F16679CE0D5B3570949EBD38B7E7 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 26112CD5FD64DCFB2013B39A956FA0FE /* alts_crypter.h */; }; - 67F85E30417BE2B9C2FAB3E37515FA05 /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 90F528CE0EAA9E192F439FBA6905EFBD /* transport_security.h */; }; - 67FA6374BF3AE8155348C88ED87F5988 /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = B958294CBA68C5295BC2E314779BE8FA /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 67FD13319A8EA2AC2CA404EED1B67E34 /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D537565ED91F073EDA2DAECC19D5956 /* def_pool.h */; }; - 6800567DBBD9DD6D90B4AA05CC1B6BB5 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEBBB9D2B980BF47E00221740634DC8 /* iomgr_internal.h */; }; - 6802375FB6A5A33CC1FBE7639A306D8D /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4C28296BD51C5EA60D61560B27D21D3 /* overload.upb_minitable.h */; }; - 680290768CCE8B4E3C21D66E2AC2920B /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 566A1EE22B77DB78AB6118992654FACE /* clusters.upbdefs.h */; }; - 6805EE07EE7C72663512637FAAC751C0 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFCDE7B743786D0F754033372BC97B7 /* unscaledcycleclock.h */; }; - 6806B00A2A7EAD0660F9AD268A72D9B4 /* lrs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C23D041B517F921790EB0C9CAD4BED7F /* lrs.upb_minitable.h */; }; - 680893739244C2C15CAD6D0F36EBF481 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 3802A2990F2ED5B1593DC3DA11934C29 /* FIRPhoneAuthCredential.m */; }; - 6809BE9C4D01FC538B1A9118BE75BEA8 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = DFE149692A91C8CC5A0E81BEB7221484 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6810645BA4545116EC5106184045AC3B /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC2ABAA39AA35F06F8BC0859882F8D8D /* http_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6810C9D3166524C47B54B4540B3C33D6 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 451D2078F9E634EAD58436F1A55BDAC9 /* resource.upb.h */; }; - 68119FCE93C544A1F67AE23BFE027F09 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 669BFC0BDC51A3E8373E62004EC6D077 /* resolver.upb.h */; }; - 681372760C3942F02288C9DFE086091B /* ssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 70C516ED54B82492442B58A8B450F67F /* ssl.h */; }; - 68137E8A81D4C3A4C5BEE4CCC9603B8A /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0186E1E0C8151BBDF067A8C403230824 /* alts_seal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68262093D6E032BB60BF8DD3C8948BB5 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 89E95E4E3172E1D47B39604FEDB90304 /* security.upb.h */; }; - 6826F00CDBBC1F3296D45E1F0F70C4D9 /* ServerTimestamp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 666D51C7F3F97850D0AA6E1DA1DAF4E8 /* ServerTimestamp.swift */; }; - 68333144AFAE53A1C79963C5B1F9EF7E /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBB5E7F110964667A2BC5EFA32580AB /* notification.h */; }; - 683825A7BAFF3A5016E68A1AC170AE66 /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 2371CB7E74F417F4DACB4143810FE9E6 /* atm_gcc_atomic.h */; }; - 6838D32FA41FD2ACD47527CF451F892D /* call_hook.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1F4C87B65B3F8A832019B54D04A5B442 /* call_hook.h */; }; - 683B35D68A2637A5DDCA3747355BAD8B /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B796447A38FD30A677499B2A231EBF71 /* rbac.upb.h */; }; - 6841F3F72FDB82DBB54092A6881BF90B /* p_hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 45A6C9670B67969A187F6C51F7D8811F /* p_hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 68452595258D13246B5E88A8CA43C038 /* pthread_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 555596575EA2254EC48D22553D6BAF88 /* pthread_waiter.h */; }; - 68464150D3A7E20289188C2C99539A20 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 15F27C3C371B2D0301725F8BC353B4A5 /* grpc_server_authz_filter.h */; }; - 68472ECE76A1FE9FF082C69A3C57E731 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F266A62B4CCAE841526F9D9FC5008D0 /* service_type.h */; }; - 68561D084A14855744BAC642A90DC585 /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FDA09CA3A64833DF7180C2805CA000 /* inproc_transport.h */; }; - 68681DDB0BB7C6C57A62BBF8336258F1 /* gRPC-Core-grpc in Resources */ = {isa = PBXBuildFile; fileRef = 3A6314653B568326014FEB5B7B3E6ABB /* gRPC-Core-grpc */; }; - 6868A22B7807606A8F84870E9B971B18 /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B6446551CB28B6CE354E94294B0D6F5 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 6868C7EEF84548B0C76263F6746B70D5 /* server_info.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5355726EBF4B762CBC4FE5A0CB8DE7 /* server_info.upb_minitable.h */; }; - 6878D2186F72C7E0ED0738474431CF04 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 185E5E41334B0B28D1168C0C6AF102A9 /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 687A784D55C6F83A8E145FB023434A0E /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 098FFED98E690B7546A0AF161BD0A22A /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 687C337A43804B77F799A7488096EA8A /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0DD2D60E036CF04D2768655870DD4D /* chunked_vector.h */; }; - 687FF5D6BE63156E85AB08421D751947 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D292C6288097A769A535E4E8BCA2C6 /* status.upb_minitable.h */; }; - 6880E1FE7DC14CD14C0DE09514EA4F0A /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = B8AA10F1EC870CD6DD24CD291DD7E796 /* trace.h */; }; - 6882864D69F96A13A30764069A4D0EB8 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F134D0774043FDD7D28E86875B4F58E /* sync_windows.h */; }; - 688596D476F35EB45B860F203031C1A8 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 45CAA698758924DF994C9611EFD21890 /* ref_counted.h */; }; - 68A011828F61DACF5AD28E8FB685251D /* TZAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 33780120FBAF137AEB1A05B0C30E0A4B /* TZAssetCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68A5C2AD1CB9A4FD25EFDAE5C12D9090 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2B77BFCFDDC106EE46D8B77A228756CC /* wrappers.upb_minitable.h */; }; - 68A88224CC576804C9C443523C76AB02 /* modifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B2086CC068F04B86888304FFD8C8D2 /* modifiers.h */; }; - 68AC2C51B2EC5FD0570B31519207259C /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3D4158E2C3CA6FDC336D905848CC22 /* evaluate_args.h */; }; - 68AF5CE54DF91D0EA6E1DD02432DCB0A /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77F4E18EDB38B1F801557EAE2B05163B /* Placeholder.swift */; }; - 68B1F23280406975954EAEE899B7B905 /* metrics.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FFBB4A9B3D68B820FB767743527A46ED /* metrics.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68B3E8A4ADC0BDFF502668559AA6C652 /* channel_creds_registry_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9948FC594E1388DB7FE15065F80B6FE8 /* channel_creds_registry_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68B6410BB4359763D00217AD140E0AAD /* PromisesSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC08C6E870F6F090D4ED69D9CBF7433 /* PromisesSwift-dummy.m */; }; - 68BA82847756F9CC91E63F7D67B5A809 /* legacy_inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7289CF1A4B83CE1825662F2BF813B705 /* legacy_inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68BC90080411C35096855DEB20F96ACD /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BD882540628B9FD13CF7B92737AEAAD /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 68EC982DAC129E8EE4505A252994903E /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5888E6984CA7E97FD8D4A960427015AD /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 68F008B9D4B0D60B8DF02C8577D4A9E2 /* security.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4121E920551736B0DA268F56A8BB7A91 /* security.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68F209402F415ACCC415EB8E6379ED07 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = AE4EDD599AF79A7B6FA3B5B64C2A2914 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 68F3BCCE522AFA868A639AD8F3D3A5B9 /* vsock.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C91AFE3A0DC40BEBE2F0D7BEA18359 /* vsock.h */; }; - 68FF1206450851ECD363C4F6333C46BA /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 4442F3FC3F394F063DFC75DC062FBC48 /* def_pool.h */; }; - 69043AC818D57157A22D3379B785B677 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1404266CD277BC508150DCAEB1628617 /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 690DEF5F2D5FDCE92C666185897AE941 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 854EF8402D9DF9F92E0D5FC1BC0FE28E /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69131012665C23B079E4F1096022FB26 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBE01F266AF7DADD778E7233772FFCDC /* discovery.upb_minitable.h */; }; - 691B44FB6A536B1163593FC9C485F9F3 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1272E348F9989322B0AB5CF2D3118F58 /* health.upb_minitable.h */; }; - 691BDDDDEC548F41EF77A0D572D638FA /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 540B41F89BAFA3F34B2C71EB167A0035 /* port.h */; }; - 6926455EC0E5CBB53ED5C48B77310192 /* checked.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EA08C6EAFD54216AE5387F523B3AD65B /* checked.upb_minitable.h */; }; - 693B01E68F90E798DAEA0C00A59CAEAD /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E4077F2B60ABCF7857C4DFF87BF85158 /* skywalking.upbdefs.h */; }; - 6952B2943561C9F4CA1AD4F392E3C5F8 /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 91ADBF363E9176A0D1049EF5B9B49E2C /* ssl_key_logging.h */; }; - 695859C3E765BDF67AADA34CA030185C /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 7760F0AED8E4A1112F359D99C94F2DAC /* format_request.h */; }; - 695EC46768CAEE0258D7FFC7EA69AD5D /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B3523DAD298C5E99198BBBA1A5BB21 /* huffsyms.h */; }; - 69621F8C202817A0A7A9B7E563EA3918 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = B48463E1C4B4A665F9BA36BDD1C76F03 /* retry_throttle.h */; }; - 6963168CE50DC2A1EDA01767989F2BB0 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E0BAE6145CA19ECCBB6E1975F52A0EA /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 69665E5ED5E92A65705394357C9365A5 /* string_util.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3E07A4D74882F5BD7632C96974F11E1C /* string_util.h */; }; - 696A4A0E5F59E4AD457AA0E9A480BF0E /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1254238D650F1DFC2070AAE152983E0F /* metadata.upb_minitable.h */; }; - 696BF10D44DE1F1928443ED878B98902 /* private_handle_accessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DB0CB5BA6B82ED5AC30036F6A10343 /* private_handle_accessor.h */; }; - 697363BB6F250F6BD6D210523631D95B /* ping_rate_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B95406374B98E99B8730E9491731B57 /* ping_rate_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 698444098624557D6E66DE64851DF468 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = DB98EB7456A2A85B0E880556467ED50C /* grpc_alts_credentials_options.h */; }; - 699500C3524D126D536513189C48F496 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 066B725709D49D7394CE004D0D7610D9 /* client_authority_filter.h */; }; - 69950A036CCC67D2ACEB0AD0250D7B18 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = B3775A68305B57212A7ABBF5B3A757CA /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 69B733E4E54AF3EF033BC4AEB864DF2F /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7118AE015B216550048C740A0FE31B /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69BE9A8B069480EA076749FDC1483A59 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AAAA6B30B2C693F6B35BED9862DCFE7 /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 69C54701FF4EC59D02028527A5A31480 /* ping_rate_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6413EC9272F72409AF37654B70F8A598 /* ping_rate_policy.h */; }; - 69C8D2E00F085547239EF514C13A17C5 /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = 9F85BD726190168AC84594C57B0DCBE1 /* avl.h */; }; - 69CFF33679B90B2F1A4ACF478AA035C7 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = A84D87ACB185E4ED969215DB25793F7F /* GDTCORClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69D07BBB6641693C30C1D2A3774F6721 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = E848C2C3A6DCBD45278A93130F69A68E /* GraphicsContext.swift */; }; - 69D3540FD02D46196E290B8347B0B3C6 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3F31D792AE9EF1B188F5AA953C0129 /* file_watcher_certificate_provider_factory.h */; }; - 69D93B524EE896B3BB2538545F2BFA08 /* status_code_input.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5848DBC72136B098AF0634F7894771C4 /* status_code_input.upb.h */; }; - 69DE75BA185BBAB5FDAA28321F3C849F /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C438C7908FB710F26BED066865C23720 /* ConstraintItem.swift */; }; - 69E52A8F24B78C84312EE08041219FEF /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 635C6A0C4AB4FFBB705D73E30F673700 /* socket_option.upb.h */; }; - 69E9C72B6C2A5CD104E4B7ED23840750 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1FE93E2D84E2C090B368F0B66D459EA /* stats.upbdefs.h */; }; - 69EBAA0276E355AD245A369924665D87 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D0DF0CFC870A20A08A0126180A25D531 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 69EFB3CB4C0F9B0F058160FE3FA64E75 /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1F2A0723D119B8BC097A9DE729F606C /* unicode_casefold.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 69F7484BB93A5A7BCED9685063240804 /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5D62B52B457AC027B81B893FA47C34D /* load_file.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 69FE518ED5298543E204E1509D30952A /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80043F331F698B9DDC446E5CA6D0E860 /* KF.swift */; }; - 6A088DC943B985F8CE3C846CE70D0740 /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8995D0D2266748DD2AA460E3608DA886 /* tcp_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A0B340C0AC50132037FD78CCCE9A19E /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = C474B9386670F91EE9D7CA2C907B7C57 /* sync_posix.h */; }; - 6A12A718632AD7FE2F936E191C8CF248 /* distributions.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 31DD511EA4F209439E9E6C990100DBD6 /* distributions.h */; }; - 6A1C4040F903B131A81EB12043E200E5 /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A8A5F72E6596B167AFFC27CCFAB8385 /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A29522B95EB97D62416E426066BE3A7 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC529BEECBF3B5304BBE89D6DBF52248 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A33EE292C8A6F003A92E583DE767408 /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFE6334F2D8E926E578CFC649DD375E4 /* server_config_selector_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A347A2D909F4F7B35DF42CFB9768F0F /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 250B1ECEC0805673DD6FFF1A6F1CA917 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A348C558721AE3BDD680AF5C698EF8A /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 08826C4F17DBFC87C91473CD784B7C3B /* protocol.upbdefs.h */; }; - 6A3A53D65931D519246657B2BAD9F55D /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = B066C6C9177DFDB76F552DD31627279F /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6A3D20F9ABEA1D7B567A2157EC918F7C /* trace_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B9A07F4899EE7483C7307426140DEDD8 /* trace_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A4251427E1C3D856085E9B0A738CF09 /* dns_service_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9DD31D44C2F344EFF104D1620863F2 /* dns_service_resolver.h */; }; - 6A4C6415D0FD3C54EAEB08767D788827 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 705E53EF093D33CA407FDB957E5EEFD3 /* sensitive.upb.h */; }; - 6A4C68677525A1AEDE48CE6F66FFFF72 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CB4A68B146E519DC23D54BA6872357 /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A5430DF49E3D7E3CE32580D3C03A397 /* legacy_compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 932A64C0B2A8CD8F4E17F6B89AFDF9AA /* legacy_compression_filter.h */; }; - 6A56735F63633F78880B082B988881CB /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C73A92A3D269F85B5F08B3DAF9FECABD /* xds_http_filters.h */; }; - 6A64C823A8F6212EE1615F05F703257F /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = DA76DFACC30E6BDFA99A8EB43A3314EF /* stacktrace_aarch64-inl.inc */; }; - 6A6657FDBD6CD3E5F6CD3AD7DF97019F /* load_report.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6266FF2445AD9D3DFEF35A0BAC49F605 /* load_report.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A6BB3E61798F7495064DDF81CCA9F96 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = E673933B949E473516CB380A897FBE74 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A72BBB0DCCF901DD4C13F8B306A7412 /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1B0E9CA16046304FB65868E799435E /* wrr_locality.upb.h */; }; - 6A72C586736182F435A47FA2F1D405BA /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 27B02BF9D9C2B97021E950C35D5A1452 /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6A86BABD8F6DFE5F454FD76CB7D07BD6 /* bind_front.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 3A13F4D60E2D6E3F48591294B14C9AC2 /* bind_front.h */; }; - 6A86CD744BF2DE1794871634453610A1 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = AB2DE7A3B272C5DED88BDE5B71D0FE89 /* map_gencode_util.h */; }; - 6A891EA75C0017119BB2782592A3117E /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB5FD756C0423DCEB94FA537B98CA5E /* datadog.upb.h */; }; - 6A8D0F5A7C57D7CB731AD436D2ADF4AE /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4A1837600C04A36125715A60AFA8AD /* alts_tsi_handshaker_private.h */; }; - 6A8DFD927A30F65B4E4B4A180AF94583 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = DA885DA9E66CCA8F681361E9D68CABAF /* channel_stack_builder.h */; }; - 6A901543EEB86C8323A8964D508E2237 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2EB2850CAB204464174A0459ED404E /* csds.upb.h */; }; - 6AAE21B6D946A6D07D89BAF6283DC151 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = EE27965D7FCC1A18A7E04BFD13C46706 /* executor.h */; }; - 6AC1B881BB319C89AD023A02CDC8FC3D /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 045E821EB3F90C611F67D329933C5B2A /* ConstraintLayoutGuide+Extensions.swift */; }; - 6AC33B6D3F8E0B471E2FD0104EC8B5A6 /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = B11633FDFBFB52E1505533DDD53B847D /* metadata_map.h */; }; - 6ACC51F82A241FAF31D65A11199EB08A /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF85DFCB01E03246F176424A2CDB9A1 /* alloc.h */; }; - 6ADC7A93A9136C005C465EE86A14658C /* FIRTOTPSecret+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C9C4033DF7CA9272E8E1E8A9144EC /* FIRTOTPSecret+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6ADCFCED88DA80826C5A08B35F2BDE02 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F63E02E2C8B474F0A006917F93DC6EAA /* struct.upbdefs.h */; }; - 6ADDBC23EE6AFA861118630F7953874B /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA30AC2CCC18924B5AF469C8D0A6D07 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6AE41D3D94648DAF7A7F9D03B8077D8A /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C60EBD02DC4B04EAB5A194FCD1881FD0 /* context.h */; }; - 6AEC85A68096EA4C048A6EA8306CD362 /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF7150805B91C2AE32ABCC7781745DF /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF60F852656E4290F8934B7031C7C51 /* FIRTOTPMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD2150ADA698D47F0973F06959EBA98 /* FIRTOTPMultiFactorAssertion.m */; }; - 6AFB300179873CCFDF2AC2F163CBEA53 /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF99C279CEB20A5BD019BE4599D57A3A /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6AFB82EF524AFA4468F85D7843480BCD /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3626EA67EB654F61851D5DE054DE20 /* container_memory.h */; }; - 6AFC5FDC0CE1F6CBC0E3458EEDFA6F09 /* cftype_unique_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CBCE748C627A9C3F9C7451C3F1BDE8 /* cftype_unique_ref.h */; }; - 6B0FECD429B67253060C662AC9343EC2 /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 69EA0F5CEACC77859D6DDD5BE313D641 /* status.upb.h */; }; - 6B139269F11693A42769CABB3B3BAB1B /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = D77665CC3B31C3E37ADA010FE121403E /* security.upbdefs.h */; }; - 6B13E9AC70D2CF4377B78604B9C82F90 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = AA649EB6E423897080FF675EFF8F904E /* comparator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B158ECF849438E061AFDC4062538094 /* server_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E6899D2A0E524989E8DBF863378295A6 /* server_callback.h */; }; - 6B3727424889C0E5394B80AFC580E175 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB8F11689CC32F34D2631A80E7D9D1F /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B3CBB4055EEE09E2A1AF393FFDC51A2 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D2846899A1BD87C1909395EDA20C88 /* load_report.upb.h */; }; - 6B45F64F69C34C8E168040D4F00894AD /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 4AEA57D88B45735EF573349CCD5D291D /* wrappers.upb.h */; }; - 6B4B65F00601897A7AB08818EF211AED /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 68F6D9AF88B88F97CD21D89F93542452 /* encode.h */; }; - 6B4D37E6811F956CC7C199B1C42FAB61 /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 65180895495218B189CAF4E8418A4439 /* FIRCLSUtility.m */; }; - 6B53EDE2A387063E097CF429FA8EF663 /* iostream_state_saver.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7DCC95466F74C337B00EF32C9B1DA6AB /* iostream_state_saver.h */; }; - 6B5502CACD50E5E307D5D5660EE526AB /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5E3860470DE4C6C6490631A1D6CC143 /* struct.upb_minitable.h */; }; - 6B5D57370DE7FD4C3D66A7555D38D1BE /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A236EC8D614D217C6949C6D2E3B26A62 /* common.upbdefs.h */; }; - 6B5EEB49BD6E4C6DDE5856318E3BF69E /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; }; - 6B5F6B3E383DCB43D9FE0087F21ED2A3 /* cipher.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2EB94397DCC85940A68B65CAAB2EFF6F /* cipher.h */; }; - 6B6389F4C66AE08A3CB14C1AF04DDD1D /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 32869D974334B51884EAB22C6B79C705 /* call_test_only.h */; }; - 6B642A567082F20C29F09CC2AE6609EE /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5A298A993C621814772DE0E7D32E17 /* struct.upb.h */; }; - 6B64AB4D66DB14FA75DF30935B9BEE31 /* http_proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F12F4F732B1049BCC0761E0DFB93D97E /* http_proxy_mapper.h */; }; - 6B6E618528103F8615D4CFC8B845EEC5 /* endpoint_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09111C960BD8C656DCF0997BE54C4353 /* endpoint_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B6E669DD284C50C10A7635F238F0446 /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5B6785212FECFF4C33286F2F1FF23C8C /* match.h */; }; - 6B708F6282DAC9A9F18B23CFC238C669 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11DC1D4A743AD64095781E01AB63C969 /* ssl_session_boringssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B72CF8B1DAB25CD6A3BA5174BADF3FF /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = F3033D4C7D8BADCB91EBFABAAC1A1B6C /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6B7ADDC665536BF1D68B7EF62546C938 /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 316B3FCAAE0B3AF1BFB4FAA62A1B067F /* client_side_weighted_round_robin.upb_minitable.h */; }; - 6B7F68FB1B8BDB31AB90B74979051983 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = F5376881BC616F39367790627D713123 /* channel_idle_filter.h */; }; - 6B80DDE0AE7F22A92E2A16341507A35D /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CB12A11BEFB942EEEFC5C257C6061F7 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B81668DA91A0C5CF002A2B34D4F1132 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 191F47AF36ACA071CBE778F4656CF72C /* builtins.h */; }; - 6B81C34EF305D6B479187D12C25BCAFA /* http_tracer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF0183ABC76B3DFAE0C0FBC525D8D63 /* http_tracer.upb_minitable.h */; }; - 6B84C07D098A8A4A66A4403C678AAD08 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB22920242CF386F35DCA436F248A7E5 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6B867E1DB3C9BFA74FD9225DB8A143AC /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6D02958D37D28CB2CDB697812150F3 /* xds_bootstrap.h */; }; - 6B870663F242F8F62A3B62D318CF3D1E /* grpc_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6557A6813AFBE429FE70F46B1CA7C10C /* grpc_server_authz_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B903994454D78E1942B8701FA871345 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B5C3AB40E68733A78598DE88A3B3A4 /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B96A34DB8F3C89EF1D480122F89EA11 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5D0A94981A10A14D143BDB2CC307BA7 /* ratelimit_unit.upb.h */; }; - 6BB5F3F2B6D948CF5CB2707978ADCBF7 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 1C33B9770A48F21CDCA9C1D8AEF36187 /* fake_security_connector.h */; }; - 6BB604F793635DAAC2A79D7F82C11334 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4F4087257919B714B8A742838EDA6B6F /* fault.upbdefs.h */; }; - 6BB7F64A613BF7CC1130F94F73EA03B5 /* grpc_polled_fd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 529935E520698C3988525AE65713612A /* grpc_polled_fd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BC2CD8D1B53C31321FB4A4AE400FA72 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FCA53586F7B96DED355E673A4DBEEB /* FIRSendVerificationCodeRequest.m */; }; - 6BC314CFDE2D7F0C8BDEBCEA62E71D53 /* certs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 51EA9C09FA84EF47631ED397C6C5EE92 /* certs.upb_minitable.h */; }; - 6BCD2B615CADD5D974D79CBFE3142F53 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74DD722D02411C88356D732E833A8816 /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6BD6A6695D05908524545A776D4C36B9 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD33140245D52DA29F73B931B38CC8E9 /* ImageDataProvider.swift */; }; - 6BDB0A49E6A8B3F6C10669C55DA02A48 /* FIRFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CE11EBF6E62DA39B16CC51E534720E /* FIRFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BDD180882EC6686F5DB5AC91DAD298B /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 859CD5AFE74375E715062C0922FCC293 /* alts_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BE19CE369892ECF27ACC0E8B83C4654 /* bits.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = CEDF2D65053385231C22C3423BE5B5B2 /* bits.h */; }; - 6BE531B39ABE343B01A2FC23CA13FBD7 /* TZVideoEditedPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2746078F65ED43B29B3285B802CBC5E3 /* TZVideoEditedPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BEDC92AC89885B6A6399AF987959727 /* symbolize_emscripten.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 8968F4C0557CCA747924B3DD1823D1D3 /* symbolize_emscripten.inc */; }; - 6BFD49FED4EC983EAE423C7E27F3CC69 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 307E88D360C866329865734A99EF433E /* slice.h */; }; - 6C0891A23C48C60F9D3DECCC44A67790 /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F08B4A884DC1ECFC11817BE2F332CB /* default_event_engine.h */; }; - 6C18E56A5F57E88F656DC075CA2FB758 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AA880B8C08725CF45D2AC743F040F /* xxhash.h */; }; - 6C1A4D35D73FCD1533E72CF2A9ABC77B /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 035E72673CDE20631151671BA55C298C /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 6C1EED16F5E7B9F4BA1698A5D083EC50 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21F4952CA411CCFA0607E147F1719BC0 /* FormatIndicatedCacheSerializer.swift */; }; - 6C20DB3113B68894DE086089E2CF4DF8 /* ios.c in Sources */ = {isa = PBXBuildFile; fileRef = 5125A58DCD2E83F8110EE714E7B78CD4 /* ios.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6C289766A143AA8EC3C5A48CF30CE5C9 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA2DCDDD46036A1A1838B0B9D04F8AA /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C2A2F6B208918C7B36F8DD8A17F2AB1 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF784ED2F2E10CF7E1B50E36C215568 /* resource_quota.h */; }; - 6C375EEFB1439628BA5818C941467644 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2AADA54DD3E608FF86385740D8EC63 /* field_def.h */; }; - 6C425C3CB8AC4AEEF8C420804705B9D5 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3803E9273AAA263DFEB83C3488D2CCE3 /* extension.h */; }; - 6C50AB1FA868484C1A64B9065F848E14 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAE8203212CEFA04567518E0A94F53B /* time_zone_fixed.h */; }; - 6C50C539139C0290EB7870DBD27556A4 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = F1F53F350549D32CAECBC975343828B4 /* prefilter_tree.h */; }; - 6C517DC3D7D748F4FCDC377E036C57FA /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7E96D0652A099F9302BFF7E70C912985 /* xds_audit_logger_registry.h */; }; - 6C55BCFF88F98CFD7752FED05F86D566 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC887B244F51694268AFEB3F0545D48D /* grpc_service.upbdefs.h */; }; - 6C5778FA5D3CF8795DB037E796422C31 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 1DC6F95EF8ACF3034E8F25950F339E85 /* civil_time_detail.h */; }; - 6C5DE160D3BF439460D18576DA7EAB95 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB3952EB8175A7A7945F0166F33EF2F /* upb_utils.h */; }; - 6C63008003C88211035126B3B2B8C10D /* json_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5733D582CF05AB54CF9AFA14F7771F99 /* json_reader.h */; }; - 6C6316D5F98084D441A8A733D7E72000 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8D0BA34B5FB41C659B1174F26423DDD /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C637A9BD506E89A03C11E04D0CE9902 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 5C4A1837600C04A36125715A60AFA8AD /* alts_tsi_handshaker_private.h */; }; - 6C7C9E7E91DE048AED4A5AC1DCEBF02E /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2873799BF644C9E9D973318A968F161C /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C7FE0AB90F27382A6124B97861AB264 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D17D8551F558C301B8274B2C5F1FB85 /* regex.upb.h */; }; - 6C91B0DC4370C306A1D10C37427800E2 /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = E326C6E7398A6F61A8D2E724B1E6172F /* obj_mac.h */; }; - 6C9324FB1C1997558ABE1DA2B596E426 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = D87A619620836FDA27B7DB8467B6BDC5 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C9B4F65499F0F72C05E157973D9A0C0 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56ADE3FF187A833809DC4420918D65D9 /* HeartbeatsPayload.swift */; }; - 6C9BAC5E90FF821D19721A8D4AD8C5A9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1B5EE1CEC0DD7D05828B8B7599E3784A /* cfstream_handle.h */; }; - 6C9DE2B598A0806E1C5FDAA80D8AE44E /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7CCDD42E37FC29B977649D952A5DC8F /* round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C9EFB720D2683A3DCB3170723CEDCDC /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 07426490B7BE7D6C59755D7500902C41 /* json_util.h */; }; - 6CA6890753AE95E37879ABE57E2965FD /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FCB1F0C58F51B70481B2251EBBB9B75E /* endpoint.upb.h */; }; - 6CA7C06E9F39244A607B6936A406B69A /* ossl_typ.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 88B47FE98B05DD896A5D4C02F0F2AF88 /* ossl_typ.h */; }; - 6CC0B4D320B73B217205EF9BEE1F13B0 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E8A3242FE3C9A5696BA654462C49499 /* GTMSessionFetcher.m */; }; - 6CD140FE4594BDD53A8BBD2BF6B8432B /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66D7A439EEF9452F5FFC26432FD4E2D1 /* leveldb-library-dummy.m */; }; - 6CD1FE274EE7938AB398606D0FD667B4 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BAD8EF932CEF7D33D919F12AB9DA15 /* fault.upb_minitable.h */; }; - 6CDE213C3074A5322B5EEC835E7F8BBD /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = FE8239568EE35C9D18D07B0F16148096 /* cast.h */; }; - 6CE6FFE53A197D2047C3ABDA351F54FC /* clusters.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AA010FF617600E09D21D27BA7ED3B8FE /* clusters.upb_minitable.h */; }; - 6CF1DE5977D91F5837E3CB3F9D329843 /* FIRSnapshotListenOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C188F1FC7F893BE29E808705979B0DA /* FIRSnapshotListenOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 6CF7987112ADF47B99DBBB7784DB384A /* accesslog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FA6E7A7840ECD1F95DB967FDA070F228 /* accesslog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6D099EDE97A0D4CE57A46F8C2026FCC3 /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BCACDE9C6D3F94179DE6FB8E62FD2CC9 /* tcp_socket_utils.h */; }; - 6D0B39145A64C900E3D1ADC9B638E60C /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5CE88DA66541FBB708C55C91912017C7 /* timer_generic.h */; }; - 6D0B74DF9C9E1EB791D317FEED8F142E /* config_source.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C8B7314F8B77EEB604C31EC5F3E082 /* config_source.upb_minitable.h */; }; - 6D1176783FB0AB54C101441B0400588E /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F77051EAFE649737E970C9B94FD25A9 /* ssl_session.h */; }; - 6D1264DAFFE84D382B6CE64C64CCD76E /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D61BF7976D6D1CA1581438FF62176576 /* any.upbdefs.h */; }; - 6D15A7D1240B5C71C41E665D34174173 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CD1752C2761A8AAD9EE766CA978089 /* async_generic_service.h */; }; - 6D1DE07E9EB273F35A55CA9839752E28 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = C62331A49FEF5B78C366AF4AEC34A5C4 /* frame_rst_stream.h */; }; - 6D1DF8BD88B5525D09818ED1C293108A /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 18114A7F197EBE26F17421EE306B5731 /* datadog.upbdefs.h */; }; - 6D1E33469FB8FBE812956B0076A7B28F /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8F8191E1A36940BF4383AD856E9FB4 /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D1F36C7C59EBE9241FD730C2A06557F /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F0EE1F6E9CC614324D5C3FFCC08996 /* matcher.upb.h */; }; - 6D22334B2DF7968942E2F1B7D901BBF6 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E3E645F001853F3514CC741679FCEE /* router.upbdefs.h */; }; - 6D22E5E2BCCE9249E5398B6C210AA8BF /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = A5D454BA0A1832F5609DE52C7F531235 /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6D26E1CCC01657E6EE5009E071D068C0 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ABF05FB07E97C1B83849AF556B87C859 /* file_watcher_certificate_provider_factory.h */; }; - 6D2BB0DAA91BA3ED4E5F24280673EDA6 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E234CC3BC5776A60498715C767DEC200 /* discovery.upbdefs.h */; }; - 6D308843AD789ACD07F9BA7047F86D7F /* cancel_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 89846A6FA00470A1521682B1DB026E80 /* cancel_callback.h */; }; - 6D32303646ED82095262FE13666ED832 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 896D09B879467A0E85946DE8BF04E0F6 /* random.h */; }; - 6D3ACEDA8BEE1028E24C01523F4B6D8E /* p256_64_msvc.h in Headers */ = {isa = PBXBuildFile; fileRef = 0133C914A92F7F71AD03098BFB501D40 /* p256_64_msvc.h */; }; - 6D3B0EC049C728DE95931B16F9352CA8 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD3C69E0A58DB99A9A386217EA250BD3 /* load_system_roots_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6D3F027FFA2A56F92128D0D0430CBEEE /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 099131BD6205EAB615A7671BE69045B9 /* api_listener.upb.h */; }; - 6D4118C98C64CA988E7859FD64834290 /* common_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2DBB0D09678A6F9312762C7AA0562F21 /* common_policy_traits.h */; }; - 6D4145F94A0A18586299AD40ADC3C61A /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D656C616C4CCD764DA8AB299D6F9D586 /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D51756DA508F48DBB0C59475282C9E7 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4E6A6E25D19DCBF5646D240BECC0C10 /* route.upbdefs.h */; }; - 6D53B1D15D7FC45D68302D23B0937445 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 5823AAD291779E478D23EE4ED14755E7 /* fake_security_connector.h */; }; - 6D5E344BF1F88B2CED1C45729877F503 /* TZImageCropManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F18944C7646E0157BC5B62B0F31E3CB /* TZImageCropManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D628046BA1D5762F9A205CAA431818A /* obj_dat.h in Copy crypto/obj Private Headers */ = {isa = PBXBuildFile; fileRef = 5AFDA4F2656B3C6EC2B87DF8BB5C4BEA /* obj_dat.h */; }; - 6D6A809DC712AE16614DCAEBA99F8C3D /* FIRCLSOnDemandModel.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E219CCF3C3C2C97A2B74C598B5D036 /* FIRCLSOnDemandModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D6DCBD3C59E570ED689A72E3B8A879F /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = F97BEBCEF041CDE29683E1D63BB1E217 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6D7299E260ACBD621C456A13106CA22F /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 012782C2DDE1AE0F0AEE32FEFB6D72F0 /* rbac.upb_minitable.h */; }; - 6D7DB9F741EAB760B1764B8D69C40EAE /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AE7DB7D5AB9477FBD3ED31C866BD41 /* accesslog.upbdefs.h */; }; - 6D82CAD7CD7781D58B2E319DA7DD4CDB /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 82A6BBEB072238D2059A3B2C946E7AB5 /* server_config_selector.h */; }; - 6D84F88F396A596C652F6B701E90583F /* traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 011D2D4DDCA3019C20F784784CCFA356 /* traits.h */; }; - 6D8C328B80DD4089BD0AE9A6C55AD935 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CCA151A539D16C6E4FE9A2C6D787C838 /* load_report.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6DA47D9C80D5470241F9FC3E1C664386 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB16D9C65443E00FFA55C9F9D91587A /* host_port.h */; }; - 6DA65595C190DF5F2DD59D0A3F4CA9A1 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 63C7AC786FF69F22FC18B201B0FE4B89 /* cookie.upbdefs.h */; }; - 6DADEA8C456E80109C5EFD62E15A4C37 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FF78724F347DDF3D347E42FB0B5D6C38 /* xds_routing.h */; }; - 6DAFAC1236603C9BF1901F0759F803D6 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = F189553CFEB5E36F46945F034DF86191 /* grpc_alts_credentials_options.h */; }; - 6DBBF742FFF86551FEEB5D1B88618B00 /* domain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 20122F08C97E7973EF2D680E77646A03 /* domain.upbdefs.h */; }; - 6DBD568480A3A51BCEF8B0F03D9238CC /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 36B3523DAD298C5E99198BBBA1A5BB21 /* huffsyms.h */; }; - 6DC96FE2F29AB1873113FFD1D94033E7 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B3BCFDD6AB64B8F5BE9E9D57BA3927B /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6DD18703A6FE9991661B2407DE0A1FF6 /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A47D00AA45AFBCC540977B69D819BF3 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6DF2002A0824A310AC5B922F960D1105 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FB43B964EF9E69412ED3FC3F8066DD /* ssl_credentials.h */; }; - 6DF6D7518C68199C0ACA388A12DF8545 /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = B8AD67E13087323426D2E64BE8A8894F /* poisson_distribution.h */; }; - 6DFFB1C448794BB0906FED78234E9013 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 53375033FDEE85182F93C3A94FFF3B11 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E04CBBBFF68B790DFEDB984EAA8CC39 /* extension.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A72E842C77BAD537AB856C3B72618C75 /* extension.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6E06B7C42330201E38FAB50EF766D7EB /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 07F072C3939DA3D426229A7DAFED4AAD /* no_destruct.h */; }; - 6E0AB4E509F1929D1988AC5484F06DC5 /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C645B1B3E678E1BE11792DFCD4F03D /* xds_lb_policy_registry.h */; }; - 6E0D4F56EB773949EAEC177798EF9AFF /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 436D524C2E39C8B15D9E5C17424E4F9E /* xds_channel_args.h */; }; - 6E0D97306E0991370AA17B911FB4C12E /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F03F08EC95FEFBA52A25A2640B308C /* slice.h */; }; - 6E0EB42128EA098B836E677C828569DC /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = B05FDF1E1B8ED92C92E1E2C79FC64BDB /* int128_have_intrinsic.inc */; }; - 6E11969675423D3444BB18CA1E319129 /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF5B4795B0EC0B78329045F16EF400B /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E32C7F5E0C7333749044903CA624558 /* event_poller_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = 5294276CB064C84551F162E43A41F4EE /* event_poller_posix_default.h */; }; - 6E3803BDE745AF1CF6A0018C38519C21 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5839E5AF227C100E3C429EEB10DF36AF /* event_service_config.upb.h */; }; - 6E41190E0A056E5637CC4CE2CC36CF29 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AD899BD5B8237E6163479C8380F7D16A /* frame_rst_stream.h */; }; - 6E45878431375CFF242BDE2A29070AA1 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = F86ABAD09A7E1926FDA9A202E09E62E9 /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6E467D7C855B3E66201410D9C500B35B /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E902ACA4DE0A653F0D5A82EDF158B9E8 /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6E4CD11EF26980FE11513BBA34DBD6A6 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4D62F36BE5FB76B3E249A5DABB5A80 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E5923F26325D35E5A1A8DEBBDF2652E /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0C4E2FD751FCB73851D4AAD6035425 /* regex.upb_minitable.h */; }; - 6E59B18D5C39EF89F27FC65C9CEACAE7 /* platform.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 844EDF3CD9953DF1D9CF865C687B4650 /* platform.h */; }; - 6E6E8EA37EF87F524BBCE3B7970E8B44 /* config_selector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = EF165546C5B78686C8DD7FE46A0AC3CB /* config_selector.h */; }; - 6E74A1F7AD4179DCB3BC43C4715803B6 /* cord_analysis.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = F01505A5CFF6B8D0E57A60209DCA8082 /* cord_analysis.h */; }; - 6E80E51EEC3BFA50FA77B7E75E2774DC /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 606E5C0F28DD7ECB2BBFDA894019FC9A /* context_params.upbdefs.h */; }; - 6E8F9DCF642689178364355F5E5CA0D4 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F62805561AB9B0E9709B248103F7EB /* extension.upb_minitable.h */; }; - 6EA4C66987D8DD1C0233C3B6663D3FCC /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 010E33038D703981BD9B1B3BA67113DE /* load_balancer_api.h */; }; - 6EA90705A0835FCD08337A63152C93CE /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9269680F19991C0D119C402CE16A238 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 6EAC8B6FA2D115DE708A58C601DD25E1 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0017E8C8CA197B4E10F9230416FDE1C8 /* Constraint.swift */; }; - 6EAEDD779D6036D5CF66F8B91161F43A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D059841F5C4BD6EE2037DEEF318DA95 /* internal.h */; }; - 6EB1116CE81E713B1B46D31162A4E295 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D92AAA7DFE3B92B2C91F392283AF434 /* resource.upbdefs.h */; }; - 6EB8E89DD39C7B1E4C044537B82C9B58 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DE8AB06D8B2ACF0F1A8CCE5B85DF8A /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EC4FC81E6678CA6F9306FEA272A51C6 /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 090CA4031B145C1D83FEF73AD0555C8D /* client_channel_channelz.h */; }; - 6EEC979F6FC40F0BDC7915C04D560419 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5796E2084EE002FF5A07646A2FC164EB /* slice_internal.h */; }; - 6EF14619CD4019A6F9D620802F8E8BE2 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 057AC81F3A4A3BC698221A8438A798E5 /* FIRCLSRecordHost.m */; }; - 6EF76C74B21AEF126FE876A27335B780 /* node.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CA731C76A01BF178AB413A8B02368C82 /* node.upb_minitable.h */; }; - 6F047B0B8C8906B6282471F612E610D9 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 774DDE21EC64FC87A74B343B30C61A8D /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6F06ECD49CF9F0D2E19F3D6EBDEA95B9 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2007CCC3F13365C4BDDD7CF8C2650714 /* string.upb_minitable.h */; }; - 6F0ADE6BC26588CC23D884B162AEFF6C /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D8D975E68811795DE86722ACB1EE5DE /* frame_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6F0CCAEF11EC839B76B276F1189FF04B /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F0AF43F3C29A7F4E66C9E55940BFC9 /* message_reserved_range.h */; }; - 6F0FF0D9E0133C155203C3EC55D1BB04 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 100022F75B7CE259D3DF2518920E1133 /* xds_endpoint.h */; }; - 6F1046060B253828D1388874DE67E51C /* forkable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C8ACA02EBD27AE5C9A81E7DB10FF0AD /* forkable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6F12A205B4298284378B7E5C3B347E51 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = CF9D589CF43F430D129A40F19A36C985 /* message_size_filter.h */; }; - 6F14955EC21848EFA28E3229C4CB3ADF /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2537E5E92E0F5C5E451C35E57FA32630 /* validate_metadata.h */; }; - 6F1758BE926DCC9722EDA84FC0B65B46 /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32CD955C37FBF57D6059FFAAA85C0BAC /* ip.upb_minitable.h */; }; - 6F1884071AD69D33BB127036224CEABD /* create_auth_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A9B3DDCE91DCF9B4286A8D607FDC951D /* create_auth_context.h */; }; - 6F2DB8766211BFA8689320AA8DD8594E /* completion_queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5CA2704741A71019D0A6D7F54A2FC42F /* completion_queue.h */; }; - 6F340EB23719EB6CB9344E7586B70165 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A0BE642591A0C9E5FFABF605CEFC1C7 /* load_balancer.upb.h */; }; - 6F37EE6895E434B9F9C5C1F3DBF814F2 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A3310EBEC3EB62D858EBC2873E6EC4 /* slice.h */; }; - 6F58C7915F25F92E640FA0D5B21CBAEF /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E25B04DA40FE40C6A2112939608245F5 /* grpc_authorization_engine.h */; }; - 6F5B5D6462D2B7E28DE0E91D00870CA1 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 886DC0DF1A3369931E7C1C9E3ED6CFBF /* common.upbdefs.h */; }; - 6F5C67D4C57ACDE5D808354A7953DC71 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F30192EB6DC6CD49A26525752083D5A6 /* metrics.upb.h */; }; - 6F61B3106FCEA25B79871696FB8A4D67 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D518189286E1FD58EB792D61DC5A29 /* local_credentials.h */; }; - 6F67A98374107BA05A6ED4170EDE975C /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = E32DCCF20B1B99D4E2220D9FF791B1E3 /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F74BF1C757DEF81ABA864D9EB757488 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1322C154D113DC4A53DAE550481BDC /* time_precise.h */; }; - 6F7BC5663403EAFBC8A2D5615966E5CA /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = 87DBC2AEA6118085E60E996255FF8A81 /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F7EEA0A119430F0E28F41F5AB388AE0 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 92506842AF23EF6772D8E44E3CFDC613 /* map.h */; }; - 6F7F8822A54810F9BC2DB07A08C368DB /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B72BA1334F58A99C1B4046C005847A4F /* xds_cluster.h */; }; - 6F8068A4DE11011C01CC4F55ECD81648 /* get_current_time_posix.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 40842C5ABF3BEE0E81B1D2911603415C /* get_current_time_posix.inc */; }; - 6F8459F4D76C1B48696F8FABBF135F20 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02E85A34DA39F62B392F3B789B7B1178 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6F8D3982F9997173238EC921CBBF5400 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7070E2C9FDBB1E8BFE04AA62A7DCCC /* resolver.upbdefs.h */; }; - 6FA250162E73EBC8CAD8372B8DE66EC7 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 9E410A55F6A0A19FB89541AF68D43C1F /* core_configuration.h */; }; - 6FAEC35EDCBE8A6C2F2ED676E2095538 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FAEADCDEC1A285DF5CC68A1BB55B0F91 /* regex.upbdefs.h */; }; - 6FB17AE3644D9F6CE5D0F728CC226840 /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D65384221304E2240E4FA7778BD2338 /* outlier_detection.h */; }; - 6FBCD5616506299065BE10B24F4AB1FF /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 134840C7D0D0603AAEAA49C588652098 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FC1FA9C22FF51677EB5BFACE6C0B164 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 787CD901135AE2AEA021161C134FBB25 /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 6FC28754D98E1815315A81EB256BC42B /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6093291C518985F63E4AA3711916B0E5 /* event_engine_client_channel_resolver.h */; }; - 6FC700AC7C33017810DAC243FBF52833 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A6CAAE1A2B8DADC9FF51F6FA44F56A /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FD3B77D80806F20184C99FCA34B838C /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 87262ECF8F2F02E371745C61DD88B00C /* posix_endpoint.h */; }; - 6FEFBA240D81620C7B0C191B1745D32C /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF50CED74D60DD7380C1D1479CD40E0C /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6FF262D527DF4609E53D9EA627C6C030 /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EDF2389C92719DA48C4DBB3AC7A7B60 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 53C55ACAAA3C5C86E9834481C15B7338 /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 444BC53C6275DC70121DDB72B4D4378E /* clusters.upbdefs.h */; }; + 53C762DEE4DF4F9D7EF4BC85079B745C /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 62E25574A98D381FB10154A276B5DB4C /* query_extensions.h */; }; + 53CE10CFB4D3B4759D11DCBEB26299CE /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CE76A2A732CEB0EF74ED7EDC59F909F /* alts_iovec_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 53D2840469095A14B4558CB62C6643C4 /* beta_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 411919061A39FDE6F643C6CD9F58C8F2 /* beta_distribution.h */; }; + 53DB9EB48CCC8326BE532000343DC758 /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = B9F0250DF0B976D3A4D9302CCCC0E2B5 /* GDTCORDirectorySizeTracker.m */; }; + 53E1835B864D5C64BFF17C31233657AF /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = EA0945AF7182FB4C75CE7D3EF072067E /* GDTCORFlatFileStorage+Promises.m */; }; + 53EF831EFD1EA55983D439EEF5F522FD /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FD5650B4A22607B038D53CC704F334 /* composite_credentials.h */; }; + 53F30BA65F3A0BAC7E9DA8D415645DF2 /* ip.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7EAE56867B07B9B91AE7742FA18B5E7E /* ip.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 53FEA573AC346BB150D5F39129101CA7 /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 695E53D01F54281DF30B3BCA8BE068FF /* security.upb_minitable.h */; }; + 540B8DD053BB7766B10AC5195BF813B2 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A963C250CEF0B2E1D59C8B588A1744C /* skywalking.upbdefs.h */; }; + 540E91AF8D3AAD13C2A49F29434D21E0 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 16F860F616E4B46B2D43E12AA1681714 /* status.upb_minitable.h */; }; + 54153DEE3CAC74F78D70846E951DE2E5 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FBE391FCE495F455DED1313EA65C7B6 /* health_check.upb.h */; }; + 541C4D1331188A1B8264D1E6B614221A /* path.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C544186DE2349E98EC4841306A7389 /* path.upb_minitable.h */; }; + 5424ACD9FD70ADE7F43A999B868594A4 /* utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56C59A5B6FAF23C1A814C0F25C434DA4 /* utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 54254F8D88910C38F0410965BA42855D /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = 42ECE98A8AEF56A40B7533233FBD69A5 /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 54303AA338A66A40FCDB030042A45970 /* service_config_impl.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = D1726AEC2B2496F2FEA502477C07EEBE /* service_config_impl.h */; }; + 5430C701F979F7E78A1B719113747296 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = DE93F5D9B2EFA17BD4C4C98713B2B3E4 /* health.upb_minitable.h */; }; + 543F899B0E269D539156EA697A5F8B4E /* message_def.c in Sources */ = {isa = PBXBuildFile; fileRef = A55B275B632936AB3EF5955D61B7E429 /* message_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 543FC571DF4DB66F68B5B6DFB2629739 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E6EF66EF5FA982D3DF3CC2B7D9D482FB /* path_transformation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5443C5CCA02C5B9F5B0AC36ED5D860E0 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0BD2AE59D6BF823B584232A6C61B6B21 /* endpoint_cfstream.h */; }; + 544F45FE6D85A0AC629A030980602710 /* metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DF1781741240B1A477C0960D42344F5B /* metadata.h */; }; + 54508B42166CAB015519DE195C33DB20 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4586D6A65433398DB518D148947882 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 545659B9593CC74B8AEC0DC660670474 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1E156260024F9D8DDDF2F601C10C4163 /* mutex_stats.upb.h */; }; + 5461557FF0B1AC109ECFCB46A44EEE92 /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C7B3D34D8BDFD1DB24630F2852EB011D /* pick_first.upb.h */; }; + 5465442CE7BB78A9CC43C3A7746D3D0C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA55BE29677288223BA5CE8EAAC43AA /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54834E47ED8751F80277FFB7368666EF /* inlined_vector.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F98F11CD6DA6F81B59DE28F68CC0C038 /* inlined_vector.h */; }; + 5484C183C3C25F933AEDAFADF8E4C404 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6849FC25A4AA23051C48BE5E12D0415F /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 548FA872C59C11BB3A8421ADFD1CE66E /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E8FE0817B0724EAEE03D7B28AC3A5D0A /* authority.upb.h */; }; + 54989A938F8A90742A8801A5A6651641 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 047E39653777BAD6280C4E477449330C /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54A1CB2252C165B70D6A80358151093A /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF2685CAEC151D34C43B1950454F2EE /* ssl_session.h */; }; + 54AB8CAFE968B2218D9CB8A0A13C8418 /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4652054FD4B388FF6C93ECA471B1D019 /* router.upbdefs.h */; }; + 54AFA494A651664E313B3A8EB2377A9B /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB52E35940AE5614028D4FBEFAC1366 /* call_creds_util.h */; }; + 54B4661BE2B4B5295110FB66E9D35B7E /* FIRAggregateSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C219278E4D46CD2C4A339E624FA66CC /* FIRAggregateSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54BE9F07E9E675C828409D48E177FA20 /* RemoteConfigInterop.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8C24EB003BE81E89AA229710F25CE6 /* RemoteConfigInterop.swift */; }; + 54C140CA248CB7ECF8FC72740083A50E /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A29097106400E4908968C3F14B9F0F /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54C31EF32E2A605BE27E95D587B1DAFD /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = D7104CB6BD39CEC58FCFECDB069AF2D0 /* ssl_types.h */; }; + 54CA98B255771B2F55A64FE14D876E5E /* PromisesSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 348897630008E60693542001097803EF /* PromisesSwift-dummy.m */; }; + 54CB3EC8DAD2F07249EB73DB865F0EFF /* subchannel.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B00BE153CCA246A3E52CD57084EAA180 /* subchannel.h */; }; + 54CD0021B744560C3794CB212AE6D4F9 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF14C6A42A92E6A06BDF9023BABC3809 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 54D023DE30E177E001AAC7DD862D9496 /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 499819590C0ED0C3E4C44C914DE1556A /* xds_transport.h */; }; + 54D31C4FE0B90E847833B80801134DAA /* listeners.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E174357CAC7FAF4AAEA920C78E1F839C /* listeners.upb_minitable.h */; }; + 54D4BE97CE81C7978B43E900648E4B71 /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9AD9CAF8A1F59AF398A7F41EB7748E4 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 54D5471DF5358BB038AB252D0A829FE2 /* SessionCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0006D9BB0FB6C8C61CC62E5F7AF7E16 /* SessionCoordinator.swift */; }; + 54E58C41499EDB4AFB712C9D1515CBF9 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = E66397D7D3DE9F3E6880E36B2E7CC6D3 /* xds_channel_args.h */; }; + 54E85449FBA8FCE8611E54A0215470EB /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C3D5D87CA13A7B195FACE285E7CBC3A /* semantic_version.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 54E8C4E445D9A93F6B116C7A94D366E8 /* fault.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 67228D32B83586BE48E7C6F5A02B1E94 /* fault.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 54ED61E0625AB694E7E0B949D8DE2788 /* FBSDKButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 829AE65C806C638B7F2FE4278B264CAF /* FBSDKButton.m */; }; + 54F220F763893268B329861B3DD75899 /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 593A7B77D1E256219EEB019E6E03359E /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 54F3DA9116ABFACBB21A4B3476723148 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B28B7C2A922FAC52CB6DF71CC5A87C /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54FA805572BF498350F75EDD8B1D4CAF /* round_trip.c in Sources */ = {isa = PBXBuildFile; fileRef = F5E61C8ECC259A78CFA19B7BD0574679 /* round_trip.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 55017670805A3381DED0E10DD4163AE7 /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = F1002A7416C1B3E04BC7D511D23113E6 /* iocp.h */; }; + 550DFCBEA8EA54784200AD734B279139 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C94692E649EE9DB84264235FB14AEB1B /* security.upb.h */; }; + 55114B19874770E7F223F34FA8916F25 /* ip.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF1EE535D74D7D05D1AEF4493DFB6A5 /* ip.upbdefs.h */; }; + 551CC4ED1BBF8158B0E6332F4EC8219E /* load_reporting.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8D53971E59C9827B377E343B2D278FEA /* load_reporting.h */; }; + 5534CC6A146EB4A1FC64B2E10F81F07D /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0CE423C48362EDEB29706762F89093 /* uri_parser.h */; }; + 555185A45F1E8D195E902AEFA917377F /* spinlock_wait.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7FDC55353B8C70BC1E35BA2AE7CB36F0 /* spinlock_wait.h */; }; + 5554E5D771E47943C25CFB71FB927476 /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D562B058336337EC7FEB673D847574C7 /* ip.upb_minitable.h */; }; + 5557DAE5BCBA161F805284C52F885A27 /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = F10FDA58A5FE782385016070A2DE742D /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 556B7C19F52CD990B8673A2E451A182B /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D4DABD733F73E62877959F7BE5000C2 /* url_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 556F84C945952CA04F3CBF96B1568184 /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = B3201C06F076810E26EE8DFE98351B62 /* identity.h */; }; + 5574092236DF919D4705FBB120644422 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = E80F822949527FAA4D66E10B4DED29F5 /* Promise.swift */; }; + 5574FC081DB0EC2E2E6FA1ADC547B560 /* inffixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 170FD0D12532D746D56BC7A40DFD5D51 /* inffixed.h */; }; + 5577DB277A046CBD31CE99AAAE62D21B /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCD1105B73D9F1D3F16D1406297AC9A /* config_dump_shared.upbdefs.h */; }; + 55825CA61713E007BC0842776047D3B0 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C787CAE7159577BFD3BB4D8CB6B634C1 /* http_uri.upb.h */; }; + 5588273297BAAACFE13CB5F4F31BE298 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = ED68D9B6A922879EB03E4EAC8DB31085 /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 558C760A12E2C1AF6E054FC82DDAFBB1 /* service_config_impl.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 0882CA30A1CD1E9A42D384100A42E482 /* service_config_impl.h */; }; + 558D97B95315216F10F26BDC9655AC16 /* substitution_format_string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D2F8123EE51CE42A93569C3A8F2D14E /* substitution_format_string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 55948301C7592BF929DA17CE767F50ED /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DD8C7415CE5E467B12AE81DB4CCAA2D /* CoreTelephony.framework */; }; + 55A6A171B616A43A3E851F819DC62A4D /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5AD5C746ED61C4B1F9D134B96F0AEB0 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 55ADF3E524CC1ED3A3374B670C9CDC5B /* stringify_sink.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DA4656ABD065B24B858811D769722B /* stringify_sink.h */; }; + 55AE3B4EE42D5CDA27B1AEB68DA13582 /* flat_hash_map.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 8F86A68B4E72FBDC1F4098273C1EECAE /* flat_hash_map.h */; }; + 55B1309B7C3769BCF005E542FD6A3E83 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 41F3F4AADCF059985FA5D1D6D9E7FB21 /* alts_security_connector.h */; }; + 55B31AD0786EB611B95474DED527AB70 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE162FD174E3E797DEC0AFF3D04230 /* p256_table.h */; }; + 55BD45ABDC14E1FC57F53B024AC65675 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C874AB92CAF95AEA9A407F5F7AC5BB3 /* ads.upbdefs.h */; }; + 55C8F11F3B2907340B510FEA084CFF0E /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B513D80E548022BC665B9EF23601EEC7 /* try_seq.h */; }; + 55C99A6058F934A91122282114769A9A /* dynamic_ot.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C18E7C0E11862D0DE6F443724525B37 /* dynamic_ot.upb_minitable.h */; }; + 55D4F60BFD37E428A7F62683CA7BCE4D /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCF0205CACF899F8B29383D0C677A168 /* matcher.upbdefs.h */; }; + 55D58FC51D13D17107EA3C57E26A8A96 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ECBB7CCFD908A2B73ED1073B72493DD4 /* lockfree_event.h */; }; + 55E51F45F1E157D3B4942BA7252C277E /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = A142A3D7BFF765357F86B1302DF07E69 /* ConstraintRelatableTarget.swift */; }; + 55E932D349D566F2A595286FBCF51E78 /* invoke.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A7325AC4BEC7EF7D4DCD33B02B3E198D /* invoke.h */; }; + 55EECA5035F29013A38D8E2E2BDF33A5 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8E6CCBF3D64A0D02C9336F9AB124F1 /* alts_credentials.h */; }; + 55F416B330BAACD5F5255EEE99F98361 /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9E0C2B2D02875F24D9AD2430F42788E /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 56024C5D64DFA80004F252AEFDA8ACB5 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = D348E5527F55EACBBACA53A285657F8B /* inproc_transport.h */; }; + 56059664C86382C80ECEE7BE21D09CD2 /* undef.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = CDD03177AD567F42E6C685E45F5ACDDF /* undef.inc */; }; + 5608079EDA611380694AD5F6E045909D /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 147D3C14CBE7D53D3179F177D32658A6 /* flow_control.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 560DE59EDBADC675180FF5F7C2DCA585 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = ED563916417F6B8108AF8C920AEB6E61 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 560E56980F96B76E0A22DA5473AA39FC /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = D12DA504E7E9EFB791917FE0F4C2791F /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5612E053AF268CF81F6B369CD5E9137E /* server_metric_recorder.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = EEB34D251FCC3F24B3CA4D358794CC2D /* server_metric_recorder.h */; }; + 5614F3B0F121DA021B40C181AE995379 /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 57508E798AE201B71545D4D978DB91A5 /* event_engine_client_channel_resolver.h */; }; + 5622041C865118E97099368F6E203204 /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FDE16F66F99C642C66008536E4D14C8 /* oauth2_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5622E7B094F2E0B45F3919D65E6C6838 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A57E04E920D068D5329324B5814C7C7 /* endpoint_pair.h */; }; + 5632AE88FEF44413E73ECAA8627380B8 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2256F69DE9EFDB86E35D7F8CBD625B1 /* ev_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5634DBFA4622BFAD4DCB01B5287C15A0 /* cancel_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C8B1B914135B195B679DE8015B0BC /* cancel_callback.h */; }; + 56366258D5292E8F46DC5C4B9DEE5440 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6ACD23DEFFBF3D8936ED30AA8D7C4D3A /* endpoint.upbdefs.h */; }; + 5640FEAF22F998015FB9A221F098FF65 /* xds_resolver_attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2B9B470AA95828F634FF090FAB5DED /* xds_resolver_attributes.h */; }; + 56546D21C1DF95B5F79911B2A80724EB /* FBSDKBridgeAPIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1756AE8F4B226E1D44E8067CB7C545AC /* FBSDKBridgeAPIRequest.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5656C2A00BDD393C9BF7F4FF1585811D /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB78786AD6637FC3096FFE00CD70C22D /* FIRAuthAPNSTokenManager.m */; }; + 565D012CB1F6D969851216D0D68B07F7 /* write_size_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A1A381E2A0D7D83EBE7E50615D1A68 /* write_size_policy.h */; }; + 56781B3EAC53932CBC1714D212C9CB6D /* undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2FCF87AED2F007DC7FA5234B6F572599 /* undef.inc */; }; + 56797E5F481999558BF9A3744B640F09 /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = B855F816857D15013DDF35DE1DA51044 /* cipher.h */; }; + 567A11B8DC823FE3E4BE45D5F2AAF517 /* filter_state.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1076BC0E0EE46072E92D9C13A58B8BC0 /* filter_state.upb.h */; }; + 567D0B430A76DB657AAE097E89836DD4 /* atm.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 263B8B7740B7E5849F3E89704F1F8657 /* atm.h */; }; + 5690DF4549602B0F9FF91AAB062F3EE3 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EAA928D675B822E9979B28044C7FA3 /* loop.h */; }; + 56975D1120A076ECB680FC88CCB16CED /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 365E314E3B65C84D3C0A2081E3D3E94A /* default_event_engine.h */; }; + 569816E08C0FEB319E06313700DFBFBF /* trace.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A0CB0CE93CF97D1B24805F5FE34969DD /* trace.upb_minitable.h */; }; + 56A13C23E244BE23D50232E71C57EDA5 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E5FB4DC841A67F6A3D9C80C36F0274 /* message_def.h */; }; + 56A72F6D13D930C4A2568F24DEA33C8D /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42408F144924BDB439A0BAF526B54ADB /* ConstraintLayoutSupportDSL.swift */; }; + 56A83896602D4E60F019D1DB65D944FC /* metadata_query.h in Copy src/core/ext/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 1997154079AFC39ACD5285CC1EC645D0 /* metadata_query.h */; }; + 56AC1846A234CCDC19575D37E571DCF6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F66A020ED391BF8432299958DF5C0FD9 /* internal.h */; }; + 56AC6DC6459AE47E7BC4AF06E5B148D2 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF14715E92FED75042552BA9CDE794AD /* ConstraintDSL.swift */; }; + 56B00BB3F1CB97AFAD340FA515728531 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4AB655050794EE07678FCF1670B01BA /* retry_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 56B883C1FDA26F690E54D1E325B2D5E9 /* http_protocol_options.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A12EE70C116D228988B6A39183EC56 /* http_protocol_options.upb.h */; }; + 56BBD076EC8DAADAACA5EC3006ED022B /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E9E3FC92B222962C36616A791CD67D38 /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 56C14C181673B2EBCB6591C5314010E8 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0BFEF42471D917AB6C142BCD8929B7 /* log_severity.h */; }; + 56C173967F7BFE7A9B3EE2B30058F45A /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA7110DF3EF26FBDEBD2B42AB4208E3 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56C8038C3312BA6F400E7A27176EC0DF /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 2887DDBDAA1872FD907CA6F28B82EEF7 /* xds_client.h */; }; + 56CEDA6348525C38E7C6DE85D57D5652 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3026751E26E14B2C3EC78253F7DD84EE /* fault.upbdefs.h */; }; + 56D261458C2A583CFEC228DB5C925898 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E113AAE69D07D11BDC99BA76E5606A3 /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 56D392738E888792AE2C1C2F994E5B4E /* LLImagePageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5693645DD78D589838510602CB836F79 /* LLImagePageControl.swift */; }; + 56E40CA19BC6DBC8C7217B3205A2A2F6 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C2E10F035D823B9FAE82D86DB2BBAB /* sync.h */; }; + 56E4ECA99733E4F205F1780AC87FC5E4 /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B698A607ECE2A19FC06FC65A1FE3ECB /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56FD2942C919264BB890FA8F0E0E9579 /* FBSDKWebViewAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = F7915C789964BF74D37E6557CBB880C6 /* FBSDKWebViewAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56FE905EEAF35DA6A5FC227A24737D6D /* damerau_levenshtein_distance.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B07963187E849B3600BEF1128D2AC94 /* damerau_levenshtein_distance.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 570209678759C13FDF043BFF2AACCE97 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = D17537B9BC9FC4774B6E7504CF3C1729 /* frame.h */; }; + 571641ABBEEB0EAE049277C217DD3CFD /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A7E16B36B13378F14361142A950D83F /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 571E88CE9D271744E7258C608B2D4C7F /* stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB03A6E04E270160644D04592B275AA /* stats.upb_minitable.h */; }; + 573B07F26228966E14BA4BB6E3B166A7 /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C2EBE62B5A0F120AFFE695DDD15414C7 /* listeners.upbdefs.h */; }; + 575788C09ABD1FCA07423A2489BF2B9F /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 365E314E3B65C84D3C0A2081E3D3E94A /* default_event_engine.h */; }; + 57604E6B157DD0A4D52984C91A5F0BD8 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D4080BFE55F8B4717FC73E1EE3067F1 /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 576A38A8659822B4019FFF01E6CCB26D /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD709E187B78995F5ADB9B013D554862 /* listener_components.upb.h */; }; + 576AD874BFE6DA3201FE2C9A1338BEC0 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = FC09E04AD7A81C2ABFB05D5A32D6169A /* compression_internal.h */; }; + 576DD035B0635744D3BB231FF7C0FEF2 /* rls_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59496157383A4BCCBC878983B7E4B5 /* rls_config.upb_minitable.h */; }; + 576EB228FB7FDDA7B4FC885B39C0AAC5 /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F611FEEBB24244E57B16CE50E3F7DB /* FIRPhoneMultiFactorAssertion.m */; }; + 576F12DDAEC73C5C5AEC58B6ECEB5E54 /* ec_key.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0A40DF2D241257CAC8755B4C90B1A3C9 /* ec_key.h */; }; + 577603A0C17F07A29FCF3E21DA3F02F9 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = DA6742A15D25027A572A9660DD2BA277 /* unicode.h */; }; + 577C795A42BFD3DD0F5993194F6B7F8D /* FBSDKDeviceViewControllerBase.m in Sources */ = {isa = PBXBuildFile; fileRef = A96EDB5FB7F539278A840B885F810BF6 /* FBSDKDeviceViewControllerBase.m */; }; + 577EBDBA62389A3038F5813D81FDACB3 /* FBSDKStandaloneModel.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F8C367C08AC51CC9FFFE46A939B8C9E3 /* FBSDKStandaloneModel.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 577EE426B7311CCC333770DADF1C69D9 /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = C314694375FB1E4D6086EF5C217CFDBA /* FIRMultiFactorSession.m */; }; + 5784400BDADEFF1B37CB0936C81970B3 /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 884BE29E933DFC20652AA78F23A381C7 /* domain.upb_minitable.h */; }; + 5787EA162609508BEE2C5C57829EC835 /* promise_based_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 637B75ECA0A7B2AA18C3A93B7ECB46A1 /* promise_based_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 578DEE5041C6C1622C7F3AE069CD1AD5 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = B0BF56EDFA54A7949A5A3C82421E8CF0 /* stateful_session_service_config_parser.h */; }; + 57A433C188DAEC00BB5A6371486A5338 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1477EC38E8AA88E3258DD94A83F6C69E /* fault.upb.h */; }; + 57B0A556730FE1080875494153D8A5D7 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8DC5E145459B55AA59B1554B6420E6F /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 57B810C27CC41262A9D6B55927EFA7B4 /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C1400225EFEDBF3983060983B6F3B1EC /* wakeup_fd_posix.h */; }; + 57CB939DD0F42D967E7A60BDD30F831B /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2E9700F77A28B6B36BB3F346952EE590 /* xds_client_grpc.h */; }; + 57CF37266E5F3CBDD5826688FD095FB0 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAAAE1D8DF443CCF7EFC43FA6C67EFD /* versioning.upb.h */; }; + 57DB99DD1D7141D350CDD938574745E6 /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = D58BBC5700B4E37172E3F4EF824CA9E6 /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 57E0CF11253AB31E6619D0976AE966A4 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5164EDCAD404099E478AEDD48452B0CA /* security.upb.h */; }; + 57E642109D7CC128E79A76A1B71B0097 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AEACCAD2816169703A007A5C6E4D3E9A /* xds_lb_policy_registry.h */; }; + 57EBC247B5DA4F0675755210B86EADA6 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 96FEB15F2CCD7FE46DBD34C092BB8CEB /* security_context.h */; }; + 57F6A0981308DF1DC6D1294D252EF326 /* tls_crl_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 1EB42D0E4B3AA5FA04F1FB0B270FF678 /* tls_crl_provider.h */; }; + 580E3721ED7C407ADC06E2669FF147DE /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEC0C8CD81533D6B08DAFAF4268DA9D /* ssl3.h */; }; + 580F14F14127B35E65623E83F2A948C6 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FF87CEF4CBD743014AF79E2C9D2B116 /* cluster.upb_minitable.h */; }; + 58174823D79A6BC87E5A2AAD04D1C906 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7BB77AA1883548ABD2A4EFB5A3D707 /* deprecation.upb.h */; }; + 5817CC4731718683E9A1B949973E263E /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = A53ABA6A6DFE65305A2D5CDAE003A6A5 /* useful.h */; }; + 58193E85B089EDDF9DEAFAF7C95BC4E5 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = BF7BF7A89A64D0E681411A7B2C503016 /* FBLPromise+Reduce.m */; }; + 581EAEB0C3C566FA9D1FA8E94A7D64A6 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = FC190349D7B76931E8258A2533D8474C /* certificate_provider_factory.h */; }; + 5821866DD6A877331797279E71502435 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 194A0ACA11B689587025CB43E6793A9E /* listener_components.upb.h */; }; + 582FBDDE45B34FD895C3042F85541C64 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FDD8CE72EE70AA6EFB414936F128F2 /* thread.h */; }; + 58370E3BE3CA8065D78B4D9453FADEFB /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0E553918CCAF8FA5B14CAAF2FE2D92 /* resolve_address_posix.h */; }; + 5839BB8C787BAFD716E87B50A3687638 /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F719EAE92A66FD311360451B52B6AC6A /* channel_args.h */; }; + 583EAB1C2BCD8780ED73E720E29C1DCF /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D188360BAA228FFAEFE47B939FC88CF4 /* context_params.upb.h */; }; + 5842F3B6D378613EB1DCB13816F78B1D /* evp_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6748FA655DEF1878DD214B92CF296076 /* evp_errors.h */; }; + 58443EB712CFD484C44DDC0F11DB42A7 /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACB9A08910B0D42F980A1E7CE5BA091 /* promise_based_filter.h */; }; + 584C1721F98860C3C3FA592BCEBBCC09 /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75D48CFF21A278C5F54A7902C3059DFD /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 584D4240DB610B576FAA013BF10BE230 /* FBSDKFeatureExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C579BACE8AF8075A91896659D825A7D /* FBSDKFeatureExtractor.m */; }; + 585139CF4DF1571251D068554D79AC21 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCAA6D14788445CAFC20DA4EC9533A3 /* backoff.upb.h */; }; + 5856C1466DB1DA6C52F4F0130DD360A3 /* systemd_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C2FED14A6D4E8B60B8B18EDE24196A00 /* systemd_utils.h */; }; + 5868B21C5A408EF20923ED38C70082CA /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05B0F7E2DA4C7622645BFDBAA35B652B /* number.upb.h */; }; + 5868F2FB8EC0C21DBFA08A00091A05E8 /* hpack_parse_result.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC583F8D59E89672E2573A46A02B47D /* hpack_parse_result.h */; }; + 5872A640E8A0C42499AAB79EA8C99821 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 834B966584AA9E6EF4BA4F5A9C55328F /* table.h */; }; + 588B75E898DAC9B88C17A57C7C1B7942 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 97873A4DC7D97ECC28532587E0F1666B /* message.h */; }; + 58921EAC4C1D297EA38555D5AE8F7C84 /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA5CC7B75F3640AE1A05E86CA6D0BFB /* tchar.h */; }; + 589374C519D1D889CAA3C85F42A222F8 /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 2815B6447A5A0D71A50B82116E229AC5 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 589B83F81A5803A10D156C9608A2ABEE /* serialization_traits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = BBC5162027A21C623B7904DE915D42FB /* serialization_traits.h */; }; + 589BC36E2AEB23DFC904E0C5907AEAE8 /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 3D321208A0545171E6E7520FEF3E7D40 /* api.h */; }; + 58AE99084FA8F562894EE0A849D36AC4 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 03F97215454A794F48BC5C2AD0F11EA4 /* decode.h */; }; + 58BD1CDBDD11C3476EC0024B8FFDEC22 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1006D76906D7639477E1059E37DD66FA /* internal.h */; }; + 58C1C548436A5F9120729108A8996E53 /* backend_metric_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A417FC5743E6E8C3A489804572ED6374 /* backend_metric_filter.h */; }; + 58DB96F033F321F18D071FD54CF210C7 /* FIRAggregateQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDAD73012C8F09AC54F461822EA0EFC /* FIRAggregateQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58E074672A5A00465901A3681B02F953 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 91733C193EC27ED9365DB1D1B48A62A6 /* call_tracer.h */; }; + 58E78FD3C5FBAC3DC564EF95A2A8F2D4 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A766B9A92798B3815CC9802F765F873E /* http.upbdefs.h */; }; + 58EBB0733711FC6948A21D03F6F339C4 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E4C6CDC9E5A154AB7854CA37B5F103CA /* closure.h */; }; + 58EC2325B43E4C714A3AC5A8A856228C /* damerau_levenshtein_distance.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5B714BECFBD25E26B2DC245F0084CC8C /* damerau_levenshtein_distance.h */; }; + 58F32A31B703026BEEE3EAB4DC3F0097 /* stl_type_traits.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C1A4093FB160AAD1D9C28AC62D5124BF /* stl_type_traits.h */; }; + 58FBCC985B36CD4CF206DBE3BBB19AE9 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E8032EE9764D543857B371F7C921BF0 /* range.upb.h */; }; + 59005EB53B95D5D51C8F70EF957CBD91 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 810B161C39D0FC179FC6B039D81BC2E6 /* host_port.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 59049F58B127610CD1BF3E9F4730C2E2 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 53391FE07595791884F33673633B210C /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 590678055EB921D3E246A6F60A51C060 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = A48E86E21BB36FB2609D5CE5E84B00CB /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 590821872C68C5922E57A838BE01D525 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A0CC7B0DA2FCAD4A30D40A1D253478 /* sync_abseil.h */; }; + 59225B71EA5C6E6AEF60D616DC12EAA9 /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1F08C8DC8B94D03D824CF4D027F5B4 /* secure_server_credentials.h */; }; + 592CBCA90A30554F498B2A42DFC6652D /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CA776AF049F6EACF1482F28458CC4B2 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 592F3D68F185798371133242AB73ED96 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3BAD0DC8E09418ADF6ED87C529C3E36D /* sockaddr.h */; }; + 593212726DEE337AB980FC3A465DD317 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E03352CB121E5B0A3755572C817ED2 /* status.upbdefs.h */; }; + 593FFA17CD2819DC419AD2577312FEE7 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 69E575941BFE6A86AE6BDA28D8D52469 /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 59476A53948AAF976AAE7B00FA0CC89A /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 69622F76F8BABDFFA15319E25E2E1354 /* channel_stack_type.h */; }; + 594A747D3255705D90D0928BC0808E47 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF39302FE4864D3C27FAD26E580475BA /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 59580A61EE1B6998E4FA311F8CFE1C19 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B4A6368FFE1F1946D1C3BAB4C5EE62 /* metadata_batch.h */; }; + 59675AEAF7A9BE60859DC936A05E5F90 /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B482B5050E0C871CF6D5E46CC4B3FC /* FIRAuthGlobalWorkQueue.m */; }; + 596AB6CB2771F437D1A3D87D2E62F898 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCDF1D0DE400B2EB66D7F47A74D07D3 /* resource_name.upbdefs.h */; }; + 5977F1DDB90062A348C1A143B86FAA8E /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB569F8E1AB27CB046823F8A6A5D2DDC /* csds.upb_minitable.h */; }; + 59788ED8DCDA84647E3A4AF5FA49966D /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACD23DEFFBF3D8936ED30AA8D7C4D3A /* endpoint.upbdefs.h */; }; + 597C1340734BB6E9F3EB046C2983C85A /* FBSDKPaymentObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ADCABB8C0870C131E240A8F975C294 /* FBSDKPaymentObserver.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 597CB8B27A36E0909448B8D86C8A34F7 /* FBSDKTriStateBOOL.h in Headers */ = {isa = PBXBuildFile; fileRef = 42DE4ABC706200D2B8533C8D08215191 /* FBSDKTriStateBOOL.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5980599BA186608B5ADA1BBBE13BF3C8 /* opentelemetry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A9973D7E859A15AFA2524ABEFB0DF3FA /* opentelemetry.upb_minitable.h */; }; + 59823DA88132CB7222447ABE5A7DC574 /* status_payload_printer.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 28ADEDC3C90F6EDA4A43E13A3F89967E /* status_payload_printer.h */; }; + 598E7094364FFD7DF33124D9056231F2 /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C1717B1A0762C628B47EF08AD76905D /* token_bucket.upb.h */; }; + 59A115410F9708AB8FFB29C8EF4484F4 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C210822C5822E7AFA0321FD15FA04A14 /* timestamp.upbdefs.h */; }; + 59A1161854A99105A7F615CE180F874C /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 8643362C6D195D42937880E716237489 /* time_averaged_stats.h */; }; + 59A8B6962C7CBFE28BD2C2CFB4B61D96 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BD2B9B470AA95828F634FF090FAB5DED /* xds_resolver_attributes.h */; }; + 59C2E493E28CB2E0ED4239342955C83D /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5B0726260B2425D3A67F5D5D43235B /* google_default_credentials.h */; }; + 59C3484DF0624912B951A8685F8F47DB /* GDTCORMetricsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE03E8EA204BE367F2011C36E20DD94 /* GDTCORMetricsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59CD40A2A951924524C37573591FD3B1 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 988B28A5A73BE3421704B5CF2E5A7B85 /* completion_queue_tag.h */; }; + 59D30D42F0087541CC972385493E0258 /* sequence_lock.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2620D4DE0C9CF49860162F5BE574AE77 /* sequence_lock.h */; }; + 59E2ECB29C8143381CC220A602E1058A /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = F399F919BA3557DAAC77227615B1A530 /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 59E3ACC89267C4FCD662A231E0282068 /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = EA154D4311B37BBC298E6EAA5B3AEA28 /* lb_policy_registry.h */; }; + 59E3AE802011EE80270360A72B59E363 /* log_uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 1D08F9290C6DB2CD6EB87F66E519642A /* log_uniform_int_distribution.h */; }; + 59E53BF34F5568F06CB8BB48C37DD108 /* health.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C91E8243BA28019930F3896DF6A738D8 /* health.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 59EB5494977F283AC814E228CA74610C /* status_code_enum.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6C5BAE8FEF00FEC2AFE11F5BD9574729 /* status_code_enum.h */; }; + 59F12A0B826A99F5E3BD7C98E23E7838 /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 756281746FE406CE82B9E8D1984DC321 /* string.h */; }; + 59F2DDD445FBDC65C1C89FE6B1B7D7C6 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D142633A2B7ED71DE545CE8AED2E0BB0 /* resolver.upbdefs.h */; }; + 5A0696526763D780B50ECDC6865181BD /* kernel_timeout.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89D61A08521EDACB201767459A2FC662 /* kernel_timeout.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5A0835F57C4BA98351A11FBF5E2A3CCA /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 1FD3305C939ED2B4CB98368D7C3CDA86 /* endpoint_binder_pool.h */; }; + 5A0C3CE5914A3A3EEAF4E60966BA3B55 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E4162324708D7C29AC1C836012992EF /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5A18488DAFC98D9BCFEE44E92C2F7BF2 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = D7422EF2B80F3B97384CA8671F66B0FA /* decode_fast.h */; }; + 5A2C81D9BAB20C040A2801D8A0A3F6D7 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3FE2D54F232656A85140CBD7A9A4F3D8 /* collection_entry.upb_minitable.h */; }; + 5A4388A69C110643248C2B4516727805 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB2CAB6C1B6B9953F945FD486893E27 /* activity.h */; }; + 5A4B1A4D444EE9E518ECD556173BCB0D /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 000956196A82AA0369556ABF33024222 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A5B8FA6B4A195EB407C70E08EA4965F /* method_handler_impl.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = C7D3D265F8B66869730FAF0B2C1FC2A4 /* method_handler_impl.h */; }; + 5A5CD81B439ED6E8B4BF16C43D5C9215 /* bytestring.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C6AE6B3FCC5E18BF443F021FDBA2B3B7 /* bytestring.h */; }; + 5A65240809188DB6C738827C5EC884D5 /* base92.c in Sources */ = {isa = PBXBuildFile; fileRef = 5253F699D559ACADAC2FAC9C13D86CB1 /* base92.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5A6B3EC9D020B140C0A9F97B9C158EB0 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = B858D3EEF6E6B3DDC284D9F990AC25D1 /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5A74E701B63BC2A025B285138E444856 /* memory_request.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 8620769AF43AA0431EF5825F8C342B9C /* memory_request.h */; }; + 5A794AAEF783E49098EC137F0577EC83 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = F08318C4C73D6D5D0AFDD80198B1A3DF /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5A7B4D08305FA2ED47C4CA8BA664ADD8 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = BE06B73707EC18CA0E03978F76668C26 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A8562BDEB5C6E7B1117E4F86DFF464B /* FBSDKGateKeeperManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19239848BBB58FE9D5235C2288C8FB59 /* FBSDKGateKeeperManager.m */; }; + 5A8A77FFCFE29D8EF72B6A8C5E07C6E7 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 247CA156307BEB2C50B3BB8F2EB8B684 /* alloc.h */; }; + 5A9A38FBB484ADE1449D00DE830C5691 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 10353F3E64A8944D8776E8F14D7EFC94 /* call_op_set_interface.h */; }; + 5AAC98101B7588C06F308228724724DE /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A395AC2773900746CFAAF0AE57A0DF5 /* throw_delegate.h */; }; + 5AB3F443D28087A496EDC905EC4AD23C /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = F8780E001C2EF5F42FDB51F37F71CAB7 /* stacktrace_x86-inl.inc */; }; + 5AB8CF6C6F7C583D0A350A5C53D7CB38 /* non_temporal_arm_intrinsics.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3AAEF3028CD86197DD3FB4C41B2D43 /* non_temporal_arm_intrinsics.h */; }; + 5AC4AA863904A1038F9B5FC0B8F57F94 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47A5D68EB54B2EDF8AC45CC1B6D1595B /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5AC51561A43CC2BE489A5E0976519ADD /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D1C20FA212EEB61A4339D0E8CC188FFE /* service.upb_minitable.h */; }; + 5ACEBF09E33C00CD825BD96C91091BF0 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6BF028719FE334344FDC48D7418BD8 /* rpc_service_method.h */; }; + 5AD928DC98ACC3246F27F29FCD1B643F /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1203AAB4E3333D73F665E0B7DE765432 /* api_listener.upbdefs.h */; }; + 5ADFDDAE8FFD3CBD0C725494234C9FB1 /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */ = {isa = PBXBuildFile; fileRef = DB1151041A1E5F63DA2CF2CAB23C6B13 /* static_stride_scheduler.h */; }; + 5AEF3B4E053DFDD74E4FAD852A1AAA51 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA0C85F3BAAD0211719BB8870908C31 /* common.upb_minitable.h */; }; + 5AF217E37BB53FF81BBEBC228F60C0E3 /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1D5B2900DA42500CBA26C53C0D8E0A /* rls_config.upbdefs.h */; }; + 5B32B9B494C37C5525EFDD79547F278D /* router.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFDA995E481674E853E31CF82368834 /* router.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5B3A451772B2F2CE07452E1F1CC6B90C /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F48DF8000394BC44A7DF3CDCE9E0513 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3FD8499D31BBA28ADFF9D6AD36A3B2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EDFF18F88E3D1066F41640AE85B797A0 /* PrivacyInfo.xcprivacy */; }; + 5B44787097707E7F57958C7916B4B2D8 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = D7DF6603A4D02D728C8DCCACFD20F896 /* modifiers.h */; }; + 5B4607D123E1A63F93E8D25A1565CCE9 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7289E408ACE5DE8114C26870E32A91AB /* cord_rep_btree_reader.h */; }; + 5B46A49599D0F2405E4D5BEE1CE365C6 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = C522D56640F59B47D49F3A0BFE65D7AA /* sync_stream.h */; }; + 5B48BD2E84B268A9E07EEB66BABC2683 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 78C1606F7CAB71853D8D55011ED4750D /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5B51C3BB820E7FEED50CFEAFAFC4A2CE /* bits.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 627F6A1FB0A264B491C706A18FEAA4AF /* bits.h */; }; + 5B58A9635BD90DEDBA7B5575FD3A83DC /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4D16EBF6CF242B224484D8C4A8D6215 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5B65101E40C1C9C103065C3435A76995 /* internal.h in Copy crypto/bio Private Headers */ = {isa = PBXBuildFile; fileRef = 3E71389BAD5C8D8506D9637EB95D02F5 /* internal.h */; }; + 5B6A58604207947D629106A764166993 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 03BF655FF1A10B7578E130FAA7C94ABA /* xds_http_filters.h */; }; + 5B6B3513B34CD1B3766333568FE0A2E9 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB94D7D589D2914918BA4D47D3BF3FAB /* accesslog.upb.h */; }; + 5B6BF5AE1B24F359127542D5931DC7D9 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB0FE973BA81AE5F85B7841EB3CC311 /* cel.upbdefs.h */; }; + 5B74D0157445C081496D2CACB750011D /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7E4DB2772CF935CBD51A927A99622699 /* status_util.h */; }; + 5B7842374E21A1F4AD6533C29C753029 /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5E185FD75CB4F7B4A14F314AC655A3AC /* handshaker.h */; }; + 5B882A15B56718CB1880D5AE92965727 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF66FD8466567A90787CBA62F1DEAE4 /* FIRCLSFile.m */; }; + 5B92A66A66BD639411C3D839A0F87B0C /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = A177CAC64CBA74DB3EF26944E403D8FD /* Request.swift */; }; + 5B94755A891931D1C2E0137928FD5215 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC72443355B7723BA4A97DE7E96E7A99 /* http_tracer.upb.h */; }; + 5B953024D8AE978E285F9A539A9634AC /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = 6F5B78B979FA81E9FBA05BE7E88499B4 /* outlier_detection.h */; }; + 5B97D41EF3BEA78AD2244E8646000EE1 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C6B874F166D4AD8D01E4971A2247DE /* table.h */; }; + 5B9D9C89CDA1BEAABF9B2C839019B3D1 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0F00E229C8D966E7E8D72E079B505B8A /* posix_engine_closure.h */; }; + 5BAA5A4607CD114B62266E420F9CA9A9 /* xds_audit_logger_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A819CF87CF5950B4EE9F7B5FF18D13 /* xds_audit_logger_registry.h */; }; + 5BBA3B9F4B4EDA3B7567C1B93332B28E /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 853E126BD8066D9BEA4849916DF864FE /* ares_resolver.h */; }; + 5BD36FAC0BC8397D0A923C74CC01B2D0 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B73036F901C3D684641CE1171B98C9E3 /* aws_external_account_credentials.h */; }; + 5BDAA3F9699AF218F1721F73C5E76476 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B63BFAD6328893240B6BAA8253420A /* examine_stack.h */; }; + 5BDBA4913D0100515F75C2BDD2965647 /* FBSDKBasicUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D8318AFC30BE39B836DD14432195C7 /* FBSDKBasicUtility.m */; }; + 5BDC407E857AD65E75260B76F60E2B7B /* vsock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B5F4991063DFEA63554C8F9892AEED2 /* vsock.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5BE010B227E70048E2B642E65E411106 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 082EAD88AFC803A5FAE724DBD5765836 /* map.h */; }; + 5BE4EFBB9E0CB1968E72E793FF118931 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61BBE48C52C2871E6EF80B86F79AD720 /* ImageCache.swift */; }; + 5BEC0B4464F751993EFBB0A91B90EA1A /* backend_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 142CBC664F8F0E630DD481326BBF2CE6 /* backend_metric_recorder.h */; }; + 5BEC40D663A40A9FEDF382307B82AD2E /* http_status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 403999396BB5C23DD24CB938827E40C6 /* http_status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5BF333A6EA49FE67C8734B3984A951D7 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 89257D24DFF64F44C5173C6CEE4430FD /* completion_queue_factory.h */; }; + 5BF36F80D22A88D9369F5F853EE75B69 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2CBD9B612978860EDDBB8B3D852FCEB9 /* http_inputs.upb.h */; }; + 5BF8D9C5EBACD5C038D8E66CCA7C9A5B /* eps_copy_input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = F9531921A80E7EBD231EC2FCCA98B938 /* eps_copy_input_stream.h */; }; + 5C0123382B89EF6C64AF5381F91FB52D /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 612F8FD838894CB54EA46A6412215D41 /* lb_policy.h */; }; + 5C02D3D16625AB58A18AAA22FB27C955 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 296B5518BE12B5ADF27F76FFC05BA766 /* handshaker.upb_minitable.h */; }; + 5C04049D791C4EC14EA1EB7EADFA2082 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = 170302E302D2B1DA9832C897C9257DDA /* time_zone_if.h */; }; + 5C094716BB04423DCFFA4230E2E9CBDA /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = 704171B6666E36E8F69C7A717CCF3AB2 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5C0BA4AB6766A0408D22ADA4D860ED37 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = E84F4396968E8AB6DE8331911581D9CE /* server_config_selector.h */; }; + 5C0DCCF0E03B7E1D280B626A2A0DDF29 /* TZImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 793F027D795E0D79669E62CB54D5B27D /* TZImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5C0E7FA9E5FC89D5A295ADD3F4F783E0 /* sleep.cc in Sources */ = {isa = PBXBuildFile; fileRef = 001A3B5F66D7AC2F2B95EFC3EE3AF352 /* sleep.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C2999A91B0E34A7A263DEF58321034E /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B7B90A0F1F18FF3AE85B870AF61E4B /* arena_promise.h */; }; + 5C3084C0DAC011AB2FA9C63B81AD0AAB /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 93E172B18670CB2028566B07B7BE7605 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C3CFB5258AEE6DBFD51073866353A89 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = CD57637384AC9CE4FCA299B9BDFF96AA /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3FCFE4313091A3C0736BF549187D6A /* crc32.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = BAB0EB6CDC1816EDCCC05822F8A98945 /* crc32.h */; }; + 5C448EB43DBF08E46B1602A22EC03E42 /* hpke.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4F89288C3BB926DAC350E0B256B42721 /* hpke.h */; }; + 5C44A1F0EA03654AF73C7C5656E4AF12 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E935FAC722C5EEF4B856CAA7B569500 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C49924D88C233F069802A3CC8AFA84D /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = A384FF9E635BC3EE5625128EACD37935 /* api.h */; }; + 5C4B364A0164529344796F022972265E /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 787B5C6B72F1FF49A7F4122094F03D97 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C5494839F5BAF113B6B99A72E890B02 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = E3FBD46377D84D308E3003F107ED8D4B /* extension.h */; }; + 5C597EC6FCD81D48EA513E2556ACA9F5 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C355760C363A281BB0BD8A82E2358359 /* sensitive.upb_minitable.h */; }; + 5C5FD43AC40833E93756F084BE696AA0 /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E4676E7BC4997BE8DDDF6C5CA78752A5 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C6CDF1CD57CAAF7F5AB197FCCB9CB44 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8B1CBAF5ECE7EC364857EBFF52DF9C /* url_external_account_credentials.h */; }; + 5C75DFBA3F39D6FC0F7A37876564769C /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FF508A3C1C4EF9F99392BF238ABB7F7E /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5C765D7F71E1830F82D46FD43CA7927A /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DD5C3331D8BF5A22A6FBAC02544BF6D /* metrics_service.upbdefs.h */; }; + 5C7B16D4BBFC20BA294C49136F7D40AA /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 265E101E8B76E3926DF5FE29F44AFE0D /* memory.upbdefs.h */; }; + 5C860B8D1840A784C72676579315D3BF /* FIRCLSMetricKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3666B4E706919097D7906227C64A231F /* FIRCLSMetricKitManager.m */; }; + 5C8B91D245A451AE308E5C3A49979B81 /* FirestoreQueryObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E54A5A1E7A10EC95DD6D594A83347FB /* FirestoreQueryObservable.swift */; }; + 5C8D114B966F8DC0FE473D007BF04484 /* message_reserved_range.c in Sources */ = {isa = PBXBuildFile; fileRef = 0471D53FF96324489068C78C856EE029 /* message_reserved_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5C8E3F065C5E9556A42E5B59B9675A51 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4787484CFD0DD668E9B2FB61AEEC0D35 /* duration.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5CA1B8A78ABAD3D976705FE8BC45571A /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = F4CE2A41C775CA088B555DF37F91B1F6 /* httpbody.upb_minitable.h */; }; + 5CB6D24EA44B00D4B9BA0C817B0AB6D5 /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B29158980D8C9A6A071331A30608E4E /* http_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5CB96FADA04976A8612EB4176A262026 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3909FCD58DD34A75D7644E315F321862 /* scoped_route.upb.h */; }; + 5CC3CD0587C81D3722F08AF135E8C846 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F2CD8D5F8F668B9472EDEBEC5F04405 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5CC6CCD9237E4BA2BEA6A1053063E91B /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29F8402476359A9E6AF5AC8AB97C8FB1 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5CD3569C0EA4C34A6CECAC27F2B04F5A /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF4FDD97B11A51B6A346E62B3CADC40 /* grpc_security.h */; }; + 5CD3F7D376C1BF062703F42C30E431FD /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52E096E3DFB8D70D13F87AFD208715DB /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5CD78326C7A7E27A8817F25B8593821A /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3AD35E346BC8F98A1D7A050ABE5C359 /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CDEF740CDF191E1198D59A555841E10 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 3839C8671F503EB6E49E49EC80D16612 /* client_context.h */; }; + 5CEB0D4A154DD7603165F27B32F6A7C3 /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 867DC603C45784104AB436154E4093F0 /* annotations.upb_minitable.h */; }; + 5CEDF406256468078763978357D574F8 /* pipe.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7DCF127BDC10F759E018660B33620549 /* pipe.h */; }; + 5CF506B1314B05FEBA2030B08DE2BDE0 /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E04139AD67524C8F782FFD0E81C88F /* memory.upb.h */; }; + 5CFFECE411DB3709E3A3DD1D64C4FE71 /* server_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C22D0F91DCF92AB6C35551796C84E5BA /* server_callback.h */; }; + 5D0129A076A9D8D69A413D860AEAB5E6 /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16D728F4D6BAE301CFDDDAD773FCB26E /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5D021E90A5699A959E25AE953F78C262 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7617EA171BB5C4FEBC67B4C07691BFD5 /* common.upb_minitable.h */; }; + 5D024856E1EF89551D61846EBBAA78F0 /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74A0BB88F69DEF2140CEA066A25C2AE4 /* subchannel_pool_interface.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5D0E30E2FC0ADFDB01BC4971A46D9196 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D35A392B50C2C5AAC271E23DD56D2BF0 /* status.upb.h */; }; + 5D15C3C82971AA5BCC472639EA23C388 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CE161852803F78EF378AB054EA479C1E /* overload.upbdefs.h */; }; + 5D239D3108A532A572EEFC0449C6B2AE /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 95F4815ACCC3E583361C1BAED97D3246 /* regex.upb.h */; }; + 5D30160D25CA7173E2A9696AE8C7F3C9 /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26F9E8E32A5CC7000F5E11CF7CB13549 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 5D36B99F3CAB1FC7337082D9581FECA6 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BE00A807CBA9B37168CF284F5F522EB /* Debugging.swift */; }; + 5D3C4967E6700528BC484B7BED2A9379 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF876A9BC32A7421CF07F9A28C1F1BA /* protocol.upbdefs.h */; }; + 5D4C1D9443EA2A2B58954EE1C9744E14 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E07D3C3F59066C80D63F92CA4B0235B /* local_security_connector.h */; }; + 5D4F741D14AAE2049C3CC278161BE289 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2EAA92A9E6D3E215D0EAA17C69D691F0 /* hashtable_debug_hooks.h */; }; + 5D4FC51704A30F07F1106B82DF7047E0 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 523078B9DCDA3E7BC8AB1F60FE032068 /* xds_client.h */; }; + 5D558AC6476B0E79C5B77774C68BA21A /* client_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8F090E4E64880CA6F0D5ECA8E3C21542 /* client_unary_call.h */; }; + 5D5BC3AEE7F942A6D40F864D020ED2BF /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4773C4DF14D64173DE9E69E8C9AD3B86 /* http2_settings.h */; }; + 5D604EB93CBDCD8501306B4FE39FAFAC /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06CE5903887DCF4D065D3BD0BF8ED80B /* certificate_provider_store.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5D610D1EEB026336EE11BF45D985EBB2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 5D6742D677B4145D683FF088AACBB77C /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0B4ED8F911E4640B6F6BCDCF0A004A /* load_file.h */; }; + 5D6BBEECF35F873949249741EA93A2FD /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 5F2C9C3D267917437B6F63A4BF25A2D3 /* service_def.h */; }; + 5D6F526910675C3F103991A1144C39F9 /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FC279010110CF681AB906A3657312A68 /* udp_listener_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5D70B8DCE1DA68A2AD4E9C3BA172F5AA /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B035ACBBDF40E70337E41D7C437224 /* extension.upb.h */; }; + 5D71A8EE0DD9BFFBD0A2125A8CC415BB /* grpc_tls_certificate_match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42A24C746835DB48F2D086A4DABC4967 /* grpc_tls_certificate_match.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5D79B710F186206F96D36E912191EDEB /* FIRCLSManagerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 478E44E81EDCB010AA2439B13812E073 /* FIRCLSManagerData.m */; }; + 5D8450C6ED66D8F2FF53F94CEAF2A686 /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2587432C96D6FE76BC57FB8BE589DA31 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 5D870E8A7230CCE1BDE50DA49AFDC26A /* vsock.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4CB7999B9508CC0FCC25E96CB6F1A7 /* vsock.h */; }; + 5D8B9058A33B286BB0E1A8E69D197171 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAB4F2AC03D5532E9F8A7B097F902EC /* comparator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5D9D0A0432B9590ABCD00FAB3176372D /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32AB6545FE730611EDFF09FB4BE4D9A1 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5DA9671654028E1B10BF26C8387FDDBF /* FBSDKConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 42878177EF1B43B31C03F485AA375B8A /* FBSDKConstants.m */; }; + 5DA97FD727DEACA1A11404D681EFDBD9 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A863F561F63772E4EA40D25E51001FC2 /* accesslog.upb.h */; }; + 5DB81AED3388EBF1060A03456CF12AC5 /* utf8_range.h in Copy third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = 7F3768B57E7008496EDBA7CD454B7624 /* utf8_range.h */; }; + 5DBBC59475BFF1FC7A9D946463EEA9E0 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4001F548202B6DA2B0E116EFCA781C79 /* stacktrace_unimplemented-inl.inc */; }; + 5DBEB4C6B1DBD8317F2CF3177B20071A /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0F8053DFD2379AFC78A98D0233DA53 /* latch.h */; }; + 5DC5813573F846E20D974665EE6CD03C /* server_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F834BE96D99E048F8A2341C441D35967 /* server_context.h */; }; + 5DCF61D916A59D5487EF35A9C31AE43C /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1A34C3DAF6E0E27E2EFEEE2BD8DDC2 /* status.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DCFCDCD2FB431346673A97994EF279A /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE05C1585C43854A49BBD77500251832 /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5DD85C1EF7131DEFDBF2B86A6188E3EA /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A416A85FFCE8B87EE4857E352A155B05 /* service_config_channel_arg_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5DEAC5B2ABA85EA156B197822775BCF1 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FE5C3AD15C5A0FEE4E99120059EFBB /* bootstrap.upb.h */; }; + 5DED7102518F3A80EB6E2CB60168D71C /* parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = A998CED494A840B340E5F0C208DEDB37 /* parser.h */; }; + 5DF3D4F78C2E5F85AC0B4DB9EB1D7446 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 141D3DA28A772A04C0B384CDE86011A7 /* decode.h */; }; + 5DF6561D8A1DC2E8D5D6ED9303ED702A /* FBSDKPaymentObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = B0AE11A944432EC99725C6DB37B82464 /* FBSDKPaymentObserver.m */; }; + 5DF96C3821C27CFF304777505F0F3E44 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = B98E6B118A0629577FDACF1459054ECD /* duration.upbdefs.h */; }; + 5E041C9C5484259AFB767678C15F3FDB /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA62ED86363AEEDEC469716F339B147 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E064C2E28F5B6F8072DFBF9BC1B23E8 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = C216F2477F3F19D22475E65BF38D254A /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5E149873A7BE0513428BCF8A749745FA /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D88BDA7BE0C6B5674C598D996EF9D9D4 /* server_config_selector_filter.h */; }; + 5E158F06756E834B5EC5879CC9068DEE /* http_status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3662CDCB682DC39DA4C2EDE2CCB6B1CF /* http_status.upb_minitable.h */; }; + 5E1BEAF8738B818E48536F4277753BD0 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3BC0190DD99D884CEC7A01BF37D93E /* field_def.h */; }; + 5E27320D82A8138C4751EEFBEDF5967B /* rls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE0BBBC854B67A6F58272A39E951DA5 /* rls.upb_minitable.h */; }; + 5E3021BB2C07994699CC15E407E6ADB3 /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 197EF74DCC6C10F0370AA72AE730DDBA /* FIRGetOOBConfirmationCodeRequest.m */; }; + 5E34880E4001F10ACAF58879F37FF433 /* client_channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A8CDC84BB5BF4C1195646477C9980CB /* client_channel_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5E37E6453853BC079F1B7616D0832F82 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E5231DA774E4B33B890A7F6F4A989B27 /* string.upb_minitable.h */; }; + 5E3FFD6B92AF0D515D0D976E43921CF0 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 16FDC49F110EFEA90429DCBC961921FA /* struct.upbdefs.h */; }; + 5E4261F8EFB0E0695CC137163978CD1E /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 916A17CB6C381183038FE7BB721C4844 /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E447EF0EE755263ADD3D7ADC34A0853 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 180571B495B5E50846DA27DA0E89D33D /* windows_listener.h */; }; + 5E5BF9E5DF7096C8D324DD589365537C /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54F506A8A197B588F9FDA209A3C7F8FE /* config_dump.upb_minitable.h */; }; + 5E6FAFABF2CF53DCB63DB35513F11871 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FDC49F110EFEA90429DCBC961921FA /* struct.upbdefs.h */; }; + 5E72B9C961E70A73E008FB127F8BE9ED /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2B74A748534F98BC745CBD75F49D001 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 5E7729F971D3A8BB081822A0B0FF453D /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = B23934F1739FF1AA746ACAC368480877 /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5E7EAF434C7AFEB40FCFCF805C11DF63 /* accessors.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 590F0B35EB65F958953AB7DAEF990AA6 /* accessors.h */; }; + 5E7FABDAD3C15FE0D7465C088D3DE3A8 /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A8D5FA44CF02AC9B7057A21A128660B5 /* opencensus.upbdefs.h */; }; + 5E838E407C3DB9EAE3E09F43D42AEA25 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C352AC892D013D854079B659C70B65 /* dynamic_annotations.h */; }; + 5E8E3A416DE98BE60A35BBE5AFC1FB14 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E8C1FB8F23D864CF886BBF627FD5CEF2 /* stat.h */; }; + 5E9A687DF7EB60D83103BA3ABABDCF3A /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 468461C78912993F93DA5214AB956DB5 /* call_hook.h */; }; + 5E9B6AF47C8D78235046ACB1F062FE97 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D40F2E40BF72A20CBDED712AC9EF43EB /* config_source.upbdefs.h */; }; + 5EA3BA04C40DCB0B5DDF43A8C021FCE6 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9556FC950F4F862EBB728CB49C88BD43 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 5EA5286EBE0C6BB6041340E1413CE47F /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 2EC2E2D2715DF67684E2D8E303FA363F /* channel_creds_registry.h */; }; + 5EAB438FB4B42A8643E543DDA7A86427 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FE934EBEC7075077EA860111A9BB6E /* extension.upb_minitable.h */; }; + 5EAC26793F87DA5FE8B99E20FC848DC0 /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 5D774BCF91E8AB89573309FCC930084C /* string.h */; }; + 5EAE5F6CDEAE3254D9E1F6AABD25FCE8 /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F74B7BB8D6131A87CB8C8F768EC9271 /* cfstream_handle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5EB49F5BE103D2254264130784777F1A /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 16D27CC5C409DE47019673D43BCDBE5E /* wire_constants.h */; }; + 5EBC224DDA3EC6CCE8C42EED6063FD35 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E644C2F1679DF5AC9DABD0263F8229 /* ImageProgressive.swift */; }; + 5EBD0177B31F6AADC54E0AE64312E85D /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 18146C7EB413A4F310202598CE889CB8 /* tzfile.h */; }; + 5ECBF4C7599A9E79F8093DE48908714D /* try_join.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = EF9397AFB5B339F38E878E6171A4C330 /* try_join.h */; }; + 5EEF10D888CBC161903DE9CF0FB1189D /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A74FAC2C44A62DADF73D55AFB0D0DBC /* xds_api.h */; }; + 5EF6DD933A01B6A7F4CB3A699F377701 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B774369EACB83F360DA6154321A7DFB1 /* hpack_parser_table.h */; }; + 5EF7424C94E18CC03E7787FEC21ECBFD /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = EE29AFD1FE938C54AA1C3401D40C0F6B /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5EFB7BA6F4B6683E1AC0BA7B854602B8 /* dynamic_ot.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 896E6272EA1479311D9AAFF07C6C6332 /* dynamic_ot.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5EFF3160291997C7C775F2CF5A237DF8 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 497A6A8A0D40DBE3AE112FC35762D523 /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5F07EF35E9C3DBF83105E9FCEB85FBB8 /* common.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = F32F3DBCBEEE2114BCD297E6CC538766 /* common.h */; }; + 5F0DC884DB0CD0EC844018B95CCCDC78 /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D7C0AE5202ADD84CCCDBD457B89525 /* e_os2.h */; }; + 5F20D844C0C4E90A373810C41C354F8B /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FC09E04AD7A81C2ABFB05D5A32D6169A /* compression_internal.h */; }; + 5F223ED8346DC9E88192ED64451D5273 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 279F6EDFFEC9604A1418C731977A3CD4 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F2724047A84C075F7A23C03C50CA994 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 1D099B1AF0149F7AD323150066615F6B /* grpc_authorization_engine.h */; }; + 5F28067DD435C7656C0759D6EFC20DC6 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F39CC8E6D73150B559B118ECF8169ECD /* tcp_server_utils_posix.h */; }; + 5F356195B10A78F5B716B248369AEC2F /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A408807F326B393D21346D0695446BF /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 5F42656DF580BCE32A62ECCC10E48BB6 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF988C4AB121C7CDD3E088A2F44C8E1 /* types.h */; }; + 5F46DC9BE249E390C0AC3084B48D08A1 /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6815E910D1386056903B28F6736CFAD4 /* init_dump.upbdefs.h */; }; + 5F4C09FE50D4B95FEE63D1485DF9F002 /* FBSDKEventInferencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23250ADA5F9EB710B7CD348021E79039 /* FBSDKEventInferencer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5F4DD16B1713FCCBEB3EFD7260DDAF68 /* base.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F62CF030A6969BCAB4FEA174EBA63BD7 /* base.upb_minitable.h */; }; + 5F562CD4FC27EC0C39FC27173D9DA089 /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CDC8B058FB2673D569F17DD83CB9769 /* rls.upb_minitable.h */; }; + 5F56AC9C30CD82B6EE29F73B29DD1049 /* cookie.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DB7770583E26B91EAA332A92AE04CF51 /* cookie.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5F57695F712AC0455D3DD76EEA79A17E /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = 788F4FFBB4BFF44330E1B1B6B081BD9E /* xxhash.h */; }; + 5F5AFDE4EA8C9E8DED983C33C5F516A9 /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA4D9479345E718C0C9BE46AE359E40 /* resource.upb_minitable.h */; }; + 5F5E089CE32A19A29D6779A11393738F /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D5BB0A437F68942DB1A2CE047F403C4 /* FIRAuthNotificationManager.m */; }; + 5F698B50E9D28F0E112630A3F4D257A8 /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 125E49F643B94A449EDC5B86F17FB570 /* directory_reader.h */; }; + 5F6C7D4C11FAA6147696DA9ECAB3DABF /* prioritized_race.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D438913BEEB951F15C704CDB247D50E /* prioritized_race.h */; }; + 5F6E49F285A19FF7DD92C02CEADC4DA1 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 367A03E236968DF5841D7B03B7EBCC1F /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7F61D83B90E7657B4F89296E75DEB5 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 0D0216114A85FCABB47BF9B606F49ACE /* alts_shared_resource.h */; }; + 5F84B1EFC820E06789AF39DF6D17BF25 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = EBBFBE030BB1A7A56F1958B853D498AB /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F8A7B1C1A32CC07556F3A315B4D3B0E /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A1295530C1AB4FED108DA79D2704AB86 /* extension.upb_minitable.h */; }; + 5F8DEAC336B19473ACEE29A1AD4E3CFA /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 5086762C06A68DB3D1A7785F4421A359 /* prefilter_tree.h */; }; + 5F92F50E0B756DC25181B824F612C990 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = BFACA2254E0783112F2B65DB8183CC62 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F95095F8ADF51C6A958E3CA46C6F485 /* RecaptchaInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D37BDCCE949772E34866CEB8681081 /* RecaptchaInterop-dummy.m */; }; + 5FA08F9170BC33A0A477210C9A5C1143 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = DB28687B92F79499B12356A4097386C3 /* http_client_filter.h */; }; + 5FA0CDBEB9D1263D9BB181A13F185BE5 /* round_trip.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7FD98463FF11E4489FD73C9503D6A1 /* round_trip.h */; }; + 5FA6398AD8108EB72DB4BFDB9775DB12 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DB347760FA13CE89954827AD57040662 /* cookie.upb.h */; }; + 5FAC79677F6ACCB73F1130AEE2D2A243 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 48077CF5CE7A9FC0070ADF71B4BC8E82 /* internal.h */; }; + 5FB14975C6D2C5259D5873755E4DD340 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1104196AE9CCB2369F8CC081552F16DC /* outlier_detection.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 5FC9ED6516B1E70BD9D2DA8012AA4D15 /* mutex_stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEDE9B5256C4F7638A0CC430B877513 /* mutex_stats.upb_minitable.h */; }; + 5FCFD280AF668E532B32345816F2D4E0 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 963C15A7191BBF62D6B6519A5405D0E7 /* ev_apple.h */; }; + 5FD5D36E1DA026B53D48B094CFEEFBD3 /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5797544FEFCE28FEB9A43AF7A54AD7 /* hide_ptr.h */; }; + 5FDC0B4E64EFF08256A64B3C4EE47354 /* FBSDKViewHierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3774D4642EBA0F51BE2EE5F3D5B8417 /* FBSDKViewHierarchy.m */; }; + 5FE57A8E91623F798B59B5EB911D8C27 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BD0122E0EE204F151DFACBC75897A6C5 /* tcp_windows.h */; }; + 5FE598E3DF7D89A2C14C5CE94CCE3EC7 /* Promise+Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11C7179D4037D575398C58C7DFDE1AA /* Promise+Any.swift */; }; + 5FE7B066AC858865ACEDCE8E31061FA7 /* trace.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D0A1A836981B12139527B2A62E2C825A /* trace.h */; }; + 5FEE1D341FBB61DECD5E0C6654A68256 /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6B1512856BAEBD8F259304C7C93E8B /* subchannel.h */; }; + 5FFEB2ED316E1009CA126CC60A9C34FE /* domain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DED0ED8CC87B0E34499AD31B7979C88C /* domain.upb.h */; }; + 601717F7F668264B1A070EF40CA46D15 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = FB62C9D5BDD92E079DBE2C8CC1E8F32D /* array.h */; }; + 601E016111ED539D9502653AD8BEE417 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = C26EAE00B8B0051B9DC872680D118983 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 602183A7C879C91190D2387240BE4C0C /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 408F2D068E8D6B05A1BAA6FE6E1841D9 /* http_inputs.upb.h */; }; + 602A900FFADC478F67D2ACF603C3CDD0 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D0335A8E61B5EB8BE0A55482028AB0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 602EFE2DD5D5DB15916BC138B877CD61 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB529D1E20E93D887B0EDF9AC8AE24F9 /* grpc_service.upb_minitable.h */; }; + 602F027A43D9F2F445DD03E6B8EEDC58 /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 78286B51C7CDEDF7AED2D5174EC7F26C /* FIRMultiFactorAssertion.m */; }; + 602FE27E31903960178292BE20536982 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 839906DE03A50726BA69A9781A430A42 /* path_transformation.upb.h */; }; + 60325FEA6BBEC46782691E061339B68B /* log.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = ECA1EB7747C4A6A9565E59F2C72FFBC8 /* log.h */; }; + 6033A3CA401EB7D85CECA5E4DD7C6162 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA80624C2D95E2684D7E68D7B1F9473 /* wakeup_fd_pipe.h */; }; + 603814D33EFFC458F2D7BE1D76C998C4 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = DC91B2D2A3AC7A7C621CBB805086A9D1 /* channel.h */; }; + 6046679236CAD4716283B08F6311072A /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C6F8197C509EAD17B79FBA530CA0B043 /* deprecation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 604C2C9FA20A7EE0DC8EB4CFA301AABE /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FC033FE6AD1ACC7E1D07F9C74515CD6 /* chttp2_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 604D3C93C17978C23600EC415949AB64 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A3DECDBA0A075246E576A2026D28339 /* ConstraintInsets.swift */; }; + 605518B2844907A10BD03C2209606BE2 /* round_trip.h in Headers */ = {isa = PBXBuildFile; fileRef = 558852DB9B02D89322F08131A3B5E5E2 /* round_trip.h */; }; + 6055F9B51E721AFB1F9B1B5C4DCEAD0A /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DCD5E981F393E29F7F963AEC8EB71FE /* fault.upbdefs.h */; }; + 6057A2267961654FB8AEB57262290849 /* xds_bootstrap_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7865B7B92E8FD24347F549A3CE665BE /* xds_bootstrap_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60637AA3EF6478A0753C65A0A263A015 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E1D7086C56D3FCA05640D2FEB36466 /* seed_material.h */; }; + 606491A30A064DF56FFA5329EECA17C6 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 345E82508038E32B12134D8F498C6399 /* dynamic_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6066DF8EBAAF4EAD3A904AFF921C3CBB /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B32D3395430226B2EB9D803D5C01D60 /* ImageDataProcessor.swift */; }; + 60691D4496F88694DFF187D0470534CA /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = F2AD33D65865709DB9E9F2B605132C95 /* transport_security_common.upb_minitable.h */; }; + 606DF393DC4C652898B5AC23602A1D24 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B24D020EA817C6AC2345BD4E4CA39D3 /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60776B8128D85516283211836BAFD516 /* tap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1803D3BF7F8EAB968D9E587E9ADBE8FE /* tap.upb_minitable.h */; }; + 607CB215A6EC7EE56BAFC8391EDB3337 /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2048302EE2EE6D41ED220082822AF8F /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 60804970E8E74C1A05093F5FA9DE324B /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7BCF0920BA72807BACCFBC594DFE99 /* channel_args_endpoint_config.h */; }; + 60846B8963CC86FE156970A6466543B8 /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44F8C0EEA6D1B7470473BF58D5BD0127 /* ssl_session_openssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 608CAC9A35C4FE9C00A3EE0E79F69089 /* generic_stub.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = A4F9DFD1621AD255EAFB1DA3554DE62D /* generic_stub.h */; }; + 6091A1BD56FF348585D36E59A36110A0 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = A4068E4E2CACA9A58C2FDBFC7FDEFCA6 /* oob_backend_metric_internal.h */; }; + 6092C1CFA556656C6FB60A3676707998 /* event_log.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 76FA9B80242BB677261B5BFDF7292339 /* event_log.h */; }; + 60A2FD658063D1B9F23BE9B8B00CBBF7 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EE08784F701589EFD28E5951611563D /* quic_config.upb_minitable.h */; }; + 60A4BD75ABA1AC2E16A1FCA29D6B2721 /* salted_seed_seq.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5B12F16CC2967047916D46A8F0016938 /* salted_seed_seq.h */; }; + 60A5971C7CCB2BBC399BC5C3FC65B20F /* json_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 49874FC55B89FD7E98FD7431723111F5 /* json_channel_args.h */; }; + 60B2439704468460A51FEE5AB5E23C6E /* string_constant.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 23F0C96C918E5623CB766879A976C97E /* string_constant.h */; }; + 60B2AA409D017618C25C502CBC85D498 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A696AB6B1A228A4EFA94DD6215C8F1A /* gethostname_sysconf.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60B36BA8B4F000AFDEB35CD1ABE6B0EF /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D08F9290C6DB2CD6EB87F66E519642A /* log_uniform_int_distribution.h */; }; + 60B6A1F9B9ABACCF70C4E1FA49A7B6B0 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 408F2D068E8D6B05A1BAA6FE6E1841D9 /* http_inputs.upb.h */; }; + 60BEEA9710D51FDDC270357079FDD5FF /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = AC236229B1BC668A1C910286757328CC /* wrappers.upb.h */; }; + 60CE31C8F267E690ACC9F9FCA20B39C4 /* ripemd.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F91D5FB72A245F8B45C1331120CF151C /* ripemd.h */; }; + 60D1966A5E3792B4CDB097D74ED899F2 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B8D4C0C0163A5B5F355648B6ACB31EE /* grpc_alts_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 60D69723AC15DB553FD8F4B690B6E7B1 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 2A9ABAA5A49EAEB6636D9D2448408FAE /* alts_grpc_record_protocol_common.h */; }; + 60DDE7B8C3B8573C67481DC6E26282B4 /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DE4567157587AFBEAA2C6E4E12FBB6 /* file.h */; }; + 60F3766745654FAF47E2E17BC6F77FA4 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D961FE754A29E69261B28A260B717B /* array.h */; }; + 60F7C90F6227DC05DB18DD421ABDA245 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 9DBD3545C480DF1A6020297FC8C70C0A /* b64.h */; }; + 60FF2EE4A1EB2A9C3ABE6DFD9291BEA5 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0505EAD2BA4ACEBE33B4AC7E5D82AA8A /* sensitive.upb.h */; }; + 6102CF0AFA860891CCB6A4591A9EA728 /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D9E5ED7DB6A7A8B207AA331F16332E /* FIRIdentityToolkitRequest.m */; }; + 61126463038917765BF9117FCDFC9EEC /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 90119EDB3FC9084862164A974DFA5FD6 /* memory_quota.h */; }; + 611978580FDA885EAB90BB5D79670223 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = C7A0885C8B3624DC8E37B1B86B32F3E4 /* message.hpp */; }; + 611A69F7619832FD87778EFE6677093F /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A606CAC641539BDCA994FDBCFC1299E0 /* cel.upb_minitable.h */; }; + 611CEF7FF1EF9EA1BCEF6C73EEE3ACCF /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9689A0E1F88AC6890457418F687046DE /* ConstraintLayoutGuide.swift */; }; + 6122798036F7AF6223660BF43DE47540 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7AD6E166E21A21C82FE7FFDD774D8A54 /* tcp_posix.h */; }; + 612CB13F802D5DDE3E95F7DCB70E100F /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 456552763A7B86583A34F897D0BE142D /* fake_credentials.h */; }; + 612E0502D0A070E78122E43A21D6705B /* RecaptchaInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D876A34BB0DFD137C31D265904E278 /* RecaptchaInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6140A2FA412A1AC5D756129CE4C634E0 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = B32A488D1B889B720B34A671C144A09B /* load_system_roots.h */; }; + 614763C8DAA1D74551F286D9D20E32F3 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A96FA43EBF97DA4CEDD4C69E03A4BA8 /* wrr_locality.upb_minitable.h */; }; + 615592F1EE616AD830F77C157ED5756F /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = BDED9A334FA2504CCC48BA39DE10D705 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 6164C23F0EAF72FFFED4549224AB4882 /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 663F4FFE7C8BD9480AF2AE3AC32E899D /* clusters.upb.h */; }; + 6166D95597C71B782835B7B6918B820B /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5CB5FD01B9B33505A22D5A182D71C3BF /* event_poller.h */; }; + 6179813FC16F49BE792D5A7BE56C71F4 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB373B281F6E8C9040D8C7899857D63 /* rbac.upb_minitable.h */; }; + 6181387DB14F0A190BD2079A43FF40ED /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 705D895C48DC459D7FE86FE29338CAF1 /* xds_http_rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 61823D5D4EEDEBEFD925335F02ECB10A /* deflate.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = C2475BA7C195E5EC2CB6EC170390794C /* deflate.h */; }; + 618613BC835C7A7DBC72933ACDBD6E48 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C13B181085DFBB736B50F5CE321CD77F /* subchannel_list.h */; }; + 61899C352CCA48AE6D846E3B6BF74DC3 /* thready_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 884D5865A64EEAF2C0F0A5D660CB096F /* thready_event_engine.h */; }; + 6191E136FF506133C09257B1D8E6C24A /* spx_util.c in Sources */ = {isa = PBXBuildFile; fileRef = 72F16AA1D26C1FDA485F4ECEF3645BF2 /* spx_util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 619343752DAB17D3231D71E54E19D4EE /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = 003BECB73D90E3395979D0E6EE0C35B2 /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6196BB04C94C45D15FBB567B7BC9D88B /* cmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8E6281C161DE01F74BB9088EB7F3D12E /* cmac.h */; }; + 619A7C410FC901FB8449C95EA3E528E3 /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DC95569442372DD857604A95DB3028 /* sorted_pack.h */; }; + 619F693BE8132E9E1160A33620130307 /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABED0EE16C5EA4CE6E903680200847C9 /* hpack_parser_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 61A0992622F1486580E33C8E2AE9EC57 /* FirebaseRemoteConfigInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DEC9A5151B78AA62DA14042AFA2C28C /* FirebaseRemoteConfigInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61B73D2C79F846563CEA60DD8897069A /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DC093A8CF3EDC17229CE85DBDA56ED /* range.upbdefs.h */; }; + 61C8376E34B86BC85F07585B6B19D2EA /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC1C5881A90F911277D2912DF2FA0A75 /* endpoint_components.upb_minitable.h */; }; + 61CD7AF566F21DAACF468EDC00F18344 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EB73EDD79502202483A7306EDB1977A0 /* max_concurrent_streams_policy.h */; }; + 61D2902B9535404232DDFC42A43021D5 /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5497A1D0C3D2AE8A855412840F6BB742 /* orca.upb.h */; }; + 61DA17F7C1652D3323D556A8A8A9DFBD /* p256-nistz-table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = E4358CB27FB7E82183864E7D9E0600E8 /* p256-nistz-table.h */; }; + 61E1930BF6102CF44904D82AE87303DF /* errno.c in Sources */ = {isa = PBXBuildFile; fileRef = 52E8F060F9A87BE426D7AABDD93989C2 /* errno.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 61E2CAE23E5C1FFA93E87040C18536D6 /* nonsecure_base.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EFDB666B07433487254E38AF539A7D33 /* nonsecure_base.h */; }; + 61F98C78E5EF647642DFA8ADFC58F1BA /* query_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 470E68EA343CB2F510BCBC6B8A1FA27A /* query_extensions.h */; }; + 61FDB002F9745AF59817AB77925F062F /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F46B02ECE16E4813203D0665ABF48D7 /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61FECEB248710250FB92EE7F46F93BA4 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C18580E78FE0348FC138C447B1CE21DD /* empty.upbdefs.h */; }; + 620C1E7C7452808AA4B876844F863A5A /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11DB285D8FD85F99DEEDA9939B773757 /* bin_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 620D98CF2A2070274E96EEF9540442C6 /* crc_memcpy.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 953F62C62D89975BF7DC366DF68C52C3 /* crc_memcpy.h */; }; + 620DE21FEA10E2A5724E205FB651449C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 620F999A16BA05E0C515353EE95FCABE /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AAFFC94B75B126EB5EEAA9E298B6E59D /* write_size_policy.h */; }; + 62194BCA15496A53A017D4428C5DFCAE /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D4BB88156BCA543178C396802206BE /* bind.h */; }; + 621BF69A2246C44FDD922D97CAE82E21 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7CCEDCC195347F2A9BFA3AE3959CEF /* time_util.h */; }; + 622181547D5673A231D01DD2E61B3BE0 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DE0B4B769C29BC6D93B279F2E764EFA /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 622F26395B805466BEF4DE7CFC2FC6B4 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C393828E3611A0514FE5822DE0D83FE3 /* trace.upbdefs.h */; }; + 62308A082E2625E569C1DD604CFDCC68 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDFB6898EE0877961169F16257454EF /* service_config_parser.h */; }; + 62471C5C6ED58A413BAEC6CF91EE6FB6 /* charset.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = B2332B067CC1E5D41E956DFA7CE6E4FA /* charset.h */; }; + 624A71DDD5D9758986FFC7798F730DF9 /* oneof_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E33B05535EF5E41EF088B81131A803F /* oneof_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 624AAFB5AB2C4C4E78ECD1C94FE0DC4F /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AF3A7E7AFFCB116BCA58A62A344EDB54 /* http_protocol_options.upb_minitable.h */; }; + 624C9B1457B0509B021290BAB3E6F29A /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = C66607840F6BA454D844FDB27154E3A2 /* b64.h */; }; + 62557E542D4A3210DF57611CA29E3C21 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F2C4FE4711705068B155DEDB6FF77C13 /* map_entry.h */; }; + 625692A56273A1DD2C4C9C50383A57EB /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AFBFD90A8E1D1C849CCFB15C2D25BA /* ev_poll_posix.h */; }; + 62688F1B99DD6E2A5E9FF304F57A9495 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 39830D1953A20F4FC26084DBB810E0F1 /* unicode_groups.h */; }; + 626E04631DB9B5ED5494180DEDEA9003 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ABD5A39FD7E0E2055338521FE5EB4682 /* http_uri.upbdefs.h */; }; + 627B1FBB795DE8D0703ACDE00E70AAD1 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0B4256026AE661461F8FCE4EC3AC452A /* sensitive.upbdefs.h */; }; + 6286E69652DA8A711A3DE01F9A200B2D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2236B3C70A0C88FE42642987F6390A15 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62888773E5F920A86CEFC38E3A311014 /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = A873EF52B9132D479D7AB8748F13A855 /* create_thread_identity.h */; }; + 628AABBDDDD2AA8000FD6A9102EBD5F1 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = DA43ACA20FB56311C79C7D6992F28AAF /* channel_args.h */; }; + 62A4FA3C02759E23F68D2AA679529017 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FFE02DE60CBF733A6439E8427C93AE /* low_level_hash.h */; }; + 62A56D359D3AEBAF58A065849D14C493 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 05CBAADF08EE8BD24859209020CD240B /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62AAC9CCCAC00F4B30F0E40A7EAC2236 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 6A138ACE58BC4C5A5C04C5FE1B36D301 /* check_gcp_environment.h */; }; + 62ABAEA765BF881D8A22902955147FAC /* generate_real.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ACD1B12E4F900112097501174DD7DE46 /* generate_real.h */; }; + 62C3AD1207ED5DE85F8D684E942DF070 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 6B12D111C7F03541CF1D184E640569D0 /* arena.hpp */; }; + 62CA2A008E4EBAFA3FAD20921A5ADD10 /* legacy_channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FFB2601128E7D70B325A031DAC167D /* legacy_channel_idle_filter.h */; }; + 62DE9129F0B66F7B2C6B1DF1D625991B /* call_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 24ED490BBDB3EF87E368A1D4628AB724 /* call_factory.h */; }; + 62E2EBE10AB8AE5BD98CC28056C57248 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = F4E6510E26F3D01B573896809E215D5F /* generated_code_support.h */; }; + 62E39FBC3701DD85ECC1D1B8F26ABDC0 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D009CA44950D513B66D135FA67320A4 /* server.h */; }; + 62E3E168E7C22E23E637F0ADFA9C1975 /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCE83942BD7DB8C708BF98F779BD01BC /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 62E3E85F478240DF4FD5415E43FF4DB5 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C33176FB9C1A7C9A8A6BF2DE047FE75 /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 62E605247D4ABE05F4EAF7810CF7EBDF /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB93536CE0AB9924034A6A73151DB66 /* csds.upb.h */; }; + 62ED7F1BCED82D53C27E396C9BF7B84E /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F8A74D117FB747B2B906ABB8E065017 /* resolver.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 62EDFC4866566F57B69EF7675669BBFB /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = FB803935086A92E7AE757969A977FEA0 /* chunked_vector.h */; }; + 62FD6D3ABE275140AE8FEE72B0FDE3D6 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA8605F65B76409911609FF32EE7731B /* dynamic_ot.upbdefs.h */; }; + 631ED0EFB9B6CC41EDA65522329F9839 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B35C2D34BB21C4C9549A686D09EE55 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63284C461C2B16E911FF10D7FEF54358 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BED96D4B82C8DC0E276CD5432133E028 /* status.upb.h */; }; + 63289E768A2C6AE7CC7175615E3D1ACB /* FBSDKContainerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2E7110F5696523512A09E45A89456D /* FBSDKContainerViewController.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 632DA86935A57F775BB36DAD13C6A243 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 236FB7EB10F94BB2CEB88002F4527717 /* cel.upb_minitable.h */; }; + 6335E881BCC9D94BE25A3EE6F1456B60 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C892A65BB7E8304FB2E659B82BDEDBB0 /* down_cast.h */; }; + 6337BA5FBB6B9A30A317ADD03927F103 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 419687CB1B8F58C0128C822F2401F8B2 /* load_report.upb.h */; }; + 633943E9B7C030EAE32D6006B0C0B32F /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A9D93CA6C1501391B4F4BEF8FAF995 /* completion_queue_tag.h */; }; + 6344B6C70B8621233001FB255C74E989 /* map_gencode_util.h in Headers */ = {isa = PBXBuildFile; fileRef = DDEF3D448B41C07B784BE9937D42DF0A /* map_gencode_util.h */; }; + 634697B19A04D78CE1EE0ADABC861BB1 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 28C24E25182134441240B9036ED65EEB /* message.hpp */; }; + 6347BAC7A5413B01D9CA0C66E6573F74 /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 2E1C687688E4179E43A8146A8A34F28D /* sleep.h */; }; + 63494E61FD86D65E999EA70B1021BF9F /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6B6182208F7A2E34BDEE144E581BD68 /* iam_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6366D4330411182CDCD4F6B0F8B8C7E7 /* legacy_frame.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFF46DACC9B0EF489FE9CF5D23D2A9F /* legacy_frame.h */; }; + 6373D2DFC5AA3FFC329F03B092C1274A /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F4AA7AC3752739A46D62B197E81512E /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 63749E6ACF8B0827874D0F51E0849DB7 /* sync.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 6DFA8D18FB0263DA1A408EBA8D850BC8 /* sync.h */; }; + 63774D47646AC5043B1A89DA318BBA37 /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BBEE13251473BD2958F08E493FFE2F4 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 637C8A2A48C7AA51532DDFD8861F003E /* FBSDKKeychainStoreViaBundleID.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E4FEAC9D7C60FB9108DCBD5224C8F1 /* FBSDKKeychainStoreViaBundleID.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6380B66C9BBB1693D84F0C2E86ADEDB2 /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD359EFE131119C3670E51148A9B5A5 /* gaussian_distribution.h */; }; + 63A52E739D9E59DAF86448F25E148BB4 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 283C228C6601C0F7264092AF42AAA4BE /* alts_grpc_integrity_only_record_protocol.h */; }; + 63A91DF5BC87EBDB900BBAB2B983B00B /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1B67A0B06607E185F277467D822D23DE /* pollset.h */; }; + 63AE49DAB5DA02D71FE5695A9494361F /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2B3BB603EAB95077AC40720EB6D92B33 /* xds_certificate_provider.h */; }; + 63B64F3118AF553F378278025B563287 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 854216F87DBF70FAB2A5154CE6220BCD /* range.upbdefs.h */; }; + 63B852309076379032923D85D54A49CB /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FF1A97EEDC57A23F57950A152AB7EE /* ring_hash.h */; }; + 63C99061FB7872DF36AFE8ED19021ECA /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = E5855CB8EF614C784721D385DD55AB65 /* pollset_windows.h */; }; + 63D31BAB7819394683675E0331CFA6D8 /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1898B05547D6373D26BCAD112102CD73 /* filter_state.upb_minitable.h */; }; + 63D39A9B2185E28C1EFA651A5417FB70 /* FBSDKSmartDeviceDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E10FF0A835D1B99FF5561E6F60FA33F /* FBSDKSmartDeviceDialogView.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 63ED44CE5DFBA41DEEE9662A02067E0C /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = E36B6486D41A689A74994A55366E905A /* def_pool.h */; }; + 63F11487AF8C90CDB35618B25C62C9FB /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = 816C15635BFB8181CE99987F2795723C /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 63F189F801F1033B8FE9C9FEF3D67A3A /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 63FA57A6870A52F8F832B19518CDD628 /* http_inputs.upbdefs.h */; }; + 63F3E099FC6B428D38CD6182F458F58C /* hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C0B8A7D90FBDC61E51E7197024F6C75B /* hash.h */; }; + 640B4629A846CDA71EDF1016411053E2 /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D04C579CB55488461426BAC5DE08222 /* pretty_function.h */; }; + 641228E8676228077B3DACCCA8CDE9CE /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = E0051CD0E177B74514A772B429A3652C /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6416A1503BD54BB49506AB1B879AF51B /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD4716CB01EDFB72751EE65E6FA6EC1 /* seq.h */; }; + 641B4E6B1C1302B894DB1D44F53D3953 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 02361B4228FF40FF56250802343DC604 /* spinlock_posix.inc */; }; + 641CFA5C09FB0DFCC6B5D11E0B00DEA1 /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C56898DAD60F277E125157F471CF4B14 /* certs.upbdefs.h */; }; + 642CC20715D8D3FED7364BAA925F9DE5 /* GoogleDataTransport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7612BF97ADC4FB1D74DDE3BBF63F33 /* GoogleDataTransport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 64331E7C8A41912DC12EAC72AEFF634B /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 762C0B1A2FB7FDE676F7D47A67E4F8EE /* slice_string_helpers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6439700E5A4EE8F58032036C1D40E078 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ABF6C53DC79ED601EB36638EB1616C6 /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 643A7AFFB7AEB70B2B9B7E0926055023 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32676B0C10156AE2B44F62123826606B /* RetryPolicy.swift */; }; + 64402CBAC2FA52B1C5936FD4D76AE0DA /* futex_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A789329F38CB15D560580E9B75B4DEDC /* futex_waiter.h */; }; + 6442315A59C5357A0598579C98BF25A1 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = F20DB90E1645750897BACD90BBA9BCD2 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 644F818F2903C5CCEC7C5A86F4ABAC2C /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = FC46768EA18433FA2C87D77C8E6C8B4D /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6454F66A9B536C71B368DF5CC26AD840 /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = E000A6999D93551FCE57AF2FC8B1BA0A /* substitute.h */; }; + 645A7D03213223135AC298D682FCCFFA /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = B66943844840BAEC8763BF3B66857B64 /* file.h */; }; + 645B8564DC767DEF1C898AFF1C61CACB /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB2267D7B9EE7EC9F57A1182DBC6CDF /* route.upbdefs.h */; }; + 645D5118A72618BF279849E08E6D0E9A /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EA154D4311B37BBC298E6EAA5B3AEA28 /* lb_policy_registry.h */; }; + 6462D28B8D6AC657B7AC339E924710B7 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F8CD9192364C8487BFA354E0273FD2C /* is_boringssl.h */; }; + 64674F5BC563685ACE803E7F355A78DE /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 55F38CA58DE8AB962922BE08F09473FD /* endpoint_components.upb.h */; }; + 646C8C3C012EC96EA8EEEA6EF5D57EB0 /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = EB07A5777126E2A5654DD1C184D22AE2 /* binder_server.h */; }; + 647754CA24A0A73E08D664C7608FDAB7 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DF61FA96F7F3A4606D9C93D4911C5B6 /* pollset_set_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 64775E7CB89E46D30CB3FC01DF3A810C /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E62E8AD2C9FAA683A293044A73D5EE29 /* tls_spiffe_validator_config.upb_minitable.h */; }; + 6480D844DFC7A2431640CE779F2DE87D /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2089B445061FAFBC48BACA58CE38AB05 /* skywalking.upb_minitable.h */; }; + 648D03A5E7627188917B2EB6D7DB721F /* crash.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8C8772FF80674969F8FF5111EFC17888 /* crash.h */; }; + 6496946E79823F454FF9105C4B114E26 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD1D5B45AC6E6EE62D7BABB14D0653B /* dualstack_socket_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 64A0897E42100342518F49FDFC5F1786 /* message.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = B6D51208312732FB36AB71D08B0F42E8 /* message.h */; }; + 64A417B91E30FCC93A7A2D838F1DCAC2 /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A42BD801C841DCE3C63BBC355E88E2 /* skywalking.upbdefs.h */; }; + 64A976D60542579A1B23111A3617A993 /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57978688775ACC7EF64DA13B100A43BC /* compression_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 64AC5A516AD5022300A34438743E8F27 /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A29984D6CA3171F4061D9E1AF5568D61 /* overload.upb.h */; }; + 64B5D8632FC360F5F7553A0A2A0A3F54 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 6C04A05651F29B3B9FDCCBB65195D576 /* empty.upb.h */; }; + 64BF11CC2485B586BB89028C3EDF701A /* quic_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE08784F701589EFD28E5951611563D /* quic_config.upb_minitable.h */; }; + 64C0842CEFCB1D54CE9BA5139BE04C9B /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F990A5D8B9A16D1ED710BAB8A577917 /* sub.h */; }; + 64C350AF4FC0A0F9913F9B5EDEE1AD25 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F287DA867598B6EB8605EBA680DCB72 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D24457C4F0E378EAC52ED9B105BE6B /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 94D8C27A90F5A1D114AB7894C0237C24 /* FIRCLSFABNetworkClient.m */; }; + 64DC088A1E71BA3EDED492B9D970B1E5 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E480B17940154F4D8AB853CA61DA4E /* compressed_tuple.h */; }; + 64DC85582092C121E500F63BAD8D597E /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBC8426187E184653238E496DDDE9A0 /* lockfree_event.h */; }; + 64DEFCEC7D2B80FA9069DBA94814CA77 /* sequence_lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 2620D4DE0C9CF49860162F5BE574AE77 /* sequence_lock.h */; }; + 64E477F05317C5BC028D8B847AFA842C /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = 24095270D50CB4758E5CCEC708790AFF /* get_current_time_chrono.inc */; }; + 64E5656E428485DF60A194737551FC00 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = E57F895AB305777BE67D86C1630260FB /* message_compress.h */; }; + 64E571BDBC15D50F96842F9412061FA0 /* quic_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D20265072A1FD6E8339F59CAD76479D /* quic_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 64ECBAB824F61324DDC1BC57B38999CE /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D6A3733CE167D7FEC12B05752F98F9 /* endpoint.upb.h */; }; + 64EF05BF4E4887B91DC1A52D9B0572A3 /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = B1AE9CEC1FD5628E6FFEA201AC69D619 /* crypto.h */; }; + 64F1E160B49680DEA84B57A0760BC764 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = BCBE467CBDAB23EC9FCFF164E8E215E3 /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 64FE298AADF935969AA6B6B6FE079030 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D9602C0EC12C594ED9982B5DFDC241 /* proxy_protocol.upbdefs.h */; }; + 650B0840FF3679A44FC2C7FF38312B97 /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = E85E41B999FF5D89065282164048DE6A /* load_system_roots_supported.h */; }; + 650C9A00B5DC1BAFE81FBD7CCCDB7001 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 478AAB730F5636516F60FFEC4D893353 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6514727661319FF83EF43E7758637A5E /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 49902276A606843554D993EBF875D2B6 /* grpc_polled_fd_windows.h */; }; + 651873771223EC4EE365F4C7CC7398E3 /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0276C2723AA5063CCADC3B1F6F7B29ED /* work_serializer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 651A62AE500FE45E8E44BF04AFE8DFD5 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3E2491CEE808522A722F6127329A321A /* dynamic_filters.h */; }; + 651A8AA9A3FE8644B47348F95048EF1A /* GoogleUtilities-GoogleUtilities_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */; }; + 652351695D9E6A3D8E1D106BF539A9D8 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F17F7B5049ABB1E34EA9F558ADF427E8 /* rbac.upb_minitable.h */; }; + 652C5991B9681D57FCCDB13ACF6CAA37 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F3F19422D2672A4101A077675510D0 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 65324B3F82DBF429C59A4930FAC8B148 /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AEAE35DEA9EEA2262364F6421E98C0E /* authority.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 65554B91B9B66B480EF5C1FBC23F4CD8 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0355BC986A49EF068ACBDCF7C5170EF7 /* authority.upb.h */; }; + 656A427F1722FF5208860E12D21AA7A5 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 185F402C6BC0DD91C9B9C49ACE22C4BA /* timer_generic.h */; }; + 656C3594E8DDEC4C636E0436DBA01CBF /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = 69423B8ECFF23B815658A5C0A7E97189 /* cord.h */; }; + 656D84A6194E407BFD038B62591526B7 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A138ACE58BC4C5A5C04C5FE1B36D301 /* check_gcp_environment.h */; }; + 6579B069DA8FB2F9A05CDD63D99BA5FB /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = B4433F0BED3DD4926BE32C7F59CCCF02 /* const_init.h */; }; + 657C2DB81A2D6229D502A8E609ED2326 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAC9702E2E5E90DEB21FFBDCE056E94 /* lockfree_event.h */; }; + 6581274A3008A001BB5EF4F121BFDB4E /* log_severity.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 9B0BFEF42471D917AB6C142BCD8929B7 /* log_severity.h */; }; + 6585F18E7C2F04A86B6CC239CA87F758 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = E3FBD46377D84D308E3003F107ED8D4B /* extension.h */; }; + 65943D286403099D5A70ABCC1635FC0B /* grpc_types.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FDF8BCE89F1059EF0BA4F800F10C4AB6 /* grpc_types.h */; }; + 659DC72673415500539C2DB5B0EDA10A /* address_filtering.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 8929FF57D3D03B791A9EA1603986CBEE /* address_filtering.h */; }; + 65AE4383FAD0DFE4F8B0236DD54B41F5 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7E9213F2DC30EF0DE2EB9B35CE8676 /* span.h */; }; + 65B17276A405E72A43AF6E70CD30FF1C /* atoi.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 012D38CB2A5FC9FAED3FE3292D3636D3 /* atoi.h */; }; + 65B379B1721E61EA06DFF2B1CC55E6B1 /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36DD3ADEEFD9E33291312B9715336FCE /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 65C2E0D4DB31B5A1D4C2BB768E779831 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = BF825F80971C4CD99524379DAF8E2986 /* bdp_estimator.h */; }; + 65C81003758D6B69A140D1A43FEE58F2 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E33B9DC8286E7D7622541ED644366CF2 /* accesslog.upbdefs.h */; }; + 65CDC41A0B1F974B305F2767B1C6BC53 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 400CB3556B9BCCCAB0C82DB5F6A34E2F /* inlined_vector.h */; }; + 65DBC75FE34EE64840B272EBC7C1607A /* filter_state.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9663D82191E02C38BC015198778A73F7 /* filter_state.upbdefs.h */; }; + 65E25D5856489E7DF118324236F7E352 /* distributions.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 78AC8BE5573DA4BCAEFB1597234B16F5 /* distributions.h */; }; + 65E9D5091E6DFE97827BA143B60C250F /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E1D43E83F0B82354793EFEC4E99128E /* raw_hash_map.h */; }; + 6604D0B7C29F0FDA4C9D2BA0A7C29BD0 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7C91C465D8F1AFAEED9EDA3454A11D /* rbac.upbdefs.h */; }; + 6607FEBE6B2C5212AC989B79F3BB5C1D /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D585D0EAD8841546ABF0FEFEA074697 /* ext_dat.h */; }; + 66109644FC4845C3D12C76C6B308EECD /* internal.h in Copy crypto/hrss Private Headers */ = {isa = PBXBuildFile; fileRef = 39D601C8F46E9D48D202B1E18F8491A3 /* internal.h */; }; + 661C1EC9E8C2CEA84DB5BAECD6629081 /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 22145A7E97FB26B795471101E9F0A9D6 /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 661FA226897DEFDEB306C92749CCEC26 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7F82F9065E1F398199DE5E6C0A3DC5 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66248555075F25E547D6F77CD2045697 /* interceptor_common.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 24F7FDCEFBA540A7C52ABF77C8EE2173 /* interceptor_common.h */; }; + 66292897BF69739DBE401E7C413E3BF3 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A79F5FE38C8F9BC49EC5AEE5F448CD4 /* csds.upb.h */; }; + 6633C55F92945BE2DADE6206FA596A4C /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F07C38C90BCD4AA184FF712117FD11B /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 66380169FF9312B7ABF316E1CCAE56EB /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7D0EA374E7DC6570B9EAE49B3B444D65 /* xds_common_types.h */; }; + 6639E9470F18E45F90F9D189E8AE651E /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9E30F3FF6DEE7537BA04B9CFC9C55804 /* event_service_config.upb.h */; }; + 66411B211AAEB0C4DB6491A8AED6FEAF /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C285AE5D8F22449099FA4272F7D0CFEA /* WKInterfaceImage+Kingfisher.swift */; }; + 6642296B99A86813E93C1EC3EF20D87A /* http_status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1AE7BD9E237D414D403E7B2EAAF696 /* http_status.upb_minitable.h */; }; + 66474D186A01A75C2004B0141D25791B /* metadata_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9461B5E154D64A279B22580F82EEA208 /* metadata_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 664D79F7C718836925CE59BBB8E16637 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD1DA5F1D05E410CFB288FEECD96651 /* string.upbdefs.h */; }; + 664FF3BEA86866689DA69C7E7BA58D3F /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E42701F635480077E799571518383E1 /* security_connector.h */; }; + 665231B2F21AF16F8B756A892CECD621 /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = 6FA8264FE0BE5CCEBE7315BF7BF97D0D /* backend_metric_provider.h */; }; + 665FE432CCF7254403FAFCA3B90C5E3C /* statusor_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FD0C7D6450F5399BE524879DCB64289F /* statusor_internal.h */; }; + 6663A5DA493652778B1FA72013952D6E /* internal.h in Copy crypto/keccak Private Headers */ = {isa = PBXBuildFile; fileRef = E491968D4021EC9A85D6338ECC019D68 /* internal.h */; }; + 666FAF41D14854280223C83A71291953 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5FE687C364CFCADFD0975914E4783FD /* regex.upb.h */; }; + 6675E21A3252F368C56CBEBABF8DE614 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C2AA941CE78C012AAD80D466313AF2 /* GDTCORUploadCoordinator.m */; }; + 667883AA85E5226F33D36D66341F05F7 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 16FD4E9BABB88FB97116EE4DBAE48451 /* matcher.upb_minitable.h */; }; + 66842919A8AFFEBD5C5CC39890ECD6E4 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = C7811AAF98DC97B3D6544E943B0A71C4 /* slice.h */; }; + 66883FE784C04AE18CA6CD0241D857E4 /* auth_metadata_processor.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = E8C5ADC0757EB867BCA46528AA81A02A /* auth_metadata_processor.h */; }; + 668D596118E4AA5DFF4187193712A94A /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 1842D368371AB6CA79162185CAAD0926 /* FIRCLSMachO.m */; }; + 668E557415951989292E7405EBF33CD7 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 91EB6F331BA860997B6488517FE97AF8 /* fake_security_connector.h */; }; + 6698171D454B4DFAA3AE84B639E9BFC6 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0C2B5B87812829628BB6C3E0A86A46 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6698C409CA2D64CEE3791627C4828DFD /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = F900D9D1C7A5788F548A4BCF91448FB9 /* arena.h */; }; + 66A230187B49F6A32FF9C75131C5ADAE /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A33D48BC425AC45AB0FCF79F242F56FB /* health_check.upbdefs.h */; }; + 66A4EA75625B3F22E7406D3B9363684B /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4502DF4229C79FF44246F77437D0FCB2 /* socket_option.upbdefs.h */; }; + 66A65F613DE70655C20AC7FABF2E12D6 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 838F39061E11114C9BF20600CE4B135D /* pick_first.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 66AC18A45C9A8686A6DD9DF45A12ED44 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 79EAA928D675B822E9979B28044C7FA3 /* loop.h */; }; + 66B21A8EB0A31752C6790114ED1B1083 /* FBSDKAudioResourceLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F70FE57E11800EF1CCB64314B729C00F /* FBSDKAudioResourceLoader.m */; }; + 66B2DAC22557AA25686C23074DD1D26E /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 870EA786718466F55F05BD043D9527D4 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 66B7A0D82E1E14693EA0BEBE187A30EF /* FIRCLSSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24D70C4281F8E4EAAB910713E7701F51 /* FIRCLSSettingsManager.m */; }; + 66C02638AFC2E77FFDCC6A87B5F2E083 /* vsock.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EB4CB7999B9508CC0FCC25E96CB6F1A7 /* vsock.h */; }; + 66C47657CAE59FCE9DE9F34DCA1B0FB5 /* health.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DEFCC66D80F61B7A7D26002208AC9722 /* health.upb_minitable.h */; }; + 66C62860AEFEA7E9FF45F82E2A1425E6 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A214EA7CD6E64CFC844620E5EB3E5AD1 /* router.upb_minitable.h */; }; + 66D32DFDD0D2F4238AEFF93E25FAF6DE /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5B634960A95BCA97A0BE96348A6EB9E /* bootstrap.upb_minitable.h */; }; + 66D6250EBB72CC76E6F6C626A70A31E2 /* common_closures.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEB775B56D6691753FA42C9B6C2DB33 /* common_closures.h */; }; + 66D7F5693051245FC21647AA6248B078 /* http_protocol_options.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3A7E7AFFCB116BCA58A62A344EDB54 /* http_protocol_options.upb_minitable.h */; }; + 66DF3CE227C3B2BB62C84A85B9A296B0 /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D951A55BC63295E1E9A0215A700BA5E /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 66EE9FC86729C0312D502976B49AD003 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5928FFF79984ECB96858F2A90E2E4381 /* custom_tag.upbdefs.h */; }; + 66F1938C9EC710395D887E4B1E80A986 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7897D9D1F4E2CF2FF6099EEF1D39C29D /* context_params.upb.h */; }; + 66F325B4B049BC5DD1940EE23923159B /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E1C415A85AAD1E8BB9D55A99A234C81 /* oob_backend_metric.h */; }; + 66F8AA5DD584D2B4BB04E8BFF62A20FC /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = A86CDD720B85B6EAEEEE5744666EDB93 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66FB9E95653A4788E967ECC055207A0F /* curve25519_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = E5E4DFA2E53B585C9BED91D23E32A759 /* curve25519_64.h */; }; + 6706C34E30C2C4FF937386B3FDB8817C /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 2D398958A26A10F74828EB941DACFC46 /* resource_quota.h */; }; + 670E8B064EFDA4369D8084A09DCB2E6F /* FBSDKImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = FAEE2B42629FAC247797E148433305F1 /* FBSDKImageDownloader.m */; }; + 671277A86E70DD6859AC876BDB6B8E94 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AC6457C721DA445D18556884A2E015 /* FIRCLSApplication.m */; }; + 6718157C69390FAB8837A40EF70857A2 /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14B0DFF095DB5D756F17BDA0E9B4B0BB /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6719698AAC672AADD262954001455AD8 /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFF2329F4927600B649F3D57BCB8CB7 /* service.upb.h */; }; + 671CD9788E306123CD4B17C8083D07A7 /* endpoint_addresses.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 538B140C5121F157D97EC84E6A98A4DD /* endpoint_addresses.h */; }; + 67206ED663795F4A0F15C2BE28E6D373 /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = D1595D90D24245D5C32DBFC2F1A46F77 /* db.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 67230E79D72C8F3439907A48E23C2B9B /* wots.h in Headers */ = {isa = PBXBuildFile; fileRef = B9CD933EE59BD639887A59ABF4FCE8F3 /* wots.h */; }; + 6723296AEDE10201A376B40832FCF5AD /* desc_state.h in Headers */ = {isa = PBXBuildFile; fileRef = CB1C8043CBEA5DBC3E41CF122F93309F /* desc_state.h */; }; + 67236F44F6739F08DE67B857C3C40796 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 7FBAB3464975EB6D9038D9AECC945B53 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 6731F317DE0FD1CC6B7A8CF1908A8FEE /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F89288C3BB926DAC350E0B256B42721 /* hpke.h */; }; + 6735EFA5FE61AFA4C1763D37622EF136 /* sync_custom.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C6DDA94EE7AE1D4D6055648D2B9AC0A9 /* sync_custom.h */; }; + 6735FEABD26D7A6047FC101F95DEC2A1 /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12AFF6F4310683561FC281C1B13A47B1 /* transport_security_common_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6739D635335620D69B09E80A60FDE204 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA6288855666920C1EE116899E876DE /* evaluate_args.h */; }; + 673FD541EBEC78D10C162713D2087B0B /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 55720247EA3F571FF8A9D8E803A6B07F /* field_def.h */; }; + 674A167B4E232EAA332DAA8190D23FE0 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0E5D66C8153A679B6AA9C2132E3018C0 /* ares_resolver.h */; }; + 6750DA8F578B36432F369435A779339D /* symbolize_unimplemented.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 8837AEEDD09A4EF408C833BDE339CC00 /* symbolize_unimplemented.inc */; }; + 6755AA802509CB6FD33F6CF993D32388 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = F384EE336F02F729D1F62CF993BDF991 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6761A196033B4751FC23DFDF2DE28254 /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F3768B57E7008496EDBA7CD454B7624 /* utf8_range.h */; }; + 67694C318D16C954646F71283D2876F6 /* rls_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C13BC52E811A63E3CA58F6F41F76E1D5 /* rls_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 67696479644649E9B922FD1FBCAB8A2C /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B22FD52C153583C274B8A3C2D13DC7CC /* gethostname.h */; }; + 676FD82025FCD4624539B5BADA70C711 /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B26B15EF94416A6BF55CD0B2A154B6B /* rls_config.upb.h */; }; + 67731AB83AD498B888C4506E250800A2 /* seq_state.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CE467D40FD7ADC5242C107F093DB1D /* seq_state.h */; }; + 677CA0B123DE325B0D2536108B683A57 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3026180E0A83C41078F526B57BF0D13D /* binder.h */; }; + 677E1B988FD7F53AA3FB29F9BBE0B7F0 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F083934ADAE112320E04CFD9D82CA9 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 678E6D465E7685098CBC5D68F08E3C35 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDA82C1E7BDF827622D625AF2FE273D /* outlier_detection.upb.h */; }; + 6791ED90E417FF01967C83E2D4F32F03 /* enum_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EA07D9F1927D34FFE020272294E640F /* enum_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6793859D0DEFA8750DEA3A96112CFF94 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 64478F3913F30524428E5DADD73A7F16 /* extension.upb.h */; }; + 67985F57558F6C2F837DE79728A5BE1A /* FBSDKErrorReport.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4A5248F7E2949126EE05A4713EA468 /* FBSDKErrorReport.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 67A3E5ED03322DAC07B64E2987E4E623 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06FEA7FF178B8A88A11095A696441C2D /* overload.upbdefs.h */; }; + 67A995DB1D77E17C260F7E21D3D3B02F /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 1353F2D3E457B6889CAD01ADA9700210 /* gsec.h */; }; + 67AC3B4311218D1BD04E7B3A76BBD762 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = C419BF9A35E1769C3F240F7E3463D611 /* message.h */; }; + 67ADB4E289B8BCB04DA92C816B9D8542 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 580D6802C74BCA849523E8BD1F870A5C /* ev_epoll1_linux.h */; }; + 67B10FEAA3B7E5387D20E76B1085E94D /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28270FA4B1F90288064B7E65BC15DE10 /* URLSessionConfiguration+Alamofire.swift */; }; + 67BEB88A31E4C2A6CB0D40AA5D12A6BD /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC24528FFFFD76AA1DAB8B44063A318 /* thd.h */; }; + 67DC89540CB5FCAAF89F75A8DC1E5740 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DFC5F1EF85B1566AE050D0BE26B7A1F /* certificate_provider_factory.h */; }; + 67E5C028DF5E3C5D666003527A28826F /* waiter_base.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEDE465CCD5939B09CB95A3DDC3A91CD /* waiter_base.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 67EC738381BA17A35A4E1C7DF9D90F02 /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34932E28AAAE26B834270DECA26CB21B /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 67FF0E88752D508BCC03CF3C4AF83311 /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3BF14A0EF71A0E192691B9D0E517D5BE /* authority.upb_minitable.h */; }; + 6801EE02F2FBC569FAAD7C864EC9F8CA /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 6EE50F4728219A2FD5A3380A09EE9339 /* proxy_mapper_registry.h */; }; + 680893739244C2C15CAD6D0F36EBF481 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FA0C9AC2F95138B3B3325DF690AE15 /* FIRPhoneAuthCredential.m */; }; + 6809BE9C4D01FC538B1A9118BE75BEA8 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E395AA2226A7BDD9C91EF73D2D4FA29 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 680F3B76A7E88852A7CBCDDCDB5D225C /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C03AB390EC095074B35FA2992997DAB /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 681372760C3942F02288C9DFE086091B /* ssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 700D749E5DB470FC9D9AA3C0FC5B279B /* ssl.h */; }; + 68143A91DF0260BAB9F3180AFA82FB75 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7048DE6824E02773E82E3B0A8FE67F6E /* timer.h */; }; + 681C519E1AE631100180742F96DE8B0C /* cordz_handle.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B82CB9029CC7DCC729DA6BEAAE78E851 /* cordz_handle.h */; }; + 681D873A2BA28EAF7A201DF349871146 /* PromisesSwift-Promises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 067CED0F0662BBE6DC889AEC6DAB3049 /* PromisesSwift-Promises_Privacy */; }; + 6826F00CDBBC1F3296D45E1F0F70C4D9 /* ServerTimestamp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9817CF458CFF968B6FBCB5F8064B01F /* ServerTimestamp.swift */; }; + 682CB8725DB9FE945B817BB3533A4DB6 /* map.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = CCFD3073A0A852C4C6B78C3B431F2E5D /* map.h */; }; + 682E1E54725007C5F836DCDCCD6FEB65 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 099F6BC1C79B0EF25DBF8F7DE2D03C0C /* server_config_selector_filter.h */; }; + 6841F3F72FDB82DBB54092A6881BF90B /* p_hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = F6E8A037B2143EBAB9C58ACABA15253A /* p_hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 684D92925153D4B6C03407A1E06DC158 /* http_inputs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DF14F99E972BE43D04D6F5303651B6B3 /* http_inputs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6851F20AAA6A3E80063CEC68B833FF99 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = F3195573A457B63C8368D974772BC6DF /* oob_backend_metric.h */; }; + 68547F99222CA181ECDB95186DB92C10 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECD6A46506DBBBB7D4E96BF4C1906FF5 /* metadata.upbdefs.h */; }; + 6857C236C43719538AD7FF4DC4C84F34 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B7C62D1C00C5C28F0A64450FAE15F7 /* config.h */; }; + 6865B04BA7239AB0797BC91F3A70426A /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 98FBDFB1CAE16EA841333FFB16C3A748 /* fork.h */; }; + 686969B5F05CD666C8BC0113ED9FA729 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E88BB8E982D064DB4DFA2F15F39AA07 /* alts_grpc_integrity_only_record_protocol.h */; }; + 686B42B7060353FDE4591BCAA0189993 /* placeholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CD638465FF48BDC7189CABD70D36728 /* placeholder.m */; }; + 6871DA5388F29BBCCCA4223D5B81768E /* crc_internal.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CD363402A52BFDB81950FB8A9AD31317 /* crc_internal.h */; }; + 687A784D55C6F83A8E145FB023434A0E /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5277A88F40377DE52A4322D18007D983 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 687DFAD73B7F5503FDA5266C09DD1371 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 688155A6BD324568682ADFC162785FEB /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5A7F4CE0A73B2AF9AE87509AA7B9BEC4 /* executor.h */; }; + 6881DE438EFEF3160714EE1C9959BED8 /* str_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 636EFC315727A9EA1DCC5E55866C100A /* str_table.h */; }; + 6890A7EC444325F2554F134AF64C07BA /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; + 68962AEAB2953CCA8F5B7C0BE02F38D5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 689BFAB11BA1F05184D0DED1D19D7991 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F39B91D83D5FFE922432A7C93BCB3F43 /* struct.upb_minitable.h */; }; + 689D0014CA909B1094D7DD5CC72841E6 /* string_view.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = F3DB86F1C8A87A2078E5688E20CCF221 /* string_view.h */; }; + 689F07C3A1346E7113CF712A2BEDE9E9 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A2A5EB3F6F5489BE98226B601B3CD96 /* string.upb_minitable.h */; }; + 68A011828F61DACF5AD28E8FB685251D /* TZAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9744DFDA34D54AD55C06A4B257D4C5 /* TZAssetCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68AD69F5168725E35BA6CC156E7B5C56 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1DCC6A0C6704846636ADEC64C251A200 /* sorted_pack.h */; }; + 68AF5CE54DF91D0EA6E1DD02432DCB0A /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 499B4E6838BDB69C7A9A55059CEAFDCD /* Placeholder.swift */; }; + 68B6255EDD0233FC9BBBB2D41A1CD3E6 /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = C565EDE80A45E49DE25870DC72CAFA4B /* thread_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 68B88F0F8603FB3438AFA8A8299D4862 /* FBSDKMetadataIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 68155A29D50E031C830947A2D8B9E4DE /* FBSDKMetadataIndexer.m */; }; + 68BC90080411C35096855DEB20F96ACD /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 56C793A7743C3F389A54C3FC2DB4EEE4 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 68DA676AF43541C223174A4B188AFB78 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = F540479D04DB0550BEBDE6CA957DCFDD /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68E157BFF98FA3337EDCD8DE1C06FC6A /* rpc_service_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E8CD8D1E0B764FE6FD32B0D36BEDB9CD /* rpc_service_method.h */; }; + 68E3782BF957AF3CF39D720C59AEB8D5 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEA5EEAD4956C707F5C0692DADDC05C /* router.upb.h */; }; + 68E5C925A69E7D74A0EFFBB272F2BB69 /* route.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 870CD5188086A752173453315BB63B43 /* route.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 68EDCCCF544F4C420C638FFAB294C9B9 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2ACCEBEBB64B45B9BDC43DCD6B707C /* intercepted_channel.h */; }; + 68F209402F415ACCC415EB8E6379ED07 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = 485E3A964059997D52122C04D2E4BA02 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 68FF68E483B0B64A668D5546A5EDF943 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E6500E9C6B27D79DC31C95876702A4D /* number.upbdefs.h */; }; + 6902D785A69604BDFE45D460B85589F7 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = A5CDFE20FEB8E09D77768BF181F62299 /* stacktrace_generic-inl.inc */; }; + 69043AC818D57157A22D3379B785B677 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9A14C4C77828C8AFC0DF86CA0284830 /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 690DEF5F2D5FDCE92C666185897AE941 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7FB9A89A3B2FE62EB2D3DEB8CCCE2A /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69185BFA6983695383E321F26177C719 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FB2B35A874851C321EF329E989399184 /* tsi_error.h */; }; + 6919C8787F5A3637EA83AA1F653EE25A /* init_dump.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 276F5530AA467761484346DEFDBB8970 /* init_dump.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 69271D1631D82DC48ADBC34CF690ED4D /* cord_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C10AA26106F53319997F71F8CD9C487B /* cord_internal.h */; }; + 692A6D5C865311AACCA5B23AA81BC499 /* base.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1972B35C0A57367E0B2C3FBD2B38B7 /* base.upb_minitable.h */; }; + 692BF5C037FF3092C9E8FD0E05FC39A1 /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 450847204EEFA331B43F9EB3920E84EF /* health_check_client_internal.h */; }; + 692D98C70C09F9F964CD043CB5DE1C5D /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 103A16559839A4675EDCCF7E758E83F7 /* attributes.h */; }; + 693224FC54108BED2A00EFAF2672DAF0 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 313C0F196450D3CA24761F6349B82782 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6934CA159FC54374A36AF1D62EE76AA3 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F7516034F08E36123C3BC50D7FB0DA86 /* oneof_def.h */; }; + 69447CC2528DDC76BC37D69A7D2011B8 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = E778B7D46D75B0BEF8832E8FADEAE7B4 /* delegating_helper.h */; }; + 694B6D336CA4ABFA2E40F1F4007D994E /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41A212B47A780E54A02B2B08361FD976 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 694D38D3AC6090A329EFE7948BB5E1DA /* if.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF3D98D027C9058813256B55EB44FC5 /* if.h */; }; + 695511E38BA32F4854093EF32E46B133 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C739F281A89E8C053EA6B587FD695427 /* socket_factory_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 695D4D2FEBAEE430F32CFB8765333F84 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C22D3096C6673EE6416A7A6BE76918 /* GULReachabilityChecker.m */; }; + 6962B8425ECB77EFB249DEBF28AA687C /* trace.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F02D3C51C7B76AD551148EDA431BF4 /* trace.upb_minitable.h */; }; + 6963168CE50DC2A1EDA01767989F2BB0 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = DF89B817DB0D1820D47104ED5AB029C7 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 696762BB6BCB912776DE0CADE4F43AFE /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C42891D51C56A8C09151F3D8E30C004D /* number.upbdefs.h */; }; + 697119FF7E1B1C8FEA7F967DF6977767 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C82A2E376BC4C3E4100995BBAB3D0C /* util.h */; }; + 697AFF222A8E58239B8FCF467CDAA4FA /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = ED56646BB59EE4A2EBF55FEAA83F1ECE /* stacktrace_win32-inl.inc */; }; + 698568785DBC9A9658686001D243F78D /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 11819201010D1147632474698D5BBD12 /* health_check.upbdefs.h */; }; + 69950A036CCC67D2ACEB0AD0250D7B18 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = 5422B66B4C27265280D267EBED53A5BF /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 699F7019CB9A246BC5D0055314BE1F81 /* tls_certificate_verifier.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 9FE96638582EE7A76411ACAAE0392254 /* tls_certificate_verifier.h */; }; + 69B733E4E54AF3EF033BC4AEB864DF2F /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FF915538D63E29C8CE85AA7396C7AC47 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69BB1640380DDB2CBE9F9005EBEC85EB /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA54045BB71BE44078FE3042DD53E5E9 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69BE9A8B069480EA076749FDC1483A59 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F7D0D0DDD0F02A6DA735A2E4E02D4BD /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 69C27B43001200C19ECA65F7E848CF28 /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D683C33572DFAD0744BD295D2FFDB79 /* channel_stack_builder_impl.h */; }; + 69C2EF2B28E59CDF15A29607B36D1394 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9414A536D1EEC1AB4E4D5C7B590B915D /* check_gcp_environment.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 69C98E5FBE5B9A909673D5DF8C05C28D /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A513F78FCB0003B74D0D1DC98FF0F8C /* pollset_set_windows.h */; }; + 69D07BBB6641693C30C1D2A3774F6721 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 977E2A9B31BE581F89C0547CC302790C /* GraphicsContext.swift */; }; + 69D42851AD87827A775E89DE415CC151 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 76010ADBA30FF1243B36A8720B4BDEBE /* tcp_socket_utils.h */; }; + 69DE75BA185BBAB5FDAA28321F3C849F /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 426C11C02F24907B2CF9D9B94D0D8D5A /* ConstraintItem.swift */; }; + 69E3F89AD8B748C2B9C7AD8094A4611A /* RolloutAssignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FDC3A82ADCC8D010A0225D02B019356 /* RolloutAssignment.swift */; }; + 69E7F30A05D3246F52CA471DDCB8DFE3 /* thread_identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 44F626D46E97CFC859A6FF390DE4DC07 /* thread_identity.h */; }; + 69EAA07DECC9D32DB8C40EBC6D927E0F /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 50A88051E1C14B1F2B486B67F2143855 /* ssl_credentials.h */; }; + 69EC3A335EF940D91C47C0329CD56796 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBC548C76E7632065C5CFAEF3C9F8C1 /* udp_listener_config.upbdefs.h */; }; + 69EEFB29BBFC2FC05906050586050DCE /* low_level_hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 44FFE02DE60CBF733A6439E8427C93AE /* low_level_hash.h */; }; + 69F7A2DD0A25006C0604819457D4A284 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 58346AF408FED4FB13D306374A150883 /* cordz_update_tracker.h */; }; + 69F81B390CAE1696337BFF0663E0624D /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A07D96300BE8A595516F70D7A5BF9C6 /* init_dump.upb.h */; }; + 69FC65826C33C632169D7614A1C20459 /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = D744B47B69C5F517E0492756EC3F0EB5 /* tls_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 69FE518ED5298543E204E1509D30952A /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A64EA68C8FA938C01F6D920F2321D53 /* KF.swift */; }; + 6A0A7490B5AABC67850FC5F049FBE9DE /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = E149621FE0C3F038716176BE58043399 /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6A18A9B2081000CA16875A4B0E39219E /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CF8CB945BD7CC1326CF34340A5FF143 /* common.upb_minitable.h */; }; + 6A2291A3B507C2A46E0482ED3958E6ED /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0AFEDDE1DD5552D02B875A773C0DB6 /* int128.h */; }; + 6A2319F50A4F558D0963C977A892E677 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A9A4F4ED97C9F67C241DC20F5A0C6DDB /* empty.upb.h */; }; + 6A29A499C60A7A9F0D131AD2CEAEB051 /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3857955F9134BC2D339FBB5F039E8C8A /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6A2ADF64092F56E83F082868B407EB47 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6AEDE5A799EC6FD258DD054B06198E9 /* backoff.upbdefs.h */; }; + 6A2BCEA908BD2C803BF3225C6291B902 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B92D4F5FC5A8BD976E60FFEEF1FA58AB /* value.upb.h */; }; + 6A3A53D65931D519246657B2BAD9F55D /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = 90D2BAAC0D3927488518F287A5F1A4AB /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6A41AB589F0F50C76C260AD278F39D0F /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 02B95F6F6F19ACC00DBA2A8CC706B573 /* cel.upbdefs.h */; }; + 6A4C68677525A1AEDE48CE6F66FFFF72 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E436AC20CD0EA3E556C099DA9E49E4 /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A52259B723D1F6930BEE0B705CCB919 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 205E39A569C9F6C3DC1F357C3FC1919B /* ascii.h */; }; + 6A57F36D1859286B4D02BBDFADE53467 /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DBAC3B2D57D0DBADFE407359745086A /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6A5D61E95A84E007B3496645C244D039 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = B3785B2FCB259680D00D930C5691C4CF /* pollset_windows.h */; }; + 6A5DA9483D4D1684E04DDB98000F1B02 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBE01C629300257E13E88EE21567BEB /* fault.upb_minitable.h */; }; + 6A5E9A6396ADA14398DED09D57B8F15B /* channel_stack_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B00CF29F6168B1200134923B3D272A /* channel_stack_trace.h */; }; + 6A629B458088F16EA7665E5DA7D4159D /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 194E78EA270B0C18BAE95B7769388747 /* circuit_breaker.upbdefs.h */; }; + 6A6429DE9A85092834364C3A6E6CE1DE /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBC615D9D7BEB83297CE4F2712E71108 /* security_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6A66EABF16D3355ED8536AFB8F8F7A08 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD04C9E722428287419E41DAF747562 /* listener.upbdefs.h */; }; + 6A6AB1BCE17CB2FF9E2EC88837842905 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B084D75CC01E46D4E5F34CDA777C20D5 /* python_util.h */; }; + 6A6D39876919BAB828C9CD9ED48422A6 /* inflate.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = C499F2589A74121694EF4777C81E16C7 /* inflate.h */; }; + 6A72C586736182F435A47FA2F1D405BA /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 56944B690777C66F98867328B5614E0C /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6A77D2D0BB2A12CF4394039208CD374C /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 399814B0D4DA3B134F4D98D4F6951D1C /* alts_tsi_handshaker.h */; }; + 6A832F390911921CDD6240FF72751655 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 57358FC81AD350B751CEB3D16D6C0368 /* common.h */; }; + 6A8B05A0628DA5D8B8352AC8EB472B2D /* status.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 404296028BD0409F9BE60821F5C79623 /* status.h */; }; + 6A8B3EFBEA919790AF612D714A6C33C6 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A0A4F932CBF895E5F38122222C06D7 /* cookie.upb.h */; }; + 6A8F74E7BC3ACB12B3314841893A54AF /* work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 070628F21807BAB5446552D283A4F7B1 /* work_queue.h */; }; + 6A90914AAEF4327133D06943E941D7A1 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 96CB5CEDBD3FE184075B979A6D3F253E /* client_callback.h */; }; + 6A92BBF59CF76956804ECC848324E5DA /* RCARecaptchaClientProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F871BC4F63F483917B9298E5CF36A0 /* RCARecaptchaClientProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A9C70D756CCC0E3E1C1AF8B63C26896 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34D7119C95349CD0A60F24ECB2406792 /* listener_components.upb_minitable.h */; }; + 6AA8B9020761649F3CC449CB8BCB7A52 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E05546E71E507657484622D4B6B7B90B /* timer.h */; }; + 6AB0C60B0017F89A2E919454CD358528 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = 111B419DB5E28FF9227401FCE6A7E5B5 /* field.h */; }; + 6AB3D3CDF81FEE6B37D942EE84C674FD /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D9A479BE9CE60283DBF1DB9B73C853E /* regex.upbdefs.h */; }; + 6AB5090C04336693C2BB8133990160A7 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = AA191A57E4C2ABB47ED761D58C15BF12 /* init.h */; }; + 6ABB2B7E099E26189CB170660B34492B /* event_service_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BA3464B1C5A4D25B940B7001DA439692 /* event_service_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6ABC24532ED53D1359781CE877131C21 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8920111A74CFEB22C21BD0EE48F7F670 /* duration.upb.h */; }; + 6AC1B881BB319C89AD023A02CDC8FC3D /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99283EFC615EA504B06426610D3B34C1 /* ConstraintLayoutGuide+Extensions.swift */; }; + 6ACC1FE8E4EDA1D654BB82C204FE69A7 /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B50F9D85FA879092BB4C1552BE78F5C8 /* status_internal.h */; }; + 6ACCFC3401B2A0DF9D41D36CB224F756 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD6BE33FACFA28BE27C1752638304CD /* tcp_client.h */; }; + 6ADC7A93A9136C005C465EE86A14658C /* FIRTOTPSecret+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E282C6D26DAFA71D7E241821B514F /* FIRTOTPSecret+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6ADC8FE7988DB8E981DE6557FDF1EC48 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5EF96E6F2B0079E25DBD2F17402A831D /* stateful_session.upb.h */; }; + 6ADDBC23EE6AFA861118630F7953874B /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = B15107242092F740F2B9FCB2EC6C99A1 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6AE39DCF97D7DBDE7F82829416759F89 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D963893BAE4A49975BBEDA637DA9075B /* matcher.upb_minitable.h */; }; + 6AEA99EE7603AE241841E19D466F0C91 /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2FBEB75F8C21E4E5A5E2C0FA3F065DBE /* skywalking.upb.h */; }; + 6AEC85A68096EA4C048A6EA8306CD362 /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C501701EC8AC193E12905BE390F338C /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF60F852656E4290F8934B7031C7C51 /* FIRTOTPMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = EA587C38056FDA275BB0CD1315759069 /* FIRTOTPMultiFactorAssertion.m */; }; + 6AF89081E0D7A55C867592C3C195E8D3 /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07FCC7C7077CA637A86C17F5DC2566AB /* socket_utils_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6AFDFED7F81A536E565510D256EF2F41 /* slice_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5A714E396256E4F85E297C2AD2C3EC60 /* slice_buffer.h */; }; + 6B039E460651B20DBB4E35287A723D18 /* json_channel_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = BE37A7B7377C869AAE7246BCBC6D9468 /* json_channel_args.h */; }; + 6B12EFFF08EADDD85CC7F89F78F17D86 /* FBSDKKeychainStoreViaBundleID.m in Sources */ = {isa = PBXBuildFile; fileRef = 6768BA2D66FD7D63D52F13066117A04F /* FBSDKKeychainStoreViaBundleID.m */; }; + 6B15C572E7F412B88B00FE970A5F70E4 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = ED654A46285F2AA50F09FC1E3F227324 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B1E68F37D6EB4F2BCCCF60A5C0B2DEE /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 635A98B640C9717F5943BC027861B8F5 /* path.upb.h */; }; + 6B20C606C344FF68FD3EEB56249B1FE7 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CAE1B99C47B446E437B4ECE4BAE9322 /* string_view.h */; }; + 6B22FA026271B662C4643D92DA464141 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 3DF3B87F8ACCF6869074996DC13CBECF /* time_zone_posix.h */; }; + 6B25D392DDB7FC82B70B4B0A70F7B94D /* FBSDKEventBindingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2B5892876BA598CB682EA2280C10BD /* FBSDKEventBindingManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6B279EA9E31FF81065797BE1A455900B /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A120536B1713C47E76AE899FCEAE204 /* timer_heap.h */; }; + 6B27CDE15F572C211F60ADA28ABDCFD6 /* cordz_statistics.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BD3E659287A74927D9DEE58530FC8514 /* cordz_statistics.h */; }; + 6B29B04BA3BB9C6F02621C94F0E11E26 /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B683E664655E1BF43947BB8087A6D61 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B2A63F391953D4534E1966B3CFE33FE /* FBSDKGraphRequestMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = D0455F40904B67FF4013793EFAE035A7 /* FBSDKGraphRequestMetadata.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6B3727424889C0E5394B80AFC580E175 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6D2BF472CB0262C156FD3E260077B6 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B4A546598C9BE11AB802DBBB0072A9D /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = B1DBCAD7C85D2A94478872C800211D61 /* ssl_utils.h */; }; + 6B4D0CEA8553B536CDA56B3F9E3A24D2 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7537EA40B6716C5DC375D86122C54E6D /* ev_poll_posix.h */; }; + 6B4D37E6811F956CC7C199B1C42FAB61 /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 36CDA47DC2A34710C987A23287F1D05B /* FIRCLSUtility.m */; }; + 6B4DC1B99075ADADE2C45F88735996F3 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A9AFF882188B33645A3A5623B5D60C8B /* slice_string_helpers.h */; }; + 6B5AEFACD1BE89A8483B6C2A12011A1A /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C8444A3856974819809D0722C49C0F /* http2_errors.h */; }; + 6B5F6B3E383DCB43D9FE0087F21ED2A3 /* cipher.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B855F816857D15013DDF35DE1DA51044 /* cipher.h */; }; + 6B6FB74608C7882B3649FFE1B06C147E /* xds_audit_logger_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5D36C86CEE343AD9FB48858B6504432 /* xds_audit_logger_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6B729933F36C6928E72E2CD5FF508CD2 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7F13FE06EE1BB4A451428F674FA6CF /* common.upbdefs.h */; }; + 6B72CF8B1DAB25CD6A3BA5174BADF3FF /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 45B5A006A021613FFCD0288C5FE838F2 /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6B7A33661C51B16128402343BF14BB43 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D567DCE6E9C1C89A9563BC972C7B849 /* slice_refcount.h */; }; + 6B7E36C3F805F5953B4CA4737DAD8A70 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = 225D2499F6826586005F4EB275BBC6CE /* xds_cluster.h */; }; + 6B9D33D5ABF9EC459120B3FF189AF5FA /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A527CF8A5799FB244CD5275F80EC43 /* xds_transport_grpc.h */; }; + 6B9E7ABD1681066649623F083533E149 /* memory.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E3BE5274BF1821B0CE9B7A7141A3F798 /* memory.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6BB01E837BA3441643869D95487B54CC /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD274DB6B83596BB9E409A39176757C /* ring_hash.h */; }; + 6BBBBB9176A4CE6F3A126D465C1E70FE /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07CB0EB5C4DC5A866277758CFBD1D6B7 /* string.upb_minitable.h */; }; + 6BC2CD8D1B53C31321FB4A4AE400FA72 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E73BA5F00AB6FA5A13594F037B9987 /* FIRSendVerificationCodeRequest.m */; }; + 6BC4A321A0339F2E8226DC0F387AB483 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = ECD4716CB01EDFB72751EE65E6FA6EC1 /* seq.h */; }; + 6BC5721F93F9880FBC5741CE2B940ED4 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F10C4FDEB0EF65CCC8CF029CC34D08 /* completion_queue.h */; }; + 6BD6A6695D05908524545A776D4C36B9 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBFDB731008CD636639EBCFA291884D3 /* ImageDataProvider.swift */; }; + 6BD82D5E912B2E999443177C449AF18A /* memory_allocator.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = F69094A131B58FC883475257ED46370E /* memory_allocator.h */; }; + 6BDB0A49E6A8B3F6C10669C55DA02A48 /* FIRFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D1F8A00704CC37CD9592FB56C309FA /* FIRFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6BE531B39ABE343B01A2FC23CA13FBD7 /* TZVideoEditedPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 58334F70531732D3213A914017084378 /* TZVideoEditedPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6BF1E8A19FAFBED131C4ADB54304F8C7 /* usage_config.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 4F71C51ACFE53D69EA7829C3D019A242 /* usage_config.h */; }; + 6BF2BC55F115D1B137309287DE709914 /* interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1EBF0AEA85DF190171C15DE6717E446D /* interceptor.h */; }; + 6C12ABB7B20A9AA3A4A144DE3A3E05F3 /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BB91C4A10711E66692E483AB45ACFC2 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 6C1EED16F5E7B9F4BA1698A5D083EC50 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AE08045AC55EE660333DAA0D2ED4E11 /* FormatIndicatedCacheSerializer.swift */; }; + 6C20DB3113B68894DE086089E2CF4DF8 /* ios.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DA86331CC1FAA82147BD250E452108E /* ios.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6C2591353F21858C21FA572A4AD91623 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACCA4D163683462B02DB247F219349F /* experiments.h */; }; + 6C2B450AD56AD3C18C4B4EB08BB35806 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 67A74E0E058AD584D295B0B7D5F4537B /* timer_heap.h */; }; + 6C308352DFA2BC1391087E8D6B45D06E /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = E1C48931E9E3BDB9F6FFB26F947D7B95 /* time_zone_fixed.h */; }; + 6C31D643A1D75BF9B32DD104A154A4F1 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 029F37116C52C4E894959CDD22F340A1 /* certificate_provider_registry.h */; }; + 6C3C1FB284F5DFDD1E5C35ABBC4067D0 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E1A864210E3E09F3F42AF8CDB29EC1E /* context_params.upbdefs.h */; }; + 6C3D6FE06FB54835F8049948E2CED40B /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 77601500B29D81924C77AD2DEF2D63F9 /* poll.h */; }; + 6C3EFBAD3FBD8F63C62F8D47486696F1 /* rbac.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A1EAD87D867AE9E91F4A616BAEB58CE8 /* rbac.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6C4E6076BDC36E2A9B2A6B110FC31319 /* SDKDefaultSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3D48653274FABB832346CC2441D43C9 /* SDKDefaultSettings.swift */; }; + 6C5A59A23E2EEEC34CD7BA523F314789 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DBF4AF45B5DEFBAC2E5F583516C34B3F /* xds_endpoint.h */; }; + 6C652C74A94FB3FDF8130069FB3229CC /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCBCEC5C35BAFD39E4B214DEE6AA053 /* port.h */; }; + 6C673A73D8D66B5E83B5F6B6D6FCE085 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 58A77C550850A1EAAB2942773EBA1C72 /* token_bucket.upbdefs.h */; }; + 6C69C7D9A0AAAF548CC65B77055F63EF /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC020A637E173C8C44321E0E1190E38E /* metrics_service.upbdefs.h */; }; + 6C71F600E1FC64E275385CA704DDEB51 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB9A453713857E07871507B06A5AD5B /* range.upb.h */; }; + 6C7B3045A358DDC4EEF29C3F41D05BF0 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 191FBD7FDC9E956904AFF0A1E42B50CE /* range.upb.h */; }; + 6C7D23B9797D10DEC73E0EEE2F873849 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 78EF00152ACF862616D5F0574DF4422A /* channel_init.h */; }; + 6C85EB91FB62716DFABF353D76C42AAD /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0EFD43E7CCA3ABB4C0C7330524DB8F /* decode.h */; }; + 6C8FA741DD39E6BF9B4145549D48139A /* event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68648194DFDCFCD86DE00D69D679DF7F /* event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6C91B0DC4370C306A1D10C37427800E2 /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = A68DEE40B53C8BF08B94E4D84D756A8D /* obj_mac.h */; }; + 6C92F32D2DCDDED95F4B71B6AD01B147 /* sync_custom.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 396A80262D736FCCD67791C9D4CBC245 /* sync_custom.h */; }; + 6CA7C06E9F39244A607B6936A406B69A /* ossl_typ.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 95570376996BB0AA664FCB7A919BC22A /* ossl_typ.h */; }; + 6CAFEF1746F83E9295A0262B9B3FA8AA /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D8057175AC27FD00AB17B930ABD03D77 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6CB235E33E167E9A7769E0C4A6763493 /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADF6BB6E1ECA36CA9AB6068CF190BFD5 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6CB3D763CB8C8CE957E7641BE6CF1EFC /* encode.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 524A554BC29FBBD5138B67A3BC80F473 /* encode.hpp */; }; + 6CBDE943BB72592D8770058B14080F00 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 4FE731A116FE8E73A50285F64908EB84 /* transport_security_common_api.h */; }; + 6CC36020DCF5D7E47F192D65D1AC228A /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC9C63FDAA11C6A8625ACC3B2BBEA4D /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CCC3BB4C0FA1F745B3D4980DFEA0D1B /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 00895E4BF0E7867ADD396F5259A9F84A /* child_policy_handler.h */; }; + 6CCDAEDFE8AB0312ED357366D4E66389 /* call_once.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 84BB4CEFF5D66F211D52C93C4DC818B2 /* call_once.h */; }; + 6CD21D0DF90A91E0DE8ACD2EA618AE6F /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAE2ADA81A8D75426B9F66DBB83CD85 /* platform.h */; }; + 6CDE213C3074A5322B5EEC835E7F8BBD /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E198173F064211CE2EC69FDD7CA1BB /* cast.h */; }; + 6CDEB45859CFEAC0B08A23C676E4561F /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2583491FCED8BBC24A84867A231B41C8 /* backoff.upb_minitable.h */; }; + 6CE9199A8FD33367AD4F6FCD3337C5A6 /* metadata_query.cc in Sources */ = {isa = PBXBuildFile; fileRef = E17AEB222857AF3E1301EB3AEEF3D88A /* metadata_query.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6CEDB7951ADAFA0CFF7A3485BE377C3D /* GDTCORLogSourceMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = 155245A85B51AFCE57C67BF83814E82B /* GDTCORLogSourceMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF18B6CDF1ADC5532A2141188E3ACA3 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C4E01E8D336493324C98B35AD4E89FD0 /* bitset.h */; }; + 6D04BF43A2080C5F10A853E315DF24C4 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2E3AA2333FB9EE982500716B10030D /* http_tracer.upbdefs.h */; }; + 6D0B94E7C60AEE76BFBD9839769549FD /* client_channel_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 87BBBF20484AE65D65E87A44BB380F5A /* client_channel_service_config.h */; }; + 6D1A57DEC76955A857902B0ACBC528BF /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 3728F28739338409DD7761BFA46B1472 /* alts_handshaker_client.h */; }; + 6D1E33469FB8FBE812956B0076A7B28F /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 331A31F5D6F88ED7AFD686A29A215A90 /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6D22E5E2BCCE9249E5398B6C210AA8BF /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = A348E4B5C75CFA844618A2DAEB10C23A /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6D2333EA7550D6E0F1386DDC27CCBFA3 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FFB9A453713857E07871507B06A5AD5B /* range.upb.h */; }; + 6D25BBF23A765D27E9913B40D6E7BB1F /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 9BCF680A82772E13DEDFF0F091B6A2E2 /* oneof_def.h */; }; + 6D33D5F0A2479A3490F9FC38C187BBD9 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0A6261A2A7FD7344535AF743BD099A7E /* ev_epoll1_linux.h */; }; + 6D35D73E290EFEEA4B057CB98EF66332 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5BAE8FEF00FEC2AFE11F5BD9574729 /* status_code_enum.h */; }; + 6D3ACEDA8BEE1028E24C01523F4B6D8E /* p256_64_msvc.h in Headers */ = {isa = PBXBuildFile; fileRef = B1AF30AFFEB53958AF5F861DE2552E84 /* p256_64_msvc.h */; }; + 6D4145F94A0A18586299AD40ADC3C61A /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C481153F32104DD44033856E29973F8 /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D5E344BF1F88B2CED1C45729877F503 /* TZImageCropManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4BE8BC41F4476684B1DE2D6F2F8009 /* TZImageCropManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6D5EAF91DA353D77FFF443C197205586 /* has_absl_stringify.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E12698E3E8179BC6C2F8A8EFA1881A91 /* has_absl_stringify.h */; }; + 6D628046BA1D5762F9A205CAA431818A /* obj_dat.h in Copy crypto/obj Private Headers */ = {isa = PBXBuildFile; fileRef = 79557DE2808E93259F13C28FDFB88E0B /* obj_dat.h */; }; + 6D655238D988CF044D9269E77643FDA8 /* bootstrap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F22F8272586020994D65177CFB77CB /* bootstrap.upb_minitable.h */; }; + 6D676444E968D5F61C62C9677D868327 /* tls.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EB86DF5BB2C3B82A1FCE19DBA8D71E41 /* tls.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6D6A809DC712AE16614DCAEBA99F8C3D /* FIRCLSOnDemandModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 682E7C1D8298560C9C8239FC5C4D62C9 /* FIRCLSOnDemandModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6A8E174CDFEF6113CF009841051159 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E8596F9D4AFEE63CCFD6468AC2050F6 /* any.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6D6B0E72F34320A7A4F01FC5709611C6 /* FBSDKFeatureManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB6B54136BFAA759C868B139BCFEA9 /* FBSDKFeatureManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6D6B4F3590AA66DDB1BCF51FDB5267EA /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = C43E0C8AF18DE62EC77E726E4BA9EBFB /* channel_fwd.h */; }; + 6D6DCBD3C59E570ED689A72E3B8A879F /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCFA78F8784A9DF76430043A213E6FB7 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6D88E418DB344056D51950C74BC52FE4 /* event_engine_client_channel_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C8C90159C7930C87DD175A97B82A3DB /* event_engine_client_channel_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6D8C801587C61816E1C715247121D5CE /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED51AE04EA16FF2DECD008DFDD3FEC61 /* grpc_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6DB0DB07488008A6EE2F5576FE17A8FA /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = AAC2AE0C125568A567128996648CB0B0 /* channel_init.h */; }; + 6DB5EFACF6F5595CDDB6F46606916298 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D904F416AD9D08541F8709C4B2547E4 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6DB68276878032A6CEE28B3A7200D7E7 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 291F07D2091AF9A26BDF8960F87A4B12 /* channel_stack_builder.h */; }; + 6DC5FDAE8C6859475D4BA96C3D3898FE /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E5B55BE2F8A77CFEF0F4C987B504AA42 /* range.upb_minitable.h */; }; + 6DC96FE2F29AB1873113FFD1D94033E7 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = C114FD732940EA885AF8CC79046302B4 /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6DCA52C8C0501610C505E53AE50B945F /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4807B0A0E23BB4EE2C1F181A2A95DECD /* substitution_format_string.upb.h */; }; + 6DDB3D3C0C45C5DAA335F20BB3C20B7A /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1884EF97DADBD1A0D6439EFE42B6D483 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 6DE0BA88F92D6168AEC5051F81FC6379 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAD0DC8E09418ADF6ED87C529C3E36D /* sockaddr.h */; }; + 6DE8DA1CA528F74D03CA211CFFFE7308 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 63F9AC88D6FA822FE0FFE7AF3A98750A /* PrivacyInfo.xcprivacy */; }; + 6E016838F67EB4C31D768BC83BA99BC7 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C6C8F4C677540277F394FFBE23173EC7 /* grpc_service.upb_minitable.h */; }; + 6E26DC12A7FA38E4FB5EAF843083E266 /* cert.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE45BAD9EDC0271CDB3ECAAD43998FC8 /* cert.upb_minitable.h */; }; + 6E2A29E81D1CC8D7528AB4EC4E7CBA02 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CD1916A62698F42E599AADD2B6420 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6E40901035C861297EF7C6F1D1DE5445 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B259355D240494FF7C1A54F98ACF95D7 /* config_source.upbdefs.h */; }; + 6E4CD11EF26980FE11513BBA34DBD6A6 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B06B56C3FD936658BAFE009CA5195C /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E4F13496F825AD6DC6AB80A14D32E34 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1346E888CDE5BB4C5F2B909B2C8400AB /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6E548962B2926FC995127E9EC40FAC90 /* resolved_address_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4DE270129B2C26EB06A0F9B494EC8B /* resolved_address_internal.h */; }; + 6E57742544692FF8410D52D448F07D65 /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = F863E3982F8537EE8F6A2269443CA054 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 6E6374C3D0D2A20E6722489CC73F1DA3 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 55C340A73F5F0377413CB36B87E8C3D8 /* basic_seq.h */; }; + 6E6492CC6EC406D3D2D54F61CACE4490 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = C6DC9A7BBADC6952CD63A55E800F7EB0 /* transport_security_common_api.h */; }; + 6E696E61BC5B0469308103B5569CF7D4 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 0888094FB07C9B4FF7A281BA611D8EC5 /* global_subchannel_pool.h */; }; + 6E6D3A6C448E88217C5F548D7FED8F18 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBC42FD007B030C9DE8B3C6AF8C6FB8 /* unix_sockets_posix.h */; }; + 6E6F748AF124F7469AE907D3EE268687 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 3728F28739338409DD7761BFA46B1472 /* alts_handshaker_client.h */; }; + 6E75FCA5E101D4D6E2D10F88A17A1FFA /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DFCA33E1734D74F7EF3577B07B5C6FA0 /* substitution_format_string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6E76D6C3269221BB5872D3551090A583 /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DFEAC7466F5BB4C5E6D2E2AD501B283D /* wakeup_fd_pipe.h */; }; + 6E856D89DA01C5FFE8C5B81BAABC7871 /* xds_health_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 16400AF1EB01F50C2B1A4A9A0007007C /* xds_health_status.h */; }; + 6EAC8B6FA2D115DE708A58C601DD25E1 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B12BDFF0A7F7970AA586EE92FFE42 /* Constraint.swift */; }; + 6EAEDD779D6036D5CF66F8B91161F43A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D601C8F46E9D48D202B1E18F8491A3 /* internal.h */; }; + 6EAFF07B1CB314E901A133516A0FA1C6 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 749F875413EF0D34AD54421862D3B399 /* types.h */; }; + 6EB20E642880C112BDB9396DDD010765 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C43E0C8AF18DE62EC77E726E4BA9EBFB /* channel_fwd.h */; }; + 6EB86AFAE3036FB4D2BBACBB07678332 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 2731AAC2CC2EA541FAD92E1FBB7263E4 /* annotations.upb.h */; }; + 6EB8E89DD39C7B1E4C044537B82C9B58 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A572C71D6F801D0EBF42DC7FC47FB1 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EBAF5DB88778B7F09405022CE5ECA93 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DBC4570FCF2C27CBB86315B25687F578 /* cluster.upbdefs.h */; }; + 6EBC14436C0B825D3F7ED12E140E9B58 /* FBSDKBridgeAPIProtocolType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9B1600C2846E75D41B2DC4D6E1E190 /* FBSDKBridgeAPIProtocolType.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6EBDD50C2FD291BD7769D10BB82CC658 /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84F05FB9DC241215951E68478A44B017 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 6EBE8A80FB0F55796B6845CEBA2988B7 /* FBSDKTypeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C6B0D05E80C781268899D76B42EBBD /* FBSDKTypeUtility.m */; }; + 6EC58BD9F96CF3F13820FAC438B3D598 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 904A34AF863BEC127045B93DB6636806 /* fault.upb.h */; }; + 6EC90E5E6503E93B3417242B8BE2272D /* FBSDKAppEventsStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 120443479FCD61F978A5F9CB35B55FCE /* FBSDKAppEventsStateManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 6ED680379DBB1F3EFB421F438697B149 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3906F842EFA94D806516F6AEA41F41FF /* metrics_service.upb_minitable.h */; }; + 6EDACFAEB7F5C19BC6D6D36F5003FC78 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 87622C24690C2E60DF96DD72E13A61EE /* endpoint_components.upbdefs.h */; }; + 6EDAFC0BE91D3118677C8D7C72B36031 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A1FA172CE9C96E7B42215E937C519C1 /* stats_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6EDDD0246174D319E0029262F27CEB1C /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 2764FE21A86807A1E9A53531B8FDEA6B /* hpack_encoder_table.h */; }; + 6EEB58B3CAD28483488A6CAFFA5F9FA2 /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EF5347FDE55EA2331BA3FB1FFAD8D2 /* message_reserved_range.h */; }; + 6EECDAA0665E56CF0691BE2E6CB1C430 /* wire_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 53E42C24678E5DC78F76D25277137192 /* wire_constants.h */; }; + 6EF14619CD4019A6F9D620802F8E8BE2 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = DD49BD6EA5EC1ADFEFC4FAF6EB59C642 /* FIRCLSRecordHost.m */; }; + 6EF183FAE361E8A9FDB9F0818A061497 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A2B2FE033875472C60370989B26D55B1 /* event_service_config.upb_minitable.h */; }; + 6EFED50820426D8059302B300E5AA008 /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A8D35CC0DAA5C5FF621AB2E9E2DA94A /* resource_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6F022FD4783DE0189DC7ED21988F6494 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD0FB61E56A858F7A336D2570F97FAF /* memory.h */; }; + 6F0CC9D20C9973BC12FCBABCEEAC870D /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 459039F3D054422980F608D97F558E2F /* annotations.upbdefs.h */; }; + 6F0D5DE332274ACF167DDB3DF65734DC /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F618CE25031B9698D866E5DFB06FDEC2 /* lightstep.upb.h */; }; + 6F293FC61EA808083B22495B7D6CDE0C /* barrier.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 6456ED705962FD068F963C9F8FFB7B62 /* barrier.h */; }; + 6F2CE36882C3C3597D1807F2C6A4B815 /* spinlock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B06F6F0D7A7E0D04E1257CADE292FFC2 /* spinlock.h */; }; + 6F37AD90FA8A4779D5C6A66340BBB1C6 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 71143274C5794BFA85A403E62572790E /* quic_config.upbdefs.h */; }; + 6F59C867F9D2DD0321CDE1F932065239 /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 447850E949DF45791A5BDD2035DFE439 /* security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6F5A0CC66E15ABA7C7BCC4CC4195AF5B /* retry_filter_legacy_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 00674DD5986B440E93365029671828C1 /* retry_filter_legacy_call_data.h */; }; + 6F5F6A655EAD33AF938B535FBCCA1D75 /* randen_slow.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 74199D9AB2C0278A47710AEFC8DF3FE0 /* randen_slow.h */; }; + 6F66540A7823569A5BB5BBB595C4522F /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */ = {isa = PBXBuildFile; fileRef = 4E6A7B9663D35B5F9DC678735C6C6759 /* pick_first.h */; }; + 6F67A98374107BA05A6ED4170EDE975C /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 1582F26523126B4BF770463CAFFC8425 /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6F6FA763DDF8B93B88950134F4C4169D /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FE69AB03D14CED2975A9EF76586B87 /* stats.upbdefs.h */; }; + 6F72E76406CF1975AC7CEA624B8EDBD3 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4B9484CB5ADC48D27FEF042EC18049A0 /* custom_metadata.h */; }; + 6F73AD669C387D78434BAAC2A081FD49 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0C52EBB77107C904928C6E232A8CF712 /* status.upb_minitable.h */; }; + 6F7BC5663403EAFBC8A2D5615966E5CA /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = ECC212215CBD377EC1E33A0D2CFD04BA /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6F83CFA9E0BCD05A2466EF3792C51CCE /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 64660AAB9124EFC5B216F7AAD48882DB /* ssl_session_cache.h */; }; + 6F890BE4F88F50338C1B9C892ECFA384 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 332E7124D1DC4F6207690B6BBB52EC98 /* unique_type_name.h */; }; + 6F8C4D5BB9AF2101080E762DAA795709 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2B35A874851C321EF329E989399184 /* tsi_error.h */; }; + 6F9357291A2F4C95FFE129871AB9A370 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B894C984BDD3BB684072CA42CA7EFCA5 /* context_params.upbdefs.h */; }; + 6F9387E70C1FD3A53A6BAC0E0822C4AC /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50842DB27AFA83E490BFC118B1161CF9 /* http_inputs.upb_minitable.h */; }; + 6F93D75268BF3C7979FADF333FFDB400 /* uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9F24957709F7A47A32D2145CD817D8FE /* uniform_int_distribution.h */; }; + 6F9705AB394BA95874EBF0FEA5F22063 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6AEDE5A799EC6FD258DD054B06198E9 /* backoff.upbdefs.h */; }; + 6FA49816C09352E04A191597E5E1AEC1 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 761100C686855B23A2740B76957609A2 /* chttp2_connector.h */; }; + 6FA9BF6CB04D9BF2B4678164D1103DF3 /* json_reader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = AFFA3D16229CA2AA529DE03B9A7789A6 /* json_reader.h */; }; + 6FAD5DF4625A39113CF80DB311BE0EFE /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB7202B179C24FD7524B351977B7318 /* descriptor.upb.h */; }; + 6FAE01C15A7A8FBD50473FF3F26E7102 /* xds_transport_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6AE0B2B16BEBA088F7D81B746E1A14BF /* xds_transport_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 6FE070F6AB062747269ED690B800ED5D /* FBSDKCrashHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F4F3668FFF4FCF5E0748F6B56E1643 /* FBSDKCrashHandler.m */; }; + 6FEAA04FB809E92F25823D7A285350C6 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9550F872F31D19EB9660F97B5E3BA6D6 /* grpc_authorization_engine.h */; }; + 6FF262D527DF4609E53D9EA627C6C030 /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 067E2ACDB4257B1B27A2D55D75889127 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 6FFF21448F6862FD4460CBBE89711C32 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F5E214925B612BF55D26D57161EC733 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; 7004886611491B9E9C532932D30BBFB5 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; - 70065AE6148E652ED2D533953AA5F92F /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3ABF602B2A68B996C51A4697A74D1400 /* ev_poll_posix.h */; }; - 700A3DBEE7CAFA83BFA2F5D7EDDC331C /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = A3BA8287202F66E2273D9149C802B248 /* GDTCORTransport.m */; }; - 700BA9E5AD34060E345213A0671FA3DF /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9D61FF3949EACE0949F8423B9FA1D4 /* grpc_tls_certificate_verifier.h */; }; - 700DAE2407B3295EAE6956B1C4C7EE5D /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 386BE81FE675E1BBFB4C3381D89E328D /* def_type.h */; }; - 70227EEEDED06FEFF3B7A8AFEBCDCAB4 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DB3951B3AC8E395EE7E5936DC5796F /* metadata.upb.h */; }; - 7025164CCDE715D8711AA22F2618045E /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 819C99AAFCA8EA438E85DC0517D8F1FB /* unix_sockets_posix.h */; }; - 702B0629C2DD6476D926F95B49E425B8 /* stdcpp_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BDC287F1C548D1BB52948EAEFE4CB38A /* stdcpp_waiter.h */; }; - 7031FE127CD53E778F4F419B8387DC6D /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = F930669D70BF979E400AD02BD820E02D /* time_zone_libc.h */; }; - 703256D5642C8F70BF1BBA44540CD88A /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 698C24A418B8E139981FB8841DBABB10 /* address.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 703755DD0A9F64B999B2EF2F8DFF598D /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C22C0EA2011D0EBCB4F76A04ECACD8 /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 703AC36A5F5651CFC0456DD2420B2EA3 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 59821C8E6E0741D882F9D96BC5C89AFC /* migrate.upb_minitable.h */; }; - 7045AB35817339C0D35DE68941A63CF0 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D683222EADB3B805254E0924BA18FBE /* FIRCLSProfiling.c */; }; - 70466CB62E3973D45F260BF6C89C523A /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3892E2DA01902D6BA64FF679C26D5FD /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 704A58C6EE4A235CD80359597A50355D /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5D3AB0DE579992FC7748081C7A224E /* subchannel_interface_internal.h */; }; - 705243EF78CA6DFE0D3A630E1FD74079 /* legacy_compression_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF7D6EFC9D31751CBB9A853A98CC994F /* legacy_compression_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70524B39F96ADC5A5C79445EB8CAB86E /* iocp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69AB852E3D17B45D16A9F0EF5532EFB4 /* iocp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 705F2EB88758581444C5CD2FA0560868 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E99E4F266EA24BC5904E50FC5BBC4E17 /* filter.upb.h */; }; - 706A6ED91971FDA85E7EA16BDE4DDDB2 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 62709978DD2380AD6E7F3D77F46ED584 /* basic_seq.h */; }; - 7082F7EE413A95928CAA8C4A7FE432E4 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48A28B29C08063BF74444E448FA84A /* strutil.h */; }; - 70848ECF50284CB278176373C5445F15 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 308E1F439F3A55103A6C5FA9547F8565 /* rbac_filter.h */; }; - 708FFC9586094C149900B5DCCA27FF2F /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1DEDF40511D43CFC3335BD8322DC1A22 /* string.upbdefs.h */; }; - 7094EA12A0E6457F260CAD2C700FD02A /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D0ECE025FFD0D39C3525DA468A1DA687 /* wrr_locality.upb.h */; }; - 709670656C9BCD2DE5410C0610A66DB7 /* xds_dependency_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 395E356F23859CDF9C6B8980C6E291B1 /* xds_dependency_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70A2A89014C1B9A2AE8BAD5EE6203525 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 223BF053A32707A6F84F0650343ACC52 /* annotations.upbdefs.h */; }; - 70A4D6BD40474F7BAA8793CFB0FCF7BA /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 278CECD1275E331C9E7020B720B32454 /* inftrees.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70A7D2863E3387B20A6DAE69196AEF8C /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4087678779DACC960EFC316481CE6A42 /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 70B078B4255E36F6A9F7D7CA24294480 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD177B5D14DC4078D6D223F85FFDD48 /* thd.h */; }; - 70B787CD3F5685622DCC1904E10812C5 /* spinlock_wait.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 570F331B44FA6E758365496D81FA2181 /* spinlock_wait.h */; }; - 70B97C10E0FE4847856FE862C3573E9A /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = F2B52E4E042C7AC9667E6EAA5638E3CB /* tls1.h */; }; - 70B9A9AF1FEFB4B44DC485376000A6C4 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFDF37A5E735417E9FE5F6910D630D8 /* common.h */; }; - 70C9CF597C5974ADD0C63C8909AAE89B /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01D611C3949AE617996271EBA827FA2E /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 70D3EEE7C658E53EF6CE1A124B4CCE6E /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7139A52BAB39FB896881E85749222BE7 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70D48527113B474FB855B295CC69D360 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 8565ABA6E0F2BF90E8068DA4F14EDCD0 /* method_def.h */; }; - 70D59216049B1156742B0FB397A9D984 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = D5CE965264C63C50595AB576193FF81D /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 70D93D05ED36D1A57E0F4410B47BBCC2 /* inlined_vector.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1AF6FF89AF67E7D00FB7CBFB9D8AA7C8 /* inlined_vector.h */; }; - 70E5D2D91C006101450DB29662A26A48 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3C5683B41085C4D0B22E83F9E63B37DB /* range.upbdefs.h */; }; - 70E8F0318CAC33A98B8F0811885F2FF6 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 937A68CCDBC3D0DB6B3B61E049C3D188 /* PrivacyInfo.xcprivacy */; }; - 710371AFAC15CD490802F15F17ACBDBE /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A17D0F693788377AD232DE1DB3DF4DB2 /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71059FDC05932ADA4DC41774C38A4991 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 775E055252E6C94B1AB8CC15CAFB4740 /* secret.upb_minitable.h */; }; - 710681050FBB2CC7B83CE6D0EF1BF903 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECC8BFF10CE26C76B9D6D73028D7B5BB /* domain.upb.h */; }; - 7111B2D3E13E307F59D43AE13C3D3731 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F149AAE9679BC1FFF4DC5E34333791CB /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 711B6C5B13FB4ADE87E1C9E85E22B14C /* filter_state.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C8866AA1151878CA8B3F983C81F3BF2D /* filter_state.upbdefs.h */; }; - 7129C598F2003288E4107490E3FB9AB8 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7E84A4DF28B1E51CEDC413EE2866ABF2 /* xds_api.h */; }; - 712E1FB4EB355A4F5BDB769E5D26245E /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 39FB90DF969D1636D1D318AD291FC654 /* frame_window_update.h */; }; - 7142C160EAB6E69DE6716F11D1F97072 /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B32E391D981B9EC01C539196532A196D /* tls.upb_minitable.h */; }; - 7147E73E45A3EF24B85C15257C12DC00 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B88AB72E3A96481D3F8EBC9588518A0 /* path.upb.h */; }; - 715D06127D224DBA7E7D61695CFE76AE /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBA4ACEF55FA58BC2433B5E847E19A40 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7162CF0F41A9E90FCBAA8E93B0D067E8 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 59849FA3745D828423CB41709EE8B651 /* hash_policy.upb_minitable.h */; }; - 71672B81E48C7D5585F8B091D497E0AB /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = 2024F968E8DE2C54DCC25FFA52FE9C83 /* init_internally.h */; }; - 716AC3926B86729B45988556F456498E /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2892DEE5621AEC463CF056958426862 /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 717A0C3D6F0CED3E81727D0BF19D463A /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 207FAC59107DB1FB56E4AAF2F1BAC7A8 /* connected_channel.h */; }; - 717EB784E07FF191224D5FE2F74DA4FA /* FIRCLSNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED67CB8C5776AE230AC50697A8B757D /* FIRCLSNotificationManager.m */; }; - 717ED99F2679D0DC749C3E2671DEC896 /* http_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 18C33E5A056F5C710CFD44B5FCABF472 /* http_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7180DB0D3C991F52EC508D28D6873FB1 /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA4D457D3B48B48FF6223E9D2F6D380B /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 718298104ED3A89DFECB3C0AA98B32D8 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2D048806C0A92924E04A004AC375B8B /* ring_hash.upb.h */; }; - 7183E734666413A8F8CE2B7EE018CED5 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 450469BC00269B6B311D8568C8160385 /* cluster.upb.h */; }; - 718FA71C1501AE308295CC538C3E51D9 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AC8057E0552D610215BF9352B997F7 /* call.h */; }; - 71920D719E65F523C1FEA33A4374CF86 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 476E95AF619D3E76128B98DF3BDBDAD3 /* jwt_verifier.h */; }; - 71983504E2C940B396286AF11B21E6B4 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = DCAB555D0069C49F88B07DD94BF7F483 /* swap.h */; }; - 71A61185504E9D7D2F40019164BA073E /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = DB4ECF2635F0FD4715A3BD39CE27157A /* file_external_account_credentials.h */; }; - 71D07A691D1D78FD8B421B127CE7496B /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4418B9D0D230AAFBF7B49560468EE438 /* Image.swift */; }; - 71D60F6EA828AB1C5808EB6A94AF0F72 /* grpcpp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0156D20A9A82BC34E1CFD7D2E8EC6588 /* grpcpp.h */; }; - 71E1C251E9C34DF0D88B2A17B64BC5C8 /* sync_posix.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FF09E168713329A5FC0584B1F89CD590 /* sync_posix.h */; }; - 71E47E505CE40CFFA67544BC751C9E76 /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 216518456E8A882E5358AFE0C6AA1062 /* oob_backend_metric.h */; }; - 71EDD05E10D224FBB3029346A22187B0 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = EA1225A84958BE55A9780FB29AC12B76 /* sparse_set.h */; }; - 71F10A7002E11389115AF9216FCECA60 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 4261C8607B9122675FB72A04F6DBF319 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71F4BED576DEF14A81AD6CA17D823D0C /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2067E088339101CF22739D1621D0AEB7 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 71FB3D358F45A676DC1AB6346F91EBAC /* zutil.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = FFE6E2217F84A9D3070AEB7DCE9D9C02 /* zutil.h */; }; - 720922AC17E1C8E5595AB42780C930E4 /* pool.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2FDEE5DDBDA7912AB5387FDA4271BB86 /* pool.h */; }; - 721550871974DEB03A949729F91D0E8C /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D3CEA986BEE0630DE935B5BD72EBF53F /* alts_tsi_utils.h */; }; - 72188D37044F2CE345BCC8F759550EC0 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E3D36163A5C640671A65E1C5F6468A0B /* tcp_tracer.h */; }; - 721C2A8E93838BA5CA83B5F85DFE5071 /* server_address.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 859D7461662CCE7441B0DCBE6A36D78C /* server_address.h */; }; - 7220A25D7CC2EF4C3788DD1710DC2233 /* common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D88BF5E0F456965D1882FDC623B72BFB /* common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 722D45D1CC90E91E6A81D2EC9BD85CA5 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F27CE6B17789B9906604A2313469DB46 /* accesslog.upbdefs.h */; }; - 723313192B63DDE8D01ED638CBDB8AFA /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 2CBF786A43D1B5120AF704E3DF28ED53 /* ssl_security_connector.h */; }; - 72413DB3E94D6B41DECC9BC5A6A790BE /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB271E0FC5F5B8F86534B7BB27969AC8 /* endpoint.upbdefs.h */; }; - 7249876C895B8991B9DA142D1724E596 /* timestamp.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 43D8217AE5D4896A5B2130A2A69D2C7C /* timestamp.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7251CA59E98DB8354C3EA32F0428EA8B /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = B618EA555AF34BE7E009BFBF967B19ED /* FIRCLSDwarfUnwind.c */; }; - 725B34B95A1C3C648FC71701FC563071 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 305A998C95A7D3441B4B4EF9EB6D9AD4 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 726EA9E06212CF4B549BC6909C914916 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF1A6455AA6CA687471ED72F52D597E /* resolve_address_windows.h */; }; - 7274CE7F84AD7951ADA8AC3172E75FCD /* dynamic_ot.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 25A169F6AB894BF9BDB7E2A82D2DB15A /* dynamic_ot.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 72760A8ABA17709FC6A56B4E041302AC /* pthread_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 555596575EA2254EC48D22553D6BAF88 /* pthread_waiter.h */; }; - 72782BC47AAFCC036445510E4EB8043E /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F00638BC181AABAFDCC38EEEA7F1A0CF /* pick_first.upb.h */; }; - 727ADEE7E28B99533B2A614E9F04404B /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E8D749DA4ABDB6811420B471A05072 /* rls.upb.h */; }; - 727BCE6A6E4EF98E7247CDFF3A4E0C58 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EBF7B41CF364E6AD997BB065E26ADEC /* child_policy_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 72901B6A9EC77E4D29C7AEBC5FCA31E4 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = F2D0FCDD46A69F23644603D55B2D7545 /* alloc.h */; }; - 729FF7788A09E8F8611930CC2F4B6DF5 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = B9CB09BB07D04D591BEE6C9EE0802A8B /* httpcli.h */; }; - 72A43DFB99D09694CD458D47286E6A45 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FA8D900B943C1678E75DAB6C9BCD58 /* socket_option.upbdefs.h */; }; - 72AD8D73EF8BC74FB38A9DB0CFF6FB8F /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FEBC08BA249C1A0DB48FD7CC359B92D /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72AFE7FD02E22793C067BF5FBB5E6446 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4A419F7760008A17F3AC6369A4B37D /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72B0789FA56179090BE8E6A36C7AB72C /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C45318CA321F9F5A311656B3948B753 /* config_source.upbdefs.h */; }; - 72B32B0B366B69462FEB25BC044AC13C /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = D5E24C87B1CDBC767744A43CB0F0D24D /* grpc_authorization_engine.h */; }; - 72BE21CE9BEB29E198790B8D87AA8F53 /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF8D2A6267FAB6975A3BD3DDF64A3B4 /* ndk_binder.h */; }; - 72BFD0A50FEF1F66A487F13D2C4E6B72 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DAF310B2B579534CAC460773A9085126 /* stateful_session.upb.h */; }; - 72C26057AED43E7D36398ADC03F18082 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 920E9D5DE36F2A7988B6C6D189CD94AF /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72C26F53384E6D0BD4C48DB1A9E8E3ED /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE6AB5CC3EE9A3BA6B521585F1461BA /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72C2A1CBA131F92ED419A33DC86B265E /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0FD2904EEE9645ABB8A3B73979E2AE /* options.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72D3278FBEDC8BCF4819DC17C2662E45 /* memory.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D07FC1B11A6BAF447B5727B19410FAE /* memory.upb_minitable.h */; }; - 72D7ADEFE9F74DB1BB38D238E2D1F771 /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9D07FC1B11A6BAF447B5727B19410FAE /* memory.upb_minitable.h */; }; - 72DB9523F117597867667F5412A035F2 /* legacy_frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 0006A7B06CB205C3AAE4F3203CC99B3A /* legacy_frame.h */; }; - 72E5E93FD110FE419836AAA45A9A1460 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 566E061C760340727B26B39F959288FE /* sensitive.upb.h */; }; - 72EDAF2133438F104FFD60F3210F1019 /* channel_arg_names.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBAD5AFC4A76AFC05BD7D93B1BF3170 /* channel_arg_names.h */; }; - 72FF460DFD66CD79801D26FDBDBE568F /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C516ED54B82492442B58A8B450F67F /* ssl.h */; }; - 73027D793F98BB969A9D8CEBB76C5BCF /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 56996C5AB7D74CFE4000D5E1C437FE25 /* certificate_provider_registry.h */; }; - 7311126C017CDB89DB8AA7C12369F63B /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 829C862FCAC61C5B65D66543280F6C0C /* cookie.upbdefs.h */; }; - 731626A42E48FBB12370D84F94B7D012 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 8615671DA648778F043E54934D2ADBE4 /* time.h */; }; - 731629A9F3E56C5AF83523796A779813 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 18528EC0754A6AB121494C18B7CBB434 /* FIRInstallationsSingleOperationPromiseCache.m */; }; - 73186A805F6A2A1A231BDE7E0A63A3CF /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B17FFECD613792BFFC75621165C094 /* UIView+TZLayout.m */; }; - 731C34C22800D5F0AF417E801D3409B0 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27440127393E1B7504D4EA25A96A6BDB /* SessionDataTask.swift */; }; - 732367D7EF76E1578EA9AC826850AABD /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1A292B6B78088048C2B613331CD3505 /* pollset_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 732ACCE4C4213FCF73EF4A02BE34418D /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 962F0665B492FB7F24434379A93FCAFD /* alts_grpc_privacy_integrity_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 732C29255F73EF3D83D49BD4F8FEAA8F /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC3CC854ADF637EEB177B7D58CC4DA32 /* MultipartUpload.swift */; }; - 733349D5CC59BFBAEF3DF357ADEDA21D /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D8789032841D0505B71CFB8605C82AFB /* api_listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7334FDBFDBEF84D2154CD1D4E1BF6440 /* audit_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55AD3D8BF86B511E65C5F2EC554CF98E /* audit_logging.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 701A22D519B51F5E69CBA471F0D0B632 /* resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 1B3CE82251C0B5EE1C23C6E03B1C6B68 /* resolver.h */; }; + 7020FE412EA2CB865185818AB912EBE0 /* FBSDKRestrictiveDataFilterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCDED523C7F97116A8B76E5B4248167 /* FBSDKRestrictiveDataFilterManager.m */; }; + 702B5D984CDE75105D90BD2ECDA46A6F /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D729C6B78C3890394F23BDFD90554F87 /* hash_policy.upb_minitable.h */; }; + 702D83E52518B9332C6F492411D57D27 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 738289D53F6247210C3D15FF689CA49B /* migrate.upbdefs.h */; }; + 7030E9998BB066F2E6502CF73E1423A3 /* thd.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB5A210C7D1C45B7C1EDFADF3A97BA91 /* thd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 70359B91539C791CC2671F2D57C7A8F6 /* status_flag.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 152BCD53FE551C101C2371294C33D3EB /* status_flag.h */; }; + 703AEED40955826AD72443FA6C9327D5 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E1972B35C0A57367E0B2C3FBD2B38B7 /* base.upb_minitable.h */; }; + 703B1A4810FF377C9E16772146698E1E /* event_poller_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = 3437DA35DD9669313C33C77B009709E8 /* event_poller_posix_default.h */; }; + 7045AB35817339C0D35DE68941A63CF0 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 70196AD52E7C961DBBE8F0A756ABB14E /* FIRCLSProfiling.c */; }; + 704716F4513653E88D715A7DB8803AD0 /* certs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 672C8315EB0909787E62E75998E96621 /* certs.upb_minitable.h */; }; + 7049A48AEC9EBDB85EDED7A10B33A661 /* FBSDKModelRuntime.hpp in Headers */ = {isa = PBXBuildFile; fileRef = EF501F521025BD468D999F54A34668C9 /* FBSDKModelRuntime.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 705490E3063F2C2659AAF9F5090BE8D0 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 36DCA54E67F9E1320BD5834E81AAE031 /* unicode.h */; }; + 705711130A8024012D9A31254E9E0D98 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = A968F1A606769CCB592834B06D61AF11 /* interceptor_list.h */; }; + 7059C0E906D55F7FA0EE26E9DFD817D7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F21677B25098699FB361BEFE59AA369B /* cel.upb.h */; }; + 705A304EA915CCE5379CDBF72E5666D3 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C04A05651F29B3B9FDCCBB65195D576 /* empty.upb.h */; }; + 705DE578949B48995F7E0B85DBF4D29A /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = C44797F85CBE3E48C9669E4EBC5549D4 /* context.h */; }; + 706182C4DFD7E04EF504D7C4D2C761E9 /* retry_filter_legacy_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC0312A3667BB4B6BB3C5C9B23D615D /* retry_filter_legacy_call_data.h */; }; + 706AE72A5C6ACEC09A4516A0504D9494 /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 244AF837F9EF539D4C2C9D7C4F13ED6E /* socket_option.upb_minitable.h */; }; + 7077BB2D8DE1810F9085ADEA7C69DEDF /* span.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 5921C4D158563EE664FB42CAFB866723 /* span.h */; }; + 707E7196235ECEDFF651C1AA3DD4C7B2 /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADD6DB21101D6BBF4DB89A78584021DE /* pollset_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 708038F0B8745B12FA6E9D989EC1F266 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 021A132FA201AF8F9268BF36DE1F3233 /* trace.h */; }; + 708505BAE07309051D327A37FC40A47D /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C65F188DDAD6C1610265ED6A316E6B37 /* FIRInstallationsStoredAuthToken.m */; }; + 7088AACFFDE81AF101968F25C8AAAB4E /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A52F20127EACF39684B68BC0AB76F5D3 /* altscontext.upb.h */; }; + 70A733B04A70B176DC6601B94381F470 /* random_early_detection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 910AEE51A5705D122D2DAB966DD1A9D3 /* random_early_detection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 70A7DB6DE1D34A6D3012D9C1BB999209 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C11BBC90F9DDC8F99BB5DE5A5100A0CA /* address.upb.h */; }; + 70B1FE9790157AF13CC576D4DAD72B6E /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AE93ABFD4DED57F3088AB13E940E853 /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 70B22759588F862699FD1D90E7BF4AF7 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0776CE3087A3D6BED9B3BE5AAE67C3 /* range.upb_minitable.h */; }; + 70B44FFEEB984C0F214BF117A535FD69 /* message.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 81CA9D6E50B69499BCE1A9945DFB8CD9 /* message.h */; }; + 70B88C9653681A5E520CC1ABC9C95958 /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = A38C24898861B4301919F2508912003A /* transport_security_interface.h */; }; + 70B97C10E0FE4847856FE862C3573E9A /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = FD74546C6B80318E3AFA18BEC6CD00E7 /* tls1.h */; }; + 70BB87F1401903E92939AB10386BCFA9 /* load_balancer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C20055A8B5AB7809706BEFAA51138F /* load_balancer.upb_minitable.h */; }; + 70BC0D677FAD591646762C7463F779DA /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B62579B3CD6D1BED7BD67F0F1DA3AB33 /* timer_manager.h */; }; + 70C96067869A7A46F118D03F428FC43B /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E58FA0066397B4B2781D6074C16C5E /* decode_huff.h */; }; + 70D3EEE7C658E53EF6CE1A124B4CCE6E /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8964F5373AEFEFD596E405632AFADA12 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70D59216049B1156742B0FB397A9D984 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = FCE3CC2203782293864C417DAFD98173 /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 70DE039CA9ACF6568D4B1A8E9E040698 /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 529077C05F357636EFDDFC43C0D5BC09 /* retry_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 70F408DB13367F41B65F9EB1F5F4DDD4 /* xds_health_status.h in Headers */ = {isa = PBXBuildFile; fileRef = C9ABD5BE8C6866F0D9238DBEF1975EEC /* xds_health_status.h */; }; + 70FF29FBA212A6C2C40ADA25AB3ECB3D /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF40251118BB1CE4A443CBB86FEA4615 /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7101969016683EA4714187AF9F8D4DAB /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 540E4924012F3566A249813CA324C195 /* regex.upb_minitable.h */; }; + 710371AFAC15CD490802F15F17ACBDBE /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 95988AE0340FA8D6BA9DE455814C883E /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7104BC838EA22E2B8FEB3E64AB60DDFE /* channel_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80DA7E2096D1B66841362C3372A9249B /* channel_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 71077625D1391E867D30CDA837BC64B6 /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = E24D2309E2EB38C4798CC62AE61DCF57 /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 710B772BDF33E4042AB24B76ACA44EE6 /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E1C5F20BF79D8BE481D942A80090366 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 71350169026AFF9B04DCEF3B572833C2 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2DF1C0DACC546EB144A618C6540447B /* nanopb-dummy.m */; }; + 713AA5EA3CED25BB8111748D2F1BF989 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 7D38000303E96949603D3A24B24DFC33 /* extension_range.h */; }; + 71456816FE31528D4DD9C5498EEBDD9A /* timestamp.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C9EBAE7108E63A9DF04BCA3AD9B3953B /* timestamp.upb_minitable.h */; }; + 7159B95FCEFF1281D00BE4FC68FD08AF /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = FD2FD0100BABB0D446FAE6BE9FA3CF70 /* FIRInstallationsAPIService.m */; }; + 71613517E630D5107E84682631C92662 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D077C06BD49A00A85E962573EFBE45A /* matcher.upbdefs.h */; }; + 7171F9B29E6542E66C2DDBEAB245D5B3 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCBB9C8BA88BF4026D258D2BCEAB978 /* security.upb.h */; }; + 7172830DD61DD43D5DFB6CE64C973BBE /* skywalking.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EBDEB63B9532C8A56255CBFC5F2D59B7 /* skywalking.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7179C5066E89DFF8AE6DA7437248B969 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C9637CD1641A6C72173350632E1040D /* address.upbdefs.h */; }; + 7179FEAC7FB5F96A102B4539644CDAC3 /* config_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = D79B13909177220B9C4A82D58F79A296 /* config_vars.h */; }; + 717B2E2D89375A5E3F4BD751EC8DB3B4 /* call_metric_recorder.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 16D583F498D5A8ACE0493107B23DDD28 /* call_metric_recorder.h */; }; + 717EB784E07FF191224D5FE2F74DA4FA /* FIRCLSNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 094C62316873FC622AA5632EF5EF1C33 /* FIRCLSNotificationManager.m */; }; + 71845EF883177FA47C2674005841FD91 /* random_early_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF2F406BB8BCED24034A2908CD24448 /* random_early_detection.h */; }; + 7189438B0B92AA90A798414C5F9C97FB /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E91755F205B3699C0F7507D281602DC8 /* outlier_detection.upbdefs.h */; }; + 718C94466325B74A8B0B317872B424B9 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B0A738836E11FA478450125FD937E4B /* check_gcp_environment_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 718E4379CDFE2A85B68A6D4B3DF1F20B /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 5176A1ABC323558D63DA0E41EFD544CF /* async_unary_call.h */; }; + 7190958498EADFEB162BADA219ADF7D5 /* stateful_session.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 09DC7FD0B3181D76D3FBF8B3F33AFC21 /* stateful_session.upb_minitable.h */; }; + 719AD6182F44D176B599BA06453DE256 /* PromisesObjC-FBLPromises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */; }; + 719BD3D87A1C0FBBC2D3A7D036C7B350 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C3EF2ABE501B553041FE488645C912 /* cookie.upb_minitable.h */; }; + 71A55E4DFF1C4ADECD9F2B179559523A /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AC03C662D30AA08401DB2790D789A1 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A7FBB7FFC40648750EE0F12FA4EBFD /* layout.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3A0048F0ECA023F221D3C389A27F0DD7 /* layout.h */; }; + 71AE9F86AD895E4D29CCEF003C5D01DC /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FC8353382CA46BE96805F862E1F729D6 /* manual_constructor.h */; }; + 71B018891A55B6D42355D2C2307F8D2A /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64C28C547195A255E9BD46A4D02BE0B6 /* health_check_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 71B8702D7BF5659ED2374BB034D56EDE /* server_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E10FF5F6EF3B317B65FAE8265CCCAF89 /* server_interface.h */; }; + 71BB3AAAAEFCC98E1D037909295809C1 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 791D2732CFDA9B3F6167D53AE68DC0A5 /* duration.upbdefs.h */; }; + 71C27D982B8F9B8902990A70E6AE8EF3 /* delegating_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = E778B7D46D75B0BEF8832E8FADEAE7B4 /* delegating_helper.h */; }; + 71D07A691D1D78FD8B421B127CE7496B /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8027FA34638A385959868FCBA97692 /* Image.swift */; }; + 71EED717396927C5158A6A7C471CD1ED /* mix.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = B410220C2B10321CEF85FBB00A8A7875 /* mix.h */; }; + 720532A54853BF2550FC5F39CBFF6160 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECB9B83FA710DA177B0AB6E66E58E030 /* metrics_service.upb.h */; }; + 7205DF2718B974B214339A211F55627A /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F79249CB5E8A4D0AD7CD8BB5B20F2A7B /* resolved_address.h */; }; + 720922AC17E1C8E5595AB42780C930E4 /* pool.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 65FE6BBBEB45631A6F66F4723E600277 /* pool.h */; }; + 720C2EC9978D04EF43B773F203F8CC97 /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57246B50EF0C2CB83408723291860DC9 /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7218351BD39EBCE4066C2E34C9519FA8 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1529ABEE74C846504A7B8560C367E400 /* resource.upbdefs.h */; }; + 72206C00E693DCA6F346D61B82E31688 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B2F6F554AA7BF8CB0C10FCB73B2665 /* resolver_factory.h */; }; + 7225C9F2858C3D8A613A1928E9E95E6B /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = E411F52F3C14C5F917C82597A74E330E /* huffsyms.h */; }; + 7229FE09DF792815B1680BBD855B509C /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1653975165B59F4F656B9C046A2694 /* cluster.upbdefs.h */; }; + 7231EE94F7EE4433515EB37F407F6EC8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 72364CAA0264F9C4ECF25F78016D3F89 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = E85E41B999FF5D89065282164048DE6A /* load_system_roots_supported.h */; }; + 7245F66503B5A5D210326E36BC7D4450 /* proto_utils.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E3A6B4C0CC047A76AE4F8180CB7DC1D9 /* proto_utils.h */; }; + 7251CA59E98DB8354C3EA32F0428EA8B /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F215D630BA3B93E5B41841445F1BDB6 /* FIRCLSDwarfUnwind.c */; }; + 7254F2E78C0854B5D53E35181F551131 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0C099D1AB937AA8514F2A9D8FFAC0DB9 /* timeout_encoding.h */; }; + 7255730B3513D84379CF10468714F0B0 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 61068EE62F4F5779F4AC46C85624B64F /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7257F2DE3585DF340EB776107D3077FC /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 26D5FA53A481E9A24C18F63149ACD8E1 /* fault_injection_service_config_parser.h */; }; + 725B34B95A1C3C648FC71701FC563071 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 88745239516734F44EE7BC0BD09C4A28 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7267FCEF05A9DB0A4EEF0E38E386DB4B /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 883BE0D7EF525B1BCB72733D765B17B1 /* cfstream_handle.h */; }; + 726C50F40220A4B59345DCCBDFBD45B0 /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDD572906B1C81B4638B6CD4F255F20E /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 726CFDEEE7B0200EB3FB5B85FD0B19D3 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B663A44E1423BAB8B5772A8D396CB5E /* cookie.upbdefs.h */; }; + 727233E9E872BBE1AAFE065CD4D10831 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AECF12540D3F76BD5B9490E662ADEE53 /* xds_override_host.h */; }; + 7272D0923C1275913161293D7B6EE87D /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AD72DC1D721BFBB3CA8365F7868B70 /* matchers.h */; }; + 727A2464A7FA3DFDFBC910FDDF856985 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8371E4C97FD1F6B63E552E8890ABB1F /* tls.upb.h */; }; + 727F6C1207C25963394B5E52356A783C /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = AAD083CB9C14E0E3977BA817911B368C /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7281EC6A9D430D07720C3ED56E627B0B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D2EC694009C233331486BBD0EBCFD3CC /* internal.h */; }; + 7289E2EA3989D4DE8B7BFDF40015286A /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35FF661D8BBFC27ED88E1CF4F314C2E1 /* channel_idle_filter.h */; }; + 72A0216C2E22916D5BBF77DF4541EC78 /* backend_metric_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = B9948646A0069634289C5E92F2FC013B /* backend_metric_provider.h */; }; + 72A6E713EC7ADFC9AB762BABAD1E0A9F /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B75DA7E50545F64C9639A64EEE2391C /* child_policy_handler.h */; }; + 72AC97E85269008272A1481AF6A4AD44 /* compression_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3361C1895AC215309195183D4E1D3DFB /* compression_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 72AD8D73EF8BC74FB38A9DB0CFF6FB8F /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 408E4D64A1C3BE4CB228F8F7AD414577 /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72B7BD45E2331B3E23A733C231B42E7E /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC1F4A0C097003C9772A1E1FDD0CB256 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 72BA7AAEE81ACE033E78E2BAE39B04C5 /* cordz_update_scope.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 019260869EF5514FBED28E33E08D46D8 /* cordz_update_scope.h */; }; + 72BD7FB370EAB03F91A93B8A1E984D5E /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 904D8CF67DD1798DFA92C4E18F17C50A /* error_cfstream.h */; }; + 72C26057AED43E7D36398ADC03F18082 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E55321BF9E92214DE391FDE54C9472 /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C26F53384E6D0BD4C48DB1A9E8E3ED /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 41DF4785F2424E1202C50256C9EA43B9 /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 72DAB4D3F5EF725818D5164E38704DE3 /* cidr.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5771443423FA363EB9D2298AAC5E4642 /* cidr.upb_minitable.h */; }; + 72E70270358187D6D00DDB32F8E445C2 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03398E0505A3C705A1DEF3DAA4DCF3DC /* tls.upbdefs.h */; }; + 72E840139832CB9443753780AFD91C8E /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F921E4372A9999BF2BBA8DF2F0DD15B /* timer_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 72F030516CB5AE05055CCD601FBBA20B /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA8F3AB30A2AC16C546EA54F7326DB2C /* config_dump_shared.upb_minitable.h */; }; + 72F259E6C7C4A0125259D1BCF33D676A /* log_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 631DA351AB80A15981E56CE059BA82F2 /* log_windows.h */; }; + 72F3ABF57659D17CA546ED90095728EA /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = D2E6F079147F8548DCD81421C698B994 /* deflate.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 72FF460DFD66CD79801D26FDBDBE568F /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 700D749E5DB470FC9D9AA3C0FC5B279B /* ssl.h */; }; + 730A156C7D81C342A60FD3577FCA66CA /* event_poller_posix_default.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3588DE0A6B3AD6D1E962684D22F848FE /* event_poller_posix_default.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 730E31FD550E253B544006D4B4EF202C /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = CAAFC93AD098BDDA3846397C219FD405 /* grpc_alts_credentials_client_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 73186A805F6A2A1A231BDE7E0A63A3CF /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5475554C2C1E6BA7753376886994405A /* UIView+TZLayout.m */; }; + 731C34C22800D5F0AF417E801D3409B0 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = C185C3C4A026D1947B149F451E7E663D /* SessionDataTask.swift */; }; + 732C29255F73EF3D83D49BD4F8FEAA8F /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93B256EEDCD59A2C1996B9D6F42AF018 /* MultipartUpload.swift */; }; + 73331186DD0CE91E9875B06A229F441A /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C91963557AB77D550724A8A2675C4916 /* orca_load_report.upb.h */; }; + 73350A1D612D5C0B730AEBFA563F0F99 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 36809A12E5F78AD80D2330A7AB154EA9 /* security.upbdefs.h */; }; + 73375A3AC149D5B083567A5AA9636675 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 325ADA95E6704E058566B5A3DC3F62BA /* channel_args_preconditioning.h */; }; 733BE2B7E19AD859B26E85281A227C89 /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A076D1EE7CC43CA8C979D700B34629B /* SafariServices.framework */; }; - 7347DC6F8C11E6AF3A001927665188E7 /* grpc_polled_fd_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 53507921216FE8096734A59E6A8B1C92 /* grpc_polled_fd_windows.h */; }; - 73492B3E523082B661DF3A41DD08145A /* cidr.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B244D261883B50E1C3C2083834C835E1 /* cidr.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 734CEED865C68D12D9196EA52794C674 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B1D11CE981C028CF61D442C691D84A /* transport_security.h */; }; - 73512427DC678A30DA2C3E71AE6C23C9 /* server_info.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DBC553DC0AA6CE062DB607F840B91AAD /* server_info.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 735A386A6C92FA630C828A19F5AC595D /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BBD474D5EE322968E2AF8A2C3F31C2E /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 7365633077C462B2D68843C185E6389C /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43620B128524F892B1530D555D265C71 /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 736D8241067606819DD3D935568AA50A /* async_generic_service.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 38CA568AB123F0948CFECD5CFCDCE3EB /* async_generic_service.h */; }; - 737747B9A98257DB58112C3A23686669 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E2EB1A67B674C3AF914E1198F4F2BB5 /* MultipartFormData.swift */; }; - 737C8289019C945D71FFCE4461B4ED5F /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CEEC06277BA8BEE6E610849D3F9810 /* regexp.h */; }; - 7380810E443E94996C4C47338E0DD5CC /* FirebaseCrashlytics-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B91C4DD31CEC54031B3B919A2783A2 /* FirebaseCrashlytics-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 738C11C5633149F28082D8E4CCC4395A /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB0C63ED45CD331D347FD85BD7A3EBEE /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 739D653DF80F181ADD2AD4E78DB40195 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27934D15963FBE1407EA577498E6F92E /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 739F38F888A44C9C1E98AF472725E28A /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EE27965D7FCC1A18A7E04BFD13C46706 /* executor.h */; }; - 73A463B94D8E97A0F319E8B860036305 /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA2B92D97F1F33BC52E0E89110C7831 /* insecure_credentials.h */; }; - 73BBBC22D51195975A492436B26C1549 /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E01CAA0541E8BE0B2F21A56B6FB2BA81 /* field_def.h */; }; - 73BF27BA33D93ED0D77D417D1FCFFA76 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CF532D5C1C0DB49BB631092C5ABBB341 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; - 73C728718F6B9B3A678652F94824E8D0 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 235BE8323E4A0454A229CE2E0DE9D888 /* string.h */; }; - 73D49DA07780A1D94131797163335BFF /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF8EFC801728FD4406D9A902A51367E3 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 73DBB04C3FD12C8CDAAEE02D31E42A5B /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF5A39BFE01D0E2B26C6D43C962B164 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73E43E2DFBD90D700E173DA731436053 /* cordz_handle.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 597347D12C9600922168CF804E260736 /* cordz_handle.h */; }; - 73EAEB8A176278807E1180B68C776690 /* zipkin.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AEA7E44094FF9C17BBFA81DC1E5E55C8 /* zipkin.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 73F0564578024DDDF8729727E6469D68 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4B36AAE3221597532D7CFFA8E2B860 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 73F242A4791CFA2EBB716229BB88BA4B /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9ECC67B3BBDC20D82F8B2378B99229 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73FB858884B8C5ED2DA9AEA5C02C128E /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B86764008524C4DEB352A34F527C33C5 /* metadata.upbdefs.h */; }; - 73FBBA414E5B3AAB2456DF4A8CCE8B71 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 36512702B810FEE71980D68A88C72FE5 /* FIRVerifyCustomTokenRequest.m */; }; - 74014737B29AA96AD2D50491A3FD4A36 /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B4C4B12A0E6E371A125A95CD7DCB66F /* server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 74114E59E4A988D94B9B110A4307BB11 /* server_builder_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E414256B58D4C3A49CDCEB5867E35D73 /* server_builder_option.h */; }; - 741C1653F82A5951BD60B031399020A4 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1368D545D017CFF0877FB7C2A4E61046 /* lame_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 741E8C726A63A8481AA0A8899F17C0AF /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BB441DC8CD27B25007EF8319C9F17DE /* any.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7422ABDE2FCE30386E2BB93A1E37DA43 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8B396C9D3C9E636813733B659E94755 /* config_dump_shared.upb_minitable.h */; }; - 74270AB9C7BB9D48AD091FEEDDFDAE15 /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = DF978AA0D06A95087A29D5B0C8E44E66 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 742C7E1F1931C956A6286A57BE57F853 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07B169853212973D75D5F97B86EBAA82 /* config_dump.upb.h */; }; - 7447470913C8739D4629166EAD79BAC1 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = A442805C210ED3A9AF422F716FD34863 /* resolved_address.h */; }; - 74475AED799BF286BDB345108277D522 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = E62B17FA3495E736DE3B9DA3E4342D29 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 744AA03EC2A0C950DC6A7FCFE86B75AF /* descriptor.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B127787BFD357023F68AB099C4B4ACA /* descriptor.upb_minitable.h */; }; - 7451E4658E02F3C7F5B72188E1DFBBD5 /* internal.h in Copy crypto/pool Private Headers */ = {isa = PBXBuildFile; fileRef = 10F8DAB13CE3C5A3C5CC3C2E67BA876D /* internal.h */; }; - 745E00A339882E049DD9E80AC91DA121 /* memory_request.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 36B68C4FA4D179ADB04F78A4B1BB4484 /* memory_request.h */; }; - 745E5E41A41D60320B20EC640A493F08 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC7B281E28F3D4D4E767A954D6E24A0 /* secret.upbdefs.h */; }; - 74615ACC4579894851A027D9A80B0D38 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = CB6B880940B27AE1554CB9B61A998EC6 /* legacy_compression_filter.h */; }; - 74670BC6A50D145188F53603A9CF9E61 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E24C87B1CDBC767744A43CB0F0D24D /* grpc_authorization_engine.h */; }; - 746AFE064B7AB4AAB7B971E32DFA5E6B /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 485F7973D1BD72F32A19A3D38784AFE0 /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 74754C3D2B8ABE915F77EAF019494F1F /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91AD93E569716F3C6B393D5CADA36CAA /* check_gcp_environment_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 747E92452694EAE7828E32868DF36FAF /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 764C8B6A8069BC81E8FF82D3142BE6B0 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 747FC4833428BF7BB3FEFA735A0F10CD /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B062C0B572C3A7FBD165823C635FC6 /* FIRDeleteAccountRequest.m */; }; - 7481A5E86BF658B6347B2D49AB98B30B /* version_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 1370B72B38F87CDBD732E9B537B8D924 /* version_info.h */; }; - 748CCFF1879805F267F9863AB6672CA3 /* filter.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C6FCEB9CBECEFAC940899CF008BE3E /* filter.upb_minitable.h */; }; - 748D2A8913354B0CB53803A8C866045F /* resolver.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 18EC9D3BCD96DC361A7CA570D679683B /* resolver.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 749EF1FF7D2A51157784818FFB7EB944 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 810522A277DAAC03E9AC86949AE446C4 /* percent.upbdefs.h */; }; - 74A16C100FFB517CCDB6E83B2376625C /* low_level_scheduling.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BCD60A6A28FB3AE84CAFAB8704601217 /* low_level_scheduling.h */; }; - 74A3636B7A8EB79B5853FC8597AE7308 /* FIRAggregateQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C86CDB25A18E55541582F14CB36CB4E /* FIRAggregateQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74A8B81ABCCA75BD0972CB5D0C824414 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 908615A9B249DA25C1DA7AB7518B9CB3 /* auth_context.h */; }; - 74AF91BEBBCF0F3072F90927574379F5 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A9D8E488AD8ECBB44EBAF2BDEBE69C96 /* dynamic_annotations.h */; }; - 74B19833F37FAA94C9EB0A017786A359 /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DFC5EF68382C280AB564D81BE2CDF02E /* wakeup_fd_posix.h */; }; - 74B7F2C8B74F9CA8D5C725D47937A2DD /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFD66366FD4ADAA9A668BBAC511C88D /* internal.h */; }; - 74C2B526ECE5AB04FC17ACD627169948 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4745A3C2FA02F0F6CEDA05AC7A7682EC /* xds_routing.h */; }; - 74C376ABC83E5329B656D248F2E8587C /* path_util.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F38393761DD601B4F321E85D4950815C /* path_util.h */; }; - 74C798CFE573C845752F860ADC6AC807 /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5027D4AEFFCD2F16BC54ED48D70435E4 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 74D1DFC5B57F2268377A7A56093CF279 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF8F226D5868966212C8495444C09AFB /* tls.upb.h */; }; - 74D4310A9CF21D6789908349AB928F17 /* stdcpp_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC287F1C548D1BB52948EAEFE4CB38A /* stdcpp_waiter.h */; }; - 74DC5B40EC26EE96E4783285044E5D6D /* status.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 4937660C7C4175EB86B4768C14D3A42F /* status.h */; }; - 74DDD568D63A07FE1979FD0AA3BD2468 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D936843959029F76FDA25AAE5EDDB5 /* backup_poller.h */; }; - 74EAC18EC22CE44BA733E076A5DBF48A /* FirebaseFirestore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DDA11B178A335920EB85CFF07E8A4C /* FirebaseFirestore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74FBB0297FD4272672A7A207F8726524 /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D147E8B27B2BB17670D0FECCB8938287 /* retry_filter_legacy_call_data.h */; }; - 75045E67777A4AEF183F6AF847C3D2D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 750CD219CC4E0AFD3643024352703D66 /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AC81BAF5702D091A83160AC191DEB6 /* service_config_impl.h */; }; - 7514CDC69B1769AEB5D3BBDE5A19E0D7 /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F800EB3ED9BC3CCE6B95FFAAC90067ED /* unique_type_name.h */; }; - 7517BCB9569DB0D0A551CEAF9C644B67 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 289275905D7AC8A0F06F01CB001CBB0C /* cel.upb_minitable.h */; }; - 751834873799C64DD4F3E676A2F48DA6 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD0872C903827BFD1608D4FFDA0AF3C /* TZProgressView.m */; }; - 751962FC8F5AD3A4309385192B8D9245 /* subchannel_stream_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37260653E33A1A23E5FA6554EDC20BC5 /* subchannel_stream_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 751A3A8C4AD0549F4616E1EC8AB1248C /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5568523A097E5FE06BBEE7AB62A2D765 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7522B3FCC33AE5369FAC560B7A38C037 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 834DCA5A1C83A912DA182C06F223E8BC /* http_connection_manager.upb.h */; }; - 752747A1109DE5DB210F59FB3FFCB3D7 /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D322CA7A3730629F60C75336531374C /* FIRActionCodeSettings.m */; }; - 752D821FC109F5B6DF640C8345A16F1E /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DA6BFD0FC1A06826DDEA320EC829AF2 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 752FC020C6FF20663DBB7FCD5BAE7762 /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F7733291D4F627015FB23CBDB6C9A /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 753B51D057023EEC8484D6F3BCF36CF6 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA0F55FF86A7BF6B3BF76BA41D52D20 /* status.h */; }; - 7543FA8265D3F3A831DDE1B29B23E93B /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 305E05AC4BA4B3B5D2EDB20072C2B8C2 /* cert.upbdefs.h */; }; - 75448BE3A05509700B0B466A52DA73C7 /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52BAB80BA1942EAAB99F48DAFB6B648B /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 754C7F08E2A7CC6ED278375F059164FD /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF59B852F9AB0BD693F743C3ABB7A72D /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 755F7FEE6364B78C6389E88211176A21 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 95E47DE62C1F23A8F359FF7B56738015 /* grpc_tls_certificate_provider.h */; }; - 756251F49131059C87F7503575B56079 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = DB450E5A167A88D7CF5B38632315A2E4 /* json_object_loader.h */; }; - 7562D655A2B4CDF61A2EF56DBC05E1BE /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F190A66993AD73D3268314FF1D85F7 /* cpp_impl_of.h */; }; - 7566E4D5E68856D4C908368997E397D3 /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = B4BA5BDC81911C99602143D0582AA47C /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 758B227B3BF45E1E9F421A6A8C5AC195 /* x509_vfy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E08BEF8EA95D16E6020526523B103B62 /* x509_vfy.h */; }; - 758E462E070F001CF693B41CA1D08D34 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 71C6A6E8F0C0130C9BB469BC89330E11 /* security.upb_minitable.h */; }; - 759DB6E8F61B91817F728326B806AFB5 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AD222EF24CB080C21D3ACB67E71E198A /* FIRConfiguration.m */; }; - 75A421E9EB550B20FA4153DC07AB7BE8 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7447848FD17E63A1310B231DF10B6E0B /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 75A6A9186D415A58F78642FA7B1B066E /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 168366E867C48CA928E316C666CE9B12 /* frame_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 75AC7E55CE6BCBF75F5B316BDB3F6D58 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = CE04A798373BEC75176E7D1FDCCA00FA /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 75B0B73F6E085435047337A8572922A5 /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = E21DB309D4AF7F0D7F95121D7D2CE305 /* service_def.h */; }; - 75BD6F371EE57428C05EF1343F2712AE /* tls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDA447F723DCDF10E392F71AAA50339 /* tls.upb_minitable.h */; }; - 75C134977894ED2D8C9A8C6BD2D722D6 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C28163E93826BCC1B6FA52022ADDD26 /* table.h */; }; - 75D142BD1EC9048B857B2F85AFC6623A /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A9F84544900F0AE024B0A8BFEA0FB19 /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 75D733001790F4105EDAE63E9A255464 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABE55DD027D9C864A0C77523C75D100 /* rpc_service_method.h */; }; - 75D8448B3DCB568AE118C6689461977E /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA9A081CF9A097273D03822BB820BBE /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75D9B1F4316834656DD4A4824B2B163D /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = D141407BE69E0D3FDB371A5F214B610E /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 75E7BDA6B6BC1E34832629AC5704B23D /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4788C1848D3046321F6C98B711363C /* zipkin.upbdefs.h */; }; - 75EDB075615BE3832DF0C4943EEA962F /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = D08180E1C44F0D5FB404AB3224A094F2 /* eps_copy_input_stream.h */; }; - 75F233B700F618C3CF3B367B9A8371CC /* completion_queue_tag.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 44946B9C254C2E04C87F4E96EEBD71C5 /* completion_queue_tag.h */; }; - 75F7C4B12D1B436A8ADD5EBCB7CF3F63 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E4E5BD77D03325E5A8483B615EEA8C /* cordz_update_scope.h */; }; - 75FD6CF90E0C08F8E28908AE97BE227B /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01C4D490D7EF8331D8A0056C11406A9D /* ratelimit_strategy.upb_minitable.h */; }; - 7603EB1BDCA90DDDF5F7D35A8DD1BE6C /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE44E708C224955B889548F1A0C392CB /* route.upb_minitable.h */; }; - 7609F9AEC1C9B6CA99FD839ACC0DDC74 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 3C83F796AF28C7F7C323F519C848A50F /* ssl_security_connector.h */; }; - 7611ACD2D66FFBC69C132E33B3BE31C0 /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 511C5D0A3891A67D4232826B9379CFAE /* channel_argument_option.h */; }; - 76140064499172BA14C3FA0E1F66FDC9 /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBAA681CDA069CA1AEFB8A6C1D1EB1E1 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 76172B7D9611228F8029542159722EA9 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 566E061C760340727B26B39F959288FE /* sensitive.upb.h */; }; - 761DF0256CBB0CA4506580DFBB612194 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9EC79AA0988ECE07D6878C22AFED429 /* KingfisherManager.swift */; }; - 7620B8FF71166A1326BB4F559926A76B /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8F1AE10D29F73FE99C8B4AA0998DFBB /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7620F20ED5264B121A0C29566B790A97 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FA1581533CE6CB292BEE4AEB51E7D84C /* xds_client_grpc.h */; }; - 762609EB98B5F3B8B8AB301C759D0040 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = D296465B4062A6F08CE88B5DCE57900D /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7639B85BA9E9CF885EB6755EF4151F04 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = A575130EA053819A61C5FCEBF0EDBBCC /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 763A5C97746159393619F84359975EC6 /* cf_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = C12073903949CDF9D950C6B1CC4EA24B /* cf_engine.h */; }; - 7641C07D5DF02064616C6908BAD7C23A /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4FCCA197BF1E332F0DA61D75577EAB /* http_uri.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7641F9EB101EC986A6A135A8985D9D8E /* decode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 323FC9A426CCF9156C0EA1181A530B07 /* decode.h */; }; - 76525D94CB4A90DF259B498B02BED663 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 634A0F6B29123750EE8AD30B9374EF29 /* http_inputs.upb.h */; }; - 766E980F535BBC0260C2CE5290888B2F /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1DE938959201731BB35919CC5513DA /* timer_generic.h */; }; - 7675F86AEE1597E6B4D11A928B56D0C4 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 22CED4A49793020F0F866C96976D428E /* status_util.h */; }; - 76765B4AD3966801A6889F666DACCACE /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 889843C733F18FF1A18FC2BA6BA2F790 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7677BD83E1376A40AEACAEB28330357B /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6155A3F627FE414F539B899A33C99F3 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 767B73C9E76BE8852B2B6774FFB3869D /* grpc_security.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C83C42C32CD93DC5DF0F9BC6104D0D1E /* grpc_security.h */; }; - 767D21FEE872CBBFC3C5138B9163EB22 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4077F2B60ABCF7857C4DFF87BF85158 /* skywalking.upbdefs.h */; }; - 7680EDBE804C2798C24DA83DCAF2A3F8 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9EA9BA889DBC17CE842E105EA1411C /* activity.h */; }; - 7688B3186116F0446C4252918DD097E1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F41B63D8617D03EA68F2F22FF7759A2B /* internal.h */; }; - 7689076732E300DF98CE5365B4F90648 /* status_code_input.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 500135B33B6EBC21AA5A4C225EAACCDA /* status_code_input.upbdefs.h */; }; - 76983D823A1FF032E675574C74AE5656 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0898ED168E15D876AA016D35B9DFCA50 /* PrivacyInfo.xcprivacy */; }; - 76A0CE006193FDC109E5424044021447 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = ABEE3DB0C97380CEF6BEA23535FF0FFD /* common_closures.h */; }; - 76A7BD8499B92ACB9653B260AF2BA3F0 /* cel.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B5B1D13E21BE9464AF6CEEBCA491EBFB /* cel.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76A80704DDFE141242B28B56B2849EBA /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9286DD712DADE113829F799DA4DBE4B9 /* extension.upb_minitable.h */; }; - 76AFDC816CE82BB4BEDF1A16D1F7464D /* event_log.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B276B96134FF03D1DA506D13CC612A0 /* event_log.h */; }; - 76B11DAF17F754925EC2A857D8E6C320 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C01D818C25AD57E47812CC6D7958992B /* semantic_version.upbdefs.h */; }; - 76B33ECE53B3AB057969ADE2EED3D49D /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F98FAA67801F406D6286443C1783B1B8 /* route_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76C0F0C52C62D134EBA71501F4D37068 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 62F28224FD5D5627C9A6727494EE00CB /* any.upb.h */; }; - 76C345834C76354D120AE29E9400A3EC /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 163BF052754DD3CF24C2D34AECC920FE /* inproc_transport.h */; }; - 76D5C7F18D0725301A03C908311A788C /* tap.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 078A49138A0CD01ABE0B9F5A7D6B219E /* tap.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76D6289DBBE377A94CFE5463B742B0E2 /* cord_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8FE16CBD44669EEA7207DC9293A0DBC5 /* cord_internal.h */; }; - 76DEA9F0F721A5575EE97006F8B132BF /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = ABF05FB07E97C1B83849AF556B87C859 /* file_watcher_certificate_provider_factory.h */; }; - 76DF7FCE48021DC0635E386FCF0140C6 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1CAECF7D4BA7340F5E4741AE10FBC4A /* wakeup_fd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76E5E5B361EBE0DC23D717A45B7BAF41 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B7C492571D73D1017039470FBC604782 /* hpack_encoder_table.h */; }; - 76E7286A98DC149D6D3ADE4C9D33258F /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8785D46349637527BCC4D9609403380B /* descriptor.upb.h */; }; - 76ED06122F6D178CDADBA8F19DA0B8E4 /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEBB546464B83A5561581C760030843 /* mutex_stats.upbdefs.h */; }; - 76EDBBEB567BBC820BBED0902B7C7906 /* xds_http_stateful_session_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE24F5ED35B0F33BA8E747BDF38374BF /* xds_http_stateful_session_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76EF43070359CC4B0A42080834A5D963 /* trust_token.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 61B40CFFCB77048DCA251A4A63CDE993 /* trust_token.h */; }; - 76F3B1C95083B654279315A9AC79745D /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = D8C4EFDF6A16E27202682314213CC216 /* xds_listener.h */; }; - 76F3C3F65932FF55D89CEA4091144FC8 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = A8683D4095057BC40C62BA51542EF92A /* FIREmailAuthProvider.m */; }; - 771132BE4EE631231358A2E136963DD2 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32FF8DAAC8C433840DC1923D64F528B7 /* ads.upb_minitable.h */; }; - 7720643DBED07C35C5F3348113E4CC57 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A4FAC17AD804A43DFA3B49BB117E176B /* table.h */; }; - 77316EE4AE6415353B1EBEFD5D71E236 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4EDAFAB13A996BE75B259AE48D861E65 /* dynamic_ot.upbdefs.h */; }; - 77317A23D324D186CEB98C2483B25E14 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2879443C41707A87E253975E1FD349E1 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 77338FF2BCBFAEE1FD0A1677E1540579 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7D7CD4BAD2A97D0309D7EE219B7F6F82 /* handshaker_registry.h */; }; - 773D96A97A424A704A08160E1A84390B /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AC82BEAE2F8E1F2200BE4B6FE842C1 /* ev_epoll1_linux.h */; }; - 773EC0B0D925043A7CF8139FD21A4DD7 /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1ADAD8119E10A19BF3A1862FDA4956D4 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 774CD6125605C09A76956FE4C516E686 /* safestack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4AF237783057F58C665756F0F9FB75DF /* safestack.h */; }; - 774EEF9B898C2C0E31A71C2E5FD47BB8 /* service_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 11F129EEA5B95F1089E22724A844120E /* service_type.h */; }; - 775B635E7BAA78B48810C11A56BEB1F9 /* crc32c.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D46647395605F700FB587EC4049181E8 /* crc32c.h */; }; - 775F2993D268927940EB0EDDB0573E2F /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = 475759045F39CC973CC54DED35DAF5FD /* google_default_credentials.h */; }; - 77818E8D4A919AB697203930A54E3742 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD4474AED354011899F1BA84BD4AA41 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 77855957AC47E0D97059A8D8A613E0E2 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C728E3020B06F6CAB3DB3FAD0BF906D /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 778874D75CEAAB70AE5412A49B561536 /* config_vars_non_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A0033434485F65359568B2F996C7C74 /* config_vars_non_generated.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 778B56AF1A2C16B6EE34742F2D7192BB /* xds_server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 38A5D4A2139A36A00C217BDEB2A447CE /* xds_server_builder.h */; }; - 778E7C77BCEB9BC18694A76FB15FA5E8 /* RemoteSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A9033E9660078E72281854E57DA5AD6 /* RemoteSettings.swift */; }; - 77AB6AF4BFC6DE016DA7C057B5799C84 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = DADB329B9466F748B016B29B3F0BB263 /* ServerTrustEvaluation.swift */; }; - 77C1F12365DA77781A3E5F620373AEC4 /* for_each.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B00CDE5FD43FB743D491D3B2944AF9B6 /* for_each.h */; }; - 77CB51CB38804C53499B1B5F5AF72BE1 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 076AB9DD52FFDDE8EB5A30CE89B48312 /* mutex.h */; }; - 77CEA959002F566CEC648F9E3469377B /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 6A0A3AA971A988B2A5E579A77EBCC7B9 /* rbac_filter.h */; }; - 77D55488295B844954FE3EFF69AD8960 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A5F6E7EE610DB4C5FA26DABD263AE7 /* scheduling_mode.h */; }; - 77D948D3F7750918E107CCE3C20F3DC2 /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F92A88A6564CDBA2D4034F9AE0E5F19 /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 77EB4081ED6F08C295202727AA682CA3 /* quic_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C6B58E7F23D33E2466C8648C7A1274 /* quic_config.upb_minitable.h */; }; - 77F3651B9247B9496E1E837551FC049D /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F75A4EB47448A6042AD86D0270CD9507 /* grpc_ares_ev_driver_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 77FB6D08C6C8EDAE514BF5405F22C6A2 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 338AF7B3269FFA8E6D2E535054329AD9 /* deadline_filter.h */; }; - 7808541C9514F509824631B2F1D09C5A /* opensslconf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E27629BF1C4D3584C2CD3C23718DFBD7 /* opensslconf.h */; }; - 780BE2227EA33521E51F2B57AF3CCA64 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8680DA681EA0ACF4724E648A343995 /* bootstrap.upb.h */; }; - 78124CA00586FFF5CC94B2685EEBB5C2 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A811E7DE142B4CD43D1FFDA48EE073 /* GDTCCTNanopbHelpers.m */; }; - 78157AFEAE04E6F76053F01F7E2F5A30 /* simple_slice_based_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 94492CC75E30E66E480DE9D90780A21F /* simple_slice_based_metadata.h */; }; - 78164C4FFB9EA9E132AE0D94B259D93D /* sync_generic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DDC39A6B79CCE6B19310DE34BC2EB2D4 /* sync_generic.h */; }; - 781C1EEA9EB5CFB0524B0F4869C192D0 /* declare.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 3ED67E4A77BD0818CEB7184A8E69E913 /* declare.h */; }; - 781DBE76F408B8F5A891EF57149EADE9 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 097DE915BBF1F98C914752D5920787B5 /* FIRInstallationsStoredItem.m */; }; - 782195D999E8CDEE84DBBE5D1A7DFB8C /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 85ED1CCAD3A5E9991950EF508816805C /* timer.h */; }; - 7829AA95019266174C700D570A28EE69 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAE9BBA29F0990AE5B54803236B88F4 /* frame_settings.h */; }; - 782A9D17CA1BD243A5C9E4D785D44228 /* FIRCLSMetricKitManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F74D29F19DA3AC281172E32A6A5B041B /* FIRCLSMetricKitManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 782E902B9CE7C68744575F5FD6D95203 /* EncodedRolloutAssignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0B9D2B13E412C8C21E8095C073F2E6 /* EncodedRolloutAssignment.swift */; }; - 78349B94FC9ECAF4584736E38CB543A1 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E079C391F7AC4817A8FDCF9C3111252 /* listeners.upb.h */; }; - 7835CF85B5836B608DE7A25F562A4E62 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = D44BBDEA9B2A49D24ABB225B31A5B173 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 783AD0927B6B77880FF9D16901768D1D /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB4FE7E923B39AFE63F5429C670251C /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 783BB7866AC322B77366DBF575F1E02F /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = DB0A71F300E3A41878E46A155CD494D2 /* GULSwizzler.m */; }; - 784DA9CE2BD60A8EB70C76EB398D0911 /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C0456A89B9CC6612F39E0D43AA78F19 /* server_info.upb.h */; }; - 7852BAB772D4886823C7B2E8A939B36E /* builtin_curves.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = C4E82EEE9943E67E99F4FA87863B2C45 /* builtin_curves.h */; }; - 785721011C2BAD57A38B6AA8AC3CC2F7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 885ADADBBFB0606234F609F240AA11EB /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 787413DDCFBD1CBCF4D62926F90617E3 /* call_op_set_interface.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = A10ADF18D1B77FDEC407C3033B2A72A0 /* call_op_set_interface.h */; }; - 787C0508ABB5EFEBB5A15C1F4CFA38C5 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07B8D83C5E3A5C349564E4991DEA86 /* accesslog.upb.h */; }; - 787FC2F926ED5C9FA49025D63F2081A4 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CE85A4E0500DB7C9ABA1CFEE48EBEFE2 /* http_inputs.upb.h */; }; - 78843DC3D626059F60B13CBA31E4A403 /* damerau_levenshtein_distance.h in Headers */ = {isa = PBXBuildFile; fileRef = 625531DF482D3C18F6D48AD15736FD00 /* damerau_levenshtein_distance.h */; }; - 789B54A01543080E4F588364B7B7920D /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B981440B0317AFC154749F87D0D80A /* pollset_set.h */; }; - 78AE7C419992DCED9DFECD3A5612754B /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B44C29FE4F618FF80E25ECCDA04C55F /* socket_utils_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 78B1DD1219182494A6AFAD26AAB20AA6 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35BCD661B5C50704DA841EB440736BF6 /* Concurrency.swift */; }; - 78B7641DF59DFD519F2EDECCC1ED3DDC /* client_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B33F58048DE87EABE6BB2926AB523372 /* client_callback.h */; }; - 78B8C9D1087DC46B212D3BAB942B3EE9 /* ping_rate_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F95F8143FE8EB12B2E42D9D655B99B /* ping_rate_policy.h */; }; - 78C7DD679CD5E70407CC8047D39BB470 /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A98D5E929E8B3A5C9EE23CDC83C6A8 /* grpc_posix.h */; }; - 78D341C5E74318AA7AB0B775C79A32C1 /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CB2A81B987A2431D7A3CA58309098C4 /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 78E44AA59341B3CF8048D30D3695BF21 /* proxy_protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 33472150593A741653E9C7075B46E328 /* proxy_protocol.upb_minitable.h */; }; - 78E7597988CA83852C70339C45C9E4F7 /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FEDB7210C3BB15A78710859E3DD9FDA /* pretty_function.h */; }; - 78EF36D21C43B66F9131540C80547A89 /* FirebaseCoreExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B604762EC85770D7D0F83401C6297544 /* FirebaseCoreExtension-dummy.m */; }; - 78F4E5AFDCBDCB87F94478772E6C9050 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */ = {isa = PBXBuildFile; fileRef = C33178F43C6422FD7741547BE9A5C789 /* dns_resolver.h */; }; - 79018270BC8BFFE9BB516C69D5552644 /* trees.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 7D0CC2F8E29ABEDEDAECEBC064D14267 /* trees.h */; }; - 7912863EC658500FFE726E8D595F201B /* thread_identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 75FDBA0CD5F76A904AE29CD728260F73 /* thread_identity.h */; }; - 791299FC6F36F8738E321DD5AC50584D /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A5D4A2139A36A00C217BDEB2A447CE /* xds_server_builder.h */; }; - 79148E43FC4B8EA127863538B950A36B /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FACC69F5E008BE484AE7F0E1CF3DBD53 /* call_size_estimator.h */; }; - 7917B58031A7DA24CC9B20134BED697C /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A454413DB81E07F483281EDE658198D /* circuit_breaker.upb_minitable.h */; }; - 79221238A9069839DE7DAEE42F23A993 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0865506B4A627A56FC227E85D966FBB1 /* sensitive.upb_minitable.h */; }; - 7929C213B619BE7DB985B07D7CD37890 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 052DBF58F4408C6C42362255CA08D4E3 /* channel_fwd.h */; }; - 792AB8B027F2F4D3C8563543909D4D2C /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = A0744F09230C6414EAC22E8C49C6B260 /* message.h */; }; - 794AF46DA08C6AA784600565F0F50104 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 293AA3E22649FFE1F7A6B3E94EF36BEB /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7958D5B42EC499267CBA95B9D9A77128 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = FDB39484F1ECBB02C8C2CADCDE13C1EA /* FIRDependency.m */; }; - 7959C07A2CC3A097C5C9C76988FFF66E /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B0ACB901660296B54A3DD638DB14E86 /* outlier_detection.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7961A84A3B17ED180FE4A71E33B8B64C /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D5C0E1F300C98339255F16D2691C5E8 /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7962F71FC356A2361B83833F8ADA777F /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC1440D83158BE03CF874477B3398DC /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7966D5FD3FE13002BDEE2C85F96FC7FA /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 96212E0082AB7FF09B6B4C3A92AA1391 /* seq.h */; }; - 79730309B54AB5BE9F41BB08B9849E9A /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = FECE40F0DCCAF6567C7E3806FE911001 /* container.h */; }; - 797ACC9F6017A6663D5D6E58956594A9 /* message.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BA78481929C898206BA67720594EC5B9 /* message.h */; }; - 797E9BED13734A2A33A27B846B286E98 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE1AE95FD0C137A7D3EC108C64356A6 /* core_configuration.h */; }; - 7985C57CAC3546A170505C03333C6EEF /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AE0D1430EC983E9BE4082BC9614CA4C /* outlier_detection.upbdefs.h */; }; + 733E8CA81E9EAC80537D63D0B23432EF /* FIRAggregateQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBCD906B1DD2EA355881B0F60DC4C2A /* FIRAggregateQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 73428BBABE9E25340FE3DE5A526D90AA /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; + 7347A30A64B496D67EDEF6012BBBB212 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C06845916F424871845F5BC9F0F20E /* http_connection_manager.upbdefs.h */; }; + 73518AB2E6AF70FDB654BBCCC1EE4CF5 /* FIRSnapshotListenOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B8EA9776B77495B3C992DEBD38AF721 /* FIRSnapshotListenOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 735870EBFB7AEB98843C67E7CD1537E8 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D739F899C346E6A692960CC8D692724B /* load_report.upbdefs.h */; }; + 7365AB484664F789DB4A603EFB3E1B2D /* rpc_service_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = CF6BF028719FE334344FDC48D7418BD8 /* rpc_service_method.h */; }; + 737747B9A98257DB58112C3A23686669 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ECCA78ED2CC122767954859A8C42C3F /* MultipartFormData.swift */; }; + 7380810E443E94996C4C47338E0DD5CC /* FirebaseCrashlytics-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AB83BDD518F6F9DC015F582D93E6CE09 /* FirebaseCrashlytics-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 73885E638C779A880A1FC6AF3E83AD28 /* optional.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 27653A18DDE5238E8C1A7E7669622ABC /* optional.h */; }; + 739650FE504D736B546F8BD7E1DE3C23 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 3008E84395D02DED0F6D50DF8B780925 /* combiner.h */; }; + 7396DBA5A596A8C41869A3191A65C8A5 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 88AD72DC1D721BFBB3CA8365F7868B70 /* matchers.h */; }; + 73A0C1BCF2F8314F818C7B30AD0A1567 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6912A42095D25F62FB31D97FA3F84FF1 /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 73A0C6D76B1BB21A30EFDAAF9CE38F87 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = EE7BB77AA1883548ABD2A4EFB5A3D707 /* deprecation.upb.h */; }; + 73A38246AE9FC4BBD33B8089BD0A7C72 /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 516ED4CE611F3440F990E6B6EE5DEF73 /* leveldb-library-dummy.m */; }; + 73A507EDBAFFF9E16D2E0EF1BD71783D /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD285FC3ABC3D0B986664959EA6DD12 /* authorization_policy_provider.h */; }; + 73A6920B70780EDA624BA5B3CF022F92 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0504BFA3C517BC5AEACEF05091347A /* parser.h */; }; + 73A94F0FF989DCA2245F9CCD4EDBE6AD /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = E78DBC96EE09D643614969878A3B85DC /* global_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 73B5163A382F3018C59B5857907E9EB3 /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3EF32F44C5915F51A017BA30D638EB8E /* traced_buffer_list.h */; }; + 73BF27BA33D93ED0D77D417D1FCFFA76 /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C431273A02A499F73F55EC86D643A06B /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; + 73C9E5123FF01BD119BC93170E3A9FA3 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 9B6159FAAE06547D3DFB36D42A8258E2 /* gsec.h */; }; + 73D02620878FEF3833FDF3A9092EFC0B /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 833147B97811A9976CC103EF8F21AC49 /* resource.upb_minitable.h */; }; + 73D93D45A0B3666D1EBB02D3DB33DCB3 /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = DBD274DB6B83596BB9E409A39176757C /* ring_hash.h */; }; + 73DE0508948F4252E3F76D3E4FE438DA /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1BBAA2E478B1D32425EAE054AED6DD2 /* format_request.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 73E7152DB24C4083A6F6B74C361F7C22 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF1E187F808E0110708626214747FEE7 /* accesslog.upb.h */; }; + 73E9FC00C3896A68BD14BAD00681C17B /* validate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD535B6DCDB2EF43540009955996276 /* validate.upb_minitable.h */; }; + 73ED00EC495AAC920A92CC3051E1E52B /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 05451409179446083ABC5CC3DC413BC7 /* def_type.h */; }; + 73F0564578024DDDF8729727E6469D68 /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD4B529F53521CDAF833EBBCC3E898E /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 73F2E40293A413F71DABB2E9463375B5 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 6442569F1CCAECA8B217F4F002D25E7D /* alts_tsi_handshaker_private.h */; }; + 73F57F03E31580D264ADAA164C330C07 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 298CB60C7BB49F02A90F373054C75B34 /* client_authority_filter.h */; }; + 73FBBA414E5B3AAB2456DF4A8CCE8B71 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7B3F4FF6E614ECAA8E05123AD560DC /* FIRVerifyCustomTokenRequest.m */; }; + 73FDDC9A6401DB927CB30186B1B60AD6 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = EA2BFE6B25DA6D9FBEDCC5CEA5291E94 /* def.hpp */; }; + 74050D23CFFCEBA9682C9070F1665AA5 /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E156260024F9D8DDDF2F601C10C4163 /* mutex_stats.upb.h */; }; + 74084BDE326554E0645D103B77EFE3DC /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = AE477F0B0BCF761136DB1D2B9A632D2F /* httpbody.upbdefs.h */; }; + 74159E94F7973A7EF8A463122BC9348B /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC5162027A21C623B7904DE915D42FB /* serialization_traits.h */; }; + 741B673DB3BACD86D8CC4F074B277E07 /* xds_dependency_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5218AE30A803CD2EE66B4A63C42E10AB /* xds_dependency_manager.h */; }; + 741EBFED6EE5E2ACC49D92DF580D4B78 /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = C56A8E8C3806C4028DE7E265DD9E52DF /* create_channel_binder.h */; }; + 7420374B9B47CC2289C2637E041165D4 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 45D8439742E1A4F1F3312A23DF2B9BFE /* sub.h */; }; + 74270AB9C7BB9D48AD091FEEDDFDAE15 /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 35823A369B7912130456F0BAF0F502E2 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 742B578DD7C868BC4236221C723BDC5C /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6305BCEE79E98C461D282873EB23C5 /* FBLPromise+Do.m */; }; + 742F7EE2A8CD23E4795F08A7E7B47213 /* FBSDKFeatureExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F54068D2D9154BB23804041A34EE32 /* FBSDKFeatureExtractor.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 74345F84C240D29D065D8023327A23BE /* cord_rep_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FFE6A7897EBF10FE6B9DFE8E7F6CC9 /* cord_rep_crc.h */; }; + 74461BEDA10E721A8D5CF808326E7A1E /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C1368600938F9D46C688B83B07A8C6 /* typed_struct.upb.h */; }; + 74475AED799BF286BDB345108277D522 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE67F2813C26514193D3B2EFF99223C /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7451E4658E02F3C7F5B72188E1DFBBD5 /* internal.h in Copy crypto/pool Private Headers */ = {isa = PBXBuildFile; fileRef = DEE41A6E9403ED155D56C3FA7059A133 /* internal.h */; }; + 745BAB5D1C29BC1A49D7E59EEDA4403D /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B976C54F4EA61F6F9656579E35CD681 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7469ABB0A1F0B4E1742976E16DF2986F /* generated_code_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CEE0036B9190AB0E55292575EAFFE3 /* generated_code_support.h */; }; + 747922AD78E4C86BEEB9FFCA0E6D459C /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 963C15A7191BBF62D6B6519A5405D0E7 /* ev_apple.h */; }; + 747B9F0168E5B9A8E6B12A48C85A7ECE /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = B02E171EB1A7BBB98315BC770AC7BB40 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 747FC4833428BF7BB3FEFA735A0F10CD /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 53DDA9667F6D2A374AB645A9A86C8313 /* FIRDeleteAccountRequest.m */; }; + 748FED1B814F9FCCD60763E52F6980E9 /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 56F5748467AF9ED6E8EDCD362E7C0743 /* def_pool.h */; }; + 7495F705A73974543BAB31C879BCCA3C /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD32049A4431C7C0C960E55D7284C6F /* forkable.h */; }; + 74A2D8C0DC5A6FEC143FF76D659E8AEC /* ip.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D562B058336337EC7FEB673D847574C7 /* ip.upb_minitable.h */; }; + 74B3604C696B0A61125BD7E1909F3450 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A29837D30945D599277BDBCDB8F00 /* value.upbdefs.h */; }; + 74B7F2C8B74F9CA8D5C725D47937A2DD /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E002F22C2C16CF42F8E6EEEBCB2759 /* internal.h */; }; + 74B9CA4C45F37A963358DFD14F1E8609 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 8BEACE39169964DB10ADA78AACBB7693 /* enum_reserved_range.h */; }; + 74BD940D463A09DDD478C08ADD54565A /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC3BCCCFA2EB9C772F102EEF87BCC27 /* memory.h */; }; + 74C439EBA70C64AE81E0A52B0D375C20 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6500E9C6B27D79DC31C95876702A4D /* number.upbdefs.h */; }; + 74CA26E93AD7C06DC3ABED5DCBBC32D2 /* leveldb-library-leveldb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 5F8C1626C73591959F16DB1CE2536F54 /* leveldb-library-leveldb_Privacy */; }; + 74D109DEAEB6C1F7F0AF39F3A852F0BD /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 375CA0EDABBDE880183065C124D34781 /* unicode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 74D8C08BEAF979BE2D67E539BC257E6E /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0586B0AC9C30D426CD3C688C3FEA14F /* channel_args_endpoint_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 74DCBC722125DE48E34440D77D81407A /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9751A3932FA70649F94A531A754175 /* tcp_connect_handshaker.h */; }; + 74DE686A519BF1E7AB9F97774698DD5E /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B1B11494793F2640FF04AAAA0E0C43 /* http.upb.h */; }; + 74EAC18EC22CE44BA733E076A5DBF48A /* FirebaseFirestore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5997F721AA4E1428CF8B537EF7E9DE /* FirebaseFirestore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74FCB40C4ED74C34D58EC0E9C895356E /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D7042932D70157E3D17EFD3061757BC /* scoped_route.upb.h */; }; + 74FD7CB0B7FC824B02E02E79DE206C93 /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AB9A1821C8F19DDD59BF6B66806A0F2 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 74FDC0FEFB30F65E792B456B49A5C945 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B038B1A210499D54A253789D418301A1 /* atomic_utils.h */; }; + 75081111FA06230E63875537E4F39430 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D8F34E6B60C6E2CEB8C02053CD8100A /* metrics_service.upb_minitable.h */; }; + 751270B822F26C81A46F330B69ABC7D9 /* set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 3912AEB95FF55EF1747D8254AA528082 /* set.h */; }; + 751834873799C64DD4F3E676A2F48DA6 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 688EAF7F1F043778A7B80713BEA65090 /* TZProgressView.m */; }; + 75199F0EEC70AAD9B2EF0D895508635C /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FEFD2143037999CC2A3B79CB5B1C6725 /* endpoint_components.upb.h */; }; + 752747A1109DE5DB210F59FB3FFCB3D7 /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B17C1E9F09378DC8788D7889BECA5DB /* FIRActionCodeSettings.m */; }; + 7529DD62664E3E0BF6F4FBFB1F98D1E5 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 21EA216FB5BA5115914AF4F0523C66F2 /* arena.h */; }; + 752D821FC109F5B6DF640C8345A16F1E /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 631ADFA19DFE77DD7B07F808C827DAA3 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7536899D25A6605B64A83F91FA311824 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B48C21E8A9E450122A3BA573AFCA5A /* checked.upb.h */; }; + 753970B8C85FE4DD4CF6CABE21A73C44 /* FBSDKBridgeAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 902292E382E4188159DE419EF05D7CE3 /* FBSDKBridgeAPI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 7539882A77AB71B63FF64C12B27C2AD4 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49BE36662EFACD6B8A340BD8D1C118EB /* tsi_error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 753AF8D6706D9BC0E27AECA0B0E5AA9E /* FBSDKAppEventsDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4520E173FC472302EFB3A246B870A1F4 /* FBSDKAppEventsDeviceInfo.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 753F47C1126661D94F65377D4DFC78F6 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7263A2C62A045F2AE321800E48988CE /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 754399BC21E14A6A82947C19FFDADE2E /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DE3A38BDC0D642CB4ED88CFC3989C95 /* alts_handshaker_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 75498E90561C88D0D1FAEED0C8C53A7A /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BBAD8193C97D725670D7EFFFBEE56A /* async_stream.h */; }; + 7551ECAFF6163945420721313CF8974E /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 012E135EAA9A9065E801DC3DFBDDB5FE /* dynamic_ot.upb.h */; }; + 75623CB3EFF05A945AB959F72D639234 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 382ECE3666C1FB2A3CA2734C67DDD67F /* certificate_provider_store.h */; }; + 75638DD4D2E95C990E4C55E9AA49628E /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 58A13EBAC3D482F85719757063B2DEE3 /* base.upbdefs.h */; }; + 7566DEE0827A81A974B15102669C743D /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = C14BA25578E4A6913F922ED09BD06B1B /* xds_channel_args.h */; }; + 7566E4D5E68856D4C908368997E397D3 /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 384D451514EAFAC60CC2AF32EA7B891A /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 756FE6CC6DC1510480910B0488BC20F3 /* nanopb-nanopb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */; }; + 7570A6A36C2C6517DB3A473D773EE984 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C7D3F613783EE8174EDA9135E85688 /* message_size_filter.h */; }; + 7576E15BA8BCD57B8A10EFAD7D4339E7 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C19C317EE23789DF4D5A644B4ACA5D11 /* exec_ctx.h */; }; + 7577A82268823215E4BE1725773D8E8A /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E7A7B33E40AE1E84098917372E9F1920 /* range.upbdefs.h */; }; + 7582D0F4A5FDAC3285D4EDA126911F23 /* uniform_helper.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F7C0608D8396B4A147998B629C97B132 /* uniform_helper.h */; }; + 758B227B3BF45E1E9F421A6A8C5AC195 /* x509_vfy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D71B3863C141E42A804F2EE0388EE51B /* x509_vfy.h */; }; + 758FA91DCDFBA8D2135FC199D984CD5C /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C7772EE3624AFCF7045622DB188BEC8 /* lrs.upb.h */; }; + 7598333752A0CBF583B3DFF00696C9C6 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = BD9C40355EB561ACD590B693F7576990 /* enum.h */; }; + 75A77F237EE0898CC4C84A4605DA60D2 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D9B16960DD4CCABE3F02A06F8B5087 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 75AC7E55CE6BCBF75F5B316BDB3F6D58 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = 748997C68263A6818AE30D91E807D145 /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 75B02BEE90963BABBDA90ACEAD8117D5 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4C5D9E6805D6326C37D7226AF1F98B2 /* http_inputs.upb.h */; }; + 75BC3B0272B99F5534E058E2DC0228DA /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CFC9E674EC4E1507581F19EEE1AB97 /* atm_gcc_sync.h */; }; + 75BF0163EBACED8344BC4FB183D58F37 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC54031493F4049DE6E36710047E4A4 /* atm_windows.h */; }; + 75C6315496DF94E60DBDE11B126D79B2 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 16CEEE3175500D0303DB12DD81866EB9 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 75C7AA151F3D2532684378F6826C5A9F /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 783EA8F119EDF1FFDB9653B87260F597 /* stat.h */; }; + 75CBEFE7E54AC0F212FA698B9885C579 /* number.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2E859FF28A6194CF9F5223FA9E6D97 /* number.upb_minitable.h */; }; + 75D2980F62915BB6C56279E9A96457D5 /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 207BDECAC3031BAAA39BFC8BE0245039 /* symbolize_win32.inc */; }; + 75D59A7F59E5DA8F86086A75D5ABA989 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 74881CC1A2810481557F8A859E734EC1 /* message.h */; }; + 75DE1A8BC3DCF8AE86953592AA972588 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F4AAA7ACF0C3E894733732CC69F28C /* semantic_version.upb.h */; }; + 75E70D56F8B49FD2B143D09D4FCBAF1A /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A40E98C18DCD705CBCE5ADC488E91F2B /* percent.upb.h */; }; + 75E7FF9A5CCA94CEBF5E05563B196F0A /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107DA8B7EE6737AD27FF084AC1356A4D /* status_conversion.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 75F0F72988428A97E281FE6A3E6EF137 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = CF2EF7567A65647FB4CA55A7CB6DC228 /* alts_zero_copy_grpc_protector.h */; }; + 75F6BBA6FDF2B1E717445F86099813BA /* FBSDKModelUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 42658366039B6D6C516B4FFA5D742E2E /* FBSDKModelUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 761B4A2E2547C0C3C12B0EEF09BDAFA3 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C9EBAE7108E63A9DF04BCA3AD9B3953B /* timestamp.upb_minitable.h */; }; + 761DF0256CBB0CA4506580DFBB612194 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BE1F0CF532B39FA6C69197748C4F96 /* KingfisherManager.swift */; }; + 7620B8FF71166A1326BB4F559926A76B /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C4ABB59C60670D0AB3CC6A7229FA2D3 /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7630F3EC6B23291894C39DC909F4C9BF /* work_stealing_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C55FF47033A21639D06FE209A13FE9 /* work_stealing_thread_pool.h */; }; + 763426EC87A35BFE56D2B727498D0412 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C7552AC5AD5C8D20FEF479C82551B4C /* xray.upbdefs.h */; }; + 7636DA3DAD4CBE116723ED5D3797E220 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6F2947BDC3796FDC4038EC0C848E16A2 /* dual_ref_counted.h */; }; + 763D0F51340B3A57504F5B935C11AAFC /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2837748FBB9653E1E6BAED27EBB21AD /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 763D86C159D9CB060467EB8407845DB7 /* arg.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 687599ED1D37F4ECDBBC24DBC05121F8 /* arg.h */; }; + 76409C5172B3A09C55A9EA497744330D /* http_protocol_options.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 06E1E7A8758CC35A01D3EB098391B50D /* http_protocol_options.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 764C4046FDDCDCE985F882989F7EEB56 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DD9FA76A22EEF49D4400B725305259 /* cookie.upb_minitable.h */; }; + 764CECF59D231B48C86EA92AD318B325 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FB6342FCEE31C2EDDD133A22EFFB4E9A /* FIRInstallationsStore.m */; }; + 76592E316C01CEDD119637F4D766C89B /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = AEBED8B8DC2FFCD82A20E83720FDF709 /* retry_throttle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 765976F8416508A59C9CD281137A1A45 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A2ED0D8F1A0BEB049DEAC9E1E6EFFA6 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 765ADAFBBF79613F89228D9E40E0F1C8 /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5BA710FB81918C9F2F6EFD9E25D9275 /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 765B93F41A6076A88B07ED3B45F71E97 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 9E1C415A85AAD1E8BB9D55A99A234C81 /* oob_backend_metric.h */; }; + 76667FB40887351392BF210C0AA30F27 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 71DF2C7237515AC339DF2480632E75EC /* enum.h */; }; + 76765B4AD3966801A6889F666DACCACE /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 035291BA73213963231668DE147522A2 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7677BD83E1376A40AEACAEB28330357B /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B5616DB7BEC0209E168191F37232509 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 767ABD3998DDB7F5D1E195CEB3E240ED /* reflection.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = BCF4E1A097A5ED167A3537230DA96C6D /* reflection.h */; }; + 7680E38247F4D1F9680CC5EACD15601A /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F84ED7EDB9DF8129E6B25DEF716256A0 /* udp_listener_config.upb_minitable.h */; }; + 7685ECE7A4F15861AE95515F8299B5B0 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE61B5E040A7E8BA7F76DCCD21ECD4B /* cookie.upb.h */; }; + 7688B3186116F0446C4252918DD097E1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 94474D2024D38D7A959FAEECB16869C4 /* internal.h */; }; + 768B39456E384EF35D25F863C96B5B9F /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E01E8D336493324C98B35AD4E89FD0 /* bitset.h */; }; + 768BB7DC41D011DC4894791468DEBCB9 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4413ED5BF53F70F00170E0C03E98C7D7 /* xds_http_fault_filter.h */; }; + 768DB060DB70B215CF6A24ACA78F1E44 /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D16E62719B115AD52A42B83245B825E /* checker.h */; }; + 769291205D2FE5E0E6AC3B407A670E5E /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF3F6C6F22C2266B8BA6E016BC147B7C /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 76983D1BB03C62AFBA4B0B87CB9244AE /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2BF807A37F88D3DDD3E3C33B0917046 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 76983D823A1FF032E675574C74AE5656 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 230D1FBC6290C24C371335308E7E7D0D /* PrivacyInfo.xcprivacy */; }; + 769C5DD2EDBBDC383DC86E15E92FD4AD /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EBFF46DACC9B0EF489FE9CF5D23D2A9F /* legacy_frame.h */; }; + 769E1E88D8496C3093C500044AA9C218 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = 966263B57E2E96B1E1752129043B5DA7 /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 76A290C3EB683D0A664EAA909FC00B9F /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4685FB7AE275E625031BCEAAA75B91E3 /* str_split_internal.h */; }; + 76A8717F625377C6C7183BDB0D9A1893 /* outlier_detection.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FEC60298DBD1A785613DDA33DE7B3F /* outlier_detection.upb_minitable.h */; }; + 76B8C6EF84C50FC27989A09EEC59B5E4 /* listener_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A05EB6B98EF56DDDF631BC0657A73802 /* listener_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 76CD67E8F845593BE74FF3631E665013 /* http_protocol_options.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAB71909135DC786AD39D82569C92EB /* http_protocol_options.upbdefs.h */; }; + 76D95D20C18119F2AA313A3B48758532 /* address.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 84250A0ADDA35277D8A241F6B461D3EA /* address.upb_minitable.h */; }; + 76DFCC5EBCA8ACEB6E89B40911DD64C9 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 9101071F8CF9885296E783451CF75EA8 /* native_windows_dns_resolver.h */; }; + 76E885CFBBC02FC6DE9EAFE054FD5757 /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CDDB7D58DD0571B03C4B680CBCF10E9 /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 76EDC70CB740ACF46C511A63399F7137 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E53FA9C157518D5D05304408113006 /* regex.upbdefs.h */; }; + 76EF43070359CC4B0A42080834A5D963 /* trust_token.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5DA34EBA38D8CB39DA76C73891947179 /* trust_token.h */; }; + 76F2C5A7DA29804D778A98A882DE364E /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C88E640434F6F36A7902A052E23F3A31 /* tap.upb.h */; }; + 76F3C3F65932FF55D89CEA4091144FC8 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D19EB59ABCA497A38E12AEB078BD84A4 /* FIREmailAuthProvider.m */; }; + 76F74F8ACAAA177105B06F1418801C19 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0EF70CC0FE20365AA7FAFF0E1B8006 /* work_serializer.h */; }; + 7701FC0F1C03FCF7567E3E834AABB333 /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2418F79BDB6EE34D085A48DCB8AAE117 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 77089ED2D9E714BEE2BAD3573647CB20 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 788F4FFBB4BFF44330E1B1B6B081BD9E /* xxhash.h */; }; + 771D389311C2420A8F2C7380A48D66C9 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = B26FD1D1598465E5DE00588FD86A9041 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 771DC84116A1340616F9CD6463CC1DCA /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED72FA4442983F7DD9471C5EC527487 /* ssl_key_logging.h */; }; + 771F4EA0F0F3AF12B884CBFA31E2813E /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C81E7078F291461BAB7F9520CB726C /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 771FC1F47AF85CA2615AA46B048E2ED3 /* http_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DA91E65A2E421DC5BCD977D9889F3853 /* http_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 772512B58F6969DA45E825FA67CC2F2A /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74C1368600938F9D46C688B83B07A8C6 /* typed_struct.upb.h */; }; + 77270AC63ACC860138047BEAA7A8089E /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDD1FD47C6A485AE38021D1BB7BCCA5 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 77280867540A5BD397E2BEBBDE978421 /* protocol.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 812BD2FE6AB5DD3B4B5E23C97408C7A2 /* protocol.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 773059E5D4E882E0312CF87C0F46087A /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F4C14D6A7D9885AC8341A69B2FC7F91 /* channel_stack_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7731B86CF661D4BEFC7B588A1C61050D /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BB7A627BDE88F6C62FE42729B637C9 /* manual_constructor.h */; }; + 7732A167AC886329E25177EF923B3A87 /* down_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C892A65BB7E8304FB2E659B82BDEDBB0 /* down_cast.h */; }; + 773693B273007570902C4F7B0CE15F44 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 506738232EDB1D4F7E9F1709853F4A9C /* error.h */; }; + 7736F0CDFFF04AC0A42EA04BE62C5F42 /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 56016860527DB7D8EE3260C7DFA9491C /* message_reserved_range.h */; }; + 773EC0B0D925043A7CF8139FD21A4DD7 /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22D393C0A3214E77DA69325BAE006BB1 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7741C7AD8EAD14AD310D9D8BD8A5B174 /* FBSDKCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6A3E6D46BD536B02EA757101564422 /* FBSDKCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7745C007711FE7942818DA36768AE4F9 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB6E5ECBAC719DCEA50552C67AB1B9E /* xds_routing.h */; }; + 774CD6125605C09A76956FE4C516E686 /* safestack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5DC29A0EADA59DCC95AE95252EEA28B6 /* safestack.h */; }; + 7750C0E6D80EFBBCF1D79083C32AA825 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA05C204E9F1EC12667621EC5190C525 /* value.upbdefs.h */; }; + 7754F75CA5EA9D2250D6D894C015E902 /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31020945E0A1F46FACA73EB08000473C /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 77590E5BE2554AFA95DDEA23961EE323 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ABCC9323F7DDF947C5D8056C7034259 /* HeartbeatStorage.swift */; }; + 7760CDCC1D6685953FE83C6414503D44 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 776ED9F932113DAF5ACB6D92DB17033A /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F165989DA7AF79FC9738021A74A432 /* _FBSDKTemporaryErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 77781B68D0A9F86FAFD023CFA379728A /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 69DF28C0645ABA2711196640ABAB30B3 /* legacy_frame.h */; }; + 779F7BC30BFE12BCC82E803E2E6D566D /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1DF28AD96A549E01E602FC42429D25BF /* any.upb_minitable.h */; }; + 77AB6AF4BFC6DE016DA7C057B5799C84 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80E524EA9F07A72BEED0BF2EAE332ADC /* ServerTrustEvaluation.swift */; }; + 77B42D2FFB091CFC0D3011E9FCA17EAD /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45B83692BA5D228FF1AEA2670B59DD34 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 77C13B9B43EC6182A9A687AB0EAB5C3C /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80E5440E0B36F0D6BE9A19465DE47C61 /* proxy_protocol.upb_minitable.h */; }; + 77D948D3F7750918E107CCE3C20F3DC2 /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = C4A461E3F98B657FC6E0A2940DDC29FB /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 77DCDD769E2B09EACAD395B047E82786 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 491D942187ED57661D907390F2485E9E /* versioning.upbdefs.h */; }; + 77E19DBDA8A7F4024EF107C5E1172EA6 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF72CED9B849C5A6E9A6216832ACB176 /* grpc_service.upbdefs.h */; }; + 77E39D2DF77C52F8697AC08B20C47381 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A48FE2B5BAA3590CC2124CFC7894636 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 77E6DBEEA074DBB02F975130BFBD35E5 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B8A7D90FBDC61E51E7197024F6C75B /* hash.h */; }; + 77EFC7CCE6A7CB888EA14334D9F6DD00 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 217D1534936EBE2333CC1F6775AE73D5 /* string.upb.h */; }; + 77F09ECC7CA4A55F6F8F6D0B607EB189 /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 515283E9D95A7CC03044FC14C20E5EF6 /* periodic_update.h */; }; + 780118484AC7C33E2324D6484AAC4A9F /* node.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A53F6B6E2AA30595E45CF4A33C93EB /* node.upb_minitable.h */; }; + 7808541C9514F509824631B2F1D09C5A /* opensslconf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DC7570F460D23DFD5950C43598E92421 /* opensslconf.h */; }; + 781243653F9E7B53751DA185B9EF43F3 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEEE9801FB57C07E5F56EA8001871FCF /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7817FE4DFD06F710BE1D2B50837D79BA /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4D0F6CFB5379FB5DF2F276B45C6ADD86 /* http_proxy_mapper.h */; }; + 782A9D17CA1BD243A5C9E4D785D44228 /* FIRCLSMetricKitManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D56D1BDB3A1489A2DE34459F231417 /* FIRCLSMetricKitManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 782E902B9CE7C68744575F5FD6D95203 /* EncodedRolloutAssignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 449707A1E0860C076EF471B917783258 /* EncodedRolloutAssignment.swift */; }; + 7830549F0346987623A1D1DFE721FFF4 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88AB505BC7562071B7B9CC81FE9B84F5 /* sensitive.upb.h */; }; + 7835CF85B5836B608DE7A25F562A4E62 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 007694D0CFDE1D01C725290F18E3E409 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 78364AACCA2A30AD0673F120BD81451E /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8111CE81F817512080D61B72FEACC7 /* FIRInstallationsBackoffController.m */; }; + 78370EC3ED8670C04DF77334A144B968 /* config_selector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AF09B5128F73173272282257C4FAECEA /* config_selector.h */; }; + 783AD0927B6B77880FF9D16901768D1D /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A209FD2FCA4DA9650A61B9C9552B5BD /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 783CDB4A91DF0540B21C81057ECC856A /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D4750D1A77A2ABB12208BB0D01A6A30 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7852BAB772D4886823C7B2E8A939B36E /* builtin_curves.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 3DFC6E47ED1A72A40E134902F2FDE9E2 /* builtin_curves.h */; }; + 786FC74B75B975EB87E46DF15EB49666 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = B3D0966C3E1529754CD35C7D2C851D3D /* seq.h */; }; + 7887A800A64B33CBAA063D003A64C4D9 /* FBSDKIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = F64DD166550E26420C9C9E1B2C67CE3A /* FBSDKIcon.m */; }; + 789F7C364F669322AA3084C138A579E0 /* create_auth_context.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = DDB19F16F72E32C61ECCEF088FD30255 /* create_auth_context.h */; }; + 78B19CAF42DC7A25CA8AA685E261B9F1 /* FBSDKViewHierarchyMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D80C74C5BFC4A0886B100A39112288 /* FBSDKViewHierarchyMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 78B1DD1219182494A6AFAD26AAB20AA6 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2248AA9FCCADD16014C03D849BFA077 /* Concurrency.swift */; }; + 78B8085FC79A9EA940D35B0778994BDE /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 298B908EEA0FF83F0FE8220EFF0511EC /* subchannel_interface_internal.h */; }; + 78BB44C82B43A29E02329E5D0DED1DBF /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EA4BD554F41CCAF6CF9158BEDFB344 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BE4E5E2E3B944E7CC08E5880C743A7 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = E51061D3B2FF79431200B0E65F5ED0F0 /* FBLPromise+Recover.m */; }; + 78CD91203D43C5FC6EFCABC7A27E741F /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F2E6B54C1DBF08A33C7FE4200184F56E /* http_connect_handshaker.h */; }; + 78CEAE74BEA9C6AE0AB88B85281AE877 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB60477420A4307F225D670CC0417C6 /* health_check_client.h */; }; + 78D341C5E74318AA7AB0B775C79A32C1 /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 16484B2F3250BFA3CEBD0C23056E8077 /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 78D50104551B9879C09FC90D0AA8A805 /* xds_http_stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C1503085DD31E93A7FCAEC7CA4A8AA34 /* xds_http_stateful_session_filter.h */; }; + 78D5C7349B2865BDAEFB83B3FF76237C /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D38E120FDA93C9759C8198D69560EEEC /* flow_control.h */; }; + 78E4F16117A64422A9A0C6996C4CDD3D /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = B427E7685A5923A4C9B85ED1FFFFEF86 /* polling_resolver.h */; }; + 78EB1773B4CCDAD3D344FFFA8DBE4CA5 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 88FB4BC4F52333F5FB81E9677A8616E0 /* thread_count.h */; }; + 78EDB3BAA0D7F91B5808948009042F7A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8AB537CC198FEA229140FB4BA1061E38 /* sensitive.upbdefs.h */; }; + 78EF36D21C43B66F9131540C80547A89 /* FirebaseCoreExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82354B0BD349A8C7FB42DE8312777FB6 /* FirebaseCoreExtension-dummy.m */; }; + 78F4AE5793468CFF6756AD18527134A5 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 324927FF037FFCDAF54B3D564874DE2E /* tcp_socket_utils.h */; }; + 78F621E01B917E2801C0977F9EBA002F /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0587F394DA6E391A1350F3E1DCCB8953 /* wakeup_fd_posix.h */; }; + 78F7264787DC8A00ED685D83B6A28287 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 64B7D815BDC4F36A3022B71219FC2786 /* tls.upbdefs.h */; }; + 7903A4517291510C111E82805F6874CF /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = ED33A13EF81AD523E5C62506EB51EEE9 /* stdout_logger.h */; }; + 79052F24F026D82EE05BB2A90FA43217 /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2F1B438A3A2BCFC10FA2F781CE17EB63 /* any.upb_minitable.h */; }; + 790A27962F75E025822C34302C49E80A /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A241EB40948D13FB13C501357C4A0FAA /* route.upb.h */; }; + 790D13F91DC608F65527CD2D38D753A0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4876A17D75CCCF9DAEB76E537AA92413 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79101EBBD7A5BAEB4C3334BFA1DA9A60 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BCCB949E2186E2ED3739344AD272B002 /* secret.upb.h */; }; + 791198C12F87C98C150E8B9C8B9904DE /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 84B7900AB73CD17AED4709FB7A88C10C /* descriptor.upbdefs.h */; }; + 7919C85ABAA04A197E1CD82E6F3A0C28 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 14AF35B8B79A4E6F7814F78C31091869 /* civil_time.h */; }; + 791C17545225F1E5C6DE0A37DDDD986D /* stats.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F98290DF171E37B63936940D8AB5D911 /* stats.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 791E7C78ABCC21570294A9458993C074 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5E490385EC7194F3C7B3EE81DA50724 /* Logger.swift */; }; + 791ECC1591052706BD2785BEEA7E5429 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAEAC762CD8EF024FC9763A6195504DF /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 791F20127A4FBC7F5138FDEDF83A8429 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E537BA85B518821A51C8EE0B80DAA04 /* syntax.upbdefs.h */; }; + 792C5D2DC4B1DCB14834C51EF6459906 /* FBSDKAppEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 24621DD9A17A7F8E30C4935BCBF39CF8 /* FBSDKAppEvents.m */; }; + 7933B0433F8F2DE6CF14297DDF0F52CB /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 13E4E9057A089D15BA28F291DAA52CA3 /* inffast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7938F9969D6FAEF17E2FD0A3D52A0BAB /* lightstep.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E968BE4877C229BE8C065A097686672E /* lightstep.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 793DF8ECFDA2EC622680810476A81C7B /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE6E3FAAA0FA4B087CCB5CA55628B91 /* outlier_detection.h */; }; + 793F7F44363A5CA7B45E193F4D0766E4 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF47BE94199BA6DD7BDBEBC7DDEE11C /* time_precise.h */; }; + 794AF46DA08C6AA784600565F0F50104 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 005FE4D9B986681227F71502C681B213 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 795985374B15304DE859F49C25719299 /* low_level_scheduling.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D75D2E1D7FE8CD2499AD8A64317AF884 /* low_level_scheduling.h */; }; + 795F6D4F7F410CD7B64B125CB1BAEFF4 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E5855CB8EF614C784721D385DD55AB65 /* pollset_windows.h */; }; + 7962F71FC356A2361B83833F8ADA777F /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9356C7D3F0B68EB6991F61E71A1CE2 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79674A05F4638761EF38B08C9873A038 /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 2F990A5D8B9A16D1ED710BAB8A577917 /* sub.h */; }; + 79893D4D25DAA901411968B4852E5545 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB9350734AD02439193098D577626F8B /* grpc_ares_wrapper_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; 798FA71F8CAE44D05016FFF767100375 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 79ACBF905732986D5CC8A8276FD72243 /* tcp_socket_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78B7131E69310D4DC30C3EE16AC7C30F /* tcp_socket_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79B168AFC0039B2E674DD78718B7D82A /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF6FF89AF67E7D00FB7CBFB9D8AA7C8 /* inlined_vector.h */; }; - 79BAD8B9677ED2DC59AB63BA47331E43 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB089C388259AEC6158D877CEE6FCD68 /* path_transformation.upbdefs.h */; }; - 79BFAC0F1F8A60274111A8BBE87FD7DD /* endpoint_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B51CA5EE0C9EC5E11483B9B703CEA1 /* endpoint_addresses.h */; }; - 79C8B46907CE544E5820BBFE17198C04 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 60A27D38DD1FC1F6FEFCBA39AE178B2E /* resource.upb.h */; }; - 79D5BF73ACDB44ADDD38A189CD309954 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C6255BC71C9567AC99FCD523E9C9E06B /* circuit_breaker.upbdefs.h */; }; - 79D601B4325CA1EA4315FCB1791408AB /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A92BD167D0B2C03AD81789D1D39BC59 /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79DDDF5AA147F924C1200F82C5246B7A /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 339785CA4353229D8940549F7D5F3859 /* fake_resolver.h */; }; - 79DF9AC8AC3534DAE87083656344E409 /* weighted_round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 547438022665FCC189D6BA5B78E5293B /* weighted_round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79E29C39E6473326D3FA726425CC96D0 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A4AF31BB7B419D585BF10753280A37 /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79E57C30305B5B700B04EA201E3F182F /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01716956170A187FC560D6D922059E04 /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79ECCBDD593FE8B130BC7608A80B4A47 /* authority.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 635EA521A6B2DF7F5E5FD79AC2F50061 /* authority.upb_minitable.h */; }; - 79EF34E68D93DE1B7A54AB3CCC988838 /* server_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9C1B68446DBA73260839F3F4151994CF /* server_interface.h */; }; - 79F910E74F516C6D238C193AFA01B5D7 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 169A2F9C680BE962FEE200B0CE82EE1E /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A02D6A4491061836A4FF5BB4A7FDA69 /* rls_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D9EC57F938F8C7FB53F0539973204C3 /* rls_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A16FF380C2CFDA6F686AD592F25E906 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = ED0DCE95043CFC126F5AD157B759B385 /* channelz_registry.h */; }; - 7A1D39CBF6E97D7ACF2D0BF94F82CD3D /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4547E7D9F448F858FD16D15DCAFC8247 /* security.upb.h */; }; - 7A20F6FEE11F00C3844911871D0F7B75 /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DC4A124958BCEDBCFCD645B12861244 /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7A23BC3DAEB62CAFF4A58FC57C86F6EA /* rbac.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F7888EE1B8584E4A407EB6C17BC82E5E /* rbac.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A23D6B89DE1E89626EB4B913F0522A5 /* damerau_levenshtein_distance.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 625531DF482D3C18F6D48AD15736FD00 /* damerau_levenshtein_distance.h */; }; - 7A2987B9ADC1CAF17E0804315CBFB5A2 /* cycleclock_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4A0167FF5678A293E93A01658A28B7 /* cycleclock_config.h */; }; - 7A2F0AA868049B916D640B9BEF93A5D9 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 232586A2B599A8F8BA5C0B9E60CDCA30 /* rls_config.upb_minitable.h */; }; - 7A34837E304422C2537CDE4627581F1A /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = B6876F418B49F4FA7DFFD224E006A7C4 /* arena.h */; }; - 7A42F46E8A808A64D0BBDCB3EF48B350 /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9B35337F1B89D45318593502C37E42 /* ex_data.h */; }; - 7A46676B9C4454A35F413DFB5A740F31 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9826265A4F6F1DF7747365C2CF3F612A /* range.upbdefs.h */; }; - 7A510B71BE4B34BFF9C5281163F7C63F /* FIRLocalCacheSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9569D5E7E10743A42EBF3430103A19 /* FIRLocalCacheSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A518295D8280FFFD2527EF2A113D821 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5779A7B15292AC6D90EC25EE2D9DFE2F /* channel_stack_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A529E5E2A2A31BB38DDD404563F47A1 /* LLPillPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E48706842A286D8122DC8CA4E263E26 /* LLPillPageControl.swift */; }; - 7A5E1C6A2F3421E0EAB4302FA9DBF88A /* retry_filter_legacy_call_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = B29744C2B19B1609688B88915F923ED2 /* retry_filter_legacy_call_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A7FEF84267DBA48F593B133E8E2A825 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = BD643AF3B199FA18A14BDD4996383F72 /* resource.upb_minitable.h */; }; - 7A89376911C70CB005CCEA20C5C4E028 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 729875D3C548AC8BABEDC37B598C9FA8 /* security.upbdefs.h */; }; - 7AA08AB029513C0C0ADC0211D8E3AD17 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3DD32FAEB205E316EE3B385ED08A02D9 /* http_tracer.upb.h */; }; - 7AA3376311E190C2EF9B90DC5EE33510 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DC57E253D3CC7846B19D2CE06C731F /* range.upbdefs.h */; }; - 7AA91B47A3C87F0829151AA7180D345A /* SessionsDependencies.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D310CF84F8403431E9F06EF63F3DB6D /* SessionsDependencies.swift */; }; - 7AAEE31CB7DD64E22CA164B428F29C54 /* SessionsSubscriber.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB6B8B48E203DEC26BE7C89AF1D3D09 /* SessionsSubscriber.swift */; }; - 7AB2F101F4B68AF2FF735DA7B01198BC /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 485672D460099702E12EB1CE47919B4E /* status.upb_minitable.h */; }; - 7AB4367DF110193AEA7BD4EF8376BA18 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = DA48688C41B1092CA45AEC0DA73BA18E /* server_interceptor.h */; }; - 7ABA3E21B700F798250E8F62861A0FBA /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2C778AD51111C1E7C10AD4DF76BC6E1C /* typed_struct.upb.h */; }; - 7ABEB2FD0DBDBCEC23AD698B59A63144 /* config_vars.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = FD5BB7191FCDFD3E12A4D764AC77D1CE /* config_vars.h */; }; - 7AD06930CEAB9C03E5C8D04F84D3D146 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 83079BF11AF2BE4BB2B045784AC1B655 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7AD1193A4E5FE98CB0764C98F874E5AE /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = F1D37B924EE99416F9872D7628505B2C /* FIRCLSUUID.m */; }; - 7ADD4BF9C5657B12DB02AE71F3C243C2 /* http_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B318381DC199B7BB2F63DFB7FA74D04C /* http_service.upb_minitable.h */; }; - 7AE0DF4BEE6C1524F6974935BFC2E012 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6CF616062239FC0BF1E34E0A5B7DD8EE /* ref_counted_string.h */; }; - 7AEA39E648B0728D6E2CA69933D0B424 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5416FA1236D1C74288FF095DDD742F31 /* descriptor.upbdefs.h */; }; - 7AEE8B83235D313BB4D344BCE5F4564A /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C6255BC71C9567AC99FCD523E9C9E06B /* circuit_breaker.upbdefs.h */; }; - 7AF65276020DA4AB2C360F6C6C5FF8EB /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F191D18D05A427DCEE90E47D72173077 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B0044B78E27079B2337D304A61879A2 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05915E53C7A97653CE4E640488BC1707 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B0D2BAA24762B86891C37E18C2949F2 /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8164443E2A1226B2C8CC0AD93E4DC6 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B155A6228E8D42E1A879A7D70199CCF /* value.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D0F71F5C56BA365B656C454E10774833 /* value.upb_minitable.h */; }; - 7B3E70A45FB50DC2AB1F10BE44ED04D2 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = C13BFBC97033E026755A35681D9BDABF /* rbac_service_config_parser.h */; }; - 7B430818E3E351A271E26853DA0CEEB2 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB07890D9F10903856F7563BFFAA3E9 /* client_callback.h */; }; - 7B4342E33F09A4AC2B91E0BC75994D4B /* randen_traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BFCACAB9652BFD1C2C0335CBCC25FB3C /* randen_traits.h */; }; - 7B50FF0EEF2708839AD51CA91D2502CB /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B82E113672352A4CDAA701BA4018C29 /* timer.h */; }; - 7B57CF652839581C4D8A0653E758CBE2 /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = 710BC4914E5DC04CF0199AD4A5DCAFBB /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B582B45C761AF7C14FE36607E235B6F /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2619555BB683A6D074A85630EEFC06 /* env.h */; }; - 7B5DAB447DE2E177C4944D2B4C9EE9FA /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9DB20F29D8E1A266F5C0F3782BBD476E /* binder_transport.h */; }; - 7B5E40D5A0E2A79FC02BA2FEB344A4CF /* stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 752E781A745F67C96DB6980A34267797 /* stat.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B626FF5FC9BF9C17B67210B613D2362 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 986A4789A7C9328FBF891969A1E85431 /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 7B6486FBDC50EC22DE4C515C8DFF9049 /* invoke.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9637A6B32113D75B8F6572717D2411A3 /* invoke.h */; }; - 7B64AB9714E69E428686D97889AEFEF4 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 224F6B97D216A04E4B96C6D3EC4C450F /* bin_decoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7B684554371254683EBBDCA2AD9240C1 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C96CCB9A9363E938CADE5ECC455AAF94 /* transport.h */; }; - 7B68DBA46FB600F8217C32AB8DB98EEC /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7BE4B4857772FA18756795751DC047 /* sync_abseil.h */; }; - 7B69F9328CDFD1396A4D86472C0BD39F /* kdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CD4233E7D93B8A50C29368E751B35A0E /* kdf.h */; }; - 7B6C35C6508668FC0F47A48CF6094A60 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC0BEEE9D4672F2AE335D5E479F7305 /* security_context.h */; }; - 7B6F093F96C00279236074C2D81810B4 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A1FE37D15DC00CD187F42F2B3250021F /* http_inputs.upbdefs.h */; }; - 7B7C4F7DB1686DF5BDB69C2402DAE1E8 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = DC9B0F89CB786523B923AF344C23DF69 /* field_def.h */; }; - 7B8F8A6D02C456F9367DB1169A9EEB2D /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7BCD6239CA5D1A6AF7E6446E999A52D3 /* try_seq.h */; }; - 7B901273D3738B7CBDFA5791DC165A6E /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E9DE4395ED895AF8C88D4DE4C90E0 /* const_init.h */; }; - 7B9AC06030D556E03E97D1D98733FA46 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9AFE36352B0C7AC26830253951651DEC /* max_concurrent_streams_policy.h */; }; - 7BA0296B7956EAEEC8F5A50DF1364920 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E22FF083675C20C9C2FB231202F77104 /* FirebaseInstallations-dummy.m */; }; - 7BA20117C59903595D87482B58EAD1A2 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 8D9F66F4A1D9FBD8C712191B8B169ACF /* time.h */; }; - 7BA51DC1CC48BA8D76F99482F7457282 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BBD88153FA56786F1C6BED767F80C78 /* tcp_windows.h */; }; - 7BAD1895C49141CCBF21BE03F00C320D /* server_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DA48688C41B1092CA45AEC0DA73BA18E /* server_interceptor.h */; }; - 7BAD44EC483AED275F0CBBB5B1ECA5A1 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BD38318973AD176A821C2F3EE6149E5A /* local_subchannel_pool.h */; }; - 7BC71EE9CB6DA77A6B01177F509ACB7D /* listeners.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D309A7EA3B1E8D1E0F08D35398E061 /* listeners.upb_minitable.h */; }; - 7BD153A315AF4E69736D82C665D15461 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F42319F1107A7B2295B20F7E7A3FA7E8 /* validate.upbdefs.h */; }; - 7BD155D5AEA0BB1859875A8CAF00F8B9 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED2E43968B1640944B2854F0255FD247 /* listener.upbdefs.h */; }; - 7BE23680C718499D8507DAC2892C1535 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 50F984302C1C4B1F46BB2BF36C917D1B /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7BEC9DF507D3321CE53C5C3CF8190AE9 /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E246159C3C6033AE78EBDB7F015DA955 /* filter_state.upb_minitable.h */; }; - 7BED46D4494263C36A4680E095A9F4FA /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = AB02B3DE3163633095F905A51D67C4AF /* http.upb.h */; }; - 7BEE4782516AF3EAABE25B125C6F87F3 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E137B3CB080CB819FAD89342C90B43 /* stat.h */; }; - 7BF21F028D3CD320658146D0AC985A40 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = BABDF221F3E19F26DC0CF590AEAD01A1 /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7BF55F8CF20AAA19AD71E86D85654E8C /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D7F559001D49534E78782A87F0766008 /* http_connection_manager.upb_minitable.h */; }; - 7BF5C541B4FC006C7D6358C1E0F4CF31 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8140E2AD6B8B5CF2E1340C080524620 /* status.upb.h */; }; - 7BF6D3A390218EA58937A77248421F01 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E8640232B4FB92EDE0D6B2B5CF1ECC /* grpc_types.h */; }; - 7C057A4827DC10EAC6B30EB6F8806314 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1B913C6176C39A65BC7362F2C82766F /* FIRCLSDemangleOperation.mm */; }; - 7C0FE4E1DDB6D0CF1103BB33415A96E7 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37AAD9BF600CC8454D9D5FADFCA2C00A /* domain.upb.h */; }; + 7993FEA4719068563044D0893894547D /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D75AD96D0447C0632B3E4F07AEA65138 /* common.upbdefs.h */; }; + 799AEE8157D704B227658BFDB38D39C7 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224007AA924454E24C4258AA2A678D20 /* Heartbeat.swift */; }; + 79A104962BD1205C89619E8A76841A7A /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 9E2888BA9B9242FD9E07CA75EB9C5CAB /* format_request.h */; }; + 79A46B7C0AB9475CBAA95DF44A2F0A53 /* migrate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D0113E6FAB8FCD928C8C9E27293F4B18 /* migrate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 79AC1CD81552E562A8AD8FD8DB7724EF /* Pods-SwiftProject-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF20AAF3FF1FD9BB16366796E9261C83 /* Pods-SwiftProject-dummy.m */; }; + 79ADEBC6A33FEFD372B58D0ACDD9DBF6 /* inffixed.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 170FD0D12532D746D56BC7A40DFD5D51 /* inffixed.h */; }; + 79B28ADB4E421E2C469B938A321A21E5 /* constexpr_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 287E08D975BEBFF671560DC81287AEC2 /* constexpr_parser.h */; }; + 79B48EA0001B7510489E8A94ADAAB928 /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C35B88F6B933A85AADA9F88A26BEC2 /* server_info.upb.h */; }; + 79B8DFB67E10A55BF1C16A9A80002026 /* compression.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2BD0C93C6C1E85756E35232CE2947857 /* compression.h */; }; + 79C47D572D2219D579E7CBA1A5B75033 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7E6EB189FCFC6B1A54DB8D75EC94653C /* common_closures.h */; }; + 79CAECE76138D0435BE7ED9AC10A277C /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = F7E03634FA7BC1085A08D4DC7500CD62 /* closure.h */; }; + 79D0CFBE7C444ED13266CB07EC4A9843 /* FirebaseSessionsError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79C9BA975155E67975331CC4F915B323 /* FirebaseSessionsError.swift */; }; + 79D84107F662E6736688F3FB5B9C793A /* constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 80FE5EA091EE4D56063D8D0083C4322D /* constants.h */; }; + 79DA042D94C8E82486D8BC8EBD35CE3D /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = AA191A57E4C2ABB47ED761D58C15BF12 /* init.h */; }; + 79E0D7407334BFDD6AAF5961A3BBD791 /* FBProfilePictureView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56043DE0399EB604E11155C2F0F61DA1 /* FBProfilePictureView.swift */; }; + 79E29C39E6473326D3FA726425CC96D0 /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 2741A6698E076D08E0AD89EA55CB42D0 /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79EF97F6BB5F040A0EB2E86580A5855C /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = D92B5B9F1A86331F6F56AD819E0E12B9 /* service_def.h */; }; + 79F69EF3F677D8B68B5BB100CA48E845 /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2B19E6D91A26AFE29085CBE7E6204B /* extension_range.h */; }; + 79F7BE9904FDB790E7744DB435BDF790 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 555DDE7D65893B9E14D0C0CF4059A571 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79FEE4C869691BA40422BDCE1679E87D /* event_service_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2FE033875472C60370989B26D55B1 /* event_service_config.upb_minitable.h */; }; + 7A01295E1A7319A674EE747F922B974B /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = EA9F21C6268F4D663417020AD861CDDE /* server_address.h */; }; + 7A0BC674E76868942619A61B4A4F6C8C /* crc32c_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = BB176DCEC9060A52AF6A2701E59F8B03 /* crc32c_inline.h */; }; + 7A1F1B8811C7591FD59A59774B1C40E8 /* FBSDKGraphRequest+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 571525DFCE50AC009B4FC6AA02105D71 /* FBSDKGraphRequest+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 7A3B258D34383EA02ACAA1400B12BFA5 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = AA11D58392B8F5604DE90A0476FD9D49 /* common.h */; }; + 7A3E7654CB88F07AE206B05F3F402012 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0F7EC3D67D7BC7E2DFA3DB674E04CE61 /* cookie.upb_minitable.h */; }; + 7A40B2017C90254FED941B4339BAD288 /* atoi.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 048B1F37E83B5174132241746A8DD66B /* atoi.h */; }; + 7A42F46E8A808A64D0BBDCB3EF48B350 /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 4275754F39FFF62E222024E9709CBDBE /* ex_data.h */; }; + 7A48CBDE50FB79F3CAB4D17320ED82A9 /* FBSDKAddressInferencer.mm in Sources */ = {isa = PBXBuildFile; fileRef = DBF16B64D2B8905081EA61D077C3F5AD /* FBSDKAddressInferencer.mm */; }; + 7A515D0F8C0DA5BFD37FDF2D3CBEF43C /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 195EC0FF6FF60CB384EBC8CD10DF7A09 /* service_config_call_data.h */; }; + 7A529E5E2A2A31BB38DDD404563F47A1 /* LLPillPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3BD578C690A07FC2E3A902E71C7D2CB /* LLPillPageControl.swift */; }; + 7A6AA6CDD6989B934E6029F0B9805222 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 75A211413DAAAF922C319CEEF81AFDB9 /* field.h */; }; + 7A6CD3B7206529AC301D95ED15AECFF3 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E7391A711BF5EE39FE9662D4D6E8385 /* alpn.h */; }; + 7A93E553421CA08BA2E5733C61FE1D2E /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 49E7F7C214A9B6C080449612EE3E5697 /* subchannel_pool_interface.h */; }; + 7AC71DF9EFADDC0B1C871F8218922A94 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 637AB0ECB7D5A6B75FE33C9E95192A17 /* status.upb_minitable.h */; }; + 7AC9E9C61F38EDBF66619317E871A269 /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FB49750C126A44CDBF1595A4033B3DD6 /* call.h */; }; + 7AD06930CEAB9C03E5C8D04F84D3D146 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C5BB15F918DAA551ECE2E721139E8B2 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7AD1193A4E5FE98CB0764C98F874E5AE /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = C372C1B84BBE4BF321C0E001A1A86BE7 /* FIRCLSUUID.m */; }; + 7AD2502A6FFBA9748D12DC203EEFBE98 /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D8E09FE794D42D2C542C46EBEB04337 /* cidr.upbdefs.h */; }; + 7ADA67242E7EDCFBC080A4C785BEA744 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6760B9FD0C5C692DD84392EDD11508 /* xds_route_config.h */; }; + 7ADB574AC9A4C06AF4B5E959FD1B53DC /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5A25CD20AA55DFEA01DC46E1EDB323 /* wire_writer.h */; }; + 7ADB93E98B107ED4DE70600428E027DB /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E8FB1C7CEF32EF7D9EA7B132B03EB3B /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7AEC42E4C073B0FF2ED5AC1490EAF534 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 607CAD914FFDC24FE69C89ADB3E32DAA /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 7AF09D59AD6B62EE4AC920DC6175A72A /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = B162B7516086B48EC48F12D3A3A41FE5 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7AF65276020DA4AB2C360F6C6C5FF8EB /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = EBAA1E325151A98824754E7AA3D1AE38 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AFB935953417D1E79F08BD46257A450 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = A4040A683E2A7803976C77BE84BEDC51 /* randen_hwaes.h */; }; + 7B0044B78E27079B2337D304A61879A2 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF67EA6D91F8FCF85FC3F363F3C0045 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B0477996C15738CD74E886B0E72C3B6 /* ref_counted_string.h in Headers */ = {isa = PBXBuildFile; fileRef = CECBEF19D2FC13984222A6EA01AA62A6 /* ref_counted_string.h */; }; + 7B2AE64D61BB3EB141027FFD14DCFD51 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = F939348F4BCD46418F7E593BE356CA56 /* credentials.h */; }; + 7B328649F800F90812976C7F4FAEA1B3 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = DA1657DAB1CAB3E4AE8FDA50EF987F2E /* infback.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7B45A38F168ABCD15CA801C3B33394AC /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A88C96BC25D9E121CD1E6773737B14D5 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 7B50804960549582113CDFC48778B048 /* range2-neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1387B28BD6CE7214901975BB0AD02F3F /* range2-neon.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7B52F5A49F7F3838B1C9397CF7824A4A /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80D5C314133BB6565D0D71A9E0217F05 /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7B550538AB8F52FA77760B1E91EB1533 /* backend_metric_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA8264FE0BE5CCEBE7315BF7BF97D0D /* backend_metric_provider.h */; }; + 7B5D1C4454EBBF2AE6EFE35C44CCEE96 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F2542F3AD60B8104473A82632AD49B09 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B64121EB505E14D08BA5FEF1208CDC0 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C51D257794774E339F2B46646D7BEE8B /* listener_components.upbdefs.h */; }; + 7B64EE797D49F42D981AEA995B40CE62 /* strerror.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F57C5C83751AB9B74AF090B857BA9AEC /* strerror.h */; }; + 7B69F9328CDFD1396A4D86472C0BD39F /* kdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2B5ACF116C491094DD3C21DA1B84A404 /* kdf.h */; }; + 7B6EDCDB97C375BD9110266842EE057C /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EFF17B617061139BDB857410F8B78D01 /* xds_resource_type.h */; }; + 7B7C3BB80E40032AFA274AB5B5EBD895 /* try_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 03ABA9EC989C3E20C86A4ACA08B1970D /* try_join.h */; }; + 7B8531550F1026FE67A72B93BCC459A9 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 839906DE03A50726BA69A9781A430A42 /* path_transformation.upb.h */; }; + 7B8577851B33DB964D450338BD163C06 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EC94E9DD52E46B5857BAF00438F47B8B /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B87F632B7D073172F8F16B7772C80F6 /* traced_buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF32F44C5915F51A017BA30D638EB8E /* traced_buffer_list.h */; }; + 7B8BA0237EE83C6122B26DFC10597827 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA6FF5BF576563347A792AA308F1C42 /* annotations.upbdefs.h */; }; + 7B91826FB07378093D1309467CDE8F12 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BFB764AE5B7272DFBDA30F8BA4A62A /* hpack_encoder.h */; }; + 7B92D712C0BE5CA035E7B2AFBB27917E /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AAA612AFACF86597A9400DC08C72909 /* migrate.upb.h */; }; + 7B9D8EBB0B323C8EC60FD1EDD9D3CD9D /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FE898515A2C54B37C0B3ACB0B557CA /* upb_utils.h */; }; + 7BA001CA7E2F503C4765030A9E1DC32A /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD2D0ADE110D3115A3B7B089AE2FFC1A /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7BA53C6506681DC3DBBE2EAD196ACEEB /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 28771946362C3B96D1CFB4C158ABBDDA /* circuit_breaker.upb.h */; }; + 7BA9ECE302E39242273A25C0CAD73758 /* cidr.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6E6E170B5C8756B291CE2BEFCDCB3B /* cidr.upb.h */; }; + 7BAB9A1D283269D2419332A4D6914214 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 834B966584AA9E6EF4BA4F5A9C55328F /* table.h */; }; + 7BAE05DA39FA8549FFF3C869312C4A9A /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = A81869701334A6F8771ABC95DD0F1EC7 /* insecure_security_connector.h */; }; + 7BD57496EEA20B0C22A0372A50A4CEA8 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4C08CD14F186878A5DCA809188A153D9 /* http_inputs.upbdefs.h */; }; + 7BD7878545A1B8087B46610ABFE41DF1 /* FBSDKCodelessIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 928224E4E8BB231EB48027F8DF52397E /* FBSDKCodelessIndexer.m */; }; + 7BDAA28A056FFAC640F151BA921C3D1B /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0E3931ACD0B4A6217B458E3390D8FD14 /* scoped_route.upbdefs.h */; }; + 7BF21F028D3CD320658146D0AC985A40 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = F48894DAA9E11CD996FD0F8EFA7631C1 /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7BF4AA5297FE1B7E240766AEBD682F74 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CBB2E29ECB9F97B67FCA937470CDD0 /* server.h */; }; + 7BFA14FDAC88B7DDAA6728918B2D3586 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F2E7D87C520CCAC0EE364D5A2EB716C /* http_tracer.upb_minitable.h */; }; + 7C057A4827DC10EAC6B30EB6F8806314 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3DC0634599FBCA7885AC86FF0AFCCAE /* FIRCLSDemangleOperation.mm */; }; 7C1053CC32BFAB862D4D256D6A780262 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; - 7C15647B0201104C7D434D8F4A11596F /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C19D2B0B2DD1F22EAA581FA16022A730 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C17D20F5AD838D6D2E41C853E58BB65 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6367F69FF137D0BA2B9596DB19F65F /* value.upb.h */; }; - 7C1A02CFEECEF2DAFD2E0DD7A90DD76B /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1894C60BD67C777DB430A9CA9A2A07C5 /* node.upbdefs.h */; }; - 7C23F1200851EF99497C045D56639B85 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A883DE7BAFB692AF3A1014C7C0B1E0EE /* cluster.upb_minitable.h */; }; - 7C2824BBBF4DDFD1F536F17F4DD01071 /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 00738290675AD91642CF06283DBB273B /* xds_http_stateful_session_filter.h */; }; - 7C2B847460B8383A535C537D98A13ABB /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 182B9B3439014993DF2CE3BFFE634019 /* lb_policy_factory.h */; }; - 7C34FFD1F3213D525B0BEA31D4BA2AB1 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 662630BC209E2CCF71B2FE3E22BB4844 /* oob_backend_metric_internal.h */; }; - 7C387D89D7D9965A91148A107ECCEAC8 /* channel_interface.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 1A750327C3915775D2CF5D70B32B179A /* channel_interface.h */; }; - 7C39AE23F582648A42A3511D034397CF /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE6B6E7F74397D01C1B8FC6011863D7 /* service_def.h */; }; - 7C39C89BCF278AE3134462C598547086 /* internal.h in Copy crypto/poly1305 Private Headers */ = {isa = PBXBuildFile; fileRef = 158B4C46D8FB1F0A3CD12B7EEEB92DB9 /* internal.h */; }; - 7C3A0F3C5648E0BCCBC3F5302BE412DF /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CBB0C0A8857FFDD6C32E6247A35881 /* resource.upb_minitable.h */; }; - 7C49BEF440E14528E25791DBA19A35C2 /* trace.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 18978FF38968EEFABF58EAC61697E51C /* trace.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7C4A979E65DD339A11FC40802BCAEC49 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2C3BE36FD990507C4DD6A448D3AF83 /* filter.upb.h */; }; - 7C4B9ED267B8C34B0947C0F74755E03B /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0D935D04DF00A5192F04DA9A32AF06 /* FIRBundleUtil.m */; }; - 7C5852599E9C7BD6CE4547BE17D8ECED /* pretty_function.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9FEDB7210C3BB15A78710859E3DD9FDA /* pretty_function.h */; }; - 7C5DA54ED64B2498B634EBCAED80B813 /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = A2525B3482B8DAA278EFCEC86BB22E2C /* FIRGetAccountInfoResponse.m */; }; - 7C6E4ED9138900C8598A86B46E3E039A /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 9C4E5B48E882D94BB69D26350E416866 /* http.upb.h */; }; - 7C6F9C06E90247A50852D7B0C884C64E /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 4937660C7C4175EB86B4768C14D3A42F /* status.h */; }; - 7C7017612A730849952011FA85C2E3F3 /* p256-nistz.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 6A2D4E339BC4234B7A040AFAA8B0A758 /* p256-nistz.h */; }; - 7C77B6D5D2035B614769DAC034A62E95 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8C784A706BF12261DC559AB2BC18F5 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C7C0B6299FAA3DA21581DC69549B635 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9714C2AF014358C35ECA5390C08EFA0A /* matcher.upb.h */; }; - 7C7EED1C0CADB40ED6935A22B3E629B6 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E8EC163B26E63201542D4A7E14E3172F /* tcp_client_posix.h */; }; - 7C82A93A3B89CB63EE6A177B60FBD3D1 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CB6F558A14CCAE690A45C498CECFC2 /* examine_stack.h */; }; - 7C8ED435C427EA54A60A4BEE46EFCBF0 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FAC671866AE6A631EC03E96F185D55F /* context_params.upb.h */; }; - 7CA74122A1FB2F64B75DEC3C6E170DD6 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 266BF18C0697433B015646C062BBB528 /* FIRInstallationsAPIService.m */; }; - 7CC650A9332B6B07268CC7FD9AED42D6 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E8FB091A06DC2F35A85EC3338451D94 /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7CC8A9B123A99483B9D6056A7F7F69C8 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = F28EAA9862F626FF694B8A33F35774A1 /* connection_id_generator.h */; }; - 7CCF4911947FC7B955EAB781D57F5BCD /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4F45FD108EEF88CB4A77BF84FFEF8CF /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7CDA73201D6699ECB2DD8DA4AB28E6E8 /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 0FC768C834722F0E5BD1BEEB6AAD4048 /* sleep.h */; }; - 7CDBA59E781B42F7809AF6F1D66D3ADD /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C005E022D754437F80965CCF88E33A0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CDF8267B5010A14C7B604239653CDFE /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E451E0886F384C404155572A0F5768 /* grpc_method_list.upb.h */; }; - 7CE0D7EFF04871ED0A5C82045A7258C7 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A47317E9CC2EC634C46C8406DA76B6 /* subchannel_list.h */; }; - 7CF60A94308F186F9CA6FFC8C05BB15A /* channel_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FC57B8F107DA69C5CCAF35F300DF699 /* channel_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D0293C3B13E41AFF9DDB808314A6EF7 /* sync_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 007BC64783B94A75CD502C83A750DBD0 /* sync_windows.h */; }; - 7D05C5B2F0DE9C6D5680C35771E399ED /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 360762E34447526C744C1CE22899908B /* wire_reader.h */; }; - 7D18597E143361B1722B903ABC91FBA8 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D10A781C455DC429755686E70EBDDBA /* wrappers.upbdefs.h */; }; - 7D1E8ADFDB84C12C925FBB537DA7B0B1 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6335FB3851244149F4AAF35A8169A445 /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D26E3EFB5D0456FD2D21B09F06D02C6 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = CD19D861EFD0097D8403A664140EE277 /* empty.upb.h */; }; - 7D2E54FA38C869DEBDF96D5DA18C5CB1 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC6F9D9D23B71934FA25CE865E0B398 /* ssl_session_cache.h */; }; - 7D360245DAAE0A495AF5BB6C298B57D8 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A614AE73ED85F1962EE8762770F904D /* byte_buffer.h */; }; - 7D36A1330BBDA22F46730A2E19CCEF3C /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C8509D067FC2B7A776F7F926F73068 /* message_size_filter.h */; }; - 7D3CA6655A23A0CA20C186AA41AE5459 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 76A8FBBBFEB238CD0C4631E2A726562C /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D4AD7A64898DD2EC5E786073485B05F /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBB8E3F841C0773C0880FAB4D36E21E /* transport_security_common_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D58EF5147AEA84A659421C0DF5BC011 /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = E914DE0D9527194924998EFA6FCEE623 /* conf_def.h */; }; - 7D5939A4FE18A107479AE63E3EFB8E76 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 632FF3B0CFB03A0E62EF4B22C7B0045F /* percent.upb_minitable.h */; }; - 7D5CF2021AC34AE5404B873A9F24B397 /* cord_analysis.h in Headers */ = {isa = PBXBuildFile; fileRef = F01505A5CFF6B8D0E57A60209DCA8082 /* cord_analysis.h */; }; - 7D64BC3E6CAA4AB54EAC0AAADE93F578 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADE76618858E65A6CA71F5F957E093D6 /* OperationQueue+Alamofire.swift */; }; - 7D703EB2BD4567F313CC244D2F78493A /* GDTCOREvent+GDTMetricsSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 3068BDB4BD8DF7BCE6EF98FCEBDAE95C /* GDTCOREvent+GDTMetricsSupport.m */; }; - 7D74A9736F6E4B8FAEF5A9471D80DB50 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F436472748538C37988B13E2E3FA4AA6 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7D83B183989C160F7455E43838323301 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2285CC684E259ED8843E937053F54C0F /* cluster.upb.h */; }; - 7D90F6EF44D7E15DFAA3898AA93CB588 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 444B335966749FB38726138EBA40D15D /* file_def.h */; }; - 7D91CC2F2C1F7A0FED4D273E46B0B994 /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6BA393B226D6FA85D95501C452A8FC /* endpoint_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D9E1161DAE6CF3A0136D995C2C34640 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = E41DA07E35B2EA032CA8AF3B5647FA7E /* thread_pool.h */; }; - 7DAA6F52631D28196C5ED9935FB4A0D3 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F4FD7E7455DECFDE822918742C132956 /* range.upb.h */; }; - 7DACC9D322363CE3A635236093D92C98 /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CC34C2E0202CD9E3301D8F94685098 /* ratelimit_unit.upbdefs.h */; }; - 7DAE6EC95424C53DD06E12F643AE4663 /* GDTCORMetrics+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 009DAE8025EAAB30D8CBA122D9F375FF /* GDTCORMetrics+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DB175CEBA4DA28D2C134B5392515FE0 /* GDTCORProductData.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A1B9AC7933C8EA8E6A6B1470BDED59 /* GDTCORProductData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7DD38003CA3F3528BEA6640ECE3EB993 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 81468FEC8291566A0D03DE6BF5809C81 /* http_uri.upbdefs.h */; }; - 7DD70CC31B3D2578BD9909C0D9228B8B /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E0B51AE99AD63B6A13F50FDCDA456B /* memory.h */; }; - 7DEC01297AAD52383D889E2670D2F026 /* init_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BD96704F414FF6DB1133FB672ACD980D /* init_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7DF0A3F1D01F3C975BF0E9F584EF2FC7 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 61B90F09D2D6C1AF2194F9080FDA213B /* polling_entity.h */; }; - 7DF14B125C9B300F19CF5BF10FBD7EE9 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = AE17B84D968AF86C253DDAFBEDBE055E /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7DFF74E54C4EB76F23127A8AD6E57694 /* round_trip.h in Headers */ = {isa = PBXBuildFile; fileRef = DD467912506269D32A50849BBEF54F1A /* round_trip.h */; }; - 7E12EE551708C010CABC7069D020B641 /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = E61C4740B15E957214E2C3ED02718EA1 /* alts_tsi_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E152FD279299EDE5899AF38A14252E1 /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB0982BEABD5E3021AC98459796277B /* thread_pool.h */; }; - 7E165B7E05A6552333487B2DC8E3CB4C /* cel.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 30883ACB3BDF437DFD716D9482BD9AF4 /* cel.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E1D83B012A71E89E9BDCC2813416080 /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8B0DC906BC2AC0AA17F22F6128432AD4 /* stacktrace_arm-inl.inc */; }; - 7E1E55A40E4A71697A19BFEE5E513696 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0B09C9C37C26D07E52119AB0197BC6 /* gsec.h */; }; - 7E2EF6E7C4FD05991659AA540F1469AD /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90B7C2AFB8A319C703C6CF8E7DC13ADB /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7E39424DE6F628FCF889C08743FB440E /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D44480D057B5634DDDC7A39CB431A49 /* packed_table.h */; }; - 7E3C2150EF92F3E22A41CB6FCAEE7507 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 94161B9F7C680CDF87C6CAE625E4292A /* endpoint.h */; }; - 7E3E3A3004E8C6493D28542F89A77425 /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E5FA9927C45065B3D28A80B7A822DA /* lhash.h */; }; - 7E3EFA0AA4566ADD34D93D3BCF9ACC5F /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B5CE4D7880CE25BDE6E704C5842491A /* tcp_server_utils_posix_ifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E40206489338F8F407CB4D1E26A6A4C /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A41FB9A7377324D60C9C8DF86A9B39 /* empty.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E411DC8A0C94B9AAF853601D1247D14 /* exponential_biased.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F1528A6DE6D9BA9D6B0D60361F6FB498 /* exponential_biased.h */; }; - 7E4629BE2BA6B0B215F380671C2CD50F /* traced_buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = E2CCD592A6EE4D8FEFD6421B7BDD68FF /* traced_buffer_list.h */; }; - 7E4EAB39CD5112C4D78CFB37774B404D /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4567D5E4DBFECB694CD4210682E4DD /* city.h */; }; - 7E5D61C9407B37CC067D2322D4517841 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 86F7BC8A1970864443E71F04B45F3A0F /* extension_registry.h */; }; - 7E5FD64FC4F0735A61DBA40F404D5369 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0E603043D975207F4A424D7AFE88E3 /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E615A1100932DF95F32CA6D5AD10333 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = E3ECDC138F660C39B0B13D0C5BF85E6F /* local_security_connector.h */; }; - 7E64708316DBBC06020B0DFAD852E8C2 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 219D19559EE5E46EE8DEB2B1213EF276 /* listener_components.upb_minitable.h */; }; - 7E66EA291CD4A1D77116CCCCBEEF396E /* unscaledcycleclock_config.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E2B790F159512E0CEDF88595812FAAC3 /* unscaledcycleclock_config.h */; }; - 7E687DECE9E386DA3BCA99242079ECED /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F4551A55AFEBB678B1F21F7278CD4A /* strip.h */; }; - 7E6F5249FF05641DDD905073B2227C98 /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C1DE5C2A6D35CB25745BFDB7A48CA438 /* listeners.upbdefs.h */; }; - 7E7073978BBF00E5EF726D31ED99D074 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = CDAC09BCD9A8A6D9DEEC94EB4837C776 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E726C4C29B1E520804CCC8A2C4805F3 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FCEFA58C1FF69B2FA4109449E2E8B590 /* grpc_polled_fd_posix.h */; }; - 7E7355BC198AD9EC457709C0A6A74DB2 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A9FE09D99E42D1A346F2A85C6B1AFB /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E810E2A122BFA794C0A69CEE8897E7C /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = 54BA46A5AF3A0568F7A5DFEEB324A896 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 7E8B6942C28594887AB7144666F84217 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EF12AE4B79F5F4CC33DBF2454948D424 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E8CBC1EE965D0E5B1431ACE6E3E46FE /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB8AD933D6930B1DAB620D880D5FB87C /* http_uri.upb_minitable.h */; }; - 7E8CECC581C51DCE5CE4D6EA256DD691 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED8CE0E3C850623EA471187BA4D9B29 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E90519B398BF968B460EFF3103318B0 /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A558ECF43BD45DAAE5391DA665DA255 /* base.upb.h */; }; - 7EA5529EA4380CE2EE80A64929EB6AB9 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D690A943685D4B89E1A13D032667498 /* proxy_protocol.upbdefs.h */; }; - 7EA5856566F974F377D0BACD95E730E4 /* array.c in Sources */ = {isa = PBXBuildFile; fileRef = 6228E297671D3959F401D866C1A52DE2 /* array.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7EAAC90A232643790DAD02BF362600C7 /* syntax.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 912DCD6579D25189F0E2DA27299D450D /* syntax.upb_minitable.h */; }; - 7EB9EFA61979C8B7B4B0E42FA025C0C5 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8763B7E32BE30E21E7655757377C75 /* csds.upbdefs.h */; }; - 7EBDC3CDE776DEB127C0170E8E80D005 /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = F55C15A6733687E8B702B55D8F6DAE31 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7EBE13B76768F38CF3C40FDC57F255C3 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 403D8D64A43E4E5C1CD0F19CFDD6AA05 /* fault.upbdefs.h */; }; - 7EC632B148F27C406163FA91030729CA /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A08219D354E1BB155157391DAF5702E /* xds_http_filters.h */; }; - 7ECBFF114806140E7AC8D3F613EE4FE2 /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D3EDAEDD823620DC7856DCD00F361BE /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 7EDDDBD728F25B58988FD6C54FA5EEFD /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 500135B33B6EBC21AA5A4C225EAACCDA /* status_code_input.upbdefs.h */; }; - 7EE2CF02DA9E8A9DBDF1E939FB28205D /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C0D9CEE135B34E64E73FDD5A39EA64E /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7EE32478AC602C9E0F437AEE5BD4602C /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 909E71C61BE354A4CE370A8D41D47C85 /* altscontext.upb_minitable.h */; }; - 7EE77208079C2BA79C81518CAD414271 /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = 8EBC24457286FC80CE9F26C23CE6B9AE /* backend_metric_provider.h */; }; - 7EE8CFAC8B6B452A496564B870222647 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */ = {isa = PBXBuildFile; fileRef = A76578DA18542DD873F446677E6FC26E /* internal.h */; }; - 7EE92A8C7F19761D8674FD2F4C3992F5 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B0147D1FB689C7312D31478C9616CDB /* scoped_route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7EEAE54BBBFE450F79B64367070A00C5 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FEDBAA38BFF86AA8D4653D88AF172A /* route_components.upbdefs.h */; }; - 7EEF789C41C594233306E4F5A5D85F75 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = E4C1B1E4F10A5E5AD43039CB1713460B /* FIRCLSCrashedMarkerFile.c */; }; - 7EFCB79D93D7EA0700E3549B0E1C4185 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8190AD18593D3FFC85FA3E0CECDEFED5 /* migrate.upb.h */; }; - 7EFCEB08E6AAEDA5684A138069D4CDC0 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CA2704741A71019D0A6D7F54A2FC42F /* completion_queue.h */; }; - 7F05117194918F857179FFFF0BCE1F65 /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 0815C0ED962673D91E67C5AB9242C394 /* enum_reserved_range.h */; }; - 7F0C1CC30073030CE19CCDA69C20A8B9 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = B31981322C27D274AA72AB8536896007 /* tls_credentials_options.h */; }; - 7F14FB265D7D0DF04F7B70040C27593E /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = D44E6364890338DED8F68E5C6215435B /* rls_config.upb.h */; }; - 7F23D193E9D8CB1DA2796CD7DBE55B57 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 065F346BC1B1578431F4E47528F3269A /* tls_security_connector.h */; }; - 7F2D2C709454F36A06283044969B3297 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FF94CDD8D99E94C616357087375F0A6 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7F357FAB8B63168DEDDA263717DDE11F /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DCD7A1028A76EE50F9CC6BD09AC6EC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */; }; - 7F35AECAF389424E77EF4A256843A80F /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC52468AE0D976B98C158D816311B7B /* handshaker_registry.h */; }; - 7F3B9A95C2F980C6B7421D80BE52DBC3 /* xds_wrr_locality.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13DB7BA6D3BA95A36CD94D9FD34871D7 /* xds_wrr_locality.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7F3DB6330F3D2574A116806E229E03CA /* retry_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 118CAE82C2AA524CCA0D737BB8A3E5BD /* retry_service_config.h */; }; - 7F402DF5843BCE2F4253EC75E2DEA6C8 /* if.h in Headers */ = {isa = PBXBuildFile; fileRef = E52369054517C82D8BCC21A66836FE4A /* if.h */; }; - 7F42E6870735B399F2F57DA6AA24135A /* metadata_query.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5F45A637E64C9FDC3C60C441A129FC8 /* metadata_query.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7F4593B294A9B79BF1AF172264FF6EAD /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 73F08B4A884DC1ECFC11817BE2F332CB /* default_event_engine.h */; }; - 7F46EA6FD9A7527311325BB3343923D2 /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F7E761329028A673283FDBD342F61E4 /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7F4C035CB7C4E6951D7E191BD9CBC2E2 /* function_ref.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D433A453F07E5BD47D42C3FC8D862318 /* function_ref.h */; }; - 7F4E8345D6DD229337B2159C2B7AB260 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = 465ABBC7A794041A8BCA697471C590CF /* def.h */; }; - 7F5CF93A04BD7B5C4A5BF8543E86E9BD /* cord_rep_crc.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2A0451392DB375C419D4B7598730FE18 /* cord_rep_crc.h */; }; - 7F6E8F4BDB4347DFBF8C7D4264AB6084 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90128CDF82AB64062BD729410B1619FC /* slice_refcount.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7F74D145525C2A183C4A7E5C792A802C /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = C0806A278269DC9785FCDFFC38AFAA14 /* dns_resolver_plugin.h */; }; - 7F74E8A928F4EF8CC77B93532355C731 /* sync.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = D7B01E721D7FE3C91B234C49898A0296 /* sync.h */; }; - 7F78AC91559A387D4510B435B8A40CEB /* lb_policy.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = D6BD9B40A624D3AB6CBDF096BC0CA2A9 /* lb_policy.h */; }; - 7F7C8961939FFD5DF957937650F2ADB2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 95A81DC46EB6EBF2A60E218E3CA56C0D /* PrivacyInfo.xcprivacy */; }; - 7F808DE89A4AF6FC37E6599743EC54AA /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1746E78D4E8B316B6436E79E60A2A543 /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7F85DD1118BB00ABA6F9093263C72EE6 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3A75880209DFDB08997AED7F480E75 /* stats.upb.h */; }; - 7F9A94859D307E448C59A7574105A030 /* cord_rep_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0451392DB375C419D4B7598730FE18 /* cord_rep_crc.h */; }; - 7FA98D473E47EBB86F1F40F51AB4D142 /* work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C45467330737E951569EBB61BA39D291 /* work_queue.h */; }; - 7FAADE8873E3D664CDC6F4A3FF86EF55 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 576B73EAC7D5EFBADD55DD0574146E92 /* internal.h */; }; - 7FADC1107DBC911E2535DE8B4241B46C /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E084C6DA92D309BF98F4FA13C8FF9F2 /* stub_options.h */; }; - 7FADC53EB0CF5A377D1F738CFEC4D5F9 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E7725D1B1FB2BBAECBB74183689ED610 /* poll.h */; }; - 7FB18BA3640D99BBA52560FEE2E4CDE7 /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C26D3FDA1AC5516063E69DB14D2665 /* xray.upb.h */; }; - 7FB7CECD4A4E820879F22270F956E74A /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8087934DB9065E0DBB7A26F883AC8091 /* socket_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7FBFA9712CCA085A1DD7B2A7C39C725A /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = EAE7BDB67D5F4B0984AAD04B0396FC34 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7FC5A5A0653BE7EED4393AD70966341C /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C3B3B608D843A67CA8C9835B7F42939 /* pollset_set_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7FDB0A50A3869BF98360AEE9EE5F686E /* retry_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = EC6360712D92D1C09822D85D47E7C764 /* retry_service_config.h */; }; - 7FDC6A3221B49AC050A1951A1A861CBA /* sync_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1F134D0774043FDD7D28E86875B4F58E /* sync_windows.h */; }; - 7FECD220986E1EC7EC682B410CB088B5 /* array.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E33A753E47FB73482C025898990CACC5 /* array.h */; }; - 7FEDD0635588F34FEF5072AF2436D72B /* encode.h in Copy third_party/upb/upb/text Private Headers */ = {isa = PBXBuildFile; fileRef = 6AE965AC6C770CC4F199D482AC2F40E8 /* encode.h */; }; - 7FFE6B717B50248007207489BAA185E4 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = A166E29FC21D0E06B30532680B0906B1 /* xds_override_host.h */; }; - 8012FF9C5828FF38FCD85D588150AB20 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2A6B5832808FED849EB6E8A5D8FEF3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 801708C2416B61E516EE2CD1DBCFE54A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF28902184B3DE8CE38324C7B8E093A /* internal.h */; }; - 801737049F8A7E998D567175EFB4FCE2 /* http_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E19E28CB4D8F7BB8958CB5C21800C19 /* http_service.upb_minitable.h */; }; - 801A7D5287266ADD7C6A0D7FCBE062DC /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = CF8658E4F8900E2A0709E57C6A27BB0F /* thready_event_engine.h */; }; - 802A8BD628DD997E2EF525027CE7CDCB /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 361F7680B677C6C76B1ACAB60B6C28BF /* common.upbdefs.h */; }; - 8030E74EBC3D7E4C69D6C45283A85F59 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D09C1FFE07F0402D79CD918CBC943CB6 /* alts_zero_copy_grpc_protector.h */; }; - 803C6D62F01592D0FF814587ADC2E586 /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EF7B924804E8138987B5F66EB337B66 /* endpoint_components.upb_minitable.h */; }; - 803D5FB1C27CD5F3889453CE31167ED2 /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6937C7DECA5473FA57C1A8447406A2B0 /* cf_engine.h */; }; - 803E18A30FCDCAD93581CF2006B4DD1C /* legacy_server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDB8E1B32A77E4176C7D9BA6671BA574 /* legacy_server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8041DF7889C334E2FDF48CC49482A607 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B235EB0FF176ADCD735F6E06B3370586 /* range.upbdefs.h */; }; - 80430F8A147C876F4DC0F00351022038 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FA7BAC9911ECABB27E3AC83B632264 /* xds_certificate_provider.h */; }; - 8045CAB7DCBAD45D413CA391E54BAF09 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 1C697EF6BFF30BEE3207C1EBFDF2240C /* load_system_roots_supported.h */; }; - 805A37CCB41E19167F7BFF89618BBD8A /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9414CBCFBF80441730354A9235CE0CA2 /* cert.upb.h */; }; - 805D8AA903634B37466759989F492AAB /* hrss.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F955802C27ED91054B5B5FD92E6846C5 /* hrss.h */; }; - 806415880FB57C58EE2F210930652F9F /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97463FD359774810EF65318109B3DE19 /* rls.upb.h */; }; - 806E5B181DA26C8BAD9141A9139D715F /* json_reader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 5733D582CF05AB54CF9AFA14F7771F99 /* json_reader.h */; }; - 806F5CDE1584078BB08129214D62D71C /* x509.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0C70A263737E1A59BDFB3C1017878AD7 /* x509.h */; }; - 807365DA3E8E47CD87712CB4FF856BB0 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 799D3DF7980697B3529D224A07B88557 /* udp_socket_config.upb.h */; }; - 8077E9156DC779DEE8FF2C187BC785C7 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C49196FC6DD4C4C3C54902409FBE4C /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80796A9F140BA3CCD7A34E75A0FB60BE /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84A4F108105E8AC9F2FFA40B89A9F523 /* security_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 807EF8819C6811B380BF20FB99663122 /* FIRRevokeTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD63B7D7EEE782176503C0FF2987A69 /* FIRRevokeTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 809183E8EAE76A54AEC6A9C45B2698DA /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 11A3E6FDA466ED1263CC76825612963E /* FIRCLSDwarfExpressionMachine.c */; }; - 809AD8E476FD167ADD4F5E010E2EA167 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBE4FD560A3863EF854BB10B60F7C5E /* http.upb_minitable.h */; }; - 809B20B4A1ABF96A09B353D23C06174E /* set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = BED8E61BB5553A2E063537CDE673EA2B /* set.h */; }; - 809DF8FFA30AD566F09640F3EC4D451C /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5EB205E45ABFC8FCA0893D71413829A6 /* default_event_engine_factory.h */; }; - 80A1EEFDEDBE20F93A866F634EAFEB5A /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2382AD08504589A424FC98C8E7B57DAF /* xds_route_config.h */; }; - 80A4FDE27E0082B4464DD69C570EB33B /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A6EB36ED216E7F83594A86B2DEAEA7 /* http_inputs.upb_minitable.h */; }; - 80B42598B22309C10C261AEBB1FFE16A /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EC23A6BD58AB4E42720C2CBC5DE893 /* proto_buffer_reader.h */; }; - 80B4EDA2F36A124439A6FE9BED7F29EC /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F5652719CDA46E014B9D5F7D5FE95D2 /* tls_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 80B70414B21E5743CA3257DD70689522 /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 100594D887CEFD33F8497D35AD1F7095 /* token_bucket.upbdefs.h */; }; - 80C4B7E883C94E18102938F43B0EF240 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCA0E5BE0705391757FA6CD6A430228B /* ImageView+Kingfisher.swift */; }; - 80C68C1FEE54D0C27E45531EE57B06C8 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 243461F9270DB6FA509BBCCEBBE43BF2 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80CC387190E08CCD036D4DED10BA3984 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 94D52B6728C2A28FADE6667EC7A3FE4F /* http.upbdefs.h */; }; - 80CEAB9C44C482095DB00F929E6316E6 /* GDTCORMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = 98995FE3AD027FC198EDCEE97BB58ABB /* GDTCORMetrics.m */; }; - 80CF30DB515DC468ADBD544AA56F2E10 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F07636F555E3D7789FF202FE79E6991 /* FIRSecureTokenService.m */; }; - 80D1BF4CD8C1A9EF7DA5012AAAE4D988 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77F77181578E3EA9B575807329D8369A /* KFImageRenderer.swift */; }; - 80D5B9EB70B8FF609DE98FE1D97ACDFD /* FIRSnapshotListenOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A50729FFD398CEF2927DDD41610A34A /* FIRSnapshotListenOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80DA9927D62E5C637F60D18309BF34B2 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = CF3D4158E2C3CA6FDC336D905848CC22 /* evaluate_args.h */; }; - 80DF6CE8AC3D79C227B75C6D4B27C588 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 300C8EE52299C9DA0A18E47981EBA8DD /* versioning.upb_minitable.h */; }; - 80E21F08026BDBBA8B87C3F8C6303036 /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B896495106A346C3E4E1F794210F5D0A /* route_components.upb_minitable.h */; }; - 80E35B219776BD9D608FDFD93E50282F /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F3CCD933B85AE540284E84AC83B2F04C /* stateful_session.upbdefs.h */; }; - 80EBFE8B37C292DBBC315830C05C79C7 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 803F3065AAE2833F59ACA221B6B3AD51 /* enum_value_def.h */; }; - 80F8FA975C421058EBD11D80E350EB7A /* completion_queue.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = EC806D78A55218165977E673D2892644 /* completion_queue.h */; }; - 810CABE51CD7D2B7C25E292AA49DF5B7 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 859D7461662CCE7441B0DCBE6A36D78C /* server_address.h */; }; - 8110A0959127E4F66399DF7F660D3BAC /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 54339C93391DF8A108489A6B187E60E2 /* init_dump.upbdefs.h */; }; - 811727D12924E1FD1FF6C19EAE537CA0 /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = ABD84845D8A0EEDF18B9FEF09E745FFE /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 811F4D34E6D631C718A4E12532354672 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = BA31AAE794BC4ED768090F0B7037A661 /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8128CB484F6E4754FA4C95AB134CF986 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = B027159E4C3BF871FA7457D3A4C542D3 /* seed_sequences.h */; }; - 812E96C3ED3AE0DC9A39DBFF6C9DA330 /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9661FE21A0BC387ECC1283919AF96F /* FIRSecureTokenRequest.m */; }; - 8140C4F7C202E3FA3EB7532D54C7C858 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 47B0F93AAC170D867FD8DEE2708C242D /* backoff.h */; }; - 8151AE09D916793C1CEC8F49BF0C78FF /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = 2503E871F153EADC4B02D39E0499D7B5 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8154C3C0FEC0C3ACAE78907250A96E99 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 496283B2EF59B4B9464A8E8BFEF3E931 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 81584F1FD93F5138B31271AE87A1FD34 /* array.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 9AFE433B249C9F9554EDC97CA02434A0 /* array.h */; }; - 8158811F392BE742E59A8ACE19E71E4F /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A882A004C85A7BD2AD3BD083AA622B /* atm_gcc_atomic.h */; }; - 8161571E7BD4B4EDEA90DCD9BCA93CC6 /* stringify_sink.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A5D393EF2C97D7233D601BFE645FC735 /* stringify_sink.h */; }; - 81661477C0BD65A9CCBF1E004A285EE7 /* GeoPoint+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2552CB02B0573E980CCAED11A00631C7 /* GeoPoint+Codable.swift */; }; - 81663C5C07BCF40C161BB417D9E2BBC3 /* GDTCORStorageSizeBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5D576D992ECC827AB45F5EC3F7F400 /* GDTCORStorageSizeBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8166837B47D17623F6EA1805CB82D694 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C6DECB56E4CB068CD40A65D3038479DF /* iomgr.h */; }; - 816ADC8A51B25E9EFEFC7E25129F5BE5 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E7970DFB6AAAE62D0072BFA026DB3836 /* range.upb_minitable.h */; }; - 8171C3206632C743625F349123086459 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BDEE03624F3ABFE3C4699D9D991C403 /* opencensus.upb_minitable.h */; }; - 81779D518C2DA4F90E948A9DED9FECEE /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4A77F016715A7243403A4C77D95820 /* load_system_roots.h */; }; - 8177AC20E8F2DA2512E8FAD67A212873 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 95608304459F84B5A2BDCD700CD09E33 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */; }; - 817B896013FD56C04CD26E2F6C67EA7E /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C089D4B63E169C18D44E051C1A1B031 /* NSTextAttachment+Kingfisher.swift */; }; - 817D51B3E46DDBCCA9422D61040166F7 /* listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8B567A446427145E552DDE1987D6AE /* listener.upb_minitable.h */; }; - 8190342358AA8A268F8934BF488CFE94 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 22BE5B8C964AF111A103A6CD1C0645DB /* max_concurrent_streams_policy.h */; }; - 81A94B5DE5BD99F93C4AE2A939E3FA0E /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F189C1DB1B380A2723FE8DA48A5220AF /* validate.upb.h */; }; - 81AB65EDD763DD0C0C5AB05F80236C04 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 874AD7243B524399290D3C2E43FE8B9B /* resolve_address.h */; }; - 81B27452CAEB14F9E56A47CC209307C2 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B0F93AAC170D867FD8DEE2708C242D /* backoff.h */; }; - 81B2EB8687F00F5FC11C7BAD87919FEF /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE4D521A4BCB7206381FCFEF9E33E39 /* subchannel_interface.h */; }; - 81B482B9181C4E34757C80B5EA7B4546 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3D6239612D695F69F25D237B24DB39 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81BEC193402BD529866D5F8EBA02B020 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C1F3CDD8294396447F0DD8804D68E14E /* metadata_batch.h */; }; - 81C4CD9E5788CDE8CA40AA25893D3141 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1D67BECA8FA61CF80FD537EB9BB74337 /* time.h */; }; - 81C603F9151B9F8D36314D22A6C1AEDA /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = BADA253FF641E248957D7A90BB17F4D4 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81D33E0802B702C1F97A001F2CD1B69D /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = C45467330737E951569EBB61BA39D291 /* work_queue.h */; }; - 81E4CCFEB1307757E98744344B75B9FB /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F0A16D5015BFBF63742F84215229F2F /* RequestModifier.swift */; }; - 81E6A0FF7F286008345ECFA3A2103FA8 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ADED26C156C0210379E469200038ADE /* Alamofire.swift */; }; - 81F83A25CB77BC46E297B2B22BB0AB34 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 880196E68F414A4C8988388778524B1F /* service_config_parser.h */; }; - 820297E4220C95FF9E05DADDC84B06B3 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E7970DFB6AAAE62D0072BFA026DB3836 /* range.upb_minitable.h */; }; - 8215570204382B0F93A4920016A3ED73 /* pick_first.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F00638BC181AABAFDCC38EEEA7F1A0CF /* pick_first.upb.h */; }; - 821F197391C0136E9DB7B1185D81BE6B /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE985650780BF9EB31BDBF7AD948A567 /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82288CA8DDA0CB1F9CBE9F6D0D108E64 /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0006A7B06CB205C3AAE4F3203CC99B3A /* legacy_frame.h */; }; - 82329CE3FD7AB1E820D6ACAEE6D863AE /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2B03915872B69964AB0963D3A82B4D7 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 823524D7E318E85ED22EB048E10A6D1C /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CBC48A9B7206EA3C39A921BB15F7411 /* backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82356F2AFF55F4B8C883B0C417AF45AD /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCA0E58C004BCB43FB66C95C1456D763 /* work_serializer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8239427792605389F887B6483D6E5B14 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = C9C1084866662B12A9210105BA47B2C1 /* promise_like.h */; }; - 82399E9FC3861327493342A2E777F29A /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 2BD9EA1FD2FFEABB7AB03FD37E506B9E /* credentials.h */; }; - 8243996C6E8EBC9C548520BA6B21CB4B /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 35781A79E80F6BBA410DE8627E634EF1 /* ads.upb.h */; }; - 824BEE15AD97F29456E0EC1CAE594201 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 948F8698C35EBB05F513A0DD984E99E5 /* resource_name.upb_minitable.h */; }; - 825C32FA04622C863CDD04431EC52677 /* sync_custom.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = BF8B99B04E0EA16A0725A321CAB369E8 /* sync_custom.h */; }; - 8260E695CEDCE177A341393E30DEE9DC /* grpc.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C85EED01882DF8D046C53A2B926D5F71 /* grpc.h */; }; - 826A642E1E822EFC6C6D96AFE6B13A83 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D6CE426FBA947DEA52644F5F89FFDFB /* tcp_windows.h */; }; - 826CFEA105DF999596CDFBC2728441FF /* hash_policy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F3C402B75AB4D3ED6D8BD1BEFFC0FC /* hash_policy.upb_minitable.h */; }; - 8293F89B383F9507C7A5F87B66482603 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 54C7647DD168FC57C53936ED70088F58 /* thready_event_engine.h */; }; - 829E7E17A98F92E2D44E73AFF15FBB72 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D976A4F62C0E8245822D7BC0830725C6 /* hpack_encoder.h */; }; - 829FCE98AA8B134BC86FD93350D6FA5F /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FD6633180B347C55CB0F7780E057C9D /* pick_first.upb_minitable.h */; }; - 82A8508EB652015B7AE733895AAD85A4 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E6378CC56E2A6FCCD03F54631B4CC9B0 /* decode.h */; }; - 82B5F4B720FC8A0D310C948EF6CD1FC2 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC5C35602871EFD79A54111BB2C756E /* cookie.upb.h */; }; - 82C13E8CFC2DF5289E34BCE4F038A2B6 /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73E171821360A39197AA87F5A2C552C2 /* pick_first.upb.h */; }; - 82C1BCD21ACF4B3168996F745A4301AE /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C20F999F457E62DAEC67EB2013A171E0 /* string.upb.h */; }; - 82C791CA101C655F36E6B9B7CCE62CC7 /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCC37457FE884CDD61177060466CC527 /* skywalking.upb.h */; }; - 82CA706B8113932C8A6F86DD45A2478F /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = A53EAD36073CC791855F3CD45046F243 /* alts_zero_copy_grpc_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82CC2F39306E890122290B305F10C58E /* has_absl_stringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B77EAC49D41342387ED46193ECB8225 /* has_absl_stringify.h */; }; - 82D9CBD00D63C60D6D9FC2741287D192 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 94E2B0602150230A62FAC6091F7C395A /* FIRInstallationsStoredAuthToken.m */; }; - 82DD14CBE471958E768846828E4EDDC4 /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 025DEDEAB299ED2B675319741AA9A1F7 /* poller.h */; }; - 82E3109851047F6DB8811A75AF741308 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD840DF2B922FEDD63B325DF6B86288F /* tcp_server_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82E6F91B47F3C33B67B41FE82CF86C42 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = ED3AEC157989C69FBABD74A301A1086D /* dns_resolver_ares.h */; }; - 82F6F0BA3E7DE75F8B224F3088221F1C /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6624648695BB31AC4CE1A2CEC5E44E /* grpclb_client_stats.h */; }; - 82F8F0A22FAB4C9FE682B6EBBBA456FF /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5707429E42CC2CFBDCF9AA279B357896 /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 82FD97FBBEFE51E2D3B434AF4954FC93 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AAE2B42E5377F40BDCC9B3D9C7085D0 /* EventMonitor.swift */; }; - 830F885D394D63B92A9D967C2EF97965 /* try_join.h in Headers */ = {isa = PBXBuildFile; fileRef = C165DD423D6DB27068B7AE1BB8D643C8 /* try_join.h */; }; - 83119442A4DEDAC7694474976F85ED75 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A710F23FFA1903844BB84E7C104D208 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 83124412F4A3305B1949009C2BC63B9D /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = AC396AEF6746FA01BB0C89657FF942AB /* tmpfile.h */; }; - 831A031BD6FE97E15C2A39E281038ABC /* posix.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A81F33CCA6355AEDFAE21447C11FD4BD /* posix.h */; }; - 8326BBFEE264053CB32A4271065EDF1D /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5416FA1236D1C74288FF095DDD742F31 /* descriptor.upbdefs.h */; }; - 8327EC52DCAEBC4EB3C8FA75794300B0 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 2402BB02DA98386C3D9824022509CA70 /* stringpiece.h */; }; - 8329E61E14948ED3C889E0044314FDA4 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 035B82AB08DA681C610923EBEBE78CC8 /* ascii.h */; }; - 832CC5B3BFAF97AC96A65F00A70AB2F4 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 9F336E53477D8798EC6CD45A76160B21 /* client_load_reporting_filter.h */; }; - 8335CDEEBD5A02EE76A5E4E67E4807CF /* internal.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = D1656F9E0EA7130C86BD001BDAC3F96B /* internal.h */; }; - 83377C7B46035B423531F0A24BF363C2 /* FIRAggregateQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 2666D9209A88E682621EAB951B276637 /* FIRAggregateQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 833CFD943A1AD754569999D27D91D4CF /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5702FEDD1F60ED913920524FBBEBD29 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8346B19F38373A1E6EE2327BEB982C20 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 876DC05DD20E06CF575640EF4AFE2C3A /* binder_constants.h */; }; - 8347CB1E6AC56FD52DF27A44442261D4 /* decode_huff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3317DCDA44E4F425C6A3D5C032333133 /* decode_huff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 83490ABE0B4DBBED3729DB26126E2CC8 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 436D524C2E39C8B15D9E5C17424E4F9E /* xds_channel_args.h */; }; - 8349A1BA4493FF8F41E53F477F2BB399 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D3484ED8A82B07C2FEF3B16FBEAB48 /* types.h */; }; - 835A86598A317718BB98887D451194AE /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9207B49AAE4487FAE2FF0EFB4351EE07 /* promise.h */; }; - 8362046632081C826AD3DF5456E5BDF6 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 576CB3570463E97DD5EA01039D58C44A /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8365F73854E309EDA3E1C5B3FFBFFE0E /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = 90D227FC4FD66372393D002D55EA59AB /* backend_metric_filter.h */; }; - 836858A648872749D2C3ECC9B3A17854 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E3921E27C2155E2C8A671AACADF422D /* clusters.upb_minitable.h */; }; - 8377E5EB843B6C98AAF927C9C3BA3896 /* metrics_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD084EDDDE0DA7F15AE22D2F8822EC3 /* metrics_service.upb_minitable.h */; }; - 837C0F9257A6C7FC615037C37DFC4EA0 /* substitution_format_string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCF9FB6E0928EB9D64073A277976D0D /* substitution_format_string.upb_minitable.h */; }; - 8387DEED889C8103C46CAF0CC1D4C4C7 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1B50AA3FB00C3B83B25023223CB164 /* GDTCORFlatFileStorage.m */; }; - 838AA225E93EF2F6CC3B912D904BFE8C /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DA47D780569DD5B8B60467DD4A769C6 /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8391C12335B609C6368454BB1524032A /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8F32A9B5A55C57578FBD61E09153B261 /* unix_sockets_posix.h */; }; - 839546F414D4E7D35989A716E3DE10BF /* md5.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 64FE3649CECC743D810E8024B1055EE9 /* md5.h */; }; - 839B0E3B706EF997BF071E579F71DD73 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E121387666BA2A4A478A13897748FF /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83A5AAA96606CE29EB1922F88D28FD15 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C1DE5C2A6D35CB25745BFDB7A48CA438 /* listeners.upbdefs.h */; }; - 83A692BEEEB1D12710A1E712B9D21CC2 /* cidr.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 45532B655A2E523B0ED9112BCF0E60C0 /* cidr.upb.h */; }; - 83B107BB4130E50326F0827654F14678 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 68AD82051389CB17BDC6491C12A9EF54 /* GULNetworkConstants.m */; }; - 83CDECB67F09AF3D42700721F3E1E686 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 392D877CC7FE85A0DB0B2FFD8F5FD276 /* time.h */; }; - 83CDFE5E82F3A0FAD0033DC30FC143D2 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C124D9E81A0C2736EEE1C2214ADF4B87 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83DF90B40F8A679154B24E63183DB3A8 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 34F9E2C0A6B306707B24DF7BD4F5B319 /* eps_copy_input_stream.h */; }; - 83E65345936B9475A284C90C8639946F /* accessors.c in Sources */ = {isa = PBXBuildFile; fileRef = 86C0EDCADBFEBDCC34F9434948A32FD4 /* accessors.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 83E8A310FE8DDA81FE54ADCBCB5EF31F /* internal.h in Copy crypto/kyber Private Headers */ = {isa = PBXBuildFile; fileRef = 08CE8E4B2CDF664E40FF245F34E0F716 /* internal.h */; }; - 83EF8A27C1926CC83D8051BFC6025DD5 /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9B029FC91D87F6E65C6F15E72754F253 /* poller.h */; }; - 83F2803AD9DF8B098216BFF6B82A3D0A /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F0175C739415B6FA900A91500625012 /* ratelimit_unit.upbdefs.h */; }; - 83F3ED3DEF137F813ABE482E3F98DC54 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A90F6564ACC5E89392479A3C202E476 /* status.upb.h */; }; - 83FD9A7CE144057551C25FEF127415B2 /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = C76D27C82D0B8BB8410B36E9EB77CCEE /* memory_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 83FDB314144C2A60234D6A4225842387 /* service_config_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1926C167EF3E5E6C57B4CB8FF4B37595 /* service_config_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 840496BFD14B5C9BF671698BA6AE0D24 /* common.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 3F02AAC8A8312352AEAAC544EF34AAF3 /* common.h */; }; - 840841577280D43CC52198E1A558F444 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = D53037559E49EE93918B7E3624D00DBC /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 841D0BC22CD20D91B36BA5517AB118A0 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = DE3036D31A6996DF8233522041C5DC49 /* cycleclock.h */; }; - 841E604E6915C342C3559988E5F7E8CC /* PromisesObjC-FBLPromises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */; }; - 8423FA0347C0E797C9160FCA868431AF /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B643B485BD0D4D43BC8B737DCA5A01C /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 842AE2EA6AC02271BFBDA166FA3D5FFC /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EEF92B1009B372C9DE8311FC483B6E4 /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 842CDDD759039123DCFD185FAAAA8597 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6B7165F77657104D413B7FF0FCA729 /* grpc_library.h */; }; - 843E0B102D0DCCECA51E22FDD740560F /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E525D8B736394E67AB1BCBB9C6A133 /* decode.h */; }; - 84417E28B23663EECBB1B534643F2488 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 043FE77117A8723FEEF1C562E4296120 /* FIRCLSFABAsyncOperation.m */; }; - 8442EF246009D6A26EB78D1E0A263323 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 39530BECEB7DC82CEF4C49E1405472F6 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8446084E2074AF36B4EC7856D474AE8A /* type_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A082963AFB387C13673FE90E6C69D06 /* type_list.h */; }; - 844B750030CDF76E333AD031B882A08B /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9EC0B67F461AC3B1A94EEA19287FF50 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 845B0B5ECBFC5C84B1FE2BD1128E9844 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = CECFA812D0AA6972ABB66BBE3D2D4344 /* field.h */; }; - 845F6EBF49C08B8867F89AE663240F51 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAB287E4C5DAD7C148307E54FFB9B7C /* file_def.h */; }; - 84638AF7EDC00A3BD646DEBD92C34B0D /* strerror.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CB3FCB97C62A59A1EFC69C5A5D3E5FA0 /* strerror.h */; }; - 8463E5F2B877DD6E2458CD5AF38182C0 /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6858AFB173774F4ABF21FFC4B4719C06 /* xray.upbdefs.h */; }; - 84761D8CF8D586AA4E37F4C8FCE8864C /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4950A37AC301CE860C4F3C38D1411E4D /* time_zone_impl.h */; }; - 84820A64E20FF6DD0A945998BCC7D588 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7CFCBF61B9A322B7455375C50F9F8E /* health_check.upbdefs.h */; }; - 848895D6C341B3F54A3FBCB380B62D3D /* work_stealing_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 426BA6E36457F08D42BB306DD1A29A6D /* work_stealing_thread_pool.h */; }; - 848B82C3ABC3F90E1BCDB1C2FCB414A1 /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A7D23CEAE78DE9268CAC2844486510 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 848E274439346777F90F20329F6353C7 /* optimization.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 66C633050ED284A82E1EACEF72B68595 /* optimization.h */; }; - 848F90F6EE891F70B9D416F11D0B1BC6 /* method_handler_impl.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BF44825C602E05ECEC0B36CBA2F0D60C /* method_handler_impl.h */; }; - 84942222F444BDE86B9209C1680C67E6 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80D4836B90A850D94BE1AA35C424300D /* endpoint.upb_minitable.h */; }; - 849EC2BDE414EF1BDAD43EDDAFC08745 /* http_status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FC1BCDCCC3B3167652E3070572705F /* http_status.upb_minitable.h */; }; - 84A7510CFE4245617E8F15CC5AB99C3B /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD1B7AB6F45FEE04A43FB794AA9EE49 /* FIREmailLinkSignInRequest.m */; }; - 84AD5747717242FCD50FEBF8536CE2CD /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7B1E86CD9B881A9DC4664F8C0061DE /* subchannel_list.h */; }; - 84B996222E21FC4609CB98B3FA4D98D6 /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C361D814E63B6CBD81262A11CCB1AE4 /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84BCFEF27F111C479CA385E6E5BB72AB /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 723670DFB99CB45F1A29AD05F5655386 /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84C4FE98521B525F756624417112764E /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A62E0AD9AC7D05E6118B8F795299F83C /* resource_locator.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 84C72B24431D1D644B31B5657E16F78A /* types.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 60CE4E3DDC8196FE4E57A14A98BA5790 /* types.h */; }; - 84CF12DBBA8165C4ED4C48F6F40A6BB2 /* stateful_session.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDC1232A2D98993DFD0908A337C8618 /* stateful_session.upbdefs.h */; }; - 84DB78D3DCF5E09122371AD142814FD2 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 8576BFCD0ADBB15FC2FEB6FAF1DB6CFC /* ref_counted.h */; }; - 84DBC1B22BA2351CA5BA5FC8AAD35C78 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = B747659E4FC150C7430B7A5B31CA7653 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 84DD519AE82CC1BE4779CB553F68BDE6 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = E82CE32763DF6059CAED4F3754135B26 /* alts_counter.h */; }; - 84E75A627750DFCDED3F16693F32B023 /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8E0C951A89D999F1B9CFF6CB43679F /* config_dump_shared.upbdefs.h */; }; - 84EA88DFFD7C0D4B73FDABDADAA7BC71 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 821F9BEA628632B4077B9F3CB170D995 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; - 84F748A9650CE09F03F85039402CA97B /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BF4CD0F3AAD5DF973CCFAEAA4341FC7D /* xray.upb.h */; }; - 84FBDCA542ECA5B1A0723E9AA82A1D28 /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 30EAB430BD33A00130609AB844A804BA /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 84FD5CEF6350D0A7C1DD690753F5B184 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 361821109C93AC2A89A45B5754A2E9F0 /* versioning.upb_minitable.h */; }; - 84FFFDBB08E9B0DD118321BCF7EB9250 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F88885CE5E4D417BE72EFBEB512AD1 /* string_constant.h */; }; - 850D95DB9EFA3077F7589E8F7D200AE0 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = A682A7F7D68084F0A80EF11359B06149 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 850E51F379A3D72C58232C8773533B38 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 223BF053A32707A6F84F0650343ACC52 /* annotations.upbdefs.h */; }; - 851B541A7DFC70251664B1AB4448E2B2 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DB581C06827D37B915F6796556340A91 /* fault.upb.h */; }; - 85221902520EC083DE3DA587F8FF9E91 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A747447769199CA7B4A490196D94485F /* PrivacyInfo.xcprivacy */; }; - 85305BA254E183859E6DC723D8456E2B /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F99F3A05E960789111192994D4ED27AB /* accesslog.upb_minitable.h */; }; - 853CE6CD9B721653C7C3976C13CF9B3E /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 65A8452A78738B167CBD5A6510005ABE /* substitution_format_string.upbdefs.h */; }; - 853EFC2695DD34480DC17EE0916EE3F9 /* call_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = BA1BF5ECECD45225890E75A208A3E976 /* call_trace.h */; }; - 8540C8FF8C4F777D8BB2370DD769E938 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 5089E56C920D72572AE1E6BDD4DBC418 /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 85421AF13ECF7016F1142E40ED6A7D64 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA570878CFDB7BD59897DDB87FFB43BE /* rbac.upbdefs.h */; }; - 854E091090A49FDE5FA6BAF3D4B49032 /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = FE5CB6F82C84152291E3699DEAD83651 /* httpbody.upb_minitable.h */; }; - 855DCA3E6CB44A8BF880E8A0757B7FCE /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE66DA9F0987F41B7B55AA687B6EF714 /* ratelimit_unit.upb.h */; }; - 855F2176AB41872B87508DBBECD65A77 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 06E65987F807334755555B25BD4EC745 /* client_channel_internal.h */; }; - 85627B8B58F9F3682BF8625E03EBEC3F /* traced_buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 5310CF377D9D5D2913BC997DDCB9CE26 /* traced_buffer_list.h */; }; - 856DEEA173420EB46452843E31B76780 /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = E0C98D273184325905E1BCB4CFB10E9E /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 857AE670E8F907B5B0E25B9284E2336C /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = F37EDFAB4D2E0B90CD0F66B38AA19891 /* http2_errors.h */; }; - 858E79248858D9313CE6DA5D4C031595 /* status.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 88B8ED6E0EFB2EA6FFDA5EA9126380BF /* status.hpp */; }; - 8595A81D1EAAFD59EDF5D8F79D502827 /* FIRTOTPMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F02E23E7F5D906D64F2220161F561F00 /* FIRTOTPMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85A64C43C5BC7F8678E7EF53C49E72E3 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 180046154D14B8B3057977F5DC3829F3 /* unicode.h */; }; - 85A67CD3AE83EC49CD23FFDDCFD12742 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = 381AA3793BAD52EEABA59871059229E0 /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 85BA76C761669EBBDE914B1D7B550664 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 34B175795896525BD2D847752F383939 /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 85BE65850562CA18D8252E427605107A /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 74453525B29772D6691604D8D5F9817A /* win_socket.h */; }; - 85C26A0CEFB1C6F7A6EAF6A4943B55F4 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71396C51CF9EC0D40A2898DDDD48FB63 /* channel_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 85C7CB7BEB8156C8B79CB49B676C4C3B /* route_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C643B6DCCF67B8EDA091ADAD8B33B217 /* route_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 85E2285EA9E073BAF26972854C8A3936 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E4CD95C9AC94855CAB68D47E8E740 /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85E5B73E0B604D084CFB4A89E4CDF125 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18D17BCCAF3A1900DABC20D91215D153 /* number.upb.h */; }; - 85E5D8BF84FB83B890714ABB37C9E7E4 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC2EB2850CAB204464174A0459ED404E /* csds.upb.h */; }; - 85EE5E40FB6046FEB3096BCEC57CC7BD /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13F6C6F99480960F98A79420D93E305A /* string.upb_minitable.h */; }; - 85F2F2B5D929AF307A2AEDDEE5E22063 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 057B1493136BF2D604E1110272462085 /* common.upb_minitable.h */; }; - 860BC85D9B6DF08DC835D9033B8DDD81 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C65DAFB716A85E9AB3D5E43632DE56A6 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86154DAE2018118815D05CA8A9CCBDB9 /* http_uri.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8AD933D6930B1DAB620D880D5FB87C /* http_uri.upb_minitable.h */; }; - 861639903FBE19CD3463AB34BA72DA0F /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D10328EB7B9A0FA8886575D040E248 /* percent_encoding.h */; }; - 861CD82478E36B43C26C84B40BB41E88 /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4015A7BB0B93EC75030A4422C6853D /* GDTCCTUploadOperation.m */; }; - 86241CE78A81C59C7BF40DF20C218496 /* hash_function_defaults.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1D7B61AC6D6FE871BE30AC105747CFED /* hash_function_defaults.h */; }; - 86273F65436FA1F00B76DF9593C0DDA3 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C8CA7F81397569FCE09BB55D1F139501 /* circuit_breaker.upbdefs.h */; }; - 862778187D4A82D8B9C0049E435F9817 /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F5BAFAE0D6EF767520B8153406D070 /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 862BEAD948CA151FC162D971F99B1170 /* filter_state.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C601B5F13E6E8BB882A1167DD11D8972 /* filter_state.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 863321D5D5A88E74876D08F6C5FD5500 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 18D17BCCAF3A1900DABC20D91215D153 /* number.upb.h */; }; - 863DBF79161CC118585DF52AD9038F69 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89112F0FB78CC36273D6F580D2F74B52 /* endpoint.upb.h */; }; - 864645E1F0D975BE09E249F84AF835BD /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA673CD82322F6118BC14C3370735D9B /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 864750C221EF974E8A12F14B56E29799 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3D705033E1B400512C16EA03A9DF234A /* dynamic_filters.h */; }; - 8654B0070B3AEE6C12D7EA5FB33A7734 /* DeviceKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BD29D28E32D6707F450820A50B7042 /* DeviceKit-dummy.m */; }; - 8656323BA94F06203EAD278B0B27B37B /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9A9AC36429D6FE5F37E04FFC9BC294E /* extension.upbdefs.h */; }; - 866374F06A319FC2D6C8A6B3980BB3C9 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0983B80EB433848285802BF2FC2C48C /* router.upb_minitable.h */; }; - 8666DD6599B636F45D2BC2F2512A8910 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 25BEEDBD97ED202DB6B60D1D95C326C5 /* pcg_engine.h */; }; - 8673B268BD4CB9501F718C30C8668FE9 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C189C161B98E5D16854F9A731F4C2C7 /* float_conversion.h */; }; - 8673FE8CF63F5AD7678F32E1886C9BF8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 867A62769DFEF3EF6D3913FF6F6EA3EB /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E53EEB8701A551222C0713F956847E9 /* FIRCLSFileManager.m */; }; - 868938DCA03E497674B06F52422F3139 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = DC969C39B0193418BCC5F111650A48D0 /* call_combiner.h */; }; - 869CBF8F577199843CD15FCDBF3F6EFB /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECEA1AF4F57EB0FB4DB9F8F79B20F8DA /* server_info.upb.h */; }; - 869EFD46899AAC355070BD85EA06D089 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = BAA126F07CE4089DA739711403FBF96E /* FBLPromise+Timeout.m */; }; - 86A07FF337328E0105D6E3655DB4AB3E /* casts.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 9C9960819D5E5FCC49028377207534FC /* casts.h */; }; - 86A6DEF4DD8CA5100D054C6B37263CF2 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F377A36E9149B2231A872D3D14BD3E6F /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86B23D07DF527927471589A0B08A77BC /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FF151CB997F69162A18D10A7283C87A6 /* tls.upb.h */; }; - 86BCF13C39222A4B3E05A4EFAE0CBC8A /* CollectionReference+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 061E8ADA5B7705F451C5F11DF2805104 /* CollectionReference+WriteEncodable.swift */; }; - 86C0FF646F71D663A96681C4E33F2871 /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD60A6A28FB3AE84CAFAB8704601217 /* low_level_scheduling.h */; }; - 86C234EBBDAABF3B8445652D3E5D38E7 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D4DF1294FE5F8209C0412AF55888DA6 /* insecure_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 86C27151A62C8A359F126BA6E6CA1C3C /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 659A55CEE1552846E03F599756DA98DE /* matcher.upbdefs.h */; }; - 86C39B668AB190EE95464C8AB1E0111A /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 570EC0D0F4BD3CFAC3DEDCDEB8628070 /* Resource.swift */; }; - 86C4A6F3A708516E0929FAB8812D5C38 /* gpr_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C463F36AF2DA8E184580BC09662B59EB /* gpr_types.h */; }; - 86E6491E17C71A8C75CD839807185A56 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0016A656F1FE437D43D61C33598B7B12 /* method_handler.h */; }; - 86FE7F8C838EC6AD28076923AF030AFE /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82CDC8093663D6BCE3E03FDAE407D992 /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 87083792980A670EF14D2F759D6716B3 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 6582A7298915CC7AF0E476125466391E /* json_token.h */; }; - 871957F63E4B54C71CC091753576761F /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D82FD0CDD93342575E1BFF98E861B138 /* substitution_format_string.upb.h */; }; - 872BFBBF7948F02F49E3A7542A29E47F /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 659A55CEE1552846E03F599756DA98DE /* matcher.upbdefs.h */; }; - 872E26BDA10DD48CE47D802EDAB66749 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = C856F3DF27490E0D64FC46CAD27DB83E /* fake_transport_security.h */; }; - 87304D5AF2582C6E7839864112534CBE /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D0F41194A8177B46A4826496FFD42CC /* Result.swift */; }; - 87339E562DDCE326ED2E50CA494B69A5 /* wait_for_cq_end_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = A84B19F64D55E49D1D83AF50A59F4FB4 /* wait_for_cq_end_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8733F400AF2DC018E1EDB23CA1398436 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 04445866C0C23656E74337105D2B8B4C /* zipkin.upb_minitable.h */; }; - 87473F30FF3CC1E96B13F8740EF349F8 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB67E3BD0A415E965434A1D946E0E70 /* FIRAuthURLPresenter.m */; }; - 8753F7CB2D78E0FC2306ED8B61B81BD9 /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 420C4DFAE6857E6CACA60EF5C8946BCC /* throw_delegate.h */; }; - 876200961D8A06451812658DCAD7B9F0 /* ssl_transport_security_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA6824C858E653609C7C55DCD4A8E58 /* ssl_transport_security_utils.h */; }; - 8762BEA012D81CC54B93578FBD4269A3 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED6CC26D27767CBBB3DC207121DE413F /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8765A785878443BEC4A8E13DF80C59A2 /* notification.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 699D53B25E3969069B7BEF20E6E44A57 /* notification.h */; }; - 8765D4A985E4FDE623979609D283BAA8 /* certs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C8D38429829BACA4D495229633BD3C6 /* certs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87674FEAE1E6CC2B1693EE91BE9AEC41 /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21CCD26320401BC5D647DF80CC3264C5 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 876C0208F26459547AFFA811937AF075 /* FirebaseFirestoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E2350E916317001563C2D794AC716FE /* FirebaseFirestoreInternal-dummy.m */; }; - 87724D4994CEB01CA3F2529249FA534E /* async_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F1C571B3AD28C265AD405D5988EA7D64 /* async_stream.h */; }; - 8778A10B76025BEB5E2B49826B11BB01 /* keccak.c in Sources */ = {isa = PBXBuildFile; fileRef = 3513C10D08F2D3C36C9EE5FF330116E6 /* keccak.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 87812F82197C05F2FE417BB739CD6FC6 /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 918E5B1147C6D0D05210E97EE94C05B3 /* zipkin.upb.h */; }; - 8783A1A21BA5BB5EA45FE6DA1972CBB5 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 91EBEF906384E65F4396B93106DAE030 /* opentelemetry.upb.h */; }; - 87864A917C2DB37AD3235320E0E04C8B /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8FEFA7E046AC2E279283C6B9D576ACD /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 878A0686F85BF7E3074DE8A687476226 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 16E95CD7849EA3C68955762818BB771D /* xds_client_grpc.h */; }; - 878D8D84F1C68761AEF6D4BA9BCFFA4A /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC8466D4CF6F212C26336B6B2F84D2BA /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 878D9F5DBC6BDEF6EB5B1CEF3988341D /* certs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A88C263BC53E240A3EDAA97F06DBA93B /* certs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 878F69286F834804F191E5F1FD051049 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 49FFFB1F48FB5414361D7103A3B727F2 /* FIRCLSMachException.c */; }; - 87921303C312E2BFA74BADA13E8F6B22 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0481076B0511164B79A8E896ACD737A7 /* server_info.upb_minitable.h */; }; - 8793C8F54D64C3F469B19944C0756193 /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB05209FB0876D8443218CAD509A28E /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87941A20F550A5CA44BC1A3C706D1723 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89F8738E0C147F4E88C62DFEB4B586CB /* orca_load_report.upb.h */; }; - 879423E230AB7AE04F04DA8F82D27910 /* rpc_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 16D93BD857E744573C6ADE1B41EADD67 /* rpc_method.h */; }; - 8794C757FE147BC344A9BB79AED4A5CC /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = B12C3BF47A010032C7302640546A8A34 /* trace_config.upbdefs.h */; }; - 87A2E0211D31E1B03207D007F2C4E4B9 /* value.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C079B7F37EB75A88E9B5AC8A0020060D /* value.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87B9C694DD3AADADCD1C4D087E924ED5 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 56DC3A306CD654D2458FAB8662A5781B /* number.upbdefs.h */; }; - 87BA319EF764FF2C9FFB159AD78C1643 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 799CD2D0596A1C47CBCBEA171B6C3517 /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 87C0493054929F3A03A85014ADFE3B63 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC6312697F519FFEF2FC4CB61C4E170 /* cluster.upb_minitable.h */; }; - 87C214A3F7797AC65D7F2CDC99AA7CF4 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 78FA9E48D3FA76C6C691EF49CDF5B8AD /* overload.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87C273B95ABE20B1843F27008B336BF7 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E5913122E6B3C6BCF0C1EA1BEFF459 /* percent_encoding.h */; }; - 87C7F382791D53CBB11565D27CAEED7E /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5310CF377D9D5D2913BC997DDCB9CE26 /* traced_buffer_list.h */; }; - 87C918BF310FDF42DF8855C427EDD5E8 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88789BDF03D8B76766903F5EAF954B41 /* grpc_service.upbdefs.h */; }; - 87CA5A65708E4E76A05393CE0B3AADC7 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FCC5C35602871EFD79A54111BB2C756E /* cookie.upb.h */; }; - 87D09F021413DE7A8A85914328EAB35D /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9FFE7D102D24362D1C68CC364EF739 /* trace.h */; }; - 87D191EE05DE81AE7868A56EB1418828 /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 32164C5AFEF2A2C273B83CE0C5258484 /* inflate.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87DB1E7F4B7216846C0A272826C9F8AB /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 2396142431D680935936F6A3D40E2498 /* tagged_ptr.h */; }; - 87DE33BF81BF5F33E43E78314CAD201B /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 35AD86F4109ECC5F1E5081BFEC51409F /* extension.h */; }; - 87EB19ED9DC3D1C519A50539065C71BE /* fastmath.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1B0032C3FA623F5847F4392D6E616260 /* fastmath.h */; }; - 87EF92D0AFE4095F31E59EF12A86112A /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0ED24819D3FB222CF74E0E36CA78DB30 /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87F8C426A8BC1B9119C28A718CEAC5B4 /* GDTCOREvent+GDTMetricsSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 019017D2D08ADEB3E38BA15C3D651A30 /* GDTCOREvent+GDTMetricsSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FD32EEAA4F7AF6B75EBCCAEFE8F761 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9964AAA6CEC1E206C42DEB1A451A72C6 /* ratelimit_strategy.upb.h */; }; - 8800F4CE70A744882802665A223007F8 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0AE2B3B268D379DA5B4901FFDFECFF98 /* router.upb.h */; }; - 88013034082851F233F52C27BAC41202 /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEA228F4110DD21C04E562F66E3D6A9 /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8801B39FE0AC3E6DEC5272E530E28332 /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3028B86698D2E73380CF642C444F68D5 /* client_side_weighted_round_robin.upb.h */; }; - 88090A11D6C849F581085ED1E0836CA1 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 35F717D02A2AC49B312AC948E773DC4A /* sensitive.upb_minitable.h */; }; - 880F46D1C7F28491AA32FBC1ABA303C6 /* LLCycleScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 868D49731EBDC54B4B9CDE79B090C675 /* LLCycleScrollView-dummy.m */; }; - 881277268A6E67CDA622389DED75772F /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2AF5E4C96BDE980500043DBC965029 /* hpack_parser_table.h */; }; - 881E4E76041DE8F09027FCFBD2E632FC /* native_windows_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = C1915F6A68C01E325ED7B52368994D1E /* native_windows_dns_resolver.h */; }; - 8827000B4BF7814842C29219132C8903 /* atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = F9581832439F67F58CF3A34E91B9D05B /* atomic.h */; }; - 8837E554F3A734F1172BD05C2C8F9F22 /* internal.h in Copy crypto/fipsmodule/modes Private Headers */ = {isa = PBXBuildFile; fileRef = 1ED71A0C3595E6ACC8811991BA00F1D2 /* internal.h */; }; - 8843761FB4DC3FFF52ACD69BDAC7910D /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = B0108297D325CA8348D69D878DCF02EB /* stats_data.h */; }; - 8847D547A43B97FBCBFA2DF6D429F60E /* str_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 176B0012C0D28E080F3723E6076702F5 /* str_table.h */; }; - 88482540DAA3FEB5D6CA7E8E650C6846 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E81B55416E18B6BAFA901708B3F6E1 /* GTMSessionFetcherLogging.m */; }; - 8849ACB6556E3534A346C32FA11A516B /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D6A34CD13FC3C3E265C0BBF9EA901EA /* insecure_security_connector.h */; }; - 884BF5C65AD969E19D7A9AFB96ADC1D9 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = F395321142D6CDA9A611386F56D4A221 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8855FBC5ADDB2D2266F9AE1FB0A6EBD4 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 31AD04EB140A67DF02B22AFA4848538C /* alts_security_connector.h */; }; - 885E49567166EBD82B74F08E1338E4CB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 237D543D700C734F4B71B28BD2F757B0 /* PrivacyInfo.xcprivacy */; }; - 886BDFB808CC57CB71E09223D907A44F /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8CC9BA18BB542AEF33EAEE7DC98712 /* event_service_config.upbdefs.h */; }; - 886C159A9802D2449CC3A8BE0CB9E4C2 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88475B30E3A1182BC3FC1EC476EA050A /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 88712912CA49F0C3773AC514626A7E47 /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 88C8F2A8BA9F8AB35C24657A73B2C89E /* subchannel_stream_client.h */; }; - 88715D836AAD215EF9780CB2DF5259DA /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67502D055648B87D6FDAE48DF59B6626 /* quic_config.upb.h */; }; - 8879F15F31CE4B6050CF80B8D64504EF /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AC40C6760E8D5B065F91BF7EEA6F3C7 /* FBLPromiseError.m */; }; - 888FE92912F2930E5B33BF4D1AA4B11E /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E2BCFC74A7CEFADC76FD7EE93A455C9 /* socket_windows.h */; }; - 88A194BFCFFB8BE7B50F16E649C03E70 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = BB05A19C27DBDE7AEEE978BF39437BFB /* xds_api.h */; }; - 88A2B8B07C58D23AC7DF9FD1F3759B8A /* altscontext.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 909E71C61BE354A4CE370A8D41D47C85 /* altscontext.upb_minitable.h */; }; - 88A7FBC26E9E01E48B71854C6F85993D /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A6F1AC05068C1227393DAB9D214FFD7 /* orca.upb_minitable.h */; }; - 88ABAA75AB16332BDF7F6FD8FB97E7A8 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = FFB1E9BCEBADE2C8288A6F26C80C91E1 /* types.h */; }; - 88BB92A97F449B7C3EEC6F325BE7F430 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C6866434CB12F8825030054F80D6C7D8 /* config_dump_shared.upb.h */; }; - 88C59D28788D33FB72E0E11816B63DF9 /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4A3FBE868A3EBD85CCCA83D9F7E7EA /* salted_seed_seq.h */; }; - 88C8BDA855ECD4FA8AF041D8FE9600FD /* service_config_call_data.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB6F14CE9DF7B51111A2E82040C151F /* service_config_call_data.h */; }; - 88EC506FBD17EC585857AE0D0DA78C1E /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 9896E0A6899B178D38E0E7CE0420434E /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88F1A80B0F8602C8317D3B9DC4A4E0A5 /* ares_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 916613FAE2DFFF02AA7947B4D283C63E /* ares_resolver.h */; }; - 88FAC0FFFC32F9776C64A9908AD55109 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0306FAA8F05CCCFC3303BB9A6F9EAC00 /* transport_security_common.upb.h */; }; - 88FBC9ECA3B1A56A04EE066791C91DFA /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C7AC786FF69F22FC18B201B0FE4B89 /* cookie.upbdefs.h */; }; - 89061B8976DB6BD9193B8C4F4D724CD6 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = CE888E08D78E2A995383AF8DC196A8CB /* GDTCOREvent.m */; }; - 8917D1E0FCEDC93FF57879201E0BF796 /* GDTCORLogSourceMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AEED232055B677FEB9E77B53E62E7D /* GDTCORLogSourceMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8919C4B8A5A75D350F376066E566E5CD /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B22B7DF0D5AF1D416FA7A9FC727B55B /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 893E4F268A03F90AE2A29A43F94EC4E6 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = C4DA08743B49E4190F1B319B59C7EA31 /* oauth2_credentials.h */; }; - 8943B917305CAF9F6FD7DD1F9C772B9F /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6FB86724F1CA0BE30F68FDF289F975B1 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8951A2C3EE699199D7515ED90811701A /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19116B1329713AFED9FE456BB1EE7678 /* rbac_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8962E67BCFBC0CDCD149B2E1A1D096BF /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F0B52F2D4AE37E5BF3C8C7AA45C037 /* collection_entry.upb.h */; }; - 896D739CE63FE96DBF2E888420C5DCA3 /* status_payload_printer.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = A3FCD33DDBF6723E1652951CF44CC1E4 /* status_payload_printer.h */; }; - 8970F60853F333CC0CC61B021764ACA9 /* extensible.h in Headers */ = {isa = PBXBuildFile; fileRef = F472A181F3989A15823A7AC50F209647 /* extensible.h */; }; - 89786B1A3F6A8C075E4DE7A5C9151598 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21A295181F786E99B850D5B7D0913ACC /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8978F26CDB8422E0EE7A56C9F9EADA0B /* atoi.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = F352E68ABEA37482D8839ACC09115A35 /* atoi.h */; }; - 897EA35FB8B39BCCA9D4EB818B92CE1C /* grpc_polled_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED2ACB72812D2F7EA26E66C4D15DFAC /* grpc_polled_fd_posix.h */; }; - 89831AD5D19A653C1FF702AC9FF0392A /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CAD4B815321D1D6E7F123D31BEDB31 /* path.upbdefs.h */; }; - 8987EBB6198711FA162A742FAADBF35A /* spx.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B9913FAC52B2B88456FE46D043E83AB /* spx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 898C412FDDBEE61120455980BE0C7AB8 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = B0D2C5C0C00806766B0991291F67CF1F /* iam_credentials.h */; }; - 898F2C936FC485324C7FFC8270B92E31 /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 389E05CEEC4EDFF85E37B4F77A8AE452 /* FIRAuthCredential.m */; }; - 89985C1C455CF9C1808B43AB1FBEE0C7 /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A31CE8E77FF2AC5B51F8EE72B1932F /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899EAF096481D98460F3A4AEDCB7E64D /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 0FC6F9D9D23B71934FA25CE865E0B398 /* ssl_session_cache.h */; }; - 89A100D5A1E76ED48DC4C0D2D777987B /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 253BAFBE1F4E02AC866FF34802C20DA5 /* listener.upb_minitable.h */; }; - 89A675CA8B28C80C242C762B1F741258 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB8E9489AB4CAC23FCC5179F97020B5 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89A988B844B94E7CEFDEADB3072F5302 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C0A88A540EEB59E912076519F5DEE7A /* stateful_session.upb_minitable.h */; }; - 89AC1FCAF0EC478FA350FC4E650A0B8B /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5EF29A1362F97EF59D667FCF33030B /* work_serializer.h */; }; - 89AE4D1AEEB515ED5F3586B9B15AD1C3 /* gzguts.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = CD19B6939F55477063E47E7EBA003CD0 /* gzguts.h */; }; - 89B9D5460DC66F2F903CB8DF98FAE40C /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3932A5149BEFA38DFC3080E856357D62 /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89BD17E07F592F62A089912DC6775613 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE16CBD44669EEA7207DC9293A0DBC5 /* cord_internal.h */; }; - 89CA1E9FB12D194C6B5FE23D3A049B71 /* crash.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDA45F0F1BDD15712167BA2F66FF05F8 /* crash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89D9742818B71F5648D5B7841CB25D64 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 204A5B18A09FF3F1CFCECBD61653A8D9 /* cfstream_endpoint.h */; }; - 89DF2D9C5EFB02A72EC0CE2138B77F35 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FEDB9C39EEC8333E7EF0A4746E923 /* SVProgressHUD.m */; }; - 89E43DAEBEB251D78A7A531E0B85B893 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = F2E016B11F0B041E81596B7AFACF5402 /* insecure_security_connector.h */; }; - 89E7ABD03E3DC3A1FC341497A5F87891 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7DEF977F835CBBC6EC9B6955E3F98935 /* cert.upb.h */; }; - 89EAC1EC3CB4070B89BD2282ABBAA624 /* collection_entry.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DF6B2C84FD61DF47D14510E7307107D /* collection_entry.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89EB54982E5815A250F3997A4AFBE807 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 778403589630D1CA5272D39F429BFDCC /* secure_endpoint.h */; }; - 89EDD87EF1957F3F890F61DF5DDE31D8 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 44BDD25932F1FB318A5891275D79DA21 /* client_channel_filter.h */; }; - 89EE49D03FF663D289DEF6ABF3EC9399 /* tcp_socket_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF22FD566AA712840C3FD315DA2CCE4E /* tcp_socket_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89FDE8AFF0C7472C0B362668A9E85436 /* trace.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B8AA10F1EC870CD6DD24CD291DD7E796 /* trace.h */; }; - 8A0276FBDDECCAE2B354BFB170B894C9 /* windows_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B79C59D1CEC53ACB9B3E5ABD119423 /* windows_endpoint.h */; }; - 8A05C86D834E67994EEC3F28952257C6 /* retry_throttle.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B48463E1C4B4A665F9BA36BDD1C76F03 /* retry_throttle.h */; }; - 8A0CF1DAA9E1690F25B29A9F5E782E9E /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 0326A1D3B2F48B97C7D37A4E06E2E1C8 /* alts_grpc_record_protocol_common.h */; }; - 8A0F6A26D4CBF89EDB50FCA62068CE55 /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6F1BBFB7546E0E5FCCF7F9C6BB00B1 /* bad_optional_access.h */; }; - 8A1F86297D0417AEBE5D396DE90998A7 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = EB83F63C0E51F6B9C6965870CC0DB473 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8A2F40EDB4C6C52E01064919B0ED444B /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF49F3ACA73B4389A51A46159D9B4F5F /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8A3645A90E51B485BE4A5CE7274D5169 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 5969A657C0C6A2740BEA36FC1FD5EDB0 /* slice.h */; }; - 8A3A6C9763C35405BFA17829D9AB5076 /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CA551AEF37B223791AAF40042F79F3 /* inlined_vector.h */; }; - 8A3FE2B1E7505C656491CCAB3484DEB3 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A08591EA957D2B6797343348568C484D /* regex.upb.h */; }; - 8A468E055EEACC924768B2318898C9F1 /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 747CCC7DCD4C7058615E6F4BC3A20CA9 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8A4B14C39EB865C596891BEC143784D1 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 883C3415B6B5F1412E57E70BC4CA983A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5001568757C6F827437B93A4DF00E0 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B001E53E4565B9763550A130311C6FE /* regex.upbdefs.h */; }; - 8A6308279900AFD611614E29ECE50AEE /* builtin_curves.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E82EEE9943E67E99F4FA87863B2C45 /* builtin_curves.h */; }; - 8A7052F54E275713F605A33AB43A9EF6 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 62709978DD2380AD6E7F3D77F46ED584 /* basic_seq.h */; }; - 8A7282EF4F912006155EA25A21C1ECBB /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECEA1AF4F57EB0FB4DB9F8F79B20F8DA /* server_info.upb.h */; }; - 8A775F9512F3A8818BF5DBCC13F45CF5 /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C73D4EB83AA820E77D60039B96FAB13 /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A875A239CFC19810DF689420AA968D6 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B1FD2B477F2428D3CB77FA09DC50ACE /* pollset.h */; }; - 8A8C0020A66F27F06086767AD8B8A341 /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 67D23D1D7929FDBC289138987E008EAF /* http_proxy_mapper.h */; }; - 8A8EBE6FAFC61428AC04290D410C550F /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = B20C2DD31BCCAC02D21F2C4B63E6DA9F /* memory_quota.h */; }; - 8A91E2F8FA229C7C13D8D9EDBE1EC083 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A9F683FC35742446779589F0EF05F3BA /* PrivacyInfo.xcprivacy */; }; - 8A924D0AC81415E80D7C187E59A09F31 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DF47AF8B72DDC76FBC9F1C4E02983951 /* compression_internal.h */; }; - 8AA9EF4F9DDF48DC2D83531A4FE14FC4 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90C8B7314F8B77EEB604C31EC5F3E082 /* config_source.upb_minitable.h */; }; - 8AAAC1267B0A3D49F2B04E73F2402546 /* supports_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = 995F507F4449A70D11B99C134B0E4345 /* supports_fd.h */; }; - 8AAFD04A207C06E65FC3F1274EEB68C3 /* Installations+InstallationsProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2A2E3360FF1BA7E16E385F93D9A9329 /* Installations+InstallationsProtocol.swift */; }; - 8AB19307D12CF183E6BBBDB0A45979B5 /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 797DA0435E5673ED9C6A868664FA4D56 /* arena_promise.h */; }; - 8AB4A98DFB326F19684B83707780B34B /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = D505917CFD2AEA37A0886AF0AB8221EE /* channel_creds_registry.h */; }; - 8AC2BFD244FCD0ED5BE528AA1595A3AA /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F6C6F99480960F98A79420D93E305A /* string.upb_minitable.h */; }; - 8AD02C3EE88A7779125BE036BEF476C3 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 099131BD6205EAB615A7671BE69045B9 /* api_listener.upb.h */; }; - 8AD573064CA80F21F51AE52A4DC3FDB8 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7070E2C9FDBB1E8BFE04AA62A7DCCC /* resolver.upbdefs.h */; }; - 8ADC7745B176DC572DABF3502129AED5 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 28571AA2AA642796D6FC33142DFF24AF /* substitution_format_string.upbdefs.h */; }; - 8AE48A7C749A1F07FCA717E451074188 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 750DEB6DCEA34BEB46ABB06B26C08594 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; - 8AF1A6D86C87390C202A4DF637B98FCB /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D614D0800ECCBE32CAE34C0DBB1237 /* error.h */; }; - 8B0116F84D8243CAA2C707BA99989F58 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 293A9C684DB4416A7B66B15A7D848572 /* config_source.upb_minitable.h */; }; - 8B06CAAB4C8190B6A5F0325E57235267 /* per_cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = B80166F7597F6B4AD42FD62DA0E5E96B /* per_cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B106F67C8C7D9E862852180F9212B57 /* wire_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = E38886A31898A9F91138DA5805CB96D9 /* wire_constants.h */; }; - 8B1C7FEDE0B1E7A6BD82E9F5C6A82DED /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = CF7986B36BEC04E26D990D9B5588B3D1 /* grpc_ares_ev_driver.h */; }; - 8B2548586D3BD44CB5A587A6A7FDF03B /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = E41DA07E35B2EA032CA8AF3B5647FA7E /* thread_pool.h */; }; - 8B2CEDE99D1E7F3A3E97E8D93702F4F0 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFC12448776047F1419B137DF2AC10E /* json_args.h */; }; - 8B2FC0E26C98EA33B8207CE718A1F4EB /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 593DCFCD42CCD39D230AB33B63B17DFD /* FIRCLSNetworkOperation.m */; }; - 8B37302DAF703F2F41DA10E4C1927943 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B284799AF25F8EFAFE22F828B2A7C919 /* timer_manager.h */; }; - 8B446A5C3F8E4F838951D7F6727BAE30 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABF602B2A68B996C51A4697A74D1400 /* ev_poll_posix.h */; }; - 8B4D9FE422BFC1E8E50CDD71E16030F2 /* desc_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 860D7A21C9175EA91FB03E1747B093D3 /* desc_state.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B5296A77743697EFB868CC44071E1F2 /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D659C3CA28F35BA64B8A73A0F4174DC6 /* lightstep.upbdefs.h */; }; - 8B52A781EDDEA060434EBE4105772FA1 /* Timestamp+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 271AE5000ED7591DDAD46E197FE4C244 /* Timestamp+Codable.swift */; }; - 8B575618C599F909A3A70147B295B2DA /* str_split.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 92604036CF303CEBA4FAD318F6E0DD82 /* str_split.h */; }; - 8B58B6BABCBB345CA191A1FD74BC09EC /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4998E9C6B005849519D17619CF5DA05E /* matcher.upbdefs.h */; }; - 8B5B303B2077D5526480162345E05623 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C25B51A0C4B53577BDC21E2AD8D56E51 /* internal_errqueue.h */; }; - 8B61B2A3D0702C887FCFDCEE899EF97E /* http_status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A051E430E605EBF8184F740974499337 /* http_status.upb_minitable.h */; }; - 8B6832ED7D9D4BEEDA08F566B16F37D3 /* log_uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = F733A4F23582D63CA92CE1B68C7DD2DF /* log_uniform_int_distribution.h */; }; - 8B75BE7B55C80792C0BE54279CC6C1F9 /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC9C5444A5F35869757075780EF3AA64 /* parse_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B84B4D3028472FD94511BF582BE6D0E /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = CDD2254CC7DAFB4275B532574D0550EB /* cct.nanopb.c */; }; - 8B856975CB88EF995330295FECB18DA3 /* SettingsProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7094565A6DDBEE4761F50426F9DAD47 /* SettingsProtocol.swift */; }; - 8B8B06341C1708087B903B22197BFCA0 /* x509v3_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2FADB208437E1336125EF17A26FE37CC /* x509v3_errors.h */; }; - 8B981B0E4E81163C421569ECF3B284F4 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = F2D0FCDD46A69F23644603D55B2D7545 /* alloc.h */; }; - 8B9D8929D0C163A0B4C010676B7F2F28 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 346FD7B455ADD25A4567DF91C5082011 /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8BAB4D9C3AD7074DA6513CCCB3CFE4FC /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4600163DBD97382A659745D8AD32196D /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8BADFAA97AF835FDEFABC5659634E724 /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FBE6972E899C539F43CA1D14D22AAFC /* xds_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8BAF2C50159C663DD08CFB1210397AAF /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2C4DFC73D50AF20C975AE0D0A449BC /* endpoint_pair.h */; }; - 8BAFDC7953E057C482DD21EE8EFF636A /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 673AB6A65EE5022F38625F73E938D499 /* backoff.h */; }; - 8BB15DC41BA8AFD3D6E555B799CE6C03 /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5DA2BF4CD439B73B7B82CD6B4D6D37 /* des.h */; }; - 8BC92C22CC1BBBBCD45D6AE3FF87A500 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85863E9063D5A2ED9935B938EEBE1298 /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8BD64081A37260CBBF5490E19143999B /* fault.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 190594A46C85E888181C800D9908D295 /* fault.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8BDCBDDBA672EF307AAF26EA48B60C2B /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 19385E4216E0C9F1961295E3CE55E56A /* loop.h */; }; - 8BDE659A31F3D04C48C639502D284269 /* ref_counted_dns_resolver_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = B3BEAB3D4F986193F588A0770B05D9A2 /* ref_counted_dns_resolver_interface.h */; }; - 8BDF2EA4F4B60A7F7FC68969577879D3 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 9011234425A9297A0FEA0D27792EC7F3 /* resource_quota.h */; }; - 8C0E8C7BB6376ADFD68161C4C54C9E0C /* crc_cord_state.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0465D1FE918E89C7FCCC85087D9C16A0 /* crc_cord_state.h */; }; - 8C0FB06A248252CD0821799D272BC18D /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F3FE100D39B8E2A9688CD3F41B5B751F /* handshaker.upb.h */; }; - 8C10B9DE4E6ABE8D27A6AA538DE74F00 /* sockaddr_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8C4C82D9284A6CD4CB1E7049FC972E2 /* sockaddr_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C127E60DF7986D2002A95A0B0829758 /* domain.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A16575B7C8865A44480E12AFFED6A0C6 /* domain.upb_minitable.h */; }; - 8C18D90D5B7FE0A12634EA5A1803B890 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5C36D43A500CB446DE719933532AF0E /* iomgr_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C1C03059FA7B4ABCC08D695085E539D /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D242618042926254ED4F8793D238B7 /* ssl_session_cache.h */; }; - 8C1C4DD0881F46C00F26762ADC4689F6 /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BD34B8DC4ADE83CDEB44CFBA4850AD6F /* sync.h */; }; - 8C1C74BBD42BF900D6EE7501D5F970CD /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50B7F551549B2AEF68F94901ED208ED3 /* cel.upb_minitable.h */; }; - 8C29A6A3ED57110F55DF2892B6B7FC0D /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B4FEAEDDA2619958DDA461465DC1B5E /* stats.upb.h */; }; - 8C2C7EB1C75AA7669948BCCBE330457A /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AD807151E44B72B3E51D456197AB0FF1 /* lightstep.upb.h */; }; - 8C352341BA83F0224FC4FD80A9635897 /* seed_material.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 11C165064FE5BCF50FB33BE7A9AD15CE /* seed_material.h */; }; - 8C358EA52FE7F441EB5FEC26D269A5EE /* utf.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = FE0070744901C1A1F58276448BDEDDBE /* utf.h */; }; - 8C474224D42DF7D59722CEE06E6451AC /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 0AEA2570C6BC58EE3356FF9BF456CCD3 /* tcp_client.h */; }; - 8C4A8A07AC57AB09AA112390A517FB4F /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F27A61CB671B5B3F2CBD8A92E843AA4 /* hpack_parser_table.h */; }; - 8C4A9117CF43D3D095B0C8E0D2D02EDD /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 76EE5FD8B2C754ECFB7DA58F6C93E3AF /* parser.h */; }; - 8C4AE8AABB862F7FCDF6575391D405AE /* range2-neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AF919A82997DF797FACF68705F575BD /* range2-neon.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C4FCAFA9FDC86DF43AD3E277550E80B /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6701255A45809DBF8E82CE47CA4556 /* decode.h */; }; - 8C5028668CD73E04AF85FB516CF6EAC8 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E32CE2E46FAFF3CC2C0FCE8C76F9E0 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 8C5A549C04A4DA4886BC9000B9171A3F /* descriptor_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F80AD5385F3B91700ACE5F70886148 /* descriptor_constants.h */; }; - 8C6360F1F3EB1ED24856FD5A95B2C751 /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECA2159DB1E67F1D99A25A3851E37D2B /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C666847AA6246DF8A99A26DCA65F839 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 340C6C5BDCAABCC2624F2BB93AE5DB50 /* cpu.h */; }; - 8C6FF0178C51F1E3D841E4B0E55C8AB1 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77C9D068A085A36294F93F8B08A83394 /* time_precise.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C7051D72FE1101085F06B9C6D97F37F /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9D43BD3E658FC54A946BD1B0CA51506E /* stats.upb_minitable.h */; }; - 8C90FEB85B7D7CA379520D2C5FC6145B /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = C797A36D7686B718F26130C0A2584668 /* chunked_vector.h */; }; - 8C96BB556F90F7A24F775C331A0B487E /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F031CECD54AC047516269FC96B4F088 /* FIRDeleteAccountResponse.m */; }; - 8C9C01FB8851AAF8B2E265F3BA85A504 /* spinlock_akaros.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6AA5A505CA25303C185500F18742485F /* spinlock_akaros.inc */; }; - 8CA2E10D807F7E528C1B93D7C5EA54F4 /* static_stride_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = C4592A13AF3ACE60F08D9B79788442AE /* static_stride_scheduler.h */; }; - 8CA87A9242F36E0EAEB31605233D681A /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA06F8A3FD7D84E0072502B013B5BC4 /* health.upb.h */; }; - 8CB3E172CD4F9247E120D7A25D4AC6BA /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE6F8C90DC2A1875ED907B6A70BDC71F /* timer_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8CCB7A71917952276CCCA054FCE5ECF4 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 192FCDF2D7B68DEF8526DBACF7EE11E4 /* time_util.h */; }; - 8CD51434B3E5C4D5F43F308575A8D775 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 25DE4717CD896D11903E71B9340DD714 /* matchers.h */; }; - 8CD75B6EE1BDB0AD479C85CD84BA0FEF /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B398161B737D2EE235E1306E858A3B1 /* FIRComponentType.m */; }; - 8CD7D0072B822ED5FFB356E0596391D1 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 065E113B01BDD5D963E7CB9CF1C72C7E /* frame_ping.h */; }; - 8CE59881A834C6FFE0459D2618400E3E /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = D21B25EC26AB97D7B7BFBC48F5C76F6C /* get_current_time_chrono.inc */; }; - 8CEC81E822D1F31FB8168DA82960E275 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = F4A13DC8113CD0649CE777D83E912AD0 /* call_creds_util.h */; }; - 8CF403C6CE5A5169E7AD0AF2A9C3FD92 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 722EB1158BF0A16988B08F3CF6FEF649 /* call.h */; }; - 8CFFFC68FA9BD4F9E0EF5EFBB9C27548 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6D1B6D0C1E1A22D4FB5CF4A13493394 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8D09551CB35CC8CB8804446302B93618 /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9BB1FF8B9A34F5B5A8D2F60C0CD9624 /* dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D0C5C5BBE1128C1B11A300BF7BB8938 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC3FB663079EBD822BB191E81396496 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D0C80DB4635AFFE3C29BE7C367A818D /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BE8E737CFB4101CFEA57DD622DFECDA /* cookie.upb.h */; }; - 8D0DC3E2E78FE99EB31A7235ADEA7F2E /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = 2402BB02DA98386C3D9824022509CA70 /* stringpiece.h */; }; - 8D1474A572D94D0608B37A4B30400570 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98AF77AA9F909A48008068327B3B6AC3 /* aws_request_signer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D15F4132AAD899D6799DEA584610E70 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3CDB91F03FB87B2C8199310168F77C /* cordz_info.h */; }; - 8D23811EA739A9AF7D84D6423F3E2E36 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FE1724D7C7C160F2819A6A7A2341574 /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D32212EB52E2BF2F0C34072B6FFEF80 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BBBCDDB9393F9A5A5A3D189CEADC6C /* FIRCLSMachOSlice.m */; }; - 8D426EFBD3E73E0F2647D1294FEC41B8 /* cord_buffer.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 61527BDE29FF74826AC19B82E2C8CD57 /* cord_buffer.h */; }; - 8D43AAC8934245D85AD9E365DDA8E380 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FDACF0023C9EF6DFD958F982B224E45 /* stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D4AA5FB4EEEBB86D62A53150DDB1FD7 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFA03F02AB27507DBFC5017477FD8C0 /* endpoint_binder_pool.h */; }; - 8D4CF64488D2DC0ED9680D2C20BDC6D1 /* polling_resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = B93F9F1ABAF25D907F2F784D94263067 /* polling_resolver.h */; }; - 8D706ED5A6A1B56C951D228BB340D479 /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = FF090CAEFB6D3BE5D29C9996532E89F7 /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8D7D9607C407F1BF02B3C92F14C68FF6 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92A537D4AC3D57E5B94F256658DA8850 /* resource_locator.upb_minitable.h */; }; - 8D7DE3A11F47646948ABB93EC3AE7212 /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6897456D46E723A31B7DF44C4D84A63A /* FIRStartMFASignInRequest.m */; }; - 8D843E162D265FF50390EF76F1AF406D /* trace_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B64D6CCF053B26FC0F13B47C3D90D6E /* trace_config.upb_minitable.h */; }; - 8D92DBAD0AE25BB4EF62A5A246745D05 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 816D0E76672D39B73BA683528F5C6573 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8D95598DC12BFBCF4F07D9D46248A9D6 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D094A9575BDCE3EA33C90074F8253A /* ssl_session.h */; }; - 8D9F47ABAC44D145A6956529AB44BD4A /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 729297571762C5DDDBBC99D175629301 /* frame_ping.h */; }; - 8DA306B8A2C457C4363871A81C2D4904 /* skywalking.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C95A2DDB39D010A65B8C19BC910BC74C /* skywalking.upb_minitable.h */; }; - 8DA8FFCB1083B89B8F3827A5AE2979F9 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A28CB94C97989FDF3BA0C40138DF2E0 /* evp.h */; }; - 8DB506418E626354248128589EDD15C4 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 27AB040E47F1BDD7128345EF020BA2F3 /* trace.upb_minitable.h */; }; - 8DB7EA68E35C0C8C54EC0C72E8D1C305 /* status_flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BF5288BC2283BF5920988A13A1C16A /* status_flag.h */; }; - 8DBDC44EBD6023091A8186A43B914823 /* collection_entry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F596706F8A11E4C268F73EB5B1E2BE /* collection_entry.upb_minitable.h */; }; - 8DD5BD8E08600B6BBEC787D57AFEC7FA /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DE4717CD896D11903E71B9340DD714 /* matchers.h */; }; - 8DD9E2AF1FA04B4B9F52D0B4C97593A6 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CB271E0FC5F5B8F86534B7BB27969AC8 /* endpoint.upbdefs.h */; }; - 8DDA4E634ECD30D6AB97FAEA7BC6F253 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B8056AC953FEA527BF1D993A6598A6B5 /* wrr_locality.upb_minitable.h */; }; - 8DE05331EA340F620914B768B50E20AC /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = C51027A952F55B245D7983C522D85A2A /* channel_create_impl.h */; }; - 8DE95E2EA99759BF92E8770A0CD45FCA /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 83B857123CE3551ABE40FC141E8FBB8F /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8E03BC624D8B79BC958997A3C6B84E5D /* histogram_view.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = B9664509B3217AE336D905DFE8B6EA7B /* histogram_view.h */; }; - 8E0A1176ACD1D95A7FEEB9CC66A2E1E7 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = E826FA0DCB9AA6E7829C68391B323B78 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */; }; - 8E0C55C40E65C47948FFC1355590239B /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 64ACB3B293C309E6791CF2E33B382D7D /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8E0D7ACA959C65E48422C78CF96BFC91 /* filter_state.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF9BCC559813987D6FFC288FBFE6918 /* filter_state.upb.h */; }; - 8E227B48583518355D0F558A2B799817 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 42AB9916BD6536B23EACA9E4939AF1E1 /* message.h */; }; - 8E2574535C48700300A55F13C89596D1 /* regex.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AB248305748EEBF373C5D06D3821B607 /* regex.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8E2F2EF0B4A192AA07DE8BE5E8450BF0 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C594EB03B8FBDB303CCF2FEF28C6B5 /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8E3165ACD0FE5DB2E27BEE64975331F8 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E460238BA3814C7507614732FF5323C /* message.h */; }; - 8E31DBA84CE736D026464A966BD15503 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */ = {isa = PBXBuildFile; fileRef = 05CE6B2C57F4449471263737EEA57FF5 /* default_health_check_service.h */; }; - 8E3B1956C50F12F71BDE727A035AE167 /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D6AE22C112F54943D06BB604076B7EA5 /* metrics_service.upb.h */; }; - 8E4F94A6806D8F7F0B6C1FB3D74E8A79 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B4AAB28F2DCEC55FAFED1B4A00631FD4 /* custom_metadata.h */; }; - 8E5C6AC9710CDA83497B2CF2B037DF92 /* nameser.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 17903AD2FF7E068B69BF743878CFA717 /* nameser.h */; }; - 8E5E60416A0FFCD5164E64365659E6C7 /* interceptor_common.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 8D865F5AED97237E29494FC5DC655886 /* interceptor_common.h */; }; - 8E698F134A953250D5834C8B83CDAD34 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BFFC7D2593F24D8C3A6F923B8CFBCE /* DispatchQueue+Alamofire.swift */; }; - 8E6D30E090167F8A943762735492A31A /* dns_resolver_ares.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3AEC157989C69FBABD74A301A1086D /* dns_resolver_ares.h */; }; - 8E778C0090C85DDB5290B07143FFD917 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A916756E33981CE27654E0FB72FE1D9D /* Filter.swift */; }; - 8E7A529240D62649215437D3344F6E9D /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0405CD6678F3BC476190E869950DE2 /* httpcli_ssl_credentials.h */; }; + 7C10BC1D15CE50170469994C0EB0FD64 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = D98F63EBFA68EC9E6D365300A973C025 /* iomgr_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7C15647B0201104C7D434D8F4A11596F /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB79697E5B67A2916F313E89F8189EB /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C16823539E190C30C3E9403665EE8D1 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B55C369C7709CC1F831C89FFEFF05EE /* scheduling_mode.h */; }; + 7C25626895A6071EF76E07E6B2F0C99F /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F024CA7C06E17AC0ACFA74FA903B6F /* datadog.upbdefs.h */; }; + 7C2B4D160DB49686CF2B219B10D714A7 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5431B1053B69CCAA746A445CC077F85 /* route_components.upbdefs.h */; }; + 7C2F27F33358F233A39148E0BF4484A4 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EFC6210328D0AECA05555807D405DF3 /* socket_factory_posix.h */; }; + 7C30EC44B2412A6D2C13EC9937BCF0EE /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA6F82414A66921AE3EECE4A25C8A38 /* wrappers.upbdefs.h */; }; + 7C39C89BCF278AE3134462C598547086 /* internal.h in Copy crypto/poly1305 Private Headers */ = {isa = PBXBuildFile; fileRef = F4983583D0DA2812B46EFE403AB15C76 /* internal.h */; }; + 7C492E6659F2532C34D6450D7BFE9399 /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A4E4C69B2E53B447AD72CB49C4D400 /* ratelimit_strategy.upbdefs.h */; }; + 7C4DF7C3755686AB26F9437548CF54C4 /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE50EB2DBDC78C0C7AD6E0F2423BAA0E /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7C5DA54ED64B2498B634EBCAED80B813 /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D39BBA998417A5A39BB7006E95E7AD /* FIRGetAccountInfoResponse.m */; }; + 7C7017612A730849952011FA85C2E3F3 /* p256-nistz.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = B54FA0B93F62A33C8F2B29F0850CCB2D /* p256-nistz.h */; }; + 7C7271A3D59A343AC1C0E8134AA5FC4B /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBD3545C480DF1A6020297FC8C70C0A /* b64.h */; }; + 7C76AE87E4B134094EC0305AC1D69EED /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 585241FE4AD5B773407AA98D69CB7E22 /* frame_data.h */; }; + 7C77B6D5D2035B614769DAC034A62E95 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5D426E5D07445B2A1372356A755A73 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C8B75CA5159237E8A783770653F00DD /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C64433550B0A02A048DB7EDE5E949DD4 /* empty.upb_minitable.h */; }; + 7C8FA8D0F081BA6AFCA53B9383A32794 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A142890662C0F81E0482E2511050E3AC /* alloc.h */; }; + 7C9299542589676F2BB22FDDD518DAD5 /* exponential_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B1B1E98B089B55439C9784C6B139EB7E /* exponential_distribution.h */; }; + 7C947E267373EECE3A05FB39D2E139FD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = B14E6D31859D5414F45A357823BFCC03 /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 7CAF948E4769CC817DCF700462C12C29 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB9BAD7AF6EED027AD2A61AF467C186 /* backup_poller.h */; }; + 7CB68EEB0004F51BF7F86E55217CE78A /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 433DE30F2B52D4869A9BB7BC82F7F896 /* client_channel_channelz.h */; }; + 7CB7D52F2DC00FBEFC991C3D310C541D /* join_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = E6FD033A8298FCA8B46A6BD91CFFF502 /* join_state.h */; }; + 7CBBCE24927F7300B98DA5C59A9E2589 /* wakeup_fd_eventfd.h in Headers */ = {isa = PBXBuildFile; fileRef = 020517DAB22EEF1D0699B006880D4DE6 /* wakeup_fd_eventfd.h */; }; + 7CBD3530E62787D322D6AF4FC327EAEB /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E847D1CE2342960832C8353CC1BC6A35 /* server_config_selector_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7CBEF52C815883933AE28DF65EE43481 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DFE4ED0F81040108281D5127F4AF90C /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7CC650A9332B6B07268CC7FD9AED42D6 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = A2AE7693BF4296D2B49B90CCB2CAE97B /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7CDBA59E781B42F7809AF6F1D66D3ADD /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = D8CF4B7A5B138751E298D6A3ADD917DD /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CE1265C5CEDD821D6BC95B5B36638EB /* call_final_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B0E02FDA828E28B699C541108F890B /* call_final_info.h */; }; + 7CF49F792F9B269402285939AEB0B6F4 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 447AC4FB70CFDFA0076B806AD6DA6219 /* grpc_tls_certificate_provider.h */; }; + 7CFDFDD0DD77B37652EC8908095D1AB3 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 00895E4BF0E7867ADD396F5259A9F84A /* child_policy_handler.h */; }; + 7D1AC4643CB690F9CEF88A02AE975E6B /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 9201444D240846DEF020B70599BCE6E7 /* backend_metric.h */; }; + 7D1E8ADFDB84C12C925FBB537DA7B0B1 /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 739DF6492F40A5ED04A4F44B9EACC02A /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D2288D0A8729417E4AE0DF792C46B9F /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 77601500B29D81924C77AD2DEF2D63F9 /* poll.h */; }; + 7D24841F6142618903D9FE36A4AC853E /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = D1342F3908357D6B53C451703638E9A5 /* bits.h */; }; + 7D28468AD8A72429CB6CD5D50BDEBD06 /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = 338CBA7027FF9F66F50C6EBF7483AC7F /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7D3482272B791A5DC129D1EBD39B4EBC /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 28EDBEC54F6BB9F122AE4783A16CEC75 /* transport_security_grpc.h */; }; + 7D35FFFBAEC314DF7EB4B308FA7F000D /* span.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5E7E9213F2DC30EF0DE2EB9B35CE8676 /* span.h */; }; + 7D3BB4888AF5A5ADEE6A276F475CA6D4 /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C0B7B90A0F1F18FF3AE85B870AF61E4B /* arena_promise.h */; }; + 7D3FCCB83C723D6FF2D0683299DD3B22 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F932B91029090606D7717E3CF22088 /* jwt_credentials.h */; }; + 7D4959347D60559290C7BB7D71D0B827 /* dynamic_ot.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F836057B7AF4BFD807A780C7A50B4C3 /* dynamic_ot.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7D5649B57603452FE80E7E9B23C53EB9 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 18CDFEB353691C117CDEEC9FB9A9A80A /* security.upb_minitable.h */; }; + 7D58EF5147AEA84A659421C0DF5BC011 /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FC1382E7C1687E007099EA3E2663FE /* conf_def.h */; }; + 7D5A8098AA4659F7FD5BC29CD7502531 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD14A74F0B21942D941ED9284A16562 /* cordz_functions.h */; }; + 7D64BC3E6CAA4AB54EAC0AAADE93F578 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E2A7A2EBEB06AC87C85D76C90C75D9 /* OperationQueue+Alamofire.swift */; }; + 7D64DFEC852033E8F2C518818C451EFA /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D76E075AF9BD67DB4B6755994D278D5D /* PrivacyInfo.xcprivacy */; }; + 7D663A7976B8BB5C42CE1D7967ABABF7 /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 216EA4CCC5458D9AB95EE0447DD1DCA9 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 7D6EB043CB49099F48B1FE680EC7D1FD /* client_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 422007526CC47B38FC560E95FED3D4EA /* client_callback.h */; }; + 7D8003E1E263F2399EA2DE7CDB4D58FE /* atm_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0FC54031493F4049DE6E36710047E4A4 /* atm_windows.h */; }; + 7D86CA91D83EA6948C4BFF342A3EBB66 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD5A39FD7E0E2055338521FE5EB4682 /* http_uri.upbdefs.h */; }; + 7D91DC83BE10388361C60760E90B76F6 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B569BF23ACD1A8B6C517C65E18B591 /* udp_socket_config.upbdefs.h */; }; + 7D9642C7354A175F40155B9163518955 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 29034CAEDF2C2CE919132BD8E5EE10BC /* check_gcp_environment.h */; }; + 7DA1ED44F5023282DD067F3E12AFBFDB /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 26FB4DC14BD60FFF27F46CFA4536DA97 /* slice_refcount.h */; }; + 7DA7B88BA1F17DD20AB9E8CCC735DBF6 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DA371F40F3E59D10F746648D1DEE34 /* string.upbdefs.h */; }; + 7DA8F3DB342A95DEF4646279B638AD4A /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F35FE91DBA2F29FF8E9A9BF11FFC4C /* extension_range.h */; }; + 7DAA5FBF5915715C79B1C29D1D45239D /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 499819590C0ED0C3E4C44C914DE1556A /* xds_transport.h */; }; + 7DAEDAEE857FCAF232945F004C6A2964 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = 48AA1BF41970302A79F0E2AD81F5D195 /* thd.h */; }; + 7DB57F21FF9518EC2A98F76B1C979AE2 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D2137FBF1BE39AC95E3D5028B1856DC /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 7DC61D49F7AF529A98E97230432E42F5 /* FBSDKDeviceButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F76E0A8B2639A387B57E8F165D99D819 /* FBSDKDeviceButton.m */; }; + 7DC65E0D4245D40330D54128924A57C0 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 512D2D6C99942DBC504CD2FA0EB1B3E0 /* FBLPromise+Validate.m */; }; + 7DC670F6AF32AB847E3E654B7D739058 /* FBSDKWebDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2925C6D352AA7956C7A6D72C76810E7E /* FBSDKWebDialogView.m */; }; + 7DDB2ACE7A180BE06BB6EFF8DDE7402C /* FBSDKAppLinkUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A3082970023B67755D1F6335C9F89F6 /* FBSDKAppLinkUtility.m */; }; + 7DDFFC85AFB63B1E2B3A1822796532F0 /* Promise+Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80A3A010BBD22856BAE76F9340985477 /* Promise+Reduce.swift */; }; + 7DE55D4626F57A8267A1287ECA737020 /* mutex.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = D24ACDE667F9748162F7CC76703EE54D /* mutex.h */; }; + 7DE71836151E973EC385BE4C0C89EDE0 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 75F80C543839E853236F3A3531244CE5 /* parse_address.h */; }; + 7DF14B125C9B300F19CF5BF10FBD7EE9 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CFB1FEBA27292328DC7C087D5AEB6C2 /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7DF2FAD9C75B7D7DF4C361CDCAB4AD7C /* ares_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 853E126BD8066D9BEA4849916DF864FE /* ares_resolver.h */; }; + 7DF3B837D490312649EF0AF950ADD94F /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E325163F5134AA7543495793C126B81C /* ssl_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7DF4A77B88EF90D20153DA0560C48EF6 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4A5FA0D5685A4796344FDE88C1612C /* route_components.upbdefs.h */; }; + 7DF4FB490073BC4627809C2DCCA3ED8C /* resource_locator.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B35FE019A1F49449178C14147BB7A398 /* resource_locator.upb_minitable.h */; }; + 7E0870CADEBDEACC58449D403CC8BBEC /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1492C4A8F115A4F91913A29837BFE192 /* lightstep.upbdefs.h */; }; + 7E1C6072CC142ED0C3797586487C445B /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE9AD013A5427DBBE4F942FC7784023D /* domain.upbdefs.h */; }; + 7E1C7E6886C1AC7906A0D065E91AC524 /* experiments.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAFE11D04E17F43978DC9136B77041ED /* experiments.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7E1D7A88DD1ED4C386579ED7432BD337 /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 068B69023234BE327E96B99C3642CC81 /* SettingsProvider.swift */; }; + 7E2140F4FB64B725885998AAF97630C3 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 98389D31D68212AC79598BC07260F4D1 /* resource_quota.h */; }; + 7E3E3A3004E8C6493D28542F89A77425 /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FBF3ADABDBEA7C90217E5FD7AA0274C /* lhash.h */; }; + 7E43BE473ED5CBBD5B760FB513437C53 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 98C64942253B2B85FE1F9950260025CB /* context_list_entry.h */; }; + 7E50B4607BE3754A28D6E025432E7AC6 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C01BF6EAF6F00592CF5A49636B3F3F67 /* node.upb.h */; }; + 7E52D3DD39972951027520E5E64479EE /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 673F66BE163240E0CE8356A42657B3C5 /* common.upb_minitable.h */; }; + 7E59621473197CAF7655E42D86DBBD8F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 12E428052AC3D8C3773B2D305111E446 /* parsed_metadata.h */; }; + 7E5FD64FC4F0735A61DBA40F404D5369 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A50FD2CD9DA54BFB51B4A933BAF1A308 /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E6FA9078B6A735F4EA5C11C3529C136 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 974DE6903E46CE35E63457B26CD2BD99 /* float_conversion.h */; }; + 7E7355BC198AD9EC457709C0A6A74DB2 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1D7EC2838F8A8313816383577B6B47 /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7E797D861424A8D3A58D1FC2A6C5D916 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 10B0F97002999878182339D58EF7A694 /* alts_shared_resource.h */; }; + 7E7A02971AC402483E742AB53940A6DF /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 455BF997F6DF3C264201A04E53593FE6 /* cftype_unique_ref.h */; }; + 7E7BD9729EEE53C6DDFFA03EA5427D90 /* raw_hash_set.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F31F2A4CBD788D78CC3C07763F0D802A /* raw_hash_set.h */; }; + 7E80229BCCD364166A7D66D399C54B5C /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB2A3357405A8167B0FB80BFAF58E249 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 7E904F52A60264F136E5313907E0054A /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD51B813072A3F3A915D07C6D2828CB9 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7E9FF8FB9EA41CCC57DD3BEDB370ECBC /* tls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA2EF898C85A62C612837068F5B2E5C /* tls.upb_minitable.h */; }; + 7EA2E05A5CC31A8CCBDF30615067A73D /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 3B6B5D6445F1519AE04AD6D054FE74F4 /* versioning.upb_minitable.h */; }; + 7EA6AD5CBAEBA736B8BD8A42FB6CF5D1 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C98A9E1ADF94349DA915C6883152200 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7EA840EDE04E8C5710FA60163B5C56EB /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 90119EDB3FC9084862164A974DFA5FD6 /* memory_quota.h */; }; + 7EB45F8BF08A6E4553BD624869C52F83 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BDA200AAE2BC952A447268704E316F79 /* work_serializer.h */; }; + 7EB91206CCC546B27B2E31D1844651C8 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B35E78E07E97DA2BE27A75D1586F40C /* deprecation.upbdefs.h */; }; + 7EBA167973FDF17CB547E1D5658C51F6 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A580098DD72597896AAC610B4F953549 /* http_service.upb.h */; }; + 7EBDC3CDE776DEB127C0170E8E80D005 /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D3EEA73197F5824ADAF02B79E594355 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7EBF607E55C2A0F8EE92596176438841 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 087410A4248949425C73EB52A05B3F99 /* orphanable.h */; }; + 7EC70861335994C7169EE708B2811E74 /* cord_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = B75772990B00CF998ABC2895F6276E83 /* cord_buffer.h */; }; + 7EC8D5FBD2BC777C2BD6AA8F0F260B6A /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CA1A3839C30E03D425E87B9B350AA11 /* tmpfile.h */; }; + 7ECE9A20258A0C1DD894FDE9C241B24C /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = C047D7ECB4062BAB70E3625C4F0C256C /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7ED85402DFACC704FA66ED84876FD6A9 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A7D849431BDCF0B0F6E5B07B7BACF54 /* regex.upb.h */; }; + 7EE2CF02DA9E8A9DBDF1E939FB28205D /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0651C77BA218874C7481F8EBB3F687A9 /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7EE5052926A728C95F99DD403B71EC02 /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DACEB13AF35389BC6CEA06E9FA0E2942 /* percent.upbdefs.h */; }; + 7EE8CFAC8B6B452A496564B870222647 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 1006D76906D7639477E1059E37DD66FA /* internal.h */; }; + 7EED49238DFB6F76A37B32874AF8BA6C /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94FCC256CC20F533797B9B2B100227EE /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7EEF789C41C594233306E4F5A5D85F75 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = D93ACCFD670F354142E069BFDA358ECC /* FIRCLSCrashedMarkerFile.c */; }; + 7EFF0189F9839F189674CAB0404943FA /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B87213D75CFB6AC5F2DA6C8F5566F14 /* socket_utils_posix.h */; }; + 7F061259DBB4600870C9AB273026EA5B /* trace_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21B2DA51F28FFE184F0AC17A6064E2 /* trace_config.upb_minitable.h */; }; + 7F151675E2CC41857B361079F0040B9C /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1049577D19D75BE33375C98A9B25854 /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7F1719E6413471B63191AF8FA2F81054 /* FirebaseRemoteConfigValueDecoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9E452A5D9E9E77D10224DEE0A0B751 /* FirebaseRemoteConfigValueDecoding.swift */; }; + 7F1B17C0A52CD5A12EF12A99D730DE0C /* sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B197209FA52FC35E7F4CEA44CDE83ECA /* sync.h */; }; + 7F23B536D59453D801B303990A6A7485 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 7019A5CB967B61B830D03F00D94003B6 /* local_transport_security.h */; }; + 7F28BE9A2E234C59DB711BDDFA8DD2B5 /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FD4B37C0B65C10536EDFD4E03434300 /* collection_entry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7F2C510E9958D53231C01BAC1E788531 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F8DD3293C3F43BEC5B8B620D2E2E678 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 7F2D2C709454F36A06283044969B3297 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 5072C5F688602208282762A2A01E9610 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7F357FAB8B63168DEDDA263717DDE11F /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 368F2A04EFE284DCBBC4304CEB44558E /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */; }; + 7F3FF318A1575D4EBED21B2A69F83A68 /* cidr.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 03E2119BCAA129178399A8FB98338DE4 /* cidr.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7F4533B671721BD3E836DD970B852F65 /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FD702A719100E8F9BF233A691EFDBCF /* string_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7F46EA6FD9A7527311325BB3343923D2 /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = A5D5DEFD765F7131FBC25732991DBF1D /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7F505FFB8C63EC55FC84508E55E2C59F /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 64F0AA53F518BC52C6A0B4096E5E22EB /* channelz.h */; }; + 7F57618B95EE24034516274D89E802A5 /* load_config.h in Headers */ = {isa = PBXBuildFile; fileRef = FB65BC1EBCD163FB538931110A1F74DE /* load_config.h */; }; + 7F64454A8303253CDDECD710425B362E /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 0EBB0BA03043BED364A821F5FDA49F1C /* tls_utils.h */; }; + 7F8CC213DBB0F846566F1D8019A2C07F /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E174357CAC7FAF4AAEA920C78E1F839C /* listeners.upb_minitable.h */; }; + 7F8EF00E3327572700B0C7C8F022FDB0 /* charconv_parse.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3FB0BD8DD0BBA4DA59E13633C81537BD /* charconv_parse.h */; }; + 7F95CB04B2AE83725DC5ABEE1EA90543 /* FBSDKMaleSilhouetteIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 942738DC28AC14775466976B2705A83F /* FBSDKMaleSilhouetteIcon.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 7F9E7DB0065FA4C4873E93E483BB1F08 /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 635A98B640C9717F5943BC027861B8F5 /* path.upb.h */; }; + 7F9FEAA0D6FD314009C3176A53521789 /* dns_service_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 64240D08B05B03EF0CAD692BEDE6C2E1 /* dns_service_resolver.h */; }; + 7FAADE8873E3D664CDC6F4A3FF86EF55 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 205B5C43E95D747C7122152BE7D7E864 /* internal.h */; }; + 7FBFA9712CCA085A1DD7B2A7C39C725A /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A992C93185B695B2A84656A0E994970 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 7FC1272944A785684A5AB411C3B0D96F /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 5A0B210E5D7498AFC73473C794A8037D /* alts_handshaker_client.h */; }; + 7FDBA161AD7637E824050526E0E7432B /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754979D499CF223067432C1AD75A143C /* HeartbeatsPayload.swift */; }; + 7FF51862245DBC3739CD6BB75C8B499A /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57C9C9F376F43FB60F30D6DCF4D03A3E /* frame_window_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 7FFC9664FB840BBD56112FC33CAEDBAD /* native_windows_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = E67552D31E12F6F80380F059A6A910D6 /* native_windows_dns_resolver.h */; }; + 7FFD5BB23232DF8E6637E2BA18D3A6AA /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 44E8E2DC3F467CB0F8FFF905151E4F36 /* authorization_engine.h */; }; + 8008215B261221CE1FAD1A74CB483613 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E9F8EFA882D5F0497AB70F9976F12C9A /* transport.h */; }; + 800B7023606B2810AB865FDA4EEDB341 /* SessionsSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA632926D895DDA10E1544F0848BBFB6 /* SessionsSettings.swift */; }; + 800C491C9CEE428F3BBDD9976689DFB3 /* authority.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D2EDA1571B7CFF16F10ED50F557E35E7 /* authority.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 800DFC040030ED01A3C9AA675274A86B /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 326C80CE8EDA69946DC53BD62E9F9C7D /* GDTCCTUploader.m */; }; + 801036367D1499FF4ECD77AC38F4611D /* node.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E962B948CB636CD55333E3922F449F0 /* node.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 801708C2416B61E516EE2CD1DBCFE54A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FAABAE4993ADF51C023CFC5AF0F92CB9 /* internal.h */; }; + 801F3B94D8783CE3F80BA0D1640AEE8F /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3BB603EAB95077AC40720EB6D92B33 /* xds_certificate_provider.h */; }; + 802CD5D3315A40C901A494ED9C326997 /* cpu_detect.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9A2A21C7EE44403993630D63E160AD06 /* cpu_detect.h */; }; + 80384CF27EEF8E439F797CF146116EC7 /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = B52237138748553D009983453ED9FD02 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 803E4A2EF224C5AAC1225B3DF3C69F1C /* reader.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 3926DB44435F707EB750EBE109254986 /* reader.h */; }; + 804368DD955872151320DB260C235BE9 /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CB330D624113B5BA45CAB97D76B425CB /* byte_buffer.h */; }; + 8049034AEF13B0C1888BD277E490413D /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2140B802B8BAF0FC94230A85BFF1F3A3 /* encode.h */; }; + 8051EA1B2FC2B3DB9624034ECB7C196A /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BF3A557EECAF2C677B99BC48F6ACEBA /* xds_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 80549C4330F8B68C8027B0251BEED0A1 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 754DDF2453DE9BFDAEAB5A3300929F3A /* resource_locator.upb_minitable.h */; }; + 805D8AA903634B37466759989F492AAB /* hrss.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80C4D0F0F94200FFC0C91212D20CEBFE /* hrss.h */; }; + 805E60F2BD48B07B369B4EA7D2058288 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 756281746FE406CE82B9E8D1984DC321 /* string.h */; }; + 8062EB8F90DA300B8E6F526F1529DF34 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 678E732DFC993679248B1E13731374FF /* xds_routing.h */; }; + 8062F63C67B43EF0271D72DAFC16ADB2 /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E8D94110232E7FA5FE2602D231A19D /* randen_engine.h */; }; + 8063AF86961DC76967947BE026B6533D /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = F32F3DBCBEEE2114BCD297E6CC538766 /* common.h */; }; + 80673EF92B1008BFAB547F924CBC4509 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 9FB7D3B6D21DE64C2F9F8607BAA5C14D /* handshaker.upb_minitable.h */; }; + 806D545F500416D1AA5ABF1D4471EBEF /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 254B6D343F93465B60BCEAC705BCE475 /* http_inputs.upb_minitable.h */; }; + 806E4ED50EFF697091AED49755ADC66A /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0CA737BA9E8CFCFDB82C38287ED4D6 /* cluster.upb.h */; }; + 806F5CDE1584078BB08129214D62D71C /* x509.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FEC4D8AB712D3AE5D9663742AC12F977 /* x509.h */; }; + 807EF8819C6811B380BF20FB99663122 /* FIRRevokeTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A43FCE3FC500B05443D90B3BDEF1FFA4 /* FIRRevokeTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8082C0A9C34B22F37FF599F67413731E /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB937A49C685C845C5C6653EAA1C158 /* static_stride_scheduler.h */; }; + 80846F43356252DD7D6977615A48035A /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C656D1A3FFB304188BF8E42EB2328096 /* buffer_list.h */; }; + 809183E8EAE76A54AEC6A9C45B2698DA /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 194CFE26D529ACB725C0E46591A2E464 /* FIRCLSDwarfExpressionMachine.c */; }; + 809BFFC4CC793F9CD1D462495E5FCB05 /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = B513D80E548022BC665B9EF23601EEC7 /* try_seq.h */; }; + 80A4269A6DA76D03FDC20BCE42E40881 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 65578CFAEE41A6BAA6EC03637FEA4090 /* typed_struct.upbdefs.h */; }; + 80A77071369EA156E0C95E75493EC594 /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5949205FBBF4806ADDEF0D522037F79 /* http_status.upb.h */; }; + 80AA53A09F74559FC47DA0A23A1FAFBE /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = 82871B96EB3CE7BC0046EAEB271DEA4C /* reader.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 80B1D4F2443A7FB17A1E3EB892191262 /* memory.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B16419FC037644021689FB88AE78D3 /* memory.upb_minitable.h */; }; + 80C4B7E883C94E18102938F43B0EF240 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFA1919249602BE6930D1560E812640 /* ImageView+Kingfisher.swift */; }; + 80C68C1FEE54D0C27E45531EE57B06C8 /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 140B55EE0F08904AB9189D95F1919538 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80CCAA0E34DD9EBA398794BE127799DB /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4483F7FDB8EB8EEAEF5F69D8D29E00 /* insecure_credentials.h */; }; + 80CF30DB515DC468ADBD544AA56F2E10 /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 596B14C1C4C0E14A78F387CDCAC0C597 /* FIRSecureTokenService.m */; }; + 80D18DB2CC0A4A852FD7BFAC307B3420 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA703DDC9B1F364070A57A05B903E21 /* secret.upb.h */; }; + 80D1BF4CD8C1A9EF7DA5012AAAE4D988 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91968E1111C861C0E1580120381923B3 /* KFImageRenderer.swift */; }; + 80EA53600CB7EF15248E84032B2FA493 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D10BBC84FE4B5FEA1720A2D5B55C4C6 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80F615096DDE56DA09E22B0EEA1DFF2B /* message.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 97873A4DC7D97ECC28532587E0F1666B /* message.h */; }; + 80FA5D9548DD80F550E74FF579F3B901 /* Promise+Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8AAD06AC88778F39C3B3D45C71462C /* Promise+Do.swift */; }; + 811727D12924E1FD1FF6C19EAE537CA0 /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = 9744268AD1F990637E67D59A9F071ABE /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 81239A32AFBE39DC3D60EF0DA117085F /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 172E380D54302D72B0735B57569D9A73 /* range.upbdefs.h */; }; + 812E96C3ED3AE0DC9A39DBFF6C9DA330 /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C67675B326D5A7272C2DF85C7000C0A8 /* FIRSecureTokenRequest.m */; }; + 813567AB8A0FCE774D450A3A92329DE1 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 910FCDDC101106D024FD6966BFEAD6C6 /* cluster.upb_minitable.h */; }; + 81381332FD3B3D24491496584A4E4FE1 /* thready_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEFB63B5203F8DBA00EC1862447F22E /* thready_event_engine.h */; }; + 813D5F5EE7B6BDEF019C7C9782BE00EF /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0441646E8D0642BE5A01B59FC499B739 /* versioning.upbdefs.h */; }; + 813D8E2C9AE853C6CF030BBEAA504F10 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 456552763A7B86583A34F897D0BE142D /* fake_credentials.h */; }; + 8151AE09D916793C1CEC8F49BF0C78FF /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = B86971A1BBEF1058259480B90A9C2B01 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 81561553CF3B31C7BCB1AD44C181D36D /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A681ECD0D1A2210AE23A0683D7FE93A6 /* grpc_polled_fd.h */; }; + 81661477C0BD65A9CCBF1E004A285EE7 /* GeoPoint+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CBBF27E44E1C5821D6584C8F1EE2D52 /* GeoPoint+Codable.swift */; }; + 817653D9E6E464E2FDBB243454479F43 /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A8BBCA1E000496CDB79FB4C11664F8F /* load_balancer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8177AC20E8F2DA2512E8FAD67A212873 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = EE33EA484EA5D1FCCB7607A9789E69EE /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */; }; + 817965338B036883788A5B21B29C90D6 /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9FE93FA8C24CCF9B1F26A826CC4B7AA5 /* init_internally.h */; }; + 817B896013FD56C04CD26E2F6C67EA7E /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C080CC52714ABC160A5C7BA747F7CE /* NSTextAttachment+Kingfisher.swift */; }; + 817CF47C530CCF1E4A6CB1802469475E /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9881DD4F24FB1A01C0C5954F941E4D /* udp_socket_config.upb.h */; }; + 8187C765CA3BC9A2567C5FF3B92BBD53 /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66A548AA9E4E81B70AB65059750B0C6F /* memory_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 818ADC273DFC3C28B9366AEE1107FB81 /* sync_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CFD7D692823D1143AD2670A6781D272D /* sync_stream.h */; }; + 81A398DBB4F2685A7C8C71E6E65F6677 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 527C7153FD9B0737F3C45E979DB9CB71 /* metadata_batch.h */; }; + 81B482B9181C4E34757C80B5EA7B4546 /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A4BC008EF3FE9C49C0C0BAE6C9294B /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81B5C09C8B2DD4E09FF75C9E13F1A183 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5A0A2E5FB0C168E84F493AE4454DA8 /* common.upbdefs.h */; }; + 81BAEB2F426F7F018DE4399A5FD99C96 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EC694009C233331486BBD0EBCFD3CC /* internal.h */; }; + 81BBC8EDBD7BAC2348C129608FFD27B9 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8FBE391FCE495F455DED1313EA65C7B6 /* health_check.upb.h */; }; + 81C5C02A9925F80CDA03E52DFC27D6DA /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = D639857D089B39120D462486C6EF7EFC /* zone_info_source.h */; }; + 81C603F9151B9F8D36314D22A6C1AEDA /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = DA847C3304AD6B49D73F09EE1303CD84 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81D5EFB0B6A109BB34569614269E2FE5 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8C9751C0A5D94150C568FBE073DBFF /* backoff.h */; }; + 81E1B4D06A1E87035A4A56C58F94D8D1 /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ECEDC6FF33D214F14F298E9CEC30513 /* resolve_address_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 81E4CCFEB1307757E98744344B75B9FB /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10B4FE73C174AF8519DA723520BB0C7D /* RequestModifier.swift */; }; + 81E6A0FF7F286008345ECFA3A2103FA8 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = A898A17D0935D3D8BFD40415BB738673 /* Alamofire.swift */; }; + 81E797749CF613E4B09CEC6B9EA1CC02 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D3938536D0A1B83C8F413A6C30641FDA /* tcp_connect_handshaker.h */; }; + 81EF4A35A5BF345818B0088B15C648B4 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 52A02ECFF0680B90008EC3DE845339FF /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 81FA1BD60D6E896BABE89F155431BCE3 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 858D2C6EE1517E196D3666DD315AF311 /* rbac_filter.h */; }; + 81FD12466B62BEC7AFDECF06CECC5FA6 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0577105E7F3D1AE85BED915C80855E /* channel_stack_type.h */; }; + 82097F9E1BFB0D93A10943F2B72A2923 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 984D7C34D66154A159CDBA59C739BBFB /* altscontext.upb.h */; }; + 820A7C534C4CFA796EE9651BC97C1F3D /* completion_queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 733B3E2E4276285784AFF6035005E621 /* completion_queue.h */; }; + 823E04EE96EB425CD719B1650F01D6B4 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F12D6F87F667BA78DAE1121B13D136 /* compare.h */; }; + 8241362B279B3414921BA5381AD5BC0F /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E1BBEC042B97610F777FD587F1892F2A /* GTMSessionFetcher.m */; }; + 82550F975309C553CA2A2C4A30A48EB9 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CF72CED9B849C5A6E9A6216832ACB176 /* grpc_service.upbdefs.h */; }; + 826B6E9FD21ABFA820B65A63B725C89F /* resource_locator.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF796253C0E5671769584E70B3AF9EC /* resource_locator.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 826BBA0502B91F8997E4BC18E0098E44 /* macros.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 5869F39D7933B6A1BF1929154CC9053A /* macros.h */; }; + 826C4BD271C857AEBF2119D3FDA4B8D7 /* NetworkInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C0B24E481DF350C988A510379407884 /* NetworkInfo.swift */; }; + 826D68208F77F2960586007C9CE5DC29 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95E373769AB1209189B1852C5088BEA0 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 827BBE2968C054BE75AD10DA9264B27D /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 459039F3D054422980F608D97F558E2F /* annotations.upbdefs.h */; }; + 8282406B302CA5D364658480486299C1 /* FBSDKMeasurementEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BE0F9220DE5ADC75CBB1A4AAEF50FA /* FBSDKMeasurementEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82838F3DFE09A56C3098173CC3BD1606 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0BB1FA18A73BB796461DC97E8B339262 /* PrivacyInfo.xcprivacy */; }; + 828617AFAA3A071151D5D8218FD19A45 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B85B7A2A6C0A3B8913CA2AF9812B6E /* versioning.upbdefs.h */; }; + 829B5E8E91D02C8B49D261F43AFCE243 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = D67DA71FBA2308277DB011354B7B63AB /* status.h */; }; + 829BED16E6DE896DEA964D929724A259 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FB1EF99E7676B98375FAEB38414F3C4 /* xds_server_config_fetcher.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 82A21D13E5DBB085245AF8A77A373B02 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA8FAF2953DE6C22CC34DB557AD4D064 /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 82A686D1444ABE86567CDC7CFCBCF479 /* event_log.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FA9B80242BB677261B5BFDF7292339 /* event_log.h */; }; + 82C2811BF3C85A22C76FE821B3B77103 /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7C0229301F79AED3A36199B04A58B7 /* tls_credentials_options.h */; }; + 82CF7A802F6E4F5E1F676EC79846300A /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C393828E3611A0514FE5822DE0D83FE3 /* trace.upbdefs.h */; }; + 82D8B078CE47A818C2A32FD80EA99D4B /* metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 40BCF6BB9833101314194D3ED53AFC39 /* metadata.h */; }; + 82F13409AC7CBA00A01B1F6762AF367F /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 630FED3E77F91B86D2085032CDB8E11B /* socket_windows.h */; }; + 82F8F0A22FAB4C9FE682B6EBBBA456FF /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = 432475180743CCD196C48EC6A578380A /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 82FA8167EFAAA90B62EB8778DB204F47 /* wait_for_cq_end_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9C558522658A8503C26447B08027B710 /* wait_for_cq_end_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 82FABAC06071348365495608E781BE10 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F3DC56935005A8B7B267D14B205177 /* service_config_call_data.h */; }; + 82FD3E940B09E96C9002733D64DF73D3 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA042F7E86D8A03309A7F0E9FBCC57D /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82FD97FBBEFE51E2D3B434AF4954FC93 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70781D4EF4FA18021F96B14E6016CA74 /* EventMonitor.swift */; }; + 82FDDA30A0C9B7F0DE6392DC4180A3BB /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD410E6433804F3F8764712893961F6 /* accesslog.upb_minitable.h */; }; + 83119442A4DEDAC7694474976F85ED75 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CDF271F589C13E41B536104E3B9238E /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 831A16A132A46AB6193D16860624474F /* damerau_levenshtein_distance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B714BECFBD25E26B2DC245F0084CC8C /* damerau_levenshtein_distance.h */; }; + 831A2A315EA2C2D374CE5FCFD262ED67 /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D53CE2EDBD032BF0515C2B58D7A454 /* reader.h */; }; + 831D92F2476C640E032971733C998110 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 033ED0F81A0728CD7FACB7FBF8F817DC /* http_tracer.upb.h */; }; + 83341BB95DE3791D6796A62489E70335 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C5BA945DF73C036474BC0DDEBE96D2CA /* varint.h */; }; + 83346BB7BDC3EB33E2B1C95628E657DA /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0794FFCC969E0426DD962A1B5076EA8E /* metadata.upb.h */; }; + 8335CDEEBD5A02EE76A5E4E67E4807CF /* internal.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = F66A020ED391BF8432299958DF5C0FD9 /* internal.h */; }; + 833E63E33D5DA275C7BCA6E4BBB56ABF /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E9299D245185A97F0B6CD8F87B3DD934 /* metrics_service.upb.h */; }; + 83404C131049E1B58F85F25E4DA7AC75 /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 599D06CC1A53D98F2C28D927A9EB424A /* insecure_credentials.h */; }; + 834C3A40C08F1CC2C7BFBEFD0EA055DA /* if.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = FFF3D98D027C9058813256B55EB44FC5 /* if.h */; }; + 834E1C1C743FF7ED3DA4D5E58F984B8C /* tcp_socket_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80719D91D6683EAD4310FDB89B73798E /* tcp_socket_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8350BC7E7A799F957114923FD034CADB /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A7BD509DB669554785042138614EF6 /* trace_config.upb.h */; }; + 83524461C226C700CDD575DF6A7CEEA5 /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = 2ACCA4D163683462B02DB247F219349F /* experiments.h */; }; + 83542C0094C6CC2A3EABC7720AD5A6AE /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B7140764D858602161BF13244D4AFC2A /* ratelimit_unit.upb.h */; }; + 835CAE82032D252267B40102CF69D1DE /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = 03E55CA4B817CA18A3582661A230E111 /* local_credentials.h */; }; + 83662D28BB4C41FDF3877512CD278B98 /* metadata.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FF7B997C00F9FB247DB05D9D83508867 /* metadata.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8367E4340C6DA2EB5DBCE3C3F9CD1F6A /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A468266C4532B888704DBD2E64DA30 /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 836DC5FF8DC037092B014B9CCB55CCEB /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E73D43E844FFC6A8E10EA99DAF4C996 /* error_cfstream.h */; }; + 837257D384FB3151902B55D2BB5A1EBB /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 96CCEE882C597EC9972F28DA266535A5 /* constants.h */; }; + 8377445D94486CE9393ED0ADC9EE7FC1 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 39DC697C81245FAD4B35354B0A6CA87F /* ratelimit_unit.upbdefs.h */; }; + 8377C49FE67561138764C4750FA6D342 /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 361754E81BCA51F7C0EC7CBD7ABC0C47 /* certs.upb.h */; }; + 837836C96FDD106169F94E69954B5CD4 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 575A1E10C03402EAD2F496F76803C2BA /* map.h */; }; + 8384BB1FF1629C226383FBC7FBCF0357 /* orca.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 12AFD0B078EE930495202937FB70962E /* orca.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 838871418129CF3CE2FFBA94D98F4469 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4652054FD4B388FF6C93ECA471B1D019 /* router.upbdefs.h */; }; + 8391A94497C013AF279D0EB5ECB53109 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8316E432F2F68A3FB751F6C7977074 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8395122B72FDE24032774373A6B6998F /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A7B384D2E25407442F4CA3E5C5AE8914 /* field_def.h */; }; + 839546F414D4E7D35989A716E3DE10BF /* md5.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F39C010D1DA44DCB4C4BA27177722D8E /* md5.h */; }; + 83A9931334765E2F03866350532CDEBC /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = A5CF7CBB44B435F8D993901568EB0A54 /* symbolize_darwin.inc */; }; + 83AB098762C7D84371BD83DB8799594F /* context_list_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C64942253B2B85FE1F9950260025CB /* context_list_entry.h */; }; + 83AD9D1ACF1FAAB54CADC605F4219696 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FE9A70EC114D58D8AB03A0789E2C97A /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 83CDECB67F09AF3D42700721F3E1E686 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 1189667F431D5502DE0BF277F42B3C29 /* time.h */; }; + 83D4F26720913750EF4276E98F6C77C9 /* delegating_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6280440ADAD91FDD792772C960CD37 /* delegating_helper.h */; }; + 83DC98F910E449FF9DABCF49168EBB2C /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCC6A0C6704846636ADEC64C251A200 /* sorted_pack.h */; }; + 83E7BF928EDA1A98DC48CE680C2BFCBA /* http_inputs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D5CA94BA106765187BA86131B3EEDE4 /* http_inputs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 83E7C950B6E94D6FA5E8EB50F26759CF /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 867672C1CFA1EAADFBE646AD7DD599C9 /* fork_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 83E8A310FE8DDA81FE54ADCBCB5EF31F /* internal.h in Copy crypto/kyber Private Headers */ = {isa = PBXBuildFile; fileRef = 6BB2E4DC45AE160134632103B0C3B3E6 /* internal.h */; }; + 83ED86C4F5599DBE5E514732C267C65B /* sync_abseil.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4AB319120E1714357859FD50AB4BD9A6 /* sync_abseil.h */; }; + 83F2ED528E36E004C9507A314C51AC18 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74B5C677876C4D29E11A039E1AF82863 /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 83F6C9D3A86859BFDA0E563D00B611C4 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = C9F932B91029090606D7717E3CF22088 /* jwt_credentials.h */; }; + 84057AD29DE5EDB71C4861DFD9AD2237 /* path_util.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1AF726A5892D240793F6BDA24F29ABBE /* path_util.h */; }; + 840841577280D43CC52198E1A558F444 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CB09FF3E70764F8126931155D4CEAD9 /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 840CD955ED6B8CC07404EB610C022A2B /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 427892DB8181A71853160F1EFA74B7A4 /* rbac_policy.h */; }; + 842149A1B3856E90B594611F9F11B29A /* create_channel_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 683D89C38B3FB188E794D07332F7A1F2 /* create_channel_posix.h */; }; + 8430818CB1C43A276ED22A94A6115D01 /* typed_struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE8BDA43C8E8BF455CCDCC3C6CFC6CB /* typed_struct.upb_minitable.h */; }; + 84417E28B23663EECBB1B534643F2488 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D6EA1CF179983B9B68341E7D8BAE0980 /* FIRCLSFABAsyncOperation.m */; }; + 8442EF246009D6A26EB78D1E0A263323 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1552A4520AB3E274E867751B7F764B8F /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 844A584D9E5C0466F2215118C1A955E9 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 01620ED71B38281B151FEE2227375F2F /* protocol.upb.h */; }; + 845924D370ABCB876C905BA0084C43D3 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 555B4DD5A6E09921A4DFBDD853D74E87 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8460D11D6270B7CC3ACD0CC4E7D8AC8A /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = E1A4CE4272F029174EC35A40E34AFD1B /* endpoint.h */; }; + 846290D21B19663E8A5E01092F5F6EF7 /* resolved_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45F68D46CC150FEC4E05939BEAB64A43 /* resolved_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 846A9FD3210B3551A9C8ABE354580DF9 /* decode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = EE0EFD43E7CCA3ABB4C0C7330524DB8F /* decode.h */; }; + 846FBBE2BB0EBC4F68F3D5143674ECE6 /* FIRAggregateField.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57160234AAAFBFA002DF77963E6BD74D /* FIRAggregateField.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 8479FECD2DF28CA360F4120603A6DE19 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D95B920C1E119428D6415786CAA23D26 /* alts_counter.h */; }; + 847D6DEBFA832D293ADBB4B0587B479D /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 918D43DEC7EA365ECA9D2A23E69317CF /* alts_tsi_handshaker_private.h */; }; + 847E6CB86F1807D68D763061C79E1757 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8D7C0AD40E94A5F47C50D5D647C6913D /* no_destruct.h */; }; + 848B82C3ABC3F90E1BCDB1C2FCB414A1 /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6A3919878B89DD3E4BDFD4EF7BF0D4 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 849519C500686207F0D459D64CDB991C /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 44F5B928B18375C336AB7A3C626635E7 /* rbac.upb.h */; }; + 849689493DFB80842638E497D998F754 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 41307BE757B22092B55AAD4982C3141D /* lb_policy.h */; }; + 84A09355B559D3C6D527A5972AEDECFE /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9360AEFAD407A4CC16C8003870BF137 /* dynamic_ot.upb.h */; }; + 84A7510CFE4245617E8F15CC5AB99C3B /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9998CFC5324B900A8DC1F3BE33F8C12A /* FIREmailLinkSignInRequest.m */; }; + 84B1CCEE6541BC0E5E4AEA63A473B2B8 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D419C3E47FEA62975C3BDCD50D2BF552 /* metadata.upb_minitable.h */; }; + 84B996222E21FC4609CB98B3FA4D98D6 /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = A57455D50771D3BF919897407F823BED /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84BCFEF27F111C479CA385E6E5BB72AB /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CCCC039FA185897E26D32CE67E081A /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 84D40CC73A15B954E32671357C3ED651 /* tls_spiffe_validator_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E62E8AD2C9FAA683A293044A73D5EE29 /* tls_spiffe_validator_config.upb_minitable.h */; }; + 84EA88DFFD7C0D4B73FDABDADAA7BC71 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 17DED0052153ADA251B3E7CC29DCC487 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; + 84F6684E2F2A655FEB9750D17A9DBDB2 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5874326F9C80DDF29398998EB13AE58D /* hash_policy.upb.h */; }; + 84FBDCA542ECA5B1A0723E9AA82A1D28 /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 7256CF1A5D2F600FDE464893F6C163A7 /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 84FD1639B96221623C7A44E42FF8E466 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 6751189DE78F3450644220E50A234BCB /* promise_like.h */; }; + 8507E21D35F862F4AE893AA8B257B761 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6F1DB2788AB562F78E0CEF29E7CA3335 /* bitset.h */; }; + 850E3665244BE4B008342F82CD806212 /* value.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A5AB6BE3F6EB0BD817ADF418CDA90EAB /* value.upb_minitable.h */; }; + 851455FA1A1FAE34FA4C5CACFE8304DD /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D142633A2B7ED71DE545CE8AED2E0BB0 /* resolver.upbdefs.h */; }; + 8522A9ABED0362861745B564F231164E /* server_info.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BB0E50FE3FA614C32D686E37B3C3686D /* server_info.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 852A1DC33F0BDD17D75AAFA6C5C4E050 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6AEFC843E0309ECB939A737D7BE62A63 /* auth_filters.h */; }; + 852B4C388E86CC52782B1370FFA1D7A8 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A79F5FE38C8F9BC49EC5AEE5F448CD4 /* csds.upb.h */; }; + 852DD00C9A411EA46598A1E53E03E291 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A314BC0F7C658980F5A3CABFCC4E14F7 /* extension.upb.h */; }; + 8540C8FF8C4F777D8BB2370DD769E938 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 6917D230E2F7B9EB528A4D00959EE95F /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8550EAE4EF5F96F070202EADE4A5F9B6 /* charconv_bigint.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 11DD51C1560FFD7D31336C3DB255BBDD /* charconv_bigint.h */; }; + 855B1FF51278BAB21FDB3729FC13D3BA /* compressed_tuple.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 64E480B17940154F4D8AB853CA61DA4E /* compressed_tuple.h */; }; + 856AD89298E87D4033C3348A2F72420C /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62884A38AB75B5B2F9EE8A27AD4FFEEA /* server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 856CD8DBC2C070FE5B652A75A41772B0 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 42552E1FDBE02EC901E1D21058204E56 /* lb_policy_factory.h */; }; + 856DEEA173420EB46452843E31B76780 /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 3780076524DB6D617367B3872EC00C03 /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 85764BD97B106996D53512DD43F030F0 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 47CDD622E24ED6E5DCC3731FCE0BF2A2 /* opencensus.upb.h */; }; + 85777F33D1D3C573C16FCDD985174C88 /* unscaledcycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7E3A51E25423FF3D42A954DE61B3344F /* unscaledcycleclock.h */; }; + 857971FDBD272972BBB4C1AD975BA79B /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0FCD700738636B115CA0D7CF514F0ED3 /* tcp_client_posix.h */; }; + 857B7024BD6D3312BDE751BFD4C0A98F /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB94D7D589D2914918BA4D47D3BF3FAB /* accesslog.upb.h */; }; + 8585DC1A3D43E50B66EB8E4175BA8C3B /* types.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 09C6C3C2B82B1D3BB5527F2DE5CF7E69 /* types.h */; }; + 858A4ABC7DD13D94CCBB3EF06609DF57 /* native_posix_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = F634FABDD0660A52AFA92BFD5C995A0C /* native_posix_dns_resolver.h */; }; + 8595A81D1EAAFD59EDF5D8F79D502827 /* FIRTOTPMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E69672DDA59C4B3ABC78D1FE664F304 /* FIRTOTPMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 859655C3F6063AC397CB9108AD467906 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3D871188D7F7C9DE7F1D68B13C6052 /* status.upb_minitable.h */; }; + 859CB153C08AE779C72B95EB5F55A78E /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 719A6AA385499D039EA77F612AB6D262 /* tls_spiffe_validator_config.upb.h */; }; + 85A46CF3A32ACC4A4145C58B4815315F /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8FF025D3EF976F365B410F1B49AEFED /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 85A67CD3AE83EC49CD23FFDDCFD12742 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BF5D50B764C908E949BE1DCBA1CC04C /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 85AC04AEFC1047A9D113E40DA89B40C9 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA887D6F643DCDF03DBFA250DB72A12 /* matcher.upb.h */; }; + 85B10308264C6D911E04C171AA325F78 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0AC24528FFFFD76AA1DAB8B44063A318 /* thd.h */; }; + 85B1892103E84BAC9D0099CF209A8376 /* nameser.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9C776B75D07C25F1E680825880542B18 /* nameser.h */; }; + 85B9E568846BF4B23A829640AF00F2E4 /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F3F1527B476C8B3DBA566706D4F7F03 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 85BA76C761669EBBDE914B1D7B550664 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = B74E57E731F099E888EBDF3C3AE63E7F /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 85C0DE16797862DEED640D21028E1BCF /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B20F9C15D11ECCE4BC82BA68DA7EBF76 /* quic_config.upb.h */; }; + 85C77F4EB32CEB8B8ABCFC7D55F7E90D /* client_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7228323EBD4A00B890D6F20F3066E4 /* client_channel_internal.h */; }; + 85E125F97FCD1A339FC8F420B6BF93A1 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 13E27735B6BC41DD31AD37DB0B55EA4F /* string.upb.h */; }; + 85E2285EA9E073BAF26972854C8A3936 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5982A7D8DA22E687F9A9E691A079444C /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85E436CBD924AD5B0BFD7F383D24B9E7 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC4570FCF2C27CBB86315B25687F578 /* cluster.upbdefs.h */; }; + 85E54F84175ADB06D0324494936A35C0 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = F9525707E11CE7B27B60FF2CCCFAB8A6 /* certificate_provider_store.h */; }; + 85EEDE3DC9E53085BA063C6B4940343E /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCA19C5B156FBB9D892D775A3119504F /* path.upbdefs.h */; }; + 85F01F773D9B9B8195B2127A21542809 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD709E187B78995F5ADB9B013D554862 /* listener_components.upb.h */; }; + 85F42CA9CC3477E8C47B8475221FF881 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D14A62BED940F6BB6AAECB58052F9B4 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 85FB608EE7286CCB2A2D3476895A0209 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2215B99B2E6E039AE270318E90F8F1 /* symbolize.h */; }; + 860972DA49B5C8FDC04B0F740129710F /* posix_engine_listener_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D2800BA967F85ED0C36E2F1A4453F921 /* posix_engine_listener_utils.h */; }; + 860BC85D9B6DF08DC835D9033B8DDD81 /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E95B0CDEF46083C8AAC38F337175A82 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 861389DA038E1B456A95251DBDE9719A /* server_builder_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = A7E3A7BB23504331E7CE7B9EF2EADCD1 /* server_builder_option.h */; }; + 8623A0728DC5910B750C2FC03740356F /* xds_health_status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81FFFCF235BE368DEDEF11A182FEC7A1 /* xds_health_status.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 862627AFEEF9DBBF789B259A95CF2631 /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 819ABE9402560490D2C3B1F3B5FF4F99 /* resource_name.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 862778187D4A82D8B9C0049E435F9817 /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FE70C39ECE4EB4D070BEF4B7E8DBC4 /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8645F8BF864E4580E56D09020D970752 /* xds_enabled_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A33E402A8DFB7DD2EF691B918ADA94E /* xds_enabled_server.h */; }; + 8654B0070B3AEE6C12D7EA5FB33A7734 /* DeviceKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7480901E295BF8DD5DC11FE2107F87 /* DeviceKit-dummy.m */; }; + 8658A5D2E3120DD26E627AE3658FE8AC /* status_flag.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B80D48C5A64A7624D67CE3927ABE8C1E /* status_flag.h */; }; + 8659160F4CBFF3F451C2A88334AC8452 /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9756B83E5ECB19C3847A89C98EE2F8 /* thread_pool.h */; }; + 865BF517141C30DC0AA427714EA4F877 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DC2D0BB7644232AA345749AB571C2B /* pollset_set.h */; }; + 865DCDC6FDE6AAA849DF58B64B2FE0B8 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 89236BF9E101AD12E2901444D45C0DD8 /* grpc_if_nametoindex.h */; }; + 8667061E88ACEDEDFFC29885102FE6AE /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 683D89C38B3FB188E794D07332F7A1F2 /* create_channel_posix.h */; }; + 866D3B269856A2509573ED9BB82DD039 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 0723FBD4F83EF23F034975DA33E622F8 /* status_conversion.h */; }; + 866D998EB03992520D605CDF081839C6 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B547A061E368D686C491C3485761144 /* tls.upb.h */; }; + 866DB2F380A6AD89457BDABDCBE324B1 /* ostringstream.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 87CD6D5BE2F3DF288DF4F844883F574C /* ostringstream.h */; }; + 866F1040A078F3957E25F12B8F2ED4E6 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C8DAB3E219E902B373B29DFA7BC850 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 867453C322EBA24E23FC060E5C7556C8 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 52FCC1031C8044D42D8B24B0F69E09C0 /* metadata.upb_minitable.h */; }; + 867885D0F14AD7A8F2C9A8034D3EB7D3 /* csds.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DDF6405406E66CC19BFA07FAA6F100 /* csds.upb_minitable.h */; }; + 867A62769DFEF3EF6D3913FF6F6EA3EB /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E61D792700C41C25B66D4400FD601884 /* FIRCLSFileManager.m */; }; + 867A7931DE9A24F3C649A459F7EC10C0 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 183BA33C67A9589B181F92F5D58CEFE3 /* executor.h */; }; + 867D9DDA33DC66156BD5B559941192EF /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4F73CA06E08E2B951639689D702840 /* binder_constants.h */; }; + 8688F62CFFF570079D26D54D860AE54C /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4570D7BEF446629739CDAF9DBFE4C8E4 /* cfstream_handle.h */; }; + 868F415F05B713D1A591E5ED473B1987 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F1D6A3733CE167D7FEC12B05752F98F9 /* endpoint.upb.h */; }; + 86974C07DF9F42682CC3263CA8F73F5F /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = D788DAED0109D5E3E422D5243B2C1EA5 /* packed_table.h */; }; + 869AE5C0819BAF2805260590CAFE288C /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 429D43C99E146AE79A5FBBA54676BC57 /* def_builder.h */; }; + 869E4F318E5F3936803062896D2B25B5 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C418586DF1EC3AE525940F46D7A93B5A /* stacktrace.h */; }; + 86A26E976B47313C4A654AA290F5F343 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69F10D8604464BBAC518702DE9D877D7 /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 86A6DEF4DD8CA5100D054C6B37263CF2 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 295F295ABF08248C16E6F599785BBDEF /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86AC09B7C33877044D1846AF5E793010 /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 986CA1D1D0DE56AE0CEBDE84FF8F2798 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 86B2FBC92233F5AFA27B53400DB82833 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = C31D1A1A665B552149F2E16A0F3909BF /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 86BB8B99FC49A56431257AC38A04519B /* GDTCORStorageSizeBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6E9960A6E8F090F45D22C5FC0ECCCE /* GDTCORStorageSizeBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BCF13C39222A4B3E05A4EFAE0CBC8A /* CollectionReference+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0479C3C305E8F5C7BE1357E2F702734 /* CollectionReference+WriteEncodable.swift */; }; + 86C39B668AB190EE95464C8AB1E0111A /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1937C1ED7A74BA33C671718D2ED520C /* Resource.swift */; }; + 86CD1F86EEFE9085A372D366B6918E31 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2493070FDBB78D4D27A5B939038919 /* resolver.h */; }; + 86D18E4BC2D7410483CA1D9B9A6E85D6 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB26A2DEEE369E8BF1423D099F5991AB /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 86D68A0F147B14FEBD0BB8F78662574C /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72A14D383D9FE419383D8B3A3FCE0FEC /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 86D731DF4B43DB491155DE666CB232A8 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BA17D77F312BA72D108D43EA8683E0 /* metadata.upbdefs.h */; }; + 86DBC626103A2A923F2D9B9AE8632CCA /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A1941628AA99E7F7898B9CF6CEEA048 /* config_source.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 86DC16E2984141DF483F3392E745B0F8 /* delegating_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 569935E2CF18756CE4508CBF382F6575 /* delegating_channel.h */; }; + 86E8EB710707DE28CE0ACFFA1A59BE1F /* thread_count.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FB4BC4F52333F5FB81E9677A8616E0 /* thread_count.h */; }; + 86F3D57AFAA1528FC6CAAF53234FF311 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 347913E7C969C13DAD1DCB8E3E9BBA4E /* adler32.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 86FC38DC37191FA4042C37D8FEE956D2 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 96266F5B228DDC071537C6022BAF511D /* byte_buffer.h */; }; + 86FCC23952DB329B45AF4888614EE121 /* GDTCOREvent+GDTMetricsSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F4CC7C485CDF30AB57354F86FE184B /* GDTCOREvent+GDTMetricsSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87125BAA0A329ADF13BDE6606AE6F82C /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3957FEE9AC3E3B3FBA6B7214A08E819D /* event_service_config.upb.h */; }; + 87193FF63CC39B8DF7AC609D79D782F4 /* FBSDKSuggestedEventsIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C6039594BE42A5042DDF2DA809852D /* FBSDKSuggestedEventsIndexer.m */; }; + 871A24E78A65460E4886788CB32BAD89 /* log2.h in Headers */ = {isa = PBXBuildFile; fileRef = B977636DFC38E12ECD458C113B36C929 /* log2.h */; }; + 8725ED9B954C64DA1EEEF75F29CEA97A /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4856881141E4AC66B7320B785D9126FC /* encode.h */; }; + 872626154350005BB1B0111BD0A3B8F2 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCD700738636B115CA0D7CF514F0ED3 /* tcp_client_posix.h */; }; + 87304D5AF2582C6E7839864112534CBE /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A7C3498C65D302F1A832DC4DD5BE62 /* Result.swift */; }; + 873D0EEC27453670AC96DADA265B816B /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F61E1B955A52636CC83A3F06CFBD3774 /* xds_http_rbac_filter.h */; }; + 873DB29F920DFEE90A44CAB12590977D /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 30F312C6D2DF5153F2A698D42C2E5E8A /* secret.upbdefs.h */; }; + 87473F30FF3CC1E96B13F8740EF349F8 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 777A32690C85A810E7DE44E2E4B37467 /* FIRAuthURLPresenter.m */; }; + 8747B245FCB84B46ADD2D5A58988A2A1 /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA32FDDAAD1A05CA2C927AA0FC07E20 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 874F40D9CE130C332CE617C289E2F974 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDCDF1D0DE400B2EB66D7F47A74D07D3 /* resource_name.upbdefs.h */; }; + 875833A27A1F3EEA48E92DF07E962E00 /* FBSDKAppLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F09394BD4389868131A34962684B65 /* FBSDKAppLink.m */; }; + 876E05B96E84A09C918EB3ABFE31598E /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = BFCBF4A12B1C29764899B5C7B1D5B955 /* grpc_tls_certificate_distributor.h */; }; + 876EEEB622D8CEBEFA8982A7DC9C93F2 /* http.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 246F6671BC5A3A2A10A20B8C3661A4F3 /* http.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 87729D9620B045A45C7FE4982C935FF4 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 205C6605654D3B7CD1E2336CAB4E0FA8 /* status.h */; }; + 877593368DF125C1EACB0B675AE9F4E9 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12C8EC56D5400C79163F6293B691189C /* lrs.upbdefs.h */; }; + 8778A10B76025BEB5E2B49826B11BB01 /* keccak.c in Sources */ = {isa = PBXBuildFile; fileRef = 44954A5B4CA22F70EC7758D5E68A7569 /* keccak.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 877F3CBECCD082DF69D137410882162D /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C2EBE62B5A0F120AFFE695DDD15414C7 /* listeners.upbdefs.h */; }; + 878B366833BA27FB4FA0DEEAA54E2E87 /* value.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 998D0EDD802582B230B36B3868C0E6A8 /* value.upb_minitable.h */; }; + 878D8D84F1C68761AEF6D4BA9BCFFA4A /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0713D64C32AD22D2722656705DD4EE01 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 878F4F22CA7FCBA91791DF9F157A44CF /* intercepted_channel.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FB2ACCEBEBB64B45B9BDC43DCD6B707C /* intercepted_channel.h */; }; + 878F69286F834804F191E5F1FD051049 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 34D9410D1A3AB9FEA26D5B43CFF171EB /* FIRCLSMachException.c */; }; + 8791968495085B269F8A2ACD2AEF708A /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D96D35F12C99529F8F080C42B9B56 /* parse_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8793C8F54D64C3F469B19944C0756193 /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D34FB095D42CF7A2E74C8B07DBC06F /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 879409FEE820424B10A1F12651E96E85 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D3682F74104E401F24F76C940E0942 /* fault_injection_filter.h */; }; + 8795A1FC82217654BC6123AF4A62AC95 /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41DF421AAFFBFC9EFA1FA204157FB0FD /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 879774734E27CA4185D9EF77FB49433D /* domain.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 884BE29E933DFC20652AA78F23A381C7 /* domain.upb_minitable.h */; }; + 879B192EF50A1EE92800BB6C9B4310DE /* down_cast.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DC64F7165CC42D2721FB613E086A9990 /* down_cast.h */; }; + 879CABBDFCC3A4C9E175860A9301FA4E /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A061EE2461BB7AAAD6030225E4E5D13 /* memory.upb.h */; }; + 87BC23469B61B0D561AD4BB00EA6612B /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 170302E302D2B1DA9832C897C9257DDA /* time_zone_if.h */; }; + 87C03FF92D0F1797D2EFABD1E4A19091 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 344283CE3E19CBF3C308327F87BDB6A1 /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 87C0588BFF25541089601AC752EC4E37 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 3424E46387395C7A941BB0751515D80E /* slice.h */; }; + 87C0791E451EC3266C2A8AFA7E2385B9 /* FBSDKAppLinkUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = EE30AC83C2152FD05317EE87C33ED6EB /* FBSDKAppLinkUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 87C8A401CD1FDFD954C6E2BF55CEA568 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4190D3A80247409629C5ADC935DFD8EE /* common.upb.h */; }; + 87CF3D5AF346E406EBCF805F969A29D6 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C9B01CFB885BD5AC743F5A6D9C4BB7 /* alts_credentials.h */; }; + 87DB652CE8E97300DA7E08EA23D2096B /* server_initializer.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E8DCACFC67253E0AD9E2C3E795F4A6E4 /* server_initializer.h */; }; + 87DEE22E9ED6E877D0BC6ABA1CCAE092 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 1114FD6CAE60DEFEB48FB5DE4AE0EA07 /* file_def.h */; }; + 87E920ABEE51E7D6FE4314B1789AC49D /* declare.h in Headers */ = {isa = PBXBuildFile; fileRef = 79348F33F5BA54C37494C6B7DB9D499A /* declare.h */; }; + 87EAB5D7BD443FDE3FD3725CA5AFA6CC /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = CC820418D361FDB4B11B4A032121D96A /* race.h */; }; + 87EC55926C947F1AF2E37B66D4686C32 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A69623A2B08A7C7C83C374492019626C /* regex.upbdefs.h */; }; + 87ECF8205FD14E1904AE0EA1593E08CB /* str_split.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 7BA6D9C3CC07AD4A10559938D24BE07B /* str_split.h */; }; + 87ED675D984DE17D08F9958BA8B80B26 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = F5CFB75384BB266D09F6C53992D841BC /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 87F20D91DD20BFC5A7985A91129B41A0 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 6791D7D0906C616F30778E2E319CBB13 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 87F2A0262C90E7FEE0426FA362367C35 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D3D265F8B66869730FAF0B2C1FC2A4 /* method_handler_impl.h */; }; + 87F5B0BE4E09A9F47696E2003B75189C /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 462253E31CCCD5A680503825B07A4A99 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88013034082851F233F52C27BAC41202 /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 15672815D3F2BA8104B1776CB619A1BB /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 880D9A321D81F25DA9CBB5F43C500A45 /* FBSDKApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FC9A4FC1676CA61A92562A9C262DCB /* FBSDKApplicationDelegate.m */; }; + 880E60BE46C3B3232225258FB13114E4 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F3F4AADCF059985FA5D1D6D9E7FB21 /* alts_security_connector.h */; }; + 880F46D1C7F28491AA32FBC1ABA303C6 /* LLCycleScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1861ED19FE028290B08076A7F8BF952A /* LLCycleScrollView-dummy.m */; }; + 881683EB670854FBEFB3238D68A36E40 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2198097276D40B5BF254F9EBE40E2426 /* client_channel_factory.h */; }; + 8818D2D4A757535B1C02E3D66D88729A /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DF21314DA07CC10013D5D93ABE6F898F /* address.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 881BDF08C6FB4F709D7FB2827A3E3EB5 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92D35EBAAFD689028C738A1791980CC6 /* circuit_breaker.upb_minitable.h */; }; + 8824D797AC3A48CDAB2463F571F1B989 /* http_proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0F6CFB5379FB5DF2F276B45C6ADD86 /* http_proxy_mapper.h */; }; + 8826CA4A7FD6BC41FB4DF9A63EDDC20C /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B0049E2BC91BC77ADE4ECEE26A8E253 /* hpack_encoder_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 882D26399E5D859C1F91C9E31CC87425 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 557E751BCC79D245BF2EC29AE9E93752 /* alts_tsi_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8835210225D7DD6537F9AD2F7E4E3C63 /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D203B6A8801E878AAF1498BC32AE859D /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8837E554F3A734F1172BD05C2C8F9F22 /* internal.h in Copy crypto/fipsmodule/modes Private Headers */ = {isa = PBXBuildFile; fileRef = 50815940A06E0E6359EBCCE5F1A4F400 /* internal.h */; }; + 88428B34B72B9F575970577BCE5B445F /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9D6255D5DE62C3088F607BB62729913 /* clusters.upb.h */; }; + 8845D5B69D2D529519EFF7E018CDCEC5 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE7C9118CD4B37ED6702C4C8BD200B2E /* metrics.upb.h */; }; + 884BA0E06D25F59199CEB262D479305C /* FBSDKCrashShield.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E061C6ADC1483877883F62563C7B24 /* FBSDKCrashShield.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 884BF5C65AD969E19D7A9AFB96ADC1D9 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 6833056D8C96024AFF7198578D0244A2 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8853D9B7E90AD6C26AD3FF39EF362469 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7AEDE035ABDA429AA2ECE7B25E8FAC /* cert.upb.h */; }; + 885702559D62B0E7BDE263614909D9F2 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B7388BC4949D7ED61828CD1EA59D9E /* json_util.h */; }; + 88610A4B4AE690CB0BA3202190E70868 /* link.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A93CC106488FC69AE7D3EDE4881E6AD /* link.h */; }; + 886C159A9802D2449CC3A8BE0CB9E4C2 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = E72FFF07578858058B4872CBF372C336 /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 88848208686EF837A729330EBD5C317B /* http_tracer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B19343AC5FD954AA7917604BDE3CAB2 /* http_tracer.upb_minitable.h */; }; + 88A2CC0957160237935FE46EC82D4984 /* config_source.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1762A355D2B5B014EBCEA3C7166B700D /* config_source.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 88AB1E41CC30DD6FA5BA36D50602AD7B /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B2FE6AF746B331330E3E1854A12AAF /* symbolize.h */; }; + 88B704524EE929022B08D3F6F46692B4 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F4C0F3738E1A0BF4319C508736EA0C7 /* route_components.upb.h */; }; + 88B77E83AE93D898F6BE75B05A23313D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; + 88BA39E873D593281A9A8E6B1CA21CCE /* xds_dependency_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A0617956E5DB39FF4CAD77B08865A1 /* xds_dependency_manager.h */; }; + 88C0E0E843C889DE9243CE9005AE3C37 /* for_each.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B4C1F42B1F03901F59406A22F44928D3 /* for_each.h */; }; + 88C5E5D0C611B761730A531EFF8F27BD /* orca_load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A4705BB1F434F8F5FECD31F803658B /* orca_load_report.upb_minitable.h */; }; + 88D3128AEDFA604C191E186E2DE7CCE3 /* socket_option.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9468C5C40043647C7C2F85C53553BC29 /* socket_option.upb_minitable.h */; }; + 88D476D3541815A2D4D868AEC0737129 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = CB644AE3D6C10C2933BFE98A8FAEA4B5 /* ssl_transport_security.h */; }; + 88D667D4352655E382BF778344F1CCA0 /* FBSDKDynamicFrameworkLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CC02CD24255C2F8A907259F0196A0B6D /* FBSDKDynamicFrameworkLoader.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 88D80C58D1276AF4A930738932D927E5 /* call_final_info.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 26B0E02FDA828E28B699C541108F890B /* call_final_info.h */; }; + 88D85C36CADC7E7F48E9ADD722C79817 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 862F4D1BA18CBA9D00A7CEA34F6944BE /* grpclb_balancer_addresses.h */; }; + 88DC7F345C3DDFE4160152B38737DFCB /* slice_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E801959856AB6805D8D9056831C3231 /* slice_type.h */; }; + 88EC506FBD17EC585857AE0D0DA78C1E /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF15F915C0561104003BD8D387A4A26 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88F07C82C846CF7F945A73898214F0BA /* udp_listener_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D90E0C45F8E535974B5F049713086A9 /* udp_listener_config.upb_minitable.h */; }; + 890FCB06204D1116D198F93152A8BB7A /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69384F6A81F9E340BEA95A0379354D48 /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8919C4B8A5A75D350F376066E566E5CD /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7314EC54EC8D4208DE9DF947EF991DB0 /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892F630982FEA57348D1A6DEA8EB189F /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF4A45FF954255D82D95FC26CA4F78C8 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8932068CD202B5DAC1A9C08FE5FADA59 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = AD4713D32CE013043C8D0A38E24F98E1 /* time_zone_info.h */; }; + 8944ABAFF50FE418659D305AB3A60F87 /* logging.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 7C76FA5B98A857E05C2BC37BDEDBCAA0 /* logging.h */; }; + 894736FFCD1E7551802C62D3FCD43894 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FCC1031C8044D42D8B24B0F69E09C0 /* metadata.upb_minitable.h */; }; + 895294929E52B696C940E62F2D44FBEA /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = CAFF0A6A48D78553506885E9CB7AC600 /* tcp_server.h */; }; + 895659F46C39590E322D3FF7E41A4E45 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CD8D1E0B764FE6FD32B0D36BEDB9CD /* rpc_service_method.h */; }; + 895A5F019CC729F77D17B009D4F26B6D /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 27E03352CB121E5B0A3755572C817ED2 /* status.upbdefs.h */; }; + 895E74232480EB7AD3D07771631AC32B /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = E424E2038D6D2C1D6F842A885EA7592B /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 896445B84B1C2C659EF77E34EEB53B15 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17E8BB8D1A5875A5A9F8A0D5C04EF31C /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8965D0BA0BD65E816F8CF7937C0DF652 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA085EDFBD05FDF06549766DF9B342EC /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8967C38B44ED5BB146FE980CC97F794F /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 89236BF9E101AD12E2901444D45C0DD8 /* grpc_if_nametoindex.h */; }; + 896C16E50BE84D46B46C9FE1A1E5DB61 /* crc32c_inline.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BB176DCEC9060A52AF6A2701E59F8B03 /* crc32c_inline.h */; }; + 89701EA202A9468A0D916071AD65B293 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 9908E405799FBD83223E281AEABFCEDE /* fake_transport_security.h */; }; + 897B92249A578A6CE99206BB997A4297 /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = D426D544D54900B6B15B5B494769D3BF /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 898507E621706E4B1C627B8BD04FF1DD /* health_check.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7794C0CCDD3DA422F76B006F4D45D0 /* health_check.upb_minitable.h */; }; + 8987EBB6198711FA162A742FAADBF35A /* spx.c in Sources */ = {isa = PBXBuildFile; fileRef = 719012FB60D034733B6B1127BBD5CA0D /* spx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 898F2C936FC485324C7FFC8270B92E31 /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = FB8D594201E2A3CD9DB788A6BFEB40C6 /* FIRAuthCredential.m */; }; + 898F9C9F233F51BCF72E12A0F876E888 /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D363A61F4810854DB31DD22F37FC69 /* trace.upb.h */; }; + 899191C2279E7EB7DD08455431A3BD1B /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 470E68EA343CB2F510BCBC6B8A1FA27A /* query_extensions.h */; }; + 89985C1C455CF9C1808B43AB1FBEE0C7 /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DC1715C8EEEB3B79CCB19549FF2867 /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89A675CA8B28C80C242C762B1F741258 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC2D303E3791C4139CBA1DB42F88F93 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89A82DA354108AD16CDAF5DD0642D2FD /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = C80BEE071985078C2E00908BD118C839 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 89AD56E34226C3B7A07710AC4B66FFDD /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 3A65B879700505BDD2FF378859447FCB /* extension.h */; }; + 89AFF53C151A8CE015A94E0D467D41AC /* legacy_channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9980B419CD8521F0B657D7B4199D51 /* legacy_channel_idle_filter.h */; }; + 89B39377E5537230AED98D5C7A1DA0DC /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50207B1AC6FF363D1511735DE5774CD1 /* grpc_method_list.upbdefs.h */; }; + 89BBDA871D7B420545D1953380ABA516 /* zipkin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCBA403E3CB954C6BA892CAAEF6703E /* zipkin.upb_minitable.h */; }; + 89D898460C4094C8BAAE674A2B6FD804 /* desc_state.h in Headers */ = {isa = PBXBuildFile; fileRef = F026ADEAF9B224DA3BF210226E67C80B /* desc_state.h */; }; + 89D9E265E50613BF76946B91D7E3B9D1 /* route_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E626B20F6E5B43F313859E1B7A9DA91 /* route_components.upb_minitable.h */; }; + 89DF2D9C5EFB02A72EC0CE2138B77F35 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C454BF63A0D72F9965FCCCE24D87100B /* SVProgressHUD.m */; }; + 89DF4E19C4A60F1F73BC9686F05BB251 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 771019266B5E66C636896E6A32F88A48 /* time_precise.h */; }; + 89E29118E4EE49F6B43709FA4318F0D9 /* sync_abseil.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 25A0CC7B0DA2FCAD4A30D40A1D253478 /* sync_abseil.h */; }; + 89E7710746BDE2D9E092CE1CB92A1B1F /* FIRSESNanoPBHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D70B74E2C58E39C132389C39ED0768 /* FIRSESNanoPBHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 89EA360C137EEEB7B8AF7B989DBFE6BE /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 52446B53C1125C2A9A76B588D69A051C /* channel.h */; }; + 89ECB15CA2B972FAB1285352C3A1FF7F /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B47279561F06F232C98FB7FFC9996438 /* event_service_config.upbdefs.h */; }; + 89FAD1F482B8073F73EC27BCD1FC539A /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CEF37A4C13D7762AE7F66A1DE2AB82B9 /* metadata.upbdefs.h */; }; + 89FECFC919B6E2B3145DE10FEBAE0DD1 /* FBSDKAppEventsUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 636DFA5F9CA88707469EBC5631F1BFBF /* FBSDKAppEventsUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 8A101AA63CDFCA4895AE5174299368ED /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85919D2704D354FDDC23E03F4059007C /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8A212D2DBEA4974B95DBC3276F6CBAB3 /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 708C583327DA0938B31DD4081DCEAE82 /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8A25CA8EA9180F12F5278918616D2B96 /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 033538E686E47C1736A82727B02A28B3 /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 8A468E055EEACC924768B2318898C9F1 /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E457795B706C2278F774E6D3D6DDF95 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8A4B14C39EB865C596891BEC143784D1 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 29841A8849154F1617DFDEDBC689BF2A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A50A75038B0AB4CB705E377D71D84BA /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A40E98C18DCD705CBCE5ADC488E91F2B /* percent.upb.h */; }; + 8A57ACFE573E37616B56E376E7CE689F /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F21C27A15A012A90CED6A39854B3DF80 /* error_utils.h */; }; + 8A61169635F0F85190F733386D7D97B4 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = B454EE38384FA7272059F594557AF807 /* symbolize_emscripten.inc */; }; + 8A6308279900AFD611614E29ECE50AEE /* builtin_curves.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFC6E47ED1A72A40E134902F2FDE9E2 /* builtin_curves.h */; }; + 8A71B3C2A2EA9588CDC6D1919961BD1E /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA537A4942E5D67DACB8B9319E20FD5 /* config_dump_shared.upbdefs.h */; }; + 8A7885EB72C009553B37D8FA5EA4E46B /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5B801C584BF4505CD18763E9B31C4A7D /* memory_allocator_factory.h */; }; + 8A7FA0D088EE219AA78937A684E6E5FC /* crc32c.h in Copy crc Public Headers */ = {isa = PBXBuildFile; fileRef = 703728574293CC44C806F1BA183E0787 /* crc32c.h */; }; + 8A80092D9B43668D3893CD4D6CEC8998 /* FBSDKEventBindingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5992CC021F279999EC3A629226AE1C0 /* FBSDKEventBindingManager.m */; }; + 8A8E881B960727986F670270B3872E98 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 145488D90013A209CCF1447464AED5B3 /* matcher.upb.h */; }; + 8A8FC68EA8C903BC3221F6BFD0760362 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = A69D3F10CA02D65124B4579170ACF3A8 /* event_string.h */; }; + 8AA389A19F9CE53EC7506758A0920107 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABEF1EF46F0F821B07D19D13DD1D920 /* GULSecureCoding.m */; }; + 8AA40DA3A85042CF2CB882B3723BF89E /* def_builder.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D083D074DE7AE37E9170FD704875BF /* def_builder.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8AA44486460BFC3107D0C0637782F17A /* randen_hwaes.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A4040A683E2A7803976C77BE84BEDC51 /* randen_hwaes.h */; }; + 8AC46DE9A5023B37594FDC0C457C1337 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D23CE9225E5761C795FD0B1BD10D44BE /* timestamp.upb.h */; }; + 8AD9C9D0A33BECEFC78547CB24674C0F /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 87E3AE2C838FA1FCA4842993FC896800 /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8AE48A7C749A1F07FCA717E451074188 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 013C0432B9F5891BF96DDB534DDA117A /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; + 8AE6735F9AB90DB23FF045F79760727D /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2367C0D3BD03677AF1EC946A274C315C /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8AE8A91EA8CB09ACDC9B2A8590FEAD45 /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 375A54CD0A2392965560120AF5004586 /* buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8AE9270B2C3EA0F8BA140153F9FACF1F /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 879BF7FB57EE9B72BD1E23ECF9182319 /* endian.h */; }; + 8AE9CD6123D7C2D3DEA611FEFF1EBFFC /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B4B7EE79A838DD24C017201A24F20 /* lrs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8AEB9C3039B3815476424D19B41542B5 /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88F147F33B1D594F290392C52817F460 /* ssl_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8B02279158616BE4EDD5DF2DC34681D5 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA0E8131594CC9A5D9C9EA333AD6F701 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8B055CD8FA939D1211E8B8B1714DF46D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 61E6DF771163DC27C8AC001A5E7B7106 /* PrivacyInfo.xcprivacy */; }; + 8B0DFDD3FDD2F187FB149A8F0814D5C7 /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B1367008FCE7E88213D56A69DEF93A5A /* tchar.h */; }; + 8B11E591076D3EC600EFB7E2B1F3D6FD /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 695E53D01F54281DF30B3BCA8BE068FF /* security.upb_minitable.h */; }; + 8B12AC0E4DBC57624A8BFE7CB3D21D5E /* load_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 966CBCB8BF8F371C67795F5F3D165AC0 /* load_config.h */; }; + 8B27A17008B9B2599D7451DBE2D196EB /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = C131EC6553F82A696D462F344470A836 /* proto_buffer_writer.h */; }; + 8B2FC0E26C98EA33B8207CE718A1F4EB /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB171A91B95B269945184CFBC9BFD24 /* FIRCLSNetworkOperation.m */; }; + 8B3035FFA944D00B550A3A39857DD2C1 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB220D966CE471E1C6B51F1E434589A3 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8B331CB680B11E47B85004A39D40722D /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E5570C8363D66718CD1FA505C3A4FA1E /* zipkin.upb_minitable.h */; }; + 8B35F5FADB1138CF4ED6CE50E5788786 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 84B43C9307DDEE677ADE964B370D2D04 /* promise_factory.h */; }; + 8B3920DDF86B96629E868A78FFC880D1 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = 2827DCE479256B69B94919A8CBF62277 /* oauth2_credentials.h */; }; + 8B3EF495DDC3CDD7547BEAD17B255255 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C35CD22A9AB732639F261DB5E90440B1 /* resource.upbdefs.h */; }; + 8B40421479E08970CC49E4C5D5A48DC4 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 29566837C83908AE768AAAD4FE657905 /* deprecation.upbdefs.h */; }; + 8B448D075C042E8632862CFBAAA37DDD /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 457AB4E2347A73977DB84A45DC127DEE /* encode.h */; }; + 8B4C101F33A568B4C2298D155C0836D2 /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = ADEA5E6064A8A26F9328534D40C9DE5D /* posix_engine_listener.h */; }; + 8B4EC3F54696FFDD8E8A5F3DEDEF0733 /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FF794A10B30E2505AE2128C0144BB8E /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8B52A781EDDEA060434EBE4105772FA1 /* Timestamp+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 086A5A66D13D5AE795682BC53BAF5023 /* Timestamp+Codable.swift */; }; + 8B5F4BD948EB3B5C451FEBC100961B4F /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9113579C24CB5BFE9F1450E092739F0B /* charconv.h */; }; + 8B6498E6B4375A26399D7334C70FFAD1 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A48CC4717B333EBE6C975A3DFA020D24 /* cookie.upbdefs.h */; }; + 8B6DF7A13F2641E47C3FAB165D10B5DF /* base.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DFEF347C714F83EE46ACA76A113C7799 /* base.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8B702B229E07B23084F3576CAE9923B6 /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 821CF53D948438526D4FF6E1FE072297 /* enum_reserved_range.h */; }; + 8B747F23C0B563877A35912AE4BA4BEB /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D321208A0545171E6E7520FEF3E7D40 /* api.h */; }; + 8B7620BA40A498B082DADA13D8555E2C /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6274ED70EEE9C9449451D48E1033A5F1 /* channel_creds_registry.h */; }; + 8B769B7B9D41E396843317907D9EB903 /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = A177981884DE9D5346233B94BFDBC219 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8B8212C3B6886024E58822210C3DFB9D /* FBSDKServerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = BD58D53085E6A2EBDAC2A63DEF8DA1B0 /* FBSDKServerConfiguration.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 8B84CDBF7C2D6DD877642B3FE43BA328 /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 222D926C235F83FB2D998089AABB5570 /* validation_errors.h */; }; + 8B8B06341C1708087B903B22197BFCA0 /* x509v3_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 261826F32722C791F8387B85CDDBB7D7 /* x509v3_errors.h */; }; + 8B8BBA6595EEFA8F382359D462BB9D00 /* load_config.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = FB65BC1EBCD163FB538931110A1F74DE /* load_config.h */; }; + 8B8D383E477783962D87DA40602DE969 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F03CDAED5D9FBF0328F025F69758548E /* path_transformation.upb_minitable.h */; }; + 8B9C5F091F46D8A48971A0990C011B8F /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A99EFD40212F40F029BDD3B6867115B5 /* address.upb_minitable.h */; }; + 8B9D8929D0C163A0B4C010676B7F2F28 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B21383EEF5A69A5FD7C600345DC1BCD /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8B9F80734BF8A6BA72D2404317E28768 /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = C5BA945DF73C036474BC0DDEBE96D2CA /* varint.h */; }; + 8BA8BA906C562A884A9D635DDEF26512 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A69623A2B08A7C7C83C374492019626C /* regex.upbdefs.h */; }; + 8BAC5B6FF05FA46B5F39E3A457E0EB7A /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = D01F212465EFCEF1181AF9AEA299A46D /* event_engine.h */; }; + 8BADA9767D17E7E7CC2550B3B40D83D5 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0510791D2E6ACE818657EC1890F0F139 /* listener.upb.h */; }; + 8BB15DC41BA8AFD3D6E555B799CE6C03 /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 46829D1B1885FD727984670EC73B3DC2 /* des.h */; }; + 8BC56347656AC2D58A01191348BB9BDC /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 08978A04CA1B8CC0C90F4CA36A596A14 /* tcp_client_posix.h */; }; + 8BC5F1DFD3353D54D22D90424B00DB49 /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5562F261F5287F1E5E46A48CF8D2B604 /* xds_channel_stack_modifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8BC92C22CC1BBBBCD45D6AE3FF87A500 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32296E483F12B4C0B75B3DFDB1F7F29B /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8BE62688B74A1B798CE8AC6B24A1199F /* health_check_client.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB60477420A4307F225D670CC0417C6 /* health_check_client.h */; }; + 8BF303EAB7E0555996A3CDEAA01CC313 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5548B5101F4F7803619F4600483219 /* cel.upb_minitable.h */; }; + 8BF7C67AA56F0398DD7EF42E2A9B001C /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B357348F71BB96D036787B0CA9A7C6E /* common.upb_minitable.h */; }; + 8C051867F985B56AF29D61B846D6DE7C /* throw_delegate.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1A395AC2773900746CFAAF0AE57A0DF5 /* throw_delegate.h */; }; + 8C17918533FF0E07700EC226302B94B4 /* ping_callbacks.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8E5AD804AC063BF78242D236F27FBFC /* ping_callbacks.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8C19E1906471FA4DA2B4AF6DF73BC76B /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 0990C0AAB5D5A87B9297E4CDDD4BFA74 /* iocp.h */; }; + 8C24DF620A4228B396D5A0CF0AC09214 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 1FA4B148C5D6B5D5D8D7030E45F7DBA0 /* subchannel_interface.h */; }; + 8C26571A5ACE33D30333773FB0E96B00 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0EA374E7DC6570B9EAE49B3B444D65 /* xds_common_types.h */; }; + 8C36D285B9F7EB48EF23FBD7AFAE2CDE /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74101926C3595FDA31C74E0E4204B950 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8C42F428A52181C51D74092F42603730 /* call_filters.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4CEA4E38A42FEE69927359777E9069E5 /* call_filters.h */; }; + 8C50D4B9B173C5A6020B27655E8A11D1 /* retry_filter_legacy_call_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2875F9F7CE4B6512D9DCBCECC1EC51C2 /* retry_filter_legacy_call_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8C6BC185F4D84A8F938C9371D5ACB672 /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = 520EFBC681C9447002B60293A375AE11 /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8C6C3CE9ECD632F0905FD500A20260C2 /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CADAD80495300BBAA75564A9A24AA02 /* ssl_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8C8C1E6A9DC0D30EE21FEC1D4A858708 /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 89300CAA8D4124C9BA735FC7F3287B00 /* migrate.upb_minitable.h */; }; + 8C928097ECC26C0D888CC600526BF5A8 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 052909F0A2A4216848B164105741F34D /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8C95520206FBE0FB04B32012010066A6 /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 91A1A381E2A0D7D83EBE7E50615D1A68 /* write_size_policy.h */; }; + 8C96BB556F90F7A24F775C331A0B487E /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D893D71B01D389D520E3D9B84C5CCC2 /* FIRDeleteAccountResponse.m */; }; + 8C9DAFAFDC4805BCA47C9805F86A4BEE /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C48931E9E3BDB9F6FFB26F947D7B95 /* time_zone_fixed.h */; }; + 8CA2320CC715B47AE14A336948307E00 /* stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 88552DE09052E43B63150278CC2E4A6C /* stateful_session_filter.h */; }; + 8CB0F2D353E224A12380A1C915994056 /* xds_health_status.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C9ABD5BE8C6866F0D9238DBEF1975EEC /* xds_health_status.h */; }; + 8CB96F672389F3A7517D8859429652D5 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 03E82C036F33D6338E07756855797090 /* time_zone_impl.h */; }; + 8CBD571DB9D806DB555AB749B3AB7774 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD7D692823D1143AD2670A6781D272D /* sync_stream.h */; }; + 8CC41F4D11A0F23178F1E045F41D382A /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB4A9A40E8DD8556CE89DEF326F707D /* slice_internal.h */; }; + 8CCEC4077484808D89CE1781BE044CBA /* decode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 18852AC03B7A2985EEC2441932668C80 /* decode.h */; }; + 8CD9D79B3CE5F10B1D9FB178D68145BE /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C6CDC9E5A154AB7854CA37B5F103CA /* closure.h */; }; + 8CE00E7C1C0DC75D38DB71E9E7EDE4B1 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB42EDCCBE7CB46DC3E11278DA2552EF /* resource.upb.h */; }; + 8CE90A82103009EEF1F68894E0FD48ED /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F6D853419D080D17C5B3D9D68763ECA /* inflate.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8CF150F9BBACDA8524F13F8F0740A6E5 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = BCCCE7A4ED1EC9F7FEB1538C8B98D65B /* rls.upb.h */; }; + 8CFD3895BD1DDC2047765F0287FFA98A /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 54175CA9F046F766F33AAE32287D1100 /* spinlock.h */; }; + 8D0035A8AB0CBC85618C4E318EDE895F /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C1076B34A6BD1AF912E096D5622B91C2 /* utils.h */; }; + 8D0BBB64365935B01B7482897714D89B /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = BD4ACAE4CB5D658A522785ADC20DCE7E /* call_test_only.h */; }; + 8D0C5C5BBE1128C1B11A300BF7BB8938 /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E52D20AA78E0E3737273FA3B79FF1342 /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D10D1AE8C8159FCE7C053B3BF7A11E4 /* zconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C6B1753847694E523A0B03C7B3C502 /* zconf.h */; }; + 8D1F2B321A1381BF4837109F08F91CF2 /* marshalling.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C86DED5F6ED862F2115836CFF6D54AE /* marshalling.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 8D24A60298DACE32C619F7D11AF929DC /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = FE378C1506C10C0FAEAEEBC0362AF5E9 /* fast_uniform_bits.h */; }; + 8D32212EB52E2BF2F0C34072B6FFEF80 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C44FF8FA280D675F54800E458FC98A /* FIRCLSMachOSlice.m */; }; + 8D3DA909ECBAC8269DD4D69A76BCCD9B /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = D0BF2637BE23803A667F66ABBC4FD591 /* grpc_alts_credentials_options.h */; }; + 8D68E1E2772F5672755247D09B6E5E44 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = C22D0F91DCF92AB6C35551796C84E5BA /* server_callback.h */; }; + 8D706ED5A6A1B56C951D228BB340D479 /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = A25D801F44B62C1F0317EEF0D20AAE54 /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8D724037DE124450DF531C0EF7C855F7 /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB0A315986FF68A76E9FD650749B296 /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7D0E9E2F7B545F6512E19092F579B8 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 827AC848C0CADBEB847A47784E54DBDE /* http.upb.h */; }; + 8D7DE3A11F47646948ABB93EC3AE7212 /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = EFCA10A6F2C50752B8B493BD94F379A9 /* FIRStartMFASignInRequest.m */; }; + 8D865177726384CBA6416E9E3246E6D6 /* altscontext.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F388EBE66D442CA345A28570094C8BA3 /* altscontext.upb_minitable.h */; }; + 8D891D6D0CEE11300A93311459667226 /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E9870A3ED4F09056DA3390765240BE04 /* accesslog.upb_minitable.h */; }; + 8D8E1B472D3CCAF74FB367FDE29EB2BE /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A999A9EDA79338B4950A2411D18CA83 /* rbac.upb.h */; }; + 8D8FE4ECEAEB53F60D12EBF8C8C51DC6 /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0BABA23FAE113FC89089D4843CF73F1 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8D9770A778AACE1B42024C9010381000 /* client_channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1199CF68F32B82A208261EA63BB036E0 /* client_channel_filter.h */; }; + 8D9C670E74EEA14D61A28949FE33AE7B /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E8571976F0B42C13A776925E9FCBBEE0 /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA4D2DDE4D9876EFA67D7D705F45496 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AF75B9495B657565F351B102C6424CE3 /* decode.h */; }; + 8DA8F6B7D52B70B632F470108E598717 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7CCD279258DE737C427441B3F9B2619D /* string.upbdefs.h */; }; + 8DA8FFCB1083B89B8F3827A5AE2979F9 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E78D0AC1F5AC1D382B64AB314D9CC8 /* evp.h */; }; + 8DAE215BE671D06BBDF9439CF929B51B /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = A0296BDE48803F43E4FFE9DD1AC10C01 /* variant.h */; }; + 8DB2C2DBB673BE11F62864E1107582D5 /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28B98D0ADD0CC303AB45F3087399ADBF /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8DBCBD96CDB283029950401B61E145AF /* posix.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DD0BE3AD8AD99CD0BF601BA411DCCB44 /* posix.h */; }; + 8DC136078F3824DD069320F426F8202C /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A26E80EE65EB95E6CE963FD13B682D6 /* status_code_input.upb_minitable.h */; }; + 8DE95E2EA99759BF92E8770A0CD45FCA /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = C540AB2576EB88B152B97FFDF369082A /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8DF69FF4C8CBF46D2781545A60152BE5 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = CCCE6C9674D43200B8931BDED7B101B4 /* parse_address.h */; }; + 8DFF6762936BF33FEC7B45EC9F481106 /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 50D3857706DCA54687F2BC977FF8A8ED /* get_current_time_posix.inc */; }; + 8DFF69A73D2925415D89F7C33EF24DDB /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 63BFC186DEA98FD55F3087DD0A489F08 /* frame_window_update.h */; }; + 8E0561C220640CC2335A6F07EC66C497 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE84F6D661D60A49922B2A22D1D64FE5 /* cert.upb.h */; }; + 8E0C55C40E65C47948FFC1355590239B /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 09D2EF6010861F943A00AE4A3CA29EDF /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8E15D196A2098E7212D873608870C73D /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8E41B8A7E0D7D40A23C5C5B305F40FFC /* channelz_registry.h */; }; + 8E16E1EDF1B4306FF93ABC02CD5C9D73 /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = DE283260B5C1A0AF9A265F6C494EFCF1 /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8E1FAF599BF44863249CC7E45DE928B6 /* sync_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C522D56640F59B47D49F3A0BFE65D7AA /* sync_stream.h */; }; + 8E21B39023CC46487C948019F4325A8E /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C387C0B8971637E486EB77C8D5A88DA /* alts_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E2F2EF0B4A192AA07DE8BE5E8450BF0 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 020448AA0C46D5C0FED4D3058B63FEBA /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8E3C04FF2125CFF60C068815D55BD3A7 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = E72EED7E1B2F60D650302D4632612511 /* slice_string_helpers.h */; }; + 8E43BB5533E2ED480E487377BCCE3EA9 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = C9359F072C2E5E0123094B282F6D1215 /* status.h */; }; + 8E4B5F1E37D055F79CE820AB8F714919 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EF2CE2B033F062B6C14141AB1B36EB /* utility.h */; }; + 8E52B7D9274928391E70E2753452CFA8 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7025F8FECF6879D139D183D1A709F00A /* token_bucket.upb_minitable.h */; }; + 8E5327651079CEEC01FE39527EB56FEB /* lightstep.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9468058FAFA60264A43F358870794E9A /* lightstep.upb_minitable.h */; }; + 8E53A0556C079ACE73FB55C56DB40515 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 09DA971D368C899A08884B7857A9F4BD /* http2_settings.h */; }; + 8E56A7CEEC54DE1D064412F49A42542B /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = B19DEC87C65D84B485E0D3F2CA8C0D23 /* xds_bootstrap_grpc.h */; }; + 8E5D0066FF002B16C108B68C5A779C7E /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D7BFBFEAA39E7E88B5D2E2241BBABF3F /* tap.upbdefs.h */; }; + 8E5F827B9B326207EAD65B72DDA2AA0A /* SessionsSubscriber.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D93E49A18FFAABD27618C5A4C7BE1FC /* SessionsSubscriber.swift */; }; + 8E66E4669CEA69635116B211D48FC826 /* FacebookCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A51A787A976AA6CE1B3CBDA2A509E2A /* FacebookCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8E698F134A953250D5834C8B83CDAD34 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 028144572E10FF8F19F3FD7C1332C38A /* DispatchQueue+Alamofire.swift */; }; + 8E6AD45E3ACE0B7AD4EC07D57DE1EB1B /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4ACAE4CB5D658A522785ADC20DCE7E /* call_test_only.h */; }; + 8E6E1DD09BA02BDA6686C433FF4240BC /* wrr_locality.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F25789324E3443DCA930B7F0646835E /* wrr_locality.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E71B6771F4DCED52ED927E9D3B5CC31 /* port.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 0BCBCEC5C35BAFD39E4B214DEE6AA053 /* port.h */; }; + 8E778C0090C85DDB5290B07143FFD917 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5894F923B5293DE0FF8BFD1268989217 /* Filter.swift */; }; + 8E7E9B58CC2176128BFA1C3CB9481605 /* circuit_breaker.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 492AE202311C951686C79B6DA98768E3 /* circuit_breaker.upb_minitable.h */; }; + 8E80D1C2E0AA7CC90890689181820B29 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DC7C9BEDE4DA10D3FB9B8F2DB9B21F /* frame_goaway.h */; }; + 8E81D346724F33F867B6D6F289BA0226 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = FC29AE623FB4CD5904117A73DB762615 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8E827C8344FBC2D8A21C70A0A431920E /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B2C819F3D8865783D2A7D0CE0E238C /* walker-inl.h */; }; 8E85763AE29BEF0A46EE875B8F069E8E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - 8E8606E3662FF49D7A506E6476ED5C0F /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 150AEF09EC2E4BAAC1E66667595DC00C /* TZImageRequestOperation.m */; }; - 8E8AF3518D30959427E4E57B004A5DD3 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = D23F1F8FB994EEA987CB9A86EF5B85B1 /* int_table.h */; }; - 8E97CFBE4B0AFF62CA897CCA923F4982 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E7389081392986B9A983813C96642D /* channel_args_preconditioning.h */; }; - 8E987ECD9BDD078AD326801E26D5A265 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB5F7243AE4E43C58A532B75CC26791E /* value.upbdefs.h */; }; - 8E9BF76A20603B4AAF82B5B8F0C02EA4 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6AE22C112F54943D06BB604076B7EA5 /* metrics_service.upb.h */; }; - 8EA3D75EDCB295AA3FADBAD0C41258F5 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0EB179AC98D0078EF4330CEF6B927D9 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8EB823DC3ED9AD9FBF6B91DF8D4DFE16 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E9ABC132611580D82E073643A68A68B6 /* FIRMultiFactorInfo.m */; }; - 8EB9B68EE51E177F68EF4E88D53A1CCA /* tcp_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDE88D3F0B457DB280B44690677B57F8 /* tcp_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8EC2E8890619F40723A022B950015510 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 48C557AF7BF1CB5D2176A95EF700918D /* filter.upbdefs.h */; }; - 8EC9E656BDF6063AC37FD95C4588FB68 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7A30DE2BC7D0F5A24E5E0C5DFC767532 /* tcp_connect_handshaker.h */; }; - 8ED734C847A7E04FACE4F9E36B9721A8 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = 1FE033E19FD7E8FA4D23D4AF9EF0A849 /* stateful_session_service_config_parser.h */; }; - 8ED8B0327D29936C359D53A7C7CAC495 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5BB0F80A673450756ABA948BCC48CAD8 /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8F03A92A626C9376AF667C9EA3CB74B4 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F6042CAE113C4981EB8B5004E0478A66 /* channel_trace.h */; }; - 8F1F1A45CD2FE961D02B99B0C277FB39 /* DocumentReference+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA5578246CD26EF9D756E304A26C6673 /* DocumentReference+Codable.swift */; }; - 8F2469CC98C1063EF85E23181FDC0948 /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 086DB6599BB162ABD38B5AEB95882764 /* resolve_address_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8F2527EB716A499C76C28D83FC730C83 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDEE5DDBDA7912AB5387FDA4271BB86 /* pool.h */; }; - 8F32A308A5C48F7403E795B66E0B15ED /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C25883D883BF9E1646A4DE81895132 /* uniform_int_distribution.h */; }; - 8F3474F53E24748CA79972917A547DC9 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6856A54FAD9D3F4BCFC2CF359E26868F /* sensitive.upbdefs.h */; }; - 8F3C0CD586D5437B1110DA24D394AD8A /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 177AF513C4B5E6E524CDAD1A5F6F3421 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F4A91395F39EEF6D1B73CDD87972DDA /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 98297097A69F101B796C3E865069F3E8 /* grpc_ares_wrapper.h */; }; - 8F4FA472427471C192A6DFC5A8338B1C /* alloc.c in Sources */ = {isa = PBXBuildFile; fileRef = E367C0AACF23A3BBF0F97329929041F7 /* alloc.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8F572C2C612C1E6A6BE89131F40D3754 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 101479E2ECE319C568F741D16D6621AB /* url_external_account_credentials.h */; }; - 8F5B396984DB27BAF2B4E2CA11C55FC8 /* api_listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7D3CBB7F034841D87009205AB611DC /* api_listener.upb_minitable.h */; }; - 8F63DAD3AF95AC77E7073F4109A78929 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F85AED924534D15520C25F1EF51D402 /* resource_name.upbdefs.h */; }; - 8F731190C78E6856CE0250629EC455BA /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 814FD1BD56BFD5F9AF8EC2D62D084556 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8F7B045685AD1CE35F31D1614D604684 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7975526DB00F6FB0B8C9189E34958F81 /* ev_apple.h */; }; - 8F7C7AB1FB32E6D0D2548240BDD6D5F5 /* alloc.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 178B343D57806114B0F6106B24FADC42 /* alloc.h */; }; - 8F7E8611D0EEB54D363C5D6B9E05B2F9 /* call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4C941B7124304D06FBF53B4DCE656DAF /* call.h */; }; - 8F7EA3B085CB6F470C5B3CBA870F7C90 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C47FE53539A219E4F16D3707F8B7B749 /* http.upb_minitable.h */; }; - 8F8DE8AECFEE003CD4C5929611E3450B /* tls_spiffe_validator_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB1E1C8030FABADA78FFF89A78BC3B2 /* tls_spiffe_validator_config.upb_minitable.h */; }; - 8F8F8CB958977DA98C412C911CF9B44D /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F85BD726190168AC84594C57B0DCBE1 /* avl.h */; }; - 8F913C98459E39FC17C4F3BCE2D73B37 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A650C982DC2FFF0F18F92C613162FC /* FIRCLSRecordIdentity.m */; }; - 8F9A9E6CE52E96A10A0B9868C36C0465 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D7D576FB8333691D612AE6C44301383 /* circuit_breaker.upb.h */; }; - 8F9D6EE6FB57A845CC5B5BB4074957BC /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F0800D6EC34F7321887A8B957897DE /* migrate.upbdefs.h */; }; - 8FA6DA9D154D5F6DEC148B422BDA4D6B /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C96961DA4B81BB8359CFB479053B33 /* health_check.upb.h */; }; - 8FB4D02E159FCC28467DF46750758A9B /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FE3649CECC743D810E8024B1055EE9 /* md5.h */; }; - 8FB56BCE184A82AB78DE8CB133A5ED8C /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2337DDD1408F4EFB2A5757171E9F429F /* time_util.h */; }; - 8FC6012BD1CC4C2EC6A7F9F1C3987A9C /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE8162A111C062222283E0F81C147B9 /* identity.h */; }; - 8FC889BBD7F4E226091C5F05DD7CDDD8 /* cpu_aarch64_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 011C7C1D1ADD0E700A761ED69A807509 /* cpu_aarch64_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8FCD9E6BF0CB59681940716058FCE0D0 /* systemd_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FF93CE6164A76770933CBFEE9257304C /* systemd_utils.h */; }; - 8FCF1D98F5EEF8D44E6AEFC8FA77B17F /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = 48C5B2306E604A0F7919AA7891A85B08 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8FCF4ACBAA3A8A9CAA89FB2B4376C561 /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = E66903E7FA89178CEFF996A48BF353FC /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8FD5C5AC6EF289FD5AFE442267367E09 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09A33826993A8F0420791CAFED89F4D0 /* json_writer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8FE1CDC25A7986FEABDE1F9CD7B746D0 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DECB56E4CB068CD40A65D3038479DF /* iomgr.h */; }; - 8FF5B005E4947C0161BC57B2B2AA15FA /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B5049A699ABF27C3CEA148EB7156B777 /* xds_dependency_manager.h */; }; - 8FF9B2CC0E8EE4BA8C189001AFE08B11 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 00BD37AB3537CA25C6FDE3AFE8F55BE9 /* xds_channel_stack_modifier.h */; }; - 90007CFF9FDE2AE741F155B2C8F92FE6 /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF5239813EC3FDC9421CB44D2A305D6 /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 90069B0ED6A2272F2B096A8A59671CE6 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F9CBDDEA6D4E4F2609FB6E991F1532 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 900FC6C8EA6CC54B77D9EBDAE40E1E1A /* grpc_method_list.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DC75E418CCB893F39C675CF35AB7334 /* grpc_method_list.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 90146604E5F42F8F42175F28045A56D4 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B6DC60A8A6D8F923108B09A78B27F4FD /* token_bucket.upb.h */; }; - 9017DAD764D499941E0AF55843CDFCE0 /* def.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 45D0AA0A076A5C9B6DF7E3F99E3F0BD1 /* def.inc */; }; - 901D49213774C410B5788BA2F6A8A047 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA8B309063C41A6F071437C07EAB935 /* examine_stack.h */; }; - 902EB724DE92A2FA5F813392C0B85227 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 36DE5BD7F8F24AC476ED7D049B40A243 /* binder.h */; }; - 903665561B19F5490A08DA779C8304BA /* TZPhotoPickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB3611C6AECD849B708AA4A24218427 /* TZPhotoPickerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 903EC418C054944218466EC7D7D116C1 /* dns_service_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBB6815174E777EF1467CF74E90441D5 /* dns_service_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9049FBC59BAC54306121B63145E0DD75 /* log_internal.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3974B0FE7DE49148F07F0893DEAFB05C /* log_internal.h */; }; - 9055E86C091B0047A05AA7F0473AA002 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F9033A6DBE1456C4181CA7F9F7B6ED /* migrate.upb.h */; }; - 905B0A8248A77E0E75452B59B8A19BEB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D0689D15775B592D106AD580953C4C /* internal.h */; }; - 905ED5519C3B7FDCA5AF5B60B45A7461 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6692D4742E3B3D8C6360F50603042D49 /* ev_epoll1_linux.h */; }; - 905F11ACFF215493904B44536E2D356B /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 760AB1E3EF12F00104FFAB0D814EFC01 /* duration.upbdefs.h */; }; - 90619BBCFDF782DFF700496858E9B13C /* merkle.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = B53B60727CA739D5076A8C0D59EA142A /* merkle.h */; }; - 907234E366016B6566C98265E2B21CEC /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D51DA8EADDA05D9D7560228DB93358D /* statusor_internal.h */; }; - 9074D52346678B64F768DD36303402FE /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC759B4F1E6F8A666C72B2E0A462C18 /* grpc_tls_certificate_verifier.h */; }; - 9086BA1320C749471563B525C1225715 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E81F4F509597B27D0C8E47F7C949C9 /* hpack_constants.h */; }; - 909234B19227242DABB899B5FD2A994B /* vsock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1173D073CA7A8B25548500878CB9F98B /* vsock.h */; }; - 9094CA7E4B1DAD26B054E643EDCC2CD1 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 88012E6BB7B3A8B2798DFF90E8D08435 /* router.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9097186B3C48CFAC5A90FAF0CCBE0768 /* hide_ptr.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D8911E7DD65CE073404BE437EB3A45CA /* hide_ptr.h */; }; - 909C8912152A03E77D4EE61A6CC76785 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 12F6B7C45410CCE61F9538B3CDB22A16 /* security.upbdefs.h */; }; - 90B84D01AF3421E05AD935C037CBE0E9 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1422736621A715D11572E983043F33CA /* string.upb.h */; }; - 90CA10ACD6B539B46162C2CA2D22C63B /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6AC68519952E33CB5E673538428790D5 /* resource.upb_minitable.h */; }; - 90CA92CE2F95AC0C00D2C1D66E85FCB0 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C94E974D34976B7FB9F076236BC73521 /* xds_channel_stack_modifier.h */; }; - 90CC745BFCAD3E543488B7B4564A1C30 /* metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46E554B333448DE7671B85C7270F8D15 /* metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 90D25923A3194E7BCE4ABF5A6751A2AA /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = E14682591BB46F02503A2EE327446083 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 90D99B6EFED65EC62A07217494F811C8 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 35781A79E80F6BBA410DE8627E634EF1 /* ads.upb.h */; }; - 90DEB91108DC9A27D0D0CC5374A4CD0A /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = ACEF0FD9347E5B955557460CB2546F76 /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90E8F3463C97A9E060CA9281449D8FA3 /* client_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E4B2731373CB55F5F97C55C4F275B2FD /* client_interceptor.h */; }; - 90ED2FC1BF8561BB1D594E26B9C7DD33 /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C6D0DA33BEB53214E8C1844A491FC4C1 /* http_connection_manager.upb.h */; }; - 90F832BBE42F38541D5780EE293AA754 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D72DA12CF54F264CA4F85E6677E100C /* custom_tag.upb.h */; }; - 910616E4EC71623166C69E7944CFCE2E /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33BBD6CAA2A320FE9E6FFCCBFA0589B4 /* iomgr_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 910A25C0B92F2142CA728EC2636EEBCF /* FIRCLSExistingReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEF5B9C507DD9520547070C0495D7AE /* FIRCLSExistingReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 911471F560135D658C682DA95B7EA089 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 56996C5AB7D74CFE4000D5E1C437FE25 /* certificate_provider_registry.h */; }; - 911D0D9542B9845461812DFB363489B9 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 310E4A228602FB184F9F75A762DEE768 /* resource_locator.upb.h */; }; - 912631990CDA3776693C54E0AF2789EB /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F37CCFAF44306C7193337F9CB8C343C /* migrate.upbdefs.h */; }; - 9126CA64BFCC7CA81595AD7161D45707 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A688EEC8FE8C67C7056AD3A5EC3CE5 /* atm.h */; }; - 912FE5B3A84CC0881F511A82D323867F /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1800BF79EE0FD81077421EAF6B45AAF /* init_dump.upb_minitable.h */; }; - 9152B3B323B355A7C65BADF4DC9161B2 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 6AC47B95D3AEC68103499B0E04DEE8A0 /* build_enum.h */; }; - 915552142298AD65DBEFF4E624EFE063 /* type_check.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CB35A86EEF79D279A2203550467CF5BA /* type_check.h */; }; - 9155C5E0D3A7590B3A3E2F0A8FE760EA /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24CAD4B815321D1D6E7F123D31BEDB31 /* path.upbdefs.h */; }; - 915C7981561D3C54067D6432D9989759 /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD65A20F213349A0EBD536654CE9409C /* tls_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 916E7086B8E8791901152F32223C541B /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A61E14B3002DB6042226A85F2D2292F2 /* percent.upb.h */; }; - 917AB57CA299BD93BE0913EFF528BA3F /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C7E60F2027EDA9FF1DBFB9AF5A634EDB /* subchannel_pool_interface.h */; }; - 91A34EBAE475871ACD7B5417B91B7FE9 /* metadata_compression_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = DB052CF89343201C6B80B737BAC572CB /* metadata_compression_traits.h */; }; - 91A432535B28C44B91E1C6D52D77E1BE /* matcher.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 60F03147BEC00D98B11B1F322C1D0267 /* matcher.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 91A8F19B7474D40859801380EA1FCD8B /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D6CE07524773BECC31629CCFC4EDE6 /* FIRCrashlytics.m */; }; - 91B451A6874D2427D1994145B1594DBA /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0FDC1232A2D98993DFD0908A337C8618 /* stateful_session.upbdefs.h */; }; - 91B4D5AAAFE2A91B035E12207C2C0AE4 /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = DE5DC35577D81BD9DE510A4EC2242792 /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91BD38F54C32729179F65D7F418F72BF /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = FE44E1E32D1BAE72F8532575EDE31C5D /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91BFC01021F01942581FD71C74BEB91E /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 39DAC8169FEFB7642CA9242D4F5E4CE4 /* file_def.h */; }; - 91C08F260B69BFE93E38695FA248734C /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4602BD05701B9A1D4BE341519D8E96F /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 91C206AC405300DF551B5CC9B24E803C /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA1A694C61C225A73B518E3EFCB5E63A /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 91CA3B4037478B280AD53207F02B1705 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DE2D1C0683BBE926F7B838AC5F2E317 /* server_callback.h */; }; - 91D319ED8B30F2A62F0A7AD50F7091D8 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 984B52616B4E1D7F648AC3A0E08742D6 /* client_interceptor.h */; }; - 91D82C78ECCE5C09C99D2488BDCC5648 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = C58B05232C8BF28153518A07E8845C0F /* server.h */; }; - 91DE4131D99A70CE188D7BEF19F73A41 /* atomic.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = F9581832439F67F58CF3A34E91B9D05B /* atomic.h */; }; - 91EAF67892ECA53097607D719C3DAF67 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = D888C97EF7D5DE552B3828AACC447128 /* variant.h */; }; - 91F4AE45EF2744D6E11C3491F20F65F8 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF30BD9F4E25DE5215ADF076D6BFD68 /* atm_windows.h */; }; - 91FB35F880A01308AF21AD04F9AF1D84 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 696D844BC82B6058B8E138511BCE0905 /* udp_listener_config.upb_minitable.h */; }; - 91FB9319D5E7F90786D29CF50D902D83 /* crc32_x86_arm_combined_simd.h in Headers */ = {isa = PBXBuildFile; fileRef = DA57F4F0B36BEB663899DE92D4C0ECF1 /* crc32_x86_arm_combined_simd.h */; }; - 92076D63065F03CA330F6EC466035AF9 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F687683628A80CF299A714D165BE2D3F /* typed_struct.upbdefs.h */; }; - 920F02B6F49C0F0010D5395F5E7427E0 /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C6866434CB12F8825030054F80D6C7D8 /* config_dump_shared.upb.h */; }; - 9212BAF716CCB5EA4622D6B4C5C89FDE /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A2C3BE36FD990507C4DD6A448D3AF83 /* filter.upb.h */; }; - 921742EC3822D783F6EFA250C361273E /* thread_pool_interface.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 952962395600A8B84129B1906FC15F90 /* thread_pool_interface.h */; }; - 922BA998937A77C835F3BAF8AFA7A4F6 /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 909609CA0E5DE4BD2DBF858FEC02F52B /* trace_config.upb.h */; }; - 923ACED1A7A3995B269CF17DB1E1D850 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B5B2CD51FBDCDE6C2C718C595CA788B8 /* wakeup_fd_eventfd.h */; }; - 92573EB135F9BE589A7C217788EAD982 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 580ECD3FD8803E638B099FBCE627FACC /* json_util.h */; }; - 925BBD26B61A97CD10493087EABB3FF0 /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 719293D394917F50F8F12F1ED6808867 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 92625942D9AB4920EE664AF8DB2ED232 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9F0B52F2D4AE37E5BF3C8C7AA45C037 /* collection_entry.upb.h */; }; - 9263BF33145E99E8E33234D8BC99E5FD /* strutil.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 7D48A28B29C08063BF74444E448FA84A /* strutil.h */; }; - 92681BD2E96AFA40B5B38FE9DBB794C9 /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E7FB64E75A6A79387CC1EDD779C47FF /* byte_buffer_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9283093F842E22CCF3BDECE957B86E1E /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C557AF7BF1CB5D2176A95EF700918D /* filter.upbdefs.h */; }; - 929399AC4B47565BDB14DA34605D8819 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E32E6975C0C22CD383288B27CB76212 /* secret.upbdefs.h */; }; - 929A65B3E0462557F80C6FB0136BAB24 /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06E5B63A21E6704711E1BCA3F717D5DA /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 929BAD2D4FC67EC1C1DE59C669F4C76F /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = F4DB5BF382B579E5BD8B3FF1F5B3C26B /* memory_allocator.h */; }; - 929CD9313A3F98776D67E57D4B0D2625 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 32699098C26F5F65BDA29400B643C9B2 /* message.h */; }; - 929D89611F46006B0722FEBD4C0D0FFF /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DE51914A11DE5B59DFBA687259272ECE /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 92A328385240834AEDBA40D62019BC76 /* re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 28B5885FB07A214CD54E7DD22A020EAC /* re2.h */; }; - 92A5D8C73A6F46936E27EE659B939FD7 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 240F86B5C21EAD499FF490D257D4A0F5 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 92A9773DF0F45ACE3F91DDE77A92919B /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 639E5F7F52A28FACCD6F3DD561C45FCA /* slice_buffer.h */; }; - 92AD73DE40D8653AEDD57A47D51335AE /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5B386EB39ECA224E535492F7164C080D /* csds.upbdefs.h */; }; - 92B1015440ADC55F65CC106D4B30B905 /* target.h in Headers */ = {isa = PBXBuildFile; fileRef = 4225AF88179A809C375073DF245102FB /* target.h */; }; - 92B1F41787A973856CEAEBF9F7D7301D /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FF14000F698DBDDE4A8C4B9077ABC0 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B3198E1EBE2EC545BB36AF6A9CC368 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E9BE5EF4602CFC61BA2B88FB195AAF2 /* MemoryStorage.swift */; }; - 92B66F90B4C85227B4A7795182DAFDA7 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5971D827D010310EEAF0F8AE350D4358 /* status_conversion.h */; }; - 92BD1B4F02FEAD0912ABFC691E4285E2 /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FCE710FF53A3231892F92841B5D2980 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 92C120252ABA413C87FB3FEE440B0E60 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD689D670E52EDC7EBF1D9526AD40DD4 /* matcher.upb_minitable.h */; }; - 92C43D9D7F0B5AE977317654629D8C65 /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = B551E817F009C16102A59464593B0D56 /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 92C78D891CD7202342289FFD2BEBF946 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E4AB9CD3F3979829C60C440268D678 /* migrate.upbdefs.h */; }; - 92C8F10B0C02AAFC07BECA46FEF4ECEA /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 225A8B69D67E408B3FB2F67D6BF4D416 /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 92CAB3C0034D9A0439A1DAD626EAAC10 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D887F8DFACDE95AD548E4E7FFCA37967 /* versioning.upb_minitable.h */; }; - 92D065D762FB6A744EE90DA3B709841A /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB0C464E44E29F08FC8D6EAAE45A04B /* fake_resolver.h */; }; - 92D119C97F4FBC76AA7294EE6749ABAA /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 30EA548B6BDF330CC26B59E726325DF6 /* zipf_distribution.h */; }; - 92DF3F1B1ADC3562A5D0AF19D40A5458 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B066B1A69ED23E0F0CC29809ED92A7B5 /* FIRVerifyPasswordResponse.m */; }; - 92E21886E0923435C8B84D0AC73E799C /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = A996C503692004A24CDE9DEB88BA1A06 /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 92E2B0FAACE212CE3998E20FD8DF7180 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 18E5913122E6B3C6BCF0C1EA1BEFF459 /* percent_encoding.h */; }; - 92EC152444BB85514F3F291C113413EF /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = A10ADF18D1B77FDEC407C3033B2A72A0 /* call_op_set_interface.h */; }; - 92F454DEBD6A0B5E222138E6B61FA826 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C778AD51111C1E7C10AD4DF76BC6E1C /* typed_struct.upb.h */; }; - 92F9702B634D4272CB34B2C50935B83B /* resize_uninitialized.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CCAAF9C462FBD516E79047968271E216 /* resize_uninitialized.h */; }; - 92FFD1932BF19F80CE0B9A673550F152 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0E9957E7F6B48425ECF537BFC69F290A /* matcher.upb_minitable.h */; }; - 930B14155AE9AE7839464E387FABA65C /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADF4FFF4159C231B7B79C3445CEC495 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 930F6F31BB882D4227EC378EC40C0BCD /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A9D0C32C832450687A2B7EEADBA2D4 /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 931343BA0C33542448780257A3AB2341 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F29A9551D3063A3347F9EDF2E068FB1 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9315E31C9EA478436B13CABD70891BF0 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7BA0811B8FB991134042B29ED7937B4 /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 931E03474B4027C9F36B8F15AC4AC30D /* if_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F1BE8EA1E4BE29E4AE8BB7F10E99813E /* if_list.h */; }; - 932904D7AF4C770863EFED309BC63C30 /* barrier.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 31BD454A2BAA1C264F35CC1FCE8B2CB2 /* barrier.h */; }; - 9339B8C250BADA7974CB42549FFBCF52 /* route.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 982A4EDDCF9C593D717A0227651E7714 /* route.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 933A557690B943200DB22695AE7A677F /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40651F5EC5DA11535C6A08248D9B1E53 /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 933F0499A8D632FA5312628FF4318619 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = EA13F1E67FCAD03A86293A86E1622A9D /* tls_utils.h */; }; - 933F38076D296CE504F7DC309EF4EFAD /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B5A1ACE6E799F3B9BD67FAC7E0274F82 /* frame_data.h */; }; - 9347D57854824EEF967E89F3E945B268 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BAE185510FC64266B68FD35F8348EE6 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93487E342F50BD3845576D045F6F73BB /* health_check.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1E26D8854F1DE9DE3E859C91094E21 /* health_check.upb_minitable.h */; }; - 9349A8A407149D39D626806AD256C69A /* client_stats_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A2DFC0E2BD9E9010DB70F09AE5301A1 /* client_stats_interceptor.h */; }; - 935761F53161D05FCA83C7A1694B7DD7 /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7BDAE613E4AEF8D2005308EB58A49233 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 935E28789272A7B380FA2B01A9C73B17 /* metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AF5425E2B69D1389735B227D37F6E085 /* metadata.h */; }; - 9363FBE90FB1B2155E84B98D00CA0715 /* atoi.c in Sources */ = {isa = PBXBuildFile; fileRef = B01785E081F3CB4BA0398E2D3B532C27 /* atoi.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9372F5DA2E8F57ED60975986FCC874DD /* hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 411AFA1497B46ACEE745FF3B7EB0A50D /* hash.h */; }; - 937472ACDB18D07C14A1E951EFC058B9 /* join_state.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6D240B644328F2FA6ECD290D874CD1 /* join_state.h */; }; - 9379E872D302D58BBAC4CD6B2110F91F /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12A96A7A5F39BA73F934F9A4AC086BDD /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 937C5C45160664D7928D7DEDC8177B0E /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = 656EE71DB3E18FFC0C1E4586C8B308CC /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 937CFA1E5B9852D4E5FBEAEE31131E7A /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D690A943685D4B89E1A13D032667498 /* proxy_protocol.upbdefs.h */; }; - 93836FF427EEBA6CE0435125AE7952E5 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 4924926305DFEFB1B0ED02E63DC991F0 /* time_util.h */; }; - 9387B54AFC9E2919D0DF2222470CD788 /* custom_tag.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD0E53D784052051AF2BE53FAF1AB44 /* custom_tag.upb_minitable.h */; }; - 938D8BB2F6C25AE69A4F88316B35199A /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C07CFCBE60D402638219D8CD0350339 /* byte_buffer.h */; }; - 938E6EE3C7A3BDA2E24BECE972D4FCF8 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A27D38DD1FC1F6FEFCBA39AE178B2E /* resource.upb.h */; }; - 93948EE3B1123D9CFA04EDCCAA1A3F1D /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9946845585EDBD8B46CBB5BB410DB01F /* resolve_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9395894B0293087D24503016B127FAC6 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5C6CFE7FF67C34A127FE34AC261BD95D /* lockfree_event.h */; }; - 939E0364B0B835DFE93C24A280B94136 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BCCA2C6ABCDBDECE392301E8D32576F4 /* status.upbdefs.h */; }; - 939F3DA2AD8C4DADF3900D24E27B6692 /* accessors.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 064ADADF8BF25B35C62A1D77F32C3DFC /* accessors.h */; }; - 93A229FFC266764EB5F0458AC9BFD11D /* status.hpp in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 88B8ED6E0EFB2EA6FFDA5EA9126380BF /* status.hpp */; }; - 93A5119D06B480D164B736DD6FC4B210 /* sync_custom.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A0E98C544A99CD376A1577D7D62D8FDF /* sync_custom.h */; }; - 93B0F4A38A03BD1280BF1AD19ED97883 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9B82E113672352A4CDAA701BA4018C29 /* timer.h */; }; - 93B9C6989F827B1591022E3A88457DAA /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 479446E9C7183634DC97228A6679EAEF /* migrate.upb.h */; }; - 93C785DBA3B34F9787D4088CF6C718A1 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC1BF7B078CCD5684AFE755A76E6E9F /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93CE38582BD34D743CB2E1A2E104FFE8 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 4BF30C01D679DB1B8BBA97D64EB7BE4D /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 93D47FCB2CFC4C6FFF9F98E93421B0AC /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E32E6975C0C22CD383288B27CB76212 /* secret.upbdefs.h */; }; - 93EA4E97E880E65A795CA58F358360EB /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CDAAD1C983B858DEEE9510207E2A89 /* httpbody.upb.h */; }; - 93F37C5B722014132AAFDD1E97014B70 /* client_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFC6A64209642FCF9EC79F3C5281960 /* client_channel_internal.h */; }; - 93FBF320F33630C3576F1CA64F6FDBC2 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF0F4EFEE6AACB08F9AC75DAFCFAD01 /* grpclb.h */; }; - 93FCE4AFC248686CA905B870FE1292BF /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B2C5AA8275259A395629C3BF5D04E9F /* resource_locator.upbdefs.h */; }; - 9401E2F6D86AF103824C1884BDFBD21B /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C83F796AF28C7F7C323F519C848A50F /* ssl_security_connector.h */; }; - 94091E0B0FC72DA562110C0A69D4005A /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA727A5DF6400B1BD47F5FE98F9494D /* service_def.h */; }; - 941B1E1A9835C0BA06BF40F31DAA9938 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97925A0646CB37A270D701216C05B920 /* config_source.upb.h */; }; - 9423B50ED9FC669A6F31BC1337D6BDE0 /* Promise+Then.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AE1312BA39545CA8C3996688F092335 /* Promise+Then.swift */; }; - 9428C216FA304DBA525C2A40EDD471D3 /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 245D595BCA2FDE6C28A36FBED6C420BF /* stacktrace.h */; }; - 942B1EB160800D5489B9DAFDEEC07CD3 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA71B7B69AE32082F0CFF468E7DDA34 /* duration.upb.h */; }; - 943B0A1B436BAF4D419574466EF70FB3 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7C616D96BE44EE7B87FFAF3816706F1D /* SVProgressHUD.bundle */; }; - 944E519A0A8DBA5F4ADC6D492B585C45 /* resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 0435DCCDAAE3BBD2C5A9250CFF2AF618 /* resolver.h */; }; - 9458526402B41FBAF22D6A041050B91D /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 561A0FE594F50BDD07EDBBA070F4BC88 /* http_inputs.upb_minitable.h */; }; - 945E809ED066EBA730FE9846EB090FCC /* batch_builder.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F3CCE5C1B0AB6197E1FAB3B3F71EA009 /* batch_builder.h */; }; - 94665DE40266BD8D555983D3454514E5 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 14785BE7D14964A090C7361A39B3C002 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 946CBEC498B457B5239F2196A428A67B /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA08F6EB7F0B75CBBA4E2EDD667E5EA2 /* channel_connectivity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 946EDAEB2CD6CF1BEDB9D390F64E26A5 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E402E8D5AE55F093E11356463F7201F /* skywalking.upbdefs.h */; }; - 947C0EADDBF39353F4657359116ECB91 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45315DC3273AB37EC84B1367CDCE4437 /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 947E302CDA616BEB3D9A8592F31864AF /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB7C5460F5AB31BA419C1E17E8FECD6A /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 947F7B490363451194A343283601DEFB /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 463D5268620A83520CC5579393DC7D59 /* unicode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9480DA2B7E76D8679ACFF4FEF10C1D08 /* mutex.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 03095AD9BB5250002B15B7ECAE5F38CE /* mutex.h */; }; - 94843AF815D0E73AB18B1C58C3DCA146 /* address.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 2F532C5F1DE023FC07C442B4020E193D /* address.h */; }; - 9487FB8ED510BF02BFFA1A8DB29956BC /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 69DF005007AEFE0CB841787D0698ADEC /* time_averaged_stats.h */; }; - 94925388B0CCB9EF7CBF058A8F4E16DC /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E13FE14348F63BA542C41282462F3B1 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9492FA23672A5073B3840DC1A059B98B /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DCFC5F7A193AD34D76B2D6A46683251 /* string_view.h */; }; - 949D8236589A44359ED76F6377E64ECB /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 7BB0982BEABD5E3021AC98459796277B /* thread_pool.h */; }; - 94BAA9A70117A37AF8780FA0AC856098 /* random_early_detection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 753E8A60CDFBD3B4A92D5B0A1F1E5223 /* random_early_detection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 94BD6CEB00F2A6936B42C212FEA3A033 /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C10CB09F5DA17AC2BFA5C5AF7D025EF /* rbac.upb.h */; }; - 94BF1A22DF22A8229898A6C82E0BA8C7 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 0C0838D32D479807FC6AD1C9657D95E4 /* load_system_roots_supported.h */; }; - 94C16BE3828D1E3C7D848C85259A0B4A /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 367606410BDA2F06E2AB5F5F6E3A520D /* pollset_set_windows.h */; }; - 94CA087638EC974CF41C9CBA79EACDEA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B4C2551DD7DE706587B2CE363EA503 /* internal.h */; }; - 94CC5EB757F083EBF86D79395CB4A796 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1023F15393C24C162D81295DAFCEC79D /* protocol.upb.h */; }; - 94E381181EDC13C48FE7F5A7E6E847B8 /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = BAF0F4EFEE6AACB08F9AC75DAFCFAD01 /* grpclb.h */; }; - 94E42146077BE0F5C0A39FA0D4EBC8E9 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3392D35FCF998D30ADFE22B25FDCE0F5 /* pollset_set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 94ED841C8D5EB8AA57158199CC2ED5E3 /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B9129B66AE5ED3CDDF6CF9D6808EB2D /* rls_config.upbdefs.h */; }; - 94F311B31B372E309DD97B68114536B4 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 1BB6E91B5EDB4A51E08ECCAF1F20C1D1 /* b64.h */; }; - 950851F634E7F3EFCC16B309E8E281E4 /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AE27C04E5F166C6FAF19E2EED81FCEE /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9512B21332B905354033AF2349F208B2 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5929E7AACC00D2B84ACA8998EB1EDE86 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95175845A7B00BF94032992A74EBAC0D /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC83E42C95FEDB25AD89353288B3F8BD /* overload.upb.h */; }; - 951D85D392F4E8E440B19A2106BB3E71 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B74AA4E83DF1690BB5D1AC2ECD8FE5DE /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9523BBB4D2179BFAC4D1E96AA666767A /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DDAB802048E62E0EAB4B6C1DC021AFC5 /* FIRCLSReportAdapter.m */; }; - 9524CFC338A08491BAE9892EDE5AD865 /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 7348E7ADC62324AC8CBC8EE3CAB0EF11 /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 952811E71AB35F20B0DE8C7E9D21D713 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FEB9101EAC44FFBCE4F59F48B1BFF34 /* resolver_factory.h */; }; - 952CC9E3ED57720EBC7AF136CC99B9E2 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36CC799104022BB5D4F40060E4C08FB0 /* event_service_config.upb_minitable.h */; }; - 95528669457504413970D26BCABF473E /* opentelemetry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CBF27F091BC0E0770EFDC68A308A13F6 /* opentelemetry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9555AA73B2E2597538632BB767B60E68 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC887B244F51694268AFEB3F0545D48D /* grpc_service.upbdefs.h */; }; - 95561B0C66C4E37F1CCA69EE982D3D75 /* FirebaseSessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E3465FFD7CCDAF0552FDBB61E23A525 /* FirebaseSessions.swift */; }; - 955917E832416721E5BA082E284926ED /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 43027D8D94E7408A1D780805CD9CCFF8 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955B03303424DEADD89DB45DA6B029B2 /* posix.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7C2E639EB65BEBA95967AAEF9F95A4FA /* posix.h */; }; - 956562C91D85A399917B636CC28064BF /* ApplicationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11255F5ED99F53CDFD8159D47310FEE /* ApplicationInfo.swift */; }; - 95681D2FD44E4B34312FD63D7CD31E87 /* endpoint.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1362F7BB2A665F6B18960BC249A46CA9 /* endpoint.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 95722E15AB0D39CAC96FBD93124A8A32 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 416D757DB3A6C784775D66646C54DAB4 /* cluster.upbdefs.h */; }; - 958576044EB9A56AD81226C498AFE413 /* orca_load_report.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C7626AAE221E8FF9BF3D8CDDCC8DE4E /* orca_load_report.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 958C8F98BF76D1EEC66E825088D0BC83 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = A33D82D64ACBA6E825512F1BB1E67AB8 /* internal.h */; }; - 958E631B4554B5FD9283A4B5F2B4CF63 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F049D4FF25AA095F535A2F99F7AB2072 /* alts_record_protocol_crypter_common.h */; }; - 9591E4E4267D6500E90AA967AC5ED195 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0478AEC8FF31FC553417B47811316164 /* iomgr.h */; }; - 95946244EFB15B3DE313056DCAEC1C81 /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 26CF7F052AECAC91833DAC832BC6CFAE /* overload.h */; }; - 95A25B95CE2F33DCA5D0E221A119B36C /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1B881114DC44A1D534B3516C18CD70E9 /* struct.upbdefs.h */; }; - 95BBA75024192E3C1EC3DFD15C541961 /* cord_analysis.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30048C805431D4F8D839DEB8A7E07302 /* cord_analysis.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 95CC696A3B7B8D1C887EE627EAB0C00E /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = A9B32594FF0F397FB09967C06EDEA493 /* alts_grpc_record_protocol.h */; }; - 95D1955584F5147D5A97B08F0AD2DFE5 /* grpc_polled_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3DE30F51966541462222980CE1B4A0 /* grpc_polled_fd.h */; }; - 95D5326F1E2DC03E340C6279706E16EE /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 338AF7B3269FFA8E6D2E535054329AD9 /* deadline_filter.h */; }; - 95D97708AE4C18D71AD2A174335CEC73 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F99F3A05E960789111192994D4ED27AB /* accesslog.upb_minitable.h */; }; - 95DCCC8DB65B952E86A25B882ABBE06C /* ip.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CD955C37FBF57D6059FFAAA85C0BAC /* ip.upb_minitable.h */; }; - 95DD18FE3360C5DD7A1E454A1828C56B /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 195C5805A597EA1F39A656AB33A145DB /* client_load_reporting_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 95DF3726D51D5AB3752D3C43BFC97819 /* overload.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C28296BD51C5EA60D61560B27D21D3 /* overload.upb_minitable.h */; }; - 95E194A3AABB5407231E898B6686F73E /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B925C2844CBC00A92ECD42B66FCFBCB /* ConstraintMakerRelatable+Extensions.swift */; }; - 95E3CE53E87A5AE0522CA707752A8D7F /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C6A6E8F0C0130C9BB469BC89330E11 /* security.upb_minitable.h */; }; - 95E41EC37CE721E534D0AC7092EB8E04 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 23DCA865EC9B6BA254118E99B227C0CE /* extension.upb.h */; }; - 95E7F51B2B35FE836C2C48CC3EE66D3B /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 316D99FD3A62BA99245F115D6582C569 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 95F79A78E0A6A9B19F1F54E15C5F8D8F /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E410A55F6A0A19FB89541AF68D43C1F /* core_configuration.h */; }; - 95FCE2B29E0C9B0328D8DACADD42D566 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = BC76A984AD47B0F691FA833447676F58 /* enum_def.h */; }; - 9600F84A0D4037B2C5858D7446373D31 /* context_list_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = 55CCB9E660AC8B3C5FF7AA4519064AB3 /* context_list_entry.h */; }; - 960C81276004942ED11D250A024BE072 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 9FE5A6D97AADB60DF50E89B16EB18141 /* work_stealing_thread_pool.h */; }; - 9611D9E7DC0DB70D95F5C24B156930BF /* load_config.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 33A9E993269AE56C8A59CEBB6A005A14 /* load_config.h */; }; - 96229021BD5AD01BB2D2D29A0B9A3C16 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 370463A978FC241F8F8C24616F55853A /* extension.upbdefs.h */; }; - 962B69A9B4C6A2B9FE297A05F0174964 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AD8675CDEC57DFA0DC4E045E884EE5 /* delegating_channel.h */; }; - 96311431B17267577C2ACBB4DB8F5BA5 /* GDTCORMetricsController.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A59E61E8C51DAAD326839392B6E47F /* GDTCORMetricsController.m */; }; - 9637E2B362625345890608923E00B58D /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D93BD857E744573C6ADE1B41EADD67 /* rpc_method.h */; }; - 963B7DC90FAC50B7B9CB9C70E62F12F9 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 414FF90AF25776506F81767606359F6D /* time.h */; }; - 963FA0F77FB02FA2E60DE6ACE00D7114 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3881E0475DAE22F55C1018E409196394 /* path.upbdefs.h */; }; - 964446BA6AB8D9D299B97422BDBD8962 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E297954265022E3BC74E4DA17BCE56D /* FIRCLSProcess.c */; }; - 965994C5D68E6B45AD7A2F95E1622E64 /* protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FDAD93F00209D8C389C29999A069F3F /* protocol.upb_minitable.h */; }; - 965B7A4CC06D7B41CB566E9D305B1D16 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 84F6F639AB7D145395B3D295ECCF5C60 /* decode.h */; }; - 965BFA314A6131CE9C87D31AEF02760E /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C6B4E7E2B46974DE058592B1DFA0EF /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9662D1FA70F1D0E174DF655E4BC67D4F /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AFA201470165110654B0385209B83C /* exec_ctx_wakeup_scheduler.h */; }; - 9666A7419C84F56A6BCE84B68974E778 /* subchannel.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 65FA4564650F8DB6CF4E4C0BCAED7587 /* subchannel.h */; }; - 967BD34372DB95B414B7CD4C474E5D8D /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4333C78F79817D0EFAFA3C5B290B757C /* tcp_socket_utils.h */; }; - 967CCF24548E545E3B67C68402F2E70D /* Promise+Validate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42EC13FC0EFBB5C03E29949F400CD7D /* Promise+Validate.swift */; }; - 968360984C3E18AA6ACC74DCDD5A6945 /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 138D056671F7E47D9307578D174AF8D9 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 96A2380DA1B7B590223C3FF927D04BE4 /* interceptor_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 6397412FEBAB4F7B662F76397A7715A6 /* interceptor_list.h */; }; - 96AC665C3551A1E76E8F88A224E6C78C /* random_early_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 719A8A1DAF5B5EBFCAB94F31A53D3633 /* random_early_detection.h */; }; - 96B2DF57E78D344756ECBE908F3075DD /* cordz_update_scope.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F0E4E5BD77D03325E5A8483B615EEA8C /* cordz_update_scope.h */; }; - 96C76510517B34CA81C3D750D21D876A /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D5B1DC0B357C38120E8FF0DF4B68AE0 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 96CB94BAA9AED5C98075EC1E315AE55E /* secret.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 775E055252E6C94B1AB8CC15CAFB4740 /* secret.upb_minitable.h */; }; - 96E5A131D4E8520DC263CA64219F3DDE /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3356F56CCB8112776C72B8CB5FC02265 /* semantic_version.upb_minitable.h */; }; - 96E6BDAE912E63049ACEE62EFF708CA7 /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 4CA38410825375D61AFC7D9F5A3E2BB1 /* promise.h */; }; - 96F5176576D3B658617E0E5EBFF34C9A /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4624AA2AD696D60F6B609D3309A3648 /* socket_option.upb.h */; }; - 96F694C98C68D5C2965ED76A43141E5E /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 041D7B4C3F3B222CCBF641A87224B386 /* map.h */; }; - 96F7778C1AFF7062A626D244CF2E5FC7 /* batch_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 99DB7752FA7D58CB4C37CED6B48D1568 /* batch_builder.h */; }; - 96F9EA0502E4264ABFFE26F83B2B88D5 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D872153303F70A539B3141A65F809EB /* executor.h */; }; - 96FE4902C3041517E85FA23315F84FF9 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = A496B4BAC0E4E3C2E00D5653AA23D685 /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 97144F4C61891A583DB9D335C35DABBE /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 17E68250FF58E0AEFA8FFBEC6B278B0B /* udp_socket_config.upbdefs.h */; }; - 9716BFBF94FA46ABE4F452BC5DC40939 /* per_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 090070DE996700C15DD7A9F5C306DEB2 /* per_cpu.h */; }; - 972C0DF6F01E7C574BA8F38A0C1CB150 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 4357BBDA12B131BDB106290BFEA3B9E4 /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 974119ED0B23B99F0FFFAFAC782DE31D /* metrics_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F13CE9E16166CB49E327400D2D07725F /* metrics_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 97418A3B9DA84406021097E811662CBA /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = EC9F7042F90A1388F20930AACE85C7DF /* FIRWithdrawMFAResponse.m */; }; - 974A98FBCF623272EA6C6B1ABA838B48 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F24CF537AFA5231136115B0CACEFEE06 /* rbac.upb_minitable.h */; }; - 97551A8C7C1AB8FBFD490692DD40E241 /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 3466C10A86BEE1BE4C84F4E33C80BFBC /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9755EEE139C06B3F8A90420F4B4BB0BB /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8B9521AF875C04F9B44B8E062D991D /* struct.upb.h */; }; - 975B3C300C57BB6EA633C98EBB28B0F6 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC119B49AFD9E43E18347A60193AE67F /* common.upb_minitable.h */; }; - 9760721ACEDDC0A51BD2F47C86EDB402 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 491ACE41D3FCF43024B6A01EB4D87312 /* delocate.h */; }; - 978BB1F82178BFB5CDE1B5BAB4C15D21 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 291F872F1DCBBCBB75FC043CD38B8969 /* cordz_functions.h */; }; - 9795F4BD0D1BCBBB9EFCAB7E9F0C4372 /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B18C74F4E539C78DB9E2CA0C7F93E9C /* cidr.upb_minitable.h */; }; - 9797657AF6A3C8A47AFB5C37A2CBEBBE /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = C175F75B38E43796AAECFA46BF6A7A1C /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 97A1EE006FFA03B8C207C27E7863526F /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C3C84C42F35141EF9F44A36330A1B15 /* status.upbdefs.h */; }; - 97A79B80B9E9BDA3E2CCDF14EC22F884 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 33E4F7E2523546253CD5054BE6ED22CB /* frame.h */; }; - 97C0E2DA7E91D3428A74A610D844B530 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB1F76E85898897D7D58DEC510A80A6 /* discovery.upbdefs.h */; }; - 97C14659F83A0B5EE3E39FC4465D3AC5 /* Promise+Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A0B6B6AA3D49DB447DB60B3FB00A8A0 /* Promise+Catch.swift */; }; - 97CABFFEFF49D319570648FCE009C070 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 526A1E2B361D232DB8112E67236A10CB /* bin_encoder.h */; }; - 97D031B200010E690B4EE834E40B4858 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3FCB97C62A59A1EFC69C5A5D3E5FA0 /* strerror.h */; }; - 97D4C874ED84183FBF627F5B1A927EF3 /* census.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9F1AADA5B6ACD77CAF3EBA105BFCE145 /* census.h */; }; - 97D6E58B2BC79892BE66974B72AF0919 /* periodic_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAC90C417882184137626F0336AFEECB /* periodic_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 97E629A02665F8CC1DDF68C810378788 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F75CF31259F642F18DF4DC6BBA20D2B /* semantic_version.upbdefs.h */; }; - 97F31B0B97664B9CAB3CA65475F7F4F8 /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9986A337BF42BF2C69246311E15FF9 /* graphcycles.h */; }; - 97F731FA0625EF03652C625A69C86739 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4F9DD31D44C2F344EFF104D1620863F2 /* dns_service_resolver.h */; }; - 97F8ED1F7658AEE9D65063AE7AEC9308 /* metrics.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D870399210F269EF8E79468B2C83EBE4 /* metrics.upb_minitable.h */; }; - 980B47C1BA599C2CF772870A66A321BA /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0B753BB5AEB24805F940D15CAB07A0 /* common.upb_minitable.h */; }; - 980BF87F2510F73C5D24A9E725C24C18 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B7B3A888A4C5364208181072275F9B7A /* udp_listener_config.upbdefs.h */; }; - 981281D06BF38A701DE4C2C2C436A9BC /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73D13000A9EB2AFCCF72D49C780C5F70 /* filtered_re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 982568B9028B760E3D656A5BDA155ECB /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F31E82509A3F2DF86E33D4A1CAA929FC /* FIRInstallationsLogger.m */; }; - 983CCB5F61E10952527C4078300E5D83 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FDA34E8C8A8FD3645EE0875F4A265C4B /* chttp2_transport.h */; }; - 983DEA9748EDAC19C14062EBE1D4B76F /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7751AE53ECCD50278AB13AD89D6DCAD0 /* dummy.m */; }; - 984CD5F515292CE0EB4B39820FF010BD /* posix_engine_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC8A63EE81C0A22AC537744778914006 /* posix_engine_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 984F3704F1E829A38A9B7F5877380F6F /* thready_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C7647DD168FC57C53936ED70088F58 /* thready_event_engine.h */; }; - 986EC7208CFE0199FFD0571359E0887E /* dns_resolver_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBAAE6F7E63570D6A6812FF538DF2688 /* dns_resolver_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 98730273DC2ED6B4A23648218D62C256 /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 09076119632E1F3EB44F770C1DE4B9E2 /* extension_registry.h */; }; - 987AA68F0007D9D8682EAC4C388CDA04 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5B771FE05280C2B91D32BA3EAF9ADCA /* unicode_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 987B3E4E239429B79E38EEC7E7C65450 /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = FA551A07C63520D0845AB2CA2EDEE7F8 /* roots.pem */; }; - 987F3CA527867FB09472354EEFF00EF2 /* symbolize_darwin.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 471878165A1D90D55201DBE951BFA535 /* symbolize_darwin.inc */; }; - 9883B22A2770934FB78EC52D28A62170 /* if_list.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BE8EA1E4BE29E4AE8BB7F10E99813E /* if_list.h */; }; - 98867103E6161B23325D9E81E9F87ECD /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 98DAFA07D7BE5A56B8B1AFAB2FF0387F /* stats.h */; }; - 98AF659A03788512EA2AC8EDF01E50EF /* opencensus.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC46E1663E41F98816718667F5B378E /* opencensus.upb_minitable.h */; }; - 98B3B35C35255EED919782BE6CE8ECAF /* service_indicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A5DA679C15660399BA91935B83AF21 /* service_indicator.h */; }; - 98B5DFD586B2C539B893EC5645BCEB6A /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2FE14327E64A00A939E6BDAAD1159AD5 /* certificate_provider_store.h */; }; - 98B91D8CA2BE77F2265525A05B596EAB /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = CDDB5D6BD165D5FAC7D5DDE793F674EF /* manual_constructor.h */; }; - 98BB76A9FE519E783C2B858A5C0EE49E /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80404A77ED495DB1C1CB2CC2CE4B974B /* xray.upb_minitable.h */; }; - 98CB2F9552B2E92C7D407550914DEBBD /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 480AAA3EF2BAFFEDD689085135D33469 /* fault.upb_minitable.h */; }; - 98CDB1FBB31724D16900F2A2E0CCDD34 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7101CAE41E32679BFEA4F6E4F787A5D3 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D63A297152D64A5EF3E40130DCEF3E /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 292970E634E0626F74B5D0010565F94F /* FIRAuthKeychainServices.m */; }; - 98D79E9F8F64B36793BD857F613E3F32 /* conf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 11CB9A41AF61BF16424BBB49CF6088D2 /* conf.h */; }; - 98E16E5972B62A85CE56B44D5D2E36C7 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 817E79FA2A0122F11C686EA62F93716A /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 98F0513C404271A3991C14DDBEAC246A /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 55EE6AB6B08E44479884261FA747F226 /* resolver.upb_minitable.h */; }; - 98F0803CA8AFF043E3B762FEC75D4905 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5753EE82D1E97FC7C2596EAEC019955B /* secret.upb.h */; }; - 98F570DA48370453D648BD526FDAAEAA /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED250AA043E3DA005146A2C213678ED /* LayoutConstraintItem.swift */; }; - 98FA165090075A46E90085E5977BFDB5 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D36BBFC80EC962C2079929ADE18A65C6 /* tcp_server_utils_posix.h */; }; - 98FEFE6FAC64810D35E30641E747628C /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E32052DAEECD5CFEB0E47269D05BF40 /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 98FF3CB2793FA5311E91DCC631D4EE2C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B4BEF93513FC20B1B96C083FB60D26 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99036DCFC43B04B3F7A48B063F30EA0E /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E9F126D64AE0D4DF51E1293D97D882BF /* combiner.h */; }; - 990689E6C0A5833E7E9682A00FAFAEE1 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = 4D04BF7D5899CC58607D375D880CFE1A /* http_client_filter.h */; }; - 99117648A7526BBBEA827129E05A0191 /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F4BF58BD3614CFC8B48BBCCFBBB05F53 /* lrs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 991C519A101ECBC24169FD38668E124B /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4ED5198E755709BC4050ACB828A2349 /* fake_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9936DC8D7D5E55D975C6B27B26F17357 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC33F6C69806CDC2D06AFCCB46E1302C /* accesslog.upb.h */; }; - 9938972DF6E361EB34EF0F26B63030C5 /* batch_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CCE5C1B0AB6197E1FAB3B3F71EA009 /* batch_builder.h */; }; - 99429C19EA14CFC907B29377ACD9D301 /* status_code_input.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2434F127AA3C49B95542946D998897 /* status_code_input.upb.h */; }; - 9948ACB77F672BBECDFA95B53405DFB4 /* listeners.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EC29E264879920FAA94BB9927664FDDE /* listeners.upb_minitable.h */; }; - 9948FF1CCDB840E85765A035C8810711 /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD72C40E9CD9C4693CF07898A33B59F /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 994B229A2C375D4B9A3D98442028C033 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 14E451E0886F384C404155572A0F5768 /* grpc_method_list.upb.h */; }; - 994C311535F60D758DA5ED1C5AECAC36 /* slice_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 639E5F7F52A28FACCD6F3DD561C45FCA /* slice_buffer.h */; }; - 994D24A099396D64E8B33FD0AC1A2C2E /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3FDE161CDD9729683985698882FF47 /* xds_client.h */; }; - 994D306D89E3CC75F0808EE95697B411 /* strdup2.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C8184A0C5821D982EBF4C70632BB29 /* strdup2.h */; }; - 994DBDECEAE1ADCC6A93A2E26B08498E /* FIRCrashlyticsReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B421109535ED3EDB1A347D271165752 /* FIRCrashlyticsReport.m */; }; - 99511FA8FF6CAC75A45CDB2409B4BCCE /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 75A2EC5C72162829EFEEC7A50F143617 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9951CCA8DC9C256E0E7E560AE2312852 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0F71F5C56BA365B656C454E10774833 /* value.upb_minitable.h */; }; - 995CEE71C1E7FE1C0C54999571E4EBBD /* credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 260F084485A6993326594889EEBD9D49 /* credentials.h */; }; - 9966013D7CA5563ED0A0EBB8EFB5A41D /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B02FEABF609569A6858871DDCCA7FD04 /* scoped_route.upb.h */; }; - 997887FACF3F2C9C2CE4F5867DE32BFB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C324721AD34CBA506C50F5B58337EB /* internal.h */; }; - 997972E0F23AA90A4D87B9C9FC569293 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 75536C31D327C12A3ACC9E73B206E200 /* huffsyms.h */; }; - 99898C7A4975A38A7D8EEDA9ABEC2156 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED90F18AC62C20B72217B5FC3EBE2BA /* common.upb.h */; }; - 998A1D1BE44BB0CED0273CC27377C83D /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = B1DF0D8B0AFA264C9608EDA4DE116621 /* decode_fast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 99964299DD43E77840194DE4D319E3A4 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8AF8B4B37CBB5DB73ECE444258B43A01 /* common.upb_minitable.h */; }; - 99A2CA8336A8FF0B79759E1F7D6ED0BE /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = A5D336D03823A075C1269BA21331476C /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 99A7359CDFDD50D6FA34B0FC45575A3B /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C39D82CA92FDE9ACF5AEDE91070E1E8 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 99A7F07200FF5A1F62D218F770A9C66C /* wide_multiply.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4EE96FD0498A01DD7579040C3A43B8FF /* wide_multiply.h */; }; - 99A92E6184623D011FA97B961CCF18CC /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CE6AF83FF5C8075FFB27CE6A1AD9E31 /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 99AF54662B47328365D73953D5AD0875 /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEF47744EB8E4479592F5533D162B5F3 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 99B03FF67B9EA94EA5B771E156D86556 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EC9D65819C536106DEA755BBE006F4 /* jwt_verifier.h */; }; - 99DECBF7AF445655A3E90B02CFC352C3 /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7402DC4F03227FB0F767AEEEFCC29633 /* dynamic_ot.upb.h */; }; - 99E0A255DB59FD5673132702C322891B /* wakeup_fd_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = D3ADE1B1CCB6C1DD93795B6C1CB0F505 /* wakeup_fd_posix_default.h */; }; - 99F720B05DBC53FDFDC3C38A05A64D80 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 779FB89D51C1A39770A69D5B60D5D0B6 /* hpack_encoder.h */; }; - 9A061A3DDE605C8965DC902969A6926F /* file.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = E55BB4A190305DF1AF382D8A0A9B3BB3 /* file.h */; }; - 9A13E554BBC8199862F5811D6128D832 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = A243920B2C85FD3EF8C007CDEC353AEC /* promise_factory.h */; }; - 9A194763410B4DB449EDE003BFA56E9B /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A163CCDCD2D206124B0A38356570EA09 /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9A19DFAEA7B04820E52A2E131C12C00F /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 426BA6E36457F08D42BB306DD1A29A6D /* work_stealing_thread_pool.h */; }; - 9A1AC58D28B5D48699A62869B4E66260 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E99E4F266EA24BC5904E50FC5BBC4E17 /* filter.upb.h */; }; - 9A1D360E1DBE2FC0C20ACBAAAD270DEF /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F0393E5438B29ED5BF17EDA12AB0EF /* empty.upb.h */; }; - 9A20D1B80E09E3359D21E6543DF9F010 /* http_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB286C834AC9C61CECB22FF997F9D98 /* http_trace.h */; }; - 9A238D1C5EA55853FA50D1762D2080BE /* Promise+Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25979D057FA4EC6A2D5168EF38543EA3 /* Promise+Delay.swift */; }; - 9A254979C766BB0822667A4FCB91BFA3 /* FIRTOTPMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C09900EC1AA88B436AF44716B989F2B1 /* FIRTOTPMultiFactorInfo.m */; }; - 9A2C9EFE24CFE13653F6AFB3369CDD5C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FECCB8B8D91DB8E570C495E3C4F5F3F /* endpoint.upbdefs.h */; }; - 9A2C9F0F40E50C8941CE413BDA6CB5DF /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = CC978DFB814E341E054C378F1B3E06D3 /* dynamic_annotations.h */; }; - 9A30B20CEC52FE00CDE2C56AF469D418 /* trace.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AB040E47F1BDD7128345EF020BA2F3 /* trace.upb_minitable.h */; }; - 9A5719B1161483B841681355B737BF69 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6FC6ED79FE10CF493A417115012583C /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9A5774EB96DCE2D5BA12873B1D5C960A /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1BCD73E31D5EA8A499E6D985F96CE1C6 /* http_status.upbdefs.h */; }; - 9A58C6D8392B1DB1B73EAAF3CC1B9B45 /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D1CF20DF1689CEB5FDC3EDEEF7604B9 /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9A5E1FE4B134CFE056C1EA4228462B86 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE36ACCCE06FF0BC26E61410EC28144 /* async_unary_call.h */; }; - 9A673D7F07C23237D5F43CFC615B522A /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6215DDF82BAFEF494F492220E3E73174 /* sockaddr_utils.h */; }; - 9A6A1B4068F5A40ADEC7C8AAC76EDD1D /* listener_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DDE28CEFDB3B6F34093DB026E57A6AD3 /* listener_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9A794D766048300312E0719D56B9CAF5 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D12482B8C7FB36C95BAB546A811ACF7A /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A87CA970942143D1BDBE1FBCD2913ED /* ex_data.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0D9B35337F1B89D45318593502C37E42 /* ex_data.h */; }; - 9A8F5213C91712CFC28D94729E088C2D /* eps_copy_input_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 5591C970A21C35065752357275F57136 /* eps_copy_input_stream.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9AA22ABFBD5748DCF3FB8E81F1801CDC /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E82CE32763DF6059CAED4F3754135B26 /* alts_counter.h */; }; - 9AB0055081BCCFACEADAAFDCFA002A13 /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E5392809BAFE8E75DC203D2CA27C6D8 /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9AB3366EB8668322CD58C9CB3BDF179B /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = E381019C7CB6FA208B05FEA9CB6DE715 /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB44BB715030FE3FA1842D27E3C3815 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DFA6A57A3E5090508A8E61C4AA5BE92F /* resource_locator.upbdefs.h */; }; - 9ABC249A2B3C79812C53E0F3B79B02A6 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E6A0E7C7BF44DEBD779A4BB4BD4ABF4D /* race.h */; }; - 9AC205CB9D8876AB0EDC15128555BF0E /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0003281FC4AD3163FCAE761DF5186672 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AD3CD4682CC5C5FCF0492AE8C1AD508 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A5DA72F06B8E51E5DE4ACDED3F979B /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ADE17E311E01E633547C0E6348314D8 /* address.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E0160BE5EE30B679BF675FD5E3EE9C73 /* address.upb_minitable.h */; }; - 9AE0E794114DAB270BEA656DCA2FEDF0 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA5B3A3069C91D5089B50800F74BE4D6 /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9AE3FEDB17CA68DFCD0BC534B8205E7A /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE13B1C808304298AEA6E11F03FE91DA /* KFImage.swift */; }; - 9AE8D3E442F03F628590AFFB1C4B9CCD /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4851092C6D1B6739A428685EC946BA4E /* cel.upb_minitable.h */; }; - 9AF2A9AE743E8DD0928CBB09D04CEE18 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = B6177EFBB40644B65755BD1CABB1172D /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AF98271E9D783EB14324479C8790E98 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 328EC8747FE93562C42508CAD7F80ADD /* trace.h */; }; - 9B1152701CAB5FA193207D35F74F904F /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D976A4F62C0E8245822D7BC0830725C6 /* hpack_encoder.h */; }; - 9B1442FAA7CAE4672E5667C0FF6942A1 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2459A7E3F9EEC7FBF0ACB8471C245DB5 /* validate.upb.h */; }; - 9B17BAFD2C767F88B53C9F4E11C05C8B /* per_thread_tls.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 703FD4EAD87AB69C0CD72D67D6C0F79D /* per_thread_tls.h */; }; - 9B2C4964BD31059DBB857E9BFFB41321 /* grpc_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCDFC719506E3830A9BD9B17A928AEA /* grpc_crl_provider.h */; }; - 9B4AD1BF4C63DB1C41B8ADF24A53A093 /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6E8FC561A4277F252AF4538BCADA1E8 /* xds_cluster.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9B4D12E728FC349A9584922BEFAFA3C2 /* client_channel_factory.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 09554B85B9BB9D3E4261E19A129ABA3B /* client_channel_factory.h */; }; - 9B4E1BA5AA272FEFFAFFD69DE56C6B73 /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40CF5C96AF8C7B21946BCA7107A72C3C /* grpc_tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9B5559D2A02DA82D87CC2D5E38F0BD3D /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D3ADE1B1CCB6C1DD93795B6C1CB0F505 /* wakeup_fd_posix_default.h */; }; - 9B585EB9081DB1773D9D71A60CC80353 /* try_join.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C165DD423D6DB27068B7AE1BB8D643C8 /* try_join.h */; }; - 9B5A9D56E8053D182AE6F61820071EB2 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D8140E2AD6B8B5CF2E1340C080524620 /* status.upb.h */; }; - 9B5D98204EBADC889108FBD981705ED7 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7355E0CF980BD0805988D4775BF13703 /* route.upbdefs.h */; }; - 9B64F8DC3193DEB59FA73D3D4562AB6C /* token_bucket.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E03176AE00822C69C0848DF460742279 /* token_bucket.upb_minitable.h */; }; - 9B698C9FED969BC077DEE617FF861090 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 329BAE694E1A92F13AB8359AF0F3A4F4 /* strerror.h */; }; - 9B74CE5CD00CFEA6E2749E26D1C8BC39 /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CB47A69428318DE9AE6D0A0348B58F6 /* tcp_client_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9B7C8C4924A2E2041BA10F5FF4E82A4C /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 994204E70EB77D424524E0058FCFA5AE /* block_annotate.h */; }; - 9B8CB51D982B483F995F2B42F6710E89 /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2EE59E0DDD8FA5EB89B5259E6F8B03 /* iocp.h */; }; - 9B98815C1849ADF0966AE07B971EE9C9 /* ip.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB0F5D380FCE2654CB49D72D600AF7C /* ip.upb.h */; }; - 9B9C3FC23D9A8A752939D1257CD3F2F0 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = F5E0141B5338DA4E7E182FFCD1783F22 /* fork_detect.h */; }; - 9BA19F033FC99D43B097C43E19A9B965 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = E24AFDF47D803630FD14FD6C9F862657 /* status.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9BA4121909365421BA736B5B476C197C /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C5F5161ACB4A1A67563B7F629C0BD3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BACE92A853A61AC097203E5B339185B /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D68C3C3EA99B305C08246903640806 /* call_op_set.h */; }; - 9BBAAFA919DD37C57273848395994B65 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = C35C2652375DAB2F10E27B4AE1E11D47 /* rbac_service_config_parser.h */; }; - 9BC8CCDC776D64C19315F3B951E80680 /* slice.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 7DA635543B2B1CC1845CBBF6399330F4 /* slice.h */; }; - 9BC9B5859A4369763BDE2CE6E3EA2CB1 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = F189553CFEB5E36F46945F034DF86191 /* grpc_alts_credentials_options.h */; }; - 9BD68BBA2AA1858C17F38FF11F88D76E /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 705D852205C63AE70C0163AC86135C86 /* server_info.upbdefs.h */; }; - 9BD8F5BD64616A9C9770897D42B3D022 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 9B1D88E21DB54ADF02DA9C138E5537E6 /* transport_security_common.upb_minitable.h */; }; - 9BDC8A52C60894A9A1766EF84C950FB0 /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21EC4AAE364E8BB58DB35C1EF5900911 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9BE7B53FCA26082FDB6234224741D501 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E83CF6696072013AC704295715423D2 /* versioning.upbdefs.h */; }; - 9BEC4934EEB31BA8F91D87D784E24D31 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 89969406AD9F217E109A0A6813F85E55 /* method_def.h */; }; - 9BEF40124098F689A269F519098DB091 /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 1471341DC06CF1315B8B2B8A86095713 /* extension_range.h */; }; - 9BEFCA36304363DC87068AB9BD3E1037 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02817080FDF75AA4895B41A1D6A480A4 /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9BF4B42137151B88F8F99958E0AA0C47 /* utf8_range.h in Copy third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = B611762C26372A86C6E4B7BF14EE3BB3 /* utf8_range.h */; }; - 9BF6781D325D5CD4244B44B283CD994F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 158B4C46D8FB1F0A3CD12B7EEEB92DB9 /* internal.h */; }; - 9BF7A0EC50B15699FB40C2A46AC73D52 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = B9F0393E5438B29ED5BF17EDA12AB0EF /* empty.upb.h */; }; - 9BF920F51FCB3CC65B16F82F0413BA77 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8229CE6D281DA6692CADA64A104538 /* altscontext.upb.h */; }; - 9BF94DF5BCA27495A849C0CA74B1428F /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A8DC87B8A157E41C83F18FB230E728 /* win_socket.h */; }; - 9BFA8065D471FC35FA216976D13CDF8A /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 52DEAC978A50674DEE3C92CC23EC1061 /* tcp_connect_handshaker.h */; }; - 9BFC49B851034E608664A590A5353F50 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 559991CA990EB074C0243DDDC0A5ECED /* metrics_service.upbdefs.h */; }; - 9C0771C278439A8239C312C3424AAE66 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D092D9E58465768DE9A5794E297098 /* load_file.h */; }; - 9C082BB1C78750407410525F90CB544E /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F18358069A6A6246DF67D3A886C73C /* rbac.upbdefs.h */; }; - 9C0C89ECBCAEFF79F23CE14B47E4A4A9 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 557D475DDAED8EF223AB94D084C7FADE /* http_connection_manager.upbdefs.h */; }; - 9C0CB2AAB913BBA9AFD63FF7A47FD9BC /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8B5BEC2B605A4D6DFE286FD4CD62B3 /* accessors.h */; }; - 9C11150F3DC52C9F31007ABC46A0A76E /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1999DF8AF105D553FDDE8D78048DCC /* alts_grpc_integrity_only_record_protocol.h */; }; - 9C14078CCF2E5C7580601C270FD987E5 /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B01CB988D7B74C259CF0001B34E8B140 /* http_trace.h */; }; - 9C14C583C78E7461369235D895A978B7 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 023BD123D2CD2A4AF52AEF65C2CF0C02 /* CPListItem+Kingfisher.swift */; }; - 9C2176E037B97B838763E20D79037647 /* http_protocol_options.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D526ABBF6EBDA082418D6BF6D9074732 /* http_protocol_options.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C2FFAF0AE44AC20FA59A6093B48A739 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 577984CAD9413088B9BB4E8390E7EFA2 /* tls_utils.h */; }; - 9C32C9629BB14DA815C8E6998E287B7B /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46AC3E7DAB8E40DAF78E1D885D8773B5 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C55FD04DF47C84473A278117AEEAEDB /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BFA869D8C9227B8F2A124484BFB3C3 /* tcp_server.h */; }; - 9C56D5C9058A447EFC1BB74F7FA488D7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 551EDF3F3D789F3E316B36ADE9E5B347 /* cel.upb.h */; }; - 9C652FE3879ECC31E7C684A42061DB1B /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 34100FD6875F6B0F22FF1F99DCA980EE /* init_dump.upbdefs.h */; }; - 9C65D63E3F29F3E173895A9D19145CC6 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 2459A7E3F9EEC7FBF0ACB8471C245DB5 /* validate.upb.h */; }; - 9C6B4AAD2CD4D6D6BF9ACC73C4DF6F68 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E574C58E4F00B56C54201264F16613D /* FIRCLSProcessReportOperation.m */; }; - 9C808C471C7E4B1CFBEE7064F89D28E3 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = B879DFE8CF2C6BE7B5B44C431BD20981 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9C83977A1D8E97F415D0FF23BC9F80B9 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0179B77E575EC292242B73578555FD8F /* http_connect_handshaker.h */; }; - 9C8446C6762156D1BE2751A300298A2F /* crash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3C788730AD4E301C98EE69DE9EAC18 /* crash.h */; }; - 9C84A88033068A5840EE319E364AD5D5 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 646967285927192A134A69D1325DF14C /* config.h */; }; - 9C89AA6B595A11EE799DEADA6335B1A3 /* encode.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 13CE54A039B189E4CD0FFAE3FB8A115B /* encode.hpp */; }; - 9C9548E8B4675954566202F7B87FF0E6 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48498678FCFB03C3703271B970B46BD /* ConstraintConstantTarget.swift */; }; - 9C98C105E93A33BB0B7F372717302247 /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 7DB9CF7695B65BD4C7B432F0CD635F0E /* p256_table.h */; }; - 9C9A3486871BBCFCCAA80433057FFB27 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 408F897A312B2EA58C707C7974AE173C /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9CA37BC9E09E0593B7115AE396D39985 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2DD177B5D14DC4078D6D223F85FFDD48 /* thd.h */; }; - 9CB3084976FA484B812C2C86AF9E71C2 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6376FA095F4B6F3CAEA14B6B2D3DFCC /* metrics.upb_minitable.h */; }; - 9CB7359E49A00F5080CB11DD385BC3CA /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5DE6F936F16D4AF7CC505AEA81DDB0DD /* http_status.upb.h */; }; - 9CC695A340AC3CBF341F61BD76D08FDB /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0C71C263E910955A3661941FEB7B18 /* service_config_parser.h */; }; - 9CC74280347AA147C4652079AE9D9AF5 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CE413EDBB75A32943B9160D9FD2456 /* bdp_estimator.h */; }; - 9CC81BD0B9C47C21893C37940D9438BD /* deprecation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 820BFD1204591CE64316E17C2FBE0C26 /* deprecation.upb_minitable.h */; }; - 9CC8DD4CA702CB5339A64F23C814B45A /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1478307A13B4C5B4E96B233D177CEACB /* route_components.upb.h */; }; - 9CCD3AA3939BE9EEEEE3662674F624A9 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E708C84FEC7FFCBBD6D05130AF9B9 /* asn1.h */; }; - 9CE4C9D6DF8A0C23ECA588A9E9E52897 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0B4FEC44D8996FF35FE89528641A9B4 /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9CE60DDD36B5F3ED740CFAC7F911D29A /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 78F589F964E045227EAB11A056EF9B4F /* chttp2_transport.h */; }; - 9CEF82CCBB6115DFFBEA244625C53BD6 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A6F8C38A7F68C40E0660CEB9DBD02DBF /* FIRCLSApplicationIdentifierModel.m */; }; - 9CF99A2E2E3FDA0C1F271DB7DB43CFE4 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D157E9921C3E718D11CF69A00E3E9E98 /* handle_containers.h */; }; - 9CFAC34568D63E8D4F19E62AE6D349C0 /* health_check.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D90B6DB0E24DCEB7816ADF3481405E3 /* health_check.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9CFCF7870B5A0EE2429EC2FBDEEC1170 /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 251E472B65D83C09BB5FC0E294DAB1AF /* unicode_groups.h */; }; - 9CFF163AB0A206A00300C4EAD258B15A /* descriptor.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D5414C7BA1712802DE6276857E39FA8 /* descriptor.upb_minitable.h */; }; - 9D01B165332ADF5624C76C1010158F49 /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A59475094330130E8016092B3DD5606 /* FIRVerifyCustomTokenResponse.m */; }; - 9D0E45C7CD8C2E823566CB55EA5D7A56 /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 805300EC5BA6E61D4CEACA611464918B /* closure.h */; }; - 9D11C0FDCCBCF62F12DA1EFF54DA65C7 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A8452A78738B167CBD5A6510005ABE /* substitution_format_string.upbdefs.h */; }; - 9D14AA702E594FC3D885F7BC788C83E1 /* stringify_sink.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D393EF2C97D7233D601BFE645FC735 /* stringify_sink.h */; }; - 9D15E04FD770567525ECFEBA8CAF10B2 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = B67847E61B5D4BC44D7F34422D11C6F0 /* windows_engine.h */; }; - 9D1856FE7B5E377ABE05E12BA47B4CC5 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = B24EF83E43B5A3D6F25A6207DDA19E04 /* transport_security_grpc.h */; }; - 9D209EC08A6453F1A9F451714DDB6E7E /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 38209C1FC2EF87EA43B2CE7BD2C5B387 /* curve25519_32.h */; }; - 9D2ABAC41E8E3B0A1C1EBD80FE347182 /* kyber.c in Sources */ = {isa = PBXBuildFile; fileRef = D5F83C5923AA7E3D80E9640864FD5F1D /* kyber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9D3DC9991D8D07F9320DB12235E241D5 /* FIRCLSAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA973D279F00455744D1BCCF98248AFD /* FIRCLSAnalyticsManager.m */; }; - 9D3F5116BCB9A7156E3D6E644F7E1E08 /* secret.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 977643B9A36BBE1E1647A1F2CBDEA9F2 /* secret.upb_minitable.h */; }; - 9D50BC43DB22D38BE4B4FF690894D347 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = F4A34B8B9A73B886C1E350084A4A3FD0 /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9D50ECDED8E24056DF4C07C81A5F152C /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E9C83B819B313DAA4618EAC4B965FF /* FIRAuthExceptionUtils.m */; }; - 9D5514F0BFBE9136DA2BAC52C994563B /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3A39D0FCF3667494F40D2B9A13505DE2 /* metadata_compression_traits.h */; }; - 9D731E969A20C54804377BF86FBE07C1 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 2537E5E92E0F5C5E451C35E57FA32630 /* validate_metadata.h */; }; - 9D739591C46E00B89D35CDE4DE84981E /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 69F49DF1EBD03B840E5A1085F80AA7B6 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D75CC5245593C16F2D95CBF581493C5 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 58FBAA4FE8E6281D16D1C5E888DD2EB5 /* global_subchannel_pool.h */; }; - 9D7C1B847A3C7E578ED821296B40D395 /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 86664BBF1105BF456CD8F60D9C5D1DED /* tls_certificate_verifier.h */; }; - 9D8BB675B956325DFADF62887376D89D /* algorithm.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 35AC1DB79CF82CDD122A857080C23A37 /* algorithm.h */; }; - 9D8C71B0FE51957FCEACFAD6717EA67C /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F4ED2FA3A0B4580AC4D2261D66A7DB98 /* str_join_internal.h */; }; - 9D8D13D1DDB26974B1BE837C834F7CBB /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = AADE114DBA7C3660DF2FF398E1E83AF2 /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D8D463D0A0A54ACE3AA52154B5C3B9D /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9BB3952EB8175A7A7945F0166F33EF2F /* upb_utils.h */; }; - 9D9565E41769ACD204A1D08951C18D45 /* build_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = ABCE99F0D6AEEA6EC4AD39608F997CEE /* build_enum.h */; }; - 9D9C5F0CD313B99F35B4B58F635311EC /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F1E23138C1A71278D613E56741F6BB1 /* grpc_tls_certificate_distributor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D9E99240A480C591CF913AFBC9C71E3 /* orca.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0124BC8BE353D158F45A38FDEB11B46C /* orca.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9DA1AE2FE572A457B176F057482C527A /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEA57D88B45735EF573349CCD5D291D /* wrappers.upb.h */; }; - 9DA3DA713B371DFB398B0580DD06290F /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6AA5A505CA25303C185500F18742485F /* spinlock_akaros.inc */; }; - 9DA561D5BD60FE3171DDF14D3DE20DCA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDD746993DBFB96A3C5B9E951A0D448 /* internal.h */; }; - 9DA67F7558C6FD2341408C9637B39071 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A883DE7BAFB692AF3A1014C7C0B1E0EE /* cluster.upb_minitable.h */; }; - 9DA8819E1D7E267895F6A31DBF8CA86A /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = E60E9A085139B2D3B1857F382D5C6E04 /* channel_arguments.h */; }; - 9DBB2BAFA3753AB5D5319CA84B068172 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97278EA56DC568539320DC45D4735326 /* internal.h */; }; - 9DCFDFDA41DDE4235233A8A0B0DB9DDF /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E54A39517DF2E951E70A3E768C6800 /* message_def.h */; }; - 9DD0C9689B60C005F8070B6CB725E063 /* blocking_counter.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 1BCC80375CCDCD84BDC421B65D96B24F /* blocking_counter.h */; }; - 9DDD040B49567C2565EF523EEB96AC07 /* rand.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 151ED2A36FED297211F26282B7E00257 /* rand.h */; }; - 9DE38CACA80E9843936B52EBDA7F72ED /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F05A8343FA2C2F660BC6EA02580BAE44 /* resolve_address_windows.h */; }; - 9DF8E9150D18053AD19BB10A6A211427 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 709F5F4E5D479CDDB0A2AF787BB0A5AA /* listener_components.upb.h */; }; - 9E02CFFEFE1BEC978B512286F03D31DA /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = B85AFA7E16D5D8801ED9DD0A95233136 /* ConstraintInsetTarget.swift */; }; - 9E0D2E91A71AEF776411967EEAD4053C /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 6B2EE59E0DDD8FA5EB89B5259E6F8B03 /* iocp.h */; }; - 9E14755D0E920318A2BB7921CD6C7462 /* substitution_format_string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 74DDB2F920CC2CE00FCF5914456CBCDD /* substitution_format_string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9E198D300B2F3819B38CE846728F5F8F /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = D258F56C2C6D1D0AF09869636F3DE9BF /* alts_unseal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9E1B2A9C2251EDFB0142903B0F587CD5 /* internal.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = D31B30E15A3DB3C61CB15B20AE0F19EC /* internal.h */; }; - 9E1BEC9EE52A80979B2370049EC0B9C4 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 9DD6EF1D617CFCDD0C718506CC6FEF7D /* enum.h */; }; - 9E2830A7957B84DD5285D77B8606F572 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B09556B502F7609ED5C4F3327286FFB /* fake_transport_security.h */; }; - 9E3B585E1452A4E07B643CC6D0B7DB99 /* skywalking.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 316825C21B3507471F180F05301DF02A /* skywalking.upb_minitable.h */; }; - 9E3BDD5F24A6424AEA4F4F20280DADFF /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 17903AD2FF7E068B69BF743878CFA717 /* nameser.h */; }; - 9E4145F4B970327DC609E87693BCE48F /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5294276CB064C84551F162E43A41F4EE /* event_poller_posix_default.h */; }; - 9E49AC9C8116FFE73A2C3E52940865E6 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 859AE861BEFC599FFD3FCCCF9EC14878 /* memory.h */; }; - 9E645079EAA71E60923571B223843E36 /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 7B149B26C6F0E2EDA026E161F7DB1C64 /* grpc_polled_fd_windows.h */; }; - 9E69B4AFEFB7AA51EBE2F1BAA1CBB420 /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2AD8FB658EBD78470127324F86A366 /* http_server_filter.h */; }; - 9E7152C7472A95D6AEC5C1492695A027 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F64526520B4D1F5C2061701A97D545AA /* ev_posix.h */; }; - 9E723E7524A8F9BCFE3738D0C13253BB /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC6F95EF8ACF3034E8F25950F339E85 /* civil_time_detail.h */; }; - 9E7335FF7B3525F6163E983315638157 /* prog.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 6FE14FC8CF9AD7841BA103189494604A /* prog.h */; }; - 9E7496860F12EEF6106D5D9F0CC84BA0 /* prioritized_race.h in Headers */ = {isa = PBXBuildFile; fileRef = AB85944D59E911F989217BB40D67CCEB /* prioritized_race.h */; }; - 9E750B6B4C0132C2C1AC17CD10ACED8F /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F26527CA3E171B8756B88D11D4D9BA /* audit_logging.h */; }; - 9E754EB7BB0F05C8528E0CF09DA4FBC9 /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = D3DFF65BF982EEF36B7377B51E3FB09C /* stats.h */; }; - 9E7A44989FC32978CF6AF4EFD743FC50 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F0AF175CD3D49B85BA9A63D35B64CD /* bits.h */; }; - 9E7B066AF0D68235377EA180566A21AD /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = E03F826E70301F30A1D5769DE79008DD /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E83F8236840590767883C651ED74EA3 /* cluster.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 21D4C6A220C3652A75FFC8117764B13C /* cluster.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9E8BA6D00F3C826F4F2C95B49649038B /* FIRCrashlyticsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 6368BC1DAAE96CD0FFEF8B063DACFA8B /* FIRCrashlyticsReport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E8BD5BA3675DDEB0CC089D8F38DE6E0 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC6ECDCC70618803F59DE29DBE429032 /* percent.upbdefs.h */; }; - 9E92BD5528D6AFCFC7566A39F1E133E6 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9DBED2E07AD729D10BFE5F3E807C05AE /* timestamp.upbdefs.h */; }; - 9E94BC88E22AE54F71A2B83AADC3ABED /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD689355E672EBDD1E7C9AB57C0C6102 /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9EB61E41A01921B45D4A8F62C476B8F7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 88E1A70F2F45CE05E01C0F4622E8B60B /* cel.upb.h */; }; - 9EC0B6F0D849751A43D281294BCBE4F2 /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 228857644EF34E6CFFDCDFE81FEC9F6D /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9EC880368D642650A94C99B931F79F55 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18CBB0C0A8857FFDD6C32E6247A35881 /* resource.upb_minitable.h */; }; - 9EC8ABF0DA7B2932324C142C7D181764 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBCBFFFC18F4E16AC2E307D6120E66A /* tls.upbdefs.h */; }; - 9ECBFCE31DEDD55DC482E2B59A51B30A /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 930041BC4D8CE62F91BFFD41FC7A5E1F /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9ED3DD5CFF57735BE11B51951CB5B429 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFA48981CDC388624CCBF7B59620ABC1 /* FIRInstallationsBackoffController.m */; }; - 9EED497F9A7E21D7712974E1D8766854 /* csds.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 427E7DA65B0D898F87326EE4DEED68E6 /* csds.upb_minitable.h */; }; - 9EEE0612BDF4D2B1E9DCAE49C659841C /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC48AB17D6584A42698FACD7F414C4E /* scoped_route.upb.h */; }; - 9EF1F0818D0B274DD6E665899952DACB /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = 26E2E9702B18C6BBD974A398283644CE /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9EF4674F71D450CF03CD67118F1CB1C6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B3CDC72ABBF386974A7952F8243DE6 /* internal.h */; }; - 9EF4B2233221AFDE2C6E7B7F99C28977 /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6A95E86938C3CCE0E01448BA9A8C5A /* http_inputs.upb_minitable.h */; }; - 9EF7773A3007CA2EE8EB79512E59F282 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7FF1A6455AA6CA687471ED72F52D597E /* resolve_address_windows.h */; }; - 9EF99CCAB5408A2A173181BDBC6E57D5 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 247ADBC68E3C7E99AACA63B2A6DCF1C7 /* tcp_server.h */; }; - 9EFF5F0F17816BB8BB350597E0FFFB83 /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 525B843E2307084D8AD49AB7D9829353 /* waiter.h */; }; - 9F02ACAF0CFCDB8B0A932E9353E2BF12 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DEBB9A5E026BA814C5BD1D36C98B94 /* authorization_engine.h */; }; - 9F05C48B0FF08BB51F49C6128433B2C9 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F4EB785BC82D7E8EE9FF3E09018A0EC6 /* FIRComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F096D7FDB850D51674B91A8435D2FD9 /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 83EC8B6D3F4B7AF5D5F2676F6C03324C /* base.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F0C5164713CC10A7895B981176B80B3 /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2640B377DA7DE018132FA20FD17280FE /* path_transformation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F10501D0331A04767AE5A32E7DEA553 /* regexp.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B4CEEC06277BA8BEE6E610849D3F9810 /* regexp.h */; }; - 9F114A1E73DE50508AE5A96F78F1351A /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5753EE82D1E97FC7C2596EAEC019955B /* secret.upb.h */; }; - 9F14960BEED9868A2C47918BBE9BF0B1 /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6051FD2FF77E9F1BAA8B51A42B262B4B /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9F1CB14D61EA47A5F669883FB20BCB16 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 065E113B01BDD5D963E7CB9CF1C72C7E /* frame_ping.h */; }; - 9F22F25C03DAB7B84975E24E3687189F /* hashtablez_sampler.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0027965A5ED909BC90C7A69B02FDAC7C /* hashtablez_sampler.h */; }; - 9F2468035C35E4B2C7022DC5FB63033D /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DC903F20740CBA07F98BC4ADC32CCAD /* handshaker_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F292485ED1E172F2CAAAFBEC5325255 /* checked.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D639BADFF8903D3D345D283B3A4BBE5 /* checked.upb_minitable.h */; }; - 9F3E2890B4F3D85106A1E005DD7C49B6 /* program_name.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F87206A074AB081D45C57FD9E9189D36 /* program_name.h */; }; - 9F4255A7D5E5C072DBD3E49A7C8A871E /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = F75EF6D3B654F578AADCFFCBEA8A0D5B /* generic_stub.h */; }; - 9F4B7E1AAD1FDD452B25F9EC33759FC2 /* udp_socket_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 474E3E5A01E52F11CCD11C03F5DB4411 /* udp_socket_config.upb_minitable.h */; }; - 9F4CA14874FD5A7561FBB3CB92368E13 /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 03759A44F8CEFE31CF54223696BE6198 /* write_size_policy.h */; }; - 9F52ACFA043050A7D0361DBA5C2D5CFF /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 601DE7515730221890349E111F5AE3B7 /* certificate_provider_factory.h */; }; - 9F63DDAD7D74025F3E1B1E9BFF66FD9A /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9E9CACE2E868B66028342FED1E68FBD9 /* context_params.upb.h */; }; - 9F68719F3BA98FCCD1C6F9D2CAA6DC90 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCCC04BBB0F0D799EABFB32D41DDACA9 /* ads.upb.h */; }; - 9F74062C8BE6CC9B3EFADE6D3734D464 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B599CD8BAF7CA8FEBBF1C63E72F526 /* map.h */; }; - 9F746E6E58EB9E848290F49E374F81D9 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 6958AC2208A1ACAC6084F525275F8FB9 /* span.h */; }; - 9F795B77C8031490A02489FC5A1EEB9F /* Transaction+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21D241936E3D8C37A7A1808E4AC56341 /* Transaction+WriteEncodable.swift */; }; - 9F86268FAC69FEA2314112490FFF315D /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = CB72F5483B0C5091F57121C55C40E1BD /* compression_internal.h */; }; - 9F88C3B03A86FAC4222CE8750FB2DC14 /* FIRCLSManagerData.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DC41AE046B5773474D1D79CCD11234 /* FIRCLSManagerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8E0C42AECE335493EA3793D4A967F5 /* init_dump.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D18539E0D7CB0261FF0AC73C3A6979CF /* init_dump.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F963530668FE8E97B31C63901DF200C /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 0D4D232A2968EEE702024D4C23948F5B /* child_policy_handler.h */; }; - 9FA11C8DBE26B5C94CF9B89C1F0DF459 /* bn.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B339189D4A45506F4320592CBD21CF85 /* bn.h */; }; - 9FAC03834C89E9A9754AA7A26413218D /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43453326E869146CE7498B6AF2F665AB /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FAD13363C00B46752FB8402D34BFE39 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5766F85E2369E849405B65FD367F03FB /* message.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9FB53C9AF873C744939600C68E91F456 /* stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA980A0F3FBDFE330FF4F91FAA847C5 /* stateful_session_filter.h */; }; - 9FB9E06E34A2D377737C112ABBBCDBE9 /* exponential_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 772B3DD16BA9C4C2298E58C933898B31 /* exponential_distribution.h */; }; - 9FBBFCB35877B7110689230CBFFBCBC3 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC61CA84AFC512C54FCDB446D5B1D5A /* propagation_bits.h */; }; - 9FC901DF49BB6F150581C4AA9496F86D /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 35874B4D86FE75070E6F86018CFA2F16 /* thread_quota.h */; }; - 9FCF41B19FC12CB1F72DB499D0403674 /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9380EE01C6EBABF88258960220E2B07 /* lb_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9FD480E45DA844E2AA85B62B89479743 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F1C0EF3D7A4B42B5E4B7CD1EE18077 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FDC488EB596E97D2AA002E5981AE2A4 /* cord_rep_crc.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDA0383623D3A6FA9E4DAA3FF5CCC689 /* cord_rep_crc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9FE6DBA35E9AA01148DBF5775797812C /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 37B1F5C4F4D315D25F080986F4549F4E /* lame_client.h */; }; - 9FE8C24DC28C859595528B7779FFC22F /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90A853077C45C0106CFDFEDC2A4F5CD2 /* ratelimit_strategy.upbdefs.h */; }; - 9FF0C46BD1E80A1A79BE4C1512D7B327 /* service_config.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 670AF1EE8C59932255BDBD53BF84AD20 /* service_config.h */; }; - 9FF4A25E426A5C931E274A95F34D50D3 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = 7343BB0FC4A3961176E2607634F6A7D2 /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9FF74D13918EA83EDD212E9D166EF720 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DBF7809E36DEED8E8C5737361A4958 /* cpp_impl_of.h */; }; - A029E9243564DCC8F874F9094391CF58 /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3E2F364DAF9E30120B6BB24F7FFEB9 /* grpc_security_constants.h */; }; - A02BAC5C966A2A5E3B6B53138E61BD09 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 86E60D1804B5820D7CC87945E3D38D60 /* grpc_tls_credentials_options.h */; }; - A035E056B112B0DD5C950B7E9BC0CE65 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = F7BFD805C03093816E4101E628B7FFFA /* decode.h */; }; - A03FDA8BC5741880B1EF11AFD248EF48 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 695E473F6B0D1FB2DC6C9DE02821E657 /* ConstraintOffsetTarget.swift */; }; - A044C46D83FBDA32BB0D34CA59B5BAF5 /* resolver.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9002B5813B9F71F325745C93D37550B2 /* resolver.upb_minitable.h */; }; - A049DFBC981ECA084757F43097A9252F /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 96212E0082AB7FF09B6B4C3A92AA1391 /* seq.h */; }; - A055A798931C92E5D7860AD98495C646 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 611417B46538CC08AA430251731B034D /* GDTCORLifecycle.m */; }; - A06809CF15C215C4E3DE1BEDE589AC97 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 149966A7E4C6ACA3278C0865A97201AB /* arena.h */; }; - A0699013F3551382B11CB96332EAE435 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E1A8D1015F1D230AB24D97F3796642 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06CA20239980A2D27E441807777110F /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A77CFFFB8453314C0C18FB710825C3BF /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A07DD7864F5385BDDEE06320233248AC /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 230D3A293F1E7BA490605CBB81C7D32B /* status.upbdefs.h */; }; - A084E3F1ACC752EC1978BF0BCB4D47A8 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 4254059D146289C1FAA0284CC41EFCA7 /* thread_quota.h */; }; - A086ED89A3E083766BCA166687A52EDE /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = F67866E508E6FC6F8FB15FAA2464A999 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A093ED32D270C170396A42E53B39E665 /* load_reporting.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D86F3F1D2AA358F1F3F30F5B38723C64 /* load_reporting.h */; }; - A0960BAA89069EA3F6895D2E4121F2F0 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 120F43501F7BFDEDB977C4B4E09EDCA0 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A09B9AFD549E6B04221E924C2FC6E6FC /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D6DFE5835AEF491ABE20DFD7E5043F /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A09E551BD7F3CBDD8060CBC21FC20AE5 /* compliance.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C0BB620E7DC77355E807D5C4B0048B /* compliance.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A09ED206B837CDE2BEA118B15F2E5AF1 /* write_size_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBDD6C978F9416E0BC7FB8E91538CF9E /* write_size_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A09F46CCC2440CA17B26D54F13A45E93 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DB919E4D466E111F24A3D9EF9E6F96 /* xds_resource_type_impl.h */; }; - A0A310FA1BAB4AAA52602D2E536BDAE2 /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83AD3F950EEA35FBB403B74321E09C81 /* completion_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A0AD531F2A0F22B85EE160987249D0CA /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBA11C0248442186E1BAEFE620031E8 /* error.h */; }; - A0AE62BD37F59AD5729863D0AE05DFA7 /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F3BE62D8F38C4677FDFCBCF4A68E429 /* srtp.h */; }; - A0AFC8E7C4DE3C26F18A88CCCDF9B2F0 /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = 2D65384221304E2240E4FA7778BD2338 /* outlier_detection.h */; }; - A0B77563BFBC95871C0527F6848FD376 /* discovery.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE01F266AF7DADD778E7233772FFCDC /* discovery.upb_minitable.h */; }; - A0C053C5FEC573648982320F41D6A408 /* internal.h in Copy crypto/trust_token Private Headers */ = {isa = PBXBuildFile; fileRef = 88D766291ED4080DBAD9158A4068397C /* internal.h */; }; - A0CB69B288BA265D098BA3B63E46B767 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C797A36D7686B718F26130C0A2584668 /* chunked_vector.h */; }; - A0CCA0A814DC5863FD4314A3CE86D075 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D58F1AF9F39677E5AC233C91FF94E69B /* node.upb.h */; }; - A0CD4A2A8ECCCA71753901B134B6B3F5 /* party.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 4A8AAF2AF9AE3C15B23A7AA4D368C2B5 /* party.h */; }; - A0CDA88FE3CDFEAADCF948B74F68BC65 /* health_check_client.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = F8CF92AC56140F7C99E3B5E5D2421668 /* health_check_client.h */; }; - A0D66509FFA1AEEDA2E6ABC5C507A451 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 24332D51B5024AD7171FB9A93FD65416 /* FIRCLSCompoundOperation.m */; }; - A0DE04FEA29E9B3AA76DE2F643FA4B04 /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = 646967285927192A134A69D1325DF14C /* config.h */; }; - A0DE7F398715BF2C3EAFAA8518BC19A8 /* damerau_levenshtein_distance.cc in Sources */ = {isa = PBXBuildFile; fileRef = 929D3549A4A62F46EC7C0D9D27B2CB06 /* damerau_levenshtein_distance.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A0E9B6C32A8FB2254009F0721E2A4596 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 074EBF9B48B90B902C3F91229E1487F4 /* sensitive.upbdefs.h */; }; - A0EE50982A2190B2E5730C4A63EC209C /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CEED1ED8E7ECA19ECAB6E8DF1B25112 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0F6F90F47E2416F528E1DC8418C0752 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7943963A1ABB6BD689631EEBB9FB49 /* message_def.h */; }; - A0F7EDD3EB760FD0C67114431CBFF44E /* bad_optional_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 6A6F1BBFB7546E0E5FCCF7F9C6BB00B1 /* bad_optional_access.h */; }; - A0FFA06F7FECC93170587391E9BBA170 /* tchar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62E2D099632FAB90CB4F5CF7B3F2B3ED /* tchar.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A102123427506BC247645A4AB8C6B025 /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3AB1E1C8030FABADA78FFF89A78BC3B2 /* tls_spiffe_validator_config.upb_minitable.h */; }; - A102361CBE6912822D0B79FE50DB6B46 /* cord_data_edge.h in Headers */ = {isa = PBXBuildFile; fileRef = 143141C5A0DA3D3F533835FF6A1DBB2D /* cord_data_edge.h */; }; - A10890F5271D5530D63A207D9548DA60 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 42D964BDF3B165670AF17B1BC27F3B0F /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A10C05574C7F84E2F5DD6E111DBF6B02 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = BB3DAE2170E127895DB6724CC3AF757F /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A10C24D6DCD5C4736F806C2B956764DC /* FirebaseRemoteConfigValueDecoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6535855645E49486FBC2521E4549870C /* FirebaseRemoteConfigValueDecoding.swift */; }; - A114E542C1DBD632DBB3FF4614E9AD5E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F8DAB13CE3C5A3C5CC3C2E67BA876D /* internal.h */; }; - A1264129393DEE31B24832B02B50BA16 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 329130D62C4DC761A4BE6DCB77EEFEA7 /* deprecation.upb_minitable.h */; }; - A12A3E5B5367DBC8C2BBCDA30E12FEAF /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 0F77051EAFE649737E970C9B94FD25A9 /* ssl_session.h */; }; - A139A7DD5B03C77B4157873174D59249 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 261BE7324BC8DC968AB5C3D8B03DB128 /* resolver.h */; }; - A13E711FEABC0608ECD6781E85F3A09D /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A85B143BE17B11B55D7D788F62BDF023 /* time_averaged_stats.h */; }; - A14E24D5D6B2514620CF5E76A4E7739C /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B056E69EFFDCC28572D20037C6EA66C /* mem.h */; }; - A15507DAA8B1C533691077DA04C54733 /* message_allocator.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4087803685CDB7440B339D1372134AFB /* message_allocator.h */; }; - A15A7C012362F86345DF5AC0BC5D8349 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8EC417763C719CCC0A3149FC25D2C31D /* xds_client.h */; }; - A15C5C6F3D602D6B797EA6EDF0764C9E /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC4918D8AF65616BC5063D8E50B1B7A0 /* timeout_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A16092B752969090E60BC8FFC787B3AC /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F07A1DB426F661400B76D1A257C925C2 /* quic_config.upbdefs.h */; }; - A16202F52EDBEA916135EDB36239F14E /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D41C5DF3FE1FF88A5868B805E7C67213 /* init_dump.upb.h */; }; - A16A58AD83EDCE2D323A351B72300B00 /* load_config.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 869D5F3DD075965EBC017C2964B14002 /* load_config.h */; }; - A16A94B5292CE9232B746C596E48989A /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC29E264879920FAA94BB9927664FDDE /* listeners.upb_minitable.h */; }; - A16D7988A5F4EC2B0409E3EB25357354 /* status_flag.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 28BF5288BC2283BF5920988A13A1C16A /* status_flag.h */; }; - A1725840F88D787F835BEB164BCD5362 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C6EBB8B07D7A731761BDFCFCBC9946F /* FIRGetProjectConfigResponse.m */; }; - A177F9D5975D9E324D74D20DBBFE18BD /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55E41D9BC4029B7E9564595B1C82EC8A /* iomgr_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A1825D9FFDC1B9485B3C57820E85DFF8 /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA821AE1EAADBDAD65B61A542269C61 /* external_connection_acceptor_impl.h */; }; - A183682AC796D905DD5CCAE12995F9A0 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = F049AF46D7E1FFB877D74FCE27E801A5 /* endian.h */; }; - A1884FB249BCE4D4425D715F18AC65B2 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D99ECE5CFD07E0414CC0991BDAFB78C /* FIRComponentContainer.m */; }; - A18E5243500E11D840C7E36EC3D2E715 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9DC1ED9EDC359578761170A6FA3CEF84 /* handle_containers.h */; }; - A1923436790C9987406690256023A806 /* hpack_parse_result.h in Headers */ = {isa = PBXBuildFile; fileRef = B07F26500D6EE123DD36971F43F776AF /* hpack_parse_result.h */; }; - A1A0CF81F6B4E7BE66223B9DE230F662 /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 34740217E7051F7BB8B1538D88D7D62B /* extension_range.h */; }; - A1A6088725DFD64460CF4311C9CD158C /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAA1E94BC07876BC87A521FF67B1657 /* call_once.h */; }; - A1ABC2280EEC29A91E8F0A50A3F191E1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03417063D7390AD042E1D760D319086D /* UIKit.framework */; }; - A1B19725C77AA135554FF70262B01693 /* siphash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A93E8F5C08A81FBB3F21A03664EF0582 /* siphash.h */; }; - A1B84E49943581CE84B571C7EB6A1F49 /* statusor.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 5C4032A0582A980AD142BC240AEB87AA /* statusor.h */; }; - A1C21DF0C147315A6B4AF40200569645 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C038BF541D68E7AD6944A1E241A8D1 /* FIRFinalizeMFAEnrollmentResponse.m */; }; - A1C479F5C4744774B74A9E28E761C462 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = C4D094A9575BDCE3EA33C90074F8253A /* ssl_session.h */; }; - A1CA1B3490E74DE871A7E3D5232E8DD9 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB4F4FF06FA6A07075020F172DF597A9 /* grpc_tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A1D47A1AF1C681800C544C9E9F4BAF87 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6785212FECFF4C33286F2F1FF23C8C /* match.h */; }; - A1D6648D5A00ACBF9ED98E12D9578937 /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 150287BAB29B0926F1C38DB737A7507B /* versioning.upb.h */; }; - A1D6DC5777CA6435AE9DAE27196765CB /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4AEBD7AAB2048BD5EBFD6FBB922B93B8 /* descriptor.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A1D881CA0A67F53BA03D06A9D922AD24 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AE5BF4282C085DAD045C3AADB7BF92BF /* status_helper.h */; }; - A1E2226D7AB628E41DE9BC913C279EA5 /* mem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1B056E69EFFDCC28572D20037C6EA66C /* mem.h */; }; - A1FD0F6E84BCF4000EAC2328472AE724 /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92F99239E04B31FC6C58370CD99F94EE /* domain.upb_minitable.h */; }; - A20A755B63811F2781502F8199565D6A /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B3DD16BA9C4C2298E58C933898B31 /* exponential_distribution.h */; }; - A2164931B9158AC801300325DBD9E711 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 81275932C3E9417B4BD866B7A67873B3 /* port.h */; }; - A21866B1FC24A26C9CE50D4C05E21DEA /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C0A6B12C872298674E68931C00B91E0 /* security.upb_minitable.h */; }; - A21AA72EC5590A9BB5DC8FCAA306AEDB /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 25D2405EB455E7BBC31E6C61866F5D1D /* randen_slow.h */; }; - A21CF177C08583AACC71642D60A15C0D /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 22B08782CD44D5915482CEC485490C8C /* dynamic_ot.upb.h */; }; - A222702607FD104B725B0F9E579BF34B /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 532E40D999034326EEE1D11FA9FDB0D5 /* FIRStartMFAEnrollmentResponse.m */; }; - A22B29BE458F672B7522E4A69504FF4D /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1CCAA9072A6DB57F64579C4EC44E2AB9 /* xds_channel_args.h */; }; - A22CE706610A1897B57322466A8706FD /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C1084866662B12A9210105BA47B2C1 /* promise_like.h */; }; - A234F0E8B4E5703A84F41881410993B0 /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC68519952E33CB5E673538428790D5 /* resource.upb_minitable.h */; }; - A2356CAEDD9B77B020C283BA4D4E8F18 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 98931D8E1E59C07C242C77FC6EBA71A5 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A24C9CCCFB9B405D2A3883BD596045DC /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 862D93E2D730795ADD020CA403E6F609 /* api_trace.h */; }; - A2507337CE1A6392DAC0312F842FDBF2 /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78154587B97B7BDADDC3F357A4726EDF /* unix_sockets_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A25E6ED93270516DCA862D8C4849C2F9 /* kernel_timeout.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C92C331DBDE8A548D03C2ED559AEC7A8 /* kernel_timeout.h */; }; - A28507C64FF929EA0B88786266B772FB /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A44D1EB2AB7E778D3E0B3C5CAD12690 /* typed_struct.upb_minitable.h */; }; - A2857E5310A2C3D8110C6EA826603305 /* oob_backend_metric_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B84241F66D312631828D886F899DD954 /* oob_backend_metric_internal.h */; }; - A28D9DC22A14DCF93306DBE6D88EE55C /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = C856F3DF27490E0D64FC46CAD27DB83E /* fake_transport_security.h */; }; - A2BC57BD7969C19BB52F4D361C9F79A2 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 8799C57587C8AF9EAEBA09FD764819D8 /* message_compress.h */; }; - A2C9FD3EEB604B58B364F91D7D194A5A /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6ECDCC70618803F59DE29DBE429032 /* percent.upbdefs.h */; }; - A2CD240C9D120B6F3DB1DE6974F2E015 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = F53DABA219B04C15BA666DC81704FC1E /* mpscq.h */; }; - A2DA38D3625E16741FADDE8892C897E7 /* internal.h in Copy crypto/pkcs7 Private Headers */ = {isa = PBXBuildFile; fileRef = 30B4CD7C67E3C223657DBB6C5404445E /* internal.h */; }; - A2DE616C08A312D700360F3B0B3CF354 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A3474E3553A9554F6108CFF45822426 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A2E31D529235112CCD87E131F1F969CB /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C92C331DBDE8A548D03C2ED559AEC7A8 /* kernel_timeout.h */; }; - A2EC2FC0204291913D5F852FFFF0865F /* boringssl_prefix_symbols.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EA0932A495FC26429BD74218CA2F93C0 /* boringssl_prefix_symbols.h */; }; - A2ED0DCFCA9F42C60BABD957111CC54C /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 580ECD3FD8803E638B099FBCE627FACC /* json_util.h */; }; - A2EEDB070726D18A0BA053874FD4BE09 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 49B87887879EFCF251D94665C64D1458 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A2F5E85747AE34096AAADB7B355571BA /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6723992C14AECA3595F92398724150 /* status.h */; }; - A2FC9037578FF9563C439BAA520C74C7 /* has_ostream_operator.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 687F7FE1B0F72E08BAFF3DBC67D66902 /* has_ostream_operator.h */; }; - A30055AA2DE5842601AA44A4E2E21F43 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD818419F17BA1FC8C72E12D7EC868B /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3032F91D232452D03883C6E7D6F0059 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3012845835BB46D2FE3D62C6186836E5 /* global_subchannel_pool.h */; }; - A30B626724BFE89527B2617BEBE1F2F8 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = B77A5287AAA8C7BBB426D35AFB8DE9BD /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A30C3EEF5B4F9153D1E11002ABD1E899 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 19B254C34025FC0096E42AEDF4B2FDDE /* ev_epoll1_linux.h */; }; - A3173503BA72DC5E1FF8C86AE445351A /* usage_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D95451703CCC1510B7B508DB982B0AD /* usage_config.h */; }; - A31A4B719BABDB1166373D082D9088F6 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = F96BA99EBC5996E8EB99DD599810887E /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A31D66DE9485C61473D9D269F5369DD5 /* client_side_weighted_round_robin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADAC606EFAC8D5E37E9F4E04EF9B9E6 /* client_side_weighted_round_robin.upb.h */; }; - A31DA2963CE29A3A3AA2F6F9D7AF0492 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4190C111896418697CA40682B4383BA9 /* internal.h */; }; - A32547F27A5287C476C690E7E944C059 /* config.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 20DCB78FD795C212CFFD62FCA5E4C8E0 /* config.h */; }; - A32A1DEA3A381713A23AF3BEA0C2B732 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D14788684802295667C4E2D8E7ACE2 /* status.h */; }; - A33239F682CF00E58B7988DE7E5D1D93 /* client_channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BDD25932F1FB318A5891275D79DA21 /* client_channel_filter.h */; }; - A33CB95EEA80BDD025E9915BF32CE1EC /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B2560E65CA816C50E92F03E5BC09355 /* api_listener.upb_minitable.h */; }; - A3402B7274690E5272CCE59F02AE0595 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6E8BA159864A5693FD54D42CC8E870 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A357A751BCF28FC7E53D91CFC108FE66 /* filter_state.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DFDDAA0DFC31F08BF744C12483DE6448 /* filter_state.upbdefs.h */; }; - A35A6FF6FB117A5845E10B81A7D0ED11 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6A9783A69751C35008780E0FDEC784C /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A35BBACA8912986211E17129ABAE6C02 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1F1D48A2EA4A940A6C3CFF7D9C4B894E /* call_combiner.h */; }; - A35DBD1B9D5B0E1CFCC741D321666DDB /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 361821109C93AC2A89A45B5754A2E9F0 /* versioning.upb_minitable.h */; }; - A35ED478A24B8A02C14D38158199B196 /* external_privacy_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BDA02546460A1CA55C9B869B9D4ED7 /* external_privacy_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A360C395C3C9AE0D04673FDCEA188F39 /* filter_state.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D0F092AC739BFAF037F48C8485BE17F /* filter_state.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A3695C69E3B11E4BF83E7E99FF99E289 /* if.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E52369054517C82D8BCC21A66836FE4A /* if.h */; }; - A36BAAE8E95EC40D47392949CC9E72E8 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDE537232AD9B5FAA5BEF758258B37C /* alts_shared_resource.h */; }; - A3769F5AE6511DD4EBA8104B9EE84AFE /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C87E050192AE6D2B706422BE3552F48 /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A3773BDCB9BAB86B1616D2ADBE34059A /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CEB16F1717B716957471FDA777EE9D9 /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A37FE239B3910FC3E3FABB6F2581CDBB /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 14B82393F86944C1986FF334882CA313 /* channelz.h */; }; - A38D9820674E2493913012D9B2EE6A77 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = FD7744CA35FB672C45C0510E4C8C15D8 /* grpc_tls_certificate_distributor.h */; }; - A39077EEB077DA40ADC33FAF6CF883F0 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9FC52468AE0D976B98C158D816311B7B /* handshaker_registry.h */; }; - A399798CD69F2DBC878229CC60678B74 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = E63352C0FD8FC0F0CB0E6887931BCD0A /* FIRCLSdSYM.m */; }; - A39D8C761D7CC1FC4A040497DC1C4172 /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 11628222CA65B5A9B66312991892892C /* event_engine.h */; }; - A3A380ACBFD9759549FD1B2A247643A2 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0027965A5ED909BC90C7A69B02FDAC7C /* hashtablez_sampler.h */; }; - A3A545874585A1030B0BEDC855D429C5 /* kyber.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2C19B0C9E2152EE98E4557CE89A30B /* kyber.h */; }; - A3A69487F601051BEBFE4B4A5E3817B0 /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64125B6FE4EA560CA7AE964C9EE54A3E /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A3A770AB560BCAC13DAF5AA46773931F /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = A2ADD0B7C6006D2F704FA4F28F09C772 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3A7D4704EAD750D70DFDA61F59646A7 /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 83D5F8EADAB4331E40230DDA8556F3FB /* json_util.h */; }; - A3AF659BFF8027D222BFE2E4165F0070 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F74E9C5BB1BD18EC70FB2E2EB26536B0 /* regex.upbdefs.h */; }; - A3B024E0FD939DD7659E5482E9E69367 /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5466BD215FF585DD731B89616F3BEA11 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A3BBC763897BA7377778A3EF4D490696 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A6F6994781FC76951917B92F15849405 /* resolve_address_impl.h */; }; - A3C10668D9FE168947FFAC6D4D0F5E93 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1AB45712654DA0168ED93381A293F3 /* range.upb_minitable.h */; }; - A3CAC4494F3BF948DFC9070E598B2607 /* http_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FEB031226EF2F1E7BC5D97603E23DD8 /* http_service.upbdefs.h */; }; - A3CB8F9AB4FB95CC42D3F9D61B31A55D /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE4D26901FAD5D1041EC09D92B264D4 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3E3AB7C765C21AE17B1E6EE6560040C /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 922F54B1C3EF0E5F78D3BB9C4F307A96 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3E98F79CE45C3F157E504E41CA6061C /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 596871A81894B7D0E061C4DFFC09A7B0 /* accesslog.upb.h */; }; - A3EB914D88A18FF5C5BED547F34C55C6 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB9281190DA17390FDD4317F0297108 /* status_conversion.h */; }; - A3F1ABEDF6BE84D5445E6116CFBD5A49 /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CD8F12C728FF9924EB278DD822E39DA /* gethostname_host_name_max.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E8606E3662FF49D7A506E6476ED5C0F /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5644A4B2A4C9D551C24EC149A991E9CD /* TZImageRequestOperation.m */; }; + 8E8E9302149F9F8F7FBDEC33CB2DD459 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0888094FB07C9B4FF7A281BA611D8EC5 /* global_subchannel_pool.h */; }; + 8E921586F1CE5C6A5BDB7825E669935D /* basic_work_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1B7F286BE8EAAFE783C2B7BCF44CF8B /* basic_work_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8E932F5F946E31D8296F3B60732BCEFA /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = C26097BF9AC4C0329B8D69169BF737E9 /* uniform_real_distribution.h */; }; + 8E9C78BDBCED7EBFCB4A8BC0E70FDDD8 /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F7CEDD7815051F1EE7FE260D1D8817DD /* host_port.h */; }; + 8EA3D75EDCB295AA3FADBAD0C41258F5 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED6D06118B50B8018C529F234273B11A /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8EA4DBAFAF71CAC14AE3848DC7368828 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7513E5C5AD21D97727C49ADD4472E4BE /* activity.h */; }; + 8EAB6C7105CD1DBA80C63ED8B92B5F75 /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 43AA3CA09441ABBC51D73CAAA97106D1 /* extension.h */; }; + 8EB823DC3ED9AD9FBF6B91DF8D4DFE16 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B416B424358ADF3EC14EF8DAD967FF3 /* FIRMultiFactorInfo.m */; }; + 8EBAF0021888468C9599F3CE7B45E97D /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0875BA74D2CC070F84F572325C9D606D /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8EBE7CA5BCA4F084AA4A64F8E7063F70 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 129FEA86DE8A1C36D64C7B9EE68EDAEB /* parsed_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8EC658C155C3A1813BF8AF4D1E4D4E98 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 278688C89F40F2C14D2ABB4FDC1EDB95 /* event_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8EC9F148CD1A4159F9E1EC841A140724 /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = D2379A75E9BEE79C38DC035FE7D20E56 /* annotations.upb_minitable.h */; }; + 8ED55209132EF0BAA17EAEC3FF716778 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD94FC90C5B50959E4ADD14F19031F35 /* accesslog.upb_minitable.h */; }; + 8EDF53064034E1F10FD67FC29363121D /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C407D28C6F7B5479BEA274DD4545D699 /* fault.upb.h */; }; + 8EFF74E7B87CB3C345AC3B42B0E8FD4F /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 94B0ECD7783F3BCAED1A9FB2DCEF3440 /* event_poller_posix_default.h */; }; + 8F003FB857466B69E7CB92149A415C6D /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0B27F55BB258640B04D83A3B2736FD /* frame_goaway.h */; }; + 8F011525825D5706D66F4F21D51E9462 /* grpc_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FB529D1E20E93D887B0EDF9AC8AE24F9 /* grpc_service.upb_minitable.h */; }; + 8F0AB4E6A2E240176CD0FCA4D4B6F3D6 /* atomic.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = FB94F69F562E39C8E4149FA22A03A68E /* atomic.h */; }; + 8F185D2A56B8E2504F57D11FF9D773A5 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3957FEE9AC3E3B3FBA6B7214A08E819D /* event_service_config.upb.h */; }; + 8F1C6379D19BBB9649431FCAF05973C4 /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2C6E177D6275B34FBB0F0BE84D7317 /* subchannel_stream_client.h */; }; + 8F1EB6A4AE55EA9FCC8EAC379DE8B3AE /* grpc_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C8F4C677540277F394FFBE23173EC7 /* grpc_service.upb_minitable.h */; }; + 8F1F1A45CD2FE961D02B99B0C277FB39 /* DocumentReference+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0D7C80C0B32330FC2B78DE861B985A /* DocumentReference+Codable.swift */; }; + 8F2527EB716A499C76C28D83FC730C83 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FE6BBBEB45631A6F66F4723E600277 /* pool.h */; }; + 8F2B86226B64DAB5615F713C26F139A8 /* FBSDKAppEventsDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2D7106B19E11322CF19D96F093BE3D /* FBSDKAppEventsDeviceInfo.m */; }; + 8F3C0CD586D5437B1110DA24D394AD8A /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA1D82411E411B3BC947AAE11F5DB4B /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F3CC0226BA00BA7E59C82CA141497F2 /* constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 96CCEE882C597EC9972F28DA266535A5 /* constants.h */; }; + 8F3D4CE8ECD086D10D97570C834DE8FC /* client_side_weighted_round_robin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F3C3437BAF0C36C3543183A419F477 /* client_side_weighted_round_robin.upb_minitable.h */; }; + 8F428402992E8C34F0107E8C64DA0B50 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B4742108D9C12DA4DFD7F41E04EC01 /* block_annotate.h */; }; + 8F441B95792665735BFD10D142EEB309 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9560DD6BA0D6BA8B71094C9B54AC9656 /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 8F45EB02C775C0DD09C8846F917A6AE9 /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 2F3822A9EA299776A89311FC4F9FE435 /* promise.h */; }; + 8F46C87627D381B7B5B1B50971AF1391 /* socket_option.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 244AF837F9EF539D4C2C9D7C4F13ED6E /* socket_option.upb_minitable.h */; }; + 8F88D50990E03A421B097E1D023CAEAF /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AA4B068482C1B7DA4AB991E3163AF8 /* semantic_version.upbdefs.h */; }; + 8F913C98459E39FC17C4F3BCE2D73B37 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = 13E7BE128FC039F0BB4960EB30357313 /* FIRCLSRecordIdentity.m */; }; + 8F94577928A081CD02B608A63934F267 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 54938FD7E1E99E34C685EA5143983EE9 /* status.h */; }; + 8F94C3801AFB4D99A97D0E5E59F88051 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C7C8D087C070C01A79C3F159215418E /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8F965FD4DDEBD5673FBD6A90938BD925 /* client_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 00592B8AED1D500F58C5677BAA38DCFC /* client_interceptor.h */; }; + 8F9814C22E6CA3050CCC022CD141B868 /* posix_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2ACC1088FF89C844BC8F833A38A2A6 /* posix_endpoint.h */; }; + 8FA0F5429D8EB4FF29BBEDDB0FBECD3F /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A6DC2D0BB7644232AA345749AB571C2B /* pollset_set.h */; }; + 8FA9D73647CB51F552E39E8708C9E19F /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = DD7C55ABCDEA47B66E9EEBF316D24727 /* init.h */; }; + 8FB4D02E159FCC28467DF46750758A9B /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = F39C010D1DA44DCB4C4BA27177722D8E /* md5.h */; }; + 8FC332747DAD109B0406B498A2D6F2B9 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AF8F6CB7209392FB9039683874FDD99C /* xds_resolver_attributes.h */; }; + 8FC3D86FEFE43C47A9BD9FBC57EA8650 /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE739610C56258EF257E163CF5BF175 /* fastmath.h */; }; + 8FC889BBD7F4E226091C5F05DD7CDDD8 /* cpu_aarch64_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 63E6229A9C9929DB5813B437E4FEBACF /* cpu_aarch64_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8FCCDD965DEB9A4405F405B929651695 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 941BDAE9434B5BEED506240222E3B72A /* frame_window_update.h */; }; + 8FCF1D98F5EEF8D44E6AEFC8FA77B17F /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = FD18B1F198A000AB4F05D6A3CA6C8B22 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 8FD99627919157A4C3CAF0418314B394 /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = C44432B95CFCBF335B90F777E1AFEA91 /* rbac_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 8FEBE3DCFDB9E8111B2CAF03F679FBA9 /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = D7E5BF4E757840685705AA81C0F89D37 /* json_object_loader.h */; }; + 8FED31F0B87D01C0F6E59CBCF69F0C01 /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59955A570092BE4D0115184D91CC8DBA /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 8FEDC38B18848235CEBA849D22AF2361 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 403D8D41C7A33C698716C3B96EB2CACC /* FIRBundleUtil.m */; }; + 8FEDCA525BA1A6652BF9E46EBEF98527 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 3B445ECFD1BFF6B38095C04E8DB34855 /* sockaddr_utils.h */; }; + 8FF6ACF8C82CFD9CE250C35188D7AA39 /* SettingsCacheClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 858A8B2D11D0623DC5881EB4E5BBB2DE /* SettingsCacheClient.swift */; }; + 8FFEEA2A67E9CB4AE094FC07F4B7598C /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5109D4E409488FBF3C57A788252286D9 /* tap.upb.h */; }; + 8FFF743480E2D8DDC10AB8B622ED6F5F /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D648319250A4425DF19B80E55390453 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9009F6E509FF73A8D2F6A89108D01958 /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A3C5A76EB6325C1F532F998A4958F2 /* tls_spiffe_validator_config.upbdefs.h */; }; + 900D22F673BB488E73585068218F1BA4 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = CC820418D361FDB4B11B4A032121D96A /* race.h */; }; + 9013C633477F58D7F3031D8384E36821 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = A96E8B2ABF1F7B815D89F00C42F30EE9 /* cpp_impl_of.h */; }; + 901D24F23AE003FABD6C9229EF0FBF9D /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 78236B8A90818A515AAC4176A8826D81 /* compression_types.h */; }; + 90248DE30B5E92B02B7473FDAED908BB /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = F31F2A4CBD788D78CC3C07763F0D802A /* raw_hash_set.h */; }; + 902C42187DA6BF8A4E1879894FC80494 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C0BB7A627BDE88F6C62FE42729B637C9 /* manual_constructor.h */; }; + 902ECEB31DE8CD53E01C9CF5D9E60432 /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D6D150EE61FBB6D1F8443BA9F8612A8 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 903665561B19F5490A08DA779C8304BA /* TZPhotoPickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46883749FFC48C657703764895069431 /* TZPhotoPickerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 903BD4E53B23580AE123CFBEF192483D /* call_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ED490BBDB3EF87E368A1D4628AB724 /* call_factory.h */; }; + 903EF55CC844F2298D6889D82BB10EF0 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3957F2DB20B71C54B0D68B7CF1793D8 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 90406B91B9AAFB4D7290CDDDD5DEE761 /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 382F4AD26D743D0AAE065966859C4CA7 /* http_protocol_options.upb_minitable.h */; }; + 9042ACE71188C148DB8AA2EA471A2531 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 63BFC186DEA98FD55F3087DD0A489F08 /* frame_window_update.h */; }; + 9049A10AB18F0CC0D50584A90BD61803 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F94EFA2198F4B5A2A2107FAA10C496F /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 905300B5B7CFD3EB48BA2050A8817824 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BFEA62DC00B70C8C57C53A43C39AAA /* sockaddr_posix.h */; }; + 905481453F937EA39FD5CECBA90E4B65 /* message.hpp in Headers */ = {isa = PBXBuildFile; fileRef = C7A0885C8B3624DC8E37B1B86B32F3E4 /* message.hpp */; }; + 905A0F315ED566AC05DAAC1629D2B996 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03A0A4F932CBF895E5F38122222C06D7 /* cookie.upb.h */; }; + 905B0A8248A77E0E75452B59B8A19BEB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC4E9C9B3FE6F894D6112C579230ABD /* internal.h */; }; + 906011115D3D2AD6FD9D904FFA506FEF /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19030F91114CF0548D3952AB150AC4FA /* _ObjC_HeartbeatsPayload.swift */; }; + 90619BBCFDF782DFF700496858E9B13C /* merkle.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = CF57A7B6ED159A6D81D564DCB9F7E96A /* merkle.h */; }; + 90680CCD2AD88E5489027CD58243E474 /* FirebaseSessions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF49469190925620F5278BD5404BE1C2 /* FirebaseSessions-dummy.m */; }; + 90725A345D39E08E98354C1C2A1F1694 /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 08DBBFAF8A8B580E237407FC34F323F9 /* overload.h */; }; + 9073A1A9CF1A5AA6B17329C074D2A122 /* aggregate_alias.cc in Sources */ = {isa = PBXBuildFile; fileRef = D55D10DE9BD5AA2BC9D831FADFB2B6E4 /* aggregate_alias.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 907D5FA1048238007DC30B7955D76ED5 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 502650DFEC52E056D1416D88160A67F3 /* strerror.h */; }; + 907E0DD8B25A332DEFC329D0BCA80420 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = B74A4447A10AC48D13CF8728EA9E7F47 /* handshaker_registry.h */; }; + 907EB45F903CF99976B422B256B73996 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 476764B4D812387E9250442D5AFC6C9B /* time.h */; }; + 908DE13B5255467EF8F0CA76C0278C07 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC826BD434761D664ADC85D3F8AA5CD9 /* xray.upbdefs.h */; }; + 909AA374D95F6F172B20023158F0E8A2 /* field_def.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B384D2E25407442F4CA3E5C5AE8914 /* field_def.h */; }; + 90C354CE6999D16D5A3BC8543A91E234 /* call_filters.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 710972CF4955B7E1676B60D502F63B72 /* call_filters.h */; }; + 90C5660916B08C966AC0EE5E06B4C2E9 /* program_name.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7651106A82AF6B5F290A91C16BA3BB5 /* program_name.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 90C6D6963BA135501549A1D24B29D88B /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F7440D2D6DB003DC677BE569B7A9037F /* security.upbdefs.h */; }; + 90CEC350CC785E5E657B857702668E48 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 487DFAD84AC26540007CE2AFCE8926D5 /* xds_client_stats.h */; }; + 90CF2E8D9C303AC01824EA5E4A6B0085 /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80994BEEE4F38250D26371B10FFA6F34 /* alts_tsi_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 90D25923A3194E7BCE4ABF5A6751A2AA /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = DD7F7FE9565F85D7C2F0006745BE2B66 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 90D58B3A9897FE04B38C0FF7410D6E4C /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97223640056E39ADC758247D6A011193 /* migrate.upb.h */; }; + 90D7BABE4479552B983D751551AEEDA8 /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A683EE8010E00087E35291E8F4C27C5 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 90EC1370DC45CD3185166CB53F7A3CE7 /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F05A9384C55956B000020425C8582748 /* regex.upb_minitable.h */; }; + 91040D52F8C8DC867E591015448E50BD /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = E48E3F2B713D64AC80B6AE4A04E6A177 /* poisson_distribution.h */; }; + 9105CA59E138B534200808E8418E2B37 /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C52C6A72FEBC2234400F08A210758FD /* xds_transport.h */; }; + 910A25C0B92F2142CA728EC2636EEBCF /* FIRCLSExistingReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4762C854BA9BEBE4ACA5BBDC14093855 /* FIRCLSExistingReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B594FFD8C7D7D67C9BAB7149CBEC1 /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FC3CFE9013AB29A798CD20A0C2443220 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 910BA11F28A0A2360E5037D0D7DD19A0 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 9188E8F0522081F88EB8DF5B980F04DF /* file.h */; }; + 9110EE4E2C8CF6151AAC3EC33ABB01B9 /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81D39A9230F3D6CE492DF2568EBBEE2A /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9115FA54F9C67C907C3B076CFE10B41F /* hash_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 03B2A56D288CC6C14F95292DBF052DB4 /* hash_policy_traits.h */; }; + 9121C958106D5E7AE3DB40B09C2437BD /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C45570006BD7A0807F70C19B48D1202C /* cel.upb.h */; }; + 9123CAE118F94ECD4185F3E99700DAF2 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A06C44CCE2BE7B37A26CDC854D0B216 /* connection_id_generator.h */; }; + 913BF24232316A343C695009A1D40180 /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = BF19ED4520C949477951EA8107218BAB /* strutil.h */; }; + 9146B5CB0A74F5D33A982D0DA4AABB80 /* service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 11429266C24D4F7442171FFF8F9797EE /* service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9149A436B9DAFEBD8AC953E8444B74A9 /* for_each.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C1F42B1F03901F59406A22F44928D3 /* for_each.h */; }; + 9151B0AD85F38D505E66CF35861E7AED /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 318A8DB467EB98A104E34B57DB7C2AC3 /* flow_control.h */; }; + 915552142298AD65DBEFF4E624EFE063 /* type_check.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2007EEDC44C5FC2FAC588A2337B897F2 /* type_check.h */; }; + 91600925D54DD83225C73C31CAAEF925 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 80CC07BDE9593CFC2882A11C7A6C67C8 /* message.h */; }; + 9161CB456A731D64FF251F0AFE253052 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DDB202C60676F680F2972FFE2D5A995B /* tcp_socket_utils.h */; }; + 9166989E4CE9C6395CA9B59024A3E2E1 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E603A29FB7BE6A1B11E7B174FB909F7A /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 917491AE9896E72309F0FC728DD300E7 /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2A4E4C69B2E53B447AD72CB49C4D400 /* ratelimit_strategy.upbdefs.h */; }; + 917F40CC646367CBDF8C60811243845B /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 917E7A63F6A259537A31F5BFB8A06B2C /* bitmap256.h */; }; + 917F43C5F1854ECDF819BA67E7DD8FF5 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3038FE31436A153A8F72A679246704B /* google_c2p_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9181D4A911A5D9DF0EB33D73844FC21F /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D56CAF3393FAC9D5B03AD7DE38594F /* cleanup.h */; }; + 91860A17DDBADD14E59C477530574D02 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 332A1FC2AD148CC5C0304EFBA8807FEA /* utf.h */; }; + 918ADA61321AEEB9FFB323CEF23D9CB8 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = 771019266B5E66C636896E6A32F88A48 /* time_precise.h */; }; + 918C1C89CBD2DB2DDE17A404250F9055 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D398958A26A10F74828EB941DACFC46 /* resource_quota.h */; }; + 918F386B64E8CDDB1DA7D651EFB01897 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4B87213D75CFB6AC5F2DA6C8F5566F14 /* socket_utils_posix.h */; }; + 91A723F016AF5C47ACF7CC260C303F6D /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 140E8876EDF24635777F700D1C8AA853 /* grpc_ares_ev_driver.h */; }; + 91A8F19B7474D40859801380EA1FCD8B /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = ECBA82C9874542A400F7ECA31BEBF8E8 /* FIRCrashlytics.m */; }; + 91AEFBD0E631EAD390B68AA795E4342A /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7F005CF4605D5130B7D5889686AA81E2 /* hpack_encoder.h */; }; + 91B4D5AAAFE2A91B035E12207C2C0AE4 /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DEBEDAE6EF18EB7BFA479DAB53780A /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91C4F721DFB95ADA55B012D16F16065E /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = 89126F02575A746613161F7C170589E0 /* load_system_roots_supported.h */; }; + 91C6DEBAD8A7E17D6D17C186AD94C492 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B22EF5245C41D697E7E898D45404CB7 /* extension.upb.h */; }; + 91C8C146B3C00FC9FCC148544B37A09B /* cord_data_edge.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EEB062ABE281A1E97FE70ACF5D4E9DC9 /* cord_data_edge.h */; }; + 91CB0483D55BEC54B3646CE992D4F43A /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27D32F185DA3E34CAD789C0271812273 /* WeakContainer.swift */; }; + 91CD6BBF9D69586893BFD27150A9AF91 /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = D16DA22C81759A6E4E4C1FAAB4C11526 /* perl_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 91D4BC3D18D93BFC9AB553A9A59B67A5 /* civil_time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 5AF91C7B403888FAB0393D25726032C7 /* civil_time.h */; }; + 91D8A4AC0101E27D65D1CE0707B4C0A7 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FB127370ACD829913D8C1ED61733B82B /* migrate.upbdefs.h */; }; + 91E1A926F5F87D038E9F5FDDB45E847C /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 005FDE1922FDD8B34861A4C31C4546BF /* promise.h */; }; + 91E4C50D13DA0375C84ED15B06A2ABF9 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ED56646BB59EE4A2EBF55FEAA83F1ECE /* stacktrace_win32-inl.inc */; }; + 91EC43946A76A849419992261E450D79 /* ping_abuse_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE21E989455865424CE0958AEC1FE2E /* ping_abuse_policy.h */; }; + 91EE76A4C4BBC171A9E5D6F3691BCEEB /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E9F527B7AB84718D3FF69A78F1BC4F /* trace.upb.h */; }; + 91F22C04885AA4E76DB30D5C2C85BC33 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2DE4804AA353A3EEA0DF73C598AC57 /* raw_logging.h */; }; + 9207AAD42B1C9780F204098669C5AF6A /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = D17A2F24CECB77701C0D6CA93F8B5331 /* subchannel_interface.h */; }; + 920D396EA42C475D8AFDA29266E2400A /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = DB9397D484677F59798C700222EB52D9 /* timestamp.upb.h */; }; + 920F43889D667527D2DF018A389C18D1 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6690A4D06E95E04C825C452F8C71C777 /* xds_channel_stack_modifier.h */; }; + 9215FCA7590B0DB15DC81F6A3561DB64 /* string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C7C04088CFB50D20A7F0D0ADC8EAE97 /* string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 921645250422328E0F238B4F642B354E /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BC7C297262391D5A3D70811E9A39B1E /* FBLPromise+All.m */; }; + 922B6E138A4EE83C51F8E29CFEA8F164 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B19DAC980CA3C6F8B5F8C0A37A915EF /* security.upbdefs.h */; }; + 923116A92DF550E950B2FC0C512CE31F /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37B6A4134ACB66A70999125E3077A320 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9233F4F3F4491947F1AA9F333DAA8A05 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B393EA0D27EBD9EAC78B21CE58F5393 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9233FF5BC851523612F8578924942D19 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CA5DA36875F90CDDBBB6E5D417C4A63C /* fault.upb_minitable.h */; }; + 92352A78A99B4B0311E9447603C396D3 /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8BD0243C542DECD8525F1FEFDEACB381 /* percent.upb.h */; }; + 9249533F84EFC2E98CB7C6B432CF2DB5 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 434F3B48CE807859FDE920B8429707A4 /* discovery.upb.h */; }; + 924B22E65DF02D1A1F1D70FE8D062832 /* create_channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A8DB77783FF298DCEA70F5D256189DC2 /* create_channel.h */; }; + 9258BDFC6F0E09033F76544F050C978D /* http_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A27C356D3B1B34EFB006E4989B771A9D /* http_service.upbdefs.h */; }; + 927B7B6031B45508377DFD140AB6DDE1 /* clusters.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F3F3A5762BF14E5A65EFA548C9ECEC1 /* clusters.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 928174983E6F275114072DE128E33310 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B76DBB386FBE02D557237B3DE20258D2 /* cookie.upbdefs.h */; }; + 92836D69CC5DFDAE31C30706CE010ED7 /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C01BF6EAF6F00592CF5A49636B3F3F67 /* node.upb.h */; }; + 928CADC3BF883712382D13A1D983D1A7 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2526A0755B587983DC01295E004D89F4 /* service.upb.h */; }; + 928E74BA7837F1CE6B3598CD852D1413 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 994DB3EC6A65F4C8459EE129313735F3 /* tcp_server_utils_posix_noifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 928F6E2B8A8457066A231FEA4EC7BD1C /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 84146106E0B336B03BC5EE0E7A0BF982 /* resource.upb_minitable.h */; }; + 92977FAB0168F20C6E9907A8485A3C39 /* xray.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 379A4BC1F466FE894EEADF716010AEF5 /* xray.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 929CF67DDDA006A49DF5F82B4C7EC661 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C6DBE4A6450FB757EE6300DF10AA42 /* collection_entry.upbdefs.h */; }; + 92A5D8C73A6F46936E27EE659B939FD7 /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DDBA6D2D13B28B729444B0AC3BA07A9 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 92A8609836565D14B7E47BA65E67DFF9 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CB1C8043CBEA5DBC3E41CF122F93309F /* desc_state.h */; }; + 92AFF3EA51C056C79F472F1F070E9CC9 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = CB644AE3D6C10C2933BFE98A8FAEA4B5 /* ssl_transport_security.h */; }; + 92B1015440ADC55F65CC106D4B30B905 /* target.h in Headers */ = {isa = PBXBuildFile; fileRef = E321ACBC35744545C85848FCEF87C503 /* target.h */; }; + 92B28FCC7E884BE0BA3142D62C89E35B /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2DB359275885C2F5481B5B83C85405BF /* value.upb.h */; }; + 92B3198E1EBE2EC545BB36AF6A9CC368 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68531312A3D063A6FE88520DDDE9BA60 /* MemoryStorage.swift */; }; + 92B7F65E7538C0CDAA812D49AE9B6178 /* scheduling_mode.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5B55C369C7709CC1F831C89FFEFF05EE /* scheduling_mode.h */; }; + 92BD1B4F02FEAD0912ABFC691E4285E2 /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DA68D9B0DB82112759D5288634D6808 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 92BE38DAE40C2B1E15F1CC195158B84E /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 478A82331DD40A74E8459B036C24E695 /* dynamic_annotations.h */; }; + 92C261BF33736E94F33D8896610990A2 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B987528B6F453471B975AC238DC0CC /* rbac_service_config_parser.h */; }; + 92C65CDDAFEB3A47E77308B0233EA3A6 /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1E84BA4DC8ED02735CFC127345C08E68 /* time.h */; }; + 92D1450C7B36065E4B66117926DB2D75 /* grpcpp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F9CEE9DA45EBCA53AA803E0D0F863BDF /* grpcpp.h */; }; + 92D2FBD143FBB1227F1E588D5865961B /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B66943844840BAEC8763BF3B66857B64 /* file.h */; }; + 92D9C4C3B002D7B83DF9693DD0D4AB9A /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = CF961A7ACCF0EA44A601CAC7C12C70BF /* spinlock_akaros.inc */; }; + 92DDA7745A0BFF703075FF8F7FA5CC20 /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB5FC1623310A03CE949EB3FBD608F59 /* status_code_input.upb.h */; }; + 92DF3F1B1ADC3562A5D0AF19D40A5458 /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F06AE9491FF6D3251D4408B75CBB204 /* FIRVerifyPasswordResponse.m */; }; + 92E21886E0923435C8B84D0AC73E799C /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 153AF31E727E6D1040F2D9DC4FD2ACAC /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 92F20E7657BC3E3644DF8A0034F91DDE /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 0077D96CE804B14A016F2A03F4DB8549 /* FBLPromise+Await.m */; }; + 9300921739F320BB6FA275322C712AC2 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B171CDDDA4D319049ED3C4ADA35D2F2 /* socket_utils.h */; }; + 93062C3FF870EC7C3F961A4910EA80B1 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = E74068A57C279856EFD6CA3F684B37AE /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 930973AF883ED0542D574463EF920946 /* slice_cast.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 37D6BC2B8CD41F450E9064B5214A36BA /* slice_cast.h */; }; + 930B14155AE9AE7839464E387FABA65C /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E67E1B06C6E66CB7BE1E366C25AF3D5C /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 930F6F31BB882D4227EC378EC40C0BCD /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D9FDAE5E07082977761C87EC8DC2300B /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 931343BA0C33542448780257A3AB2341 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D629DEE5B32BF6678BA8614044ED20 /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93167F34C64A10D6D41A9C08C8593441 /* FBSDKCoreKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCFADFE53777D890DE2A9C9352A6E60 /* FBSDKCoreKit+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9328F575B8F3A17D047DD5F8B0368944 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = AE5EA098E3A0EDFBD639BA0105E60CDA /* tagged_ptr.h */; }; + 9330D2D16A7B6D7B25FB6FC7BB29B63A /* pcg_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A8EC6E94B958ABC6BCF2B6812528B0D3 /* pcg_engine.h */; }; + 933D3EFB9B8FC05196596ADD75B053E5 /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F21677B25098699FB361BEFE59AA369B /* cel.upb.h */; }; + 9343B075D4C13DED44042CE62E746E25 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = E13E8ABB8313048C7AB7C3BE34311959 /* ssl_types.h */; }; + 934775AB7277261A4649A16D9DDC1030 /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF45EF61D72EBD819F7A6AA46CF54BA2 /* ip.upb.h */; }; + 9347D57854824EEF967E89F3E945B268 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = EA301560FFBD8D0806484BC60AD3E370 /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934CB53434F69361C12D4D8FF219CB37 /* grpc_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 78FC1307812E40B2E8BCF8A3C5593FFF /* grpc_crl_provider.h */; }; + 935171EF135E0B05D2E9F91E1BD90E68 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CB42EDCCBE7CB46DC3E11278DA2552EF /* resource.upb.h */; }; + 93517A491441DA179646832BDE626C2C /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DC9A7BBADC6952CD63A55E800F7EB0 /* transport_security_common_api.h */; }; + 935F1EC80FA174B46793475BA86F71ED /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7907A6FFBB216AC83745AE992BAD2A8A /* grpc_service.upb.h */; }; + 93607A1F4F8A10126CE0F10DD584AF9D /* xds_override_host.cc in Sources */ = {isa = PBXBuildFile; fileRef = F029D770C33D6CB64459AEE869F8F7DF /* xds_override_host.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93632EAD54E47475E7A9515B83DFAC28 /* token_bucket.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7025F8FECF6879D139D183D1A709F00A /* token_bucket.upb_minitable.h */; }; + 938B5B67DAB1050BF55F6126322E5566 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 276CB116F836ABD3AC78767239857D3A /* local_subchannel_pool.h */; }; + 93973F72719372AE47FEE19ECEC7349B /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 17411B437FA23CD41856403FD256CE13 /* variant.h */; }; + 939B81696969BDFB43F55DEA3F2793B9 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E2663E5418B01B989DFED1D63445C0E /* message.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93A0FFFD4DE6549789DD223B1E1F8966 /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F3362BD76F692EF1BB22287FDE0F3F3 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 93A2ACB064E6B1D9AD282FF9B5A87CAD /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = D001C524EAE1BE5D951A293660BAE213 /* channel_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93A5D596F5C58A5E98DB292CF304F4E9 /* cel.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 485837A641A25188F5AC97BC38BAE09D /* cel.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93A84994DD616810DC330285B97BE50A /* win32_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 864558CB1657C4763EEE912072E55505 /* win32_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 93AB29BE44DD01E1FC5C30FB898F184B /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = FB0AB0B4C1E518695A802B56D04FD4FE /* plugin_credentials.h */; }; + 93AB3BAFD43FFA324C28158E0BE685B9 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 511D4D3CA962140E858FDADA7E49B402 /* status.upbdefs.h */; }; + 93AFF6E2A9F3376CBDA801E78295A7FF /* ares_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF267D1F12ED3A2525AE8AC4D818459 /* ares_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93B08C95F3764F11CF590F5DA23970C0 /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E00893F8B7F2892A483696ABDE8E2537 /* socket_option.upb.h */; }; + 93B709098BE936830A447A75A817676D /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 1113D75D7EBF9099F244C81D614A910D /* trace.h */; }; + 93D8D6BAFF4C349CDCD406BC0CF124A2 /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D565150ADB81184135811542EB3B9CB /* enum.h */; }; + 93E1EB99A5511845DD576ABC8E3007C3 /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EE74A62E9FD03F3DE202CEE0E33DBDB /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 93EBCF48D0656B37D0BF6A4C49A366D9 /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6AD38546099EC4D7B721FAA9A725BE6 /* clusters.upbdefs.h */; }; + 93F4456BCD0B4B0136CA3A31AC98BCED /* inftrees.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 511522BC25D03D38597636D86A086183 /* inftrees.h */; }; + 93F5BBBEE5FDD57341D324531F342BEF /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13CF8F05E1387C67750745330B689AB2 /* orca_load_report.upb.h */; }; + 93F779851844FCDBA21B15617028147D /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1CF84F97E9ADBA641EB7ACEA5B1506 /* migrate.upb.h */; }; + 93F88B437D6CF8825CAF2B60F6C49BD8 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 833F0DD58C96BB422AE63325FF6389B9 /* zipkin.upb.h */; }; + 940EC582111CEF0B2C27A9F3AC6A5124 /* grpc_tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A8F516D5197A9010D1054716F8F6E7 /* grpc_tls_crl_provider.h */; }; + 941245D2F9D6671D4A518DB7400FE07C /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C3E7142CD954B54BC22EB820E15E3A7 /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 94150F4BD68038E1B47C101A3D57318E /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51D0C5EEAF5078C5E405295D4EFE58B0 /* alts_frame_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94244C4D4D208283D4D5E036105E7F39 /* external_prequest_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 08643D34DA6B1A86CAE146CC3D02F275 /* external_prequest_context.nanopb.c */; }; + 942509D6C43A98DCB1F47217CD389D63 /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 39DC697C81245FAD4B35354B0A6CA87F /* ratelimit_unit.upbdefs.h */; }; + 94251FCD8DEA236553D75FB3E8FCE0BA /* route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA7EAF884C4247EA3B05047EBEBC669 /* route.upb_minitable.h */; }; + 9433786BCC3FB715E609FF46C712E5B1 /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8571A36349348E81D6A9021F3F8B14CB /* completion_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94376C8B450EBFC3CDDB7615AD3298DB /* FBSDKWebDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DE3CC4A28DAFE497E3E807E9B6BAEB /* FBSDKWebDialogView.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 943A8D546EA7C8A4B34EA5682E0472FB /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 23F9499DC636B7B1CFD05CA2FF61664F /* json.h */; }; + 943B0A1B436BAF4D419574466EF70FB3 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2DD30A09D30D3F6CA3651985C55F02FD /* SVProgressHUD.bundle */; }; + 9443C025439C54C49DC588340AF3565C /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3008E84395D02DED0F6D50DF8B780925 /* combiner.h */; }; + 944426DCCF5142660F63903059FD2534 /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 66FE898515A2C54B37C0B3ACB0B557CA /* upb_utils.h */; }; + 944FB5CD857CB35979C8B2002A2DB5B8 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EE098047451E178B2AB5C2720E7FF13 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 94522117D895215DAA8B8E61C3EE91BB /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F22E60DB8AF8B35F1CF78F6CB97A6D /* socket_windows.h */; }; + 9454A5496C84C493E0801D8A7B6CF434 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = B197209FA52FC35E7F4CEA44CDE83ECA /* sync.h */; }; + 94665DE40266BD8D555983D3454514E5 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = A3009811B4B0EF9724FBF99936485B26 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 947301847B20094A026122EC2D3A3159 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C99771727415A48B095F5BE2DC228A /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9477170877252F5E8FBE4998BC8C19A8 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36809A12E5F78AD80D2330A7AB154EA9 /* security.upbdefs.h */; }; + 947E4176DA3C46A91E8516CC05B6D7E9 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = D88BDA7BE0C6B5674C598D996EF9D9D4 /* server_config_selector_filter.h */; }; + 94843AF815D0E73AB18B1C58C3DCA146 /* address.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = D30F74ECFEF08BEC4A8BA6E65CE3BD14 /* address.h */; }; + 9485624DDA32E2BF11C9A99E4B7F5DF8 /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DD459C300317BA3965A38D000BCE2E8 /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9485B3A60EFB4E4995ED2219D3B123B6 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 205C6605654D3B7CD1E2336CAB4E0FA8 /* status.h */; }; + 9486A1F99C15B87A0E80346C560247B6 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F46B1FAB0DF83142F1AF3FA6D1CE9E /* grpc_service.upbdefs.h */; }; + 9486EB7CCD7425C9AAD871DC5FA9FFAF /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D963ED9744ABD410CB5519C2B240FBE /* bin_decoder.h */; }; + 9489BDD0A3EC40122DB02609069AF65B /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F0331BC77DD6E8AC4F9302A286251196 /* config_dump_shared.upb.h */; }; + 948EEF68AB392ABF96EC226895F2F0D1 /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 725CB7834559363F37758D622B2F8606 /* semantic_version.upb_minitable.h */; }; + 9492A8BF8E2E21FE6081E482903EBC5A /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CEDF96C8BECA13FC87960768225317 /* iomgr.h */; }; + 9493183704B4AD60EA1E0F69A1ECE5D2 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 01498FA2FD594454D5030E277156B269 /* slice_buffer.h */; }; + 94956BC0BCC27DF05EA8626E0E5D17BB /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9B8186179A9E3C679C9F40DA5E3C9D /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94AAC6BFCBBBBB9F626F7EE0A993DD9D /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DE2FF93DD3DAB056B6875108A452475 /* discovery.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94AB0286C9065E5087A9C9B8552AADF2 /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3279FE278EB23046B743F2FF2C57FDD /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94B01F31C92E1B8584F4D4A9B414E38F /* async_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D43B37EAB758CF76353816E525E6D794 /* async_stream.h */; }; + 94B54985DDCBEACD6EE13319476CB715 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = E00C097ADC1C02EDA0C7838567776DD1 /* atm_gcc_sync.h */; }; + 94B98734783CBC182C424A1949C390E4 /* server_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = EC5D3A10D4C075B5B265E81FC6EB95F8 /* server_credentials.h */; }; + 94C28A6F3A455F69FF88C54C18B26AF2 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CF22CD0E7E1DA209DD8D89A4ABBBC0 /* deadline_filter.h */; }; + 94CA087638EC974CF41C9CBA79EACDEA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8D6A512611345E23AE27EC4616DB8F /* internal.h */; }; + 94D4206551D5BFD266E53D420A2CB08F /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A290AED07D27250B3D14E4D0CA449F8E /* syntax.upbdefs.h */; }; + 94D76C8C6695F3273427668E7DF4D1BC /* FBSDKBridgeAPIProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4086203A27EE251AA65F3C5267616C /* FBSDKBridgeAPIProtocol.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 94D9E18209E6C23182A177854CDC4C7C /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 79AB8446C0D446575CDC100995687846 /* enum_value_def.h */; }; + 94DE78420D83935405A644441DAD368E /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8866F827589E6FEC13BA2A29F82AF4 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94E8736D33D9851AD0BA527E93392EA6 /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 185E00D7AB958A3A2AF7EFC6A2DDB899 /* grpclb_balancer_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 94F20D818FC8C0A16DA0084D0401C63A /* call_spine.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B0FAB3140BD22450BCDF604C5C1E40 /* call_spine.h */; }; + 94F2C8935BCF30ABE45BE9253D932C5D /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 77B56D538004B37697A87B3F040D9627 /* bdp_estimator.h */; }; + 94FCE435D163873CC972C33C242FBAC4 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 893EE7308B0CA610E2470F38A24279BF /* resolver.upbdefs.h */; }; + 9506AD210F8EA4BFC74FA917D8BD1589 /* resource_quota.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2B46F7EA5C5868573CBC8FA2DCE24F96 /* resource_quota.h */; }; + 95106981B6DA1D43C179B07CDE254562 /* GDTCORMetrics+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 253703E063B31569D55BA645D0422450 /* GDTCORMetrics+GDTCCTSupport.m */; }; + 9512B21332B905354033AF2349F208B2 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 704E70B23BAA3899136D8116086B418E /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951D85D392F4E8E440B19A2106BB3E71 /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 163E45064245760574DA929EED89C31C /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9523BBB4D2179BFAC4D1E96AA666767A /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A7AA8CD27E0144A544BB502757B45D /* FIRCLSReportAdapter.m */; }; + 9525FC984FD2F9153264C291DAE1AFFD /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CD1AF9252AED454D6E48E24DEBBA3C6 /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9528A1B2E8D6B8E124C992A380873250 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7ABBE4161DD82BFD54F2F22F825A564D /* metadata.upbdefs.h */; }; + 9529C47739F06E59BD4AD3C5A994AE2E /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DDB0C909B354268B49AB49D96DD81D6 /* json_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 953607B2878E30DB74D17951A0E9F7CD /* histogram_view.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 7570E786D499EEE69E92D4FD150EDB79 /* histogram_view.h */; }; + 953780A0732F22C73A9B28C1D50496C8 /* posix_engine_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12578156D02A7156FB04142883FFE5DB /* posix_engine_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 95394A74EA437EDB7C95B19D0D98B7E8 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1CDA8B1069F2B43E2F349F87C59B8055 /* channel_fwd.h */; }; + 9549B3DE5BCAC04F7F256E14A9354B0B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 355C7D9C7D7B178011B1BF68A9E73BE9 /* PrivacyInfo.xcprivacy */; }; + 954DC8E79B430BD7B7DD95F9260ABCEB /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9FC583F8D59E89672E2573A46A02B47D /* hpack_parse_result.h */; }; + 95535D60531266E44B64D385F7B0B1DB /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F71C7D10213B8076795FC365A143E8F /* wakeup_fd_pipe.h */; }; + 955917E832416721E5BA082E284926ED /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA3E389EB3FBB407D5FD48F0B11905C /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955A35896C964BBC5AC1BBA0B8E8E1B4 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A1F3B0E50072AF92CE6FA179977569 /* useful.h */; }; + 95633D366280C3DCD3D862F70A5F6996 /* symbolize_win32.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 207BDECAC3031BAAA39BFC8BE0245039 /* symbolize_win32.inc */; }; + 9563B0B8F26BD35F96980DA43D578EF4 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 4CA8BB1A2FFEFFD3A1938C110C1D474D /* authorization_policy_provider.h */; }; + 956F8EFA1FB783B30E0E175F798BAB14 /* polling_resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = B427E7685A5923A4C9B85ED1FFFFEF86 /* polling_resolver.h */; }; + 957157B98EAAA8149B21A3AD593CEFC7 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE4A5FA0D5685A4796344FDE88C1612C /* route_components.upbdefs.h */; }; + 957F7D9333D34901575C6983B6111C7E /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7741670FE6B19A87AFDB3E2EE5E85AEE /* config_dump.upbdefs.h */; }; + 9584200B045159D37CB42D8D77A9F71D /* xds_override_host.h in Headers */ = {isa = PBXBuildFile; fileRef = AECF12540D3F76BD5B9490E662ADEE53 /* xds_override_host.h */; }; + 958C8F98BF76D1EEC66E825088D0BC83 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = 838E3B074ADF8D45DE7832668FAB99DB /* internal.h */; }; + 959E89FF6E896710A61871717F94AD8F /* config_dump_shared.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CC6F57714D19DC76B9269B6DBDB1AAAF /* config_dump_shared.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 95A1C808990C4D2FEDD1BEE48BD4DF0A /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = C5BDA3D1DA764F7AC9F21FCFC3178851 /* field.h */; }; + 95B89F67A22B2D8BE5D4ED514B8EEEBC /* if_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6F9A3F59497B3431A3BF6437F8B19571 /* if_list.h */; }; + 95B8DF31BACEC7EC3A65BB5960B7A0D9 /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 212A4E78CB9B5A5BA548266334DCD4C0 /* substitution_format_string.upb.h */; }; + 95B9569C7C59E817BB2320B747812210 /* ping_abuse_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = B188DD2B439A310B2387368DB23624B0 /* ping_abuse_policy.h */; }; + 95C5656E1F4F69DD03DC8F1E11786A66 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB127370ACD829913D8C1ED61733B82B /* migrate.upbdefs.h */; }; + 95C9A759B6FE348495C07DFA67F2B5BF /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 608BC2FC1C717F9AF90A00A3E358A376 /* FBSDKBridgeAPIProtocolNativeV1.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 95CA90F878BDF24F6A9E5B28C1F41778 /* has_absl_stringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 518278901D33EBCACA9BD1AE461A8BDB /* has_absl_stringify.h */; }; + 95CD0E25E0A5FE89D92B7E7E63167E28 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03417063D7390AD042E1D760D319086D /* UIKit.framework */; }; + 95CEE9BABC13B7A52AC53E23EDF2C86A /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E41B8A7E0D7D40A23C5C5B305F40FFC /* channelz_registry.h */; }; + 95D1EA0427D914376C2854925246FDCA /* xds_lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = B290FABD7570E8005636702136638E20 /* xds_lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 95D318C28DE5652A562C5525027DB0F9 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8032EE9764D543857B371F7C921BF0 /* range.upb.h */; }; + 95D84FB6EE62BC095AD3B3F0BA980BF1 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9F4F15AE20B1C0428AF21729BBE10A3B /* api_trace.h */; }; + 95DA62F41EA41DC72729E462F765FDDA /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 26DA371F40F3E59D10F746648D1DEE34 /* string.upbdefs.h */; }; + 95DF9420C8F1474EAEAE866AFB090D31 /* native_windows_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9101071F8CF9885296E783451CF75EA8 /* native_windows_dns_resolver.h */; }; + 95E194A3AABB5407231E898B6686F73E /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 305BB6E1941264F132EC87D3F6883686 /* ConstraintMakerRelatable+Extensions.swift */; }; + 95E72B1E01EE0591A00A2954F3294145 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 581DE77256B6F527DBFD30D1C2367043 /* bootstrap.upb.h */; }; + 95E7F51B2B35FE836C2C48CC3EE66D3B /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = C74967D9F54E8E2EBA6BD56CCCB65ABC /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 95FCD301C270AFA24940A8170A75E36B /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = A433BEF4FBC6D1CF33751A3E7D9591C3 /* channel_args_preconditioning.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 95FEC300C23381AF47AA160309BCDE63 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E84BA4DC8ED02735CFC127345C08E68 /* time.h */; }; + 96098E446A9BFC1D238675E97CB47C6F /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA5F7FD8E5596AFAF5318EF88E9AC72 /* connector.h */; }; + 960BA16F38846CE0D2A84149A4FC4D4D /* byte_buffer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = ACBBFEE7E089AAB61CD6D340E05BB18F /* byte_buffer.h */; }; + 9619B39161896EF37CC65CB5F8773A44 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B5F7417423A780287CF9BBA18A5F941 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9623689FBCF6B9C21357A7FD6847B30C /* time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 7CA883CDB743520939AFD359C2FB9131 /* time.h */; }; + 9632490FC83A53A9A651FF0B410467A5 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 446C7046C55520ED8CE80B159A908FD1 /* debug_location.h */; }; + 964446BA6AB8D9D299B97422BDBD8962 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 1198C7546D5116D707D7C794F9A95CE1 /* FIRCLSProcess.c */; }; + 964BB5260A37142ED8DF17E26FDE7124 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B17FC9378E2E251026632CF6641BE95 /* opentelemetry.upbdefs.h */; }; + 96581E11F3B9A04BB5376D1B8ED00925 /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 28D839A017151BC0D2419367CC75621A /* env.h */; }; + 965A0A3C6D4E7BD537ECAC973DC9E928 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7209137AD1E7FBC72594071765469FAA /* extension.upbdefs.h */; }; + 965BFA314A6131CE9C87D31AEF02760E /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = CBED31DE9B9831B14C76D164E3A2B639 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 967BF94166FBAD8501DDF609FEDD24C3 /* resource_name.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F38C6862EA33B1BE6B4D2EE42FA2215C /* resource_name.upb_minitable.h */; }; + 9682FDA15AAC6E7903D11908C23B306E /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E080AA12FA691892A60477FDD9C4383 /* GULAppDelegateSwizzler.m */; }; + 968C7DA220C1FCDC611A3BA4A2523237 /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = A8EC6E94B958ABC6BCF2B6812528B0D3 /* pcg_engine.h */; }; + 969560C37222E6983C9595DC20329759 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4A31B54E889A01506F338FB81CC418 /* status.h */; }; + 96959B7804F4E2428F2B4F55BBD3E70E /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1941830DA1FC42C13902C54592089B05 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9696792322A500AFBBB82CF4C815ABF4 /* FBSDKCodelessParameterComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B3077D21F52003D7E6D7D914534098 /* FBSDKCodelessParameterComponent.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 96B4074A7B6D62238802FF670AC7DBFD /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD864EB18CC0DF745F5CF17B745725C /* status.upbdefs.h */; }; + 96C2FEAAC1649B3C22F13B010E0E5F3E /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12FBB370BD45FF1E5F744DACDCB7BD57 /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 96CAE36C9C05B2225F0C6CDE4E05CC4B /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0048F0ECA023F221D3C389A27F0DD7 /* layout.h */; }; + 96D8F7B4C0B56F197CBE3FEE3CA30DA4 /* metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BCF6BB9833101314194D3ED53AFC39 /* metadata.h */; }; + 96DF2670D9BEFF721E50447657E4F5EF /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0794FFCC969E0426DD962A1B5076EA8E /* metadata.upb.h */; }; + 96E3F943070C80168D8FD2EB508ECCA5 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 49C998CF25CD5395B71A28D2FBAC3A90 /* resource_locator.upbdefs.h */; }; + 96E616BBA9D7B3046D7D92794F156BC3 /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = F7718106458628E535BE14C8F5E93C78 /* stringpiece.h */; }; + 96F2F7694A62935646D7C214ECA6BCC2 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 00EB35E20530F490FA760EC99A2BD029 /* cluster.upb.h */; }; + 96FE4902C3041517E85FA23315F84FF9 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = 978C03321BD3B61B8D25994EF5E27A21 /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 97013F7BDCC56D792C614CBD1C6972B8 /* dns_resolver_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 620E4543468B31C599AC6E18395B8FEB /* dns_resolver_plugin.h */; }; + 970967DE9D98E80C954476A725092B80 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAF10CDF3F1143EA6CC4CA03ABD6AC8 /* port_platform.h */; }; + 971DE9783009EC15180355FCED2DAF0A /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D7BFBFEAA39E7E88B5D2E2241BBABF3F /* tap.upbdefs.h */; }; + 9726DAC7DC7CD6BC5015E4E84946E9ED /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 02937A039F30BCE44E8E569187168F07 /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9727D779BB056EC2C54B1B75D6AF14FD /* FBSDKTestUsersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8CB370DC9287D45F2F55824BE2485C /* FBSDKTestUsersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 97289D398A5635428BE309372E8EEEB1 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB9F88E9743029D9F84B1FB49BB5846 /* status_conversion.h */; }; + 972C0DF6F01E7C574BA8F38A0C1CB150 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FCF156E709CB29F0CD5181ABA44EAB /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 972DFAA09DAB9B6FFB9FF4FE7CE01446 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA119B238E5D86DE8EFF43C14067A33E /* http_protocol_options.upb.h */; }; + 97366532FBD7BB49D91460BB73E11F49 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EFCF661D064BB8445C123F1015D367 /* endpoint_cfstream.h */; }; + 973DB506F6FF5B203C9AC19B70F79F85 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F205005FC0F9B60D4AE963F7C78686 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97418A3B9DA84406021097E811662CBA /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DED0030F4A4BEB47A740379B7F660AC /* FIRWithdrawMFAResponse.m */; }; + 974DD9E0BF2517445D5FF183E80C055C /* address.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A99EFD40212F40F029BDD3B6867115B5 /* address.upb_minitable.h */; }; + 975308D0EE82BBEA34D3200CDCA995E7 /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A7794C0CCDD3DA422F76B006F4D45D0 /* health_check.upb_minitable.h */; }; + 9753734687B73309BDBF609C3578034D /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = E93BC63A9E9C3AE740308AC2FF2A6CD0 /* status.h */; }; + 97551A8C7C1AB8FBFD490692DD40E241 /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C08DA49F2281F0F6F12C3122EDFB599 /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9755D926DA5B528AEEF1A2D251D9A64D /* legacy_compression_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD94C5575FE3D68FAFA3E9E569843985 /* legacy_compression_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 975CF62DA4E2E1C230AC52E2AB8E8F16 /* range2-sse.c in Sources */ = {isa = PBXBuildFile; fileRef = 65218002F6F109C1180F1EC0BEED03F3 /* range2-sse.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 975E38EAF0C7D7E30EAEBD758A3F59C1 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7387EEB2D1405718267FCFE3E0B9B7CB /* secret.upb_minitable.h */; }; + 975F7D48D2ED88B61BF5925CA093C6FA /* FBSDKBridgeAPIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEF6C5C0EC3CD8B9B64D52A1D7FA398 /* FBSDKBridgeAPIResponse.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9760721ACEDDC0A51BD2F47C86EDB402 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1489BDCFBA8B6D2BB058D882EC3A545C /* delocate.h */; }; + 97675427B9532FEAA6310C832C659BC2 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = CB1B8FCB82E9900F7996CCFC43F8C708 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 976B95FFCAF9938F641B6A12ACB95A40 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ACA7EAF884C4247EA3B05047EBEBC669 /* route.upb_minitable.h */; }; + 977EEA508EF9278EE6E367763EEABA85 /* annotations.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 867DC603C45784104AB436154E4093F0 /* annotations.upb_minitable.h */; }; + 9781CC8EF3DEA138DF44F2DC0E0C2520 /* versioning.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DD2959647FDA15217A3AB4DDA92D6A0F /* versioning.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 978F793BAA15CCD9DF2DE78234849B58 /* cftype_unique_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 455BF997F6DF3C264201A04E53593FE6 /* cftype_unique_ref.h */; }; + 9791B38352A037AADC37A15B2BABAD51 /* FBSDKGateKeeperManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E992BC1FC321D325DCF8A7D8C98F0541 /* FBSDKGateKeeperManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 97961435C3DF75F54696D36932398BFC /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 0046B41FFE88114B720B3B22DA4CF018 /* tmpfile.h */; }; + 979727DE7B18D3C6A12DA38CFCDF33B6 /* http_uri.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E41B159D97428071D2CDBC7EEDECDF /* http_uri.upb_minitable.h */; }; + 97A3FF3457152FC88A9EB1D2ADE632BA /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 236FB7EB10F94BB2CEB88002F4527717 /* cel.upb_minitable.h */; }; + 97A5015E515FE76281C7C96B71EEFA77 /* config_selector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 130D97DA099327DAC2E9C2C42FDBAAC5 /* config_selector.h */; }; + 97B6EBF90030DD962711583D1767A49B /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C1503085DD31E93A7FCAEC7CA4A8AA34 /* xds_http_stateful_session_filter.h */; }; + 97CECFDF611420CC778C674BD108CF4A /* path.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA53FA5458D1AE881439E1DD978EA34 /* path.upb_minitable.h */; }; + 97D01B85B48D8C3EF1462DC5C1F6CD41 /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F958612B31F6E1F40D25944250D305B /* tsan_mutex_interface.h */; }; + 97D86EB7ED24913239B0B1C908B214B9 /* callback_common.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 289FFC48E65C33597D6ABF494EDCFA79 /* callback_common.h */; }; + 97E804E9D89FF91393F17D3D7AB6A64C /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8690F57734734F46755D0A3C8CFC277F /* atm.h */; }; + 97ECB8CCA2581C8934CAC744B67CADB6 /* stateful_session.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF96E6F2B0079E25DBD2F17402A831D /* stateful_session.upb.h */; }; + 97F3BE50A617516AD997AAF661254B10 /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62C1A9EA99E6A84EE56F594D99ED7D /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9800DCACD9544882C1FB598141493AA5 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8AEB775B56D6691753FA42C9B6C2DB33 /* common_closures.h */; }; + 9803574C5AF4EDE2FB65B3BF25266697 /* log.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 74AC3ED6353536A5DF3D9ECEFEB723C2 /* log.h */; }; + 980809EFDEC8F835CDB5FEBB31FB2FD5 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8C1360B2B3A636178092BB264F888C /* file_def.h */; }; + 980CD0C9DB0B1FD1A6422C49AC368A02 /* FIRAggregateSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A180973838CF74051CB000D5290AA0E8 /* FIRAggregateSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 980E54803CF144FCF6B71BB9B7E26850 /* completion_queue_tag.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 988B28A5A73BE3421704B5CF2E5A7B85 /* completion_queue_tag.h */; }; + 9813A09B6374F56E3209D5E942AD46C1 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = AA27658C6EFAB3B0A518646FC99479E2 /* message.h */; }; + 9815033E1A8C57117DAC480523C145BB /* duration.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3DA1381CF8C86CB778ADA307BD9416 /* duration.upb_minitable.h */; }; + 981DDEFE437A851C69D7C0FF4C2323AF /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC3468B8758CED0B653DBE415DFA3772 /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9822247DD3CF202C3DB36DF467F6AD86 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 786C8803F62311599F12EBCEB0939F1C /* timer_manager.h */; }; + 98283170274057D65F6EE01411B3C5B6 /* FBSDKAppLinkReturnToRefererView.h in Headers */ = {isa = PBXBuildFile; fileRef = 423638DDE960D12E2157F9DE196F03A7 /* FBSDKAppLinkReturnToRefererView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 982C293551F3F2568F208B74F0AB2533 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73E02EDCEC6BE938F3402765F134D7E1 /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 982FCC690807870A10A4A9F254F62F90 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED64FCF08B1FC84B49D943DB2C18CB0 /* resource_name.upb.h */; }; + 9830543533EA5036BF06248572A8D488 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A865CFECECAC270FEA4C03ACAFE36A2 /* sensitive.upbdefs.h */; }; + 983DEA9748EDAC19C14062EBE1D4B76F /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56FBD1DD6F955865E4B9A69785F27326 /* dummy.m */; }; + 983F6753B70FEFB9FB4102ABA524B9F3 /* struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 135631D907C74EA4C8F05A8337A329F0 /* struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 98445818AB615F53C5F14A914C7665B1 /* subchannel_stream_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 351CB392135AEDE58C8A160BCA192ACA /* subchannel_stream_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 98469DBD3B86F450DE4FE28BF470589D /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F3A6EB208560E8D7BA8A5DDE16331C9 /* binder_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9851CE41AF3F6D8930452487B7DEA916 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DEDC591E662F0258EA9B87C6A2AB437 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 985D2F7DE2FF0C34A444AD8362864C1B /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EF00CB4192726BB040721FCC8D9F3E6 /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 985D99A26389C110EF4BFD48128D07B7 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 982E6AF47234B0BF367B8F531CA0974F /* sync_posix.h */; }; + 985F3C3E9062029BF08D043F5A96D212 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 511D4D3CA962140E858FDADA7E49B402 /* status.upbdefs.h */; }; + 9862A84C8644D667986AAFA83FFDABCA /* ping_rate_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 324F3E45A8AFE27F9B40F859E76618B3 /* ping_rate_policy.h */; }; + 9866FB6120C073A8CE35FC48FE8CE824 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F17619D6CE34726A8AA4116B6A99E5BF /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9870F872A1C091EA0254EFF04CCB745E /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 0F3C2B4C0002A7745C68ABAE296BD410 /* descriptor.upb.h */; }; + 987D52A0D07EEA3DCDA7478A7ACDCB96 /* channel_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 033E5BFC09045F1B45F5F72E9BF5E825 /* channel_interface.h */; }; + 987DF2C72301319CE0CE83591377CEFC /* NanoPB+CustomStringConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE76D395E10B023CF3F5CF94A9A0089 /* NanoPB+CustomStringConvertible.swift */; }; + 9884DDF037292BA25D9C1D49CB109ED3 /* flat_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A3325E51E471CBE548D575B6B38921 /* flat_hash_set.h */; }; + 9887274BDBA75B5FCCBC22D540308D94 /* backend_metric_recorder.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 142CBC664F8F0E630DD481326BBF2CE6 /* backend_metric_recorder.h */; }; + 98876EA0F9D164D93AFB8812130BF647 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BFA3874E763C006C74D514317DFF912 /* local_security_connector.h */; }; + 9890ED7999ADC24A609282EA86E46BF4 /* inline_variable.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 889E22D3A0EA8D6268A349F2509E39CB /* inline_variable.h */; }; + 98932F008B789E7F448429102B01582F /* call_final_info.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AFF4A17F969042C0C8E709DF4748D818 /* call_final_info.h */; }; + 98A351EE8FDAF5E7233F23F640605640 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6ED64FCF08B1FC84B49D943DB2C18CB0 /* resource_name.upb.h */; }; + 98AC10EA0DBDC82A5F5F0DA8901D1331 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E72EED7E1B2F60D650302D4632612511 /* slice_string_helpers.h */; }; + 98B30E99AFA4D5573C4236F4CEA3AA19 /* retry_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3A85CEB4C05814663B7BD46E9EB42C59 /* retry_filter.h */; }; + 98B3B35C35255EED919782BE6CE8ECAF /* service_indicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFA4753FDE8056931FF5F57F93040D7 /* service_indicator.h */; }; + 98C120CF25E74E6199BF357B2907DDBE /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 97F0B212492A17D284CEEB8A1EAFECC3 /* mpscq.h */; }; + 98C8FA9A898F61F03D4248C8826C6787 /* service_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DC8C29A2A8571BF12B8D9CFC650545D /* service_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 98CDB1FBB31724D16900F2A2E0CCDD34 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD1FA479CAD51E692EE26EB2437227C /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98CFDE98BDEF0334B7AC2B13991E17F7 /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5109D4E409488FBF3C57A788252286D9 /* tap.upb.h */; }; + 98D21E2F8007559F02F2A15A9BA77523 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B302C09BC4F54309768EE89F711653EF /* tls_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 98D63A297152D64A5EF3E40130DCEF3E /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6AEE4F0575AF6FDE1CA895A4622286 /* FIRAuthKeychainServices.m */; }; + 98D79E9F8F64B36793BD857F613E3F32 /* conf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 99C25019820963EDEEB6357F411264A6 /* conf.h */; }; + 98DA8AF7160C0DE7F86AEA4FCAFFD404 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6CB75ABD3A3E8E2CD870C85073B9CB1 /* lrs.upbdefs.h */; }; + 98DB65185B86EC5B38626C33231A447F /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 2B2E3115B4E2A2564B87FDAEBB5B44A7 /* http.upb_minitable.h */; }; + 98E9AACDF1EB3A1CB56B1F5B683ED9B1 /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D1B9696F1DAFBEB3D98CC490B48673 /* server_builder_plugin.h */; }; + 98F570DA48370453D648BD526FDAAEAA /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E34F2F1C75C4490A526A5B3A42DC831E /* LayoutConstraintItem.swift */; }; + 98FA19D16C34EEA4BA96227B8E50D5C7 /* cleanup.h in Copy cleanup/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 39D56CAF3393FAC9D5B03AD7DE38594F /* cleanup.h */; }; + 98FCC4115ED2FE6A550D6C7BA2E4CC3E /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3CE82251C0B5EE1C23C6E03B1C6B68 /* resolver.h */; }; + 98FF3CB2793FA5311E91DCC631D4EE2C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C8B65737B083563A8EB47277DDC3A0 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9907603FB14A714CA22A1FA9C994BB65 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 417C87EA0DE3A70CA359F579A2E57281 /* token_bucket.upb_minitable.h */; }; + 990C615F1B5F14B78996157821597FFE /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DAD6C59D0FC3BA3B690433098DD17CBE /* resource.upb.h */; }; + 990F9122243111E2888F72E50CBE1021 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA6AF4589A6BBDB5F8373E7F27DA92BB /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 99212185B56DCB8ECE36950AEB64F049 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = B0503EDDAE5DABD96342AA64D67700F9 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 992287070334378D8562CC92001585B1 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 599D06CC1A53D98F2C28D927A9EB424A /* insecure_credentials.h */; }; + 992E520403AE98C164D7A869E8B37C49 /* memory.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F167F068B6DF85CF46C7C1377B902F23 /* memory.upb_minitable.h */; }; + 99351B4F190A76BC93CCB46A9C6B8835 /* mutex_stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EFD17307E52566EE6A9041809107441 /* mutex_stats.upb_minitable.h */; }; + 993715D032F796BDB7C27AAAE9646684 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD80E0F60FFC74CD8297A906543AFD40 /* http2_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 993DD43585314507036CCAD80C088CD4 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CD6D5BE2F3DF288DF4F844883F574C /* ostringstream.h */; }; + 9948A8C97E2EAE48D165D4F4CDDDCBBF /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC20418D629766AF0F83531C9B7FC95 /* GDTCORTransport.m */; }; + 994DBDECEAE1ADCC6A93A2E26B08498E /* FIRCrashlyticsReport.m in Sources */ = {isa = PBXBuildFile; fileRef = DB7E652541FB2ED16DEB7BA01A6CAEE1 /* FIRCrashlyticsReport.m */; }; + 9951BB0F09A59991F1532456A562C874 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BA9BFA8653177A957CE3FA52562B6BCD /* local_subchannel_pool.h */; }; + 995FE5FDCB97254F05DDEDA6EB4205F4 /* type_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 11CA2CD28D5ACC35E48EA30E0D8417E8 /* type_list.h */; }; + 9967009E9FE1F0306563A694ECD1EA16 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CA9D6E50B69499BCE1A9945DFB8CD9 /* message.h */; }; + 996B8528DEFD93DA26A177C121F9ABE7 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 64478F3913F30524428E5DADD73A7F16 /* extension.upb.h */; }; + 996ED692B68AD67BE1642ED4D12217A7 /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DB3DAA93DF250F634F3D6455151EFB /* metrics.upbdefs.h */; }; + 997304E9DBA260DC1F402D4C90FD859E /* tap.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3248578D4FF57A9AE81327BDF7DC3F17 /* tap.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 99761C3FD9D336A8E3FE8B4AF6284F2E /* checked.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0789C305D51FD5C85B9C65FB22FD91F2 /* checked.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 997887FACF3F2C9C2CE4F5867DE32BFB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C0C7DEDA57D1A34B9C1E4F4CEDD6AE /* internal.h */; }; + 9983B93F513A12534907CE0224388DFF /* FBSDKViewHierarchy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADDA0196093A9E1D564A3DCEADB0FCC /* FBSDKViewHierarchy.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 99A2CA8336A8FF0B79759E1F7D6ED0BE /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = BE596088D364C86D59FC9E6FE5F20C66 /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 99BB095248BD7E9F71E04DF0E1BC3122 /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12ECA852A2D5E38A1826E20097E1EFF2 /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 99D34DDEAFFEBAA4208F4CB4DBAB4CB5 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F8371E4C97FD1F6B63E552E8890ABB1F /* tls.upb.h */; }; + 99E32F36947E60F947F965964F954299 /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = F7516034F08E36123C3BC50D7FB0DA86 /* oneof_def.h */; }; + 99ECDB47B524A815C0C6EDF1905BCDA6 /* arena.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 16BBE4EC7B42E028D542E61D944DC319 /* arena.h */; }; + 99F5297AE873EF85E83A99177B4E5C01 /* grpc_tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 01643C1180429F77475F9F695D947283 /* grpc_tls_crl_provider.h */; }; + 99F5328EEE29EA6B654290292E3B2083 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D902D1670582C13FB6341A1373D8C8E4 /* struct.upbdefs.h */; }; + 99F5C54064DA274983C7B7CE537C9A95 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C3E605B69E4A54238AFB9986C831654 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 99F5C761EE02E0370B6668394BE9B257 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F0CA737BA9E8CFCFDB82C38287ED4D6 /* cluster.upb.h */; }; + 99F66A05D20920E2CAA92DC75D00AB0B /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 383367349D382C5493FD3C7C0AD8B0D7 /* endpoint.upbdefs.h */; }; + 9A0091E798DC32180EF2A83187BC3A98 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = CF7228323EBD4A00B890D6F20F3066E4 /* client_channel_internal.h */; }; + 9A071AD8E0EB7B2DC97AD8AE0E4D3BE5 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F618CE25031B9698D866E5DFB06FDEC2 /* lightstep.upb.h */; }; + 9A09D28199DCD4360A527B72696F544A /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = FA329BA80AA4B13BB5FFD5498B01AD90 /* type_traits.h */; }; + 9A0BA1137B57A0B1CCDA6876FEF3B2F0 /* symbolize_emscripten.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = B454EE38384FA7272059F594557AF807 /* symbolize_emscripten.inc */; }; + 9A0E32523E3B945C06F5956E32060EE7 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D0D9EF104A926D047786C97744C121 /* http_inputs.upb.h */; }; + 9A15B1E4FDBFF42150A10C23D61B785C /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 135439107741CFFCE44F2B22A01D9416 /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9A1B72501846FE146DBF71E629F5C811 /* dns_resolver_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F09E3068B9227A8AA290D2508081613 /* dns_resolver_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9A2419EE39F8296C1632C8A6D7C11CB7 /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0295369CB1CFCD3AF9EAB9369E0F8F9E /* wrr_locality.upb.h */; }; + 9A254979C766BB0822667A4FCB91BFA3 /* FIRTOTPMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 91AD644737A7EDD89CF5E1ABD6D24DD9 /* FIRTOTPMultiFactorInfo.m */; }; + 9A2EA678915AB7337C48C72619A1BAF0 /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = ECC1320D6743CC5B8ECCA751D90D6E69 /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9A37E98EFA3E95A9ECDEF0EE4944312D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 196F5A88E6FC55CAB2A46410A6342ACF /* http.upbdefs.h */; }; + 9A3C05C7875797F0E2DF13CD92CE3DFF /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 8244D4E57A89D0DE454D3FC9DEFB3166 /* method_def.h */; }; + 9A4CC75F5609EEB2E2A4AA3B68DCCDB2 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 955219FAFC978518827F400018832DD8 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A516AFF18611235157C0A03FC872C3B /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 01408743DD0340653EA2728C3DA7D906 /* json_util.h */; }; + 9A5C340C4D7CCF5EFAA09A3E43E7700A /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 50B16419FC037644021689FB88AE78D3 /* memory.upb_minitable.h */; }; + 9A607CDC062B3FC49CF8905EA2B992B4 /* demangle.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 940EBE2FC58F17129D52BC5CD93E21E2 /* demangle.h */; }; + 9A646F23BA70130C2E1F60D3859B8093 /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0C7D6450F5399BE524879DCB64289F /* statusor_internal.h */; }; + 9A6A865FAC809E5AEA1F6FC9D55585ED /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = ACF32DED9D85FA797B56A07C1493C907 /* client_channel_channelz.h */; }; + 9A6C36255E32ABF66E4685522B3D1210 /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F537E912183026F3C2D08B8CC9204F /* def_pool.h */; }; + 9A766CEE6CD7239CF6D04DDB7625E7CB /* clusters.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D28F25F38EB2CD61DCB724A2D7D862 /* clusters.upb_minitable.h */; }; + 9A794D766048300312E0719D56B9CAF5 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C88EC663FF8B23A7640F2854BBE8C2 /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A82FFBD839AB7F0F83CB5890D3659A4 /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE3683B52203E9F60AEBD75DC5267BC /* forkable.h */; }; + 9A85D5F0B9756C5AD391B0F00A1C36F8 /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBBFA9D6C72EDA0F5CA7E9439992680E /* xds_route_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9A87801045254327961C6B27EC957CE0 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 111027A799574AB6A5BCB58103174848 /* ssl_session_boringssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9A87CA970942143D1BDBE1FBCD2913ED /* ex_data.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4275754F39FFF62E222024E9709CBDBE /* ex_data.h */; }; + 9A88CF1203B30090F9343600D7FD007F /* api_listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BC13C62F963F84353F72B432DC4B443A /* api_listener.upb_minitable.h */; }; + 9A9E8E971C37079CE632E9A5A25455A0 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 8F53DAC51266A2F8ED76CD05BE5407E1 /* loop.h */; }; + 9AA4CDB34EEF1797DB8FB42DCBF2918B /* FBSDKURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 871A7A53D54E55ED4BF4BFB1236A2F68 /* FBSDKURLSession.m */; }; + 9AB4EC70A021040E3DD6F882A57F0BE3 /* resize_uninitialized.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D42BC68F597656EBAB3B5064246A3D84 /* resize_uninitialized.h */; }; + 9ABC334FAB082B75CF4498C6D2587D10 /* gRPC-C++-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D045CC9373BEBEB26298DE9B72A690 /* gRPC-C++-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9ABCED4F1E310FDB0177BBA41E731114 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D198AA3F2D3FD344B7C2A4EDB8E1E38E /* metadata.upb_minitable.h */; }; + 9AC8EDDF8F863820597B6EB2AB34B4D9 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 07F3B0C67215BDB68FB0B6E83EF50AE5 /* grpclb_balancer_addresses.h */; }; + 9AD139639FB3AE2990ED1D5AA4BA0695 /* zipkin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E5570C8363D66718CD1FA505C3A4FA1E /* zipkin.upb_minitable.h */; }; + 9AD3CD4682CC5C5FCF0492AE8C1AD508 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1D47F38A6DB71573DE26B09029BDFD /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AD57780191C75F7C568557143CDB0A5 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4DF0981D0F5CBE6B7A4360761E803A54 /* regex.upb_minitable.h */; }; + 9AE3FEDB17CA68DFCD0BC534B8205E7A /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09CEAC7A12A566870596376A41EB9BA1 /* KFImage.swift */; }; + 9AF2A9AE743E8DD0928CBB09D04CEE18 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = A0370DDB1679FEFFDC8ADB1AD2A2AB3B /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AF33369DE0B4999C7618573D467B299 /* syntax.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 02F6CEB75F1848E486F241A2C543461A /* syntax.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9AF5EF45841AD9079073C786398880E1 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 667611FB78083796E257A5DBC49F2EFE /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B01C7CB41E5EA61ACB198AD7107AAEB /* listener_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD57FB2AF202564836359B5B7670A78 /* listener_components.upb_minitable.h */; }; + 9B057379E97AF6179B7C26D4554DA909 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 81BB687353644AADBED4D8C1ECBEA51F /* opentelemetry.upb.h */; }; + 9B131586AF1E3A3DDC9C16879C2538BE /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ABC69D5F6D619AC425405764076AA614 /* matcher.upb_minitable.h */; }; + 9B186A5911DA466D5F6E31BCA1ED0603 /* if_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9A3F59497B3431A3BF6437F8B19571 /* if_list.h */; }; + 9B1C208D31A4941271DF441E62CC9D6C /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = F21BCDEBFE1D43702E790F02BEFDA009 /* migrate.upb_minitable.h */; }; + 9B39B8EDED805FC101DA87411EC3767E /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B2FC711BC18441ACC64B72AB6710E87A /* xds_http_fault_filter.h */; }; + 9B3B998185B09C67D9DAEE941745CAD1 /* Promise+Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 885591F4F2E6C95F5CC4D86342465C7E /* Promise+Delay.swift */; }; + 9B42D1AB011E63A84EAD5A93389D89EA /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC0E2E343DA748C6C5DFEAA152BC0A5 /* stub_options.h */; }; + 9B5EED7D2A7AF1FE0AE0551BCD2ADF3D /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E196CE5CC1AC6DF99BB40BC4074C9888 /* token_bucket.upbdefs.h */; }; + 9B603B89C4D1B16758AD285B9BEE9DC9 /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F161778C54E0C81B2DB5559524295199 /* service.upb_minitable.h */; }; + 9B637AFEF94C990C12A8F986B080770E /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 8A93CC106488FC69AE7D3EDE4881E6AD /* link.h */; }; + 9B63B127AFA1FBE23EBCEC22DA760075 /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 990D7A634346596D5A7EF74AF93967D8 /* sync_abseil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9B66C201B82499C6EA9D2DB3DA31E403 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED32E5D307992A2F2BF46367DE8446B3 /* tcp_client.h */; }; + 9B69DCC6FEBA451EF6AFA8EB769EEA22 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E03586D9244ED093D1090620A83C1EE /* deprecation.upb.h */; }; + 9B7A38D80F87ED09FA8D3EF6E570E886 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = EB84B1FBD0E5A5BBD49EB470E22C11E5 /* aws_request_signer.h */; }; + 9B7E617C56B8C4588E87A166A8799226 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 05E85BFE2F21D4CADE2AD0B0CA5CAA82 /* xds_resource_type_impl.h */; }; + 9B83125128CC9B9D9FEC1B961F8C2429 /* lrs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D9E0B2057C02F513CDE21DCC1F81CFBA /* lrs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9B8B4F9798E2983060DF015D28D734CC /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ED324ECD6E2B0DE01C9B4D09D90E5077 /* sockaddr.h */; }; + 9B930CE45C94C4F068ED5991511F82D4 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B1DD0D6FE3F41A7BB8D49CE13557DA /* json.h */; }; + 9B9C3FC23D9A8A752939D1257CD3F2F0 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = DA7FB9127D8D7066B5890F31B35A0749 /* fork_detect.h */; }; + 9B9D0202614A2C80A9376283E1268704 /* FBSDKEventBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C52FE43DE8E27D3C705260CCAF270D /* FBSDKEventBinding.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9B9E5E346EB8EFDEDD8FC5704E954924 /* resolver.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EB02BE37D724B14295F97C4E1C3B0F /* resolver.upb_minitable.h */; }; + 9BA2594CA7FB0E991593F0735E0EF93E /* FBSDKGraphRequestDataAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A949AF1F8C0267EE9107C970D41CFD /* FBSDKGraphRequestDataAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9BA42FFDDCFBBB05BCABCD0B8B81B18F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 495B76804346EB8A6E105E46388A856F /* PrivacyInfo.xcprivacy */; }; + 9BA8A9FAF0F1D2DBA3B82DE5A0AD5F1B /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C741F6AA0300B09B31415B2285B604DA /* sensitive.upb.h */; }; + 9BAE67CDE3BFF8F8CADB803AB691B980 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C556FED90344CED6449DFFC8B6197E /* call_op_set.h */; }; + 9BB8E0538B5DE688B99EE8DFFC8ABD91 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC1C0FBB95F095E35ADEDBE6B3F59C6 /* range.upb_minitable.h */; }; + 9BBD95034C8195B0D9183E1902F196A4 /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2BA846C2C36C1433291010EC06C6108B /* init_dump.upb_minitable.h */; }; + 9BBEE4C0466C00703F24C2AFBC886F02 /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07F3BEABB27B04FE0AE8E6A78645D122 /* transport_security_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9BD062A2600FA727554288101AC11F0F /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5069AD7AB69C45B374C635383E23F0C4 /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9BD28EF96DDFF64B9F70D25405C9A20A /* FBSDKCoreKit+Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A9F1C5886E702F3B6BA1D66F3B0C2 /* FBSDKCoreKit+Typealiases.swift */; }; + 9BD5C04F5F097D39928205705F0E9AD4 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7AA74061514853C401E2E33D88D5E8 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9BD7570371714AB465A17184C8E1ACD2 /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2997D63FA71F474C0007E72BAC71BB87 /* mutex_stats.upb.h */; }; + 9BD9D74F5AB508DAA691EDF7EB8605D2 /* posix_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B36D13C0B1B7A537187B6AA728ADE52C /* posix_endpoint.h */; }; + 9BDDE4819BC4998C5DC99D31F9E27748 /* intercepted_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F06C10FFDD32BF8CF414EE12D7CA66A6 /* intercepted_channel.h */; }; + 9BE170E4EBACD5EF4522C9FD266DECC7 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B35D736874D591A0DEB57CC53C0F46E3 /* PrivacyInfo.xcprivacy */; }; + 9BE3FDF238E50CECD368870B0CB1EE2A /* flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C363C241109FD1290B7F146ECABD8C3 /* flag.h */; }; + 9BE6AF540F3013FE2335A93C3FACD9C6 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A51924BFE814104EFC0B7426E92747 /* dynamic_annotations.h */; }; + 9BEC7050EAD0BA0D86FB7BF118EFA94A /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AF152C256552FF4D1A0AD095172E1B7 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9BF6781D325D5CD4244B44B283CD994F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F4983583D0DA2812B46EFE403AB15C76 /* internal.h */; }; + 9BF79064F9792D6BDD690A2852A2E696 /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD528311EB8F4C50194E5507B866B6D /* listeners.upb.h */; }; + 9BF9805240D9E84662E62B44B412D1DB /* nullability_impl.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 983916D434DD03077B1CCAD346CA433C /* nullability_impl.h */; }; + 9BFD239896BBA86A455DD92F9CEA660B /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = 171C5777CEA8840DDD1CD999E5BC2C3B /* randen.h */; }; + 9C0CA22728467165F55E2C8177307184 /* dns_service_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2011920F5DF13A7BCA0EE1BB972113DE /* dns_service_resolver.h */; }; + 9C14C583C78E7461369235D895A978B7 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB6A3684DD306B67CDF7C20522A3162B /* CPListItem+Kingfisher.swift */; }; + 9C22713AC00AB636445ACB06DACCC59D /* thread_local.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 18AB774F1C1CE4ED9113526E5E44DAE4 /* thread_local.h */; }; + 9C4FE65261B4377B59E5E511D835833D /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = D17A2F24CECB77701C0D6CA93F8B5331 /* subchannel_interface.h */; }; + 9C56BDF06739DF703CDD51BC51715553 /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 9D241984C954DADDA735F8DAF4A6DA4C /* posix_engine_listener.h */; }; + 9C6B4AAD2CD4D6D6BF9ACC73C4DF6F68 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B7C89F9AB4FFDC74F0A16AD96EA8944 /* FIRCLSProcessReportOperation.m */; }; + 9C6B9E4A77E73E0F8943E79764E6B872 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AAA8AC4022773E98F3C2F74C9385CD0 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C6BBB4DBE13F80C68AA1C5073A1B6E7 /* utf8_range.h in Copy third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = B16E348A9C8869BDFE6E71FC6DB1CA82 /* utf8_range.h */; }; + 9C7DD36F8CC14C618E36D063CC8E68C9 /* type_traits.h in Copy meta Public Headers */ = {isa = PBXBuildFile; fileRef = FA329BA80AA4B13BB5FFD5498B01AD90 /* type_traits.h */; }; + 9C808C471C7E4B1CFBEE7064F89D28E3 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = CE32075ADDE6E47093DEBBB653A88166 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9C8214C696767ED77EAFBF3691D7A5F8 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 8549EFDEF0331B5302C430360D190D83 /* alts_grpc_record_protocol_common.h */; }; + 9C875C07B88F0FA89644FD586B2B0717 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DA7FEA58C5388239E499BEBE89A0E5EC /* fault.upb.h */; }; + 9C9548E8B4675954566202F7B87FF0E6 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76611FDEF7A5A7F2B9DA9BCC11E4F444 /* ConstraintConstantTarget.swift */; }; + 9C9613AFF19AD5F01391D6C0FC5C7F82 /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAA073E5DCF59F8001017C403B717A22 /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9C98C105E93A33BB0B7F372717302247 /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = EDBE162FD174E3E797DEC0AFF3D04230 /* p256_table.h */; }; + 9C99E99761EC96C0B45FA05B13D2D3F4 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D3C36CF56C53B293DC7CEF1A639052A /* status_code_input.upbdefs.h */; }; + 9C9A3486871BBCFCCAA80433057FFB27 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = C3BB4C6C8F6713CEDAC409E6075B2669 /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9C9E52226343BA863EFC102480244B60 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F00023777E9EC2DAA7520C165B3FBB5 /* cert.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9C9FBCFA938E8F695A7B7A271E095BF0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 404296028BD0409F9BE60821F5C79623 /* status.h */; }; + 9CA85C6D6859F40A7A8B265EEE04B5AE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 299D0F1D46B025B710BEF2C355C25A34 /* ip.upbdefs.h */; }; + 9CA8F7781938F818AD129D0E4A7191D6 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 2C8256867FB1BC4F55EBB140CD1CB48E /* jwt_credentials.h */; }; + 9CAF84E35DEF77D9FCCEED52C1B68CEB /* async_generic_service.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = C94BAF0E58BDA25270CB95F46DC58A2F /* async_generic_service.h */; }; + 9CAFFEEDB120BF7B039A0DD27CF41533 /* can_track_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB1557692C4A90FADF74753E7B06A13 /* can_track_errors.h */; }; + 9CB2DC19F2669706EA036EC42824FD53 /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7474BB8A9EDE5A2717BE78437126845 /* httpbody.upb.h */; }; + 9CB3018E78F85D541598CC29668CC10B /* custom_tag.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DE7F8F562E088B20D3BA91D0EF4E7EB /* custom_tag.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9CC149577889746AFB23BCC764507417 /* FBSDKHybridAppEventsScriptMessageHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC18312FDE8D90F0CFDCD1818CBC22A /* FBSDKHybridAppEventsScriptMessageHandler.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9CC2AAED08501F746DEC80204F389DB7 /* value.h in Headers */ = {isa = PBXBuildFile; fileRef = 192142F996E718186E0CF65EA111A3E7 /* value.h */; }; + 9CCD3AA3939BE9EEEEE3662674F624A9 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFCB4462BA45D27EFEB434938710185 /* asn1.h */; }; + 9CD42947C0378D49AAA8B9628079D8F5 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DDA94EE7AE1D4D6055648D2B9AC0A9 /* sync_custom.h */; }; + 9CE3BE2619EDAA691C2BB42A548DF6A7 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C2FED14A6D4E8B60B8B18EDE24196A00 /* systemd_utils.h */; }; + 9CE40F385D0303126D7594A7E865AA73 /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B2C9E079C8ED1F2F3804574668504A /* thread_quota.h */; }; + 9CE6C5F5B75479A01D08DAC19184A2FE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7B4C36A19D6997CA0B58D5BB2EFB85 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CEF82CCBB6115DFFBEA244625C53BD6 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4374B35CFB1098543AA3E3F3ADDBE8BE /* FIRCLSApplicationIdentifierModel.m */; }; + 9D0152267343A8DACD85568A7ECF8537 /* matcher.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 105588DC056AD6DBE5A6CE5C456822AC /* matcher.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9D01B165332ADF5624C76C1010158F49 /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D210328C7C59286770CF2CA6AFDC81 /* FIRVerifyCustomTokenResponse.m */; }; + 9D0333F31154BC1E2998EDC8B826F0C8 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 20CF832A472627DC724BD4EB8388E119 /* descriptor.upbdefs.h */; }; + 9D0638FE70E2643AF6CFF2F493FE1BEC /* hash_policy.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DF7B6E3E418AF979F1E16E19A0BE1ABD /* hash_policy.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9D17EA54BD7491D08FEA423A504C1065 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 04EB8D7EE3469785716847C14233F7AF /* closure.h */; }; + 9D1A014C8A4239AB1A6E0A382D67F3FE /* config.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 93E83E8AA9AEE07D9F131462690386CB /* config.h */; }; + 9D209EC08A6453F1A9F451714DDB6E7E /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9AAC87CC4E55348A92FB3690FCF9B2 /* curve25519_32.h */; }; + 9D2ABAC41E8E3B0A1C1EBD80FE347182 /* kyber.c in Sources */ = {isa = PBXBuildFile; fileRef = AD2591123761D0231D34CA1DB3C482BD /* kyber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9D3182D7B85BCE93E1368AF170B4EF67 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 565BD22CDDAD6CE141CE14AB40FE7B00 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9D3DC9991D8D07F9320DB12235E241D5 /* FIRCLSAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 149E4F99EE6E5DE2883DC700F9E5FFE1 /* FIRCLSAnalyticsManager.m */; }; + 9D43A6AD828714C6BF199712609F312E /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 654D29EB08AC980185607031023D13F7 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D43B710788C9AD994500728CD2842FE /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4664215E639748BA74AE002C790D2345 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 9D50BC43DB22D38BE4B4FF690894D347 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = CCA0864BF4F0EED02E5D85F554850F99 /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9D50ECDED8E24056DF4C07C81A5F152C /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FE4C74AC402ED8E3468FA8ED75D1BD /* FIRAuthExceptionUtils.m */; }; + 9D5DC6373A5C173547CAE5841EBA93BE /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0505EAD2BA4ACEBE33B4AC7E5D82AA8A /* sensitive.upb.h */; }; + 9D7EA9D47752EB7B5C2555A39E6C639E /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DB359275885C2F5481B5B83C85405BF /* value.upb.h */; }; + 9D7F1C31A0CEA398C359181F1E0E0F9A /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 73A449B6A79660698F489DF7E3E2B179 /* sync.h */; }; + 9D809B92FD37A335ED3A04F7A03FADC1 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E33B9DC8286E7D7622541ED644366CF2 /* accesslog.upbdefs.h */; }; + 9DA544F7BC5C34F8A432CD1988D31D44 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = A08A3C8C8F72AEDE1CA7692285F6E8C4 /* time.h */; }; + 9DA561D5BD60FE3171DDF14D3DE20DCA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 502D05B50A0C8C96B3B32370BA7BA6CF /* internal.h */; }; + 9DA57C0648ADBD9EA4B4D3A9CE26E87A /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 672C8315EB0909787E62E75998E96621 /* certs.upb_minitable.h */; }; + 9DA7481B4654E9810075C406E9F75AAA /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = F17CD1C15753E35B64923D1D0D2764DA /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9DBB2BAFA3753AB5D5319CA84B068172 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5AFE3F4CCD7E2F5A2800C7B37D9064 /* internal.h */; }; + 9DBEDE7C79AB0B5FE3293B3DDF2CFA1A /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8605F65B76409911609FF32EE7731B /* dynamic_ot.upbdefs.h */; }; + 9DCB92F3FD53E745BE644320BA650960 /* reader.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 62D53CE2EDBD032BF0515C2B58D7A454 /* reader.h */; }; + 9DDAD90AF038B245293DC732BCEDDB4C /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26845FAE7A655CD4D2B32868BA96C49D /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9DDD040B49567C2565EF523EEB96AC07 /* rand.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 371607E68776D3706052B1D33CEAE9A1 /* rand.h */; }; + 9DE0FB90CBFBA1FA6FCFB49B8F49031C /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E23200D3FA272EC1A8497FB0352394 /* init_internally.h */; }; + 9DF22F49F72922E5F3DFE1D05B1C24D4 /* client_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 96CB5CEDBD3FE184075B979A6D3F253E /* client_callback.h */; }; + 9DF872ABFC87D9DE7AEF174EEE06719D /* wire_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D27CC5C409DE47019673D43BCDBE5E /* wire_constants.h */; }; + 9E02CFFEFE1BEC978B512286F03D31DA /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC04A11B20488C32D5B5858D417D8495 /* ConstraintInsetTarget.swift */; }; + 9E042E941A3B5D7D960956B3E6B3451C /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C407D28C6F7B5479BEA274DD4545D699 /* fault.upb.h */; }; + 9E0A93ECF7EDAADF27A5196B032FACB7 /* FBSDKDeviceUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C29E7B06DAD03611A9B5551FE64F57 /* FBSDKDeviceUtilities.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9E153E75FEF705DF75F7D9AA63FF56C1 /* domain.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 37E39C37FE540F0BC80DB0ED1A234D30 /* domain.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E1B2A9C2251EDFB0142903B0F587CD5 /* internal.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 19C972FBBE070C268C4A9C24FBFF0C53 /* internal.h */; }; + 9E227E22742B8C1B818C61299BF7F8B7 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E48075EDE88BE4C97C82232F54CA878C /* timer.h */; }; + 9E254B4B2DB397C6914AF3A5DD1CC5A4 /* event_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = D86C1E42E7A3D0FECE20A8841CA4FD4D /* event_poller.h */; }; + 9E2623915AB2718FAD46F6114340FC35 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F6EC2CB099E30CDA49820E93000981 /* sensitive.upb_minitable.h */; }; + 9E27167C0473F6BF18F71C38EE2F67E9 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C38BA0D11326AA1FF198D0CA0BC3C8BF /* wakeup_fd_posix_default.h */; }; + 9E2B8A941899E243FA370A754F9EF82E /* http_status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B86EB4B55DDE9313D4E932683603033 /* http_status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E2D20EABED910F723E951B7C6E3D7CD /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8303827217EDE7BC9F03C61F0F45FBE1 /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9E2D4FFEA9F15E656DF4242887045106 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = C50606E97EA31EFC322107651E9E70ED /* GULMutableDictionary.m */; }; + 9E3611FE0BAB067A2CC00E280951FA87 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC06E2A53CFB248899359032C5C89FA /* dual_ref_counted.h */; }; + 9E38D42D96596C78E22BD409A7F734C9 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = B1BAD7F854BD2776E319B9C053031ACE /* race.h */; }; + 9E39358FC5E25E8E4BC40C63B4B4C22E /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D0347A2321CD0BE176A91A4611C191 /* wakeup_fd_posix.h */; }; + 9E39B3949E33F4150BA72D39AA971F29 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 9908E405799FBD83223E281AEABFCEDE /* fake_transport_security.h */; }; + 9E3C8CDB0CECEA4A65CA956FCD6D0713 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 1F3A4510DC32A0DF3CD82A111999EF8C /* decode.h */; }; + 9E475F1BE62711589E68E42955DC6987 /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 262735ED2CE526B9BAC4692EA627D33A /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E4A0023B0D945D81E4CBF7044B1134F /* legacy_server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAF5614AE8CAA82F046E0FB61D3C9969 /* legacy_server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E4A6AEDC2844604CB53FF49E90AF6F4 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 7359DD942A0AA8DD52E78358B11FD6FE /* oob_backend_metric_internal.h */; }; + 9E5D4460A2833A08461260ABCC73BEAE /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFE927F35A5C87FF61F1ABCA11163C9 /* listeners.upb.h */; }; + 9E61E49333C2DD66BF3245AFA108B5AF /* pthread_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCBA1476E399E1A433FDBBE4CB5B41D6 /* pthread_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9E7A2BAAB5FC027C4BC8336E9341D7FC /* types.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 98D01573EC9CE6EA60F27F4E91A956E4 /* types.h */; }; + 9E7DADE26ACCF83D3E6820A1521F8135 /* async_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = AA29F1DE0A895F2ABC09AF7D8647F873 /* async_unary_call.h */; }; + 9E7DF2D4A6C8FB07730C6D59024EAF66 /* sync_generic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1FD47565DF241542F4C6E81F71E9053A /* sync_generic.h */; }; + 9E8338279E7C198B56F62B1AF3845E0A /* method_handler.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 94A44ECF8F3488CFBDEE21BD37288A61 /* method_handler.h */; }; + 9E837829CEEEBF342EDA817186A1D33E /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = 669194E09F32273FB836725EA5F5B987 /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + 9E84D85158E70E61D3B82F9DDEFF0250 /* randen_detect.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B633E038779814482CED2C74057DA3F7 /* randen_detect.h */; }; + 9E88E77078DE9986A860E00DE87A72F1 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */ = {isa = PBXBuildFile; fileRef = 2D03B104CAECFE3CC6C03672748B965E /* dns_resolver.h */; }; + 9E8BA6D00F3C826F4F2C95B49649038B /* FIRCrashlyticsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 673218C074E6450AC91C7E54A5860E0F /* FIRCrashlyticsReport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E927C132DC9E421225DA533C7C14382 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A6406BB3E13FF01D50BEC63228443EC6 /* security.upbdefs.h */; }; + 9E9291329D3AB10D12A8EF81FE894F61 /* wrr_locality.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A96FA43EBF97DA4CEDD4C69E03A4BA8 /* wrr_locality.upb_minitable.h */; }; + 9E946DE6F0AF99AC6DE2C236C054535E /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1524006C14DDA5D14AB703813AFC364A /* api_listener.upb_minitable.h */; }; + 9E95007F217781E68CA9A73F499927D8 /* FBSDKAccessTokenCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59DAAC08C67E96BAA761780E7F843E /* FBSDKAccessTokenCache.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9E9A8DFB210F93A7D3F49B6FE0144CF0 /* atoi.c in Sources */ = {isa = PBXBuildFile; fileRef = E943B4B5225B551F8DDB28706401B877 /* atoi.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9E9B862C4AD3C3271A3DCE9E98395EDE /* cf_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B0A3749AD88DC2BEF61A35A335A7C9 /* cf_engine.h */; }; + 9E9DF931F47033C04FFF1352E2AEAE2E /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = E9541F7E95D69A5F464FEBBE54252724 /* rls_config.upb.h */; }; + 9EA43282FD3C83C398EBDDE26F03AB5E /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 02258EF222115499C277B1971A0B69B7 /* chttp2_server.h */; }; + 9EAC1F14D127E10523006D1F70738BBC /* FirebaseRemoteConfigInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B088961751151889C6F17723566E2CC /* FirebaseRemoteConfigInterop-dummy.m */; }; + 9EAD99656AAF99A2A96833E6444F73A8 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 68383F0F6C3E78A9CBEEE69614FCEC6F /* collection_entry.upb.h */; }; + 9EAE41972BD386598D524ADEB23EC6A5 /* sensitive.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 5184861EFD67FE5F9BBB50C2013DCFAF /* sensitive.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9EB0587D157F194879D5BD8FDA95FC6D /* cord_rep_consume.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0A8F6FDDECDB9D3A3F599F72F483A816 /* cord_rep_consume.h */; }; + 9EB14E99B6C41F4A9F94D8226492E1B9 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3C6EB9F6FCA0069BBA39F2F5D3180666 /* cluster.upb_minitable.h */; }; + 9EB700B7192B9675BA839FBA240B5579 /* semantic_version.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF0B4A6081B7A4CE140A676D823BC74 /* semantic_version.upb_minitable.h */; }; + 9EB9A8E61FAB1C0CD61C2BBFFF7A30B1 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BF2637BE23803A667F66ABBC4FD591 /* grpc_alts_credentials_options.h */; }; + 9EBA5CE9A47F50CBC769AC6D03B6A99B /* FBSDKMeasurementEvent_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D008FE6E0D16211546546B5FCAB50B9 /* FBSDKMeasurementEvent_Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9EBD6A4452F5CD9F2A92CF5420EDCC3A /* compliance.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4392D20B3776720206267B344D4CB69C /* compliance.nanopb.c */; }; + 9EC0B6F0D849751A43D281294BCBE4F2 /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A4C6651B6992B2804BD53C93409D66C /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9EC64EF850822244F5A872ED266EC155 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C592929E97A2CBDC2AA60124D58F198D /* security.upb.h */; }; + 9ECAA8AB8F9E8F45FA996A68C2095923 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C42A1E4EE0CAA197AD5154F679BDBED9 /* number.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9ECBFCE31DEDD55DC482E2B59A51B30A /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A933EC57C9E5A013342BA74D8E2685D /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9ED3DEA26784E82C4B944C4923700362 /* oob_backend_metric_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7359DD942A0AA8DD52E78358B11FD6FE /* oob_backend_metric_internal.h */; }; + 9EDCD5F161425D3575E1997B772ECDA3 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EBF0AEA85DF190171C15DE6717E446D /* interceptor.h */; }; + 9EE7725E58F4546150AFD2C6A0DC8ACD /* FBSDKBridgeAPIProtocolWebV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 096BB01ABB896814D52C6F5BC83130BA /* FBSDKBridgeAPIProtocolWebV1.m */; }; + 9EF1F0818D0B274DD6E665899952DACB /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = E3133F442732EBE09DC5DFF452AB1338 /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9EF20FD6A4314E4019F40A1C9A3DC6C3 /* call_tracer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BED69B94D1E935BAD0BAD6D683FDCD3 /* call_tracer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9EF4674F71D450CF03CD67118F1CB1C6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E06788068B4F5A7B888F858D0DAC68B /* internal.h */; }; + 9EF5BC60B5B1D69D7C804F81DA8EE7D7 /* stdcpp_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1A139CABF1345C7AB47D0EDF513C373 /* stdcpp_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + 9EFA0ECB8EDEDB0CD5498EA8BF8B4E45 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5944D50D48A5B70C2EC5D4F4860B1753 /* socket_option.upbdefs.h */; }; + 9EFA2C016ED79DE0A2029E0822FF92BB /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB41D141FAD4E821D5F919C8610FC31 /* protocol.upbdefs.h */; }; + 9EFF3CE5D9EAF9978619AD2546FCE15C /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BF65047ECB1FBCC073297BFC0D38876 /* trees.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9F040FB571100B35A44EEE9E88957900 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + 9F05C48B0FF08BB51F49C6128433B2C9 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E076F15E4F0F3AA2FCF153B488A79AE2 /* FIRComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F0CD1457223323EC03D6C2D7F8558A7 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B0772AA445197FDF516054E62BE76D /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + 9F0D6F0C6865B20D85106C9B118D6EE8 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1353F2D3E457B6889CAD01ADA9700210 /* gsec.h */; }; + 9F0E8467E691C594A410C1631904B47A /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 30792D766F3434E8E096EEA8D1F63734 /* sensitive.upb_minitable.h */; }; + 9F1AAE651D93FC5274BC2DAF7285A841 /* win32_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA1A0C6D7A62A19568ACD600EAE497D /* win32_waiter.h */; }; + 9F1DF71BF529DE08DB767486ACDFC3B4 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 2DA00C41526613AA2CBFCCEFD0302A5F /* percent_encoding.h */; }; + 9F1EE6CDB9BD454C9EE678531307D22F /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = C813EB7AAE4276934E734BB967B28645 /* stacktrace_riscv-inl.inc */; }; + 9F2502771C3BAB0C8E9B942FD82D1342 /* Promise+Validate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EE67A9520F44FECDE738EB2D1C88CC3 /* Promise+Validate.swift */; }; + 9F273FFEDE1C55709E1D75425DB26623 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = AB2A7CA7594145665D438DC63219B9A9 /* context.h */; }; + 9F302807251F58146638AAA44F7F7661 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B8459D9A428CE4F5997614456FB4184 /* status_code_input.upbdefs.h */; }; + 9F306BBF8E153D8F5EDDFDD1FEB374C8 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4109A9542966028880CB8A807C2F4C /* config_dump.upb.h */; }; + 9F3795819989F357EC00B13731E8ACF6 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = A88C96BC25D9E121CD1E6773737B14D5 /* alts_grpc_privacy_integrity_record_protocol.h */; }; + 9F3D4C3BDC3A90BA6F8015A3BF2C6FA0 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A27F6F670AD603543AF9D3469C62E817 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F4936A06BF49443F458002C4003FF58 /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DA9AEB440109A8267F925632308C64 /* def_pool.h */; }; + 9F56410ADADAAC6C72012A7DCF9759EA /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C4B2108DA657E892FD8F68220EADE4 /* any.upbdefs.h */; }; + 9F57D781C30226392FA2B7700A8003B5 /* call_op_set_interface.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 9C582EF63811775D3F0EDA9CE3EA0F5B /* call_op_set_interface.h */; }; + 9F5B833179CF01415E3FCF8C0ABB8427 /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA1F69292D3B09D720A65590247D04A /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F5F99CA816EE830B221205CC2C32A51 /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = 112A17AEF028DDB635F81BA938899BFC /* policy_checks.h */; }; + 9F678FDD92F8B1AB9D1A53EA8A0E395F /* FBSDKCrashShield.m in Sources */ = {isa = PBXBuildFile; fileRef = B87E1BD1469547088B769D004C262254 /* FBSDKCrashShield.m */; }; + 9F781505A5A629B879DBE3E1D0630515 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 099F6BC1C79B0EF25DBF8F7DE2D03C0C /* server_config_selector_filter.h */; }; + 9F795B77C8031490A02489FC5A1EEB9F /* Transaction+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 942F71822671445FA2D416200748FA70 /* Transaction+WriteEncodable.swift */; }; + 9F7A9D11B154F64ADF661CF403765D4A /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD1B12E4F900112097501174DD7DE46 /* generate_real.h */; }; + 9F88C3B03A86FAC4222CE8750FB2DC14 /* FIRCLSManagerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8587461C8201D1ADB36F700DB65882AE /* FIRCLSManagerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8988335C90BED7ED8A8FDDD3757905 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 8A90FC3EE1D2A3514852C46490801444 /* client_load_reporting_filter.h */; }; + 9FA11C8DBE26B5C94CF9B89C1F0DF459 /* bn.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1756F094278124D0342AFC197188A8EC /* bn.h */; }; + 9FAF2A607D632F993BE4754CDFD9A5F8 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C0DB927606EDAF4963832D6788DAE8B /* overload.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + 9FC1F6E901DC4EAE81A411959380797D /* ping_rate_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 972CFAA65278A82A8F172B2DBD183C84 /* ping_rate_policy.h */; }; + 9FC63AA21DA5DD2AFFD3A43332D84C99 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = C33A1DF63A0742EFF029EB8360BAC8F2 /* basic_work_queue.h */; }; + 9FC654303B78123F8E795E0E53210A9E /* accessors.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 8612E8103987A169A4B9B36802CCFCEC /* accessors.h */; }; + 9FCF503160E31C2175EFF18F77EA2746 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 783EA8F119EDF1FFDB9653B87260F597 /* stat.h */; }; + 9FD2991B354DB1CAE823B21474735363 /* ratelimit_unit.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9536430BB48AE38B37A1158459A2D7EF /* ratelimit_unit.upb_minitable.h */; }; + 9FD480E45DA844E2AA85B62B89479743 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 321C2871D36D0D72CFF711B8FB84C026 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9FF4A25E426A5C931E274A95F34D50D3 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DB11C42D275A1FD009D9A2F8F9E7B98 /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + 9FFAFE80969572CE29249B8BB16D8EAA /* FBSDKSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 10704CAE9DA45FA14433926FE1282797 /* FBSDKSettings.m */; }; + A00CA549F5059ECEC241D3378B600FCF /* FBSDKTestUsersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C0B9C58AA139C58848CED034BA6E70F /* FBSDKTestUsersManager.m */; }; + A01D8A9542F07A454254447273364AC3 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = DDE75EDC6D7C6E600A9C243965C27649 /* grpc_alts_credentials_options.h */; }; + A02317D87C0E326E533CBDF225B796AF /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 93914136B89D783A0A247E4F80118011 /* extension.upb_minitable.h */; }; + A03FDA8BC5741880B1EF11AFD248EF48 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8C724A5A9D933D624D89C9FD20CC7C0 /* ConstraintOffsetTarget.swift */; }; + A0441213298158C053843771DDADCC12 /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4913E406D40E24AA85F83DF81C8BF0E6 /* cidr.upb_minitable.h */; }; + A04B11F4140E650A0F950C1869ED1807 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FC72443355B7723BA4A97DE7E96E7A99 /* http_tracer.upb.h */; }; + A050B39650B1364C7E0E11DB7F07B90F /* regex.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D9D4A827FE8C76DE3011137C66768BC0 /* regex.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A0674EDC08EBA33C1FD00EFF968174B4 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7FEA58C5388239E499BEBE89A0E5EC /* fault.upb.h */; }; + A06CA20239980A2D27E441807777110F /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 019B9DEB107A26E165C810946CA6822B /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A07A0D4D53B1F4360B3E2F7605012141 /* method_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AC590D6555F74E3212073F770AB4D2C /* method_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A07E649D6D86B020AA21A3F07415CED6 /* matcher.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A0DC106C8D053A2F267C3CD2A8F6BB /* matcher.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A0857D240E7D32EDF2CDAF6F44FEE2AC /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D02C2B23E2AC89C724545E86CC79355 /* xds_cluster_specifier_plugin.h */; }; + A0893D2217F9F2FC56F4EA5A621D74FE /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05477409508E44C5B959B552733BC2D5 /* accesslog.upb_minitable.h */; }; + A09B9AFD549E6B04221E924C2FC6E6FC /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = C900FA14FE6A2FA2F2D52377120D9EF2 /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A09F3ABE2E7C41BA222465A18DE3F4F5 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A208774AE971297AF8B79F73EB2BD107 /* endpoint_components.upbdefs.h */; }; + A0A69861B1E3BDA7EA6593C406E78252 /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 6899A6B1296C5BBA86599215E755D3F0 /* load_balancer_api.h */; }; + A0A9FBB592C8A450AF099B7B9C7EBF97 /* registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C46C382856B92934F6E85C840401D62 /* registry.h */; }; + A0AE62BD37F59AD5729863D0AE05DFA7 /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = B3226F7D8B5CFAA18479D8F1BDC064DD /* srtp.h */; }; + A0B6EE8857E693C25506B71A242BE9B8 /* call_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5A11580478A1440AA6152F056763F20 /* call_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A0C053C5FEC573648982320F41D6A408 /* internal.h in Copy crypto/trust_token Private Headers */ = {isa = PBXBuildFile; fileRef = 2BDADBD37B7404218955FEE2BEB828BB /* internal.h */; }; + A0C8BFC8E6238907E509782BFCFF5613 /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 74199D9AB2C0278A47710AEFC8DF3FE0 /* randen_slow.h */; }; + A0C925DD040BC872DF755277C4C4C3CA /* stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = FC626C3ABCE615F68F6622071BF4D02C /* stateful_session_filter.h */; }; + A0D0BA00D14CC17E46BB0412544A7342 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 9BFA3874E763C006C74D514317DFF912 /* local_security_connector.h */; }; + A0D66509FFA1AEEDA2E6ABC5C507A451 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C50900FD7E10829D821A91ED3E138E1 /* FIRCLSCompoundOperation.m */; }; + A0DA52A7511E6ED49A2AB310EDF5F8D6 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BB9164ACEC091CEBE67F427E5F9925 /* GULSceneDelegateSwizzler.m */; }; + A0DB4903C70B29725F1FA6CD06C232AC /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A6F3D8AA35454B9978BD4ADB6E914E /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0EC5404F7FD8DA9A3D88241B2482BF4 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = 38105B2FE1979D77EC2CE121DAB6D7BF /* per_thread_sem.h */; }; + A0F308E1DF27FB66AB5FCC3A647B0ADA /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9468C5C40043647C7C2F85C53553BC29 /* socket_option.upb_minitable.h */; }; + A0F4D43CA335835C8F3FE4D0B3C0086C /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 7FE76D21C34BE1F038B52C0F3D39A2AD /* external_account_credentials.h */; }; + A0FB71E1E01984485C121F6F8C4224A4 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFF2B3163468687D581384FFFD48556 /* endpoint.h */; }; + A10544C55671C989537A5031C40FE230 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 032CA1D87CF17D180672A991E4DCD552 /* ads.upbdefs.h */; }; + A11067FB37037243C009BC28AE21D271 /* call_creds_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 710D580486AA8A6E2A310BE65D8898E0 /* call_creds_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A11493DF9A6DF7CEADBB3BB121534974 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F6EC31C322647A6081213C3D0C74467 /* server_info.upb_minitable.h */; }; + A114E542C1DBD632DBB3FF4614E9AD5E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE41A6E9403ED155D56C3FA7059A133 /* internal.h */; }; + A11658D64D99F4F317305108F92C6F7D /* wrr_locality.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F42F28D71F4888BBADA58745A9CEF2 /* wrr_locality.upb_minitable.h */; }; + A116F483DBC78D5BC3D056DF966E776B /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = ED2FC6DB0308C47F5FC52D4CD5DB232A /* packed_table.h */; }; + A1294579C062FB3F6AE60D918E8490B4 /* bad_optional_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 802B11C10416A30440FDCE3DCF203296 /* bad_optional_access.h */; }; + A12E08F1A267A1B458807C984559AF20 /* FBSDKLogo.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FD118F4F3D872745E806BBDC2E2F8F /* FBSDKLogo.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A13102575BE15F47636039EAF7BD97DF /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6154FA3F2333D41195377520E7B1CDCC /* discovery.upbdefs.h */; }; + A1320544AE4C422B8FA1AABCDC75D287 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C56898DAD60F277E125157F471CF4B14 /* certs.upbdefs.h */; }; + A13846FD677F45F0DA707D8793485AD4 /* FBSDKServerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = BADFC1EC61740900F4518EC01BCED380 /* FBSDKServerConfiguration.m */; }; + A14E24D5D6B2514620CF5E76A4E7739C /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = FF78FDDCB2830D9DB29F5BCFEA244206 /* mem.h */; }; + A154DD4AB60F4B908979A6A42577F8E6 /* rls_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4701E21A29FF1F7AE072CADD260EF173 /* rls_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A160D9C0740CF7F49C9DDCC59FFCEC47 /* int128_no_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = F236DB5BFC9C240E86EBDDA1063EF77C /* int128_no_intrinsic.inc */; }; + A170FBAF5FA34AB41F8E6817808F841A /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF95CCC8068449832D499F511F7ED22 /* checked.upbdefs.h */; }; + A1725840F88D787F835BEB164BCD5362 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF1123B104AF2A8A98416EB07553190 /* FIRGetProjectConfigResponse.m */; }; + A1868C77EE0F279890831958649048BA /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 87622C24690C2E60DF96DD72E13A61EE /* endpoint_components.upbdefs.h */; }; + A18E6F19DD0B87A896D38341A8E2C94C /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1B32B050393368F02F7E8C65D2B91B /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1ACF23809DC5B0F576270E6E2460C5B /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 3C59496157383A4BCCBC878983B7E4B5 /* rls_config.upb_minitable.h */; }; + A1AEDFD31A934DB01FF6590E7E6C0F6A /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E35F82579065A021A5CF6DB45F2162 /* ads.upb.h */; }; + A1B19725C77AA135554FF70262B01693 /* siphash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = ADBA1186C42DFE86E6EC166178309AC6 /* siphash.h */; }; + A1B23AE489002860D3300939DA654198 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0779AEEA30863D75CC71DAEC44268D9B /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A1B3D730E041B411CDB91C935A2A8AF3 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10597EB799C4BB9EEAD093769504EEF6 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A1B51756248EC0E3DC678B0FBFE78979 /* status_flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 152BCD53FE551C101C2371294C33D3EB /* status_flag.h */; }; + A1C1589A46582958239718F2C657A1DC /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9700F77A28B6B36BB3F346952EE590 /* xds_client_grpc.h */; }; + A1C21DF0C147315A6B4AF40200569645 /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CC1572DCEB939C2F3F52272001C69A /* FIRFinalizeMFAEnrollmentResponse.m */; }; + A1C56F61341003D1437C97B6E91A7E7B /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B10F00707D932A96B878E2BDBF93A0B6 /* posix_engine.h */; }; + A1CB940C87B96289EE3A4DB16C348431 /* FBSDKSuggestedEventsIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFCB91B319D72AF4EA600236425FCF6 /* FBSDKSuggestedEventsIndexer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A1CBB5C8B3E4BE9EAB7C34D93288E2F8 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0C4DE270129B2C26EB06A0F9B494EC8B /* resolved_address_internal.h */; }; + A1DEFBA96CEDE09A645BB56A9EF33BBF /* json_writer.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 5FC675347F72E3768CAC090F7422422E /* json_writer.h */; }; + A1E2226D7AB628E41DE9BC913C279EA5 /* mem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FF78FDDCB2830D9DB29F5BCFEA244206 /* mem.h */; }; + A201C57659FE5BCBF15BE13B1F76BC68 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B357348F71BB96D036787B0CA9A7C6E /* common.upb_minitable.h */; }; + A20410D4252715D75129E5341F2E2F3C /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EB8D7EE3469785716847C14233F7AF /* closure.h */; }; + A2198067DFE5E5223FAEEEFAE05C5289 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 219FBD0B136655138196B9B2243D8004 /* call.h */; }; + A21F653D9CB90F1D3537F7BE6C1ACC56 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBE5CDCBF1782F32C8DA75D90D31E0E1 /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + A220D3BB48E0D830E34DB94419E05837 /* grpc.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 030297E84877EC3BCB685E4625582A99 /* grpc.h */; }; + A222702607FD104B725B0F9E579BF34B /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 45361B2BF4ECA4F437559E3BE2EA6082 /* FIRStartMFAEnrollmentResponse.m */; }; + A22996F33D803B2B477A33317BAC403A /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9EBCD971941691F4651B03B772EAAED /* grpc_if_nametoindex_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A22C29F7E64E68FCDF3EF355923EF9F0 /* cfstream_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 504BED23A97D35659ACA2A9957C15030 /* cfstream_endpoint.h */; }; + A22F443A728156D5CFC401FFE97329E7 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1AA80624C2D95E2684D7E68D7B1F9473 /* wakeup_fd_pipe.h */; }; + A2312894CD64DCD5A358A82B331DCD1A /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DDBE30C53AA26B7305D89532E5474E /* regexp.h */; }; + A2356CAEDD9B77B020C283BA4D4E8F18 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 56346665750C24E794DD9FFAAF3AE9A5 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2397DF25FA3760D39C631CB6832371A /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AD7A6710522D06E0F1CC7067623893D5 /* status_helper.h */; }; + A23A16ECD55AC15B297ECF601FED5C9B /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 9A4323076348AA8D2810FA085F2447DC /* migrate.upbdefs.h */; }; + A23FB54B5E68822E2CD5AC5E7AC87D6C /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = F1DB0A0DAFD6AD64E4820ACD528C9881 /* FIRAnalyticsConfiguration.m */; }; + A259950CDF1D5B05363782CB2D3355A4 /* trace_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F10B3F014BE8EF39DF40658006B6E772 /* trace_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A265973687EBF7536B33986149348676 /* commandlineflag.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E9274898F801A1412154454494B893 /* commandlineflag.h */; }; + A26F526143CDF462341C5436E2612F2C /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1A82FB96F0B12346E5A7609A66363180 /* connectivity_state.h */; }; + A278DAA4BE4AC6904E05BC79E3410962 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = B32A488D1B889B720B34A671C144A09B /* load_system_roots.h */; }; + A27A86E8B93735219D79C6A591D5C88B /* version_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 319A9686A895CC8629E9E92A607A3932 /* version_info.h */; }; + A27ADD47506A8A1AFD2589480CC7536B /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06FEC60298DBD1A785613DDA33DE7B3F /* outlier_detection.upb_minitable.h */; }; + A280B0E3D4721ACE052587160B89FAD0 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA083ACC775CD661399C77F74588DCDC /* udp_listener_config.upb.h */; }; + A288DB9B05B7857193F93815C2991350 /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C7B19FA91D62BD566FF9A17A9F33FE5 /* config_dump_shared.upb.h */; }; + A29120585E5F0F90F6667AE5440653EB /* backend_metric.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9201444D240846DEF020B70599BCE6E7 /* backend_metric.h */; }; + A2943DB27CD0B157BD3985F1BF0F7F46 /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = C499F2589A74121694EF4777C81E16C7 /* inflate.h */; }; + A29B1C12396960B6DA7EBB40F4C4BF39 /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64350494672465444512E258A2B05C79 /* statusor.h */; }; + A2A413C9E4C4106C66408958C69571B2 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 884D5865A64EEAF2C0F0A5D660CB096F /* thready_event_engine.h */; }; + A2A470CC108C51A6C2E6AFE06031FA2D /* syntax.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6761D667B96BD70246ADD5AB69E4AB99 /* syntax.upb_minitable.h */; }; + A2A6E8E0AE44DED549823119489AE07B /* try_join.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 03ABA9EC989C3E20C86A4ACA08B1970D /* try_join.h */; }; + A2A7394B9A161EA9A3B2DB75F1AE3480 /* overload.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D5028DEA00B756041BFD62CEB50291FC /* overload.upb_minitable.h */; }; + A2A876C6F57E57767EA44F8EC940CBC1 /* outlier_detection.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BEE90CDB82099D2DFFCF9344714F6F9 /* outlier_detection.upb_minitable.h */; }; + A2A9F9D8B001421B5B7DB83421EFBE72 /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67A42ACD0CAE5913A9EA4DE89CFB910E /* endpoint_components.upb_minitable.h */; }; + A2B3CA3EE5EB87C1E83877A107D49C6C /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 013AEB81A3C4EBCF54456B01DB19C045 /* cluster.upb.h */; }; + A2BADB047C9B220A8FBFDC3310C61683 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 796239BB5D4609175F1F252C8CFA26ED /* status.h */; }; + A2CD6EFB36417F222DB086175F8989DF /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EA27EB84C33AAAEF2E84D2DAE1CD6D7D /* endpoint.upb.h */; }; + A2D9CF6186B575854579EFB89321BD67 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4502DF4229C79FF44246F77437D0FCB2 /* socket_option.upbdefs.h */; }; + A2DA38D3625E16741FADDE8892C897E7 /* internal.h in Copy crypto/pkcs7 Private Headers */ = {isa = PBXBuildFile; fileRef = 54B5F26EB09671A59AE0CA0D2C97CEAE /* internal.h */; }; + A2DE616C08A312D700360F3B0B3CF354 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = B5778BF59BDC8A883FC82DD8333F7961 /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A2EC2FC0204291913D5F852FFFF0865F /* boringssl_prefix_symbols.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7B1209211DFBF8BB49C4A1146C3B4FA9 /* boringssl_prefix_symbols.h */; }; + A2F41A47710A025C40CBB5AD8B2E33DD /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 22DF82491B841D933B2238A233D4B353 /* transport_fwd.h */; }; + A2F7ADCD95C0FFE9C65D08717E5686EE /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B404CC0F56604CAFF006C9976A9326B /* abseil-dummy.m */; }; + A2FDB6C2EF3083E5EC00265A39034348 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = A54742CEF50F296F9D50729B4AFADE5E /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A308B3280C99A3970D4E4589C71F450C /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = B69AE19CA3CB004C60E8D63547E7F3EB /* channel_stack.h */; }; + A31A4B719BABDB1166373D082D9088F6 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = F5B3F0EF0515D613E9B0AD86883AB245 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A31DA2963CE29A3A3AA2F6F9D7AF0492 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D85DE6741DC81E0023B378CF3EDB116E /* internal.h */; }; + A31DA855471AFB3A81178200B0D9E3AF /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E3F219752B4EAB9B856E779F3D91D1 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A323EAE05EE54741EAB7286BC8108DA5 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E265D554D9D8B10AC30E6920780272 /* completion_queue.h */; }; + A327C263E9B09987B23D0F8FEB8EBAA5 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECE8978C91499FE21026D92FB52F5E2 /* secure_endpoint.h */; }; + A328B1747EB33FBF0BA3C76D39C1B3FB /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEDB658B95BFA989513416DBD608A0B6 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A3338945162A00B91EB5DC4865C4C162 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 7120AE35EBF130B3091FDE9F4BB41AA9 /* transport_security.h */; }; + A339BF5257CC6D216C5DA5F654ABD340 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D20CE6416484D2F07679F313F4B3989 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A33FDEEAB2032E4E5B0809DF08A71870 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = DF66ADD42C650B5FBDEBC7E51B6F3497 /* xds_cluster.h */; }; + A3402B7274690E5272CCE59F02AE0595 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6368608F57CD59C30A93E02757B0DD49 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A34F802F6370E556B8BEC10936FCCFD9 /* shim.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F8C83F9B5FB9E056AC998C2ED301AB /* shim.h */; }; + A36085E15704BBA29429AA7184BC3B7A /* rls.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 373FBE7AD81081C032BF4D71BDF83E80 /* rls.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A36A81E4D1371359A9582AE1103362F8 /* proxy_protocol.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DBC7D45EB3FC2467F5C6CB424D19A1C6 /* proxy_protocol.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A3769F5AE6511DD4EBA8104B9EE84AFE /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FFCEED040E9CE64FCED61EA3C112AC /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A3771DA6C68198B3FFC73252BD76ADC5 /* FirebaseInstallations-FirebaseInstallations_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */; }; + A3789FD115B814DA8867208D0801F13C /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C61702CF2B33745838A4F14769B3F473 /* endpoint.h */; }; + A38B00C483F77B76BC144DD0EB60E318 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 8FA0DA5EE10A98108058465B3572149A /* http.upb_minitable.h */; }; + A399798CD69F2DBC878229CC60678B74 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 79934793B31FEFB462548120AFE2B018 /* FIRCLSdSYM.m */; }; + A3A545874585A1030B0BEDC855D429C5 /* kyber.h in Headers */ = {isa = PBXBuildFile; fileRef = DE6A43626FD58AB63DAF48A516B2E9EF /* kyber.h */; }; + A3A770AB560BCAC13DAF5AA46773931F /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA44D09040E8C978CCC1BCBD58BBFB4 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3A7E3F2147728C4F6A681F74392F8D9 /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B3696CB2FCD8C52F7A2F485877153B54 /* client_side_weighted_round_robin.upb.h */; }; + A3AEC27317BE09206FE79639C59910B5 /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = 263360264DC59A62C04DA19737111C61 /* gethostname_host_name_max.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A3B534D501A7260FC73A6A272B0D8CD8 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6CA8FF62BFE3E664443ABD386726538 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A3B87CBB4D70D2AD193AC1B674A83A70 /* FBSDKBasicUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E4540709FF4E8E92B7A02F3A80D7B85 /* FBSDKBasicUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A3C00591A9BFD3FE4B1346C7600868AE /* stringpiece.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = F7718106458628E535BE14C8F5E93C78 /* stringpiece.h */; }; + A3C07042F08A80D2A95BBABD87BAFC23 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 940EBE2FC58F17129D52BC5CD93E21E2 /* demangle.h */; }; + A3CF7DEEA420F3D2B3F389C7AAA6CF59 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = FE44FBEFF3111E26D5F60EFF38F8145F /* service_type.h */; }; + A3D496EBC4EDB9AACA7913AB76A73A68 /* call_spine.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 62B0FAB3140BD22450BCDF604C5C1E40 /* call_spine.h */; }; + A3D603EE80AB695F919E061B96D82799 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 80CC07BDE9593CFC2882A11C7A6C67C8 /* message.h */; }; + A3E3AB7C765C21AE17B1E6EE6560040C /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A328A1AC005D21978EBF3B0FC798E89 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3EE812CE3182EC0FA9E42F5431CA7A7 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60A9AEC5B57ECB0B2431FD8ADBF5A7B2 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; A3F2B57A7C28E3362A8E55F1B015D9C8 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36E72490B94BCA7F970CD02F35598A18 /* Accelerate.framework */; }; - A3FD169989B7D9741B5306284626E61F /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F687683628A80CF299A714D165BE2D3F /* typed_struct.upbdefs.h */; }; - A3FF5E5CD1FE28DE4E3BC18B85DEF749 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ADEFF0CFA386AC8409480B8BAD8E5DF /* FIRInstallationsItem.m */; }; - A41FE6B1C6028FF0EA024C0C689E110F /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 04E48C9D154588720EE2F8FCC23FE73A /* FIRAuthErrorUtils.m */; }; - A42269B0AAF5DD5A2336E20E32E652AC /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA08ACE8BDAE2D86283E3A7C321262E /* opencensus.upbdefs.h */; }; - A423555C960931037009674266C71F0C /* xds_resolver_attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E04F8EEF517DE7BC6D2258C490C49CA /* xds_resolver_attributes.h */; }; - A43426BD96B79B9ABD5C1DDE26AB0A2E /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = DDAA9B6C2AC94635766B7B3BCF3EE0E7 /* FIRCLSInstallIdentifierModel.m */; }; - A439426108EB453D57AAE950422B8441 /* httpbody.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFBF4E49E7FE6E87EE84576980EDB28 /* httpbody.upb_minitable.h */; }; - A447A8A0BC4720DBCAB633B672A8094E /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A13DC8113CD0649CE777D83E912AD0 /* call_creds_util.h */; }; - A44EDDE934FF950CECE9C24ACC842A09 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 250668636682C7AD0180D1A23ED9AF95 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A451A16CDACE51911996AA72E31D3BDC /* simple_slice_based_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 206F54EAA2B8A938FDDD394F9BDEC87B /* simple_slice_based_metadata.h */; }; - A454743CFB64E17DFE30DD62F5979A36 /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EBE960F061427AC986A47CE6DE34DC /* config_dump_shared.upbdefs.h */; }; - A4555781263FF85216C67919F5CD1D0C /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EAA08ACE8BDAE2D86283E3A7C321262E /* opencensus.upbdefs.h */; }; - A45C3653E50507675D14C5F4A65108F7 /* FirebaseSharedSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B355D4A9D2C0F27C7FC653A09A6EF486 /* FirebaseSharedSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A46A5C22868AB941B034199D26AE5382 /* api_listener.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B0079CDA7191A303A972E7D87FA4FAB /* api_listener.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A46FE34D31418B38A869A004D158B240 /* SettingsCacheClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BAF28F9D19453E51E0AAD259D94395C /* SettingsCacheClient.swift */; }; - A471A6BBB6B6E0D06AD7E416DD045DFF /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6CE4149E241BD37A1E831C79E4D54830 /* security_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A472F1217C50D45A281F8103B796EFB3 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 84F63E7D5A3F3FAB4CA7C9A3C5BAEEE8 /* subchannel_interface.h */; }; - A4747751E56CF82136DB205FDFCEB5F8 /* generate_real.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D7D467CCD3EF36F4D32EC76A2CA6104D /* generate_real.h */; }; - A477CE4CC779F4B8FEAC5DF2C6FC32BD /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE9D1E799EB73C935D56EEA803D97A6 /* ev_poll_posix.h */; }; - A479B61B31B3C15165C411A5B58ADDE7 /* http_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = B01CB988D7B74C259CF0001B34E8B140 /* http_trace.h */; }; - A479BE2505C07D753DE863DD9AF232E0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CF1D558CF265BA447E16972082C9E550 /* common.upb.h */; }; - A47F64377D5E9A2483A9FAE721492893 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F2D1CE98B19ADB85E3AEBA96857ACFE2 /* xds_endpoint.h */; }; - A4879D63BC15F9C04C70454DF1572D7B /* posix_engine_closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B3C24BA4CA8EEDBC51363F35675023 /* posix_engine_closure.h */; }; - A48CC0D9500D517CA68CE8F0C7AEFCE7 /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = AA8E77561401C7E969C6BF904E4A4147 /* enum_value_def.h */; }; - A48CFC5A941E59439A56E91EFD69CA7D /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1519EF86831A91D3B3541C86707DA6 /* atm.h */; }; - A48F7FFB2451A6D7B5C6AD8F1801EAE5 /* win32_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A50E557A2EF4E9E9125BD2A9C3A6299 /* win32_waiter.h */; }; - A491122D2784E2DF8EE0347B268D7F67 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A81380A8385C0DD78EC00D30758649 /* call_hook.h */; }; - A491C63B8578598C01D658CFDA79FBA3 /* backoff.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A87282BA00168A9B93920B6107A3538 /* backoff.upb_minitable.h */; }; - A494A3FBCAD9AD9095E70559E2D2EFC6 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5836E877B7E157B4F298AB138C9894FE /* string.upbdefs.h */; }; - A49B6B8D513E7FDB566B3956DFCBAE6B /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = EAEABB13C38B300869C257192B1C3872 /* client_channel_channelz.h */; }; - A49F4E449B4C33B29E9DAF0A3C6AC448 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = ED1D39B666D42800F16C5FB5C6A283CA /* FIRInstallationsAuthTokenResult.m */; }; - A4A79F91F53E5CE9BF310DCE7D3FAB6C /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CA94A9C563D450B6E0935837476E0E36 /* metadata.upb.h */; }; - A4AE8E316D6CF1D270D679EF96F7E3A5 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D1D4F8F69FD926B37A0D4691E3958D1 /* path_transformation.upb_minitable.h */; }; - A4AFDB7A7CA786DDAF1B5B9E79D5DFBA /* custom_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = C14106A5AE9203A94DFF7F46CEC2AD8D /* custom_metadata.h */; }; - A4C40D152D67A4EDD30AB46FF725A6D4 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B90F09D2D6C1AF2194F9080FDA213B /* polling_entity.h */; }; - A4E46D05D9A9C774352865D6295155AE /* status_code_input.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8477D579FEBAD0A04249F83680B01045 /* status_code_input.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A4F130B43EAA631E7212EEB751C81A25 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 20BFA869D8C9227B8F2A124484BFB3C3 /* tcp_server.h */; }; - A503C8148469250094ABF286BAE8AA65 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AE857BE4E180E7276141FFB2C2A4EA46 /* error_utils.h */; }; - A5058341A00163D9D1F6071D36EA5C50 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E08E1B0BA7199D1ABBB5E96C14AF89 /* dynamic_annotations.h */; }; - A50B65746D397952AE84BD922AF58C4F /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AF7E1EB74C8873C1898828FE4F7AA38 /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A51826DD401272720D5A39060DD8AA67 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8EE1D17D77DDDCFDBDCF32BD98E1FC /* quic_config.upb.h */; }; - A51A24C866CC8D6C904772D0F57C1DCD /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 3A9A2D4F9C5B4408CFBED9A06D23B714 /* altscontext.upb_minitable.h */; }; - A51A5476C0E78DE16CEB1521A3EFA7EB /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BE4E4ACAF66F51C660A969467118448 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A51BDC374E58EEDD293E892E42EE9953 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F617FD44E3AD467C65A0DDC903F207F5 /* memory.upbdefs.h */; }; - A51C32DC6890A82FD96AF789C29CC58C /* method_handler_impl.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 42716016493C37BCACA2F7CC5BB85A29 /* method_handler_impl.h */; }; - A51E82F35DF3A5375F43DA0DBE7CD2D4 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D7FC2BAAD7FAF98E860412A3042837 /* alts_shared_resource.h */; }; - A523488C60BF961290D0B1ABB9ADACEC /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B119840CC46079B9BA98201563EBE9A /* RequestCompression.swift */; }; - A52888023F0E92F9C1FB4D08F9184C13 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E518A19114C10A68E28DE2975FAB0D6 /* FIRCLSURLBuilder.m */; }; - A52A58C108B6090A52DB6F9352FF4F4E /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9572DF590AA7017E54B253CF02A726F4 /* channel.h */; }; - A533671694AD8D96C70CDE0B8D2E4CE6 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 62341EB4CCF010E229D49725D9CAC773 /* transport_stream_receiver_impl.h */; }; - A5337DB102D14278D90DD1CCEEF87E42 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4698299241EE4976CC1FF0B153CE6E29 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A537102C764B054511383D13CCD5E084 /* any.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4178DCD3EC50E000A1B804894CC21FA7 /* any.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A53CCB4A195FF3F9DC6FA4BA66B4EC25 /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7077B0A88860845F3E83CE6FF5162DAF /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A53D7F443092FE84FFB486B334C936AE /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73DFA33C6BB0BA1D4754FC37AED81FA6 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A5482E07B0977FE7747C28677BA569F3 /* opentelemetry.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BCC64CF54934754EB03A40D5313DE5 /* opentelemetry.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A56DE634D4D1068BFA773E309245071B /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B750B2A7AAC6E334BF6E5DCF2CE682DD /* discovery.upb.h */; }; - A57831B523AF913FDBED958893AABBAB /* link.c in Sources */ = {isa = PBXBuildFile; fileRef = C93F18BAD134A8746B93C25FC1574DAB /* link.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A5862E505E77B39E29A0F6B4AEB00C1C /* route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE44E708C224955B889548F1A0C392CB /* route.upb_minitable.h */; }; - A5A4F75FF9AB5C002F7493665C234DF8 /* httpbody.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5544AF018A2DD522242C31180BE4B939 /* httpbody.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A5A8BF973BFE9C9304372A26C9F2E35B /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754AFBD21E4F08B9F25BC49759B2D51 /* ConstraintMakerExtendable.swift */; }; - A5B488BFEFDABD36505B0BE28E69D464 /* pcg_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 25BEEDBD97ED202DB6B60D1D95C326C5 /* pcg_engine.h */; }; - A5B694BD738562A0C354EF64D5512474 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 50282F52ABB75D1B3EFA4E1D1C3A912C /* orca.upb.h */; }; - A5BB05E8E4D4564FD4D87CFA0DAED57F /* FIRCLSCallStackTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 883F768208538163EC1A5E93E57ECBB1 /* FIRCLSCallStackTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5BE1E647C5C199EB4B2EE31EFCA15F8 /* xds_enabled_server.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7B8FF2095FBAB5EE5A3DC2EDDB966E /* xds_enabled_server.h */; }; - A5BF3F4149B2643CEDE065CC7ECDF093 /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA31C8AC7EC6596D50FE386F8BE48833 /* message_compress.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A5C870D96B85497D2FEC2E44A34EA888 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = A67EB494C457178E4340792DEA1F4D2E /* blowfish.h */; }; - A5D9C086513395AD6A5CF68C9562F0C4 /* grpc_method_list.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E6919070A100A717A4E29826F1EB0CE8 /* grpc_method_list.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A5E22B7DCCFCC410A106921618E1BC77 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCC80375CCDCD84BDC421B65D96B24F /* blocking_counter.h */; }; - A5E803C96342571A5E97F65ADCA2BA4E /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37EEB5FFA86F40FDE6CC1AF7B3E591E7 /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A5EBA47D8ED0F794B6997519547660A0 /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = C913762B8A472019A86FADC76FF9405A /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A5FB862965FB54AF469C3C52B662D9D8 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16C792CC3C3F322ACED69A4B364DD29E /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A5FEF7CE8C242391717A2B97774AFF0D /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = 002111222DD06B0B7E47C7219378342D /* debug_location.h */; }; - A6052E7322DC8163C274B34BE3B6FAB2 /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D1B752CE7226DC1F51C0E87D8F68D8A /* representation.h */; }; - A60BE6A054D48FDE4BABE77D51810242 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28A19E40BF715C1D2F2C59E09C2BFB16 /* config_dump.upbdefs.h */; }; - A60C8AB2308FEB8DCBAB8802EFF6924F /* wrappers.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BDA5B63FA5F746CA1C93CFE2C893ABF1 /* wrappers.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6108B5117E0CF1E523215E8B9266FA4 /* stateful_session_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6E5A9697C0869681AD8C92B0CEE0578 /* stateful_session_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A616171195C2B6A33FF5CF4B53F64243 /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D3AAE3AB12FF8B42ECB6A2949302AC /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A617E056957AAECDA0EEE8FF13407BC6 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D72D9209BC861FBA09B6E42F157152A /* http.upb_minitable.h */; }; - A61DEB498EB6B49E201DE150B6FDE93F /* ec.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 808072240E1D560CC2F6D359529D3B29 /* ec.h */; }; - A6282415CD86B571AD9ED255C3C62F2F /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44A22B8687CAC4414D8B8F467C0973D3 /* rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A62E45CA93EE006269C60963DC194845 /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 683A0C183C0C2EA20726AA0909E98A78 /* collection_entry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A634D72041FCBBC7236DE436FD1A6C86 /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = FDD355072C3B1C2224059F92CA1CF100 /* error_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A638959ACD632DA75915636943F585C7 /* subchannel.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D4EF7B20C636CABE1A42E3A4372FEA19 /* subchannel.h */; }; - A643CC4BF8DAE052CD0FBDADC1F66547 /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD73E31D5EA8A499E6D985F96CE1C6 /* http_status.upbdefs.h */; }; - A64407A3F52288F9D2A244311BE6E6C8 /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BF2691A759F393A591D9D6E6504DA101 /* single_set_ptr.h */; }; - A647125A255ADFD94A30650C9BA12A27 /* traced_buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D217E30D783D35B10140D8E05326AE9 /* traced_buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A649D4AC26EBB723800DDDD8BEC2B7CD /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF4CE324CA94D4CEE91EDE60D36ECFB /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A64C825633B6E332F17AAE034D14EFED /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3D2F0B3360383E298F452FF1F1600F /* log_windows.h */; }; - A64F53452F58F70544BA4C192F089835 /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 410B61C24139671163C90E2B00699737 /* metrics_service.upb.h */; }; - A64FE3A0FCACBF58C41E32CD97620B37 /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACFBFCAB763A1A8B6DA1B3A3AFB83F0 /* method_def.h */; }; - A6508FBD9BE164ABA15496D16B93721F /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D173740F620C46A684B9716B22737E1 /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6557DF1D9BE8EF8F36488BBA813BAD5 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 450469BC00269B6B311D8568C8160385 /* cluster.upb.h */; }; - A65A1159DD48727E12024369FC3B8794 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C52B5ED240BFB3FE8155AE49EBD634F /* FIRAuthDefaultUIDelegate.m */; }; - A664517AE0B0470C90290EA92578A99B /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 45001CB3820EEBF5AC7D7D67995EBB61 /* connectivity_state.h */; }; - A66A22AD109D3C68B1C0C97FEC612AF4 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E7F43C9EDCEEBCA50227AE6DBE493596 /* tcp_tracer.h */; }; - A67083E623272EF11F0ED2115AF7D273 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2846F2E93AE609D758CC907B71A803A4 /* KingfisherOptionsInfo.swift */; }; - A673AC9488360B826FAC03F8E0147C12 /* call_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE648E53F9A55AF9339B9985EC4CDFA /* call_factory.h */; }; - A67444A47FD5E8841225CF949711EFF2 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46F475FD122BECEBE760063C517AD588 /* TZImageCropManager.m */; }; - A691A9B557FACE9C5DD6915C5AD572A1 /* ratelimit_unit.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 741DB157C681DAE64A487819E51B4621 /* ratelimit_unit.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A69599C87D3CC79682542E8C057CD6A4 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D04BF7D5899CC58607D375D880CFE1A /* http_client_filter.h */; }; - A69E301CFDFF8335CEFD684D8F7394BB /* DocumentSnapshot+ReadDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84B04BAAD02702E44D78A03679F4ED5A /* DocumentSnapshot+ReadDecodable.swift */; }; - A6A0821E6C8B755ABE9791A512610CDC /* authority.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B87DEA8F96C32D76C94AF6DDB75778C8 /* authority.upb_minitable.h */; }; - A6A95BBC49C03488C4D94AF4B74EFB45 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 703FD4EAD87AB69C0CD72D67D6C0F79D /* per_thread_tls.h */; }; - A6B69BA785428F0A4005ED305B765055 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 2039A4990EECCEFCE53AAD3041692D71 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A6B72174D51E054349ADB969B2A45E80 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4078692B36DF6209FD5E89DA4065ED56 /* authority.upb.h */; }; - A6BB7B0098DC7E38B50EA8D77FE38AF7 /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A21777C9C040088AAB5C38064FFBD2DE /* resource.upb_minitable.h */; }; - A6BC06401994370EBE38419D9114AC74 /* cord_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 675D883ED4C6C2BE90C617F717C41EBD /* cord_buffer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A6C121A96D02F0D6EBE486EA19F5597E /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 9957BBD89DD92135DFA9B09609D65C6C /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6CB83A340D09F71B294082CCC47FD9B /* stateful_session_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B0526F9D4F0D27505D741F0CB3D5CA1D /* stateful_session_service_config_parser.h */; }; - A6CBEF0FF5DB3EBEE67DAA8193C75870 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5EC7B281E28F3D4D4E767A954D6E24A0 /* secret.upbdefs.h */; }; - A6D7EB7214F1138072017C6A3C1CDD1A /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = CEF3916D31EBC6EAA9EF6DB3FED38E32 /* format_request.h */; }; - A6E1E364922B45F56AC77C6961F6AA20 /* TZImageRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C4529878EBD2DDAA61AE0F39AD2FC9 /* TZImageRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6E6904E335AD9E78D038517EDE9EEED /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2655D87DAF5D286F57BF1BA162891B7E /* sensitive.upb.h */; }; - A6E7C28CC6F9D649C6D9740BF31D5471 /* generated_code_support.h in Headers */ = {isa = PBXBuildFile; fileRef = E20493DE3421D89DAD82D41C14F5B101 /* generated_code_support.h */; }; - A6ED3CEE7143932AFAE62A1F07E52C9E /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 99F5906CF6F6796E0EE52FAAF683DCE2 /* channel_stack_type.h */; }; - A6F36D482A05C84D3D4ED1648E66C8D2 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7CD4BAD2A97D0309D7EE219B7F6F82 /* handshaker_registry.h */; }; - A6FABCF5B3EB28DC245281523D30FC5A /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DEDFB3CB39E6CBFC07707DF1F08EE8A0 /* authority.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6FFEA8E51C1C175570C501EB520CE5E /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F731401DB36F36070A68BD5042ACA304 /* CacheSerializer.swift */; }; - A70C2F6BBBEF6A33798B9CC1019C536D /* cert.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 50E384BCD87C52A3AF382E08977303AF /* cert.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A713B16CDE49FF2A7F349FB4C685731A /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 428F3279F4C2BF2A12EE49C61FDF5A49 /* byte_buffer.h */; }; - A71B56A3C3B7A81666091A2C0B1BDEFE /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 101479E2ECE319C568F741D16D6621AB /* url_external_account_credentials.h */; }; - A735C9B93AB9A22D0FACE8DB1FD2E900 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 91E956A136315DE3D786D3336048AC1C /* trace.upb_minitable.h */; }; - A7372069F0416A38C5912C7F41AA8BAB /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C12073903949CDF9D950C6B1CC4EA24B /* cf_engine.h */; }; - A73A4A68423F62F7E7FA68E1F4323A0B /* message.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0ACE7D7EE5380B0CE7E7A4145AE9F835 /* message.h */; }; - A73B603145B744834D50FCD374ACD6CE /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEF977F835CBBC6EC9B6955E3F98935 /* cert.upb.h */; }; - A7431DE9455609DFDB8F17B8C987CA66 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 54ACADFF14DA3F6D10CFACA4E9E72928 /* httpbody.upbdefs.h */; }; - A7464DA47A7AEBF2B00F28EC60B7F89B /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D9238DA04C8440417435DC8CB8454FE7 /* bin_encoder.h */; }; - A75B89FB34DAEADFD5CB292C520142CE /* typed_struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8AFCF10E6174A486CF83B766F792D8 /* typed_struct.upb_minitable.h */; }; - A75E7AE25ED78157AD1863C671BA3EB3 /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC4D9FD58BA649EE553536251C67B09 /* vsnprintf_compat.h */; }; - A76A25942399CC0364597A5BA4AEAF12 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 0F79E989E9A0D03C4BB9C2E4F21DEE8E /* ssl_utils.h */; }; - A76CD428624F3113406BE84FD99AD34A /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3367105CBF858FA11344940809B977E2 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7727FB949B193B13F1229F2B56549C3 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E84A810B922C5E5935039DC365ACC1 /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A772D40CFF646BA84AE133B5B4B1AF6A /* duration.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F681F2978E644C27A87A24A4F0B5D0C4 /* duration.upb_minitable.h */; }; - A773A2731D1D99DA4ACD84918A95BEE8 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 525D7E3D3D4DB52EE7E26852A33EB3D1 /* channel_stack_type.h */; }; - A7796354DBA6A47AC3D02DAB34F6677F /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 328AAD5AC5A2AC6097932D27CE82EA20 /* trace.upbdefs.h */; }; - A78C2CC5ACF98290DA3F93CBD285832B /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90FD15A3C7BFDDC91E0AD8F5EED1708D /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A798F0F1ADD01B9A0F2BE4EEC97A1795 /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5733F22FE7F4718DAFF4CCB387A20F83 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A7A2BA4DFE874E00F90FE632B1FD8995 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = B84241F66D312631828D886F899DD954 /* oob_backend_metric_internal.h */; }; - A7B1193EF56D54CEBA97B0DED059C6CF /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 849DE82718B41B9DC4B9515FEEE3FABE /* context_params.upbdefs.h */; }; - A7BC9901CFC392EB258925F427749AA8 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B56599B8C49C23ADBDADEF383DCDBE22 /* config_dump_shared.upb_minitable.h */; }; - A7C0C1F5049C3B6FC80659727C3FFE25 /* slice.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 7EEB367A2887445CDBFA3CAE817AD606 /* slice.h */; }; - A7CC27F9FF40D66543E2A18F24F84BEB /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = FB6F6C615F9DDBC789DFFCF27A5A4D6D /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A7D97C11C8E92A331FB1DCB0EA7D96F4 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A00E6C612EA0D1DCE156920BA73E1CDC /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7E5504E200646DC1FB5D70E9E29EEC8 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 19385E4216E0C9F1961295E3CE55E56A /* loop.h */; }; - A7FC66EDD2CA504682FBEC4F10AB6C89 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AEBE1A77189E6E23143E7AA6735DCADE /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A802CF58520A2E706EC6CABD9EF9216C /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C4AC591D69D2E09C4C841360833D46 /* socket_mutator.h */; }; - A80619B6C8A1BE018D4ACDB05D1B335D /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4FD2D93FDBBA2DBC02B44B78D76C6FE /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A81C6E1EE61AFB74AFB250D0931A54D2 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E123084C42A818352D17C6AA63744EB /* path_transformation.upb.h */; }; - A81CE7419870479284DF2A084655D8CC /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 5331D0BCD321C46E1DA411F7513EBFE5 /* resolve_address_posix.h */; }; - A81E9FE88676EE05D5C1D6F01A288AD5 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A42F03C168209B36645006F0E5A23A03 /* internal_errqueue.h */; }; - A821C9ED776649D46C8740B2F57B9231 /* message.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 4314E2133E06E05721C34D2DE6F8DE3F /* message.h */; }; - A82253F2E5BDF186AF583F09A5464C79 /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF10070453D09E435D1DFC6C01843593 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A8303E8C5DBDF96B87DCA4D30A1E2B87 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = A31D9EEE7D2A1C7A349865BAC29388A4 /* json_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A83BDE791481C70CFF594CD954CAE819 /* decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C87994E263577BA663E35A4393B445 /* decoder.h */; }; - A83D3BCC31B6BA299EB0B2C77FCF788F /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 09076119632E1F3EB44F770C1DE4B9E2 /* extension_registry.h */; }; - A84941D6F0F7FE3772131729417B861A /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6692D4742E3B3D8C6360F50603042D49 /* ev_epoll1_linux.h */; }; - A850CA55DAE924A7B3DFF189D5218330 /* crc_x86_arm_combined.cc in Sources */ = {isa = PBXBuildFile; fileRef = 877D9660F2F8DC3E0A3D0D5DD0029670 /* crc_x86_arm_combined.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A851472FF96E9670656B95B1F7DF21DA /* FIRCLSRolloutsPersistenceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24AD98ABA935C1301785802C1305A91E /* FIRCLSRolloutsPersistenceManager.m */; }; - A853244354A854BA98C55540121F14C1 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 46ACFFAA029F46AB6F26C261B652E396 /* xds_override_host.h */; }; - A8532CB01F86EC6A2D2003845EE8C6E8 /* path_util.h in Headers */ = {isa = PBXBuildFile; fileRef = F38393761DD601B4F321E85D4950815C /* path_util.h */; }; - A863B256C7D95248F2763DDB58F29824 /* random.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 896D09B879467A0E85946DE8BF04E0F6 /* random.h */; }; - A8645F7BF77622FEF844C10BD97C321A /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = DEE0E340719971AB8352F71A454470B1 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A40C8AD5FFC3B5470B453A888C58378D /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 50207B1AC6FF363D1511735DE5774CD1 /* grpc_method_list.upbdefs.h */; }; + A4112CBAAD079EDF1CE21E3785251DFD /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E9AA62743BA47553810B76E992C3D9FB /* health_check.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A41FE6B1C6028FF0EA024C0C689E110F /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A962E42CB2E85D86412FBCC1EAAA8C6 /* FIRAuthErrorUtils.m */; }; + A42ED65A6C3AEE32D8221036E114FBB6 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB347760FA13CE89954827AD57040662 /* cookie.upb.h */; }; + A4337C40846B3278B1BFA95E38791292 /* xds_server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0916786A4A00DBE3CD88942D6B1BD9E3 /* xds_server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A43426BD96B79B9ABD5C1DDE26AB0A2E /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1F6D8A69E5930254ED23773B18A5E9 /* FIRCLSInstallIdentifierModel.m */; }; + A4394E11748740F81B8D4BF3B536CD2B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 310913F10E858EF18868CF500699C9EC /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A43ED9852E50FFFC2210D8C1C434D0CE /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 91B7388BC4949D7ED61828CD1EA59D9E /* json_util.h */; }; + A4492021F067B71C3145AEBEE9C3C987 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DA7AC41A7A41AF2D79480AD9800F1746 /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A44EDDE934FF950CECE9C24ACC842A09 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCD20269829B44942C9917B36030D3A /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A468D53F1AAAE8574A8782CFA579AF7A /* status_code_input.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A26E80EE65EB95E6CE963FD13B682D6 /* status_code_input.upb_minitable.h */; }; + A46905A51AB14384F741F4C9F8C791FF /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C71EBF16D551B8A59AB4AA5C44588A4 /* sub.h */; }; + A46A76317FC89C00B94593FDC189886E /* FBSDKBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3317CAD51B5CDEC16A4C7738CFA0DF83 /* FBSDKBase64.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A46F6F02D1559F100F56AA574F0425BD /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 89257D24DFF64F44C5173C6CEE4430FD /* completion_queue_factory.h */; }; + A47CA8FB2539F1DDE85683C05B670085 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = C19C317EE23789DF4D5A644B4ACA5D11 /* exec_ctx.h */; }; + A48541B046649F130D0F5706A03CAE14 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E21BF5A1E5067D5E6D1289575E7F4C /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A48587AA42EF17460672CC16E19F2EFB /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6D4E878299E6CFC3B1126C19168C30 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4971209C5C62C2A7ABF31DB0A3DD74D /* typed_struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F41AD489CB7FDBAA17CADF9F48084990 /* typed_struct.upb_minitable.h */; }; + A49E37780060BAC4AC98AACD927E22CD /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B26B15EF94416A6BF55CD0B2A154B6B /* rls_config.upb.h */; }; + A4A0428F8EBFBC004EC6586165F6D534 /* interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F19D3FB9C0867E24D22CC3ABAB956314 /* interceptor.h */; }; + A4A5D5CD3957622DC42709EF7531AA76 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DEC2B02BC3762D865EAB809C66DFF3 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4A686C14ED042DD914234A7B6E68D78 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BFBE1658DE9B51F1033BDC05DC8FD38 /* lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A4A913C8252815275BCD23742DDC2D7C /* cord_rep_btree.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8A831612FC65024CEEB35F6FD245135C /* cord_rep_btree.h */; }; + A4B520A164682288CB0D85A8E7DD327A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5F8658D3EDBCDCC7BE820BD39A73D906 /* PrivacyInfo.xcprivacy */; }; + A4B82D9217A1FFF29DBC87EA9C2B72F5 /* randen_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C4E8D94110232E7FA5FE2602D231A19D /* randen_engine.h */; }; + A4BAA1E736103CD25EB73BAA10AEF02D /* filter_state.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D157C2A71894AA6B853DFD68C7F6A068 /* filter_state.upb.h */; }; + A4BF29A34797EEA246EDFB5859D1666E /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 05570F0E6B3C3BBB4BE19290F16841FE /* FIRInstallationsItem.m */; }; + A4CC7CCD81CD4C7EEE329268681D65AC /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 9550F872F31D19EB9660F97B5E3BA6D6 /* grpc_authorization_engine.h */; }; + A4CE71AEC78CBCC35E770D4FBA48E533 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 0432C18E76864F5A4842908742EB4FE2 /* alts_zero_copy_grpc_protector.h */; }; + A4CF5F0B51B98770D88A9D34E5B3213D /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC189FE82AB42456B9CCE5450249765 /* ev_epoll1_linux.h */; }; + A4D2DF25C70A6EF0A4AB0530E3D488AF /* atoi.h in Headers */ = {isa = PBXBuildFile; fileRef = 048B1F37E83B5174132241746A8DD66B /* atoi.h */; }; + A4EED4C8F9AE60E5AEE503B9A5383EFC /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E2F82F8BCECA315AA0D379A95CC017FD /* orca_load_report.upb_minitable.h */; }; + A4F47D7EDC0C0E26105B9B0B002EE0DE /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A67D9B600EEB932F89171189FBCB4BF3 /* fault.upbdefs.h */; }; + A50439389A416BE7D1C19819A30D44EC /* client_side_weighted_round_robin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B3696CB2FCD8C52F7A2F485877153B54 /* client_side_weighted_round_robin.upb.h */; }; + A50A5DFCF1C7928EC43BC64B257BB261 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 29AFB371BB2DB579C041A99173C17F36 /* delegating_channel.h */; }; + A50C4CAA1C7C68F4B75E14C03C19B7D9 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 64660AAB9124EFC5B216F7AAD48882DB /* ssl_session_cache.h */; }; + A50E8A3705F50F74FDDB3E398D753BD1 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7ACB9A08910B0D42F980A1E7CE5BA091 /* promise_based_filter.h */; }; + A51333F10698D512149BA88EC746E180 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D6DC7C9BEDE4DA10D3FB9B8F2DB9B21F /* frame_goaway.h */; }; + A523488C60BF961290D0B1ABB9ADACEC /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = C810CC70786E8044BA3807F6F150F646 /* RequestCompression.swift */; }; + A52888023F0E92F9C1FB4D08F9184C13 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0006CC9E2CF8515771893CE1D06D31EE /* FIRCLSURLBuilder.m */; }; + A52BAD749F45497C1A880D9591989FEA /* dns_service_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40D3B36E15DB4C9E32512B9F62506703 /* dns_service_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A534C6874E70F33B54831F547A3AB69E /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 004AFF898D0CA15FD3960E4DA1D42375 /* dynamic_annotations.h */; }; + A574FCA335210E5DEFCF6168AC0BABF1 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABE2413DB35E9691F048CB90BE132609 /* client_channel_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A588B83743E993C54F7F961C6D5AD1AB /* front_binder.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 037F9A302B800B48929412CDD34D5911 /* front_binder.h */; }; + A5898DA0DB61826B593DCE82EA3139E7 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 3010184C3F5AE764360B4D368A66CEB3 /* channel_trace.h */; }; + A58DE984E082C66E77C752E993749614 /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 833F0DD58C96BB422AE63325FF6389B9 /* zipkin.upb.h */; }; + A58ED9A871479BB428875AE8E38EC4BE /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4E33923E94D25415EF3B944AA2494E /* unix_sockets_posix.h */; }; + A59F91C583EE71DD3EBCD43DCBF0A707 /* endpoint_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 123652FA8EA5508FD5114ED3FE9C1291 /* endpoint_list.h */; }; + A5A52FB58A17A97BACC90F4D4E36AC12 /* grpc_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 79AB2049999D318B728B69F5FF392894 /* grpc_types.h */; }; + A5A6AC93E93EDA242B9592FE71D9F231 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEFB3C1E60D59F2B6AA8D53BBBE02BD2 /* grpc_tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A5A74E680C6C2D30D46714CBCE0A3ED5 /* xds_server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4D6A86A243A7CB1AAA545CF7EDFF6799 /* xds_server_builder.h */; }; + A5A7A46CC5248E0783B6DEDDE2581E79 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE0A2C2720D7A3449C5BE68B07DA9EE /* resolve_address.h */; }; + A5A844176CDB24AC1FACE49E384FC7F3 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = E857496DC761F431CA98E75A99DD7D22 /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A5A8BF973BFE9C9304372A26C9F2E35B /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50FDFAE03796BDE08C017541D73AA903 /* ConstraintMakerExtendable.swift */; }; + A5A8F318DACD5DD2EF8EB0E62BDC2335 /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DF82491B841D933B2238A233D4B353 /* transport_fwd.h */; }; + A5BB05E8E4D4564FD4D87CFA0DAED57F /* FIRCLSCallStackTree.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2933D22A1DC119C3FC4A8045C5C43C /* FIRCLSCallStackTree.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5C2658B2DF8644AC774AE811440770D /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7A18B715C7E16E5ED0FE9B021D50FA /* combiner.h */; }; + A5C2D7BCD2441BC15949089B45D53C2A /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 1E0CE423C48362EDEB29706762F89093 /* uri_parser.h */; }; + A5C870D96B85497D2FEC2E44A34EA888 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FBE015D20DB562567D4D68C7E968A05 /* blowfish.h */; }; + A5D19EEAA58352782FE907F7AC2653F3 /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 940BA1A343A9B3E1B7C4435DE8FCDB5C /* host_port.h */; }; + A5D38ECE1D7C4F6C82CAF192B8705ADB /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = 590732B53874CAB5CEC27E7C38BEACFC /* experiments.h */; }; + A5E59A24F59CABA9DE8EC5FF786E6E08 /* client_channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 093C286BA529C3B2D206C3305F3176E7 /* client_channel_filter.h */; }; + A5EDDB4C2F7994774BDC2D31CE3DDF54 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0DB0FE973BA81AE5F85B7841EB3CC311 /* cel.upbdefs.h */; }; + A5FD821812F5A33C55DDEA5593E3979A /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 21DA9AEB440109A8267F925632308C64 /* def_pool.h */; }; + A60667561D79413293D43E5C7C9E35A6 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3589FAAE7179A07184CE1D7C9FE1B8AB /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A607DF3756102FF737A85BC6B7B3F71E /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F626D46E97CFC859A6FF390DE4DC07 /* thread_identity.h */; }; + A60A3F74F04E168532CB9A0812BF2EDA /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 918844B43B55EA460B8AA62478F8E1AB /* csds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A616171195C2B6A33FF5CF4B53F64243 /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7C52667A1EFE88C651F7A9CD3DD9CB /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6185DDAAFF97667277F02183FEBDC97 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 825AA11244F22048001B93D6786C2983 /* route.upb_minitable.h */; }; + A61BBCA592B791BE3FD18EE27E5C071C /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C8E6D0D10DD10066089446BE0372DA8 /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A61DA17E63C9415B4F1282F57276885C /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = E496C35F77BE4027C7DF80022E0841F2 /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A61DEB498EB6B49E201DE150B6FDE93F /* ec.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A36E68B12F0F068E5935D455FEE80931 /* ec.h */; }; + A62D54E64F10250FBB05B6ACA9C70E8D /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B10F00707D932A96B878E2BDBF93A0B6 /* posix_engine.h */; }; + A6301F2F743448BB16A8A14DF1F16EF6 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEF911855FD910696A582BFF8497939 /* resource_locator.upb.h */; }; + A631847C8C90814C5FBF6AAE021CD825 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = B62579B3CD6D1BED7BD67F0F1DA3AB33 /* timer_manager.h */; }; + A63361100ABD432BDE760F1CADB499EA /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 2CE06A7CF4CB950DA3D7D4944777FB9D /* call_creds_util.h */; }; + A6438EFEEEA7EF378F3B03733E967A8C /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8659D487EBFDB976DA9ABDA10B2EBF /* migrate.upb.h */; }; + A6450F8E92F039FC19BD6F17F99B01B2 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = F834BE96D99E048F8A2341C441D35967 /* server_context.h */; }; + A647C6A8B46058BD5A05998BEF876DC0 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D614CB4FC6F9F91B02D8D33B1306F70 /* local_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A65A1159DD48727E12024369FC3B8794 /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FD17393B859DE46E1080533C0098CEF /* FIRAuthDefaultUIDelegate.m */; }; + A65AFD8C49CB7FB7A9AEBA88D5103FE5 /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3020D2C76719B14AF34AB2BCB2910C92 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A6640F49372FC4EDBFA5E0855D326FDF /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8546B4FF71CD2FB24AEF5EF3D857A1 /* extension.upb_minitable.h */; }; + A67083E623272EF11F0ED2115AF7D273 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC99AAB06DCA4C2E71E05B3D4733ECC8 /* KingfisherOptionsInfo.swift */; }; + A67444A47FD5E8841225CF949711EFF2 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0899FDEC50690FA028C9D37A206B4EF /* TZImageCropManager.m */; }; + A68202E696B40499C2A08357C5FC304F /* FBSDKUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C2BB980E434B24FA826BF6F0B948E9 /* FBSDKUtility.m */; }; + A6865D21325863D2445B52B965A39035 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AB2049999D318B728B69F5FF392894 /* grpc_types.h */; }; + A6945D3AB5697727BE84A2DB988731A8 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = B633E038779814482CED2C74057DA3F7 /* randen_detect.h */; }; + A694E783C3285A8E7C3248BB8D538685 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA6F60C69A714EB58A8BB0A6323AAEF /* json_token.h */; }; + A69E301CFDFF8335CEFD684D8F7394BB /* DocumentSnapshot+ReadDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD39F57A58B4D1CA1B3CDEB56D541F02 /* DocumentSnapshot+ReadDecodable.swift */; }; + A6B69BA785428F0A4005ED305B765055 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D7D846CBF6345B119EA111B2BD07EB0 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A6BFAD202B7EF04C581E002159DAA16C /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EA9A18ECFE0031CE52D0DA9083D23C4 /* ratelimit_strategy.upb.h */; }; + A6C121A96D02F0D6EBE486EA19F5597E /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 01EF8B97C6D98C23F24FFEC0E9AE4545 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6C599F9E1733D26E9A3CE1427B7A289 /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39CF9E866E8EEBA6D631820D7C9BB67B /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A6C698BC0BC09AB7D27F95A95DAF5E50 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 42D31A6D42386A8B38EAB70FE4DA55FB /* alts_tsi_utils.h */; }; + A6CCED0E2EF25CF7D4E269C5D3D294D0 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD288F7685BBF1B8666D94FC504AFA5F /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A6CE6625CDF740A3B4198F3909FCD13D /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D3404E050FC33C005D9DB27C770417F /* router.upbdefs.h */; }; + A6DBBD2B13D8A3526AABDF2C8F3CCEA7 /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = D58A6C977BAA53D7091BA8D3B1979E58 /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A6DE4FC7F379971A5BA0945E2A11CED3 /* resource_name.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4213328F44E2B658E9C950B8FFFC5BFC /* resource_name.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A6DE9B6C022F154F16BB87995D2C284D /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BD94FC90C5B50959E4ADD14F19031F35 /* accesslog.upb_minitable.h */; }; + A6E1E364922B45F56AC77C6961F6AA20 /* TZImageRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4C710B0BAED0C7BD1EB589E68C17E0 /* TZImageRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6F068B433D458191293E623253A0561 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 9426DDD895464BE8CAE1DA9C640CC9D0 /* connectivity_state.h */; }; + A6F09DD2B9F052486715AA98F3492AEA /* api_listener.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1524006C14DDA5D14AB703813AFC364A /* api_listener.upb_minitable.h */; }; + A6FFEA8E51C1C175570C501EB520CE5E /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36DB7F61CF9198C7B50155B1753A7D07 /* CacheSerializer.swift */; }; + A70298746D75C68FE5067BB7762D098B /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 61BFED273CCA70F54B3AE8E24F99D3CB /* tls_spiffe_validator_config.upb_minitable.h */; }; + A70908B4C3108567253CA06997A0AA4D /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4F49004C3DDC45814CED7279F7B40EEB /* range.upbdefs.h */; }; + A70DBAAD5F5EC3242A41AB30915772A3 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97D9E1F6D2924CC0F362A1230E00B419 /* config_dump.upbdefs.h */; }; + A7172601B4EC2458ED66854119D55F35 /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8EC0312A3667BB4B6BB3C5C9B23D615D /* retry_filter_legacy_call_data.h */; }; + A71E5ED978BB83EDDB63F40B9A325D6E /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = AD7B09DE650C0EE784AB640E1BA838C8 /* proxy_mapper_registry.h */; }; + A71EEDD945B6F5534B8D7945D0892824 /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 948B74BC81B37B8B403AECE5E6FE8CD3 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A722D028229135303F6AF1F5BCD7FCC1 /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F7783660F307BE07983FFFB05F6B15D /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A727ADED9FBD612B935C51025B4C444D /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8AAB532E5D04BDAB9899CBCE1219A1 /* polling_entity.h */; }; + A743F1B1160E191D092CFFF93F42F4C8 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F18B201CE7AD0E47F0C9AC20D2179E /* options.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A74E8DBC8466BF40E3292146EBF39384 /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 328CCDEF924D516E84EC40458B4A740C /* http_trace.h */; }; + A750C39CD9307A75E0FC96D5C425E3D3 /* FBSDKAudioResourceLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5668765F0A105516631C5004209A1F24 /* FBSDKAudioResourceLoader.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A75431D028C7A1B71E1EAFD37E465C0D /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 4001F548202B6DA2B0E116EFCA781C79 /* stacktrace_unimplemented-inl.inc */; }; + A762E707D418B16231D46CB846B8AE2F /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4A83437FEF996687C6716494E89661 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A765A0782BF645F74582352243F8E616 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 435B26E13F90F44DCA5F4B6F78FBD705 /* cord_rep_flat.h */; }; + A76CD428624F3113406BE84FD99AD34A /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FB84C52583A19832BFA2C7EFBC287E10 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7713DB0C12C53EE69452A7BB8BB678B /* FirebaseSessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42F177E6B423248CB2F8CBA6A3670698 /* FirebaseSessions.swift */; }; + A77312EA284EFA1551929B332BD0ECCA /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C50049D8BA304480C09FA60E2F3BD41D /* extension.upbdefs.h */; }; + A774C4A5D002354CA9F6A9E5210DCC4D /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = CC1D5B2900DA42500CBA26C53C0D8E0A /* rls_config.upbdefs.h */; }; + A7767FCC26AC0F3ADAC5B753EDC9220D /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7322ED84576A6BDD8739A05CFB0E5337 /* handshaker_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A787A508415F883F42D78DFAE1122299 /* pretty_function.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4D04C579CB55488461426BAC5DE08222 /* pretty_function.h */; }; + A78B01D49ECA67E4A1A1FF5EEE45E00E /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4FCDB9E456588D1A7A30894570991D1 /* http_service.upbdefs.h */; }; + A793AD3EBB1F47B5EA1783391F90F5B0 /* channel_stack_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2D0C066DC9A9C7AD7EA9FD3419EEC8D /* channel_stack_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A7AE9DD4DDFB0927FA42F95446376898 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9ECD957A6397D1738445435FADB454FD /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A7B3D91BE7FF7DF5985CD40DF0D80EB9 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = A38C24898861B4301919F2508912003A /* transport_security_interface.h */; }; + A7BC739B5DCA949F108BA2F24599F3D0 /* FBSDKError.m in Sources */ = {isa = PBXBuildFile; fileRef = 1765FD614AF0A6D9555EC12580FFE46F /* FBSDKError.m */; }; + A7C1B119EF8879D19FD91804DEDD7D67 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = AA61E48E6810428B2C1035760308EE06 /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A7C5D86CB6A38BF92435DB78321AAF9E /* client_stats_interceptor.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 389182502744935374B7E508D6B63BE7 /* client_stats_interceptor.h */; }; + A7CAAF007BBC66F47FCD988489E5B5D8 /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FC0E467CAFDD0CA5063A30921C6DF15 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + A7CC27F9FF40D66543E2A18F24F84BEB /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F1369331930A2E229506708BFF751B /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A7CC42EC39EBB722696F409780153F1D /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 67C5E2DE50349A576F6E473706D28EAF /* win_socket.h */; }; + A7D4344C4C56FDD80CBAFB74E92E39FA /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = BBF19A7B953B59EF681D20BF2682B415 /* proxy_mapper_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A7D97C11C8E92A331FB1DCB0EA7D96F4 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6168A362B627177D842CABBEECED7B91 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7DC316C69A0BB303A85923E296A6DF6 /* utf.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 332A1FC2AD148CC5C0304EFBA8807FEA /* utf.h */; }; + A7ECAC3A538ADECE2FAF5EAB26DCFEF3 /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 401F07B66BE397BC40F5F28FEC6D0EDA /* unicode_casefold.h */; }; + A7ED4282E46C252AF5A10F6A4C2B96F5 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 259C417450F3DBC3A8E102BABD97477D /* log2.h */; }; + A7EEEDE09439FA545B5032C47C6A1B41 /* non_temporal_arm_intrinsics.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1F3AAEF3028CD86197DD3FB4C41B2D43 /* non_temporal_arm_intrinsics.h */; }; + A7F825E03A29B3BA7F2ED7FC519F6EB1 /* FBSDKAppEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5A646173FBE7E721D814EB9AC61082 /* FBSDKAppEvents.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A80255C5321952C452390BE9E15C7C77 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D67813AB87E6EB52BFDEFEF87204D499 /* status_helper.h */; }; + A80F559526B00593A6ED8071A843325B /* FBSDKAppLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 11DBA1DE72492D0D05D2223137C90D29 /* FBSDKAppLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A814BA0FCFD20036D552228D84E2F028 /* strutil.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = BF19ED4520C949477951EA8107218BAB /* strutil.h */; }; + A81CE16D2439CE7D8606340B5A70D957 /* thread_local.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EB8A3931BA78C8CFBB5363DA996CBEF /* thread_local.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A81D9032831625AABAA7FAB8320F9FD8 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 69C089A46B8A2F5FCC8F983212AD87CF /* security_connector.h */; }; + A81DE88C3B625567583838DEE21B43A6 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9B32D1FE61B82BFA1A44475F711A7239 /* common.upb.h */; }; + A821167E48C426FC07643B033689D95E /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7DA5CC7B75F3640AE1A05E86CA6D0BFB /* tchar.h */; }; + A83F258E9840A6087743AE5AE0037D7A /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32A8C4ED7F7D5C9743C6C359B8D258A0 /* string.upbdefs.h */; }; + A84BE758B3E9FD3A1DED423EB8DA3D9F /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F94AC9A68B3D44B473759B2480EDA1E6 /* file_watcher_certificate_provider_factory.h */; }; + A851472FF96E9670656B95B1F7DF21DA /* FIRCLSRolloutsPersistenceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F04FFFC30B97B0FAC7FC1C9BC9512F8 /* FIRCLSRolloutsPersistenceManager.m */; }; + A8558A9A590CA13912B809D997DC8417 /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34B84D0E19C320BA0CC94FE808D3A4ED /* rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A85D6A772A19CA7D99E885AAFE623B0C /* cfstream_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFFFF5B4E55754B355B3C206F5810276 /* cfstream_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A8645F7BF77622FEF844C10BD97C321A /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = 98731FDE716ABACB8C234684EF0635CF /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; A868C89678C05DEC5A3C5A4CF79ED09D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - A86A76D31BABDE79F34348CF0F3B2727 /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41DCD5B7AB2FAA1E3A763966CC7446FD /* semantic_version.upb_minitable.h */; }; - A873FF93530825E84E00E6035C0B6E5B /* slice.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 17100517A196018967E9CE077AFB57E2 /* slice.h */; }; - A874823F23A23CE1EBC2F08F524347FA /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 63932561A7E4C89F350741C46B554F44 /* socket_utils.h */; }; - A87E3F9991589D6D31E2C22B8547401F /* logic_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 287021EDC0CF4F492B41420A86A816E3 /* logic_utils.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A87FC00E91DB2715BA8A63D3662BCA60 /* validate_service_config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 4BE264681665B427608BA6D3B5D79431 /* validate_service_config.h */; }; - A89149ABD7E7FE36688D93B2AD13FABA /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 594409D0BB19CE2A81906EE173054D5F /* xds_resolver_trace.h */; }; - A892A43912BEA7A9649F2EE798CCA361 /* xds_resolver_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 594409D0BB19CE2A81906EE173054D5F /* xds_resolver_trace.h */; }; - A8962EB733FC871F5D63BC99D9F90155 /* string_constant.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 31F88885CE5E4D417BE72EFBEB512AD1 /* string_constant.h */; }; - A89B1B19AF14754425BA6A932889BEE5 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = B06666DF1F14DD98B59924FA59FD9113 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A89C9BB7C048EE9877822E8303946F0D /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B89FA24CB3A8004D9DD8742541B18E2 /* grpclb_balancer_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A8A3C81660063CA55AAAD208AFDE41F4 /* asm_base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0A302CA7B9A93072BD4474F5DE7123DE /* asm_base.h */; }; - A8A8396DA8BA143F721318D21517356D /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA85E1310ECFB9C5E917CE779D43F7F6 /* hpack_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A8AE23D8836CB1B515A28C2788D1BF6C /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = ED26C4B74FA62280829BFE8D365D3F8C /* FIRAuthDataResult.m */; }; - A8B6CAAD43F713010C083ADA87FAEF10 /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */ = {isa = PBXBuildFile; fileRef = EC0BFD697A6B8287146EB166339357E0 /* static_stride_scheduler.h */; }; - A8B7E108AD4D1781608D7EDF84A65C1A /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = E277D6FD9EC317D3436C81869F09A64B /* channel_args.h */; }; - A8B9BCDC0101FEBF2274B8D7BCA04BCC /* service_config_impl.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = E78C34C9D3FD4EE555F5761F7B50A790 /* service_config_impl.h */; }; - A8BC49AEF060EFC0A4C6FC36A48AAFE9 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = B2670F48828D3BC8B0E815CBDE2DB3FA /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8C4C8B7DF0638A58C7076A09D0584F2 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = C585D2DC57DC3E873F790AA4A4C341B9 /* FIROAuthCredential.m */; }; - A8C7A3287E301F8F2A2A528831ECA4E3 /* legacy_compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6B880940B27AE1554CB9B61A998EC6 /* legacy_compression_filter.h */; }; - A8DF5A2E03FFF43D6197AB853713521E /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A49A42A540EC414DCB10E2C0C660C43 /* tap.upb.h */; }; - A8E768584CA36DF64818D33B3C3A3AA1 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = A235DA621D61A1C1E5CCBE6F60A1CEF9 /* GULNetwork.m */; }; - A8E8538FD1E15A68F8FB2793C501208E /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A051E430E605EBF8184F740974499337 /* http_status.upb_minitable.h */; }; - A9036205C80C80E8FA706A64FF9968CE /* auth_context.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 908615A9B249DA25C1DA7AB7518B9CB3 /* auth_context.h */; }; - A915011D06BB02092B984D073315482D /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 51232F20B595F88D4BD4776D6FB62CB1 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A929C31ECD240BE79B779B1869E78E08 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C011F7488B621868412F0C9D5BC605 /* ssl_utils.h */; }; - A92F0584E814A556EF751502C75A1427 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1AAE9BBA29F0990AE5B54803236B88F4 /* frame_settings.h */; }; - A93D856C85C56412CB4EC619B4DF1CFC /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C2595F47410E1895173C38E900BB0642 /* frame_goaway.h */; }; - A93F2AE470D0FBE11B312E79A3D287E3 /* method_handler.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0016A656F1FE437D43D61C33598B7B12 /* method_handler.h */; }; - A9440EF2C5DDF1FB3CDFA7DC149DBB2F /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = A1CA09DEACB4D4B165926367BB3D4005 /* FIRCLSUnwind_x86.c */; }; - A95B9DEAE718C20D3EEBAEEA5B92B9DF /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6306652B6132A3A66A8EB204F1F0E596 /* tcp_server_utils_posix_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A96464FAE8526FBD85E94C77BFA72C64 /* str_join.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 88615DFF5A5AE2E8B2B8CC34598667B2 /* str_join.h */; }; - A9660A01121ADA993457D543DF7F218D /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E26A84D2C89FCCCE95E2BAB591F5B2 /* status.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A967EC6940969705FA6034A0474CBDF6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B7ACC6F826C6F4818520D0DE533DD6 /* internal.h */; }; - A96BC98E0CE2D92AB20743AD82D6D80B /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = F63E02E2C8B474F0A006917F93DC6EAA /* struct.upbdefs.h */; }; - A975C779106C1B9D7A7546D4C2A0D4D4 /* fast_uniform_bits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A92279279AFB5B2751F380015349C0B7 /* fast_uniform_bits.h */; }; - A97AF400884F2362FA7591EC82DED828 /* work_stealing_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EF205845579055CB80773EFFBD3EC04 /* work_stealing_thread_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A97E90D9F29D54FA0258F25D6EDE5298 /* node.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF1B1712B2FBE05EB787E12CC07043 /* node.upb_minitable.h */; }; - A980ABFA5CBBFB447A67D02EECC0AFD2 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 237A8D91217B7626D61CBBEA8972FF66 /* FIRResetPasswordRequest.m */; }; - A9830554B2DE48D18DB9D88C85984A29 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C24B56C810848E6A9C295D018754D8AA /* promise_based_filter.h */; }; - A98C11741EC8B4180127C45BE7AC1C5E /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B001E53E4565B9763550A130311C6FE /* regex.upbdefs.h */; }; - A98CF8709424D87D3EFE70839596ECA3 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AB40D14D1051D1A3134E32573C9D9CEA /* resolve_address_posix.h */; }; - A98DA288A28BDFED67524D446DCAF06E /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A1B008C966022D983FE7169899C89A5 /* percent.upb.h */; }; - A9909575272E82EE7A04F0968E75481E /* memutil.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 66924F27DC7368965E312F459D2F0CD2 /* memutil.h */; }; - A99F841BF3560DDAC06573D0D3D4AF7E /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BD37AB3537CA25C6FDE3AFE8F55BE9 /* xds_channel_stack_modifier.h */; }; - A9A556CFCE34C7944964D5D317621D8D /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = FF09E168713329A5FC0584B1F89CD590 /* sync_posix.h */; }; - A9B50834ADE9EF84A8B716D8F85DD9DD /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DDD441CBC2F65EBD6B417A61899F5DD /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A9CA5CF8607DD5D3CA8AA7BC40B74EE4 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9BA928E2FC3D26C7DDF29A33CD599EFF /* context_params.upb_minitable.h */; }; - A9D9B36630D9AEE9EB0DD8E58609F9E4 /* interceptor_list.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F67A4743BEBACDCA9F3192450EE6AE /* interceptor_list.h */; }; - A9DC426BB37D02688EDFD3DA29B42E06 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4A3BD250065FC38900E68B2A6D8370C9 /* init.h */; }; - A9EB07587D993AA9DC27012FF6A85A05 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B3E64DEADF992F5411E4530702717B8 /* FIRTwitterAuthProvider.m */; }; - A9FBD11AAB74FF83E806128CD472240F /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A5FCC666238A720398D3FEAB5FD6EE0 /* FIRAnalyticsConfiguration.m */; }; - AA0660648FBE6350B94E1868DADC12E3 /* xds_resolver_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F46733F958B8B39D38ACCC7EC2EC6B0 /* xds_resolver_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA0752D003778B72AE3414FB937C41BC /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 428F3279F4C2BF2A12EE49C61FDF5A49 /* byte_buffer.h */; }; - AA089C28EFD9426047531753DC35C9A3 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C528BB2B8142B1B7599784F60CA69B /* extension.upb_minitable.h */; }; - AA08E682508E340EB0DB2F514FBB1D28 /* string.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EF66E8645283D4AAEF2B795713E49334 /* string.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA14A6782D5FDB9C53F8E160ECF75D0D /* backend_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = EE83EFAE45C51FE6D74CFE526F0A401C /* backend_metric_recorder.h */; }; - AA19E14B654E495AF144DE8029DD2253 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A165CA7A8B31994953AAFA6B786BC9C7 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA262099E348448EFFE99B7A3248CE5E /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD98CE3E83B14EAC5678E47079A30BFC /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA2D02B3DFDD6CEC145491788CCD3B87 /* mix.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 9021CFD21E8189F42EF3E9DC3BFF8A68 /* mix.h */; }; - AA304BA41F0AC8B6E4F59B542C7C617B /* cidr.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B2937658A84C4EA9BAAFD51052180EBD /* cidr.upb.h */; }; - AA3964B84B248BF35AAB5D7722D8E24D /* xds_override_host.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09B4E05541A4B39A93A39F97AADEC37D /* xds_override_host.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA4279D7B476D8A3F462DC67D04E4C79 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0F4B1B10FECA625E20F2A7806887C58 /* xds_cluster_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA48BED3B27D254CEC465282F595C8BD /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1B976FB0540F9F4001D2CFC90DAF0A /* server_posix.h */; }; - AA4DAAFD90D26EC20D7B0577CF7DA62B /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 93FB7D0A827F74FCB07A2AEE5CC3195A /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AA52A9CDC77D4681CCF5EF4CB60085AF /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AE857BE4E180E7276141FFB2C2A4EA46 /* error_utils.h */; }; - AA59ACB772C3B577151BB2923912EB67 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 596C294122411236161F77158BDB0F88 /* resource.upbdefs.h */; }; - AA5E8096E67CC283F68FE23779E1986E /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 6A9EA9BA889DBC17CE842E105EA1411C /* activity.h */; }; - AA640EC1BBD151D2C95F998EBB054020 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A15C70CD39FB77AFDEE0E4387E62796 /* compression_types.h */; }; - AA6A63511ED707073C7160B380F51213 /* event_log.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = FEB03B1E704802522988C23B60A84BE2 /* event_log.h */; }; - AA721ECC2B36AFB7D9FE70C83E6D63F9 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12925203A80D75968B81E4348237931A /* Response.swift */; }; - AA7AC6C59B5D7815ABE0287350DFACB2 /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9B05DBD8A4539A515176D6B1A5D2D /* security_handshaker.h */; }; - AA827A748F5E2213D98B41933A6AF1D0 /* memory_allocator_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FB426A8C3DFC11EF76C4DAA8B82DBB /* memory_allocator_factory.h */; }; - AA99300DF622A160AAB99D5F1D933707 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8163C86ABA32E8F3D609F00F6CF077A1 /* Storage.swift */; }; - AAB1B5FB4C4A0220F9B7FEFAF2D06928 /* rls.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5366735C4B1E27870DBC3B7C162609E0 /* rls.upb_minitable.h */; }; - AAB51354030FE2F4A50614014E9485E0 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2D6349967415EF84F05A6AF4BE4DDC /* socket_option.upbdefs.h */; }; - AAB63FB9C5CBA79AF2BEA5156A0E64A3 /* per_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 201E1D5C24DF63BEE55739B6E2BF65AC /* per_cpu.h */; }; - AAC886A65B429B7E5EF926DE2D56CA92 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4D69FAA3E1698D2B7AE0C59B070E00 /* http_inputs.upbdefs.h */; }; - AAC96315557CF976443837CA7C85F4F7 /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2798F8C0005C7684EFA41A9A04C43C8A /* service.upbdefs.h */; }; - AAC9C2C120C190E7CDA80D75D993737A /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F125772CB89AD87B5AA63568FCE6B3 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AACC85F0E3E01FF20EFA9BA7980B8612 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B18E2BBEC9D8353063AE3E181D1775F /* raw_logging.h */; }; - AAD37993A0F3F84681DFAC6C62611510 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A8E0C951A89D999F1B9CFF6CB43679F /* config_dump_shared.upbdefs.h */; }; - AAD93466048A85A78F53FEA2C36A379F /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CE0FF7E077B725803EBA156FE40D621 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AAE9A52B088A429FF948F188057DDB3B /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = D585C5656B9F8F7572D68804AF4F2897 /* message_def.h */; }; - AAFBF86E17174FF6DD3BBA2BB393D3EA /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C2927BA1354FE1C8613B4B04621BC6 /* ImagePrefetcher.swift */; }; - AAFD459482A139DE4C9397190B44FE29 /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8997549353FBAC7EC7656FAB68EF69D9 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AAFFEF21D530AD160A7A395BB5F6D347 /* TimestampDecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6357C4C2B37828068602F6AC47F45A /* TimestampDecodingStrategy.swift */; }; - AB09E43A91E3FFAF7B21062CF8B5BA32 /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C0456A89B9CC6612F39E0D43AA78F19 /* server_info.upb.h */; }; - AB0B82CB9D2868807839B034BFE4D27E /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CB3F9044CB91BD0E927408F5BE5664 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB0EA64E26574D95D9DB418E74E44B5D /* TZVideoCropController.h in Headers */ = {isa = PBXBuildFile; fileRef = 35047C18448D0C2AD36936360AE82936 /* TZVideoCropController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB1526F07980C9152013F36BBDF6D889 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6182C414863367FC11C18885E7D84F7B /* rbac_policy.h */; }; - AB1EFA310E023E4ED884566121143999 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = F1F5C05DCECB4881578EFDA93DB96734 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AB282FFF34758678CB184E77460E8538 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F75CA164232BCBFBE691D719C844C71 /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AB3225B69AC8F8BC0EF3E9C2C0454C6F /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5ED2ACB72812D2F7EA26E66C4D15DFAC /* grpc_polled_fd_posix.h */; }; - AB48F97645BE34461A847C59E63C4679 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B6A95E86938C3CCE0E01448BA9A8C5A /* http_inputs.upb_minitable.h */; }; - AB51523C238889E47105074C471CC36B /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D9B702559CC1C852356562A30AAD13F5 /* route_components.upb_minitable.h */; }; - AB5187706C810ADF6805D09C843DC70A /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D659C3CA28F35BA64B8A73A0F4174DC6 /* lightstep.upbdefs.h */; }; - AB5EE1BCD48662E68F02D152B9103968 /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4333C78F79817D0EFAFA3C5B290B757C /* tcp_socket_utils.h */; }; - AB6E79C214FF643C63CE5920EE973022 /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ADCDC06E113BC82E697022EAEC84C845 /* timestamp.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AB70CE7D35B037ED34D8282978BB9089 /* metrics.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E6376FA095F4B6F3CAEA14B6B2D3DFCC /* metrics.upb_minitable.h */; }; - AB76EDE904257EA7A719DC990EC48F96 /* utf8_range.h in Copy third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = 7D58D409A88F98DCB241916B8CC88DAF /* utf8_range.h */; }; - AB781B26D66BE3B1AF2907B35C2AA7F8 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 605352223FF1E1E1D53817EB67E3BD36 /* number.upbdefs.h */; }; - AB80C79D9228D5AF8B8E85AB62D8914E /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = 8050FEBED1368D3C499C1BA15AEBF8E1 /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AB82229151E68C6D9DFFF0F19D57452A /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B695CAC684C1B5CC64B48441F75F88E /* channel_stack_builder_impl.h */; }; - AB845570BE752765AC00E6A67B31A0E6 /* path_transformation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8D7A7E60F1733C41CD1DE080C6243B /* path_transformation.upb_minitable.h */; }; - AB865A18D56C8EE4966D7C8C976F50A6 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F983187B0FFA29B0AADDA13C4864C3CA /* number.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AB8D89D92C96ED0690118A03E0721792 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D239E16B8646B99C896802DB6A8D9928 /* NSBundle+TZImagePicker.m */; }; - AB8FE92449D06DF825AB7B98CC827D91 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B3820F542CDBC0B47721991A152940F9 /* ref_counted_ptr.h */; }; - AB9183CC089491543B6B8397DF83A36C /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEA5226691F329AB0BCDABCC02D1473 /* metadata_map.h */; }; + A874CB14EEF8E6A8D42B8D7F63BA8283 /* posix_engine_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D241984C954DADDA735F8DAF4A6DA4C /* posix_engine_listener.h */; }; + A87DDDD5531C1DA7D4E0D3A42374BD53 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AE477F0B0BCF761136DB1D2B9A632D2F /* httpbody.upbdefs.h */; }; + A87F2F741CFBF252D57E8BB768378C13 /* thread_local.h in Headers */ = {isa = PBXBuildFile; fileRef = 5380F303636DF88FD22AC18F7B56FDA3 /* thread_local.h */; }; + A89B1B19AF14754425BA6A932889BEE5 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = C09BDB3A57D041E627E09E89CEF253F6 /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A89B1C079CE5DA4F72984AC61BEC8E4F /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DEBC73D6E8DDD1F50A6FBA884535AF9C /* client_side_weighted_round_robin.upb.h */; }; + A89EFC650AEC6685B527198171F7C2F8 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FCBC9C6A30C15FA6E2E459D72E394B /* http.upbdefs.h */; }; + A8A34D6D69075F2AFC0B6B4C895189D3 /* stacktrace.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = C418586DF1EC3AE525940F46D7A93B5A /* stacktrace.h */; }; + A8A3C81660063CA55AAAD208AFDE41F4 /* asm_base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C9C59E77C124E66CA666FEC4F1C8AAFE /* asm_base.h */; }; + A8A4BC8F3458E0373B3949F0C8D7B0E5 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 15FB14B7AF54E87319A590EA4EBD4457 /* vsnprintf_compat.h */; }; + A8AE23D8836CB1B515A28C2788D1BF6C /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = AFA0932073EB862803118E9388E41568 /* FIRAuthDataResult.m */; }; + A8B0F941B909BDF042FA32AE6B9A54A6 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 8837FDE90B300A36CC4248A780B349AD /* GDTCORReachability.m */; }; + A8B6C16F8D33236A10CC8F6FF060000C /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 39653BB49DC1A4449E117774A7318BE4 /* tls_utils.h */; }; + A8BC49AEF060EFC0A4C6FC36A48AAFE9 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B6160B1F08F3348D3AA86632D4D3073 /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + A8C4C8B7DF0638A58C7076A09D0584F2 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA9CAA64C36C87294B3D5C229A43003 /* FIROAuthCredential.m */; }; + A8CDB0C409D34BEC70816E374F0FD603 /* call_hook.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 468461C78912993F93DA5214AB956DB5 /* call_hook.h */; }; + A8D6FC4D551E0BA9336241244F0E240C /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = E29DDAA054622D6073DD7B8ADA7D19A4 /* uri_parser.h */; }; + A8DA27D6C65E9609A6D3B3ED775D5C4B /* constexpr_parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 287E08D975BEBFF671560DC81287AEC2 /* constexpr_parser.h */; }; + A8E7CA14C3F132E2C191781E72E5C7BC /* grpc_security_constants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3A1B26FC8EE42B3A5B64EBE778403CC2 /* grpc_security_constants.h */; }; + A8EFB3722C2919D411902DB0F7F83A7B /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B34F7B6144F5676E6A32FD824277179 /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + A8F16269577E103460B655236B607D06 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2308941650B80F684250C20004EC49 /* posix.h */; }; + A8F5B24B32BBCD90F0FA9D7AFBD72CA8 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = F21FA830E37D6E4C12D34E98DB6731C0 /* FBLPromise.m */; }; + A8F6A9CB3703D099325A131DAEB97FFD /* options.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 5743B5D7807C704357315DF22101F6C2 /* options.h */; }; + A8FD726D51E6C924F635413ED4892681 /* ratelimit_strategy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D61D02455FB7F596EE94315BD664CD53 /* ratelimit_strategy.upb_minitable.h */; }; + A8FDA852ED1BA196B7F5A0AFF5CACC46 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 520A3E57A8DDB1B6E1233938C38D023C /* filter.upb.h */; }; + A9038AFA203A191855D6AB809BB1D937 /* FBSDKSettings+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF566D5DDB62353754EAD6540E30104 /* FBSDKSettings+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A90EEEE07188EA46345316C5F119FBAF /* route_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 66AB27E7BD43720C7AB72368B5BA3368 /* route_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A915F647658BCCA3BFC9BE6CEFFF1B86 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7EC3D67D7BC7E2DFA3DB674E04CE61 /* cookie.upb_minitable.h */; }; + A91A000185F0DDD56F6700DA17176D62 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A647CA763FFA2B34F759A02B5489C29 /* http_connection_manager.upbdefs.h */; }; + A91C81BF8014A431D89D16219D4A6646 /* slice.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 3424E46387395C7A941BB0751515D80E /* slice.h */; }; + A91F756CAC37C035CE64E1F5F88285A7 /* all_ok.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBFA5581BCEB2880164A123D3E935CA /* all_ok.h */; }; + A91FB226ECFC7787C818560BF2E42B10 /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = D166AABC83636194478A5C972087FABC /* optimization.h */; }; + A91FBBA4222BB10BAB8E8BF2A0D75A3F /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FCD721004BF4F007647A2743B3F4C46 /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A9295981D69969BA64F570D18975DE01 /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBEF81F070A25772AFCDC6685B19485F /* percent_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A92F2CACAEA608FA7EBD0892C4A2749C /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D3383727292C4D552095ECAF59DC513 /* matcher.upbdefs.h */; }; + A92F6F466FFFBCAFBC606ADA99C3B3CA /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F002FBE3E4EE73F7023F25BD03C3BDF1 /* cert.upbdefs.h */; }; + A933B13CF16F6F404B0C588B377291C8 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = D67813AB87E6EB52BFDEFEF87204D499 /* status_helper.h */; }; + A939DA76DC2DF5BD6DE0031EA3C1A122 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 70061061A58ACABD133B950201E048A8 /* custom_tag.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A93CC072F5FA6C454DE128589D2F22AB /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = EFD32049A4431C7C0C960E55D7284C6F /* forkable.h */; }; + A941488F8CAFA9EB04D17613D301E737 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 428774272E46A4FE2E881987AB2BC032 /* binder_auto_utils.h */; }; + A9440EF2C5DDF1FB3CDFA7DC149DBB2F /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E1E00FFEFA186438864117EFD0D465D /* FIRCLSUnwind_x86.c */; }; + A95A086F0F721B10CCC6902648BBCF45 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B0F7E2DA4C7622645BFDBAA35B652B /* number.upb.h */; }; + A96A7B641A4205D96A7CE2868953D045 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5C64ECA8B37B101CD6F142F9DB2BFA /* stats.upbdefs.h */; }; + A96D4F350EA0859FAF0F6D727A11AB35 /* grpc_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AFEEEB454E540DCFED1CF0FC5BF5B55 /* grpc_server_authz_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A96D74F22A0AAA82EB75430C867C33BD /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 97667718C1A7D320C8FF591C8BA67CA7 /* config.h */; }; + A9714992700B3F1A8396A20A90DC3158 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC2856287BA14533C0D09246BE5E13C /* config_source.upb.h */; }; + A980ABFA5CBBFB447A67D02EECC0AFD2 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 944CFCC2ABB9E8E5CD6497B4C44C4AF3 /* FIRResetPasswordRequest.m */; }; + A98ED5C7EE03D466CF1B07F835E569AA /* stateful_session_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 906F49F6BF6D8C858E8C30FE94697A99 /* stateful_session_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A9906CA43134B2245554AB7EEB370746 /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = D022BACF59542839A3F36F74C65E3400 /* ssl_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + A9A1F0915EB34E9731109AAB2057BD67 /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCA16D8784C50DDA3A4A034712B79D59 /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A9A45CC8EB4DEDC79A9D951ABD74169F /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E99A11D4E4E5C1A0C05F0EC60DD6BCFF /* mutex_stats.upbdefs.h */; }; + A9A7A094CB833B198AADDEA2CB66E4AC /* crc_non_temporal_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36627B2BD2C3669D66EA9507975A8437 /* crc_non_temporal_memcpy.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + A9B1DE6A4C0DA855EFE2CF2EA760E313 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0A43566E430A5E0FC3DF8FA3A66A0E75 /* hpack_parser.h */; }; + A9BD0ED810931FA827AA2E577CDF71F1 /* FBSDKSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EE6073CD4FF5515DADD82B0F9EBE62 /* FBSDKSwizzler.h */; settings = {ATTRIBUTES = (Private, ); }; }; + A9D3F186DB19BB84B5ACABF5CE3221D1 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F2181F62F9FF574B6A0A4F1122C798F /* service.upbdefs.h */; }; + A9D70DA95AE210645801BEE8CD770FCC /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 72534F5D94210C74D6CDDFF12E8D98B9 /* resolve_address_impl.h */; }; + A9D918538BA2416DFF2E3C47A29CD6FE /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1890EE4078EE277CBD86A044226DD869 /* grpc_posix.h */; }; + A9DC3AA68F45D672A2D159C6CD254174 /* GDTCOREventDropReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 1237E6591F27F309D3FDF3F8E51E228F /* GDTCOREventDropReason.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9DF9C574DCBE3AEB263A03B570238D1 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = D70F00FF85690ED6E331D764BBCC4E67 /* time_util.h */; }; + A9EB07587D993AA9DC27012FF6A85A05 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C8502B033ADF6165A4EBCA4473E96E84 /* FIRTwitterAuthProvider.m */; }; + A9F3F17ED378D9E3165CC2BAD46FF846 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFA91A1A4BF46C39B0B2CAFF5A1275E /* xds_credentials.h */; }; + A9F9E2C1ECE59E3A96ACA240DE39AAC9 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 57203342CB48650AB92B962F1626897E /* FIRInstallationsHTTPError.m */; }; + A9FFC4B91AE04286DBC7422D2FE9BF3A /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8AAC0BA5E90FB749B1776EEFC2342EA9 /* resolve_address_impl.h */; }; + AA06A094FC39F826693A069651CBE97B /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 34EAAAAFD2A37F14EA04570FF5D80834 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA06B0B01EEEB7C7D14C19B5A3DAEC98 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 899690B78A3F35F6ECE622A682DA2BCE /* http_tracer.upbdefs.h */; }; + AA0B27DA1CE3B5D0B8FDE395D289CEC7 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C23FC429DE5F1B663A7AF880B442D9C8 /* string.upb.h */; }; + AA14441398507D051A9C69EA876C8391 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E576B97FF6AD14505F60A6614778BCA /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA1A27740B9D3669280A212D5BC58C70 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 306E898F40DC9AFE6F7FCFF9738180F9 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA21F9C6E4A8B81A44B59546B09A6746 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 19613E298D37A60E97F9644EEEC5B219 /* discrete_distribution.h */; }; + AA358AAE12AB47A821CD2AFDD53F5F52 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E606CEFB9482E44C8AE609EB58A52E6 /* frame_ping.h */; }; + AA4A779FE1B88C8BA8FC3251D3314B07 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4ABCA2FE62A1ED99A46BDFAAC599A16B /* ev_poll_posix.h */; }; + AA4DAAFD90D26EC20D7B0577CF7DA62B /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A106ECDC8AB1C934BF60866DFE202D7 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AA4F5A4ADFBDF95362100A7F77E331AC /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05166F81F7E9EFC2033F0CD3931F9198 /* orca.upb.h */; }; + AA501D7FE8A7B91ABFA764F1549B7ACC /* FBSDKAppEvents+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FDBA06227C99175638481688E112E2C /* FBSDKAppEvents+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + AA63D3D104BA45645BC680122372C556 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B9C826D3ACB0D6DE3BF2E352604B1F1 /* FIRInstallationsAuthTokenResult.m */; }; + AA6736DF69C2CF0EC9B69B9806E2D85C /* port_platform.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0EAF10CDF3F1143EA6CC4CA03ABD6AC8 /* port_platform.h */; }; + AA721ECC2B36AFB7D9FE70C83E6D63F9 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4F5373795FD88443100A7BA4A94D917 /* Response.swift */; }; + AA8212516820A977AB05E6420BCDA755 /* strdup2.h in Headers */ = {isa = PBXBuildFile; fileRef = 102FBDCB199D7C551CEEAC518C5532BB /* strdup2.h */; }; + AA85BAB31A49FDDA2D2E2F98F96F5092 /* create_channel_binder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C56A8E8C3806C4028DE7E265DD9E52DF /* create_channel_binder.h */; }; + AA8CC807B68C6F7652ECB1FBC446A2E2 /* xray.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C5EF75FDC3E1FEC301913AEEAB559A4 /* xray.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA908034D13ECD72EE4053437EEBF22B /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = F65D3D10816018E6F9F38925381A38C4 /* sockaddr_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AA90C14AE5404CB42F3B5A69DF8423BE /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 254B6D343F93465B60BCEAC705BCE475 /* http_inputs.upb_minitable.h */; }; + AA953166DBC4F404EE28AB740D3D7AB8 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D644010FE420609F31B5405C47328D13 /* stacktrace_powerpc-inl.inc */; }; + AA97F02716812A0373650CFD3172707F /* call_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB9D64EB9452EDD78FF5B5A57BD24496 /* call_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AAA97544A22A18665D67812A2CD4CB32 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 53BA17D77F312BA72D108D43EA8683E0 /* metadata.upbdefs.h */; }; + AAB745F889BEF79611596D52FC0631C1 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7617462D6743F53C120D48C7860AA7 /* hash.h */; }; + AABCBEDAF169228DB631F544B5DAB378 /* FBSDKAppLinkTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = F3E7EDB69DA328842E99A198C4D080F8 /* FBSDKAppLinkTarget.m */; }; + AAC95331B8C5064F8B305C623DFD213D /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB0EB6CDC1816EDCCC05822F8A98945 /* crc32.h */; }; + AAC9C2C120C190E7CDA80D75D993737A /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 215BFB8F1B4D5D9C8D972BA8D02D8B83 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AACFFEDD019F10489E773DB897C6F889 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC72B81433E2C2C408A8E6C1BCCD197 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAD19C98B8AACD205E897943BF99D956 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0AB0B4C1E518695A802B56D04FD4FE /* plugin_credentials.h */; }; + AAD93466048A85A78F53FEA2C36A379F /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E06DA993B985D9911D49AEBDE1C7803 /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AADF6BBF056A14324314A1730760794C /* metadata.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 31E62FD6717AADE964E8C23F04AE501B /* metadata.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AAE0451CDD12C6B939C6639FD3565FD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + AAEF51AED21CB07ECB41AD1113CB9383 /* futex_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E0EE347DC630CAF1EDF839508945ABD /* futex_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AAFA42E12E9432C40C440BED0AB36667 /* SettingsProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631240DFB4275FACD668160DDFE5A07A /* SettingsProtocol.swift */; }; + AAFBF86E17174FF6DD3BBA2BB393D3EA /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = E551D546ADB7E328DFCC3A55EA8AA350 /* ImagePrefetcher.swift */; }; + AAFFEF21D530AD160A7A395BB5F6D347 /* TimestampDecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9657D819446393B86D812785BA5BBBA3 /* TimestampDecodingStrategy.swift */; }; + AB08FA05C79A14C8493600CED6FA413B /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76F20813CB4A45F21E64397BC4921E10 /* rbac.upb.h */; }; + AB0A62EE3700DF1F7058ADF310F6B29E /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 35FF661D8BBFC27ED88E1CF4F314C2E1 /* channel_idle_filter.h */; }; + AB0B82CB9D2868807839B034BFE4D27E /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A03CD22C1B833F55A60BB8C4C96ED7D8 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB0D5888CEC0133E8752627FE22AF944 /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EB034D6FF2AEBE7B417288275A41EAEE /* path.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AB0EA64E26574D95D9DB418E74E44B5D /* TZVideoCropController.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF7580EB6410FA6EF5D256B555B4461 /* TZVideoCropController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB0F74EACFB0818D1FD597ED7073F19A /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6B4411B3165A412F7531337B03E4CA /* struct.upb.h */; }; + AB1A9842A2025BDBB4681C4213CCA477 /* swap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD555EB8BE7918273A7E282BA85C8C8 /* swap.h */; }; + AB1EFA310E023E4ED884566121143999 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 295CF3E8963DD339EE09672614292DE5 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AB24C9AC8F5A2E47969B54E109F03701 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D90E0C45F8E535974B5F049713086A9 /* udp_listener_config.upb_minitable.h */; }; + AB2EF0FFDA92A03B584A9DCE83A5183A /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1900AE728AF76A5AE5AA5A013A31D4C2 /* event_service_config.upbdefs.h */; }; + AB301B7A5A399B0634559683650AFE32 /* secret.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7387EEB2D1405718267FCFE3E0B9B7CB /* secret.upb_minitable.h */; }; + AB38A5AAD8C7E780826A37C40EF5D847 /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C35296906AF23F6A79BF687595335EC /* migrate.upb_minitable.h */; }; + AB3A2C92872F6A81402E433D2D8866ED /* regex.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F1C276606452DCDE69EE6F07BB6926E /* regex.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AB3BCBF25EC5CCB70E833AF7A19FA825 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29DF28E6C626CCF25581197481D18B63 /* common.upb.h */; }; + AB3E2ABB01D7023DD3A4BE0DFD61115D /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE650DF3FC6FA05DE592693C14B88732 /* node.upb.h */; }; + AB4081DDA2CF0421C45949733989D0B7 /* sem_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 607F4F2D4AA478AD49A7FC6E0188C944 /* sem_waiter.h */; }; + AB47E3B7CF5E26D12E7CBF50CFE6F7DA /* stub_options.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7FC0E2E343DA748C6C5DFEAA152BC0A5 /* stub_options.h */; }; + AB493D3FDF8E5CFC3BD7BD7512C5D686 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F110E94F0DC15996BBCF72F120CAA2A1 /* wakeup_fd_posix.h */; }; + AB495AABF1179DE257105D363CE1D37E /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C18580E78FE0348FC138C447B1CE21DD /* empty.upbdefs.h */; }; + AB49F328D974E66D586E2F8073C35EF4 /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 324F3E45A8AFE27F9B40F859E76618B3 /* ping_rate_policy.h */; }; + AB52272CF0005F2F2AA8843C2341042D /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E024C808727C5291D48EA0F6FE16865 /* migrate.upb_minitable.h */; }; + AB55F4DF8B191BCA20E767F67830A718 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = F0356E06005588FB01FF24669F107397 /* extension.h */; }; + AB5BC3C24CDD0F04DCF957C9BC85DAEE /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6C544186DE2349E98EC4841306A7389 /* path.upb_minitable.h */; }; + AB63F8DC221E7564F88C8FFB35A6BA3D /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB26F04A31432CD0F98CCA8E85482355 /* rbac.upb.h */; }; + AB6662E4D0040D170C05B87C45E6075F /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC801DBFA3324D1B3C879E4974AE65BF /* address.upbdefs.h */; }; + AB693C4C2D6D61F969D5DBD489512570 /* batch_builder.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 53ECB87D5AA85271922BAFBF449FFCE9 /* batch_builder.h */; }; + AB6DFFBA61F2B71718D2209EB7D254E3 /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD0C93C6C1E85756E35232CE2947857 /* compression.h */; }; + AB70E82610AC8E1842F6E86A83EDAD4C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 494E8342AEDE0972E737B5B0DD3605A0 /* PrivacyInfo.xcprivacy */; }; + AB7417388462FCE5263D57E3D7033E31 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6376E62F11DBBD7D6A3C58A26999BE /* enum_value_def.h */; }; + AB79FFE8E2402D3E8BD40ADFE0874F74 /* secure_credentials.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 8EEFDA9696C627C0A0041DCA5DD4887E /* secure_credentials.h */; }; + AB801428BCEA1059DCE66544BEBB058C /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 074BB85F1C026260893779BB1306B2DE /* error_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AB80911985AA9810D43905CF6BB236FD /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB202C60676F680F2972FFE2D5A995B /* tcp_socket_utils.h */; }; + AB80C79D9228D5AF8B8E85AB62D8914E /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = F508ACE661C0CA13C8218370DB51AF2B /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AB8D89D92C96ED0690118A03E0721792 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF65AFD0AA973DCC123D7DEDE341424 /* NSBundle+TZImagePicker.m */; }; + AB8ED5B418FC7CE023B5ECDA1CA10352 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFD3073A0A852C4C6B78C3B431F2E5D /* map.h */; }; + AB8F4C648E59A9D5D6FBD4940AAAC564 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 1872C4BC867B4898EBB63176EFF738AE /* transport_stream_receiver_impl.h */; }; + ABA32AC6ACE25C3C7E1E41EEE01429D8 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 871A48672EF771FE7429B1DBA0AC8470 /* enum_def.h */; }; ABA75874E9FDC267345FB70BEC62FDB9 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AB5558D111F13EF474A73E88D75DF901 /* Photos.framework */; }; - ABA965A7878EFDDB92F035F340F9613E /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6A4208F1CC6AE33F12AB5C1189E3048 /* connected_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ABB7979288ED7258EE74392887DF207D /* unicode.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = D303310AED998DD4A92667AA0F563C50 /* unicode.h */; }; - ABB7F4253F97EA50024E4EB3964EEF50 /* cfstream_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 204A5B18A09FF3F1CFCECBD61653A8D9 /* cfstream_endpoint.h */; }; - ABBB60C17132B2129EB9A45020BD2863 /* service_config_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E68EDF258F08B208A4F59A36B3D276A /* service_config_helper.h */; }; - ABBF7D86DCC74573759F1381FE3DEB42 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 4E7943963A1ABB6BD689631EEBB9FB49 /* message_def.h */; }; - ABD0DE166E5E6267B49BF9A7CD09D319 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA34E8C8A8FD3645EE0875F4A265C4B /* chttp2_transport.h */; }; - ABDC843DF5BBD0A4359F2204D904D4C2 /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3033B6DFBCFF1678A49640A5B8A0210 /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - ABDDC6C2CEE697093A80ABE465BD0176 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C537D4BB561ACD0CA314DE83CFE7C2EE /* opencensus.upb.h */; }; - ABE544899F93493139FF03328E324915 /* tsan_mutex_interface.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 46ED79D34CC05037DAA8EF31B35FB3C6 /* tsan_mutex_interface.h */; }; - ABE9E41BC84B9DF4077D9880CD24ACAC /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D3CEC0C3833B25E88A3C7A0B0970CD /* status.upb_minitable.h */; }; - ABEC24E7B74BBD310CF2E1E95164C3D9 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B94482ACD1BAA2B73225243481A3591 /* lb_policy_registry.h */; }; - ABEED864C9698AF415E6AC7E71906D0E /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A3B15F514200A0C3103B20DBDDEFAA /* endpoint_components.upb.h */; }; - ABF8F8DC1EC526624185C064DABA199E /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 9C4D3684F554BC8D770981EB0E07C7B5 /* idle_filter_state.h */; }; - ABFD447CDE1C7F974278A90EA531A10F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FDAD93F00209D8C389C29999A069F3F /* protocol.upb_minitable.h */; }; - AC0154CF27F4BA1DC75874371DDCDB34 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 04E442AE9C9D320B25104EB8BF1124C5 /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AC02C3E08F88E682AE80863326417A82 /* if_list.h in Headers */ = {isa = PBXBuildFile; fileRef = A421F772C1EC941CC387BE7108568247 /* if_list.h */; }; - AC0691A758A831238615BCB79C9E1A1F /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECE443419F016DBEBEE6773E3CD4711 /* FIRInstallationsHTTPError.m */; }; - AC09BF2DCB964ECB81C1E6D886A91017 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF1A28AF14A42BA52BFBB2C03A5876A /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC0B32C0C88F79D3BD2693347948A7D5 /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 037560DA9B716322257A967D709CFA07 /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AC0F6A9312083492BB4BBFABE732801C /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DBB286C834AC9C61CECB22FF997F9D98 /* http_trace.h */; }; - AC10519C9EA462C16FCE51A78396D4FA /* internal.h in Copy crypto/dsa Private Headers */ = {isa = PBXBuildFile; fileRef = AAE65AF25515E97B47AF3638F6BDEB23 /* internal.h */; }; - AC16DC57B60FE7580FA0629981ADB444 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 829C862FCAC61C5B65D66543280F6C0C /* cookie.upbdefs.h */; }; - AC1948158134AE42F39DC5B7E897E4E9 /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 72E3E645F001853F3514CC741679FCEE /* router.upbdefs.h */; }; - AC2139CFA726CC23872B8656E4ECDEBF /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 7A31836D90E2EE5D9E47CE4AC2D252E2 /* accessors.h */; }; - AC2777A8492EF2555A5C97382C13BAB5 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = D141EC253C650BA4A69C0500324004CA /* http2_settings.h */; }; - AC33F6D4E5569EE4318EBB0ADAB1D432 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9B10EDD931371AA1F27BF21A680893B2 /* wakeup_fd_pipe.h */; }; - AC3C8B64E05DCC50EE410E0DBCBE2301 /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = CAF1125A760F02794A400E0C5C07A1B9 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC40E48B1F9C7498403A8F89D70D1003 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 73192DD14CFF2C4226F21FB31CDA00E3 /* FBLPromise+Recover.m */; }; - AC5761DBB91E1A02263DD1DB0F097CDF /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AB3EB4DF0474D85B420E506E85DCB2 /* xds_route_config.h */; }; - AC57D487695B4EE1DDA0C2BA61B6EEA4 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 39DAC8169FEFB7642CA9242D4F5E4CE4 /* file_def.h */; }; - AC5CF0B1B6042D0F0C4E7D9AD030CA60 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0585B94CF1B21DD374B96ED7AF14D2C6 /* backoff.upbdefs.h */; }; - AC5E1D6463C20E7983571D158D90649B /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 3FB4ADE843B527126F630AEB1414FC30 /* validate.upb_minitable.h */; }; - AC602CF71905B187234357F79E49202E /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D03FD014597C7BA5F39F49685A09A85 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AC6439931249F626A5EB6F2BACE7FE55 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 70A2D7C6F0C80068ABF84BFE596C73EF /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC6BAB2CA826592D47CE7E8274DDF119 /* stateful_session.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0A88A540EEB59E912076519F5DEE7A /* stateful_session.upb_minitable.h */; }; - AC6E17D2231766D1F439D15AC57621E6 /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = 0329FEB953D7FB4396E13A125BEA521C /* xxhash.h */; }; - AC72964329FAC03F3C832825F1372091 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D53BA40B7C7A6962999091978AD6D4 /* status_util.h */; }; - AC79A0F3182A99B4BCB5555FE6609B85 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 529F18E50990155F5D243C404A412698 /* completion_queue_factory.h */; }; - AC8887E1F34F3FE2D498F03C5B126CEB /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 1975375212597D88CEFD9713A6727491 /* extension.h */; }; - ACA119465DB944D6914F5EC1CB87CDB0 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6073F589F4AB9F8E838B08F601F147A6 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ACAE71056A1CFE4181C456678EC12249 /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D286124B82F835FE28D3A47496603508 /* domain.upbdefs.h */; }; - ACBF6AA41E2AA4ED2E7AF6C116C20B47 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FF0F1EE50F51DA485948BFB966440A0 /* backup_poller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ACC525FB46C9188955C36BC2F14E0535 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 08826C4F17DBFC87C91473CD784B7C3B /* protocol.upbdefs.h */; }; - ACD03900A829282D401EE708D0AC009B /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CAD2C718340086346B800F82CEA25E /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ACD418FB91AE40106C825A6C870C6E63 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B88E0826F4D6B99E3700EA8D11303104 /* status_code_input.upbdefs.h */; }; - ACE634A9283FDDD966FF2B764E74D45A /* SessionsSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BE3A28EEF0B84B90F17E229F0C32F /* SessionsSettings.swift */; }; - ACE6A6E2886FF3581C3F5F9D97DB3B3A /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14A0064000565EF4278A230F64BA54C1 /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ACEC549F63461B3ECD5A5C8F8D7519AF /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = C15D77034C4C497C977934CA2B074882 /* status_code_enum.h */; }; - ACF0B7380E0528C874830F103B18244D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03417063D7390AD042E1D760D319086D /* UIKit.framework */; }; - ACFC68D00C830C82D2E7EA3E383D3433 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 7642E133E72BD6830A416F9C2238A77D /* endpoint_list.h */; }; - AD0008F159B323757783BD8D734469EF /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EA0DE0BCBFB0415B735D9F59AB8E43 /* alts_credentials.h */; }; - AD02EA946273E29DE604A628873471E2 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 90A8A908D411B21EA15520CC594D3F87 /* xds_bootstrap_grpc.h */; }; - AD1341B894FC5374342D5C3E33A265A7 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B85BA075A32E77AC9B46823F9AA2DB /* slice_refcount.h */; }; - AD248D9CC36E4DF7F02E29B471D009D3 /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = DD5016D60FAABCB3CAEB5A5E90908711 /* call.h */; }; - AD294D9F1D22D9C7778948FFCEC9804B /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D710466B04F429F4760395A8A428F24 /* trace_config.upb.h */; }; - AD43A45FB3D89F4E00816DD9ECEF8026 /* atm_gcc_atomic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F5A882A004C85A7BD2AD3BD083AA622B /* atm_gcc_atomic.h */; }; - AD449A1BC8CD8711C063333A9A18A80C /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C8FA1DB08391AE112FB9321988BD71 /* metadata.upbdefs.h */; }; - AD55B952888F27B1887E0A56F270F26C /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D4276A9182CA15FB9E2C4CA021B34F43 /* api_listener.upb.h */; }; - AD63147267E44F9802794066AE86DE3F /* context_params.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F8E60B4B4A85F762C38C25AEE31F05 /* context_params.upb_minitable.h */; }; - AD6A964B1F002D8035EDA8C64ACC4601 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = C20DA16B390B06BAA81E2AFAB7C687C1 /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AD6CF325869825A1CC1A099F47017CE2 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = A3770F98D78AE8E8845B4B4413E5DB0F /* walker-inl.h */; }; - AD6D6107F5DCF16D5F3717567293EEAF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D6005FA3740E47FD53677C3EE6C177F4 /* internal.h */; }; - AD7679D48A91586AB2A61813660DEF56 /* buf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 26E3F3EB921C216CA24BD2F75154336C /* buf.h */; }; - AD81E189C52B8747DA073A7DE0DDB528 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = B147BC8F2062C8D65F2F866A2E44EB92 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AD91FA8E3933370A10DE08C33E0BD7B8 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F37CCFAF44306C7193337F9CB8C343C /* migrate.upbdefs.h */; }; - AD9296B382A0DB558AE886ED9BD8E415 /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 02974820FDAEE61436D133CABCA0EEE0 /* certs.upb.h */; }; - AD95B69E6A215E2369E0E9DD23E25A6A /* FIRTOTPMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F9B3DEAB31B40BEACD8432BC9BCCF4 /* FIRTOTPMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADA0C2E3B392DBA7F9C6BA21A2F2F019 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = E6025EF17A97E73DBBFC2B9E8E1DC07A /* ostringstream.h */; }; - ADA5770EB653A0EC7C61EA4F18D01B53 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = 79D5FE1212EB83F0F52F770F9C87E246 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ADA66C111435EBEEDF7F3F3349AA2496 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = F189C1DB1B380A2723FE8DA48A5220AF /* validate.upb.h */; }; - ADB3D1E133FF12C524DBCADE7A693A4A /* shim.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E4C8B35ACCA6D12E460117B8678DCB /* shim.h */; }; - ADBB1F1389D7ECDA083B9EF585C64A1C /* lb_policy.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 05BABF2A88DE8AC6AD54C0809A1C3D69 /* lb_policy.h */; }; - ADBF72BC32A611A92FFBF803C047C7EC /* zconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2910749493940BFA09C87A267F956EB3 /* zconf.h */; }; - ADD3416E1284B6055765C11777493A28 /* http_protocol_options.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D945935FE5B90BA76DB73D7BE0D12F /* http_protocol_options.upb_minitable.h */; }; - ADD698B3B6673A8E9E9F6AB9272BCD15 /* atm_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 5C0CB34C524F08BA1A10BACBE8407F61 /* atm_windows.h */; }; - ADDF53DC143928531C10B712077E94AA /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = B72BA1334F58A99C1B4046C005847A4F /* xds_cluster.h */; }; - ADDFA359C56334E27C945FFB40B99802 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5E239F02DEBC851CAE617D4F4A30D0 /* address_filtering.h */; }; - AE059E946A0C645947D16AB2A9F29FDE /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B235EB0FF176ADCD735F6E06B3370586 /* range.upbdefs.h */; }; - AE07FA1337D3A2D40677B0690699B6AF /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DCA765B443B3F5AFEB516E95C3ED608 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE10320FA4C349C578F1268A67BDFBEE /* internal.h in Copy crypto/pkcs8 Private Headers */ = {isa = PBXBuildFile; fileRef = CCF28902184B3DE8CE38324C7B8E093A /* internal.h */; }; - AE15A620E227CA0102B9AE9ABA82C9EF /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D5CE350FBF2DBC0CF8CCC1C5B63474E /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE16304E1CE3F4ECDE15016C79B335C3 /* marshalling.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F0151ABEFD0080529EC3943EFCA1892 /* marshalling.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AE16B0DF12E063442E83B45230207161 /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C20F999F457E62DAEC67EB2013A171E0 /* string.upb.h */; }; - AE269B5F9F95B5416C0CFF0565109459 /* def_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8CE9F3DA1F55533F35D78615D252B6 /* def_builder.h */; }; - AE29A8B01EF8681FE32004956E5A28A8 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C62331A49FEF5B78C366AF4AEC34A5C4 /* frame_rst_stream.h */; }; - AE2BDA6D449B13523121E1A9DC59A215 /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCCD1A5FADB7D47772C839B7EF6B0F /* backoff.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE2EE2EA0CF671F22E7556B650EFACC9 /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 709EEABC698AA539288C30513BEAE340 /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE30B256790B50DEEFF6A3B1E507C6F1 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19964ABA08F6DF9471DA52962B44773F /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE3F9F969F240A8FCE9CAD251CCBE656 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DAC3B66A3F3F6464FF427ED3E4078D7 /* resolver_registry.h */; }; - AE3FE281F6015D82930E8B3AA0AA3A02 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 4FA2B92D97F1F33BC52E0E89110C7831 /* insecure_credentials.h */; }; - AE46665A46BCE98804A186225F309028 /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB205E45ABFC8FCA0893D71413829A6 /* default_event_engine_factory.h */; }; - AE564A027A23E8C2C173C658ED44E87C /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34399B6F4297B786274A740C42112BF9 /* nanopb-dummy.m */; }; - AE5C497AE4503E300A2E6C59CE1ACC5D /* number.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 24E6A0B0AF09A63F0339124A717F22D7 /* number.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE6C7EF70BDDD318C8159CF6D108789B /* crc_non_temporal_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7A93A58DFA88698EBA95AB68D078B20 /* crc_non_temporal_memcpy.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AE6FFDDB3979038117E1A359A674B6DA /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 444F9E86E85072103EF6C6FCF575B273 /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AE72EE12FA3CB043FE40CA2D5F2A7C1F /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C8B216EDED742F3F88E10F39EDF0FAC /* promise_like.h */; }; - AE730766449F5775687FD321D1C85F94 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = C9108CFCB84B8D97CB8355A2487FDDDD /* url_external_account_credentials.h */; }; - AE7756CBA8A6671E132B13463320C00C /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E914C1AB3867B426CB1076E298764D6C /* regex.upb_minitable.h */; }; - AE88B11C950B09704931F3CB2C10715E /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 188348958A839C00E100BFDB7507BE09 /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE8F0AE17B067A0BC69E36574277A581 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = F42319F1107A7B2295B20F7E7A3FA7E8 /* validate.upbdefs.h */; }; - AE99F3B4C220B22E2CA00288557AA0DC /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FF151CB997F69162A18D10A7283C87A6 /* tls.upb.h */; }; - AE9FD8DD44A9864FF8B9D2528D2298C7 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 705B37E7BE0FCCE290FAE9CBFD1A740D /* path_transformation.upb.h */; }; - AEA089B701CF30C642048D4163A65623 /* load_balancer.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8503A1F8B8E2FFDD5F490B76FB383EE0 /* load_balancer.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AEA49D5084F9EE643B74000F93FA0341 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4BB4654BB09D877B222867D2415D84 /* b64.h */; }; - AEA6F5D5BAFCB935D687CFB8F8A10200 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDBC2FE4BFC4F4F83B2D0F0AF1E2CC5 /* struct.upb.h */; }; - AEA909A65A61B2101D849CBDAD3B543A /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C8383471CE9356ADEFAC9AF109224D1C /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEBCF751C3E336F2092E1DB97790D9D4 /* rpc_service_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 04DBB9F1B05AFEBCBA403120A4F4DE43 /* rpc_service_method.h */; }; - AEBE4B7FEC844085FC8B91AD12222246 /* hash_policy.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B984CBCEEF12BE83C876EA6F3C5E6B0 /* hash_policy.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AEC3B7DE421A615FAA4AB16498C69D5D /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FCC0D18882EBB05A32D736011691FA /* construct_destruct.h */; }; - AECB994267CC01C72E4878FC33D0D666 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4381FF76160861B8837B6EAF8D846F5D /* ev_epoll1_linux.h */; }; - AED813266D77508101732E8FE9DF2126 /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89125DDD119BE0FF7D43870C8458C4C2 /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AED929566C61C2D522A462DE52C54D4B /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BEEBDA8F8D1ACD510203875AED0A7C2 /* FIRGetProjectConfigRequest.m */; }; - AEDFE2307879E6A46569D91BA904497F /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF4191C7CF957CCE4132212DA1F6AAD1 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AEEF931ADD7C1281CFDF798E45CA29AF /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE1E26D8854F1DE9DE3E859C91094E21 /* health_check.upb_minitable.h */; }; - AEF4E74CD1198F2C5433B6DB61753CC2 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 23AB3EB4DF0474D85B420E506E85DCB2 /* xds_route_config.h */; }; - AEFC78276A5F3EB5134B7E4CDFAA91F8 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 523B1168418A40F254E68E8EB0DB380D /* slice_internal.h */; }; - AEFF24ACC6154ED4B2931D9B8EB8AB44 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 47CD7BF3E22A1E0605846860AEBABFAD /* init.h */; }; - AF02B4EB0D9087B36359060B06DB3812 /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A79122586A318457E7A9F1A44BDE53C2 /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AF1BC6CB36EA874ECCDAD9CE6DD51FEC /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A677245B2F09B0FC161FFA4D1E25AEAC /* cluster.upbdefs.h */; }; - AF29D0D05E4E481AE762326AD0061AB7 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 044AB2672741D6C2FCA20CC8B63B696C /* wait_for_cq_end_op.h */; }; - AF2BF62767377FC0D34324881862CB6B /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C1780812A548FD1C7CC9A1B66E9D7ED1 /* pollset_set_windows.h */; }; - AF2FD6DFC2D8DAD8C30B1248BA0EC2B5 /* client_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 984B52616B4E1D7F648AC3A0E08742D6 /* client_interceptor.h */; }; - AF69918A4941373873C566510D981B12 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 51ECB29329819D15F8A4E58187D0C770 /* GDTCORRegistrar.m */; }; - AF6CBD9B6E0DE41B2F221C13CE63116F /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB5656641F8294B71DCF77A0276BDAC /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF6DC5A8D3C0A1CA7FD8A8BD4C0E8E62 /* str_join_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F4ED2FA3A0B4580AC4D2261D66A7DB98 /* str_join_internal.h */; }; - AF6F6ACED4E5511526852E20D9AC5453 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDDE82223DD40E15D4E8D9283683A5B /* rsa.h */; }; - AF8BA8D01E721253ADDFD656196ACE09 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A46BB487CD517176F84857B23947E23 /* security.upb.h */; }; - AF92E08BD2E396CE7D515625C9636DC9 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = D3CEA986BEE0630DE935B5BD72EBF53F /* alts_tsi_utils.h */; }; - AF96F8F7416853C3039A897FF6E2D475 /* bad_variant_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 3490402352A8F49AF999964E757FA378 /* bad_variant_access.h */; }; - AF994E8BFB89C97BB60CFC9612A89D9F /* commandlineflag.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7710CE0A6DFBC3A833EB8A4DF7816EE2 /* commandlineflag.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AF9A4932B6D0F4F753AC5A536BC256DB /* datadog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FECC76A9AC9BE86B3978BF23831C2B1C /* datadog.upb_minitable.h */; }; - AFA45BBADB566E06B3728AA026BB0C6F /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = C32B62C808355183D0EB0B124102FCA5 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE565339A4F8EFEFBD647484D54857 /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF66AEE3106F8E7A69BF444AD8E78F5 /* GDTCOREndpoints.m */; }; - AFAEE9EC6534DE2F69C1FD33B034C92E /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D8D342EA24DDBA9E0B28601C6A6DDC /* KingfisherError.swift */; }; - AFB9BCED523D19EB265813B4CD6F42E3 /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C84EAF901F8FFCE5692A83750DB7CAD /* percent.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AFBE5BD72B1842518146A0404EBBA52F /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD9EA1FD2FFEABB7AB03FD37E506B9E /* credentials.h */; }; - AFC01A877AA4ADF703094A8EBCAEA2CA /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 78C26D3FDA1AC5516063E69DB14D2665 /* xray.upb.h */; }; - AFC65B4B54BEBFAE9A16FB6AAF4F6DF0 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 1CA5FF935C4CD6686F0C0466E9ABA34A /* plugin_credentials.h */; }; - AFC93D2FFD49DF5395902D3A0B0DD904 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F32BD03B96F34A0BD8C469F77B89B871 /* thread_local.h */; }; - AFCF9A0F2EFFD545CE23D912536B5043 /* FIRPersistentCacheIndexManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E98C0A7EDA425994F025AA5A46F17C6B /* FIRPersistentCacheIndexManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AFD4E073181F4E6451F32BED22DB2A8B /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 422050A9B8FC3DD6BBC1071002702FCD /* metrics.upb.h */; }; - AFD7DEFC86D6E2344C0F83A435957667 /* prefetch.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFDA5E489683EDAA72BE5A16AF92078 /* prefetch.h */; }; - AFD89073EA4504FACEAEF17F832BAF02 /* prefilter.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 6BFE7D9ACA45A57C70EADB50E2043CF4 /* prefilter.h */; }; - AFDBB225BBC260254F26D054ABE5A0AE /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB675CA57F41F80A88EF5B1B349F25B /* xds_common_types.h */; }; - AFDBF01472F61857953534110849AEAB /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9AE6E44D3E5F85CEEC6BFD73D8D1144 /* metadata.upb_minitable.h */; }; - AFDDF8E8BC4879C1AA28228FD19C5C63 /* thready_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8658E4F8900E2A0709E57C6A27BB0F /* thready_event_engine.h */; }; - AFE3487BE963D2BDBD154F23D2B73747 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A32C036DD3AD5A5D7A56C08C8FD12A2 /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AFEB367C85E87D45BD4597E110A0C751 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9F5FC482D074D516682182045CE37573 /* certs.upbdefs.h */; }; - AFEDB975EC14E84B0D9E018B628BAE7F /* FIRCLSOnDemandModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0451B9E2379E68A456E903A0B500C22 /* FIRCLSOnDemandModel.m */; }; - AFF45A4018CB33F23E19C8D4417008EE /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 73701278B95DE1E3012ED799337AE831 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AFF4A477E70D4DBB5731049A84D5AFC9 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AD04EB140A67DF02B22AFA4848538C /* alts_security_connector.h */; }; - AFF87674F5F005332022007FBD5FDD7B /* enum_reserved_range.c in Sources */ = {isa = PBXBuildFile; fileRef = FAF0275F283793E8E447F42B0D56DB29 /* enum_reserved_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AFFA3001E302E19228C68C3D3921CA3C /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 23898CB1023773DB2F9DEA4E0FC3FD45 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */; }; - B001BDEF579878F3EC9DC3BE67FCABFC /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59B46DB14F43E64D95DED2C93E82E6B2 /* status_conversion.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B003A65D933A2CF2CA174B3D5B87E3B0 /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C37B701028AEB0AB8E0DC872DA9CCA1 /* sparse_array.h */; }; - B00550CEA6186EEE727F43B612C30612 /* backend_metric_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D64C6D5D43AD22D4B4DD6B8863316F4 /* backend_metric_provider.h */; }; - B0056B7155C67D73FD9B9075A6222612 /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23815C7C118EF39286F46E14E56C948C /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B00EA6A20CDE4A3FD06DA571278D075F /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE3902B533722A230C98831CACB6E30 /* sensitive.upbdefs.h */; }; - B00F93D8A382C4F7E51D9CF8A88080A9 /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 189D9A8B34E46284B81135E8937DC22B /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B014263775B1AE040E31E06D957B8856 /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = ADBCD08925735E31B400A6264B07A6EF /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B0176C9823BC61A683C34EC397B3549D /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0740CC3E1AE2275F7CECFB9577719DA8 /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - B01E8CA8F8E2B12DEA71E3CFC8341076 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5971D827D010310EEAF0F8AE350D4358 /* status_conversion.h */; }; - B02A3926106F8D1EAB1B823214C34786 /* ratelimit_strategy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C4D490D7EF8331D8A0056C11406A9D /* ratelimit_strategy.upb_minitable.h */; }; - B02AD5F494EC86B27BB589B7532B257A /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = B284799AF25F8EFAFE22F828B2A7C919 /* timer_manager.h */; }; - B02C0BB01A4B80D4D6707CE78B2E47F9 /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BA0DEEE5FAC175AF8E727C2C5619BEF /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B02FC803D89FF5CCBD3B12C1D56D3110 /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5BB32A2A8BFB2B42ACCC7721D821A35A /* outlier_detection.upb_minitable.h */; }; - B0324070E2C4B88A70C023D5D6827BFB /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 61A4FDBA4505C67A79C8B355F0749E4F /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B03749462C31CCE06ECABDDFC69A1401 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E37B1E1F9D6C995F864BD2A29DFAC156 /* sorted_pack.h */; }; - B03B5579590D528CBA6D11FF638BC2AF /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = C888C731A8BB5A88218A788E136E80D8 /* Typealiases.swift */; }; - B03DEA890F591839F4846D8CF099F612 /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6C25D39F9288DE48217D6E82B87AE05 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B04B20F38B2426A807160F56D7A27DD8 /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D405B1AD966B4899BEDC691282579C1F /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B04CA5A486B42D4AC07418507F9641AC /* crc_cord_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 0465D1FE918E89C7FCCC85087D9C16A0 /* crc_cord_state.h */; }; - B04E919E521E6B80A1416BFA42B61415 /* config_dump_shared.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B396C9D3C9E636813733B659E94755 /* config_dump_shared.upb_minitable.h */; }; - B06072FCB6D325699F88111CA1B6EEA8 /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD65106EEA4E3AB2396DDFB11519FD5 /* charconv.h */; }; - B07277BD0315744600922D6D07F20F8B /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 71FA7BAC9911ECABB27E3AC83B632264 /* xds_certificate_provider.h */; }; - B07F5590236E2BC0801191BFD4D33D98 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C417A51FD4DE174B5F8991B6B3D9051 /* grpc_ares_wrapper_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B084213553879A56DF30DE999FF8630D /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9F1CD8416469A153FD9BFA9C9A001F1 /* pick_first.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B087F56A21F4D6C3D53F374A6B497378 /* PromiseError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88F5271C080592BBB7B50ABE3EEAD584 /* PromiseError.swift */; }; - B09E1912B3817E9338B14CE2DCA81677 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 9164DA1EEDE7B52B1D659DEA1823860C /* local_transport_security.h */; }; - B0A184C9E28ED709BD23580A9180E3B0 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 31DA78A2B0770421731710E0720376B6 /* FIRSecureTokenResponse.m */; }; - B0A2E13FC3BD85392FA98FB5556432F7 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = A0A422B305FAF9295EBB5625197A1F02 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B0A3D0046A46D1BCBFCD9E4940BEC13D /* retry_filter_legacy_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D147E8B27B2BB17670D0FECCB8938287 /* retry_filter_legacy_call_data.h */; }; - B0ABD7650C9E975B5B187A794554CFD4 /* server_callback_handlers.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 05A84E2D9BAE85816BBC401D95A61E3D /* server_callback_handlers.h */; }; - B0AD6AEEC6B8BF594125579B580D6950 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 7250AF0CF9F7118D7D07AFEFA04C95E7 /* server_address.h */; }; - B0B18D4702F66EC223C6C701FC2E6118 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = C60EBD02DC4B04EAB5A194FCD1881FD0 /* context.h */; }; - B0B9E53AF20A6D29868D49EC517BBDAC /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 729297571762C5DDDBBC99D175629301 /* frame_ping.h */; }; - B0BA0625B8C906FEDEA5E9F5B6FB12A5 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7AE7A9CAD2ABF357A9901B4C6FE9F0 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0BBBF99A3D3870DF2DB185925FC6A49 /* health.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1272E348F9989322B0AB5CF2D3118F58 /* health.upb_minitable.h */; }; - B0CB9D62F2720E5A9B3318C715A197DC /* crc32c_inline.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 160FC5E28CC9C995F284163D93EB65FC /* crc32c_inline.h */; }; - B0CC657F6E768999287EF080402C09E4 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE3D8A5040F1E8C81A2DD7C8993B558 /* decode.h */; }; - B0D30D2FBFA479B52A82BF7DE2EB2080 /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 029903066773722AF0DEA2BC89F2F93C /* resolver.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B0E60F0B255FFCCFA6D125D5B134D640 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 134CB4CDAA98768B33C5872A9E382FC5 /* FIRCLSExecutionIdentifierModel.m */; }; - B0E882788A9801B52B58570305553388 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C4EFDF6A16E27202682314213CC216 /* xds_listener.h */; }; - B0EB80AF663D2B63E66CC480E2A61E27 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 476E123DFE3164535E4EB3F69923AA3E /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B0F16FE856B8D0011A47B2896EDB34F5 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8F226D5868966212C8495444C09AFB /* tls.upb.h */; }; - B0F86638BBAB3E3E47F3EC3331C8B7D2 /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DE1BC870AED8F95F7A3AE8EEEED1F0B4 /* udp_socket_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B0F9AF638025AAA7574273B3FA67D719 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B5648D2A64C89BC0868077DBE0C33B2 /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B0FA6D6E514B7307D3FE4030A2667D6F /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 631D6D2E8CC414F7E1A409B79DFE4C51 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B10019BA846CD84137A7126DC0FB74D3 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F63BF407685F3E26B3810890154A130 /* ssl_transport_security.h */; }; - B10ACC72CC8553B70BADA237E64196AF /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B13B5FAB3C49579B12AC88B29E51BE /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B11FD9EDC67E475C754CF507E8A67603 /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = EEEABAAD9E73FD2740E879EF4CE368D7 /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B13857197021AE00D8ED13EF52707B89 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD4A92713F66DEB8509583890827916 /* metrics_service.upbdefs.h */; }; - B1477C4786BEB51D747604496E6CB56B /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 566A1EE22B77DB78AB6118992654FACE /* clusters.upbdefs.h */; }; - B15134965DA41402996A8C8FC0D1C452 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = 65DE18467693B644C90E0788AD701BAC /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B154A21876F66C0AD21EDE1D3EF27699 /* retry_filter_legacy_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 1120696D43B3ABE7671A077E39486C4F /* retry_filter_legacy_call_data.h */; }; - B1578EF0C8A62EDA89D81383512BA212 /* swap.h in Headers */ = {isa = PBXBuildFile; fileRef = 70DF3BDA1CA2854B8E539256608A5302 /* swap.h */; }; - B15AF72CEBCBCBF686993B961C0FE481 /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD2599E05100156878DEABB7C1B8A30 /* IsAppEncrypted.m */; }; - B16336A5BFFEA9BE9F8659E005E74988 /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FBB08943C9EFCBB045A6D4221D4CA370 /* handshaker.h */; }; - B16766B54258CF5555EF9E15D6733C2B /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBA8CD3A7488734ACD7D5CAAF109496 /* raw_hash_set.h */; }; - B16BBB2AB2F27C960FDDA7DA053ACF88 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4620B0A502479AEC0FE2534697000D /* http_connect_handshaker.h */; }; - B16BD1AD0043BD0B2A37EF78AA60BE78 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 87FF84D1414980F1FBA71D99C3F43C94 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B1735452201DA5EE3026AA40E1879B0D /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E22B66E1AC7DABE3DD2AE1168A053AD5 /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B17B7B5F795B189D3F3FDBA5175F37F0 /* LLViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BAFE90FE536A177E8157AAA5E6D9AED /* LLViewExtensions.swift */; }; - B17D933C8F8BC6A4F91AA620D7D7A870 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 812E775948CA544B58B9816BFD7103E3 /* ParameterEncoder.swift */; }; - B190E23E4A69A95CFEB8291F2E3AC7F9 /* rls_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FDF14D6B98E2FE2F144CB6F95541C56 /* rls_config.upb_minitable.h */; }; - B1A3A4F4A0492F1224576E7BC5D524C7 /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 704C8F3179B2E13AEF8509341B3FF9B3 /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B1B5DEB603D76DBEB244D2EE3FA293FF /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = AC88FE818AAEDD41121C337B83CC9587 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B1B8A8423084E11165A64F07BAD13495 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 709F5F4E5D479CDDB0A2AF787BB0A5AA /* listener_components.upb.h */; }; - B1C20FEB85658F2EF78B073854447DC1 /* mutex_stats.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E24E2BCA5981D4F6CE2B917CF19F19EB /* mutex_stats.upb_minitable.h */; }; - B1CC0E82F9E29331662281F0BEFB7EE8 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 97266B6C234294648E5FDB1C52BBD4D7 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B1D9812C0B412BD74E2CB3232592011C /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BE30EEF12306F0A5DEFE5AF66AFB17 /* listener.upb.h */; }; - B1E0A2886640FE769E36043491BC261E /* cpu.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 866CCE696961152E67069FE2DD292DA5 /* cpu.h */; }; - B1E62EC72BC2652C541C305C34D699B1 /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDE56EAC91134005F7AC286D7290DA3 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B1F04A4790E9AEDA878A1A25B1A18BBB /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E2797AD5652626B5A6077742D03EA7A4 /* fault.upbdefs.h */; }; - B2029B62C44F0C72ED201F518F70A388 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 222B5361B20C3CC2F2DC81CB9DBDAEF2 /* matcher.upb_minitable.h */; }; - B205C533815AF5CF5AC1D7328BC93786 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8D7D1DEB8416D21FB66BE0281FECAB6 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B208DD82CF2E4AA87BB7705FBA150C4B /* link.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A51083FA8BD487C3182E5EA8151D926 /* link.h */; }; - B20E5CDB96E6D4D5574157BC373F1AF9 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F86596D72E1D41483FD703079552D969 /* jni_utils.h */; }; - B20FEFFD2A23F9987074680DDAC82CFD /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9F8680DA681EA0ACF4724E648A343995 /* bootstrap.upb.h */; }; - B2182CC892AE93493F2D71CCDF902123 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 2674071F8CEF25C7C9395B07678334AF /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2295195AACE4219A18B8D73AE25A74E /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 367D36B5B5F7A428F816FE68F34C06C6 /* http_tracer.upbdefs.h */; }; - B22A010F313242886ECB798C0B9D0146 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 2AC8672AAF1E85FF166E8FD52D1D4776 /* parse_address.h */; }; - B22F7F16940468910D614AD117AB54FC /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2AEF1ADD34C178FD349D5ACEDBE937A1 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B23B978058C732C528A6FD975E8D1D8C /* poly1305.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CC1B2D8E81F571D79794A259A964BB85 /* poly1305.h */; }; - B243AA849B1D91FFA111222D1292C177 /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CE4C141264DDDACAB7B96397637A7D /* collection_entry.upbdefs.h */; }; - B245299311C19E3141AA49E030CD0C51 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; - B24D933F6436EB6E06814C4BC9298DCE /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36028D163EA6A9DF9893EE590AF0D49C /* server_info.upbdefs.h */; }; - B258C64EA63E0F2EEDF7AFD90AF742B4 /* ctrdrbg.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DE00220AEA70C47490A53D408F3304E7 /* ctrdrbg.h */; }; - B26210717556A5BE23CA56DF34388E7A /* xds_health_status.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E9A4964E854CF697B328D04F7E8DD7F9 /* xds_health_status.h */; }; - B26788C488E0CB4A41B2FE97FCE38A41 /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 97572B642DCD61FE1CD96E6D0F994BF3 /* rls_config.upbdefs.h */; }; - B2689405DDE71B7D8180DFC399132097 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA6A57A3E5090508A8E61C4AA5BE92F /* resource_locator.upbdefs.h */; }; - B26CBABFE9C3D7C26EA1419F908194F5 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = C54F2919849C10B8592EC5F87734035F /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B27455692B77D6DE957F7DFE9A06197A /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = C74DB6726841E441F0258BF6A4E58FA0 /* nonsecure_base.h */; }; - B27572EDE2B344386A0A205FDAB6F669 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB7CFCBF61B9A322B7455375C50F9F8E /* health_check.upbdefs.h */; }; - B27C39F1C538B833DFC1BF4998DC3BEC /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */ = {isa = PBXBuildFile; fileRef = FBFB034D942D6AFFA7007C1F74354E36 /* dns_resolver.h */; }; - B27CCDBD31AE5D655FB0D81F0E4DDF87 /* ecdsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 23833A4BF9BF6742757DD734773129DE /* ecdsa.h */; }; - B28A364CE85C6A71A5A9D2ADA9AEA708 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 410B61C24139671163C90E2B00699737 /* metrics_service.upb.h */; }; - B299F9A647B6ACFD89506175EEFB3B6A /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6D89DDC58CF9F7DA4F14CE9FB90915 /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B29A40E328ADF04A8C2182C51F254087 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D846D2DBBC8F09A563A2AC4E3641AC /* promise_factory.h */; }; - B2A3BB8500CA46E0D0327ABDA6AAB867 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5016D60FAABCB3CAEB5A5E90908711 /* call.h */; }; - B2A3D795262DDE95222FB45A0CA21A0A /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CB2AEA71555882C2A45FA512EE9237 /* FIRCreateAuthURIRequest.m */; }; - B2A801094BD33DAD83CEFF877724E933 /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 40842C5ABF3BEE0E81B1D2911603415C /* get_current_time_posix.inc */; }; - B2B3DA79431D89848826EBE5CF37573A /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D2F29B22AEB5A76BE66421D2D7EDB /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2B83176410ADB66FF8A1EB857E8F1A9 /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A8251B09CAD5F1E9B8BE996128FA6DD /* http_status.upb.h */; }; - B2BB3A52AAFD3FF623A7E5CA152DCD1D /* status.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 670387A0DB7884DD1F1B9AE7EF2B30F9 /* status.hpp */; }; - B2C12725248C0C267F7623101BE522E8 /* trace_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FA4AE4E4AEEE52C4F3ED3FEE4B5E807F /* trace_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2C68E383FCED577E284AD495EB8A979 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6073788E49560E9C1B89FC14B4D7A777 /* file_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2C87276253D1F0E6EE68B9670AC034C /* NetworkInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FD0BAD52987948A01F3D9271138399E /* NetworkInfo.swift */; }; - B2CC192BD4E910CC73C56950F6B7E25E /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54C6B58E7F23D33E2466C8648C7A1274 /* quic_config.upb_minitable.h */; }; - B2CC68DB54B94BE51E9C7818578EC74B /* GDTCORMetricsController.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FB475FCA94C7C365039878075529A9 /* GDTCORMetricsController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2CF3C51B4DAA24B03402BE9524B7538 /* fors.h in Headers */ = {isa = PBXBuildFile; fileRef = 1797F21634F70AC2464C57050CA5CF52 /* fors.h */; }; - B2D5D3FE7704A691338A2445A6F879BA /* mutex_stats.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DFC85CA2E24FCB1F2A528BE6EA49B2A1 /* mutex_stats.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2D823C6CEFFACDDB8102E5E4D6B6D18 /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C53F2BE338B4F6E2A28992FA0A33D47 /* server_context.h */; }; - B2DAE401D8E55B21D1EB82243FCBB48A /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A87282BA00168A9B93920B6107A3538 /* backoff.upb_minitable.h */; }; - B2E0F01CA0C69687A0328F768E23A4CB /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BC9CBD2D974C970CCF9EEB674C6621 /* outlier_detection.upb.h */; }; - B2E112D91CADF988F409F83C9FE4D965 /* udp_listener_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDB2B5408726AEEBAE0A77A2048A56D /* udp_listener_config.upb_minitable.h */; }; - B2E4316F53B2C04C31B352A13412873D /* cord_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 61527BDE29FF74826AC19B82E2C8CD57 /* cord_buffer.h */; }; - B2EC4F5EF41ADF9A8F53600AC396EE79 /* cfstream_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 31651C337DDB5256B4F100ABFCDA9714 /* cfstream_endpoint.h */; }; - B2EE6737F00D057A428C376CCDCAEDDC /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 773D2A43CDC789EFA46F28A62ECDDAA1 /* jwt_credentials.h */; }; - B2F1470E2E4DA95B1423B0A704E96A8D /* low_level_alloc.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D45C48A83B7121819E1688B6D9E4B68C /* low_level_alloc.h */; }; - B2F7A5ED726A8F25659D747D4FF391DF /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D8AD2384C418F2E9E55B0C2D2248AC2 /* sync_abseil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B300D0654A409E1A0C4E9C9499B5FF60 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2777ACABE1F0005EAC1DD719D70E0E /* combiner.h */; }; - B301D356FC28482B0E15182CAE2F7EBD /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3881E0475DAE22F55C1018E409196394 /* path.upbdefs.h */; }; - B30388DC0C057C48D3DA9F8BB302AF53 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1056B0418B7716ED8930702D39AC56F2 /* dynamic_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B306787B4E4BA209B6C1046A81B4292D /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 59FA8D900B943C1678E75DAB6C9BCD58 /* socket_option.upbdefs.h */; }; - B31096B2F3428E445C73BBEDEE50A134 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 12269A09350B211D1D4ACB44062055C5 /* quic_config.upbdefs.h */; }; - B323593F5E97524744E872CEFA2C1F5B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; - B325DAB41DF3C2093D146C3BC33C6D01 /* opencensus.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDEE03624F3ABFE3C4699D9D991C403 /* opencensus.upb_minitable.h */; }; - B32C970566DABDAA3CB5E16FAAC1F64C /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CCB68B49E4528B833E3D2A09600B2B1 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B338E112B928D44C7899F83DDC4F1642 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9CACE432EB348B27424E3D2320A5338 /* GoogleDataTransport-dummy.m */; }; - B35CBEB0104D7FFFDF4BCD8A2B9C9CDC /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 735450F672E18407B4BCD3878A6593ED /* backoff.upb.h */; }; - B37073CF538EEA8332335239ED55FF75 /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A70BD25C21328A26461B8BFBB2BA9B36 /* event_poller.h */; }; - B37DECAF2FCF951B2C6784BA4F89BEC9 /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 6B23C7ED5A87F875967BDA21FBC7AA0D /* arena.h */; }; - B37E6BADF4AB2E38A9B1C49642B10D3E /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = DCE1ECE6485C645D52E3847C3EDB7DB5 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - B3822843178BBB7ECE681142D8E91CBA /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A8A908D411B21EA15520CC594D3F87 /* xds_bootstrap_grpc.h */; }; - B388C93715C0A3B8E7EF3967AE1441B0 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFB7CD65DEBF28C41B7CD61D8E91910 /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B39C293441F31B43C9F0B14A6244956B /* cpu_aarch64_linux.c in Sources */ = {isa = PBXBuildFile; fileRef = D96E12830212B75832155CC8549B2DDA /* cpu_aarch64_linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B3A3FDB4B9EF66155C1EC6E78CD7131C /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 735450F672E18407B4BCD3878A6593ED /* backoff.upb.h */; }; - B3B72EF77568175381F037C31BD8BB96 /* lightstep.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D41D7E20BD2AD96EB9F9159E7E3629 /* lightstep.upb_minitable.h */; }; - B3BB2D7230FB32ECA926DAD058CDBE78 /* RecaptchaInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCBFA8D3510208DD2CFD26121786CF7 /* RecaptchaInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B3BDEEBF36DF5CFC222FCE77ABF7B39E /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 789D8960DDFCB53FBC176AE7F9D4A10C /* subchannel_stream_client.h */; }; - B3BFB2865497B7F7FAE15C8C4E25A69A /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20122F08C97E7973EF2D680E77646A03 /* domain.upbdefs.h */; }; - B3C19393A007CAB29DF3E2E7CFCBAE4C /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 4BC96290F440688833A9AAE504097BB1 /* extension.h */; }; - B3C2C1BE80CAFD5BF94564EA59F5FDEA /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 647F18AE81EB7B94400A3EE8335F499C /* futex.h */; }; - B3CFCD69D91FB65007DE3A31D1889B56 /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B660FE4B353C4FEF6E5E3E58276C609 /* FIRPhoneMultiFactorInfo.m */; }; - B3D1E7B88CD2662DAA3100CA676A4AE7 /* try_join.h in Headers */ = {isa = PBXBuildFile; fileRef = CF61CBA82DF5F7A04844E76945DFCCCA /* try_join.h */; }; - B3D6D84CADE5CB469679E01102D701BC /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0910C9806A29211A8C1FA34E81BE12C3 /* tsi_error.h */; }; - B3DEC14A6DD548855451F497F08F88FA /* unscaledcycleclock_config.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B790F159512E0CEDF88595812FAAC3 /* unscaledcycleclock_config.h */; }; - B3E34076419F6892B16406519B72BA21 /* CollectionReference+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C627B69D67B384A1062421C727B35751 /* CollectionReference+AsyncAwait.swift */; }; - B3F3C485ADD02BACAD6FB31FA741C4BF /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63BD8F89A85CA70583D00AACA6915C5D /* call_combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B3FFD713C9215C9C554D409BB9D1FA7A /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D28D31D68376BD4488E418F585237F /* xds_resource_type_impl.h */; }; - B401B35209383068A172615C0415F560 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 50915976216DB1C7C3CB58E21FB94AEC /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B407FD7E636AD5A1705CA94425BB8049 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8A2154B8378D0D84ADF1C0C42E34B60 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B408DA77C39258EA240073BAF087B1D2 /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 5A51083FA8BD487C3182E5EA8151D926 /* link.h */; }; - B4197C04CB3005E06C2ED8702D5E746F /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CE5AB2D00BC42F6F6314E060A612B2C /* cel.upb_minitable.h */; }; - B41A529CC6D2FFCFFE473F117F9BFA4D /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 00BA2D12B4083EA3261EA23BB481BA57 /* fault_injection_service_config_parser.h */; }; - B42170D4C187E24D9456D20143CD239A /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 89F55148400B26F33C142BA446D0A17F /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B422ED99BC31CF6F328EC7321981EF92 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 5815FAD03F2E911F058529FEF856262B /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B4258712414C2E9E345CC9BC03AF9B3C /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F295BB9CE1CC20543E81986D7E000D9 /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B42CCD14175539C379C25C2903E8FE44 /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = E47D90E1B806EE67B1DEA1F6C7ACDB15 /* default_event_engine_factory.h */; }; - B42FC4DD7E64F557B5B8E6A4037E6287 /* GoogleDataTransport+GoogleDataTransportProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B398D7F9DAF5742A47B0095A04F8019E /* GoogleDataTransport+GoogleDataTransportProtocol.swift */; }; - B43017FEC99D227D4CDD81DD2C27D9D9 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2F1F11EF69B9822D9AE92BA14EF26D /* ConstraintMakerPrioritizable.swift */; }; - B43FF39A396874A87AFD6AE7739DD283 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 4381FF76160861B8837B6EAF8D846F5D /* ev_epoll1_linux.h */; }; - B440550E363567FD31AA266F444367CA /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5823AAD291779E478D23EE4ED14755E7 /* fake_security_connector.h */; }; - B442391D774AFCD83543AF5EBCAEF6DE /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EA4419CE289B8734E02543556B9A0385 /* range.upbdefs.h */; }; - B449AE92B22F392A45A950A13020F326 /* server_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B303A5C1D13F5BC3E0BC6E640492FF05 /* server_credentials.h */; }; - B44DC3CA533408F10A9ED9F6B4E36ACA /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 514BA40D662C3702D90428853968AF71 /* bin_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B453080BC70B0DB8E93A4FC267ABEFEF /* reflection.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 44A16214B3F2615E0BD65AD632713FB2 /* reflection.h */; }; - B45B2E7709720624412DE195D5E1EC98 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AE0F8B68EBEACD09E471B19186128B02 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B45F651C83FEE1F7C7E56AF03F048C29 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = E1498B9726DFD9FF0BA00209B233420A /* layout.h */; }; - B4662D51E840684BAAE17CFFFA72EE05 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 39FC6D7D0A2F55571F827BA81DF0EFBC /* file.h */; }; - B46BEF0BFD5C4E62ABF20FE676593F05 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AF0E66BBD1E346CABB54F502EBDAF0D /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B46E240C56F3BEE2538909CC8F65CFF0 /* number.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3399446665F8D5AAE2C8F70307229976 /* number.upb_minitable.h */; }; - B481250395DEFC07B67971A7A49F01D7 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 191F47AF36ACA071CBE778F4656CF72C /* builtins.h */; }; - B482CF357D834AB4B90AEED556884A7D /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28571AA2AA642796D6FC33142DFF24AF /* substitution_format_string.upbdefs.h */; }; - B48A84752F077AFD944056FC7B405CB8 /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = D7487704062C461F26E3B9F0572CAB9D /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B48BDFB759BD2E9BFD1776EF040DF47A /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 3B7BE00CA778E215D245166FF7B02280 /* descriptor_constants.h */; }; - B48E0BDA66993C2BA90A364C560E209F /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C697EF6BFF30BEE3207C1EBFDF2240C /* load_system_roots_supported.h */; }; - B48E97A861576B555FB23546E3C1EB6A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - B48F8AC8167CD4FB9A0F1AD02AD38A8B /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 68B6A63BC3D115EDFD3D88BAC89D449C /* ev_apple.h */; }; - B4907D95D1EEF3678E21CCA69503A9D9 /* proxy_protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4348B363AA6783618F03462C598D8FAF /* proxy_protocol.upb_minitable.h */; }; - B49147DABAABFA07476F82FABCE41543 /* nullability_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = AB3838BE90465412CBF84986BF6610DF /* nullability_impl.h */; }; - B4932EB46EA3FCD7F01913178FF32DAD /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4A939104FE03B00E960F1067FEA3003D /* timer_manager.h */; }; - B498811759CF217572E53D142AF56545 /* memory_allocator_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B4B9445261B17DA5A06BC42A4645F8 /* memory_allocator_factory.h */; }; - B4995A55A53AECDE78B558EC892B4A57 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = C038BB4467DCBA2D7F72A05FF197A4BD /* authorization_policy_provider.h */; }; - B4A91914A7FBC68A03AF5130C320D27B /* rbac.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 31009C402EA97D28DCA984F64FEF86A7 /* rbac.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4AF7A0BFB8DF6515980EEBC2F39C3BB /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7441A5B899D5BC3CE16CFAB9B50D8DBA /* dummy.m */; }; - B4C11110989164C2F0A1A517EF66941A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - B4C46EF9B3BAEC8F4B143933777641E4 /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF776B8EC2B81C33030358C75E2555E /* message_reserved_range.h */; }; - B4D3978DAA5546B09208DF922D35A951 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 98E382C8400749C05DE2A7EA46F46C87 /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B4D459ED5D262B61D8C28942C6CF0C66 /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB5C6AFEEF55C47DE5E84D7C6420B05B /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4D8CFF5FDB6A9F2E1F83DC171B7890F /* string_ref.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1232E14C1DA296B1CD500BB8DE10CB3B /* string_ref.h */; }; - B4DEC0C739FC62E75D3BB696FDC1ECE5 /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = E0364BC79A4355D9E17463ED12A4B6F3 /* filtered_re2.h */; }; - B4E54B065510531BB00A0F8756264D7F /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D6177006512C355314C4520CE8300FD4 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B4E966D195E3C7E1E31F016B978DB86F /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EDED170EDEDF8EE718D4A4BBAEF0702 /* collection_entry.upb.h */; }; - B4E9D366425592C4F6236FDD877F2E36 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = C76722EAE959F35EAF11A9C8F13E2B23 /* FIRFinalizeMFASignInResponse.m */; }; - B4EAA003033F07B39DF8166535EBF73C /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E546DCEDF5ECD6C45B1BEC0E2F4A55C6 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4F0F24383E8200003606B9069DF8D79 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EFF90C108636B555C6205470D5323C5 /* scoped_route.upb_minitable.h */; }; - B4F599FAB8AF97167D4FEE2A06E50D3E /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 1232E14C1DA296B1CD500BB8DE10CB3B /* string_ref.h */; }; - B4F8FBCC0A661D074AA31F84766BB359 /* client_stats_interceptor.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 5A2DFC0E2BD9E9010DB70F09AE5301A1 /* client_stats_interceptor.h */; }; - B4FF76882D39B720177327C0926CDB87 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 27F13B615C240933AE43DF59AF26FC6F /* oob_backend_metric.h */; }; - B500985447110C2ADEC68301583D5C92 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7873B0A0AF3EEA61C3127FEFF6972AC8 /* metadata.upb.h */; }; - B50E153AAEFAF2DEC1D162CFCD1F868F /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA008321352369CD72CB38BD9B2F615 /* tls_spiffe_validator_config.upb.h */; }; - B5138857C3FD4E6E985DF9E97B56CD4D /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1C7162F2014886D43898DD8F2827D19B /* lockfree_event.h */; }; - B5222B793336C016C958A2E034A54E44 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = AE0ABA6C039FCBEB3CFCE9CE1D897159 /* metadata_query.h */; }; - B52CF163F6AAC2C593E03E3A4F1121B8 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 383E4F563D7ACEDD5692B726601FC918 /* def.hpp */; }; - B52DDA1C5508C33C8ECE1FF9665ADF6D /* server_address.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 7250AF0CF9F7118D7D07AFEFA04C95E7 /* server_address.h */; }; - B53F1C49B9A8234E0BBBA7EB3B816532 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DCDB82906116EBD875D7BEE0161124B3 /* duration.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B542D1A64F26F0D4BF09D72836B0B541 /* udp_listener_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B13534074AB72464697C11E2B5F28428 /* udp_listener_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5438BC75F642883BB655919A858C3E8 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = BD91921AFBC294590C0320D87D439530 /* insecure_credentials.h */; }; - B54660BFAB0C5EE1D8ABD640C088C855 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FF099BCEE42C47A7B7A5E64CC0739DB0 /* thread_local.h */; }; - B550917D9D2481FA665B7553AD106858 /* ratelimit_strategy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 34D68A442D4B2643C3D7FE81A71BD769 /* ratelimit_strategy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B552B874240857E8677E56DC3E13830E /* FIRAggregateField.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A0F926758707A3479472D629BE4339 /* FIRAggregateField.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B55B8A24D65C9DC5D812A66B12FD60FA /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = A93E8F5C08A81FBB3F21A03664EF0582 /* siphash.h */; }; - B55D8990F7B5D7B9BED9DEA58140DD82 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = E27629BF1C4D3584C2CD3C23718DFBD7 /* opensslconf.h */; }; - B55F49333221B3514138B0E400E1B9EE /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DA448C95CD91697F515E7F61F607640B /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B561ADF6E0758FD42F033EB33C00FBF8 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CCA80179E72B13B61D17AE65D5BD4E /* time_precise.h */; }; - B564E3479B1BBCEAC473B7D1147B5089 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9EDBF1A11DA6467FCD22309D006F6134 /* endpoint.h */; }; - B575D5B4B0FE9CC2C0C358BB39270B2C /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = E56412EEBFE01D84A924C23C63C00C56 /* gsec.h */; }; - B57BA46C28BE4965C56B8A4A28B78C3E /* call_final_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E9E1757F0C7774A4BC0E13D43A3905B /* call_final_info.h */; }; - B57F41399136EDA1057CDC4B2D030CA2 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EB8CC18BED98A0ADD5D29587DC432E /* wrappers.upb.h */; }; - B5900C1903EC7677046028B90754B767 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEEA0277B34F94795549724440015F5 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5A43BA1D01060804A60E42BE8A51E9A /* udp_socket_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 07F0A8AEABDD6FE95D6609A0FE847B48 /* udp_socket_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5B2B273E1857230BFA005036AFFBCAA /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CEF232C1F59BD57815D3684D515BDF0B /* cookie.upbdefs.h */; }; - B5BE1254039B15A14128057D1F56D2FC /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F938F65EFE5A3CD3965B2534461E05E /* rls_config.upb.h */; }; - B5C029E00D993753583FFFB17C885DC1 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B96A84D6567AF3DAFEA5F0D585FD7E0 /* encode.h */; }; - B5E40F68218868CA6BC14CFFDDB60290 /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67E7EB2202587F6BBBFD3D2EBCFD64C5 /* substitution_format_string.upb.h */; }; - B5E6CAA9307D0F0DFB19BA0EC497CCEE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 4254059D146289C1FAA0284CC41EFCA7 /* thread_quota.h */; }; - B5EB8BB3E7A42BAAADCC324D982D673A /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F8FCCDB8B21DF87268D52B6616B364 /* listener_components.upbdefs.h */; }; - B5F2C4A270D0F213A5E5BB9719D9578A /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37BD8E3F08E502A876ABE1D59738CB68 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5FF35D4331934DA732369E7D6835DE2 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00F6F3F845FC155C25BE619DCC272B81 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B60652F341F354420F5E1B24FB40D93C /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = E956232565EDA2ECD017943128003A49 /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B611FE199A02E90C52F7B0D206D65A7B /* proxy_protocol.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9038F3949E837EAE5F7260D0A5A1BC14 /* proxy_protocol.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B6184C81E865E852E9FB802377CE42D7 /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 57ADE961A9D3C60F438B92C935ED87F7 /* directory_reader.h */; }; - B61B44AE2F9382C5E52A82C854E27EE1 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D787E52F867D44C4B1F83691D348E0 /* migrate.upbdefs.h */; }; - B62312E806F0EBA801D9A0780830469D /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1EFFC39A61E4EADF61BF8B75579481F1 /* range.upb_minitable.h */; }; - B62560D8DC1C367D77F61A1EBFA37570 /* desc_state.h in Headers */ = {isa = PBXBuildFile; fileRef = D0179DAED2E93AB9AD16C3EA4BB6B6AE /* desc_state.h */; }; - B6281A333E082A55D27B3BDB29C279B4 /* no_destructor.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6BD2C52DB3196B2109A41A2246F50D6A /* no_destructor.h */; }; - B629839CA6874964F162E610927E9FE2 /* dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFB034D942D6AFFA7007C1F74354E36 /* dns_resolver.h */; }; - B63370374E7303D53EA4FA98CB7FDEF7 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 48A4E381CF9AC187A27618384EDDC74B /* listener.upb.h */; }; - B63779FB2882C6D1B95FD8F044841279 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 0413254134D0F7CC1B14052ADB4F6520 /* ref_counted_ptr.h */; }; - B64536AEAD654CE714009D4D53F9F6A1 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 56DC3A306CD654D2458FAB8662A5781B /* number.upbdefs.h */; }; - B64F36DF78CFA68939955001B41994A3 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 93C87994E263577BA663E35A4393B445 /* decoder.h */; }; - B65C1DC10107B6CB23A2DFB2147B75D6 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74C5956682DC4E270CFB0AC290322015 /* extension.upb.h */; }; - B65DDF22D7CCF0A010CD63F8005FBC8E /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 14FD740B10535F9B76E33D73E0614B5C /* outlier_detection.upb_minitable.h */; }; - B65E874A74F3AEAC9DB409E27612A310 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DD00716D5031E50820F3268D3824497B /* ads.upbdefs.h */; }; - B6644F5E2909478CE7875586FEB07FBF /* endpoint_addresses.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 5C709546DBBCB67F9E90D1BE42AE0F1B /* endpoint_addresses.h */; }; - B675513A75251C6C6D69625BAFF539AC /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = D205A31C985F5CBA2C15F071ACB59DB5 /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B67EBAC9B1A8A66A1F07254E8E286215 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9457543ADD65F1933ADFDF9BC7664195 /* rbac.upb.h */; }; - B68E3A9AC1FEE2D26CC03BFEE82198CC /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 3E9FFE7D102D24362D1C68CC364EF739 /* trace.h */; }; - B68E77085E0353287D72D105A04B36BF /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FB3735C6F76766779697371BAAB8B52A /* backoff.upb.h */; }; + ABB10D7C01D7FE00882BB30BCA12DF0D /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E488EB2A4B341F5CD2DE2725EFDACC /* backup_poller.h */; }; + ABC68C5BD87F3B91436EC2C75C39E93F /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 3665F2F60E68BD0D6E45F284E3D1F952 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ABC80CA58A704387A9783A4C5AA89B2C /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 423B462BF76BAE2ECFFC13E9236F1A3C /* http_inputs.upb_minitable.h */; }; + ABD503C1EF5667C3EE7065CDBF0E7D30 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 41A1F3B0E50072AF92CE6FA179977569 /* useful.h */; }; + ABD82566A0C9D6CDF3250866CD658614 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90C354953523A1EB871010E37480EA52 /* hash_policy.upbdefs.h */; }; + ABDA7155D0D65C2035F6D4919AD538F9 /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 032CA1D87CF17D180672A991E4DCD552 /* ads.upbdefs.h */; }; + ABDD4B71064C74518F7289A772D21757 /* dns_resolver_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 93272251B488DFC4CF3B3EDACAC93C87 /* dns_resolver_plugin.h */; }; + ABE04F001AE926E8576C0506CE166343 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97C9BD2DACBBE8DF3DB30C0DD571264A /* collection_entry.upb_minitable.h */; }; + ABE36BEBBA458271F8A9F40EDFA39E12 /* metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4DD645BF4E481DEFF61094968F99252 /* metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ABED6E688924E8322FEC61452A97EFC9 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C207BED72A28306D7CF2BAABB1A1AA /* server_interceptor.h */; }; + ABF0A77BA73C86ED4E02CA1E1078CD34 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 889E22D3A0EA8D6268A349F2509E39CB /* inline_variable.h */; }; + ABF91B5A8FB839D699976E39193E84B1 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A719634F8520A6CCCED470DC9E45B3D /* function_ref.h */; }; + AC001ECC5C4C60456ACF8721019EFA7F /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0331BC77DD6E8AC4F9302A286251196 /* config_dump_shared.upb.h */; }; + AC030CE41C7A5F4F95F147FAE52C6399 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2491CEE808522A722F6127329A321A /* dynamic_filters.h */; }; + AC09BF2DCB964ECB81C1E6D886A91017 /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DEFB5693085AB49883EF7EDDE68DF6 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC0B3DE63CFDAEEF79154B24808BA6A3 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 8179F3DA416B249C6AAF518F3341A726 /* array.h */; }; + AC10519C9EA462C16FCE51A78396D4FA /* internal.h in Copy crypto/dsa Private Headers */ = {isa = PBXBuildFile; fileRef = 847601FD0FDCBCBDDB4361A8A2054B5E /* internal.h */; }; + AC1FBA58CFEF2441E8FD8AE1DC741C5F /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 889249B1C360C5E3319D39A1680FE9F0 /* binder_transport.h */; }; + AC2FC14A215F0F4BD20AC05EA6E0DEF0 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 65B3E3991DB0BAB4E8CD65AC2DC95321 /* frame_settings.h */; }; + AC3B37220F291E00BA3DF9804B9CC141 /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9BD488AA18A32470D5D6F8B023473F /* proto_buffer_reader.h */; }; + AC3C8B64E05DCC50EE410E0DBCBE2301 /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E5943F36583A255D418CF5866B930A6 /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AC41E07BC9888234AC6D1B9D14199C2F /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 802B11C10416A30440FDCE3DCF203296 /* bad_optional_access.h */; }; + AC41E906F505A908EFA3F92CCED71C88 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = E57F895AB305777BE67D86C1630260FB /* message_compress.h */; }; + AC420304D6DF3C1A7EDEC2AC67EFC14B /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B51792033CC9C90A1DA32C2565941B6C /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC4861BD877A29B29AF160137B39C185 /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99BB0A3C0D3306FE96B15359A3A4146B /* inproc_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AC56B7DE6000DE3ACDB4E32C58E2F20C /* udp_socket_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 462BFA9BD4AAC20B74D100C51E871B96 /* udp_socket_config.upb_minitable.h */; }; + AC5D175DF375068A524682C6C17129F3 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 97B85B7A2A6C0A3B8913CA2AF9812B6E /* versioning.upbdefs.h */; }; + AC5DF47686B8F0C813AA31D3A9760607 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B2A447E7B5AD0DDD1328ED916C11C3 /* lockfree_event.h */; }; + AC61B115135C0CC01F9D34B805829FCD /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97B8CBFE239901E1B90BAD0EFBB832E1 /* cel.upbdefs.h */; }; + AC6439931249F626A5EB6F2BACE7FE55 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F1A38176E08F6CF3FB3620966222F89 /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AC64C8EEF05E64E8443F9F16C8939CEA /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3B035ACBBDF40E70337E41D7C437224 /* extension.upb.h */; }; + AC65749FE9AD3016FC0210CCF281DD1A /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C55BE31C96F11847DB5D1B11B49EB4 /* FBLPromise+Catch.m */; }; + AC71E40CE5623D1CE157F33682A6A640 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 672178A044A61662869DD710AC77AA3F /* validate.upbdefs.h */; }; + AC77712F4B5C4BCD92DB88E117DEA240 /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC5ED95F71848BF8C48DA7068E1B1B0C /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AC86E5B32E5DF4A4A898B927D2F7DCBD /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD7706A688679C2D5A2708E1F64BBFA3 /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AC87F4E7D03ACAC2DD8214610626093A /* endpoint.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5C37CA2358483C1F8D39750A9FFFD7 /* endpoint.upb_minitable.h */; }; + AC91CEFA08275AAD2C0C942F6E614A56 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = D0ADDFC0C027A82A2D44555A82901645 /* handshaker_factory.h */; }; + AC95E5CC9D652F27E95285A57843A9FC /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FB5D68244698A65B3FAAA6986C8C53 /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACBB2808AA47EFC83522ABAED2FC8866 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = F2807656121FFB9EF4FEF4B3D6848AFF /* syntax.upb.h */; }; + ACC4C5696CFA5B546829441F7386EAF0 /* native_posix_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AADA2F3CEC79FC707991AECEB37FC86 /* native_posix_dns_resolver.h */; }; + ACD79FD1FEE1E8F62EAA93DFFA989BED /* FBSDKGraphRequestPiggybackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 858EEB414D1F80D14352D03237C0A677 /* FBSDKGraphRequestPiggybackManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + ACE6A6E2886FF3581C3F5F9D97DB3B3A /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8556F356908C833DB657173C36500C68 /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ACE89C5214A9918FA5CAE09CC910EBD2 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B269678607D0E40A0A57F85B76C4B3F8 /* backoff.upb.h */; }; + ACE8ED4775D6F31B0F244FB4141A9B9E /* strdup2.c in Sources */ = {isa = PBXBuildFile; fileRef = F1FAFFE50E6359733C4F9640DA29D577 /* strdup2.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ACE8ED7BA2ACDBCC5670D89285A83C2A /* status.hpp in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 3C59EB1034149C9E184B2E02082DC021 /* status.hpp */; }; + ACEA152B0EFD810832BDC82EBD1E6C84 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA767A5B019EE5DCEC3C92B68FAECC66 /* fork_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ACEF52DDF76AE2FF52FB5070391285E3 /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 528351337315E599B2016AD9F8946F61 /* subchannel_pool_interface.h */; }; + ACF833D3841F45F6B2C1F55F3A159D73 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00A3C5A76EB6325C1F532F998A4958F2 /* tls_spiffe_validator_config.upbdefs.h */; }; + ACFC204D5FBE11EC59ACF3E02EB575DF /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = DC962AEE00FB2CF7639E58A04739C255 /* ssl_session_cache.h */; }; + AD04E3FF668EC2F2384680016023C059 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA4DFEC6BF80ECDA91EB16AA817D02C8 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AD1456414DC9A7538376F6E3A33C1999 /* xds_cluster_specifier_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95B5DC82E9A726B959C23675F953EC78 /* xds_cluster_specifier_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AD18CED419026725E42DB116AE006565 /* semantic_version.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B4EFCAF13EB229900B38E7815576DC8 /* semantic_version.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AD1C33BD351DD76E81C28F5BFA63B48D /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7C0AD40E94A5F47C50D5D647C6913D /* no_destruct.h */; }; + AD5058ACA2A1FFADA584FAEA17BA4E7B /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E554E5F0B728EA89B84601D5B349DF8C /* percent.upb_minitable.h */; }; + AD55E8EAFD50866D6F163603F27690B1 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = F94AC9A68B3D44B473759B2480EDA1E6 /* file_watcher_certificate_provider_factory.h */; }; + AD5795BA60B07073F5F699BE722084DB /* validate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA9163169B750F4D7E80D87F3D49C18 /* validate.upb_minitable.h */; }; + AD66B4325C9A25F58164A2B3A7136060 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D440B2E6801BCEA83BAD6A1A26A319B /* range.upb.h */; }; + AD69E5336FFAC34B1610DDCEC4E2C97E /* gRPC-C++-gRPCCertificates-Cpp in Resources */ = {isa = PBXBuildFile; fileRef = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; }; + AD6D6107F5DCF16D5F3717567293EEAF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C460D8F2FC2299D6B46C6844DBEF179 /* internal.h */; }; + AD6DB2655824994286E50291E2D9C69F /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20C20E72C597C0BB8CEC8911F32B1D73 /* event_service_config.upb_minitable.h */; }; + AD7679D48A91586AB2A61813660DEF56 /* buf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1F0C7DF062789407CA949CE6E368A1D1 /* buf.h */; }; + AD788B0DDA352B08ECCD61E067C35B5A /* http_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A8F132C3AD49230F66401D44471C4B5 /* http_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AD7B0E250E7519B193E91D29E6CDC4EC /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D788DAED0109D5E3E422D5243B2C1EA5 /* packed_table.h */; }; + AD7FEA7A60CB1942AD82469187A3A47B /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = C2CF22CD0E7E1DA209DD8D89A4ABBBC0 /* deadline_filter.h */; }; + AD81E189C52B8747DA073A7DE0DDB528 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = B511F98F2ED53CBF2D13F3913FC57CD1 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AD8EED2AB7DBFE980B366F0C3D5D1141 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 61D10A5DCEC213563BCF20F44B0ECC44 /* string.upb_minitable.h */; }; + AD95B69E6A215E2369E0E9DD23E25A6A /* FIRTOTPMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF03E03E3C6A3784224F32A42A5E2F7 /* FIRTOTPMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AD9ADAE42B82E60F632BC7B322C78D83 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 97174F925538EF9C11ECC9DE94112BE5 /* service_type.h */; }; + AD9B7F0D10C9BE588E48423554E24EC4 /* stateful_session_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 428264C34AB09708C9E16D39160F516C /* stateful_session_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ADA4BFE3C0C17FECF03A9DCEA3704831 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCEF48D8B279114F23E33CC3FB6E0CF /* alts_grpc_record_protocol.h */; }; + ADA5770EB653A0EC7C61EA4F18D01B53 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = A75A7A8A1A067BC1A9B9D660F3A64065 /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ADA59C1451E2F9DA8F5D2E32E1253CB8 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = AA29F1DE0A895F2ABC09AF7D8647F873 /* async_unary_call.h */; }; + ADA71BAB1C0E43CDCB615415A67A1694 /* fault_injection_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3771085AF8634D3C8F43661BDD4BAF69 /* fault_injection_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ADAFB5DE03D0D937166E0FDF2608AADB /* batch_builder.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5086BE4A9AD459EB294B2490D0D22974 /* batch_builder.h */; }; + ADB42C6B2B03FFC85489013FDE428F16 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A6B42EEC7C6B56E155F31B5715CDA6 /* grpc_tls_certificate_distributor.h */; }; + ADB4F1BBD9820105E1E75553C565CF7D /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 617BB1D4AA36495D64B6086CB6B64622 /* config_source.upb.h */; }; + ADB650BA2D354E1550E236C8986E483A /* types.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 5BA07169A088B333584848676CE1711F /* types.h */; }; + ADBE4B3261CF0759DAD2E67547705908 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB5C64ECA8B37B101CD6F142F9DB2BFA /* stats.upbdefs.h */; }; + ADC36E13A7B10839B1195CB98D3BF99A /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D791CDDFF9D6D48697A5EE052AAC3CD0 /* status.upb.h */; }; + ADC769CE5EF71A1E9E530BB300463CA1 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 06DCF0387213F42D0948FC358218A985 /* listener.upb.h */; }; + ADE1AABCE8D8784E3B91E6883B65561A /* propagation_bits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A6D5DC7BC3E5D72E2F4CD63CF029D674 /* propagation_bits.h */; }; + ADE259B570F57BDAD89359491B7679B4 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 0E7391A711BF5EE39FE9662D4D6E8385 /* alpn.h */; }; + ADE5DB01D4EE8BF38C79D687AC93766E /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DFD641B2CDF6831733CC7093482CB3 /* httpbody.upb.h */; }; + ADE6DEFDCAB64BF7C1B04C2AADBB813A /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B76DBB386FBE02D557237B3DE20258D2 /* cookie.upbdefs.h */; }; + ADEB79C95A0BD7A6C6EE6B2DC45EBFEB /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD101297BBBCAED54D13DFC8979DAAE /* thread_quota.h */; }; + ADEC9CF2035CCB1678F306F1F96DD00F /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B22EF5245C41D697E7E898D45404CB7 /* extension.upb.h */; }; + AE0504C56804726A279DC5303ABF46CA /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 828A71BE037125559073E603850BD4F5 /* opentelemetry.upbdefs.h */; }; + AE0ADFA03C62EFAAC4ADD1C2B9983F30 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39A0E1224EAFA57D181005B00AEE9931 /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AE10320FA4C349C578F1268A67BDFBEE /* internal.h in Copy crypto/pkcs8 Private Headers */ = {isa = PBXBuildFile; fileRef = FAABAE4993ADF51C023CFC5AF0F92CB9 /* internal.h */; }; + AE15A620E227CA0102B9AE9ABA82C9EF /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCA898BD66DF4D1B773FBF76AE82464 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE2A9799F9721F4F6F34ED3FFED2A594 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE650DF3FC6FA05DE592693C14B88732 /* node.upb.h */; }; + AE2EE2EA0CF671F22E7556B650EFACC9 /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 88314B2FBA37493978F3A233B513A2EE /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE3A933066963D6147CD3DD7330F4D4A /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 967E7E1FB1B926DBBA81A886C93AA827 /* validate_metadata.h */; }; + AE3F743C43EBB8C2457959DB0F8E7E77 /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC2E2D2715DF67684E2D8E303FA363F /* channel_creds_registry.h */; }; + AE4D80FF6721793965E2FD02D7F6FBF3 /* FBSDKAppEventsStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A46A6B731E626FEF46ED4A032349DDDD /* FBSDKAppEventsStateManager.m */; }; + AE5299BD8BFC6A3D503A563646184FFD /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 511C159DF4F6A0239DE6331ABF01FAA3 /* typed_struct.upb.h */; }; + AE6586C76DE001365E2749BB7FF870E3 /* security.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C00B259E52826AD3F13BE1DDDDF944 /* security.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AE6F04E6A1C163B3A80F73E18A21C57E /* cord_analysis.cc in Sources */ = {isa = PBXBuildFile; fileRef = 542E3DA2273C43DE803AB874A5B81F1B /* cord_analysis.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AE6F27D846AE48D3DA5631F663C05B70 /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CC5E51E7A7A4CD4B849A753885E9232 /* route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AE756201176BCB44A5BF398476B37F4B /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 65053BB224BFF882072F0D5683226C15 /* auth_filters.h */; }; + AE7748E977BB72FFBEC5106446023195 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B4113007AEB69B48B4FCCEBDAC80A67 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AE8018FC76A814399B5EDF064E79D34A /* FBSDKGraphRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 316EB68CAA0830A23AE5710DA4DEE90F /* FBSDKGraphRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AEA740875723415FB3207B7ADA2A5C64 /* endpoint_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 674B42053A4F7F539FA7E878CD60FC3D /* endpoint_list.h */; }; + AEA909A65A61B2101D849CBDAD3B543A /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB5C9EA4B78F11644D1FD3E3BC641EE /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEB5F44A5B38F21DF60D71370E89DF6A /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0216114A85FCABB47BF9B606F49ACE /* alts_shared_resource.h */; }; + AEC46A4D9B2DDC3E9280D1E1E1A32112 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EF0B27F55BB258640B04D83A3B2736FD /* frame_goaway.h */; }; + AEC57045254E05F6B6D08B80344CD515 /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB0BD8DD0BBA4DA59E13633C81537BD /* charconv_parse.h */; }; + AEC859ADB5E3F7489A628C1E70005519 /* simple_slice_based_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 135F23549C9C46CAF62BBEFDE84EE03E /* simple_slice_based_metadata.h */; }; + AECCE129B9E45C1908B53975E900AAB1 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8F02067850A7B3435ABF30B4D7A1A4 /* xds_client_stats.h */; }; + AED39DB8FE9CCA290130EB277DC73EFD /* tcp_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1894CDE8AD4DE294E7F6A2D68FAE1C9A /* tcp_tracer.h */; }; + AED813266D77508101732E8FE9DF2126 /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 507CF2153BB9786B5F44235B08E8DE72 /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + AED929566C61C2D522A462DE52C54D4B /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F21BE0BF55B2F0591291154AB8E8031 /* FIRGetProjectConfigRequest.m */; }; + AEEA92A4863A0EEF4C86ED8A97007F1A /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DD099D0E9C171AD9F70C096029E241BD /* server_info.upb.h */; }; + AEF655A9ACFFBB9FD38AF3DB6443D5DF /* backend_metric.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 46E90299520FCE0FBE71255D28F9276B /* backend_metric.h */; }; + AEF78BC87FBC83FA44AC19CD205D8CFF /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 159391DFFF381F80A94841EE3E66ACE3 /* alloc.h */; }; + AEFFFDD8018E9F8A948A600A52F2B5FC /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC2E859FF28A6194CF9F5223FA9E6D97 /* number.upb_minitable.h */; }; + AF0B9A8D13C4C8C12F277AE329E58ED6 /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = F5B7C62D1C00C5C28F0A64450FAE15F7 /* config.h */; }; + AF0CBFDE3953F345A656EE107945AD99 /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD4B084EBF2921E165D1C9810C5AFE0D /* composite_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AF0F8B646F4F2B6FBE2D884471D50795 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = CCCE6C9674D43200B8931BDED7B101B4 /* parse_address.h */; }; + AF106B590DE466D32B3EAADF8D1FAEA0 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC773465021BB92E618DA0B4A3710BD2 /* resolver.upb.h */; }; + AF131F8353A00E38E5B4D6D12F306C27 /* reflection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96C3DF58083A24BF2641DF82FABEEFA7 /* reflection.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + AF1A1B314F4D5C9DB51E478EBF0D73F6 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFE26A46DD85DC5CD5312267CA853715 /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AF1F94D39A8CE0AC64062A9D6DBF93B7 /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7563823501BBB41A695FF9398176842 /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AF21FA9FFB14F55A6390F1AB3D6F774A /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8760C2551E3EF6D3CFF5A9D8DC260A84 /* cord_rep_btree_navigator.h */; }; + AF23E51F201D81324D3585D5A1970735 /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91E70A494068D4F3F717A28589805EB0 /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AF3432DAE4E3F679A6DD10E1546044AB /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E58484A578EB79AB79A1018D46378130 /* call_finalization.h */; }; + AF3B71447B23DA7772174A4A4D2B0FA0 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BC9E104FD6F3949E9304EB90C88536 /* format_request.h */; }; + AF3FA0CD49ECB556F362796F8CEF0677 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7741670FE6B19A87AFDB3E2EE5E85AEE /* config_dump.upbdefs.h */; }; + AF3FC353FBBF5F3B966EC22B35BCE830 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 8F27D4E4804CD2939D6AF2EFC93AC3C8 /* validate.upb.h */; }; + AF40A954A64F5E419912D25AAFC37131 /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6EFD17307E52566EE6A9041809107441 /* mutex_stats.upb_minitable.h */; }; + AF5838475DB771BC25ED6222ADD4F0B0 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 875DAC23D3D02534E4D5C74AF10C54F3 /* client_interceptor.h */; }; + AF5B8700667D61560548B2C18B2BC383 /* skywalking.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2089B445061FAFBC48BACA58CE38AB05 /* skywalking.upb_minitable.h */; }; + AF5CC122F8CB37E9BD73F59F1F3D7E8D /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0882CA30A1CD1E9A42D384100A42E482 /* service_config_impl.h */; }; + AF6661983546BFD60B9569900C29CDFA /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F04AFA7840553D8D0F69DE7B579A373 /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AF6901CDAEEC3A6BBF307DD14AA26AA1 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CCBDBB5862F7BA31C167869B9102582 /* jwt_verifier.h */; }; + AF6AD1CD20D9B45D819E2A6258BDE66D /* FBSDKButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E198E0F4418C33099E9E45B6BE1633C /* FBSDKButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF6D7EDD332B8454088D08E4C3EF2F69 /* metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1781741240B1A477C0960D42344F5B /* metadata.h */; }; + AF6E58B085A5900D9A4D01456DBEFACB /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1E187F808E0110708626214747FEE7 /* accesslog.upb.h */; }; + AF6F6ACED4E5511526852E20D9AC5453 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 65971FC4027B4F130E79F906F7FADE54 /* rsa.h */; }; + AF820E90D186EE9A92C5DDF3E0B46494 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C8EC56D5400C79163F6293B691189C /* lrs.upbdefs.h */; }; + AF82D081020BB82A7F7BBE5C8D2210B1 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 695EA1392515465D4C3F973136D4000A /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + AF84434C44E145515C9B923401159F10 /* cancel_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 358F1C4AC16BB36538EB745268BA38C5 /* cancel_callback.h */; }; + AF85D3CE914C29B22CBCD749543E0D3B /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 422007526CC47B38FC560E95FED3D4EA /* client_callback.h */; }; + AF89025409C244BC3640356F3C26C206 /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 21EA216FB5BA5115914AF4F0523C66F2 /* arena.h */; }; + AF9BAABB9037E66CE7350A5B085B4644 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF25EAC1E0354ECD9A0306963D9BCCE /* subchannel_list.h */; }; + AFA45BBADB566E06B3728AA026BB0C6F /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = 6184AFCDA1596762F3A8B115D13C8CC1 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA9812D752C9952DC0D200CAB5356E0 /* per_cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 139135380FF57F861C147C30DD401861 /* per_cpu.h */; }; + AFA99C53C616E28479B7B446217414A2 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BAD7F854BD2776E319B9C053031ACE /* race.h */; }; + AFAEE9EC6534DE2F69C1FD33B034C92E /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2EDE63152D5461E3E16CDCF9868D0B3 /* KingfisherError.swift */; }; + AFB33241E1E37778F14AE5F0738CA9F6 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0CD60F65FF32BF2F86AC3F95967E7E9 /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AFB67F5FD71A5C16E49F2B8973D88CB1 /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D8667A5FDDA75125E10C518554AF39C /* slice_refcount.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AFCDE284B472F95E947ACBE7168AD682 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1D0A1F7A146A7CF6492B9ED25FE567DE /* default_event_engine_factory.h */; }; + AFCF95DC6DC1F14F0A44A9741F49AF03 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 01643C1180429F77475F9F695D947283 /* grpc_tls_crl_provider.h */; }; + AFE20D864340D4337063595771DD59CE /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = E720B97DE378444176CBEFCBE49E7C61 /* metadata_map.h */; }; + AFE472E5EF4220C7494731BC352667AA /* client_unary_call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = AA85465C87E5CA3FCE9B08A996CC982A /* client_unary_call.h */; }; + AFE61A47A40DBD5656723D8D307FDBC4 /* enum_reserved_range.c in Sources */ = {isa = PBXBuildFile; fileRef = A9177839FDC01C77980CB6586BF8A5C0 /* enum_reserved_range.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + AFEDB975EC14E84B0D9E018B628BAE7F /* FIRCLSOnDemandModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 55CEDA7E0E064C9299B2163EAB53682D /* FIRCLSOnDemandModel.m */; }; + AFF51A8E21E96B14100CE2320B237C53 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9635B699CE726848A123221BCAC226 /* xds_resource_type_impl.h */; }; + AFF7736CEA2ABD90D88630CD3312A39B /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = A432DF57ED705152B9DA88DA27503192 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + AFFA3001E302E19228C68C3D3921CA3C /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FB33917E300DE410AC67FCE517B4FDF7 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */; }; + AFFC508BCC1847D019AAF43F4FD8C2F0 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FC1C0FBB95F095E35ADEDBE6B3F59C6 /* range.upb_minitable.h */; }; + AFFF34E3F7705EB186A4CFBA67B28D47 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2DC06E2A53CFB248899359032C5C89FA /* dual_ref_counted.h */; }; + B00135DD4881AE05D6E163A8F9565406 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A676128A9EC4154D3B676ADAC0899CC /* promise_like.h */; }; + B009FD3156AE669137BC7BD79D285BE2 /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7EF01C8B102C5AB0C8E886EA6BDD516A /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B00E7F0193917220D67FD9C0E51066D0 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B663A44E1423BAB8B5772A8D396CB5E /* cookie.upbdefs.h */; }; + B00EB5119824400D226F57FE2700FDA2 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F312C6D2DF5153F2A698D42C2E5E8A /* secret.upbdefs.h */; }; + B0125D327C40A1971986AB72540780BB /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 0C49BA4BB057EC9D7DB05389C53D1989 /* struct.upbdefs.h */; }; + B0139927C46F15191EF8C7547DEF7486 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DF724F1210A0E4067A62878A72EAEB2E /* no_destruct.h */; }; + B014263775B1AE040E31E06D957B8856 /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 06602D6D76E7F3FFB99CBB0078CCBF5A /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B035E0179B80ABB9FD00A446E537AEA9 /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0CA8B5874C61D83645725D5293B01F3 /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + B038E7213A2725F9FDF36D4D60107048 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D5D54178E89B0511FFC1F39D3C1FA1F /* rls_config.upb_minitable.h */; }; + B03B5579590D528CBA6D11FF638BC2AF /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC4467DBD8EBFB64BB18755BB70CA7BB /* Typealiases.swift */; }; + B03D4E77AC51616C9A7AAAC41506CDDD /* stdcpp_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A760168AA3B373FA217F99A9A850A345 /* stdcpp_waiter.h */; }; + B04777C9E067FFE422E73B20F9063D64 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A0015218C914223BBE182DA9CBF2BA3 /* byte_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B04B20F38B2426A807160F56D7A27DD8 /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AB89E48B714BA03BBCF1BEA37A91AD /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04CABB9227D99988332919F677B2FB4 /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D23CE9225E5761C795FD0B1BD10D44BE /* timestamp.upb.h */; }; + B05BD445078EEF72E5061B793F17BF08 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5EA0504A8A6EBF49AE74A741546DEB /* iomgr_internal.h */; }; + B0668FFD0EA891EECF07CFB688CE3DED /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F5748467AF9ED6E8EDCD362E7C0743 /* def_pool.h */; }; + B06F891B27ABF32659F161E190D14B9B /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 933ED63F62234464CF4A17EFF6E6D7BE /* checked.upb_minitable.h */; }; + B07961711C8B0CB1838AA5E5DECBCDC4 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E6B7E9156A205A40898472C2DA91BE8D /* chunked_vector.h */; }; + B0813ED02897BCEBED51FDF36C08E24B /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FE687C364CFCADFD0975914E4783FD /* regex.upb.h */; }; + B087245DB60DA4D6F4968D2DE1D0BE46 /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F75E422325FFE1A8052A22F5A81BBBC /* json_token.h */; }; + B087DC99FFDFE3411C42842D0F23739E /* call_size_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52E5F7068C118824F0263ED7C1667D43 /* call_size_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B096C13AE80514F8352033563BAA0AEC /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A77C550850A1EAAB2942773EBA1C72 /* token_bucket.upbdefs.h */; }; + B0A184C9E28ED709BD23580A9180E3B0 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F09A7649D85B2D06EE1F22080019EE7 /* FIRSecureTokenResponse.m */; }; + B0AD4C54AC279A2D13C7A204AA6AC8C5 /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 7120AE35EBF130B3091FDE9F4BB41AA9 /* transport_security.h */; }; + B0B715AA97B407236A0FF9860B1CDE53 /* sync_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 748C619D9C28CB377F056706DFACC8FF /* sync_windows.h */; }; + B0BABE9033B8F7C3CC7E1ECF980E893F /* static_stride_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1151041A1E5F63DA2CF2CAB23C6B13 /* static_stride_scheduler.h */; }; + B0C016D5BF5F35651EA444D7B5C0E240 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA7A69A64E92C39A6707BFD38EEF88A /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0C42608232E1DD1E10ECDFDF74BC6F8 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12EB5ABB89D9BA4EB4EA994F2E592997 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B0C7A1DC2951D2B46379F4EC4458340F /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 185E5CD7D0B6FFB91ED1D3C48AA9B7E5 /* udp_socket_config.upb.h */; }; + B0CDA79D39FDFC4131C952DACEBA2905 /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = 2E7D87FC1DE3231935641D09E9FE9BD6 /* roots.pem */; }; + B0CE8561BF518C2EB7559100822F42FC /* message_allocator.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2C04E528FA54897997FE521CC0C14B36 /* message_allocator.h */; }; + B0D4EC8BF9F5ADB5617E287D3F7271B3 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 179A2C6C09B0E39EA94898C3940DFBA0 /* filter.upb_minitable.h */; }; + B0D7277A0D3A0A39A074F56838EF28E0 /* nullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 05977AC6E52E035F9ED2B314C8FF883C /* nullability.h */; }; + B0E55C7D3C53F3542CA018DACD109B63 /* zipkin.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0794FEBD91DC001E0AA8F89BD705EBF2 /* zipkin.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B0E60F0B255FFCCFA6D125D5B134D640 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 232AEEB6317B506F20D656FCA0BFD451 /* FIRCLSExecutionIdentifierModel.m */; }; + B0EB36241246A9E9246CC0CD52977D94 /* def_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 429D43C99E146AE79A5FBBA54676BC57 /* def_builder.h */; }; + B0EEFE97E4A4F223722F802942394086 /* types.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = DDF988C4AB121C7CDD3E088A2F44C8E1 /* types.h */; }; + B0F865BF527DC05AA6B54AA540D98653 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE134FD42A23BE052666E4E481C6969 /* resolver_factory.h */; }; + B0FA25679070093D9E0D833EDC77541F /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DDEDC785C4077848CE90656B5BFCF9 /* scoped_route.upbdefs.h */; }; + B0FF10078A4C884685AD4A0D4C4D7FB0 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 1DCEF48D8B279114F23E33CC3FB6E0CF /* alts_grpc_record_protocol.h */; }; + B10776B04EE9E92B7E0E0CEF92CFF7EF /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E2DC980E75F2923C1722FB78E1F33D /* json.h */; }; + B10ACC72CC8553B70BADA237E64196AF /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = FDD6F685E09C23CB2486C23AC4713A12 /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B1173FEFA2DF64B764C8CD27CDA3C2B4 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9077B079890825456067366E7FF08DBD /* substitution_format_string.upbdefs.h */; }; + B11CB6ED7F8B26A4ECF8A7595BA2CBFF /* deprecation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE3494C3911C2FAFEB1F571D30FF8F46 /* deprecation.upb_minitable.h */; }; + B121CEB56C5ADA5EFF3BA5EA6447EEA0 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2C1E97BC95C47DB17745578984EF547C /* frame_rst_stream.h */; }; + B12C09F9B7AF77D262E358588C1BCA71 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D5DB3DAA93DF250F634F3D6455151EFB /* metrics.upbdefs.h */; }; + B12E5AD9E6AE78F89971CBD729931120 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 7CE4A03F5CBE5CFF82C6D16292FF9CEF /* status.upb.h */; }; + B13A290C188330634A5D460FEA3F227B /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = A40499E4A18034B5032E086973120A89 /* timer_manager.h */; }; + B143D4761E87F6C6D5284C3A5012C0D3 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 247CA156307BEB2C50B3BB8F2EB8B684 /* alloc.h */; }; + B14ADD698DD268DC0DFBBF17CA0A403B /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E37BA335BBE13DA9DC0988A29C8605 /* dynamic_ot.upbdefs.h */; }; + B14C268154025F8B32BAD61EC34698BF /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = C9628B1F18B1682910970BEAB83B6D32 /* decode.h */; }; + B15134965DA41402996A8C8FC0D1C452 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = B9F801E8C54CD4E2D2DA8D0C29635F99 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B1515BD2D2BB419EEB25231A0FE06104 /* memory.h in Copy memory Public Headers */ = {isa = PBXBuildFile; fileRef = B976927A06D48291011D5EFEA8547D2C /* memory.h */; }; + B155BDCEAF3F34466279C4D10FF82538 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = EF9ADD73079F1E466144FB622AC618A9 /* message_def.h */; }; + B167FD63735DC1A6F13A68A1934B71A8 /* xds_audit_logger_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DC7031E2D4F673D776E3FF494E7A3B /* xds_audit_logger_registry.h */; }; + B16BD1AD0043BD0B2A37EF78AA60BE78 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 9993E90AF22AD2B2F832528BCBED8458 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B16C7B48460E10ED486E3951C11128B8 /* serialization_traits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5993762CD361C4B69D3C4D4BE26EB5FE /* serialization_traits.h */; }; + B1730542630C6DD590C6E3D43B5918BD /* server_info.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C89AC9F534E7DC86EAFE7B02D35ED4 /* server_info.upb_minitable.h */; }; + B1735452201DA5EE3026AA40E1879B0D /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFFBF4DD113DB1D896FB623D1E9641F /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B17B7B5F795B189D3F3FDBA5175F37F0 /* LLViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43C18F4A6D1329EAB2C3B04AF433EDBD /* LLViewExtensions.swift */; }; + B17C7940F4A8ECF29CE43FEA77EF3F13 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A750799C655157E933A0E70313FF717C /* protocol.upb.h */; }; + B17D933C8F8BC6A4F91AA620D7D7A870 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EFC13F262D3B56F9BC1C8FD70F9A218 /* ParameterEncoder.swift */; }; + B18677A2A9DF1C7383EF7E743C0E1FC1 /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DAD6C59D0FC3BA3B690433098DD17CBE /* resource.upb.h */; }; + B1870A8DFCFD4FB75B0B33A8A60AF822 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 36C1B56A2DD6A3008AE1378B48F74045 /* enum_value_def.h */; }; + B19B3B2675649859C47BBD3FE6702AB3 /* client_side_weighted_round_robin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B005FE2A069CE1D0BA190CA0E9E032 /* client_side_weighted_round_robin.upb_minitable.h */; }; + B19B6BFE67E1CFF44F3C07DF42292274 /* FBSDKLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DEA62D0B15E42714B497A2EDFE9473 /* FBSDKLogger.h */; settings = {ATTRIBUTES = (Private, ); }; }; + B19E2BDD678DEA188A69727F8AD868F3 /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 476764B4D812387E9250442D5AFC6C9B /* time.h */; }; + B1A3A4F4A0492F1224576E7BC5D524C7 /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 8616C97C72269DD27984C18437F6BA3D /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B1AD2D0EFB89F6B607EB108DDE46E38D /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = DF66ADD42C650B5FBDEBC7E51B6F3497 /* xds_cluster.h */; }; + B1AD971147A7A8F97E76A450EAA0AAC3 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A4A3C97E2889BFF49C807A586C8550 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1B3010379BE91D2E1D7A6FA1E88E426 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0291437441D1C79D7841BF90A9524AD /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B1B4BDDF5569D2E94716BD24ACC65184 /* cert.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FB8C03A23F1CEBF7E43D8F0905C5CA09 /* cert.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B1B5DEB603D76DBEB244D2EE3FA293FF /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = A939A7A799BB019C3195766371FED1F3 /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B1BBAC3F804C15C9E40F21D47493C9C0 /* call_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CEA4E38A42FEE69927359777E9069E5 /* call_filters.h */; }; + B1D2190DEF50F15DA3F500D5FC6DD392 /* resolver.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF4BD99E51C5098F1630AA5FEA1E608 /* resolver.upb_minitable.h */; }; + B1DC5CB6126CF413181356D367CC684D /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8771FD427B5C58F341CAA1A59687F38D /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B1DE328DECF889F5CE98BDA386417A01 /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDC55353B8C70BC1E35BA2AE7CB36F0 /* spinlock_wait.h */; }; + B1E0A2886640FE769E36043491BC261E /* cpu.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 53868A64EEB9C294A151445CCA7670FA /* cpu.h */; }; + B215EEB8D1D26AACCE2BA02FE5F06382 /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00E352FF302C82C28408AF2FE56EC007 /* xds_http_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B2182CC892AE93493F2D71CCDF902123 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 657A8DA1869821EED732DB9EF941A217 /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B226D7D6CEFD080BB16E267626B6ED77 /* server_info.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6EC31C322647A6081213C3D0C74467 /* server_info.upb_minitable.h */; }; + B2271268AC0AB74E72EC4B14E6225C2D /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1EF2268638E8C9447D18B7409B3E6282 /* xds_api.h */; }; + B227C8DF5426F45C818643B124F3480B /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = F66336A1BC7C3479A0479FAAFF938B7D /* grpc_tls_certificate_verifier.h */; }; + B22CAE7E2A8DAC093238BB52E091E153 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = B29360A816E5924062EF43DA3C9635CC /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B236783A7358CBE63234CC301FC24EBA /* metrics.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E13F55783D3C677A889F2CE0921A955 /* metrics.upb_minitable.h */; }; + B23AB8FF2AC14D4DAB0F81A09F17399F /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7CE5FEE699ECA7776DE7CDEAC73F19 /* discovery.upb.h */; }; + B23B978058C732C528A6FD975E8D1D8C /* poly1305.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 740C1EA05FB7B4BADB22AF785CCA7A1B /* poly1305.h */; }; + B23C5660A0E1D83A2C810CA2CE5633E2 /* nullability.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 05977AC6E52E035F9ED2B314C8FF883C /* nullability.h */; }; + B25389B44E8F4E6571C5B0E952292A98 /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0A11252FB9702070E354D82D2858DA /* xds_client_grpc.h */; }; + B258C64EA63E0F2EEDF7AFD90AF742B4 /* ctrdrbg.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 58AABC8B9F958F9087656A1FF73E3E94 /* ctrdrbg.h */; }; + B267BAE25E15067A9F9F69A6DD9C66F0 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 89E691A42EF1AAD0BD557089D39C7A21 /* xds_common_types.h */; }; + B26CF99DCC9E3D80C43068FEF6D131B0 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45413384C16166D352DDF50174914FE2 /* hpack_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B27CCDBD31AE5D655FB0D81F0E4DDF87 /* ecdsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80B4F7552B1FFBD01D22FACE315BA5C3 /* ecdsa.h */; }; + B283E5A59B950C073D593A004CB7253D /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D38000303E96949603D3A24B24DFC33 /* extension_range.h */; }; + B28F10044B4BE13C2C35381203305597 /* datadog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2D5E9089AA02EC35C14E3C6B6B1AD4 /* datadog.upb_minitable.h */; }; + B299F9A647B6ACFD89506175EEFB3B6A /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AC6C0E74246B3B551206B61842A056 /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B29C5B68771F67A6C870D611332245F0 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 263B8B7740B7E5849F3E89704F1F8657 /* atm.h */; }; + B29CB56D010B1BCEDA78B63D17329FB3 /* server_info.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C10FF02FCB7D83B513D4CCADAB125E5B /* server_info.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B29D0F0A4C29FB01F737AEA9FF8035BA /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84DD9FA76A22EEF49D4400B725305259 /* cookie.upb_minitable.h */; }; + B2A1D3647FCBE62A9CB848210C072EC8 /* logic_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9EF75159FBA831301B73CC9F19F4EF0 /* logic_utils.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B2A3D795262DDE95222FB45A0CA21A0A /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = ED99ECA6552A3BE582ACB7FA5E18FAF3 /* FIRCreateAuthURIRequest.m */; }; + B2B3482B20B97D0A25E27176B10327EA /* service_type.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 97174F925538EF9C11ECC9DE94112BE5 /* service_type.h */; }; + B2B3DA79431D89848826EBE5CF37573A /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AEEB17672B6D4DC10FD0A5F308059EE /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B2BA633C3DB62A606D5A1DB9D2801A73 /* util.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 11C82A2E376BC4C3E4100995BBAB3D0C /* util.h */; }; + B2CA92A85034CB8FCE90B7ECE2F21475 /* thread_count.h in Headers */ = {isa = PBXBuildFile; fileRef = C6488F90B0B0A6C016A9DA067888E5C6 /* thread_count.h */; }; + B2CF3C51B4DAA24B03402BE9524B7538 /* fors.h in Headers */ = {isa = PBXBuildFile; fileRef = 573932E3B3862583E51D2EC2A332F43A /* fors.h */; }; + B2CF4508643612B19A7955352109B470 /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = C74D600204969BD8418F8E220FA5F62E /* extension_registry.h */; }; + B2D649089B5D2DC011975B3A90644106 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = D7B93A4DB1A137AE64334AD7B02ACDCD /* ssl_utils.h */; }; + B2D97BCAAB3B4B8C4A438B6FAE556AF3 /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF3B87F8ACCF6869074996DC13CBECF /* time_zone_posix.h */; }; + B2DF56C3CBE665D9FD9DCF11B0ACA142 /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F000F04E87076A537AA13940FB435B54 /* stateful_session.upbdefs.h */; }; + B2ECFA77474488C9887BBE926E4900FE /* duration.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E8BC343D6E247A2B945CDEF31F418C /* duration.upb_minitable.h */; }; + B2F09F209BA42203339E45DB6D25F53B /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BCCCE7A4ED1EC9F7FEB1538C8B98D65B /* rls.upb.h */; }; + B2F6A714CD6F3D2FD5DE5C095E0D9921 /* escaping.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = DF5A5F0331AF0816E9F57AF43A2BD4A2 /* escaping.h */; }; + B2F88C53CC2D64782833165DEFF70353 /* endpoint_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A42ACD0CAE5913A9EA4DE89CFB910E /* endpoint_components.upb_minitable.h */; }; + B2F9088099029CB25B38F9DA97D6565D /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = A5C9B01CFB885BD5AC743F5A6D9C4BB7 /* alts_credentials.h */; }; + B2FE22B87B21BB0BC3351707ADF5D668 /* encode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 214489387A8C4FE6211FD5491DA282FF /* encode.h */; }; + B306E2E01913F5F717AE453960F0D84E /* http_protocol_options.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 382F4AD26D743D0AAE065966859C4CA7 /* http_protocol_options.upb_minitable.h */; }; + B308E545F41A4408A3CA5B424B4E11ED /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14B6ED1B79F54F73F8C4E816ECB749F0 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B30B1458984F862FE858860CD6F2DC2D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 15090066D859CFA88D428ECF9C3C656D /* chttp2_connector.h */; }; + B30C8FF480D267B6FF18D295BE529610 /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 3249D83376DB68858EB11310C25D2848 /* tls_credentials.h */; }; + B31EF3BF5C08A529E10FBA653C3D8AF1 /* registry.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2C46C382856B92934F6E85C840401D62 /* registry.h */; }; + B327549E49A349E025E8137AC6DE7CEB /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F41AD489CB7FDBAA17CADF9F48084990 /* typed_struct.upb_minitable.h */; }; + B32C970566DABDAA3CB5E16FAAC1F64C /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 467BCE892AAD63B00197B319BCD60E54 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B333E7804CC9546511BEE11D73B259DC /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = D61DB5FB893697FA8D491372A5428B46 /* lb_policy_registry.h */; }; + B33E880F78DCAF2817074135FB37C02B /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8C5F3CBB6A113CEBA9F171B2CE37D0 /* semantic_version.upb.h */; }; + B33EE2B64316EF1BDEC63EFA3D00B64D /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE5D50FC5F7B7A9A8D9D4D9EB8405C1 /* alts_iovec_record_protocol.h */; }; + B34BF2D478E8564522A950A30C96DBB2 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7B687D7681A5F16DAFA3F4CD87619C65 /* service_config_helper.h */; }; + B34F78B841454393D94C3EA365995DC7 /* compare.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 85F12D6F87F667BA78DAE1121B13D136 /* compare.h */; }; + B350FDED461CEAD8A217FF6DB7B69E31 /* server_address.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 8A17776465696BD8D86B5B3D3E4ADA84 /* server_address.h */; }; + B3519CBAA302DCEE2845491C845EDC9B /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CD0776CE3087A3D6BED9B3BE5AAE67C3 /* range.upb_minitable.h */; }; + B36097590080D50CFF272A6F658EB2C0 /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = B89E2CFE82C54F65D295B4D7A21D9139 /* wrap_memcpy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B3609A6CA726F0308462DA9A294E63C9 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F860F616E4B46B2D43E12AA1681714 /* status.upb_minitable.h */; }; + B3716C093C91052D26137019A497E0BD /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 433DE30F2B52D4869A9BB7BC82F7F896 /* client_channel_channelz.h */; }; + B376F91AFD3D36F7EE4B55B8DB23DC94 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 6A209F65D6E42C8905795C2E5617C949 /* method_def.h */; }; + B37EDA9BFD98ED828E4503C021417C38 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 418758104DF39D19296C60B0B654B587 /* init_dump.upbdefs.h */; }; + B388C93715C0A3B8E7EF3967AE1441B0 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D82B350FE552DD979778D22338B97844 /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B390FD710CB68E2FD8AAAE0822AD4079 /* int_table.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6BE19D286C1C2AC2B31DB61159FE1D /* int_table.h */; }; + B393D71602683B8CEF391C13DD4083E9 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C04E528FA54897997FE521CC0C14B36 /* message_allocator.h */; }; + B39C293441F31B43C9F0B14A6244956B /* cpu_aarch64_linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 8ED81F4F412564C7D17A61B8D7777416 /* cpu_aarch64_linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B39CE61D6578349C28B92EA6B07183F0 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5E4C76F0113C682819C79411F73D76 /* client_authority_filter.h */; }; + B3A08E720670583C3AC4A926951B4981 /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 29ACFD3F2349F8B2424D25A435F895CE /* notification.h */; }; + B3A997368E23A23C4DCB973106BF9ABF /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1A8C0A1C5B6A3F07F66F206C16E03A /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3AC17DFB4A3C5639340B65DDFA04170 /* extension_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC07488FEB091385E7EA098BFFD9521 /* extension_range.h */; }; + B3AE074B92DE76CB7AA906F3F070E4B7 /* non_temporal_memcpy.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5D4CBA6B6FAB805AC62E53ED590A1DA6 /* non_temporal_memcpy.h */; }; + B3CFCD69D91FB65007DE3A31D1889B56 /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCC047E666925BC4E4B77BB352C8106 /* FIRPhoneMultiFactorInfo.m */; }; + B3D0E4B092807EC38249B945DFD5A162 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B78CC3D88493EFE53F69EE7580A9AD3 /* route.upb.h */; }; + B3D9E43392958AC9A13694F20FEF84C3 /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA4AB69EFCC57FAA398FC82FAFB40C8E /* stream_lists.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B3DC13B02F643C00C74304D2E9FA7A77 /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13818B03813FE60230003909E49FB00F /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B3E34076419F6892B16406519B72BA21 /* CollectionReference+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED66A807EC1BFB0C3870429D90499B02 /* CollectionReference+AsyncAwait.swift */; }; + B3E3664008DD6693E87E1621082B9BE5 /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1A7B5781356A79E787A4AA6F8C68B0AA /* xds_http_stateful_session_filter.h */; }; + B3F159EA7AC7EBB55B097C54CE84AAB8 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CFC874BF57537F54CBB4DEAC1BCBC4F /* cel.upb.h */; }; + B3F1AD2ED1192238B58C3682D4B05EDE /* decode_huff.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE97B084583DDDADD304E73D7BAF2BDF /* decode_huff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B3FC512F007376CD9F1C9D1DD4A6128E /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 08871EFA2D40B413423BC40507011315 /* waiter.h */; }; + B404852D805CB764A27F8DC8E17735D8 /* ads.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC3D4F575386A941488816EAB2BCE51 /* ads.upb_minitable.h */; }; + B410F1A512731AC2366EAB60A372183D /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C55C3BE3C5252E886759596C422F5A0 /* decode.h */; }; + B41EE6BB8B5D36E49993777AF42917BB /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = 288736EDAA926B1680188A6454F0C93A /* supports_fd.h */; }; + B422ED99BC31CF6F328EC7321981EF92 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D3069ABF94F8F70F3A77F0E5FC1EA11 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B4258712414C2E9E345CC9BC03AF9B3C /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E3199D3B88E8031FF5FE85F634895DF /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B427739A36AC511F1DD85D74CFC2C0EC /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC69D5F6D619AC425405764076AA614 /* matcher.upb_minitable.h */; }; + B43017FEC99D227D4CDD81DD2C27D9D9 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998CCE13B75874C3C349F20D765DDA09 /* ConstraintMakerPrioritizable.swift */; }; + B436634D49553E295B5F737CD65DF4AC /* common_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 60974EF69B1484582DF23C543F229C0C /* common_policy_traits.h */; }; + B436CE9486C6282FD39F68D3485CD7DA /* FBSDKGraphRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = EE757EFDB552E4BC25DFAF061EB84070 /* FBSDKGraphRequest.m */; }; + B44158E5C755BBA9AF1A8C2F82BD7F81 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBB0BA03043BED364A821F5FDA49F1C /* tls_utils.h */; }; + B44DBA12D4E3DC8903742E75D978B537 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBA3847783FF4CAC219B51B42714CA1 /* retry_throttle.h */; }; + B44F173FBD46EFBAD0B1A8B4AC881914 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = C0C2DC200C22CCBBEF8EB083FA2B9D44 /* alts_iovec_record_protocol.h */; }; + B4527BC0CBA86E1131430A0FF3EC6BDC /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 168067947F44683B21EA81EFEBF6B56B /* hpack_parser.h */; }; + B459878FA30C5B4474AC91D8EFAB4D8A /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5AE9E3E78472EF7D62E82DB8C9DCA00E /* route.upbdefs.h */; }; + B45B2E7709720624412DE195D5E1EC98 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D7956846AFD0AFBA6D012B1FC43ACC /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B47771EEE5C99BBFEC9D0AFE624E84C0 /* transport_security_common.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DFF159F9D42AE3A2DAE6C41B2C405B41 /* transport_security_common.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B4856C1A10C1D977C1AE9B8ACB8FA4F3 /* http_inputs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FDC749E0C27F8E60FA340E6075D096B /* http_inputs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B488BCCD856D93EB83A940DF697711E3 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CD3B43F0F9D4344A2CB5FDED5C154C /* ref_counted.h */; }; + B48A84752F077AFD944056FC7B405CB8 /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 533BBC14EE849CFFDD15D746DA87EC3D /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B4913D44F65E2CC63E8A0DA35E41EAB8 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EDC47BD7BEE5F76EB415ACB6DF0A888F /* exec_ctx.h */; }; + B49A0477E00D3E7BB5BA874851A81C76 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CF8F05E1387C67750745330B689AB2 /* orca_load_report.upb.h */; }; + B49BE3742A8C9ACB3152AA2C1D5EABD1 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFDA38CAB4C1BA32BE7382E9C84C9CE /* lb_policy_factory.h */; }; + B4AD9618FAC477F921A5721F916263AE /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A27C356D3B1B34EFB006E4989B771A9D /* http_service.upbdefs.h */; }; + B4AF7A0BFB8DF6515980EEBC2F39C3BB /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 525BAC7321476491912693FC99DB9421 /* dummy.m */; }; + B4B08F2F58A280D8E2669EDB30F8DD11 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B2A066D210856ACB6780EC7A484F02 /* xds_http_rbac_filter.h */; }; + B4B0C06574E291F16A09894B0F0983AA /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = EA2BFE6B25DA6D9FBEDCC5CEA5291E94 /* def.hpp */; }; + B4BA8A9914C5217DF8D57D4147966754 /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0535A4EFAC37570F1D9B7FB0B33E12DC /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B4BCF3514316493B0E8A4C125EBCBB5B /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAE82C7FDCDD69813807B422B87DFC7 /* deadline_filter.h */; }; + B4D3978DAA5546B09208DF922D35A951 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 35C300EA0724A1F5733E769CB02EAB33 /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B4D7184105BE161A15B1C4F3CD092D4B /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 087410A4248949425C73EB52A05B3F99 /* orphanable.h */; }; + B4DEB8802FD958F93EDF6930DE398DDE /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A6C38AEC2231FE6EA5FBB54E9B262F56 /* security.upb_minitable.h */; }; + B4E54B065510531BB00A0F8756264D7F /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BB0F5ED24363509F4BAA2F359DCA43 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B4E9D366425592C4F6236FDD877F2E36 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 00310AC6F20D302C9B9DAB44066C7ECA /* FIRFinalizeMFASignInResponse.m */; }; + B4EA0800FE3CBD742996379A56F0B4BE /* build_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7D433AD86C837E52DE6AD9E51A9403 /* build_enum.h */; }; + B4EB7BB24070BB982584F0A838507EEA /* pick_first.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B3D34D8BDFD1DB24630F2852EB011D /* pick_first.upb.h */; }; + B4F3BCB95223B32FB9930646D3EBF3E7 /* context_params.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D39E473DBB2FF91ECDD3CD99666609AF /* context_params.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B4F3BEC90E3E9353A324A3C8EDC74C39 /* service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F161778C54E0C81B2DB5559524295199 /* service.upb_minitable.h */; }; + B4F50087A6C6AB78BD26D08380DE55FA /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = CC35F42D2CDC541F83B1D781B3DC34AE /* altscontext.upb_minitable.h */; }; + B4F5F2C035CCD5782FF031BAE5563653 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD5C3331D8BF5A22A6FBAC02544BF6D /* metrics_service.upbdefs.h */; }; + B4F6E4F94BAB38A7BFC08DA137B49273 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58C47ED3DED3D0222E68A9C3BD78F3BA /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B4FB4061026D43C7C90AD695A3B1307B /* connector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0DA5F7FD8E5596AFAF5318EF88E9AC72 /* connector.h */; }; + B4FBA466B9DDA1E54223CE87304C8612 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2011920F5DF13A7BCA0EE1BB972113DE /* dns_service_resolver.h */; }; + B5071C96A992B5DD1C5DE3636C89ACA2 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCC957CA26E4ABAF0BFB1A482EDA258 /* memory.upbdefs.h */; }; + B5110D00AA64CCE8C6783DDD14C70E11 /* FBSDKURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2DBC5DE971CB286FAE66C52A270E26 /* FBSDKURLSessionTask.h */; settings = {ATTRIBUTES = (Private, ); }; }; + B513C5E630DB1B967332F87E3B77B69D /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B20F9C15D11ECCE4BC82BA68DA7EBF76 /* quic_config.upb.h */; }; + B51CE16E918684867CE0770245363F56 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F0AA53F518BC52C6A0B4096E5E22EB /* channelz.h */; }; + B526AB2D2BB1913BC6CF976DAF078D81 /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6449E9DD7C62B24AFDEBC9A75C39FD /* xray.upb.h */; }; + B52A597699E0F30787A5EE6DBB6E08B2 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3405AD789CA36E530A6C93510B207016 /* transport_fwd.h */; }; + B53CAFA8F6814BB6FE8BD84E90A30958 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FCB852C33805C0E801438B1B8CA21C3 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B53D670F5542DDEA1B9E5963F7F59B7C /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0A163E604CE1F5817230C630F3C476 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B54BD1DF639E13A93F1D7151151169E3 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F212B33FFAE46FFEA6C2785B14C5BE2 /* json_args.h */; }; + B5500080B07EAB969C09B5BADA19DFAD /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 130080EE0A9CE3E3F79023DC4283960C /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B552B874240857E8677E56DC3E13830E /* FIRAggregateField.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AF9D481CB2BEF041084381DDC3964D /* FIRAggregateField.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B55B8A24D65C9DC5D812A66B12FD60FA /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = ADBA1186C42DFE86E6EC166178309AC6 /* siphash.h */; }; + B55C8DEBF09FC07593EF1455D4818AF7 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = FA1A68F95B990D5B77062AF3DFCFCD7B /* grpclb_client_stats.h */; }; + B55D8990F7B5D7B9BED9DEA58140DD82 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7570F460D23DFD5950C43598E92421 /* opensslconf.h */; }; + B5601C77075F2D7B2FEDE7E608737B88 /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 544634A5F6179F52CB7027E0CC112921 /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B567637377A68042138D94459BAA875E /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DDF3A237FCE2D3A0F90637988A615FE0 /* http_status.upb.h */; }; + B56774BD2B0C8454F45E3A6BD4EE4553 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE4A03F5CBE5CFF82C6D16292FF9CEF /* status.upb.h */; }; + B5679EA8A6F70F123C16D94ADC24FB5E /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C741F6AA0300B09B31415B2285B604DA /* sensitive.upb.h */; }; + B56B7ECB440AC0B0BC02DC349B314482 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CC773465021BB92E618DA0B4A3710BD2 /* resolver.upb.h */; }; + B56D8D59D57CDE86969171D32E1F9AB7 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 396A80262D736FCCD67791C9D4CBC245 /* sync_custom.h */; }; + B56E1FC8F07B673E87479F22C87F320A /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = F700CA3C517A748B1BBE841BD522EC55 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B5738DDDAAA6B100103399AB17E9B58D /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = BFCBF4A12B1C29764899B5C7B1D5B955 /* grpc_tls_certificate_distributor.h */; }; + B57C5DDC17FD3134F114BE1323371E8B /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9C0F8053DFD2379AFC78A98D0233DA53 /* latch.h */; }; + B57EE023F9C892228C2196D8FF7A9C26 /* secret.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C1EDA0C0B8BAA37E94203A6AA7222F65 /* secret.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B57FFADD0B10B163E2209DB91EA181D8 /* blocking_counter.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = E145BE885604F654718CEE039F41F8B1 /* blocking_counter.h */; }; + B581022A8ECBB69C8663A7416ECE2DB6 /* stdcpp_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A760168AA3B373FA217F99A9A850A345 /* stdcpp_waiter.h */; }; + B5900C1903EC7677046028B90754B767 /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 822F7BE1F1B468490A0A8EA4C8C26068 /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5AD9D0E9E23365409CA76BBA90A7C26 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = F019BE0027333EBFE1C6AD830B77ED4F /* matchers.h */; }; + B5B8E30246B9A22854677FEC9858121C /* FBSDKAppLinkNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = C0674BB224BA5583828F922C95FF22A1 /* FBSDKAppLinkNavigation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5BEA3C78038A916F6298B51AAF0D1A5 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = EEB9E7D0A90AF6064F0B34E55F558D81 /* method_def.h */; }; + B5BF71B0F5D2F9620F3DA9060F52C1E3 /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = DBB2CAB6C1B6B9953F945FD486893E27 /* activity.h */; }; + B5CBA155126CF6A14EA686F7530F6514 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 325ADA95E6704E058566B5A3DC3F62BA /* channel_args_preconditioning.h */; }; + B5CD85A0B14C4F754AA8DFBED313E19E /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F7FA593C883C1D1ED71631E2AD3024 /* env.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5E62EA36B861F611CDFF7DC901D1850 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE9F2097FF4E9159E0C8005827462703 /* lrs.upb.h */; }; + B5ED748C486176D9888806C9323951F9 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = AD6BE19D286C1C2AC2B31DB61159FE1D /* int_table.h */; }; + B5F637FAEE4F5FCC0E0BF15D9B67A053 /* casts.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6D6682C5F498B9B212580B3B395868AF /* casts.h */; }; + B60CF4BF699A6DA45E2B04DD5F1753A6 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EA48BC4900BCB773877405A99AF1FB04 /* xds_channel_stack_modifier.h */; }; + B61368A1F8748E380E19969B50BEF934 /* xds_wrr_locality.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A0A338D372A2FAEF9FEB01477355614 /* xds_wrr_locality.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B61B3B42F4F18609E7DC9401F8AC7314 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8FF01E997F8B64A183D650CA3A91F0EF /* wrappers.upbdefs.h */; }; + B61C3F91A0157EF408E6199494D6A669 /* cidr.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4913E406D40E24AA85F83DF81C8BF0E6 /* cidr.upb_minitable.h */; }; + B631588A3C72B0FED5EFC75FEAB83602 /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5255348D483C3A8B784CA6E21A52C971 /* sync.h */; }; + B640A10D5C8BCC965EAE429634F8B888 /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7537EA40B6716C5DC375D86122C54E6D /* ev_poll_posix.h */; }; + B6417E07532CF4E7F9C225741754ECE6 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D198AA3F2D3FD344B7C2A4EDB8E1E38E /* metadata.upb_minitable.h */; }; + B643A53934B467B52B57ABB3E7E186CE /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 24941496D3F6690F5F235B5B38BB4AC6 /* examine_stack.h */; }; + B64D8146E082659B7B7F832CE75456DA /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0899BC7FFFCD983C92EE85B13FC6C5 /* fake_transport_security.h */; }; + B656806C98C997E0B99263896E1810FB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + B6581D977DC808F06BD48EFFA5344F08 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 88E58FA0066397B4B2781D6074C16C5E /* decode_huff.h */; }; + B658E44EC30EDBEB03F3B58E2551D79D /* orca_load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F82F8BCECA315AA0D379A95CC017FD /* orca_load_report.upb_minitable.h */; }; + B661DC34EEFB963D6A9390D4649BFB64 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = 1B61C9A08380AF73479306F79B91A346 /* ssl_session.h */; }; + B661F7D7923C32B664EC836B5FC6117B /* fork.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = BC9BBB997CEC532B5554ADB14196BB6D /* fork.h */; }; + B668F1B8AC571E3552DDC0DFA1EB1089 /* descriptor.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A187FC1F72803EFEF1BD9477FBCEAC /* descriptor.upb_minitable.h */; }; + B66DE4675BC7EF0995B687612E94406A /* status_code_input.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 726850753D020773A68092D418DB5327 /* status_code_input.upb_minitable.h */; }; + B67032616F2E311E59EB55B6A14B42A7 /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D10A5DCEC213563BCF20F44B0ECC44 /* string.upb_minitable.h */; }; + B673CFE107CCD6171A6ABE9507064063 /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 94CB9B09E49DFA6130A56F691D0CCBB1 /* httpcli.h */; }; + B678F39B0B12439010938D9E241A1A30 /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 060F1E0932ADC5763EF50B3376B161C9 /* custom_tag.upb.h */; }; + B67F51C17A6F6BA4BFB787D1636FC2AA /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D5949205FBBF4806ADDEF0D522037F79 /* http_status.upb.h */; }; + B6801623A56359E3B792FE38F2BB21F5 /* FBSDKAppEventsState.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FA49E358710D2C3D63950643210B97 /* FBSDKAppEventsState.h */; settings = {ATTRIBUTES = (Private, ); }; }; B692D808C5C16D91EB21AE8B72C0C196 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - B69C89E57D5B50713919B3F14537294A /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = 9856ED55C26F1F2DD150B258C22E4061 /* polling_entity.h */; }; - B6A1345B57E0CA6F096D153B369505FF /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = 922FD7FB7A62F498334A7E365E91141F /* basic_work_queue.h */; }; - B6A4DE4F533EFA2C091D60A372A85585 /* status.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0CA0F55FF86A7BF6B3BF76BA41D52D20 /* status.h */; }; - B6A68C5E9CCE9FAC7C069603303BE762 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 33E08E1B0BA7199D1ABBB5E96C14AF89 /* dynamic_annotations.h */; }; - B6B0346002D576A78E47198E5F7FAAEC /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E91BC802D2BAB27A3AAF7FB0A6A03F2 /* orca_load_report.upb_minitable.h */; }; - B6B4C28401F6B6A732FE602029965C65 /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15CD665576FA69EAD79674546734FA22 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6BB6EE0C3E8CF13F4F2F34D6749BAFD /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 01BCC4F202CAB2F52EB6DC0382E52928 /* migrate.upb_minitable.h */; }; - B6C00A2A56ABE7A2D7E068FE01DE12AE /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F333B33159592FDEF1F70E36E6EF046 /* FIREmailLinkSignInResponse.m */; }; - B6C3910990EDC794D94BA586781902F7 /* macros.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 4D0B9B2FE37F43B4F25A2BECF4735F07 /* macros.h */; }; - B6C664A4494E49911461E72563784722 /* stateful_session.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CCD933B85AE540284E84AC83B2F04C /* stateful_session.upbdefs.h */; }; - B6CD9E51B7F79F3492247811BD7F431B /* flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D9774C7E2703A06D7B9AFE6EFBDF2C /* flag.h */; }; - B6D8A19A94F1E5A3EB7C5CE166150A62 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = B7FDA09CA3A64833DF7180C2805CA000 /* inproc_transport.h */; }; - B6E840CE2C3C20A6F02E3D874381803C /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 506CB2C616E2B4BF8AB6B0117E061814 /* transport_fwd.h */; }; - B6F8686239F6DC65769051CF92C19E60 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = BB42008FA0AFFFACE1706855742FDBEA /* GULMutableDictionary.m */; }; - B6F9655F4048C07E969DADDB534E4B95 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F37EDFAB4D2E0B90CD0F66B38AA19891 /* http2_errors.h */; }; - B7026A744FCA7AAE56A91FF986AB7FA7 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 6344580C1A3229490FE1242C755285DA /* connectivity_state.h */; }; - B70A9F4BE297694FCE1F7A3FB8B1C452 /* string_view.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 5B758D739C0D97A5B9D9DA0629D850F6 /* string_view.h */; }; - B70DA02412638FAEE0AE5117BEDACD1B /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = C73A92A3D269F85B5F08B3DAF9FECABD /* xds_http_filters.h */; }; - B70FE5768C7F30E41E15B68FC7D66419 /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B4DFB39DB20C371098EFA2F3F46654 /* migrate.upb_minitable.h */; }; - B714C789B4E94902014F03A4795611E7 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = B164E7E3843AE4B746223EDEB5DD1002 /* backend_metric_data.h */; }; - B71933A3800838D1C924456A83B200C6 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C47FE53539A219E4F16D3707F8B7B749 /* http.upb_minitable.h */; }; - B728CF201051B0E0029DD854C55F2792 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 0EBA2B9F4F74265B03863B0C37A82E89 /* dns_resolver_ares.h */; }; - B731FB7C2BE0ED84F6368C5FD8B29C75 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9955D08F34694F0B64E76CDE0A5EB621 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B732246B082F45E0FFFA078C234D88B1 /* client_channel_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E630FEAEBD0381408C87772506593E2 /* client_channel_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B73CD36B4E4E827C928B9B3DFDEF6FBD /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 2E4717B22701E5176D2540877A70CB81 /* ssl_types.h */; }; - B73F3CD838299B423754E4C11373AD4C /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D77403F573C04D1FAFABC09E206BA71 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B751FF3CBD0B12DAF084A9F0922CBB93 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B21CCA5C4CCE632749692B46258034E /* FIRCLSAllocate.c */; }; - B752F7C4BECB65894B1F49421049CE5F /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76A46A91EACD52FDFC0A6C58111ADFD9 /* ConstraintView.swift */; }; - B7535830C4F3BACC02C82EEC9E9AEFF0 /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 86547757E4666A01D350FB70EBE9A064 /* status.upb_minitable.h */; }; - B755440EF7417AF7D4D0396C84E585B7 /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = D80E1FF3939A08E9D696A133435E328A /* backend_metric_data.h */; }; - B7569D7B7C0FC2CFCD8D44D52D83825D /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CA31AF85377ABDA1CC7445C814D41396 /* socket_factory_posix.h */; }; - B77B7AC552444B660AF89FEEB23679A4 /* escaping.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 099EA6D04599E19AAEF023AB727D3742 /* escaping.h */; }; - B78B792CEC944EA4B0395E4E146CBAD5 /* intercepted_channel.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 4E03DAF2B7031999C6C11E871A572302 /* intercepted_channel.h */; }; - B7AA38BBFCF3E962AD1A0854F38BD755 /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 97572B642DCD61FE1CD96E6D0F994BF3 /* rls_config.upbdefs.h */; }; - B7B105CB81989DBAE6FB960E3196C538 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0FAF35A0F7ACB65698F2BCECC8606366 /* csds.upb.h */; }; - B7B887907DD1C5947A4AA6E742F420CF /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DAE9E04B87CC48A4A0ED6C78CCD9739A /* tap.upb_minitable.h */; }; - B7CE284A652846F6E35E562C1F69E79F /* throw_delegate.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 420C4DFAE6857E6CACA60EF5C8946BCC /* throw_delegate.h */; }; - B7E084E57253931BEDDBBB81025A5DDB /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29E069717BB5872E9E6C1530BF09EF4A /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B7E4C54BBC77763695413BA47080B7F5 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4851092C6D1B6739A428685EC946BA4E /* cel.upb_minitable.h */; }; - B7EE03AB225B1FF8652F392C71BF7573 /* oob_backend_metric_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 662630BC209E2CCF71B2FE3E22BB4844 /* oob_backend_metric_internal.h */; }; - B7F9DFCB5F5CC18FA156AEC7C2A60A77 /* str_cat.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = C63FF0FF43858C063B5A49A2B461FA8C /* str_cat.h */; }; - B7FC68E518154C96C050C34042832FE7 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F0456A529BCDE9BC38DECC656B2AF0D0 /* context_list_entry.h */; }; - B7FF9AD88B29F8EBB73482E2D177501A /* server_info.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0481076B0511164B79A8E896ACD737A7 /* server_info.upb_minitable.h */; }; - B80198AB2237CCEAF73933F9FA8980CF /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DF005007AEFE0CB841787D0698ADEC /* time_averaged_stats.h */; }; - B802DE260E175E8E3A3458EE7E646230 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6040A2204CBC1B9C395C1007D0B5B6C9 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80DDA48F936928AB3056C4E2F313E7B /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D774D80C3335CD24F30437981A52216 /* str_split_internal.h */; }; - B81A77E33168C191172EEB265BCECF94 /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E21DB309D4AF7F0D7F95121D7D2CE305 /* service_def.h */; }; - B81C0A56772A5FBBC1062EA5FF6C0C6F /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C70A263737E1A59BDFB3C1017878AD7 /* x509.h */; }; - B821B2FC4D19F9608C3FD8C9C395A0B8 /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 5BC4225C95354197AD862933C96ECEC7 /* call.h */; }; - B824E5EA22BA55897D5CEF290E6CCDD2 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 4174064B37FD5F2E7BC6604177BDE1E0 /* delegating_helper.h */; }; - B8293391C2FF10209348F55D337D3371 /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0932A495FC26429BD74218CA2F93C0 /* boringssl_prefix_symbols.h */; }; - B833BE84687051FAEB95869922E32248 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = AF940A0212B08D0D802DDABC3A6D9D9F /* timer_heap.h */; }; - B83878AB09B79191750552E4963BA193 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 577984CAD9413088B9BB4E8390E7EFA2 /* tls_utils.h */; }; - B83DA5B53050755A39C64261A3E7AE76 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E4BC4649EFAE2378AE7A555BF6C2244 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B850C37C9D3477793D03A918EF947BA1 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EFE9C512AE6675F4209B90275BE809 /* FBLPromise+Race.m */; }; - B8636CD03740BA70494C321A24CA205B /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0032C3FA623F5847F4392D6E616260 /* fastmath.h */; }; - B86A2A3BB876C98A2E909DE20F1EC5B6 /* str_replace.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 173D7471E32E8A1DAE8039631B61E55D /* str_replace.h */; }; - B86A69E70BD2C146C976A3F3F264B1AA /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B6E5743008445CF6B683722EA5C6EB /* accesslog.upb_minitable.h */; }; - B86B5AF1B3D7D97C542828A7256E75A4 /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 201771171C873F0F6CC83141C0ED2BEF /* zone_info_source.h */; }; - B88927D8FEE5A83DF881F47755D4A9B5 /* grpc_tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = C18E15BF99BBDE85CAB8C047205A9CA3 /* grpc_tls_crl_provider.h */; }; - B88D775B3B9A73F5D96CF455F5044D4E /* endpoint_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C709546DBBCB67F9E90D1BE42AE0F1B /* endpoint_addresses.h */; }; - B8946F0CB571F2635B6C712D7BFD42BC /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 982CFA624065BFA276DCC7DB2C726BC1 /* rbac_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B8961ECAEF71B7EEC197297647D3B7A9 /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D8B567A446427145E552DDE1987D6AE /* listener.upb_minitable.h */; }; - B899FFEDB2D88698ECCC03561E1E153B /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 34E8D749DA4ABDB6811420B471A05072 /* rls.upb.h */; }; - B8A7D28BC7DA3EBC7F5CA9122071CC65 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB53127D8951AB1961F02035175F6BB1 /* range.upb.h */; }; - B8ADBA354073F92D4E44FA19CE268812 /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 43B79C59D1CEC53ACB9B3E5ABD119423 /* windows_endpoint.h */; }; - B8B70A79BCBA5073B6DB297CEAF18A46 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 59ED0E489755338469587750C00329E8 /* vsnprintf_compat.h */; }; - B8C59CFC386E5FDF51F4A738D29FBE81 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A500533A6A428C773DD4FBD896A8CE3 /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B8E1D68E87014DA0BC705C608FDFC59E /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2235EB1743BB1FBE4FE529BA44151F4B /* regex.upb.h */; }; - B8E35B60BFC8319231C615546E88C3A7 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0815C0ED962673D91E67C5AB9242C394 /* enum_reserved_range.h */; }; - B8EAA2BA4BE274B6CBFDB52787303843 /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 5902E6E3D69B0F17E693AFDB9A700519 /* seq.h */; }; - B8EB53D9F3EC4AED07D9AB020A0A86BA /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 660A439AC461D0606BDD564A7CAEA488 /* checked.upbdefs.h */; }; - B8EFF6F658729D5C208962D1DD5562AA /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CD8954C3E6FE49DE37C55BD19781CB1 /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B8F389CA9761CBD6B533FD44403B97DC /* DeviceKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FCFC69DC3958925831FF01B6034BCF /* DeviceKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B90114112C58AD538B8942BFA6A0631B /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 19A237AED07CC23A1F800A371068DF05 /* annotations.upb_minitable.h */; }; - B90256070F9E58841016DC482A04273C /* resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 261BE7324BC8DC968AB5C3D8B03DB128 /* resolver.h */; }; - B908C4E94774ED79E8CA5991AFF83E84 /* utf8.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D0D1DCE206B599965A6F50651F5F7E3D /* utf8.h */; }; - B915CFB4A6682418BA3C1716B61C2D5A /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FA959C1913C798B5586AE5184120F76 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B916C7C907BAB1359B6AB8A32C9F4D2C /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E5DF80195DBAE01CD47E699E0AF3B0 /* metrics.upbdefs.h */; }; - B9208155240D504E21B923D343BF22B4 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B8270A4870CFADF5AC4DE4E1278F28 /* env.h */; }; - B922242B4940838734B7849AB797627A /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA30E1E9C5B214D497E6EFA894021F52 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B92614E37D3E7F8B5ECEA8D3F2D271C0 /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2691A759F393A591D9D6E6504DA101 /* single_set_ptr.h */; }; - B926D037E979B98F4ECC474493814FDB /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C4599F8974367F8CEB413CA837AED928 /* scoped_route.upbdefs.h */; }; - B9276034AE6ADC47DE5D728C049CF9AA /* value.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F40E84B58EBA6B651C8571EC9E620D /* value.upb_minitable.h */; }; - B92D1766D1E6494BCCECD0EAB57736AD /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E106C972E97F13307B6FE29CCB6B2393 /* stdout_logger.h */; }; - B92F46387336381316F70E830E837946 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1C3C84C42F35141EF9F44A36330A1B15 /* status.upbdefs.h */; }; - B932430BA9BC234A887C63E2347ED838 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 70EE2BE7DA42018B6F3564D3D1A98126 /* matchers.h */; }; - B934FAF7202442B1549995A53D70EA2F /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA55054C90A3DDEF6F8F6FA4E1711290 /* ads.upbdefs.h */; }; - B9369CAFC77503EC27BE70D3CEA0763E /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBCF93ADA7EDF481206D23AD7F633DE /* overload.upbdefs.h */; }; - B959746BDFA7B9FACCCDCF0121B2B7E2 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9E1D7D090ADC52E2EBE8960D68145B /* connectivity_state.h */; }; - B95F4B7864EDCB5D9FBC9A2DFCC2CBAF /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = 31953C8C6D07AB196DBB3C9B336B1641 /* chacha.h */; }; - B964C0CE0BCA8EEF386521396CC53A02 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = D0179DAED2E93AB9AD16C3EA4BB6B6AE /* desc_state.h */; }; - B972470B15E0CCEE25D0339491A66942 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79D2846899A1BD87C1909395EDA20C88 /* load_report.upb.h */; }; - B9761DA96AB878ED3ACD9DD462DD8674 /* zlib.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 033BB4355897EDA691AB20E14D08D38C /* zlib.h */; }; - B98540833FAD7745140A05AA6624AA85 /* SessionInitiator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A049EF8846EF80ACA20554D039125E /* SessionInitiator.swift */; }; - B99019EF88A4AECD2D332F76BEB3C3EE /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = F3FE100D39B8E2A9688CD3F41B5B751F /* handshaker.upb.h */; }; - B996E246F1933069CB948F5FA23DA7A6 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA65AD83C63AC059C9053D36FDB24E5F /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B9A5BBEDCB644990199B1BC49875ADAF /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = C25825E75B5030C7C650908148FCDE82 /* FIRAuthBackend+MultiFactor.m */; }; - B9B29A128265C4BD60C4B41DCA3847B7 /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3778E964F6B91AE93B1D478654B776D2 /* FIRPhoneMultiFactorGenerator.m */; }; - B9B49364D09817A1BEDAF4B38FF4B173 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = B9019D5AFF0EEDB1C6CD4D8C43AE575C /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B6EB9D6628EFEB6ECEEDFEE427CF13 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6856A54FAD9D3F4BCFC2CF359E26868F /* sensitive.upbdefs.h */; }; - B9B73BBBD565181B67F6FB5437CF44E7 /* arena.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = 983A79E7D46425FFBB965E0ACED3A530 /* arena.h */; }; - B9BA98FF29807C2FC642E8BD0749599A /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 143717EDEFF1DC176A514EFC7B01FFC6 /* deprecation.upbdefs.h */; }; - B9BCEF120F5C4B64005D64B693F70019 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = C301D3C25F08154CEF930E86CEA15211 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9C734C24C932EF63F18711D375FAA16 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7776435A96C3EB2D82CF371E3144C378 /* resolver.upb.h */; }; - B9C866DEACC69E10FB812DB5932A5C87 /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 60AF7DB8877A9A07173CFC052FAED10F /* FIRAuthRequestConfiguration.m */; }; - B9CCC2AD10ACDC526E784D3EE3AB2127 /* sync_abseil.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0B7BE4B4857772FA18756795751DC047 /* sync_abseil.h */; }; - B9E0C604347EAA70357797E85729CC65 /* http_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6EF8F9C34530DD51238567230EE00B /* http_service.upb.h */; }; - B9E18D7999214629F60D625E4371B5EF /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 561A0FE594F50BDD07EDBBA070F4BC88 /* http_inputs.upb_minitable.h */; }; - B9E889A5C0F16684BEF8514EBA372D26 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EB1EDCD53E124BF489D7C7628A806F45 /* tcp_client.h */; }; - B9F7887C8785C07985962406B64CDF38 /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 61DDAD684FFE2985898FCE1352A625E9 /* forkable.h */; }; - BA09CB6D50A447F3EF3108794B5AAD27 /* wrappers.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BCC071053C4324552FC55199407F88 /* wrappers.upb_minitable.h */; }; - BA0A05CC90D54475B7288D460ACE3C8B /* RolloutAssignment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96DEF8F57E53C2CC127BF12212DE8DAB /* RolloutAssignment.swift */; }; - BA12FABC77F48A46FC04EBDA5B5B8C23 /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C3E859D389F59E1DF1C9FFE8548EEC2 /* FIRSignUpNewUserRequest.m */; }; - BA19B528A3C751BF4FBC979DFDB5304C /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B874719A4AC4E9B0252D10625E06841 /* tls_credentials.h */; }; - BA2D3D752C4CE1986F54B35027AAB4A8 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9E25FC40708787884D496D029637CE8A /* number.upb.h */; }; - BA2E87DCB22A239FCDA4E66C29B8C2E8 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC8773D5A70DD9E1E44027808DD0704 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA3049A67A83783AFAA9DF28C4E698A8 /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 268FFD29C3249411894B8E18737CC0AE /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BA332703D30FAEF10E56E9F2A8498F08 /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ED79D34CC05037DAA8EF31B35FB3C6 /* tsan_mutex_interface.h */; }; - BA37586CF236EE2C0877EC50E23F5AE3 /* pick_first.h in Headers */ = {isa = PBXBuildFile; fileRef = E4489B92A4ABC7C5E0D153B008267108 /* pick_first.h */; }; - BA3EBC951554718882DEB17A0BD5A8E6 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DA5C74FA320190F6D074569AB0D93CAF /* custom_tag.upb_minitable.h */; }; - BA418E47FF922003C41F8C1C06EF6AC2 /* checker.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = B4AA4FBFC848FC8516B27AC7768A419A /* checker.h */; }; - BA46BE22A67B85DCD3AB264EA4427ACA /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DCD7A5C33CBE505720A257C349D55F /* civil_time.h */; }; - BA52C7F0652E5FFEDC632CADB6F1B01C /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 184D0F1D2CBBCE530C969D61C3148193 /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA62E5C8E9BBAEDF166F2BF5122E715B /* backend_metric_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D22A92A07B1F81CAD7BAB7E848B975 /* backend_metric_filter.h */; }; - BA67E87F5EEDF48020B352F736B37A04 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = D09C1FFE07F0402D79CD918CBC943CB6 /* alts_zero_copy_grpc_protector.h */; }; - BA7296678D67D7EE31B71414AE40AEBA /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = 490F97E2E2107410F7EF11E85061BECC /* stream_lists.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BA733CA5ECC90AAEB5F137783137300D /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F8DAADB5AF27620A23439A2B662E5CEB /* FIRSignInWithGameCenterRequest.m */; }; - BA84C4EC52806590D3A39E756692886F /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A84E2D9BAE85816BBC401D95A61E3D /* server_callback_handlers.h */; }; - BA87971203F900B6B9F4F639DB9A4E53 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 386D30109FA2324EB056598B8DE7BE64 /* opentelemetry.upb.h */; }; - BA942E5E1D9B34FC710B7B6FA10AA31A /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = C6918F11A288B77C93095EC1C2F84B23 /* md32_common.h */; }; - BA9505745D5A010C83D952CD9B1E6811 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29A2A73A55E578D3D4FB89CA27144ECB /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BAA04692B4638C97B4F57BD06E603F0D /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0D929B74670417117816775AE3D5FED0 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - BAA9B87D02C5B91941EFBA4BD40E19A4 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C8509120196AC77C6BF704A5E1DFC1 /* transport_security_common_api.h */; }; - BAAEB700B43B5686453C070E4404FB6A /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3746F4A09EDA218C1F7386D46BB30711 /* config_source.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BAB17A1C6CAD14B3788973EAF8466C93 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7773899ACEB0B35425B803F29278E8A /* NetworkReachabilityManager.swift */; }; - BAB3CC7F56A337A64DBB2311DCAC979F /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C09D4ED674359662D57BE06B01974254 /* ping_abuse_policy.h */; }; - BAB513CF94929272FDF38C1426848C5D /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C2E5DF80195DBAE01CD47E699E0AF3B0 /* metrics.upbdefs.h */; }; - BAB70F78DD31CC6C95465A5DF3B9128D /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C4AF5F4C0BF2F4F1672EEF1539B1F06 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BAB8589D7F42418FC55998EED32F0E73 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = C99678D1D61C2569A59617714247C03F /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - BABA47D5CA9ACE0B7B8DE0050337B3CD /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1581533CE6CB292BEE4AEB51E7D84C /* xds_client_grpc.h */; }; - BABD4B714A019C42B45C2DA6FB5C11F2 /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F3D3CAFFC238B3202D99A12F3E263A /* trace.upbdefs.h */; }; - BAC93664FCF9AC752E050A06B76E4B5F /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 480AAA3EF2BAFFEDD689085135D33469 /* fault.upb_minitable.h */; }; - BAED631505C034F7F6DB03F893BC204F /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFCA097D32BA82AD38BAE6CDAD9A544 /* annotations.upb.h */; }; - BAED7726BB43DF0B6211FD455177140E /* RCAActionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7AA1414B12A59ABA436BEC733861CC /* RCAActionProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BAEE2DC336C06DDDC191C47D7D0D146B /* hmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80713B0A07F59477557B1C1215C2EBD9 /* hmac.h */; }; - BAFBA2EB3E438A23B89461FFD78F9A13 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E3EDEA4551A74281832A6BA525C702 /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAFE1AC9656A04B4AF503084BA070671 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D5EFAB7B9AA518982E390EC585AEB1 /* completion_queue.h */; }; - BB06B3A8E67BF565DF520CCBFDEE5A91 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB1E9BCEBADE2C8288A6F26C80C91E1 /* types.h */; }; - BB0C8FB744771D476326115EB25C4A31 /* clusters.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 45ED87289D5947B8407F6D0FFC49BF29 /* clusters.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB0F76B30954B70FE25CEF9E553D858E /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7540704BA93D813D8B965BDC100796 /* string.upb.h */; }; - BB10E5B57D08189FB1744F28EE5B38A6 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 099C0CEF08F297B3B967D9734AB19B3E /* civil_time.h */; }; - BB11C297C80CA01E40EC3558962B3986 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA13DCD3D10252E935E9A0D322D57601 /* xds_http_rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB2BE4BB435D7B6D55F9E6CDC3D90D5E /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 20C03FA7839059434B41EC36123D4977 /* call_tracer.h */; }; - BB2E7B44A98BD32E36AA349C0BA3A560 /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E73D9F004EDF84CEB89A6C1BF98F11B /* discovery.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB2E9D7697A996D9C58A9851E8892D4C /* rls_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A4462352704DCEA41BADC72E4519D83B /* rls_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB406D6D85CF9ACDEE1118294557EC53 /* filter.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 91321B50457B9B51E1696D3B9E40F456 /* filter.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB51EA9BCF8540BA787A254179BB97C1 /* xds_audit_logger_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E96D0652A099F9302BFF7E70C912985 /* xds_audit_logger_registry.h */; }; - BB51F53D59186317A26F3605A291A2C2 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D21D691BA51E06383EE19C771D87C7 /* http_uri.upbdefs.h */; }; - BB524E2FF2EFD7B83A0A37CCE9C9D54B /* circuit_breaker.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A700EF30A90FE6F4B10FABF1E7A282B2 /* circuit_breaker.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB5F2328F163D31683E37AE3C6C3A634 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B301C71439E619547A869FD4EF8C46C5 /* address.upbdefs.h */; }; - BB67A0605406DE06A5D036F66C5C74D0 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 893CF5877F1C4B9CC0A516CE0C68E16D /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BB6AF894428025B1D613F33FA5BA7153 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C73F1E9F5635FCC7AAEED4F49F790A46 /* certs.upb.h */; }; - BB840D4267E91A3ADAB5935C4874E0F9 /* xray.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B2E820A1DA0CD3FD0C3394908ABD99BE /* xray.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB84FD84657589EA7F35E692F0C614D7 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 523B1168418A40F254E68E8EB0DB380D /* slice_internal.h */; }; - BB8F808AB67CE948293E1B2D46854206 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8141A8AFEA0FCC818C08C522F3265503 /* GULHeartbeatDateStorage.m */; }; - BB93AD1274F330605C4F5B08E450F788 /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4308C383E379367BC41410AD2C702E72 /* ratelimit_unit.upb_minitable.h */; }; - BB965F504A935D3DD571D39A4CBF6E2D /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6B3DE30F51966541462222980CE1B4A0 /* grpc_polled_fd.h */; }; - BB9D700BEC9144D4F3EAF50F1916A721 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8BECB2B4513E012794A4232B8569AB79 /* posix_engine_listener_utils.h */; }; - BBA4DE2686EFC33055D1280D2F9B0BB5 /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = E60330B07A5528BF4764837EA8F145E9 /* cord_rep_btree_navigator.h */; }; - BBA9C2C7DD3C9B4861DEC991A9A946F6 /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C062D15CE80005D21D097E6B5895A4 /* tcp_server_utils_posix.h */; }; - BBAEBD6FCE0D373234BE6B7FB4183794 /* LLCycleScrollViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B10A6028962E1C3BB71E4FC895BE27B9 /* LLCycleScrollViewCell.swift */; }; - BBB8C061AE1E1985185C27479FC14C23 /* memory.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AE217028E33B974468AE83533B882FAB /* memory.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BBC30782B0240C6676D0A293DA9816FD /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 52D614D0800ECCBE32CAE34C0DBB1237 /* error.h */; }; - BBCCF94022AE72627A8B9F66042DB00B /* typed_struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A44D1EB2AB7E778D3E0B3C5CAD12690 /* typed_struct.upb_minitable.h */; }; - BBD660A3BE6184E5D986409D02D54F09 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 941E73E0ED8B27F66A42AEC3F17851DF /* flow_control.h */; }; - BBD7735CD910BC81E0D363A59A444B0E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED71A0C3595E6ACC8811991BA00F1D2 /* internal.h */; }; - BBDD827116497F3907B3DF59B2897A1A /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = D579A93E0E5AD9762D35ACEA265FBA7B /* oauth2_credentials.h */; }; - BBDF0632E73B41F6E1D87CD54F83DA9D /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F961FF3A9FE42273D2AB0CDE2D478EF /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBE055E8E8E5F63D87029398F4A81DA9 /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D58D409A88F98DCB241916B8CC88DAF /* utf8_range.h */; }; - BBE169BFEF00165C4EEB78B4D2E613F4 /* def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 45D0AA0A076A5C9B6DF7E3F99E3F0BD1 /* def.inc */; }; - BBE508925DAA8DC0FCB84FCA5F710B72 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B99F33156E9271B5B8424AEECCA63F76 /* cel.upbdefs.h */; }; - BBEE1D543EE0A27E12172F22A2CBD124 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B80D76DF1DF0AA8186435405DFA90D7 /* FIRGitHubAuthProvider.m */; }; - BBF23C637BCD3264AC0D99E79E37E0E7 /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 5CBD2614C103A2C8149F82E7CE1CD1A2 /* tcp_client.h */; }; - BBF41435E33CFB65AAD45B58621127D6 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = ABBA0CDDBD199E403CB1C9D8B952F0B3 /* client_load_reporting_filter.h */; }; - BBFB24FDFDB29DA91CAD0D82B57D1D08 /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EE827AF0F158269B882581735EAC4B /* audit_logging.h */; }; - BBFB381776FF52ACF1E1D8B7FF04A749 /* int128.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 5556A6E2EC4BED747653E4452746BF9D /* int128.h */; }; - BBFDE5C6F131349C9457E58F796781B1 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = BCD370114BDE3DF743F3F64F6A334E74 /* httpbody.upbdefs.h */; }; - BC06DF31BC9749095F382BE5CD103DE2 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 01380D2F77DD7D2F2BE0BBD347157878 /* log2.h */; }; - BC0706740853CCEBD52413D0A006978E /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96D2E9115EB13753C6A40BAE06F4821D /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BC0A550C92F9EDBFD3A187AA26A3D88A /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AF0383E1A98B7BEF1F038440B7C8E84 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC117DEF0CEC8CF39EB82292A7AEE75D /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90671642C880A2B634E2B42299D08AA9 /* xds_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BC16AFDE4BAC1CD19CDE329F20CC6EC4 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50FE6A65CB8B12E8CE0BA1CEDA1995F /* CallbackQueue.swift */; }; - BC1801AF696E8205F30620E790BF60FE /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A0A33217505676AF2EEFD2EBD3A269A /* grpc_method_list.upb_minitable.h */; }; - BC2250EC62F2374EF85AD5245119CBE1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 08CE8E4B2CDF664E40FF245F34E0F716 /* internal.h */; }; - BC2531D3E5B7C08299A95F7CF0A42366 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A0F2D53BF2F92DE065DD815132EBE70 /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BC2A1FED698A214EE596DE236156DD01 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1F62805561AB9B0E9709B248103F7EB /* extension.upb_minitable.h */; }; - BC30B817FE873EECD1CFF5EF9E1D069C /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = C91DFB2A46C3063B7CDDE38702F1498C /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BC33047B55F02E671B4A86A777DE4137 /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6F44B499886DD273F16C3057F5A95C85 /* buffer_list.h */; }; - BC3761435AF9E0BD64823B29E88C1FFD /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = E47EB53D6778008D6569E7367EC3E7F4 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC419920515B37D3C745FDE5E3F57748 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 64B783F76935504F20E497D21A13C190 /* file.h */; }; - BC42DACCB213D1E60461F489B8984FCA /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 83E62B6D7D9FEFB3814813C86F4061EF /* semantic_version.upb.h */; }; - BC43CA60BF973CB0299AB25AAAB9F4C2 /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 949699F686551496E0DD26B33850AF33 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BC4CFACC153F2B16366BD4FB201812FA /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74DADAF4B81B5C3CD6F497AFDDF11BE6 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BC5A53F94EAA2F46352749E54BE69838 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BB865A089A34BB2888E578607D9E23A /* Source.swift */; }; - BC608DB5FF7A4482E560D5E06FEE0CE7 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 073D096CDA61B89AD8AAD8D84F4CA3D3 /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BC664B114589710930E0B48EAE0FD4CB /* FirebaseSharedSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA75C36ADE8F354E13F71641C3AE8C64 /* FirebaseSharedSwift-dummy.m */; }; - BC68840C06F2403B00DCC29B320080F2 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BE6583A7EAE3880DFFCCAB8F9B276766 /* iocp_windows.h */; }; - BC74FB79730A681A6C2BAFFFA9C1BE5F /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 16201745122473603DC1B63BBCA9729B /* exec_ctx_wakeup_scheduler.h */; }; - BC76AD5445A627C698932AF9D804B565 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B19C041FDCA67B2FFD930028B686FDB /* fault.upb.h */; }; - BC79B0CE780C686F30568FC7F7BC4438 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BB28089A8D2B0AC3599F8CF30439F67A /* posix_endpoint.h */; }; - BC845CA0FDE9979407EEFD497E8DA7F1 /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C71CCF03FA0DEA38FE829C5B831D0FB7 /* token_bucket.upbdefs.h */; }; - BC91C00D2EC3783CE3FCDEFFDB2AA011 /* waiter_base.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F88A409A6669CA9BE5D820AF941419E /* waiter_base.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BC9F451176BE8134605FD6618B807CCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - BCB48471E87BDEB0969D238E69B736B4 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FE93E2D84E2C090B368F0B66D459EA /* stats.upbdefs.h */; }; - BCB5A5BC84FDA28237263FF3D8B7651A /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8C244B2822C6F8E354631B271CE20E83 /* symbolize_elf.inc */; }; - BCBAC4EEFBBDBE100E4514E222C74580 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 5EAEE78FE5778C8E624ABC71174E3ADA /* status.upbdefs.h */; }; - BCBD8E8564A20B982C93674F790E064B /* ostringstream.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E6025EF17A97E73DBBFC2B9E8E1DC07A /* ostringstream.h */; }; - BCBF92B515D1650BCBC2F0F572C175A8 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6092271B84334B21B68B0F300E2AA6 /* FIRInstallationsIDController.m */; }; - BCC47E6CD4252E336D02ECC36D80E5DA /* crc32c_inline.h in Headers */ = {isa = PBXBuildFile; fileRef = 160FC5E28CC9C995F284163D93EB65FC /* crc32c_inline.h */; }; - BCCAECBE325B1253D2C7EFAC4F5DC1EA /* if.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = CAC1A1BACCE579E33672F8927136D636 /* if.h */; }; - BCD07F6F3D57E746B4DEB85DCA77D14A /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CD19D861EFD0097D8403A664140EE277 /* empty.upb.h */; }; - BCD3DDAC4907CDF27124A5CEDB4EE4D9 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7E223C61A74AF0204ABD50FA142C086 /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BCDAF8BDF5BFE6B771C071FC9858FE61 /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9254B411AFA07B5589884D70D84DB1F1 /* ping_abuse_policy.h */; }; - BCDDEB5045616BD30EE56DD5A68B8081 /* FIRCLSNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 939D524C38100F8303FF198514B148BC /* FIRCLSNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCEBD80A089DC387AD05E7F68FB6FD4F /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 6A2F2AB0912C081E8C6EC4C6A43AED5E /* oneof_def.h */; }; - BCF0E67541FD40F63D645D49696B9C7C /* stateful_session.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C612522CFDA41E333893542F344A585 /* stateful_session.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BCF2267921D95E67B30F0D9DD6D37DF9 /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F9FCD0EEB72F6C2050E16B13208F72 /* tap.upbdefs.h */; }; - BCFC1E610457B40404E9E12AE4E535BB /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EAACCF7A3CED5055F79C16E65F68637E /* versioning.upb.h */; }; - BD00458A3D1D377B0CD768614E4EBE45 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0789593703FE8FA228D7B42CF50C482 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BD05FAA109B0E8243E4C0290D5185A45 /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = E45E5665FF6AE072FD4E1F8CF4E524EE /* sleep.h */; }; - BD111E93AB05CCA7A1F6968E56326B67 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 34100FD6875F6B0F22FF1F99DCA980EE /* init_dump.upbdefs.h */; }; - BD118456D79ABE8510B124A4BC4C110A /* span.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 6958AC2208A1ACAC6084F525275F8FB9 /* span.h */; }; - BD163B40C7EE5F11034DCEE469FAC113 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 16EBE960F061427AC986A47CE6DE34DC /* config_dump_shared.upbdefs.h */; }; - BD17F52E77D15FF085669F7E163D27F3 /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0EB057068F2DD0F1271BC67B0CACBB /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD1AEF98283364FBD2F5C68A9867A1A8 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = FD5B91C5982995EB7FA409E9DCB15C97 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD2CB1F3FB4762F084F9B1ABD212427D /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFD1FE92210CEBB77ED2D4D91939A8A /* message.h */; }; - BD47CB74CD9B2B4D2D942C9B65748DFB /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BD64650E40114FD588FE9CA01AB5CFC /* SnapKit-dummy.m */; }; - BD49922E63D4B31CC0FAED7DFC1D4AFF /* listeners.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 63E34B3A57657777EF8D9C88E5172EC3 /* listeners.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD4C2D0C54E8981B152BE5C47A158B90 /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = D087BCE0E62DC8F528870274F35581B8 /* fault_injection_service_config_parser.h */; }; - BD613E86B58F7219F0E168878923A0E7 /* cpu_aarch64_sysreg.c in Sources */ = {isa = PBXBuildFile; fileRef = C9E035A37F58FA10D5CF67053544A588 /* cpu_aarch64_sysreg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BD6E5F54CF6A81697345322983E9C820 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2915223D9C09EF627C69E48C0C18C18F /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BD761158CDB67408A1292D00AD0C4DA6 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = AAAC593E2DC16CDBC176A1991A486262 /* delegating_helper.h */; }; - BD8073F2424446BEB24199243D8A6633 /* config_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 961EE1349B1C94B683BD8DB06522704A /* config_dump.upb_minitable.h */; }; - BD82BE56FE1C2EC24273A80FD9A8E7A5 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 53022787AA4C2FA7717396CF30C3B88B /* FIRCLSHost.m */; }; - BD85196C13B72E70CCFD32259976B87B /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = BF44825C602E05ECEC0B36CBA2F0D60C /* method_handler_impl.h */; }; - BD87440CFD39FEB9E865A762D9F615C4 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F589F964E045227EAB11A056EF9B4F /* chttp2_transport.h */; }; - BD94BB0E74B802E8421DF9A977AE1E7B /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = F550FD3AD7B46A24694AC4C46D290CB0 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BD94D214746222FF1D0C94E95B1E146F /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FAEADCDEC1A285DF5CC68A1BB55B0F91 /* regex.upbdefs.h */; }; - BD97F4D5BD488A125B0498A8E47F7A06 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62DC57E253D3CC7846B19D2CE06C731F /* range.upbdefs.h */; }; - BD98B1B345BADBF08B955D492393C650 /* message_allocator.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 969FD5E363C430184C5200B8FE207041 /* message_allocator.h */; }; - BDA22CF5DE3DA27D2C0BC90EB93D0978 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DEC29333BEC95E8FA992C1D49D7955 /* auth_filters.h */; }; - BDB0719BFF6C06CFBCE7EC097E68BF98 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD807C0E6305A0567973C80989D2EE1E /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BDB0D366D50DC159FCEE369EC7A5292E /* tls_certificate_verifier.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 86664BBF1105BF456CD8F60D9C5D1DED /* tls_certificate_verifier.h */; }; - BDB45962E822DACF3AC9D3986690E9B6 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FCD6836A724AEECFC642EE795011CD4 /* FIRUserInfoImpl.m */; }; - BDBDC31CE91A4DF35B6046E63692EF36 /* audit_logging.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0B29A39BB54A85D471A83DFB4A2 /* audit_logging.h */; }; - BDC2E4F917B1EB9675180D2E307A1DA9 /* cookie.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C748F413DD8C977AADDC94C22D62C71 /* cookie.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BDCEA379E91906E7A3C3A42C9E91FCA4 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = E87169A1474CAB20AAF92E65BDDFFCE6 /* dns_resolver_plugin.h */; }; - BDD98090B317A971F82CD813013E7DF1 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D0F9CA543A89CA9EA719F1ABE27CA9 /* client_context.h */; }; - BDDA14B493F1BCCF8838108B517DDE94 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C751199D2883675433C98FC6F9DF4A /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BDDC5777863E80AE3BF7B0BFF47C064A /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8CF2386EAB31DFF03672FF26555333 /* tcp_socket_utils.h */; }; - BDE1017F403F3FA9D0AF1DB18A876628 /* empty.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 891EF656CDA92F98BF652AB7BEA755C2 /* empty.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BDFAD43B33FFCD37D7BBCA7BC8B51A8C /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6656E1E6001DD5DEAF61E8F242AAD0F /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BDFBF0FD35B5999B27DF87AA79A79E2F /* cast.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FE8239568EE35C9D18D07B0F16148096 /* cast.h */; }; - BE014F9FF903751867634BCFDC48056D /* opentelemetry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 501E5DDCD16727063BBFDF3F0573E1FA /* opentelemetry.upb_minitable.h */; }; - BE0A0FB5D85CD2226290FCCA2A45A40A /* wots.c in Sources */ = {isa = PBXBuildFile; fileRef = F4980AD37ABD0CA1787C9329EC2EF1E5 /* wots.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BE0DF4E60E6563DC318F2A4925B485C3 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E49093A510D0041B0A06FB8A8FC057 /* versioning.upbdefs.h */; }; - BE1E3C846FE8E446E46EC3BB17644EF1 /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ED55DD9CD67FFCFD1945FEA7FF6383D0 /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6ADBADC78CA3A6292D4F2B446975D81 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E196CE5CC1AC6DF99BB40BC4074C9888 /* token_bucket.upbdefs.h */; }; + B6B1690FE7ED2E0BAA2270DB6F2C34F1 /* log_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F578A89C374B1A4A774186FF899545 /* log_internal.h */; }; + B6B4C28401F6B6A732FE602029965C65 /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107AA3A66F84B0DDFB40128582353EC0 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B6B909B0E159F54752E800DBDF2D1F51 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C1717B1A0762C628B47EF08AD76905D /* token_bucket.upb.h */; }; + B6C00A2A56ABE7A2D7E068FE01DE12AE /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA99E45F3B83375C7671E4E270C4E4C /* FIREmailLinkSignInResponse.m */; }; + B6C270C74DB343F812B24187951796BF /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 7004DB89957E893C9DED5646D5ED6872 /* channel_stack.h */; }; + B6D5051398FCFE3915C5E67AFFB19F87 /* pick_first.h in Headers */ = {isa = PBXBuildFile; fileRef = D755FB028C6CC82F2D6ABF9E44B093AC /* pick_first.h */; }; + B6D8A464C1E051492A82D2A354A22BC9 /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0932867096C96EA736F1FD493CCDBE20 /* deadline_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B6DC4490C7B03AF08751014AB16417DC /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 779A10441C0C0CB35B42969F90DE638E /* ip.upb_minitable.h */; }; + B6E9F9C0463EBE3999A2A2E0771E4311 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8D4A60F691F4FB4915EF4AB7A404AB8 /* channel_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B6ED73D1128EC07198C16EBB9E7779F0 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 443163E2E2B9BEA49C2671A5AD0EBBF9 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6FEE7A804551E7EBE3564B2DCFBF259 /* fault.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F20E7F681BAF5F90A479F1DF62829321 /* fault.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B70324E3A61903172ACF5FD7800C2068 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = A52F20127EACF39684B68BC0AB76F5D3 /* altscontext.upb.h */; }; + B70BAF72E4F2F431576A54370D816E77 /* value.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E09DE2071F3742B960815F41C604C4 /* value.h */; }; + B70C1E3B0E00F4B56928CEEB1E769047 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23804509902986CEFDB91AFD781C78C8 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B70D847CC9C5F75B0617A3BC39149617 /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 494095CB78A4739E53D514CCEB45F6F6 /* rbac_filter.h */; }; + B70DF9912ECB5666F997890D0901AED5 /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 7FA9163169B750F4D7E80D87F3D49C18 /* validate.upb_minitable.h */; }; + B70EE0EA3F559937B1034C830628D5EA /* config_vars.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = E894E22BF4448AAC61760F128D3725F8 /* config_vars.h */; }; + B7190B2D5656E5E2435AD399575A96B5 /* memory_allocator_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B801C584BF4505CD18763E9B31C4A7D /* memory_allocator_factory.h */; }; + B71E32DA0DBE33ED391DFF1795E41447 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB319120E1714357859FD50AB4BD9A6 /* sync_abseil.h */; }; + B71E7F7302E40B755B5435E87F3A9CC1 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9A98233DB38C7AA336BCC5312CFA4F0C /* timer.h */; }; + B7201D8766DF8A7A634EB77D6B797268 /* inffast.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 91C0F7D882739E2863604C84602F4790 /* inffast.h */; }; + B735FA12F716EABBC33FA304966663BC /* ApplicationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53762C49426063A9A64CBC55A2A85E1 /* ApplicationInfo.swift */; }; + B73F3CD838299B423754E4C11373AD4C /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = AE65939E62C384EC04C88C231099B7C1 /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B73F8994B638ECCB0775D04BF3A8F0C8 /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = AACEDFA2F10D86E3E29435939170B837 /* http_server_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B7446F9DAB651DE1B8E51FFCED2A7E5C /* call_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 04D939AD0410E9099C2721A7E91012C3 /* call_trace.h */; }; + B751FF3CBD0B12DAF084A9F0922CBB93 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = C0171D55184326B25A02C54FB93C3287 /* FIRCLSAllocate.c */; }; + B752F7C4BECB65894B1F49421049CE5F /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A06280367B42F0171CAD217D096DD81 /* ConstraintView.swift */; }; + B755560081A70BCEDC763EF2A70BD61B /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1E97BC95C47DB17745578984EF547C /* frame_rst_stream.h */; }; + B755E532F70FC0A34B75F1D0AA1DAF66 /* variant.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = A0296BDE48803F43E4FFE9DD1AC10C01 /* variant.h */; }; + B75BDFADB6D963710C2AD327F588F94A /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EF30657E4BBFB3D9A1F2AA472F3271EC /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B75EE9939AB933DA9FECF1224196C0F7 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 69F61D43926CA66D2847523469AADC2C /* transport_stream_receiver.h */; }; + B762A8FF27DF87EFF95F12D7A7B6F41E /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 97F81A41B5F1BF80E812C26C0EA663C0 /* FIRInstallations.m */; }; + B77D20FB09460055D3D7C9387B9E621A /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 227878292F7BA06CD24EC451AACC7ACE /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B79AA722C16FBE11ED1FDE198ACE13AB /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 40AFE03FB91CC3DADDCF9CC4F6887644 /* crc32.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B79B278523950DC475E3A4C976DE195F /* number.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B52763F624FE1C178DB3DD4E60492306 /* number.upb_minitable.h */; }; + B79B355C04EB8A60AA9F4D7D9707E849 /* health_check.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 912264AB4513649AB76199811A693C69 /* health_check.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B7A23CAB93E37120D50C735E2C750EAF /* join_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = F54ED98182C938EF40E6304B598A4C8D /* join_state.h */; }; + B7A3B1F33EDEC8AB2CAD952FE320B8C3 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE4BBA2CAE887150C78A7718B0CE5CD4 /* common.upb.h */; }; + B7A755E33F11B43866AFBD76C4BA2079 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 524A554BC29FBBD5138B67A3BC80F473 /* encode.hpp */; }; + B7A95C426B71F0E3B91BA2D15BBD156F /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE6620EA87AF6F77D9D1DDEC63E6C5FB /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + B7AC27B1A720885B7283A76BD1207979 /* endpoint.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3EB38B7074B706778A9CE01D75D960 /* endpoint.upb_minitable.h */; }; + B7ADC3ADAA4D81EEED58100B43D93F7C /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = D9B6E07F813DD29BCF6BC95D611EE2DE /* alts_grpc_record_protocol_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B7B1C7E17A31178A5E5C058FBA8DFC6B /* windows_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = E075378F924BD71A5AE77BB926D21A75 /* windows_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B7B328CBE99678F47A7E803594ACDE5C /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2B7CCEDCC195347F2A9BFA3AE3959CEF /* time_util.h */; }; + B7B4B3D6A6E99CF91C1CB30EBD1BD3E4 /* grpc_library.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = CE57A3E9106A6C13E5339161379E413D /* grpc_library.h */; }; + B7C080A77AFBA20C6AC509A3603F1818 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 30792D766F3434E8E096EEA8D1F63734 /* sensitive.upb_minitable.h */; }; + B7C21D071B8A0DD967916E1EDB68D75D /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 0C34EA1D81D6DE38C6958049B259E303 /* binder_connector.h */; }; + B7CAC94793D355C73CF18F6FD080713A /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E2E40501E6A28ED3F6AE0910D29C3796 /* extension.h */; }; + B7CCCE7927CEB64923ED5270DB9DEE33 /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9DEE1C96E8F7DE29E056220373832726 /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + B7CCCF6ACE895D33A3FBB037D28B3651 /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D44AA174CA288C9830369D7FD508404 /* chttp2_server.h */; }; + B7D1C2707E888611F79AEC315D2B2F43 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F8AE9B84550090208F9DBBA4D8552262 /* internal_errqueue.h */; }; + B7F3FC16503AB1D2F9897EE1AB45D6CF /* encode.h in Copy third_party/upb/upb/text Private Headers */ = {isa = PBXBuildFile; fileRef = 87E1A17D4BB1ED1CC16F3A6F32CFF564 /* encode.h */; }; + B80A8F4FBC03F26A3210406547287421 /* FBSDKGraphRequestBody.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D7D0AD8670453072B070B50C5D6E03 /* FBSDKGraphRequestBody.m */; }; + B80BB91931562C239452EC61A42CC3CC /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A1295530C1AB4FED108DA79D2704AB86 /* extension.upb_minitable.h */; }; + B8144B1BDBB5E3D0B42F4392EAC456EC /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B6A8F1098887444BECA6204C2AA58E /* create_channel_internal.h */; }; + B81C0A56772A5FBBC1062EA5FF6C0C6F /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC4D8AB712D3AE5D9663742AC12F977 /* x509.h */; }; + B8293391C2FF10209348F55D337D3371 /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1209211DFBF8BB49C4A1146C3B4FA9 /* boringssl_prefix_symbols.h */; }; + B82B48E06423997DA72BF6088940861A /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E8FE934EBEC7075077EA860111A9BB6E /* extension.upb_minitable.h */; }; + B8371FA9FFE52D852E8FFA54846F6C2E /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C31CAC29D50800B422B9F821B07AF454 /* service.upbdefs.h */; }; + B83DA5B53050755A39C64261A3E7AE76 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = F90BC57D1303EAD51A6A1241CBC96667 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + B8436B84517ADD924F00CE5A4F78CDEF /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C29DE4074E45FAF3B5AB542F47D685C /* health.upb.h */; }; + B84533B8DA0548DFBA04D89B849EC1BC /* collection_entry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE2D54F232656A85140CBD7A9A4F3D8 /* collection_entry.upb_minitable.h */; }; + B85300B585B4A55CB5BB4BEDCBDFBDD5 /* call_spine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31D71E4E66D4DF4E9388451C6DACA9B9 /* call_spine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B877F21DA272685EFC52E2B294C50D8B /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3A2872619FB39761007FDBC92CEECD0E /* subchannel_interface_internal.h */; }; + B87E87204B6AA67239E24A6C668D5AC2 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 74897C7A71D6D7339EBCA04B7764D6A8 /* error.h */; }; + B88628E7BDB98D63452E558020093FC6 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E82C036F33D6338E07756855797090 /* time_zone_impl.h */; }; + B8932C6D6331B2F4C9B6BAF2ACA9C071 /* ssl_transport_security_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 434FC5BCA3776D4C8FE2416C48938107 /* ssl_transport_security_utils.h */; }; + B8980BED6AF261C5572EAC125C7DC428 /* resource.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 550EE72EB6E29ED1DADC277A0C4A840D /* resource.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B8A2AD430049A9D0B24BB41323B08782 /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 0DB7202B179C24FD7524B351977B7318 /* descriptor.upb.h */; }; + B8A56DBB1616F67CCB7A6FDB05DFED2C /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 55343926148DBEB8AEB562C0BEFDD33E /* context_params.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B8AA2490D6FAAE89FE4F872C41CD56FF /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1872C4BC867B4898EBB63176EFF738AE /* transport_stream_receiver_impl.h */; }; + B8C0A5C850A7BD5B7E0F5CAD880F94BD /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 8620769AF43AA0431EF5825F8C342B9C /* memory_request.h */; }; + B8C0FE877055668DD05A91307E255140 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3026751E26E14B2C3EC78253F7DD84EE /* fault.upbdefs.h */; }; + B8C2C6F87146C13684597353F2DFB2F6 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 7A676128A9EC4154D3B676ADAC0899CC /* promise_like.h */; }; + B8C3D0DE63D7DCC7913ED883C93F25B7 /* wakeup_fd_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = C38BA0D11326AA1FF198D0CA0BC3C8BF /* wakeup_fd_posix_default.h */; }; + B8C6C5480C14073F63DD5FC99E3DD5EC /* sync_posix.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 982E6AF47234B0BF367B8F531CA0974F /* sync_posix.h */; }; + B8D57E6D3DB7DA42DD5FE817355EDE43 /* statusor.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 64350494672465444512E258A2B05C79 /* statusor.h */; }; + B8D581BCE8B15BDB7FD92A1D67AFE88C /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C598169F32D3E91A4FEE43EC23624F /* range.upb.h */; }; + B8DBDF692DD212E7AD4D89C7866BF04F /* notification.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = B04F90894C8A4799A3264F36BFFE8E0E /* notification.h */; }; + B8E5CA1E1D0999767741CBE6BD95F74F /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB9B83FA710DA177B0AB6E66E58E030 /* metrics_service.upb.h */; }; + B8F389CA9761CBD6B533FD44403B97DC /* DeviceKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF1A21884F97039426B69313CE637C7 /* DeviceKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B8F805542CD2A6EE0BF05EF69361F955 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = BCD101297BBBCAED54D13DFC8979DAAE /* thread_quota.h */; }; + B8FB27501DE68D7FB33D060A2C5889AB /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FE796BCEFD744AB66B3CB7979111BC53 /* event_engine_client_channel_resolver.h */; }; + B90CDB39E5F4DE288F2CEF61EA6A1D59 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB9881DD4F24FB1A01C0C5954F941E4D /* udp_socket_config.upb.h */; }; + B9193C7FDBED772F13553B0C6BFEDB6F /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F6F49928A0B606F2313276C6244B183E /* ratelimit_unit.upb_minitable.h */; }; + B92B4A3042A5B2CAA3AB675F2900D207 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC79DD562693D4773E5B6E18233416A /* client_context.h */; }; + B92B6B5094E4274B5F27FAF516852357 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE5BAB463571ABEBEF2C934396E87FF0 /* api_listener.upb.h */; }; + B92BFC653AE0033F05997F44E742FA48 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 44518A9E00C4BE213AB9A43D27CF4591 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B92D6CD46F7C6EEFCCC6B10ABBA9E61C /* method_handler_impl.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1E052C7ACA7A6848D29E42764B8483BE /* method_handler_impl.h */; }; + B937FD28200C12FFD13A68B35BAB21FD /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA084D5E08EFA07982631F33ACC987B0 /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B94EED52003E3698D3F408DF13B725F5 /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1C22B8F1A786D3ACC9A59B4FBCFB7C8 /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + B951D855331CF4E01CB9C1514FE98ED7 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABE0D3B8C5C7881E6322671DD0A547F /* load_system_roots.h */; }; + B9558C149162F2BF8B6A64DAD88646BA /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D13E1DA7E3A82B67750741E98DCBE906 /* PromisesObjC-dummy.m */; }; + B958CF54C1B3B5E3825BE529170278F4 /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 90997CA80FE3B7B1B33D093C3F33C432 /* GULURLSessionDataResponse.m */; }; + B95CCFEC21965F6CF194DFF91158D271 /* FBSDKApplicationObserving.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D41C4B9560799AA91CBC955AE2C9D2E /* FBSDKApplicationObserving.h */; settings = {ATTRIBUTES = (Private, ); }; }; + B95F4B7864EDCB5D9FBC9A2DFCC2CBAF /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = A80135F3C975E3F6FD234925CB330522 /* chacha.h */; }; + B962B15638303C02233B81D5DDFB0730 /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 833147B97811A9976CC103EF8F21AC49 /* resource.upb_minitable.h */; }; + B97F17E4B9BD6094878E3988F12F9684 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FE3FE99262515E649DDBA2B3D4894A /* alts_tsi_handshaker.h */; }; + B991DFE284F94CDA0BC6F0C82399E520 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8549EFDEF0331B5302C430360D190D83 /* alts_grpc_record_protocol_common.h */; }; + B99D78BD4C47238176BFE179C228D099 /* str_split_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4685FB7AE275E625031BCEAAA75B91E3 /* str_split_internal.h */; }; + B9A5BBEDCB644990199B1BC49875ADAF /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F1BAAF31BAFE943D722E2250203FA /* FIRAuthBackend+MultiFactor.m */; }; + B9A7875867ECB4BE0B23CB5F1B5E2792 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84250A0ADDA35277D8A241F6B461D3EA /* address.upb_minitable.h */; }; + B9ADB8E12F97B6E76AF73B2299585F91 /* wakeup_fd_eventfd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0287CE42A40893703EE25648E5D04C5 /* wakeup_fd_eventfd.h */; }; + B9AF6872CB750C6D8BABC61C0E84B9A9 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB5FE1C2509E3EDEA78CD2398B4F45D /* channelz_registry.h */; }; + B9B04738358CD24D7765DEEF14C7D4C9 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 231E95ED7A7D133B95FA30376DA15239 /* slice.h */; }; + B9B29A128265C4BD60C4B41DCA3847B7 /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 4368E93AB60D22FFF172147A0F16AF1C /* FIRPhoneMultiFactorGenerator.m */; }; + B9BCEF120F5C4B64005D64B693F70019 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 19291C6D5B8A6E42686156C56B21C330 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9C4D5DB74D6F41029D44E603F58BD5A /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CB9BA090055C1E51AA4F7BD573E8C64 /* insecure_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B9C866DEACC69E10FB812DB5932A5C87 /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = F5731FB83409C6F8146F82A95F0906C3 /* FIRAuthRequestConfiguration.m */; }; + B9D29C2A3F05D13B9BFB7451035855A1 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B7900AB73CD17AED4709FB7A88C10C /* descriptor.upbdefs.h */; }; + B9D88CAA2C20CC8FE72926DA37284118 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 7C51132B77F27AC9F39A4C1928B90CEF /* percent_encoding.h */; }; + B9DBDB20A1BD1C300FB7560EF3357C9E /* health_check.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 404EE3170E64678A070C8808A5A11A9A /* health_check.upb_minitable.h */; }; + B9DD2C8F9E00085EE0CCFA13EFB0A7E9 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 70F7CADC88C5CC3CFA8A8AC65BDFC6A3 /* sparse_set.h */; }; + B9E2AAE7258C55536B6DA1542780F2D3 /* lightstep.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D0F2D764AA5077258330DA869B8014E /* lightstep.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + B9E559150528BC555C6ABA34CFC65B4D /* ref_counted_string.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB5C474EB03D710BC548E324C8E9421 /* ref_counted_string.h */; }; + B9E8421275C0517196392CBB61D0124B /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 889ADA06A2820CA2210FED703CCEBFCF /* ref_counted_ptr.h */; }; + B9EBCC8C9C4B112E84989523886712B7 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8F6FDDECDB9D3A3F599F72F483A816 /* cord_rep_consume.h */; }; + B9EC9C1CEEE4770F581960F1F33BF231 /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = A26AA116C8A5AB74584E4602E6B31EC9 /* aws_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BA0457A9F8D82E6D6F23E78197282A96 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24A12EE70C116D228988B6A39183EC56 /* http_protocol_options.upb.h */; }; + BA0ADBAD1E930E44921CA91C07337770 /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D6255D5DE62C3088F607BB62729913 /* clusters.upb.h */; }; + BA0B94E4AF4074E935BDE3416BA09253 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = FAB9BCA87BB35C21F254C341C9E9B59C /* FIRInstallationsIDController.m */; }; + BA0E50E2822A3F31F007EF9623FBD001 /* cluster.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DBC8CE3D14BFA92773EBD98FF62E684 /* cluster.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BA0F3849F7FC12C2EB6D477D0E62BCDA /* checked.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 933ED63F62234464CF4A17EFF6E6D7BE /* checked.upb_minitable.h */; }; + BA121ADAFA123413C86FB9A90D22AFBB /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F7DF0B3CF4C92D506DB86659DBDE57B /* semantic_version.upbdefs.h */; }; + BA12FABC77F48A46FC04EBDA5B5B8C23 /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D3A2FCE400F13E82EA6DF678C73D27 /* FIRSignUpNewUserRequest.m */; }; + BA15B9124C5288E9ED3D5D8A4DF2C21F /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B55BE2F8A77CFEF0F4C987B504AA42 /* range.upb_minitable.h */; }; + BA1916D013991579A6691589C2057B7D /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE75EDC6D7C6E600A9C243965C27649 /* grpc_alts_credentials_options.h */; }; + BA26D815C2B660485C8057862916C4BE /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C8F047EC3B8419CF9FAD9744AB1A2F6 /* api_listener.upbdefs.h */; }; + BA2CC6C16FF43EFFC456C7B8B85306B2 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 763B3E3F5F78309ED2470CF2D66B8D73 /* http_inputs.upbdefs.h */; }; + BA2E87DCB22A239FCDA4E66C29B8C2E8 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF17C3458788C05AFDB89EA3973139F /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA3D09C44A49C2D1AAB7BF850EEA69AC /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = DB28687B92F79499B12356A4097386C3 /* http_client_filter.h */; }; + BA3F7FEEFDA20D48A6F1938F935096F3 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 64240D08B05B03EF0CAD692BEDE6C2E1 /* dns_service_resolver.h */; }; + BA43491933622BCC5D6639A94B909668 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 786C8803F62311599F12EBCEB0939F1C /* timer_manager.h */; }; + BA52C7F0652E5FFEDC632CADB6F1B01C /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4DD777D6F169B41890D3EE243D4130 /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA53161A0DDA3AA1C50EF24C59855C0B /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 595B255BDB35907B155E4B1F1B6CABAD /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BA533D9EB5E41D5FBDD3914127E2C7A1 /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 77964661B7F137B33FE80968D6BF1EAB /* http_proxy_mapper.h */; }; + BA57D3CFDF5255244ED3A0CA4FD9BA08 /* event_log.h in Headers */ = {isa = PBXBuildFile; fileRef = F65543549E0B682661B30D5BDA5B2575 /* event_log.h */; }; + BA5D56E95FCA0F7677F25108B005267A /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0A1F7A146A7CF6492B9ED25FE567DE /* default_event_engine_factory.h */; }; + BA5EE8940FE083D6A2C3F248D52DDD12 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8011E959B383EBA41BF99E35077EF089 /* GTMSessionUploadFetcher.m */; }; + BA6BA32171A60F930ED93C4ED35E348E /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A17776465696BD8D86B5B3D3E4ADA84 /* server_address.h */; }; + BA733CA5ECC90AAEB5F137783137300D /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 03D2ECB2ED698DF05BAF4E1F12847303 /* FIRSignInWithGameCenterRequest.m */; }; + BA74037CA5193C09F680E8A16D371C66 /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 60DAA00871C602FB27AF93175F8C1562 /* message_def.h */; }; + BA7CB84A4BFF37B8071C1A5BBF9F99A1 /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCE170CDE3A3C8890B9E2F69231E9F38 /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + BA8594BD5DCB945F2BC043CE57522F41 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9505DB34B0C4EEC0F865510FDA8B32D8 /* core_configuration.h */; }; + BA89BEF17014A080AA46EA74DB36CB81 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70A0E2F5F961481198732507978F50C3 /* stats.upb.h */; }; + BA8E4A432C36655F7F3D6B5CBEA38835 /* descriptor_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F19150CA4F687D5EEBC98393D97AA2 /* descriptor_constants.h */; }; + BA942E5E1D9B34FC710B7B6FA10AA31A /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = FED56D4A0E67ABEAD3B54E0F8A1B87CE /* md32_common.h */; }; + BAA2985BB468040C3C65B74B6A26A9A2 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D63AEC5776C2570F3BBA290131277B /* transport_security_interface.h */; }; + BAA5C74A6E3E229EA3AFFE683AF35646 /* unscaledcycleclock_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D1CD83F62705A6D8AE4FC386BB6617 /* unscaledcycleclock_config.h */; }; + BAAE382120AD4A04658954702540A17E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29AFE3E2D3B9CCBE7DC0E6A4E606E9F9 /* range.upb_minitable.h */; }; + BAB17A1C6CAD14B3788973EAF8466C93 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A518464657B4CEBFDBC5469F63EC4E4D /* NetworkReachabilityManager.swift */; }; + BABA643C7E026FF8F0117702AA9379F5 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = C167C10D459E66C58FF34A745A8FFA10 /* alts_security_connector.h */; }; + BABB873EF1FE7F5992F61480D738BCC2 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = FA927C16905B61252CAA06767A09E9D6 /* trace_config.upbdefs.h */; }; + BACB36CBA02C6919C90A119D1F1733B3 /* FBSDKCodelessPathComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3594382C8CC8D8E0AA5C3E811DA4604B /* FBSDKCodelessPathComponent.m */; }; + BACD451C113933130E49D3C2D579E53F /* FBSDKErrorReport.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BAC9388C6A05C23BF7A17742D28956 /* FBSDKErrorReport.m */; }; + BADFBCE657D079B7AE5CFD3973A1F5F0 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = F94B3D1B09863C0AA114DB7BBD44A161 /* unicode_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BAE2D95F2E6C41DF8D5CF5A1F7ABA3D2 /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8E1952C7FE7F6D956A0ABDFB0876D1A /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BAE4BB90A3B8B66C304B1D662678983D /* proxy_protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E5440E0B36F0D6BE9A19465DE47C61 /* proxy_protocol.upb_minitable.h */; }; + BAE6BAE4FDD9C65B7BA106614AAECBDF /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = F3091E2712308EB93EBED0E0D29DC895 /* context.h */; }; + BAEDCEF06965D21E4BC1B58B26555F89 /* service_config.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 9284538AE559FF562D95575CF09281D7 /* service_config.h */; }; + BAEE2DC336C06DDDC191C47D7D0D146B /* hmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1752AD3C64885B6AA49EFCA1BD2150C5 /* hmac.h */; }; + BAF80198C4282BBAB5D7D38AB083C448 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A6A35572805CD3C1AC86BF8DBBA663 /* connected_channel.h */; }; + BAFBFC82AB3D0F09F130513E76AFCC1F /* traced_buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC10A21DAAD49CDD9FB655B37A36417 /* traced_buffer_list.h */; }; + BAFD9DC44354AD72CF269756802D06B5 /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5F2D23C39D8ECF783244317E257876 /* channel_argument_option.h */; }; + BAFF900C0428B7ADF0E85A9EE2DAC890 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5836F92ACF1457466911CF016FCAC0A /* Settings.swift */; }; + BB0D7ACE5EF413E9258A925C4E2EF6AD /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1743B4BA2782AF21ABAE718EAE81702 /* opencensus.upb.h */; }; + BB128F0AE8A5419F02CB4949410CB624 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A714E396256E4F85E297C2AD2C3EC60 /* slice_buffer.h */; }; + BB23CD70E6F81D724E22EC788506CD6D /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = BE35531EAB0F377AED136B732A0BF636 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BB293244951378F5B7045CC4EFD5C777 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = B89336E73194F4FA9F17C841C80909FF /* httpcli_ssl_credentials.h */; }; + BB2C9D3A860CDBBCA73E7E8BC09B3C10 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 18BC9C6C924EF1C32451C6F1DAB6DA86 /* sockaddr_windows.h */; }; + BB2CA38B1A81DE075AFDDB44332D51D6 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = C11C8B1B914135B195B679DE8015B0BC /* cancel_callback.h */; }; + BB2F3C9D5B45590260B8CEEA01DB801E /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 67F774B71FF34ACC69B987BE6B197190 /* proxy_protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BB3BB8F524B77335AD1447AAD5BC1B3B /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 5AA9049F6464A13F299F017372C06A2E /* builtins.h */; }; + BB3FE724B3117993BF708E6A5F37DAE5 /* endpoint_config.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 96D63DE9855032D6C2ADFB43B232F698 /* endpoint_config.h */; }; + BB3FF305812A0D94668F40016B624DBE /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2DD04C9E722428287419E41DAF747562 /* listener.upbdefs.h */; }; + BB4027C3A75F729ADB3AB62316AC189B /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA8BB1A2FFEFFD3A1938C110C1D474D /* authorization_policy_provider.h */; }; + BB425C4AE3F5A0B1A170F92364B48ABA /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BFC10A21DAAD49CDD9FB655B37A36417 /* traced_buffer_list.h */; }; + BB5C58CE30F71B05A5033260371429C5 /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = 943A82D6E962FD0F76A8C51C2574335E /* unique_type_name.h */; }; + BB63B2BB94FE269FBA5AE3B92A1481BF /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBB2EA5F6AEDBD8E64EB156B045D5356 /* socket_mutator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BB65CC0220E32B3919C254BDF2CBBAA9 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = A938EA43BF2C02D13B5F872C4FD7C96E /* validate.upbdefs.h */; }; + BB726F87F1E87B6BC2F3990E99B53780 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 80FE5EA091EE4D56063D8D0083C4322D /* constants.h */; }; + BB82D69F8B4E7915E9814CAB08230CE3 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FB3C8DE92AF4317F95A706D381203911 /* xds_certificate_provider.h */; }; + BB8D0731BAD0472AE06A0E2C3FA18B1C /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E626B20F6E5B43F313859E1B7A9DA91 /* route_components.upb_minitable.h */; }; + BB9402FB33447B64E87AEF14FDA93FDB /* zutil.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = AED687A52D8EBF4B959841FA11A22CE1 /* zutil.h */; }; + BBAEBD6FCE0D373234BE6B7FB4183794 /* LLCycleScrollViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D91DA0EBDA4CE65333DE7DA61AF60D03 /* LLCycleScrollViewCell.swift */; }; + BBBD282CA22A521B9D7FFFB921A0BC24 /* backoff.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2583491FCED8BBC24A84867A231B41C8 /* backoff.upb_minitable.h */; }; + BBBE3B1D9C31420902B72DDD0DA4C4F6 /* stdout_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = E8421D0BF7F26B9830B73ED34DA3FE5B /* stdout_logger.h */; }; + BBC91FDC8DB5DFC601463258BBCBEFE5 /* protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4273EE544A82FC13F1A09DC66D885FAA /* protocol.upb_minitable.h */; }; + BBC9B09E90343361F3DF46665CFFA020 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7BF6F268D29CF47170A71E10FC03D7E6 /* extension.upbdefs.h */; }; + BBD5B4D11462667176D7E795015A4E1A /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C67C6382BB3C316B3F63A3160525212 /* GULUserDefaults.m */; }; + BBD7735CD910BC81E0D363A59A444B0E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 50815940A06E0E6359EBCCE5F1A4F400 /* internal.h */; }; + BBDEE312FC3F1B9F3C6593F1111B0FAE /* api_listener.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B52AA3DE95630BB9B0C8541FD2B03BAC /* api_listener.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BBDF0632E73B41F6E1D87CD54F83DA9D /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1117A23CA1FF731269ED88C74A473F22 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBE1F78BF5D5E779BD2929FC4DC5C863 /* lb_policy.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 612F8FD838894CB54EA46A6412215D41 /* lb_policy.h */; }; + BBE2FACBA567E4B6FD4BE81DC88241B9 /* secure_auth_context.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = C4697ACBF6B857A5D9177A7241D4342F /* secure_auth_context.h */; }; + BBEE1D543EE0A27E12172F22A2CBD124 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA48D5F53F48C9670D5122BC174C914 /* FIRGitHubAuthProvider.m */; }; + BBEE97BE0431D62855C0353C491A6147 /* tls_certificate_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 4EB22D8479953C385023C703888B32AD /* tls_certificate_provider.h */; }; + BBF75921867A47EB70092E9DC62E9E9C /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AFAE1E6E630E8E92673CAE44BC6990B /* GDTCOREvent+GDTCCTSupport.m */; }; + BC0A550C92F9EDBFD3A187AA26A3D88A /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C68A21979A5701E0762F785062A91715 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC11A2D32004F8584C2BB29890D91611 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = C39B0DB98A88997FBFFB8E04932610CF /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BC16AFDE4BAC1CD19CDE329F20CC6EC4 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FBBF0CF4012FC71E2BF3C0B5999235E /* CallbackQueue.swift */; }; + BC2250EC62F2374EF85AD5245119CBE1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB2E4DC45AE160134632103B0C3B3E6 /* internal.h */; }; + BC2531D3E5B7C08299A95F7CF0A42366 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 61646348C0745F04BF0787A06EE05F5C /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BC2B3ADA1D0046D9D3D49E07D3625BB9 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 141D3DA28A772A04C0B384CDE86011A7 /* decode.h */; }; + BC2CC0281EBB61678D431673E045520E /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 804C6E0C9AA4CED2E0898F110D415951 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC30B817FE873EECD1CFF5EF9E1D069C /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = 1016E6E1748E459E95FAB3CD0976C099 /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BC3761435AF9E0BD64823B29E88C1FFD /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A4AB9FD815B0446BDC5094B8AFFF47 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC4550C8A4781B2AE000731E06080C94 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFB5B0444B6AF06ED7326A54D0DD973 /* json_args.h */; }; + BC5A53F94EAA2F46352749E54BE69838 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 931B085355A02EBC1BD4C7814773A4F7 /* Source.swift */; }; + BC63B372F1C7C57D869277014F867103 /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7042932D70157E3D17EFD3061757BC /* scoped_route.upb.h */; }; + BC75A8EF83CF62BCB113F4A14C869B96 /* proto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A6B4C0CC047A76AE4F8180CB7DC1D9 /* proto_utils.h */; }; + BC82F5A6EDB9A6A49001D643D30EC777 /* config_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = E894E22BF4448AAC61760F128D3725F8 /* config_vars.h */; }; + BC84FCBB241A96655DE980C226EB7F2F /* cord_rep_flat.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 435B26E13F90F44DCA5F4B6F78FBD705 /* cord_rep_flat.h */; }; + BC91CA31ADC37C6FEBB8797C9273C8DB /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 5CE1152DA7C2F322D2B7FE91C5F7605B /* match.h */; }; + BC92A5FDB826BAE098EB9CC921F162C0 /* http_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB6D0AC17241FAE4E8B9C5E4F67DA9EF /* http_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BCA3557F27BF922F5C6A815064B6EF2D /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = D8561CF8D419E68D8EEBC3070CA73CE5 /* match.h */; }; + BCA7B2899DCC75A6476635A93DB488F0 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD16BF22814106C3659B73FE770D9C3 /* hpack_parser_table.h */; }; + BCAA4B095B2009CAD40DD10AC52B3EC3 /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = F388EBE66D442CA345A28570094C8BA3 /* altscontext.upb_minitable.h */; }; + BCAAA545741BBAAECBDEBB2EE1486BE2 /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BD3406AC63C6D10A900373C56543E0D /* client_load_reporting_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BCB0D7211B1707A65CA492D129946243 /* FBSDKApplicationDelegate+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC9772CF41467F7EAAD3F200EDD61D6 /* FBSDKApplicationDelegate+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + BCBB1F5DA26FA5CC91637A2F2A4C35B4 /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF1761A0AD8E9E8D5BB19E57FCAC04D /* skywalking.upb.h */; }; + BCC6C69E53D7DB2DC817FDF5595FA5D7 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C21FB8CAE63667062A9FFCD9F1E0DF22 /* low_level_alloc.h */; }; + BCCABF7337483D8E94109431BADF5601 /* stringify_sink.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6BC43F547097C6D0D474F81E1CD4D72 /* stringify_sink.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + BCD3DDAC4907CDF27124A5CEDB4EE4D9 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4673A8BC268A80AA65FBE1AB1121976D /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BCD8B59C38DBA8A508FDEFD3AB9398F6 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B3B5562203FB2FF7D5109920BEBE21D /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BCDA57439399B9A5DF6750BE4A88F749 /* FBSDKCrashObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F5BB54DF30086409D74491565280A4 /* FBSDKCrashObserver.h */; settings = {ATTRIBUTES = (Private, ); }; }; + BCDDEB5045616BD30EE56DD5A68B8081 /* FIRCLSNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA554F14CD6842A5EB7FA2394D44745 /* FIRCLSNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCEA89C0F36DEFE08D141E380CC90CDD /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE96638582EE7A76411ACAAE0392254 /* tls_certificate_verifier.h */; }; + BCEF21054B9C79BBB301D7C797C8430D /* bitmap256.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 917E7A63F6A259537A31F5BFB8A06B2C /* bitmap256.h */; }; + BCFA60C7F5BFFFFA387E50253DBFCF77 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F62CF030A6969BCAB4FEA174EBA63BD7 /* base.upb_minitable.h */; }; + BD00EA2541165465AB6C5AA078F24E10 /* posix_engine_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEA5E6064A8A26F9328534D40C9DE5D /* posix_engine_listener.h */; }; + BD03EFD99BCCB9CD77984330BD3265D1 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C94692E649EE9DB84264235FB14AEB1B /* security.upb.h */; }; + BD054639F75EE105D6C7AFC2AA5287DA /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03C35B88F6B933A85AADA9F88A26BEC2 /* server_info.upb.h */; }; + BD102C082B51AAD655B4250646105C24 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 3F1E2F3A7634A730F5AC3D41FD89688E /* frame_handler.h */; }; + BD18740B3816A90807C9F7B3C7E3F0E4 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BFB148EA77696C6DC32FEDB5F46BD9 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD1D5795945BF7AF969BAC867E08EFEC /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B99FCDE13B9F55305ACF7365AD04D42 /* secret.upb_minitable.h */; }; + BD29A0F0421714A86ECE60A1784B4F82 /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3965192CAF7FA502E5ED1963E0D48D2A /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + BD2A25ED8F6AB78D78940962364258F0 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6CA0C85F3BAAD0211719BB8870908C31 /* common.upb_minitable.h */; }; + BD30E4A383F67BC4806835402C12DF24 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A938EA43BF2C02D13B5F872C4FD7C96E /* validate.upbdefs.h */; }; + BD310CDB08A977CFB7413406E21DAEA2 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E411F52F3C14C5F917C82597A74E330E /* huffsyms.h */; }; + BD3D6AE7AFE7116C20A920E59D7DB668 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF905A962D4E3CE761C24B135F8F834 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD435B143B356ED26F6B96637556EB58 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 26188589D07D58FB4860C6A3F2B68A30 /* strtod.h */; }; + BD441C865E2E73F3BD3361845F244BEC /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA308F9CC9D9DEC44536CE346343F6CE /* transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BD44E5816D455F67CF2352467AB9734F /* shim.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16E1A4394AB8E3DA6180F6832DD50576 /* shim.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BD47CB74CD9B2B4D2D942C9B65748DFB /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E90498893AD9CE975D60D4D6079F268 /* SnapKit-dummy.m */; }; + BD4CE22BFF44328C6968DD429865B23C /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCB4D7476A3D508952EBE917ECFB9EE /* transport_security_grpc.h */; }; + BD52625C289DE7DD91328727A94DBE9D /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F7CADC88C5CC3CFA8A8AC65BDFC6A3 /* sparse_set.h */; }; + BD52D9AFD65B61E66F695C8099F0E467 /* histogram_view.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = F0147FC6C6D1D435189006A306B052D1 /* histogram_view.h */; }; + BD589EB2762F6B776667E8314223513B /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DA6FB2B8B4315AD56C09D2059C002B5 /* sockaddr_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BD613E86B58F7219F0E168878923A0E7 /* cpu_aarch64_sysreg.c in Sources */ = {isa = PBXBuildFile; fileRef = B1016DF3528BE8D6D369754573F1DCE2 /* cpu_aarch64_sysreg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BD6245E96244D0189AC947E6AE2ECF5F /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5771443423FA363EB9D2298AAC5E4642 /* cidr.upb_minitable.h */; }; + BD651454F0CC90E6BBD8D963DA4C8251 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = BC3DA1381CF8C86CB778ADA307BD9416 /* duration.upb_minitable.h */; }; + BD68E1E5C172CF074494C4CD8BDCD8F3 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3010184C3F5AE764360B4D368A66CEB3 /* channel_trace.h */; }; + BD6DF13B69BCC11F777121CD0D921621 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEEA5E0B38A3AC1B42400F69FB7F740E /* _ObjC_HeartbeatController.swift */; }; + BD7649107D9FDE6CEEBF95A4744315A5 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3904B0C96D501803FD008EFE03257767 /* port_platform.h */; }; + BD82BE56FE1C2EC24273A80FD9A8E7A5 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBD18CB2920F8256BE800168085AD84 /* FIRCLSHost.m */; }; + BD8CA88A8E6B8F0BF76C54EA00EE1CDD /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = E9394562D6EFF6FF36DCDB20C5A0D387 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD9035F28B1866315C1511B2AD47A138 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE1120118923B37A7C51A64A96B71CCD /* examine_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BD915EC55DFF9D57C1062C31075C2673 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 227F52B69264CCB37E594C8E1E6EEF13 /* struct.upbdefs.h */; }; + BD9796305EBA7C98326627D727945C92 /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 7A3BC0190DD99D884CEC7A01BF37D93E /* field_def.h */; }; + BD9944C87D66AEE9163F6339A6A43D8A /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 877B6410C6BDBF35A7F6B154D96E73A3 /* connectivity_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BD9AE4FD898CE11C78FF25F4C94F920A /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 286F5B56B89634F5CE73BC95E2C83EBE /* service_def.h */; }; + BD9F676408B24925C5B40D4BBFCBB9CE /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 4031E3A7FDB0DFE95508A132581BEB66 /* stacktrace_aarch64-inl.inc */; }; + BDA251890E95A42484757BD2F372323A /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C005079393957EFBDA81927AE2AC561D /* alloc.h */; }; + BDB0A4CC3CBD6656A525D7D37FD65FC0 /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = B1367008FCE7E88213D56A69DEF93A5A /* tchar.h */; }; + BDB45962E822DACF3AC9D3986690E9B6 /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = D46A5C8ABC50B206DF31028758BEB621 /* FIRUserInfoImpl.m */; }; + BDB8852113DC93E0E57FAC2895469089 /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C5CCCB26A45478A066DBACA3A5A4D9 /* bind_front.h */; }; + BDD51A97A085A473F0EC20939379708F /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 259619E65278F792518A1BF9928AB7F9 /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BDDA14B493F1BCCF8838108B517DDE94 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B787C1FB55F6596D49C8E881CF0275 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BDE5A7D164FCB2C48B803835669E9DBE /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = B82CB9029CC7DCC729DA6BEAAE78E851 /* cordz_handle.h */; }; + BDF27460967743EA78410D773EBF59CC /* sync_posix.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E6EBC98009ABE8EFBA5CC6AFCDE27266 /* sync_posix.h */; }; + BDFBF0FD35B5999B27DF87AA79A79E2F /* cast.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D6E198173F064211CE2EC69FDD7CA1BB /* cast.h */; }; + BDFC00187BF5352F074AC44586C16C45 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EDE819E0819D35D37D03A7D0F82FCCA0 /* xds_lb_policy_registry.h */; }; + BE00CF4D0D7B3E570AF06E41F02A8A26 /* grpc_plugin_registry_extra.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B21D7AB9EE6B278804019932EBBB11A /* grpc_plugin_registry_extra.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BE019F0AFFC9556DE6A48B700BA9561E /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6BD53CAAC80DCFB178BEBEAA49E22497 /* sensitive.upb_minitable.h */; }; + BE053952D4CAF582E0119EB7FE668810 /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBAF38843BAF9F01FB37BB09857EF39 /* FIRCurrentDateProvider.m */; }; + BE079F230CFDE4D3CB67A1B9A5F15E59 /* extensible.h in Headers */ = {isa = PBXBuildFile; fileRef = 5763458D9776D252E75CA6F203722D2F /* extensible.h */; }; + BE08BB4C7A572565E31A26C7EED42C24 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E65CBCCFD1099D5937596B6CCF53F4 /* internal_errqueue.h */; }; + BE092DF9B0481DC976979EAC7DB38483 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E9973A6E5267B33DDD097E09E49D28 /* FBLPromise+Always.m */; }; + BE0A0FB5D85CD2226290FCCA2A45A40A /* wots.c in Sources */ = {isa = PBXBuildFile; fileRef = FED37F07E373FE7D4D014D57ABAFE09B /* wots.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BE0A45873E9BFDC397BE3ADED7F1E00D /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B7E9156A205A40898472C2DA91BE8D /* chunked_vector.h */; }; + BE0EBA228BE538CF48DCAB3469753F47 /* http_protocol_options.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AA119B238E5D86DE8EFF43C14067A33E /* http_protocol_options.upb.h */; }; + BE19F87839D1A69C7EDEF33831A82B8C /* metadata_compression_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = E96AB8701F7566BF730A1FFAFDC83250 /* metadata_compression_traits.h */; }; + BE1BD24668BAC5EBCF73E0438E6E62A1 /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB0C26A87C7BBE468729621699ED29E9 /* wakeup_fd_nospecial.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BE1F361B97D5E53A83354F5A0AE6D6FA /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1082CC9AD68CE7A582AE92688FFD4BBB /* checked.upbdefs.h */; }; BE22B9D77B62B505D88B9811689337A2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - BE2B02A3639B444C4ED9F944EFC42A32 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = E1E1A4A500B58E579720FD544CA53887 /* http.upb_minitable.h */; }; - BE3020DBB1EE65ECC7E633933A586700 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D4FF87953A26155279B4F7AF654BD6 /* byte_buffer_reader.h */; }; - BE35728B1BC6D2E72FFCDD05C8B70C6E /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC47EF2B11739FC6648D07B7ED74C03E /* mutex_stats.upb_minitable.h */; }; - BE3AB960AE51C3728F505C8EB2202735 /* status.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0C6C3A93D680AB8D69959687EE085AFB /* status.h */; }; - BE3D41437D96AA885804A1B8AC80746B /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C10CB09F5DA17AC2BFA5C5AF7D025EF /* rbac.upb.h */; }; - BE554EE150CE0F265CB15407CE86C95F /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 013D237986207FA9A0A124776BB201C5 /* validate_metadata.h */; }; - BE5758567E223EB4E0123AF60665E802 /* http_inputs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BD80AECE2768DD33F95C107DDCA7735 /* http_inputs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE5BA8C374D478A807CC1A557E240E66 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0435DCCDAAE3BBD2C5A9250CFF2AF618 /* resolver.h */; }; - BE616BF72D9823F93D12AD12EAFB9A58 /* map_gencode_util.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2DE7A3B272C5DED88BDE5B71D0FE89 /* map_gencode_util.h */; }; - BE6B463AA990B09ADE4E5419354296C1 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7B79FF6039EF2E8F913007C8531966 /* cluster.upbdefs.h */; }; - BE6D4CC7192902BAA7619DF71FE55955 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD5ECB33CB36369E6C8047418480FC55 /* resource_locator.upb.h */; }; - BE722D2AB3B48335198D71EE8F7EBE89 /* xray.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 80404A77ED495DB1C1CB2CC2CE4B974B /* xray.upb_minitable.h */; }; - BE74EB97A803AF132CD214F8A5522E89 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 2DC0BEEE9D4672F2AE335D5E479F7305 /* security_context.h */; }; - BE8305FA306C1D8E8DB6E95E7F4C7C3D /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DFCF89B8737A2D33970FD12578E356C1 /* route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE8C1C3D86DC4ABADD1CF0808905B4F2 /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7F3DC42DF29831C5957CA5D772B8ED7A /* client_channel_service_config.h */; }; - BE8CFC3E344199DD186B157BF59FB9AB /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D9F66F4A1D9FBD8C712191B8B169ACF /* time.h */; }; - BE94CB4BDD6E1A72FAF3E633D03C8703 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F60E33B7ECB653505461F0808DA85C /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE9B68CDDFEFA8CD57970D9B8EDABDEE /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CBEAD3C39180F512B52CB6F9ABFBC6 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEA9A2F15D6C0BABA9D9998522E14639 /* metadata.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 31885698473ED9423529AEE84D137AFE /* metadata.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BEBB284CE23E125F6A624E4F87A185D1 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1CDBC2FE4BFC4F4F83B2D0F0AF1E2CC5 /* struct.upb.h */; }; - BEBC105CAD3CCF717F9B575F9095572F /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6D66DB900221E4BDF80B1A5D5A372F /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC111502522BEE528BB91A51F4C0010 /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = EA1225A84958BE55A9780FB29AC12B76 /* sparse_set.h */; }; - BEC2CD637770BAA042859A193E0674ED /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E3BCB56DB1765F8397841829D59D48 /* FBLPromise+Testing.m */; }; - BEC71C67576B59E5CE36AFC9BB2445CB /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CF9E09E45EF0EEB933A9418AC60E75D /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BED06CF3A7FC1ADE9142C4F18537AF99 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 239592782B3463FB9BF7DDF8EB4DBAE4 /* PrivacyInfo.xcprivacy */; }; - BED4E95D72A085A88D2505674131567E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - BED8FB09AE2C1E6C5BBAD311B27528C0 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DE69DE44B0C05AC4E70D6305682C63 /* string.upbdefs.h */; }; - BEE025F5BEE7D8BDBC4782251EE3291B /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 8190AD18593D3FFC85FA3E0CECDEFED5 /* migrate.upb.h */; }; - BEE9D8AA374897E088FF3BB8E4D93BCA /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23E706CEC3C2B6B9521054CB3C2EB582 /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BEF176B90C98484183E7079768E13EA4 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 49F18358069A6A6246DF67D3A886C73C /* rbac.upbdefs.h */; }; - BEF31682799A22606924C676C6D3C44D /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E030CA1DBBB8F76F7250B9547A537B /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEF511934EF2446B6E8E4B201548884F /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 6F5D3AB0DE579992FC7748081C7A224E /* subchannel_interface_internal.h */; }; - BF1A9CF497372B7011B8EAA74E1D4DB1 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 53578E65D8BE193DE833F42DF7D02F7B /* ec_key.h */; }; - BF1D7B2FC977F05DC98CA2755F09F7E4 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = D94D5A84F6EC3B307CC9D800BC3BCFFB /* FBLPromise+Delay.m */; }; - BF1E52F24DEEB341971039CEF8558D51 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D0A0BBF99D56D0964A0159E7BF1A394 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BF20413C2693E34A63A078333E0F06B5 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DBA8862F0023C9700FA7FE8EEA59A9A /* GTMSessionFetcher-dummy.m */; }; - BF25ACD8EF27FA3741DA37194814F1B2 /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6B5BD3BEC24B27CF14E15C25C99D0D2D /* event_service_config.upb.h */; }; - BF269FA929EA25E830AF78DA350FAC5E /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A1ABB64D2A1C6361AD1E2CB5000B03 /* status.upb.h */; }; - BF3BA8EE4180AA7D01B26962044BEB51 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F05A8343FA2C2F660BC6EA02580BAE44 /* resolve_address_windows.h */; }; - BF3EF0DFC0B9A8DC3ED132A54FFB65CB /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BB77408A39B7311844ED55FBD14BBA93 /* trace.upb.h */; }; - BF52ACE75DAB3B1E66DE6BDCB11BE028 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 39711045BA516A440F17EA389C3F031B /* socket_windows.h */; }; - BF5754405BC26BAC37E8087148D4B013 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0BFD21C400BB819BE1699D2771B54F29 /* message.h */; }; - BF588FE3972B213DF0A9C0306FEF223D /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 025E22E4B3B2BFB7690310EB8935BDDB /* fake_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BF5E80D020F41464298D490004D622D2 /* strip.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = B2F4551A55AFEBB678B1F21F7278CD4A /* strip.h */; }; - BF5E93527289D288616B45597CF00BBD /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 667E1969FF83E644647830D04DBECB59 /* duration.upb_minitable.h */; }; - BF661256B3EE9B4C6AEA0AEA0DDE6D80 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0619052C91940B939D3D649168F21388 /* internal.h */; }; - BF724BA3CD3D6F74016885678F02E3B5 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = E610A9E142E5F041F6267D8CE495C9B3 /* string_view.h */; }; - BF7A3A393F95261DC1C320281EE62CC6 /* x509v3_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FADB208437E1336125EF17A26FE37CC /* x509v3_errors.h */; }; - BF7CE88378D609A5617FF907EC10044C /* can_track_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFCF90D36D72F90B3A49E25FB40B553 /* can_track_errors.h */; }; - BF8CD8E964BD8926186E57DB9C3879BB /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA731C76A01BF178AB413A8B02368C82 /* node.upb_minitable.h */; }; - BF96190E3D791D226EE727C36301C8E6 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 1C6D197FE7A1BB437B4F2093B87A964F /* local_security_connector.h */; }; - BFAE2084D5487AB0DD3C8DB35AADB318 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B6994B246D2F56C17A880AC2E8CF1D9 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BFAE929860AC3BDBCA2F67D53CDBEBFF /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = E55BB4A190305DF1AF382D8A0A9B3BB3 /* file.h */; }; - BFB39581BF728BA4E9DA95A00601C8BD /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A127703EB3FB57B7460E9A97E17FEC /* alloc.h */; }; - BFB5A9CADA0F80A8B86A10B8962A88EC /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = BD71884C33C3393FDF0B72988C4566E1 /* compression_types.h */; }; - BFB62FE5160C5D2BCB5692F8703A3BD1 /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = F28EAA9862F626FF694B8A33F35774A1 /* connection_id_generator.h */; }; - BFB7A95A1E1018B4C4FC8CB04CA3F55A /* DocumentReference+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB488FB949E1CD3908A5CF784915F2AF /* DocumentReference+WriteEncodable.swift */; }; - BFB8C3998032D923488EDAC4CEAF8DA6 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 47CD7BF3E22A1E0605846860AEBABFAD /* init.h */; }; - BFD088F19ED7104DCE35D26454C3B2CD /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E8EC163B26E63201542D4A7E14E3172F /* tcp_client_posix.h */; }; - BFDD4B73A0AF967215ECA41DD195BB96 /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C69284B3AA34411A3C653AD14471BD8 /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BFF0C1B97FB1CDA313E311959DBA0120 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D65E0BA204B0BF5923EA24AEB97711 /* udp_listener_config.upb.h */; }; - C00875759FAA368A17818BEB7EED7E15 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = A3FCD33DDBF6723E1652951CF44CC1E4 /* status_payload_printer.h */; }; - C0168BE8188F9C726CC808B84084AA05 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C8866AA1151878CA8B3F983C81F3BF2D /* filter_state.upbdefs.h */; }; - C01A16B5FD2B30081F8098F793EB6DF1 /* TZPhotoPreviewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B546CCF83A9F85B077AD53FD823DB9A0 /* TZPhotoPreviewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C02949A56EA4C2DF2E33CBFFC18C0995 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 635AC529B7712677600C18664502966B /* channel_trace.h */; }; - C02C18D424DDB445EBBAF761FEA5D318 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A9AC36429D6FE5F37E04FFC9BC294E /* extension.upbdefs.h */; }; - C031979FA0C8467774A747308EEA47F2 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F4C87B65B3F8A832019B54D04A5B442 /* call_hook.h */; }; - C037D8380E7CB77205982F9A5F7D7496 /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8643133904C4A64DDCAF880CE53C9719 /* chttp2_connector.h */; }; - C038761DC1679EB6666C4ABC2FA85E4A /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A83D4EA98E182B40FAA9E2AA1A191071 /* pollset_windows.h */; }; - C03F60B37D930763DCAABB0DA0C53C76 /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C77170995484A7AA1D513B6276055D7 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C04739CBCEE445B66192BFA708655EDF /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3B5A63C20828DF622C6BE49EF85716F /* StringEncoding+Alamofire.swift */; }; - C0565DCE9688905B57742EAD6D2D3F30 /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 96088310E27B0EAB04288825FB6FDC15 /* grpc_method_list.upb.h */; }; - C0596193E27914D04A46839A6A2BF945 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = 82D04060858C4489E664BCB8FC36FF44 /* basic_work_queue.h */; }; - C0596DA2B3CCD0C82C28FCF265AE3CDB /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AFA0901CF5DFD241413068F140FDDE /* uri_parser.h */; }; - C0602D4922DFE9512B623C7AC8224443 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7DB52EDE30981127AB51207567D7BF12 /* ratelimit_strategy.upb.h */; }; - C06115ECEFD7A4F8F263F83C01A25709 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A0E7C7BF44DEBD779A4BB4BD4ABF4D /* race.h */; }; - C062F6AB376A602EB864E1D1D2C96DC2 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = DEEEC0433BF1386306BAB8DE91A503E4 /* dual_ref_counted.h */; }; - C06ADA9F82D222518F85528CE7DE1025 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = C2595F47410E1895173C38E900BB0642 /* frame_goaway.h */; }; - C06DE015AFB42752E67E2543A81B70D4 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 779FB89D51C1A39770A69D5B60D5D0B6 /* hpack_encoder.h */; }; - C073BE88E3A7151DFB9EACDFE8AAA816 /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BD7E9F7E3A6FC2AA6B99DB0E82F1235 /* protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C07C60F45CB24500B677EE1A98DDA7E8 /* nameser.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B189353CB9C3D3FB4B1E9734F31BEF48 /* nameser.h */; }; - C0806051E094A39B0F67EC018D2E0519 /* call_metric_recorder.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = E7BFD0A3D693116E6CFB1A848E29B6BC /* call_metric_recorder.h */; }; - C08BF7F4BD6B8B722E80E9218DE942A4 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D1D72EBC128AFA77E48A71E1D43A5C9 /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C0938BCD303E8455911DA5F0F4A5E282 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 9AC7E49CEE0CFA1AEC01AE03BCBCEDEC /* sensitive.upb_minitable.h */; }; - C09CF9B04062BE273082B718169193B6 /* p256-nistz.c in Sources */ = {isa = PBXBuildFile; fileRef = 69D7FE8266F812707BCD50A1B3DB7E72 /* p256-nistz.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C09DB4869AA05A6B5C9008ABBB62C32A /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD2C52DB3196B2109A41A2246F50D6A /* no_destructor.h */; }; - C0A754BB5167F732ADD473E6A59B3EEA /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AF2DF11706D6F620DA9BB5B1D30F8F /* pollset_set.h */; }; - C0AE618A4881F00E7A360C4E4377270B /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A3CFB979B4D0F488E3FDB38D0839482 /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C0B8CBCAB4A23F79F79A05F8A6122720 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14B030B5028EF1FC4B9AD5A55D621BB2 /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C0BBAB91109EDB1BDDEF380D16674BC3 /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 026F1699DB5C538D35F20AB275D2F3C4 /* tls_spiffe_validator_config.upbdefs.h */; }; - C0BE02A6F852B7693B65732459EB13ED /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DD131749416BC597FD6474D479D6A13 /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C0C2D499F42FF0EAF89FDDF2B23F6816 /* ring_hash.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A744EE03375AC3C8451F2FFF6073E40 /* ring_hash.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C0D5ECC0E543BD7F09870A18C75E1E63 /* private_handle_accessor.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C3DB0CB5BA6B82ED5AC30036F6A10343 /* private_handle_accessor.h */; }; - C0DB460C1D587AD83CDB2F717A273F26 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = B964CC1CBFA6CF6CFB29F3D07D6EB4FA /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0DF0114ADFFE25A523BFCD1E3F029D1 /* hpack_parse_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD1A4B5943FD1BB7F26D810BDBBA52A6 /* hpack_parse_result.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C0E46C72146C5AE23A5B04105314B501 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 44F42E3C3DA6B2CBD0C16D1D12436DCC /* fault_injection_filter.h */; }; - C0E4AF4954C9F698D1CAD448B95FEC40 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89F8E60B4B4A85F762C38C25AEE31F05 /* context_params.upb_minitable.h */; }; - C0E8055041A8953AA02E20468417E432 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 99B56440151F2A54C9D777EEF4030376 /* security.upb_minitable.h */; }; - C0EC4137935AA2508CDEB29B9A33E280 /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DE236C171B4992D7E568EF54EF48781C /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0F367A895E4C816B2CCEBEFBF1BD0B5 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B53810B3C59B350FB1DBA82D45689E0 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C0F8314567125AACD921ADD78882478F /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F7B79FF6039EF2E8F913007C8531966 /* cluster.upbdefs.h */; }; - C0F93EC821B15433357C984535DDCCD6 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = A26D375351A72F0BE6B72CEF32619B4B /* httpbody.upb.h */; }; - C0FE0A6563F9B787122DE43F8AFA291D /* utility.h in Copy utility Public Headers */ = {isa = PBXBuildFile; fileRef = 96214169AD6A018FF6B9A902B05C0AEC /* utility.h */; }; - C103882D22C4A72EFC4D6998D51C0EC6 /* tagged_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = AD58238889CD6D3D3A24AF12240E6579 /* tagged_ptr.h */; }; - C106B3D80FA08885C783A6A7E6B630BD /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9D52662045EE1F747EE72DB39052FCB /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C10DAF443506A1227BADEFC2963FC1E1 /* ext_dat.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = CAB8D853612A0DB63DD4CD996E83FFE9 /* ext_dat.h */; }; - C117E6E9A4CC9002AD84A1993C6AEA7E /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24CEFD5C3D93624DC58F79552DF2E9D8 /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C11E6335A1253606ADFD84E1686A2CCB /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C0AC698547866C5AA129FFA0B9069D /* api_listener.upbdefs.h */; }; - C12B6D87F4EDB277703CFA12A5327C70 /* wrr_locality.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F74BBFD56C6FEC8F84A7DED2686D0CCD /* wrr_locality.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C130972BCAB991BD04397A73E344F4C2 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F0B753BB5AEB24805F940D15CAB07A0 /* common.upb_minitable.h */; }; - C13D9FD8FECC9ACAE3D6B0728746F91F /* UIView+TZLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = BB05FF0CA13876654DD5456BD263B2BC /* UIView+TZLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C13E381D4D4061685C1AB8FAFB377ABF /* futex_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C1FEA37B954E24A5EAE6965C8AD5F4 /* futex_waiter.h */; }; - C156FC56D79D4861FBD2895FADC4F3B9 /* ratelimit_unit.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DB9D25318E9D36F3526E3037EAF46EFA /* ratelimit_unit.upb_minitable.h */; }; - C15B3F89E6F83DC9CCB14903FC5D80C5 /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA60357B4D46E26032ACB4251D97212 /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C16A0F335EBA52888636998C76FCBA65 /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A0ED6655C2A724627F62869A0B808B2 /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C17996BBD1DC51CCA68B35D345F0EA11 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A33A1E5D20B8477CB9A4F90A60936FE /* FIRCLSConstants.m */; }; - C17AD17FDFB39AA51DBDE972675222C5 /* prefetch.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = EBFDA5E489683EDAA72BE5A16AF92078 /* prefetch.h */; }; - C17C030539E0DE92F0E92AB3C0181DDD /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 483801BC67853449A59C94FC58F717B3 /* FIRCLSRecordBase.m */; }; - C17C397B490370A383AA768EEA897743 /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = C14A063B8246E70787AAC32CB64289F6 /* raw_hash_map.h */; }; - C18349801809C0440EBDE94683541CEC /* call_spine.h in Headers */ = {isa = PBXBuildFile; fileRef = 8094DFC3A46899E473DCA84886819184 /* call_spine.h */; }; - C183B72C20D0B95AD9B012AA7FB74488 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E03B6D8EA7EF47791726AF72AE7CEAF8 /* resource_name.upb.h */; }; - C185D813E26CC18B5662DC233B7A4A36 /* asn1t.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6D53E68F0BBF7E98CD46AEBB8BE97F96 /* asn1t.h */; }; - C189C6143DC7343D342155167CC047F6 /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 127CD2C8CD55BFF848053AAFEFAC293E /* frame_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C18D3F55176D2E1864D4064B796C2420 /* reader.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 1F895D9FBFDEB1AF2E3D7F4A7FD162B2 /* reader.h */; }; - C19362BDBB29BAE76C1F022314F45E9B /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 647E7A084035ED55C68CC7AB24722687 /* overload.upb.h */; }; - C197F97588F929C89A113A0D3DC0A1C0 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07F805C0ABC384F5AAB22C45F2A964D9 /* listener_components.upb.h */; }; - C1A4DC31352F61C42B5496B37FE9590D /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE2B3B268D379DA5B4901FFDFECFF98 /* router.upb.h */; }; - C1ACDABC5BA9B2B572279D38DFDB436D /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = C40CBAA8624C1351192075B83DBCB11B /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C1B13D6AF355C186C6825E4EA4651435 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF30C01D679DB1B8BBA97D64EB7BE4D /* alts_grpc_privacy_integrity_record_protocol.h */; }; - C1BA0339CEB5C51D8D198CBB3C8FDBE8 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ABB363B7FB4B893620F044B3173138C /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1BC1C1B1FA70D716CFA6560763BF6D7 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B53910DDAB545C7A5371078CFAED74D /* socket_factory_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1BC38DF4A76F4020467A03074FC497B /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = C2AE611B64D63D65987590265E5C9D64 /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C1C929C3F1696869788987037C4A6627 /* token_bucket.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F2260ABEFDC55F02F7C7DE3A622929 /* token_bucket.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1C9A249BEDA2E0ACB9DCEA77A2464C4 /* service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B386F8406DDB7A34EB393D7DBA02E033 /* service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1CE9038B6994DF0DB046E78B41ABD96 /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D35B3942BCB336E3EB7DFC3682F915B /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C1D7AF1AD15C08B1FCE91E86CF0731C2 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 280A08541D398152A40E2342E751F5E9 /* field.h */; }; - C1D8CF366BA7B1FC60F7901C8CD1A3F2 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBDE8CE30E53AD21B34977EF71ED66C7 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C1FAE7097FD7BE61D5E02D8E683C48A0 /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E38886A31898A9F91138DA5805CB96D9 /* wire_constants.h */; }; - C1FF87A09C18EDC2F396CFC24A3A4C7D /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8C07FF2AB1EEDF57A9A1AC2E6238D2B8 /* atomic_utils.h */; }; - C2003AB269F687D04FE745BE09DAEA2A /* call_filters.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4A22A805FF4AF82D235126A70C79152D /* call_filters.h */; }; - C207AC52AE08436B4326FD38B2516737 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 2531740A4BC02C5CACBBABEE9ACE0ED1 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2090F40B718681309AF80026352FE18 /* usage_config.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 2D95451703CCC1510B7B508DB982B0AD /* usage_config.h */; }; - C214A8DCCAB399CBF5D0ED7A5BDB7BD1 /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A898F1BB0CF85AEAFA807B83A1B3D23 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C21563B684C5EAA786BD6138636030DB /* internal.h in Copy crypto/fipsmodule/dh Private Headers */ = {isa = PBXBuildFile; fileRef = FCE381E3CE33802715B65A67B1572137 /* internal.h */; }; - C21618C5D252401C1DFC6712724777E3 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = D80E1FF3939A08E9D696A133435E328A /* backend_metric_data.h */; }; - C24036B0A94646F2D823501D5036C67E /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 94492CC75E30E66E480DE9D90780A21F /* simple_slice_based_metadata.h */; }; - C241CFC27C300B6D6144AAC822C09117 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1979B2E561B589F934C63B9DC54C0B /* byte_buffer.h */; }; - C2436F0411C722CC7D5E72F30A04E48C /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C54CC2D4D2D74542D65B73AAECC8DE2 /* lame_client.h */; }; - C24CC682B4EA1AE20043F3D7EB7A30DD /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E303DE36FDBC0C3CAE89284531C70A /* resolve_address_impl.h */; }; - C24F0BC4F98C5E91CA3815431CC1F385 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = F0A2ED66F0E55D419D97B12892BAF2E9 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C25A772F206610DFDCBF367FBAEAC383 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 636BE31955BC8052A67AF0703AAC1583 /* FIRCLSSymbolResolver.m */; }; - C25A86B49618F4B3BA7CCC8B1208F81B /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CF2AA64FC7D27F5301816B28DED7E36 /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C25C6EF84BE530E6294E40AD5808B694 /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = E396BD5F73417F6F7D17100C12FF521A /* atomic_hook.h */; }; - C25CAD71F8186F0332B000EA6350C711 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A42F03C168209B36645006F0E5A23A03 /* internal_errqueue.h */; }; - C26AA93416B9A7B2A57E83D414FAA470 /* listeners.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 459D14BB70C18A3BA6EF148556B57EB7 /* listeners.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C2743CAA1C3E195DAA84238A805AECF7 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FE8E5DDBE5A9E2567FC26FB23480A87 /* syntax.upbdefs.h */; }; - C279B33359B0CB227ABA88630A96253E /* flat_hash_map.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 395D0688CFC35F8AA5E7219C0FB71E82 /* flat_hash_map.h */; }; - C28B3BC18F424A623C5241C956F4F211 /* versioning.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = C88E817BA291176DE2E15D2C48D278B5 /* versioning.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C28CD8C70D5A85328EE5542DBDDED4C1 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2CD518FAD48EAD343479F308A13691E3 /* timer_heap.h */; }; - C28D2165D8036CC13B4448F939BAD20E /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD22F61EFD01D9BAADEF086C4E3B10EF /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C29363A42E96FC6238D449F657FE464D /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A4B3541ACEC716AE2DFA64CE5C9870 /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C29826D8B1CF190C535807662161AC82 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9A947F14CD44BE8B8145F745BF8978C7 /* socket_utils_posix.h */; }; - C2A77856508457E0A0859F0F47EC7EAD /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F25580AFE97D709780A7B2A021292734 /* hpack_constants.h */; }; - C2ABC524244D3E3DFEF935EFAF1BA426 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B621AC370A6E3D28514C79CCAE9B99C5 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2B0456FF5F6BCAFDE25DB169A6105E4 /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CD42756D0076D1756688126CD04DB49 /* tls.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C2B95103103827AA15CC5E4CAD2AFB79 /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = E37B1E1F9D6C995F864BD2A29DFAC156 /* sorted_pack.h */; }; - C2BB7EDD253F88E92CB0C544ECF39807 /* proto_utils.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = AF0589BB1868031242E6E43AE46B2AAD /* proto_utils.h */; }; - C2CDC19C0EAFE0BD5883EC1261F6B56A /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA355611227ED3B28DB15FABA4011B5 /* spinlock.h */; }; - C2D0505AE225CEA92EDC9F00BA313057 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 802E646131CC406B51A64D71B8FB5157 /* hpack_parser.h */; }; - C2D16A94284823BE71B7999C4CCF08A0 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 85B0DE5999CCE6D6F4C53F997BA3E38D /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C2DD0314380B861CB0EB71FB18559FFC /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 346DDEEEF2F10DDF4EA0B42C6E345AE3 /* ring_hash.h */; }; - C2ED44E9F49ED562A772FC72F481B463 /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 65D8EF522D6BC04C5DDE742D2132A4E5 /* http.upb.h */; }; - C2F791F327A5251A4E07342363C655D4 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6239A6DBDD0FEF592ABC7854D16220CE /* xds_bootstrap.h */; }; - C2F7BFE763B30DD90D2F9C324DA971AA /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A42E1B69D317C6C4FCFF9B5F6A2B35D /* router.upbdefs.h */; }; - C2FCA3AE320D88868E0559C9DA9DD07E /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 60CE4E3DDC8196FE4E57A14A98BA5790 /* types.h */; }; - C307DA1C352865B17E42C3E21C51AE16 /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAFDE93E8F86CDE8F04EFB1C4CE652D6 /* format_request.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C310033E2921BDB52A70763EFDF98618 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C37B701028AEB0AB8E0DC872DA9CCA1 /* sparse_array.h */; }; - C3124A0340C23DAC1BAA98386247FCCC /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9D9C44F74EC2A54FF3311AF5EDAE1D /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C313950C019FC019E41BC7E9089FB3A9 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F32A9B5A55C57578FBD61E09153B261 /* unix_sockets_posix.h */; }; - C3191A04CFEBB32B800631EBC36456C9 /* collection_entry.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A004F91BC985223BFD5AE59E1EE186E3 /* collection_entry.upb_minitable.h */; }; - C319F018E72FE52912F989F2BE03215B /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = D493D5FA73B39244BE1161948352AD42 /* sub.h */; }; - C31C2E4DA44739FB45DF5398AB0E389A /* vsock.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1173D073CA7A8B25548500878CB9F98B /* vsock.h */; }; - C31C88CD0FC2C6F60B5609E5F6389046 /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 234BD209DB3E806E9FB98CE8E2BCC39D /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C326A2784C8D2E7BFF62FAAC0CB15D3B /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1FABABFC0D575D1AD76BC87D48CABD6 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3326FBADAFCA0BC3F68ED0960F2F578 /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA0C9ECD27C268A7F8EDFDEF0C6E104 /* altscontext.upb.h */; }; - C33B51282BD71376525B98AD1C8FB2ED /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 885CA5C2D91D1FF2F89A9EBBCB14F3AF /* FIRVerifyAssertionResponse.m */; }; - C33CFA3B69012FC452DEF02C4959481E /* direct_mmap.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E08E287BEDAFD6CA0B6B37261FA5513B /* direct_mmap.h */; }; - C342647A91949C9E4FB57B4BE3FDDAB8 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D4DE050DA6981D505D88154D5C78A4A /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C35574F3709F8360442862ED95B95D7B /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C02BDB56DEC2AA0A1FA78A39B6AE6BC4 /* sockaddr_windows.h */; }; - C35732FED49306B8A23701975128AD1F /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F515BB520E143DBF4B9576C83D0EA911 /* range.upb.h */; }; - C35A3E654D5851E95E5B30036238BA6B /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6A1322C154D113DC4A53DAE550481BDC /* time_precise.h */; }; - C363E0886B3DA32F1A4252D236FDD82E /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = A052D55197E3539A78A73B4CC6633AB8 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C36A188073812FC8C08E0383BFF5A919 /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5C773B4A3B0387A6A9A6EBCAAD5071 /* message_reserved_range.h */; }; - C37B11854B4DB25CE8E6DC50C3721962 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D1DCE206B599965A6F50651F5F7E3D /* utf8.h */; }; - C37BB638FA15FA342B13DCAC07BED64A /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 83341C6057E85D9FE9044235E0F66A79 /* http_protocol_options.upb_minitable.h */; }; - C38055538B7D057AFB35E993841F1625 /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D21038E0D186C1404609EC185FD551F7 /* FIRAuthDispatcher.m */; }; - C38279B19E72CE0AFEB31DA92C2F0086 /* service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FBE8ABC521C90C8363F57140BA9FAB54 /* service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C396DABB385E7DA5897F179785E4A3AD /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B81B2F9699D14C1D4919A74F949E47 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C397DC41F737EA1587929C1DD99DCCED /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = E5237AD428418E060CBF95F12CC24F5A /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C39C4CD930D0DC3F27BB668F22261982 /* asn1_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EB589AA9B1991995ABA3A68720962721 /* asn1_mac.h */; }; - C3A133E050EAE58A235851ADF20E1379 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3A1D1705CF4F2070D9A8B7D94CCCC90 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3A4C4E5ED2E02C0302B27123EDA760D /* stdcpp_waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3F114CE9B633564BCF708BB59BF66BE /* stdcpp_waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C3A5F642B1CAA0A3AD7761B7E06098FF /* LLCycleScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4D7D3A96469C21CA485F7807CB9560 /* LLCycleScrollView.swift */; }; - C3BD9F60ABA6B4AB9557E4663538FA2F /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 984B2E3EE7F4B9566CAFCD9668C19762 /* memory.upb.h */; }; - C3C1D4822951D3401F76577B06E7CC26 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 93403E19016DCF3EBF6D4049D98282A7 /* http_protocol_options.upb.h */; }; - C3C6C5C56F58F6E751C8158AFDE6EC0C /* static_stride_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0BFD697A6B8287146EB166339357E0 /* static_stride_scheduler.h */; }; - C3CFBDD1EAF5DDCFE178C0BFF04E5D18 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B49D5BF2689AA79CCA11197251F02A7 /* FIRTwitterAuthCredential.m */; }; - C3CFFF01F604D0D9708B775022DD4088 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2B154AA2719F04F9E03EC5B14260DC /* proxy_mapper_registry.h */; }; - C3D318E394038F84D88F165BADF7BCED /* http_uri.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D84C26C58981D3681C74CC2201F346 /* http_uri.upb_minitable.h */; }; - C3DF48B131F6A26AD2FEDA2AB348A15C /* http_connection_manager.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6255881C8AB52F7E95294D7AD49A3F64 /* http_connection_manager.upb_minitable.h */; }; - C3E50923A590167E88999A8908AC1350 /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D25132631F045BD2607AC219E9BC1694 /* httpcli_ssl_credentials.h */; }; - C3E82C7B2C3BA0068FB0E21B57240BA1 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = F07FBC258AC7598B114B459F96EA7E33 /* FBLPromise+Reduce.m */; }; - C3F1B4E080A023788D9C6BAF4F9C3EE7 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD59509049398C0332C68094DBF92C6 /* typed_struct.upbdefs.h */; }; - C3FBDF6517DC872472EA399EC7871324 /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = 9473CAE593EE65B44E4C740E68FD508E /* objects.h */; }; - C3FC8F7A269BA0D455C69B04BA5879F2 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D800219185881FA740C21EB1E91B39 /* log_severity.h */; }; - C3FEA1EA43D1F5F47C9F12BE1735A905 /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E93D3531328F505831C0E03413691DF /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4020B707E976AF3FD1BAF4076AE94D9 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = F2A8DC87B8A157E41C83F18FB230E728 /* win_socket.h */; }; - C418DF911024A9D3B954672D9A737F5E /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20CC57A6199C1F3F58318928A2B6F949 /* SettingsProvider.swift */; }; - C41AAC4B5B4655E60371DD162C7904E3 /* windows_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A446BEEB863C559EA33DE553CDB39E /* windows_listener.h */; }; - C41B450E32BE44A7690E8512EDB9FDE3 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = FA46FC026BBF69EFD084DB5938011F58 /* rbac_policy.h */; }; - C4227B003330289E62D865A50C1708D3 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AE995179A53A8E3C71C498E1C5EF20B /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C429648E0741B736BAF39026009D6E2B /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 201771171C873F0F6CC83141C0ED2BEF /* zone_info_source.h */; }; - C43F9DFF7A9951E3F6CEDC7CF42AB0EB /* endpoint_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 8A7BA22AB341ABA640C4A34E2483F5E2 /* endpoint_list.h */; }; - C447DF8A69F2A1A8540F68824791805A /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE7D3CBB7F034841D87009205AB611DC /* api_listener.upb_minitable.h */; }; - C4502D4FC5E8CCC56AF8B618D5863D2A /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E14E53F24D379EA809D92E17BC72588 /* base.h */; }; - C45CB378F9ECA9DCE1D8CA63342F8218 /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 44946B9C254C2E04C87F4E96EEBD71C5 /* completion_queue_tag.h */; }; - C4652894CF9BDEE73B15C3169FE83871 /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0546CE06DA56AE6AF7E70ACB0E2CFA /* dtls1.h */; }; - C46A120A48E606227010E6AA2EA0EAF5 /* FIRAuthRecaptchaVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = FA32CFE31BC70E8B98375CA207DC2C3A /* FIRAuthRecaptchaVerifier.m */; }; - C47895388A3B4E30BB6F50B1E29C026D /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CBCBFFFC18F4E16AC2E307D6120E66A /* tls.upbdefs.h */; }; - C478C67D09201CE26EC4CC23CE74F4BF /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 779321B678294D892E121844F28E486F /* socket_option.upb_minitable.h */; }; - C47D789F9480EA84E196287083FA60C2 /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15F9B8C328077042332A646021AE7AAC /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C4830ECF06ADEDE5BC78C54680F29DB0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 33017A7C42C6BEDE55F8F4D63AB64187 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C487A3EB440A7CE230D62DED88E368F8 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9351E3DCCCD654BAD6259BC5D87F72D0 /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C49079F9B971648EEDEE37ED62626AE4 /* compliance.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = B8E1031456FED385FCDFF0BA3DAB8A66 /* compliance.nanopb.c */; }; - C4BAC021A0F5D6D7DBE1F0A567FBC9D8 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5951B33FE16FEF2ED16DCD119CE5E7BE /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4C015CF160C69190B70FDB2CCEDC241 /* xray.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C13F39064B7ACEF00E66EA5AAD5E631A /* xray.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4C8DAE6E9BC39B6B270A68128FE0445 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 810AE8785719307BCF9CF1C8F7E6DE56 /* internal_errqueue.h */; }; - C4CE0DAC10793D2E4B8D1F4C3A6ECBDC /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B49DBD18737256E93B6EEFBE33F630D /* ripemd.h */; }; - C4CFB9957FDB7A6E77C950E00D603B51 /* empty.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DA04D0F43F0A0CC17DEC6D9C66F6A401 /* empty.upb_minitable.h */; }; - C4D29FFC1A90BC6E5F95A5DDC80EE910 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D865F5AED97237E29494FC5DC655886 /* interceptor_common.h */; }; - C4D40D51262E1B4AC6E4D7C4AC3AE449 /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = D8911E7DD65CE073404BE437EB3A45CA /* hide_ptr.h */; }; - C4DBDA154B84699BDC5529C03909674B /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = 9D64C6D5D43AD22D4B4DD6B8863316F4 /* backend_metric_provider.h */; }; - C4E0F7D69684FED006B4F9EC093DB082 /* thread_count.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F1CDDB5A920BA239150FAE48D1C9A3 /* thread_count.h */; }; - C4E5042A2648F3B058909A4F87E0CABA /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F6E54E90BC36D7751E2B731CF0FAE359 /* udp_listener_config.upbdefs.h */; }; - C4E770CFCCB7B27C3586EAB0008F6CFF /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF67E4AE127859CF553A38A70492371 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4E779A0C728F674AA89240E863A8B78 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 099C0CEF08F297B3B967D9734AB19B3E /* civil_time.h */; }; - C4E8B5AF2B2BAE889D7FEF846A1F655E /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 80396FF0BF85271F1F0ADE84805BA235 /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C4E9B6DBCE3A78C2127FA3A6269E57CA /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C989D5F6660493981CBBBFE11722A38 /* KFImageOptions.swift */; }; - C4F9DFF93D91DFCA0FC2B16DD50922F1 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D959EEC5E7C9FC70BC75BE42EAAFB6 /* alts_iovec_record_protocol.h */; }; - C4FD26D0D5B18E31F75379D16E4E8DF1 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA4DDC5837DB615EC645A2C5C4E20970 /* json_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4FE29BE343A56C7FD959B071A057F52 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A5A6EB36ED216E7F83594A86B2DEAEA7 /* http_inputs.upb_minitable.h */; }; - C505FD7DB8C512769A9779CA55CA5FBC /* atomic_hook.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E396BD5F73417F6F7D17100C12FF521A /* atomic_hook.h */; }; - C506EAB6BB3F3BB83E1EAA80B12C838A /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = F28326479C2A67563E5108B8EBFFF629 /* def.hpp */; }; - C514DC779772A48D060A13B22092116A /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CBCF93ADA7EDF481206D23AD7F633DE /* overload.upbdefs.h */; }; - C523F520FF100C30D326A144A06E9AEC /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 528C92DEDD1A070B225A259281572E82 /* proxy_mapper.h */; }; - C5245DC68440C76D67C4A5DB78178969 /* GDTCORStorageMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A66B62EDEC582BA96C92935EC31806 /* GDTCORStorageMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C529A341F7E04400BDE9C70043F11832 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B56F896B864F6404620077FCE0B56C /* plugin_credentials.h */; }; - C534844078AC50F9DD86A5E616FC8F54 /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 1975375212597D88CEFD9713A6727491 /* extension.h */; }; - C539AAFCD2436CCB2F6365379B241A8C /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DE57794754EE12AD59F794DE148DBB1 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C53AD4839EEBC03445EAD69069556C12 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E069F621B9A559B83CC71B0567C55F3B /* load_report.upbdefs.h */; }; - C543B78B9A10C3B4CDA240E1DFB61E2D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D766291ED4080DBAD9158A4068397C /* internal.h */; }; - C54CE22C3D5685321EE1EC581B35D7AF /* listener_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AABA9B78F40DD2E2152CED2435E01145 /* listener_components.upb_minitable.h */; }; - C54FA6293172FB7766F173164F815711 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = ED0DCE95043CFC126F5AD157B759B385 /* channelz_registry.h */; }; - C5592FDA9D1DA6C0DAC9A03EFA332653 /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E77D90445BCE380616E4B3D4CD628DE /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C56E17664490514F568167D12E65571A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6454242E33ACEFA7663F3523F6830DD5 /* PrivacyInfo.xcprivacy */; }; - C5808ABF8926C63AE651F73DE55D08E9 /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DF3EE244A861D4E743F3FEB9E87FC639 /* event_poller_posix_default.h */; }; - C584AB0F825942E710CC5EA6B1545533 /* backend_metric_recorder.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = EE83EFAE45C51FE6D74CFE526F0A401C /* backend_metric_recorder.h */; }; - C5857630D49FC565A87E0C4A60069940 /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = D67E51FEBE5EF57ECCCA772DA0B4A0C4 /* charconv_bigint.h */; }; - C5884F377DB2956F2F34561C428D84ED /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A3779D7D2CE20041DD8AF3514FD9F5C /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C5897ECAD85A01932C1B90B159093574 /* clusters.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3921E27C2155E2C8A671AACADF422D /* clusters.upb_minitable.h */; }; - C59FC1C8142121C7056E93C611FFFE26 /* map.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 92506842AF23EF6772D8E44E3CFDC613 /* map.h */; }; - C5A060B2F4E33B276D82E6FF9FCDC52A /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 384685F623C7DB737B51601C49936276 /* regex.upb_minitable.h */; }; - C5A6ED3FF201A339CEEEA3BAD6077D01 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD597624F322FA65AFC078BC876B924 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B1996F88C1D4D2016A33CAD733D429 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E0F7AC97784E7FF99F6138ECFC06C626 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C5B801C1FD9664AAE8BBC316D786FEBF /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA3C9A268887B1341C38EF19953CF38C /* load_report.upb.h */; }; - C5BC18637C20643A32DBC833EF032932 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 18EE827AF0F158269B882581735EAC4B /* audit_logging.h */; }; - C5C143E811E44AA5B7B4CDDB6C243174 /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA8C9158B9179EA8D5891E5BC0C8CBF4 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C5C191B2C1F891FBD28E8EF093C13D26 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = DD467912506269D32A50849BBEF54F1A /* round_trip.h */; }; - C5CFDE9779B2381B5202B3A3CB751263 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = CC6AE4DFFBE735486D703300C5C10B54 /* child_policy_handler.h */; }; - C5DD454687CC70BF4E5D96A121649F2F /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D7D1CF0222039D42B608B595682CE9AA /* socket_utils.h */; }; - C5E42041B97E2C59579341F9A45E1BC6 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 454D4B6605350A2DB408FC660ED45646 /* syntax.upb.h */; }; - C5F395338EAEDE1A8041E5C27D34D912 /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FA938556A193AB982F813AE7FA26B1C /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C5F9143E4EB68AA32A0E6AF29A5F547B /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B86764008524C4DEB352A34F527C33C5 /* metadata.upbdefs.h */; }; - C5FEAA79F2E410DA803174AE6E2DBE91 /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B982D0D5D012471B9E74360D906360C /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C60C77A8EB67A4418B964D0191116493 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B169853212973D75D5F97B86EBAA82 /* config_dump.upb.h */; }; - C614D455D69DA8F5952A421BF91E4D74 /* trace_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 16777B6A8DAD11482EEB437A06ABAEEA /* trace_config.upb_minitable.h */; }; - C619A399D8BD4BFB058A4FE4DB5EA278 /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = D586F0CFC605E254EB03F9B125C920A7 /* connected_channel.h */; }; - C6217C67FF68BA5F6A65AA08E2443FE1 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 27BD1676EC6CA693FF0928DA27D8D1B4 /* strtod.h */; }; - C621EF3139A32DBB67486ADE14970F48 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FEB4B9A51E044FD4F7EFA573DC5F309 /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6241F2C494FF23CC0525E2B228500D6 /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB52EDE30981127AB51207567D7BF12 /* ratelimit_strategy.upb.h */; }; - C62911D2D1D93BFC7CC5751D57F934B2 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D710C7D011AB9FB51546F67412FEBF9F /* socket_factory_posix.h */; }; - C6294BA5F10D2E53242A2D7387ABFC10 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 075FF71C687B5A4A53929A5031DAA050 /* enum_def.h */; }; - C62A9315AE36436F86A4AC72784EAB34 /* ctrdrbg.h in Headers */ = {isa = PBXBuildFile; fileRef = DE00220AEA70C47490A53D408F3304E7 /* ctrdrbg.h */; }; - C6311F869B925DA56D2E72295BAA60E7 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6182C414863367FC11C18885E7D84F7B /* rbac_policy.h */; }; - C633EDB48AC37B26453AD605A3B98EB8 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D896804604C19D34B9F0904945A881D /* scoped_route.upbdefs.h */; }; - C6341CBE330C2F89EC95224F908B455F /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = ED84AA4AAEEC791C0F797EBA62EC3BC8 /* json.h */; }; - C637393CE0811DC7CB47B297F34F661D /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC03D04C752055367014F5DFE5681C4 /* listener.upbdefs.h */; }; - C6401484EE7E5153AC9DE384FB14EABC /* desc_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D0891A5579B7D278F33AF0528A217F7 /* desc_state.h */; }; - C64DE1B209B8607232F0CFA54E9CB886 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = AA128C73E577E73481942AB420A3386F /* strtod.h */; }; - C64EED5663493D6AB399013D96BA74BC /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = D639C5EAE7949D2BA8C5D98A955711CE /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C65318341FC04AC9A20D96EF8D19709E /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 294C88E9926D3DB5BF67EDC29F365B30 /* status.h */; }; - C6590E8018AA3FE1F085F5D1B655EC2C /* http_connection_manager.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D85D10D1A2F5B360933D1F8ACCF2826 /* http_connection_manager.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C663E5CDAB0426BB5647C07E636152CE /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = BE139C80441A192780C1AFC22D1E1986 /* server_config_selector.h */; }; - C677B06F4903F410C0FB892396B60FE9 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DEEEC0433BF1386306BAB8DE91A503E4 /* dual_ref_counted.h */; }; - C6885D24A61CC1144B81F2A502FFF141 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BA8EA121F23E4227868B89E98A82B6 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6AFCD3C25C007DDFA4E89F858F9E4C8 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F58168BECA982741D45FA26DF8ED64F /* dynamic_thread_pool.h */; }; - C6B1F5A3F797BCB386A505752344A745 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19CB79C22B4AECE6F2557B22B50B4E5F /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6B909AB4C408DD09419E8E818934355 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AC091E6CD9D9FBA25E0B5AB087B1D6 /* compressed_tuple.h */; }; - C6B989A3A1329256044C6A614B3F17B0 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C165064FE5BCF50FB33BE7A9AD15CE /* seed_material.h */; }; - C6BC403FB4CA4E608DEB5C1AEE0367F5 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CBA9C9CD7FC15F03D8FD2D47DA01EB /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6BD2343273539593FD53B5D01EB6F1F /* compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 159320A4725990DE64E734FB5005E364 /* compression_filter.h */; }; - C6BD7BFBEEF96766681E61B0BA0296E0 /* status.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B272F18B136BDB1DB05A03FADC107366 /* status.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6BE2E8B6841C9ACCC75FB4CF0E66C8A /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A3BD250065FC38900E68B2A6D8370C9 /* init.h */; }; - C6BFEAD211F6FB3F74B28DA598BCA645 /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE6F936F16D4AF7CC505AEA81DDB0DD /* http_status.upb.h */; }; - C6C36DE64BD091407AA1AEDDDEA125F9 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A2561A106348D7495F55FD8427147D /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6C7E0120F195C2BF00448F50890FD18 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B25656BE42ECBE2876CFB1FAD04915 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6E005DAE835B95C56ED5E613430D121 /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86C24F51D7F0D273DA4D17F35E82194A /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6E266D56B4C631F38451A89378D75D8 /* wakeup_fd_posix_default.h in Headers */ = {isa = PBXBuildFile; fileRef = F484170A01C350DD0FF4C57CA8FD7A8B /* wakeup_fd_posix_default.h */; }; - C6E7957887FF1AB5D1E357ECA2132845 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 834AC2853AD5F74CB31E9D49B519487C /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C6EE189DCBEF4418FBC70D34FFB65928 /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F30192EB6DC6CD49A26525752083D5A6 /* metrics.upb.h */; }; - C6F0159561964CD3863EDF4D49639943 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6686F7B412E2588A47DE4EB61AED64D /* mutex_stats.upb.h */; }; - C70AEE1E61898906707A17E41CC5735F /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = AB82095AD610BB5C63FDC780A306A6BB /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C70CFB07263FEDA67B2D7D12623B73D8 /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A34BCA09CC61E363BEC9AFFC9D03FCE0 /* tap.upb.h */; }; - C70F81E69B9D246347F0AD021E52BAA0 /* crc.h in Headers */ = {isa = PBXBuildFile; fileRef = E96B5BF0D243FF7C6D902A872BE7439E /* crc.h */; }; - C715876DDB4811FBDA2FD4C68DF2B856 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F79E989E9A0D03C4BB9C2E4F21DEE8E /* ssl_utils.h */; }; - C716CC4FF86065C4E0750320CDBAF6DE /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 66FF7A7F57ADD24DD445CC42E2F67FB1 /* posix_engine_listener.h */; }; - C7188F4AF5BA43FA40BCDD08A21B530F /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = D2176FBE839C998AECC824CD189BBC45 /* message_compress.h */; }; - C72BA36E691EE134C51FF261F071615C /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F499EB3146E44B22F9D3BAFB19BA2D9 /* stack.h */; }; - C72E8F9EB9950C92E20AFE7BC2E65B71 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = CB2CEE074615DFDE09C4C218FF7DAD55 /* channel_init.h */; }; - C73CC961AC7405632B2CD7C572BA1681 /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FABEC692EDFA2ED841001DCCE3D73F5 /* arg.h */; }; - C742B75B5EA94316CE48656DF38784D5 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2D3076A778DE881543328D424F6F6C6C /* common_closures.h */; }; - C75A91D0EF1033452FF5839845EA4ED7 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 201E1D5C24DF63BEE55739B6E2BF65AC /* per_cpu.h */; }; - C75D3DB822925CF275EC59730F2B9C09 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F4C9F71DDF72EFB38649203364C2E9D /* authority.upbdefs.h */; }; - C7621F6C606A61129D5BF6D37B6764BD /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F42AF2FED7F42A05FC1A0C0DCE7DF0 /* internal.h */; }; - C76D42F08F70CB01489E43DD5481E0E6 /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89F61A9ED09C6D75EC57F8D984E4CC5B /* csds.upb_minitable.h */; }; - C770A762B733B98CEA17138F413DA658 /* http_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F89A58CAC92FB2553634011F46A4C803 /* http_service.upb.h */; }; - C77AEDA886E79CFC9F3C895BB49A6C1D /* aggregate_alias.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B9E8FE671FCA59B8901B97300BE99E7 /* aggregate_alias.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C77B3F07A2965E83136860F9A2BCA7AE /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E45B8B4DE103400D00478ADB1BC889C6 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C77CECC9AC4F4DFD6053FD7C5522613E /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 51EA9C09FA84EF47631ED397C6C5EE92 /* certs.upb_minitable.h */; }; - C7833C67D74D569DDD77766489044874 /* closure.cc in Sources */ = {isa = PBXBuildFile; fileRef = 42367AC2928ADD73C3CB304E7A3C340C /* closure.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C789C0AECD778747AB807717CF5C9932 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E99C6602F022D7BA64D14FBE1CC465C7 /* http_inputs.upb_minitable.h */; }; - C7980AAD2A4BDEFA6F8C6FDD13AC62CD /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E915D0437CDBAD0A094880EB90D2E36F /* orphanable.h */; }; - C7A036F30C57FCDD18996EF78CCA59C1 /* service_config_call_data.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 6D1F1D45E3E6040B47C55EE7D4AAEA9F /* service_config_call_data.h */; }; - C7A17B8B4C16B142644CA48A1A89533A /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 339785CA4353229D8940549F7D5F3859 /* fake_resolver.h */; }; - C7B5D1F8370D395DA53DF8BA20B24DF9 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 10B177ED0E555FD5E96EB59C8AF09685 /* transport_security_grpc.h */; }; - C7BB7D2960EDCB639F144FBA9CACCBA4 /* crc32c.h in Copy crc Public Headers */ = {isa = PBXBuildFile; fileRef = C9C757EBF98072C2040A0E7C45B277CE /* crc32c.h */; }; - C7BC1FBB327866CDB12D8304EF0975CB /* address.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F532C5F1DE023FC07C442B4020E193D /* address.h */; }; - C7BFA90EE409B2EC926E3E3BC07718C1 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = F930669D70BF979E400AD02BD820E02D /* time_zone_libc.h */; }; - C7C784EC2953769DB1299EEC34070048 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5BB389B6F723FEE0D0E430BF7F466913 /* handshaker_factory.h */; }; - C7DA1B4334DC09074129CC7B47E7C8EF /* wakeup_fd_eventfd.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B2CD51FBDCDE6C2C718C595CA788B8 /* wakeup_fd_eventfd.h */; }; - C7DD2C1E1E5C80763CE9B45408650C57 /* json_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A60726A577D8F82B8E2F38F13E8A22 /* json_writer.h */; }; - C7E6A08BB6F2CC0DC04946F703D53378 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 092B924C655848B8AA5D32684C6C8321 /* http_inputs.upbdefs.h */; }; - C7EF535EE3F46127DF86FA5C5848D5AD /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8817FD3C700346F70A5C7C6F23E4DA72 /* FIRLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C7EF538D6F545A358BF4E5987AA7EA1F /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA94A9C563D450B6E0935837476E0E36 /* metadata.upb.h */; }; - C7F599C9440EED74587F4B8BC01A943F /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BCC4F202CAB2F52EB6DC0382E52928 /* migrate.upb_minitable.h */; }; - C7FB1431C11BEFF5CAD3608FA4F80E65 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9CACE2E868B66028342FED1E68FBD9 /* context_params.upb.h */; }; - C7FBB1841615F94155F3BB548791F778 /* dns_resolver_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = E87169A1474CAB20AAF92E65BDDFFCE6 /* dns_resolver_plugin.h */; }; - C8035C39E0B801D902E64929822D0A8D /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = B370D65D7C04922AF4979722B0D4820D /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C803E5E817FD2EC57F00181A42B75164 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8D969196E294DC1D00131EADFE479678 /* varint.h */; }; - C805FFC04F01E8D62785423FA2DE1E5A /* async_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 11000792191C163AACE3D6FEF1D5409E /* async_stream.h */; }; - C80EE4A5B4DB3F844207A061C590581B /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 31BD454A2BAA1C264F35CC1FCE8B2CB2 /* barrier.h */; }; - C80FECC321E4AD90C5F8A2C46E7CE17C /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 12DAABAF4A6BA8C7B3202093E04F4BB9 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; - C811F7C420F84C09C29D295EBF2CB6F1 /* FIRTOTPMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 715EFA24F5947A31291F47909C58E930 /* FIRTOTPMultiFactorGenerator.m */; }; - C8128138D18CD7578FB1656999090EF1 /* work_stealing_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE5A6D97AADB60DF50E89B16EB18141 /* work_stealing_thread_pool.h */; }; - C81789F1AC7C36EB45F59B09F73E4B15 /* pod_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FB225E8C65E38252EDA580FA8181FAD /* pod_array.h */; }; - C8193F26176D1B5A522BD99C80293277 /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = E8673BCFB168B463464E316EDBE5265B /* bad_any_cast.h */; }; - C81960204C3A61AE9CCC1FC69AC5F890 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = D37576FC7608079597BFC4852815AA2A /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C81EA46E338B551A244A9619A599F0B5 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7D576FB8333691D612AE6C44301383 /* circuit_breaker.upb.h */; }; - C8269B42DED12AB1F275648D0BD32E45 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BDCF4494040295BACD6EC20586C9B71 /* URLEncodedFormEncoder.swift */; }; - C8297A167C097D1F82EF10009EF3C666 /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A71CBF56FC3991FD888B7A98D63AC224 /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C837933B2E8712114E6AA69E7FA4F729 /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6EAE0B00B431105BCE7283261B3F8E /* binder_credentials.h */; }; - C83EE4A4268EA9528FC158765F2A7F7B /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8AF5FAB3F44583218E890679BD51FE /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C83F091A15A2C40D021EF3C0727C468C /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AB9916BD6536B23EACA9E4939AF1E1 /* message.h */; }; - C842A799F70C60183FDFD8AAF91224DE /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = B832EBBFE9B638340EECD1E3DEF6D0C5 /* alts_crypter.h */; }; - C8438664122DF2EFBB98B18E785E2AC0 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = AF161B7323D899687BBCA264CCC2B005 /* md4.h */; }; - C85B9B247A548CD0967333ED9ABFB49E /* encode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 9B96A84D6567AF3DAFEA5F0D585FD7E0 /* encode.h */; }; - C86532220A9C383CE56B14597F7E55C9 /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB5CCA28FA8FC566AF7DB3DF49DFB8D7 /* orca_load_report.upb_minitable.h */; }; - C87134707983B9EF9A54DEDF7DF5F403 /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = AAF779B7F7232E8CFB933149B631EC17 /* spinlock_linux.inc */; }; - C877437E6DE376A7C3FAFFB5D1A20444 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C652F30BC541C5FF4A2E380EC1BE7D /* composite_credentials.h */; }; - C87A5CD15FDC79660EE68583CA23751A /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 218B693F0E08C29105F812352729567E /* periodic_update.h */; }; - C87C9C6C5A64916393A1B873490C6538 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = E14F05852005D8A6BF1F0CCCE7FC33DB /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C88269F7FF36B2EB9F28815783D29AA3 /* http_protocol_options.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 688CDD9CD61F8876BCF91E5F07BC25B6 /* http_protocol_options.upbdefs.h */; }; - C885DBC5F5D2F44785C86DC43D08D145 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65F85343FAF6CDBC6EE038C03F1849C9 /* channel_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C887AF03078E988DD850C9683DB9C5ED /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B760F55B43B30C3FD903A2D812C4D5F /* FIRAuthWebViewController.m */; }; - C887DAD50EA49516F4D2016CED72E350 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D34B6A36A4D560A7237B4958215DF921 /* load_report.upbdefs.h */; }; - C89BF9ABD2FAC403B0F746A262EBF68C /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D65119C433B27191C4D4A6BF34167642 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8A71B902D4AD88DB2329CB482282389 /* posix_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = BB28089A8D2B0AC3599F8CF30439F67A /* posix_endpoint.h */; }; - C8A865981B283B8BF2302F82BF539339 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1D92AAA7DFE3B92B2C91F392283AF434 /* resource.upbdefs.h */; }; - C8B7085E5F9EA79A9BC65BFF56339E63 /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CFA4E39C49D79D5B3C58E9877272EBA /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - C8BEB2C87DCEE86F3C0DE6837FF021D4 /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 31CD10E7FF58DA289449568C540590CD /* channel_stack_trace.h */; }; - C8CBF500BB87112334BF06ACDEAA9A6F /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 604315A5D02AD41BA7F1430425A42CF0 /* fake_credentials.h */; }; - C8CD27788DF51050FC5BDC0D89090891 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4A692DF5F1B0142847D7CFBFCEA85F /* resource_quota.h */; }; - C8CE897DE355E1CC1956C0D3FE07571E /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = EAEABB13C38B300869C257192B1C3872 /* client_channel_channelz.h */; }; - C8D0E4A0801961B21B530BF5AAAE5622 /* http_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D8EE4A6DBCF9B5C176EC954D3240C23E /* http_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C8DC992173BB7208F1217BA4AC908B85 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1917D122177D6F841FB8D0D73A26A4FD /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C8E5D5E29D6745A7EC057272FFD3570A /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C5BF6354889355A89F9E207F0EED682 /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C8EB782AD615E08E521D165C82E2FF04 /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD4D05C4D21774089EE1FD9ED1F77EC3 /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C8FA6877DA64880D6F865296983D5DA5 /* zipkin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 04445866C0C23656E74337105D2B8B4C /* zipkin.upb_minitable.h */; }; - C90D100775F2D33DE978A473A3688DD2 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 619B9DF9E6106E19FA7E35277E2BCB4B /* rbac.upb_minitable.h */; }; - C9123BEBC8EC0E3B70A211E9EA286E9B /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = 913028E3CDA96DFF21D4CEC3AE925A3A /* avl.h */; }; - C9132D556674B400597C2DD9FECE4119 /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = 64104CF882B6F7A79F0B8AA5D4C4F86E /* decode_huff.h */; }; - C9171A1E6EFD48958FFEAA9FD9D717F8 /* NSBundle+TZImagePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABC8E2A533E4A4F8416CEC7C15627DC /* NSBundle+TZImagePicker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C91A3F2EB28D09A0820297B4319167CE /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C28B18E886E55CFA250ACCFC3FABFFF /* cel.upbdefs.h */; }; - C91FD4DF9FC354F2F7BBFD001DFCE1C6 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B7117987C3863B46F851DDF3338A549 /* discovery.upb.h */; }; - C9349E20D05BF8F08E796B59DE546702 /* decode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = F7BFD805C03093816E4101E628B7FFFA /* decode.h */; }; - C93FAF1E934FB1C6B0CEBA5234102AAE /* symbolize.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6940CBE161A77C4573609F2454399AFD /* symbolize.h */; }; - C93FCF8EDE22BCE3196B25D0354DFB61 /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 7E0A3ACD9BB97D9FA957E960E37BFB1A /* stacktrace_x86-inl.inc */; }; - C945004E678A1362F8FC80953BD12B02 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C2FAC50D6B78B4D9FEAD39D3DC3563D4 /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C946C0569BAB665E0A78DA05BB033ECC /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FFCE82F95B7D25A8CFE76C42FB60706 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C961A7118D9A7F48881B08962F48245E /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = C6E54A39517DF2E951E70A3E768C6800 /* message_def.h */; }; - C97A7069C27A668EFA1E0EFC57691C06 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DA608436826A1DDC1045B7BD25356B /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9830052F5A1CC095DCB05A5DF44E22B /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = EECD48FCFC73BD053B0867244E74D12A /* struct.upb_minitable.h */; }; - C983478BB80BAF0456AD693D6BF9ADE0 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 422BC350A7A010136889D10AA799CAA7 /* completion_queue.h */; }; - C985161C7404C5A3E8278F94370DC5DF /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7986B36BEC04E26D990D9B5588B3D1 /* grpc_ares_ev_driver.h */; }; - C9999F3FC927E648F0F4C0205D14932D /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7BBD88153FA56786F1C6BED767F80C78 /* tcp_windows.h */; }; - C99FC657CF998A7433B570CBBB48EB7A /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD0A2F54C32A0D0E18D2F5368D95749 /* status_helper.h */; }; - C9A052A07DE296C84BD364542073E98A /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D2B47132EA5C267C300B0D90A7ACEB /* cluster.upb.h */; }; - C9BADF21B00E4E9ABAA7557C214C8655 /* filter.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CC4C8AB9215099E18C0F83EF9256F4A4 /* filter.upb_minitable.h */; }; - C9C02D66E7DDC66C33451318810661BC /* generated_code_support.h in Headers */ = {isa = PBXBuildFile; fileRef = C624EFA3F41088EAE00EACB60FF1076F /* generated_code_support.h */; }; - C9C687019F7FCD275859AD06F847B011 /* xds_resolver_attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C2287B0CA2EB81871504CAFB82D7DE /* xds_resolver_attributes.h */; }; - C9C824C16D5133206414C52A857407C1 /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96F74542638ADE03255F0D22F61047 /* channel_fwd.h */; }; - C9D7EE5A731B0DDB012457495CA92E58 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4205843BB8CEFF1AD4951B5312524B2 /* http2_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C9DC3597BFB0E779D113F496D72DE397 /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC768C834722F0E5BD1BEEB6AAD4048 /* sleep.h */; }; - C9E47E9CE0036C98A8E03C4F4E6524A4 /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10393B6C69B9D3EA52075E94574EF86E /* iam_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C9E4F75031F1A750B784BB43E0AAF33F /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = B63B07D2C4640022852C0F751C72B1D0 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C9E9EB10AC8DD878BAB3A76403925C78 /* checked.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CD481E2CEF62C81B59B13BB3A0BAE602 /* checked.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C9EC14BCCC4F3607CFB5542BB02BF39B /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 40207359C0D668DBC250FDAE44DF152E /* route.upb.h */; }; - CA09BFF5F9086330ED37F7B99089DBF7 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0EC1614C31388E5CDB2395C147DBB2 /* grpc_ares_wrapper.h */; }; - CA1014A829CBC56E3E01E64DA4E7AA33 /* pool_urbg.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 09D06D8382E762E2FA2876E6673AA5DD /* pool_urbg.h */; }; - CA1BFC94E5AD2E95C061B14902827755 /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 891187FA53572690C484A023D51FBB95 /* ExtensionHelpers.swift */; }; - CA1C5C9973CAE87B9D845E36635FBD92 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 86F6D1ADEA3FB1DEF90FE27AF3CF4BF6 /* dynamic_filters.h */; }; - CA2494DFC8306CC45B2D409401850880 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F488C77C85C1FC19FA2EB67E4AB1CFB /* internal.h */; }; - CA2F71CA6AADF64E42A8E40AC9802CD3 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8BFD3224BAD603B76415F0164BE8CE4 /* xds_server_config_fetcher.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CA3261B02E134ABE2610EA3599BFBC98 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9554D677BFFE8B2F8398AC47B6004CD /* lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CA3D52428D52205CCF2C3E1D5E9764D8 /* substitute.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 098A0466AE3CD02755A5192B77DAB049 /* substitute.h */; }; - CA3E1D5EB68765D9F3DE1BCD1BF68832 /* curve25519_64_adx.c in Sources */ = {isa = PBXBuildFile; fileRef = 342EDC1497BFC2DAEA536D2DEF50B0D3 /* curve25519_64_adx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CA41B720362FB509EF6970A7532483D8 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9856ED55C26F1F2DD150B258C22E4061 /* polling_entity.h */; }; - CA456BAA6CA75DBBE1F48857B42896C6 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 023E932E9549394B6AA67327690E43E6 /* grpc_tls_credentials_options.h */; }; - CA473D645A2A45FE70BA0A5ED30B4CD1 /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = E5CBAA17FC51510492CEC4FF7EDA4E6B /* json_args.h */; }; + BE253AC3DB8700C2D882543D22FDCA17 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 4D8C9751C0A5D94150C568FBE073DBFF /* backoff.h */; }; + BE2B11FC4AEB2AAF9AE2B420258D0EB2 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01A9BE12316C4C29BA8672F8359B1608 /* csds.upbdefs.h */; }; + BE54125E870242E160FB4971B1945AF9 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 6346DF8941FD9F0A68679D980135E79C /* map_gencode_util.h */; }; + BE65B9DE09F9200DBF68D669C57C532B /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 423B462BF76BAE2ECFFC13E9236F1A3C /* http_inputs.upb_minitable.h */; }; + BE6BC3DB649D3095215A72E381EC161D /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = D166041D8F3EF9D14961C96E42C30F1E /* json_object_loader.h */; }; + BE6BCBF17E4EB1F12741F1BF4F307BE8 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 93056346FD69ECF0442471215972E0FF /* FIRInstallationsLogger.m */; }; + BE73D91CF05C84DDBDE1CB76AD34D15E /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 662EB73880F51F07D408F80C66A7CA88 /* ssl_security_connector.h */; }; + BE75F43825AFD401B00282640B9943A8 /* extensible.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 5763458D9776D252E75CA6F203722D2F /* extensible.h */; }; + BE76892566C6D894FE0E268E372958DD /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 811D4F55C6814BF00181E5C067369C99 /* stateful_session.upbdefs.h */; }; + BE899431E019C20C949CFABF64EE4935 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7617EA171BB5C4FEBC67B4C07691BFD5 /* common.upb_minitable.h */; }; + BE927ED214BE3E00660F8E05BAC3DA10 /* has_ostream_operator.h in Headers */ = {isa = PBXBuildFile; fileRef = A918DB6FDF3B9A19BFF707A5C3173231 /* has_ostream_operator.h */; }; + BE946994A60086E0680C6869DD948F67 /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = C4697ACBF6B857A5D9177A7241D4342F /* secure_auth_context.h */; }; + BE9B68CDDFEFA8CD57970D9B8EDABDEE /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 919357667202CDF3A6D1A60AEFBA730D /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE9C17013BD61C11D5AF6B2E41519A99 /* cfstream_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B5C67AB7176B35177734EBA54DA700 /* cfstream_endpoint.h */; }; + BE9C7D7913A4694A934C1F75C34CD729 /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4262B0A964A866EE9A698A6A52A300A1 /* ref_counted_dns_resolver_interface.h */; }; + BEA18517F0420C9EC1D1871315B009F8 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EF5DCC84E169CD3E5CD443024AB085 /* address.upb.h */; }; + BEA6B5192AF2B73613C489536B7F6644 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 00BFFBC359DB1ECB1230197521CF30E1 /* GULNetworkConstants.m */; }; + BEABE53B6E1A0BEEAB334D25D1B1A630 /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8DF795461327D6346A4903A9DCEF9CD3 /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + BEB34B7EC26A90B0CF8F68BE6C8B22C9 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F8BBCF9035634477E0EB32AAB87698 /* alts_record_protocol_crypter_common.h */; }; + BEB3FA0152F99FF6E135AF910CF9420F /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4159CD378B07B500BB26724A9649F928 /* transport.h */; }; + BEB479ECC340E6D0ADE938987CA7265A /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */ = {isa = PBXBuildFile; fileRef = EB07A5777126E2A5654DD1C184D22AE2 /* binder_server.h */; }; + BEB4AEFC96764AE4C7A3E3ACDAD5DD25 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C1076B34A6BD1AF912E096D5622B91C2 /* utils.h */; }; + BECC609B3942C1885ABEE64FFF0CE503 /* dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D03B104CAECFE3CC6C03672748B965E /* dns_resolver.h */; }; + BECCC0B53DD0F4C7F454954877952257 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = EF035AD680FEBA5AA558BFC122C3C108 /* time_util.h */; }; + BED6B45773B70C165989069379F6CFBC /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D639B3AA4EEBB9E1A7B43F6A1AF9B28 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BED72783E44C17A6DCD73E280A26BA44 /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CEA13A1ADD4D1FC82BE4BB150864583 /* byte_buffer_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BEE189F4C1257DA242B99BC318BE9079 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7B19343AC5FD954AA7917604BDE3CAB2 /* http_tracer.upb_minitable.h */; }; + BEF31682799A22606924C676C6D3C44D /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0A3886093BB721C7A73A3EAE6053D9 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEFCF58A94E2557509DE234F7A2D7490 /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB6E5ECBAC719DCEA50552C67AB1B9E /* xds_routing.h */; }; + BEFEABD5D191CAE39C310F456437F5B6 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9C874AB92CAF95AEA9A407F5F7AC5BB3 /* ads.upbdefs.h */; }; + BF0D06D589140EC3C0751BD0312B20F6 /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = 28ADEDC3C90F6EDA4A43E13A3F89967E /* status_payload_printer.h */; }; + BF1A9CF497372B7011B8EAA74E1D4DB1 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A40DF2D241257CAC8755B4C90B1A3C9 /* ec_key.h */; }; + BF349B8DC17FF57AB203DC7BEBA35CFD /* service_config_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F9D94AF926B2C4CADEF20F2771CA5F7 /* service_config_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF3DAAE62EA4BD7AEE32E34FCEFC9D7D /* abseil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5BE5C63E5E76A9A05A413FF52D8F88 /* abseil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF3F1D6BEFB348530668A9F8B5F9135B /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 655A2AB20C0CC9EAE7EC87DD4157D652 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF4C8F0AAF84137B7C8C0851D6740F68 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DEB93536CE0AB9924034A6A73151DB66 /* csds.upb.h */; }; + BF4D44CE8F1DCAB8F88D53E779363F28 /* FBSDKURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = D9320F65E0A1909F90D4AC2449249E94 /* FBSDKURLSession.h */; settings = {ATTRIBUTES = (Private, ); }; }; + BF4DE7121640A86CA8834856652826C8 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A90FC3EE1D2A3514852C46490801444 /* client_load_reporting_filter.h */; }; + BF5E6C6A8A00B9DE9C55BB0799F46732 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BF825F80971C4CD99524379DAF8E2986 /* bdp_estimator.h */; }; + BF64EB19DC05072C76E4EB8229570123 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D79A57FE763F33212D98BB03EB43ABA /* bootstrap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF661256B3EE9B4C6AEA0AEA0DDE6D80 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2B85D7F7C3628C045F018CD97D56EE /* internal.h */; }; + BF6BDC76D57529F800C94F64D3C298E0 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F924A74D76F29D1496C24221FF0109E /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF7A3A393F95261DC1C320281EE62CC6 /* x509v3_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 261826F32722C791F8387B85CDDBB7D7 /* x509v3_errors.h */; }; + BF81CBD5C29A6E5D30614BE3FEF623C7 /* empty.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 748EFE09940277BD6259EE328663A098 /* empty.upb_minitable.h */; }; + BF82684E4C6C26836ED91FEB85C1BFC4 /* FIRPersistentCacheIndexManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EA618A9C539EDD6D468087004904165 /* FIRPersistentCacheIndexManager.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + BF8279C1D57B3DE385D83EB450D1D679 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71FDDFF906267F54E702BD4F18F6161D /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BF84BE06668822E4C0B34046FDD3E655 /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3297B7F8221794FEA367C4113283B083 /* xds_cluster_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF8702A8190C78EA0146A64DF4619EBB /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2776DAB9971409C50379D26483AD7804 /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF897417C0FEE62A8B9E9DB782C4A90E /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 29566837C83908AE768AAAD4FE657905 /* deprecation.upbdefs.h */; }; + BF8E7A76DA2DE9317452E18249EAD3B7 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 87311A2FB7E243DA6EEF8CCD88537014 /* thread_pool.h */; }; + BF93F705B7D6120C2DFB66DFDB546828 /* posix_engine_listener_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E679960620D4A62D4A68C12757D7192 /* posix_engine_listener_utils.h */; }; + BF96989187CBA0DC4E7ECFEC5F6D34F0 /* GDTCORStorageMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4708CEE78D92EC2FDFCF78B704F2C6 /* GDTCORStorageMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF99DE5B208CEA01C0D8A6BB82E61B90 /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBA7993AAB88F38CE4F4665E3C1E72F2 /* unix_sockets_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BF99F6AF50AE58113B58C2D2AFA634FC /* function_ref.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 3A719634F8520A6CCCED470DC9E45B3D /* function_ref.h */; }; + BFAE2084D5487AB0DD3C8DB35AADB318 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F29BF183188D7CCC149C8756AD87FD6 /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + BFB7A95A1E1018B4C4FC8CB04CA3F55A /* DocumentReference+WriteEncodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879ABE0BC33DF3C9B5C1808F34240B35 /* DocumentReference+WriteEncodable.swift */; }; + BFBAC105D118D9C5B463C69EA33A17E1 /* config_dump.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B8FE4809E674D0F1E9075D640323B97 /* config_dump.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BFC9A1A01BA6A699E43D0E871C8E2047 /* aggregate_query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00EB164F4238132FEDEF0D06555EB964 /* aggregate_query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + BFCD6AC51AAFBB8C489046D64DA4186F /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = 7EE6E3FAAA0FA4B087CCB5CA55628B91 /* outlier_detection.h */; }; + BFD5E6A7049748AE555686CD0E95F008 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0587F394DA6E391A1350F3E1DCCB8953 /* wakeup_fd_posix.h */; }; + BFD7438AF6D251BFEC83A6F2FD6B136B /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = F9F400970275AB4926E4D1FE9B45CED0 /* rbac_policy.h */; }; + BFEFC242457892764183BBAA75262CF8 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB3EB38B7074B706778A9CE01D75D960 /* endpoint.upb_minitable.h */; }; + BFF5C273817A52177B3EB2E197DFEE7E /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 97532F7AE2CFA854B457222C2AA30E57 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + BFF6E53DBB2E39D171FCCB8678F5F25D /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 6761D667B96BD70246ADD5AB69E4AB99 /* syntax.upb_minitable.h */; }; + C0007313441F0FD0B684D9ACA24C4AFA /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 428774272E46A4FE2E881987AB2BC032 /* binder_auto_utils.h */; }; + C002D1E253F0C088791E30E213CAB54D /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A209F65D6E42C8905795C2E5617C949 /* method_def.h */; }; + C009A9EB8E428C84D71F609E44B2B933 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDFE916F90654005FAE7961B7009E5EA /* overload.upb.h */; }; + C00AFE726C732E1387CAA1D1D8B7C87D /* status.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 552483454A7C0BCBB592A4ECBD4B649A /* status.hpp */; }; + C00EF37FAE5AF2F30EA2309701E0A202 /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 121156D254898F671AEAC684C1B1C129 /* cftype_unique_ref.h */; }; + C00F2D1C77BB2A4D79FC6BCD5AF3AE20 /* event_log.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1CCF07BB1F6F1EFCF4F939CD3AA013C /* event_log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C01A16B5FD2B30081F8098F793EB6DF1 /* TZPhotoPreviewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 526242049CACB0687720FA5509AE945E /* TZPhotoPreviewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C01CB0F5186A7965801E1947DBF40ED6 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DCDA221D3816AB6EE46862A0751CF2F5 /* grpc_if_nametoindex.h */; }; + C01CF56675AF560EDBA30C1CEB7BDD43 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 5DCA655961FCBD27CE5BB13A17EB3CB0 /* file.h */; }; + C020044CCCB63EDEDAA2703F0070B70F /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D62F080CB5CA315CBC6104960A3B18B5 /* google_default_credentials.h */; }; + C024A4B4678983A3ADBBDA8F57192060 /* link.h in Headers */ = {isa = PBXBuildFile; fileRef = A553E509A58C687A815B7831BF15DFB2 /* link.h */; }; + C028D977A8D883132FA6A3FE5906162E /* static_stride_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB937A49C685C845C5C6653EAA1C158 /* static_stride_scheduler.h */; }; + C037B48FDCAD4A524E2270DF8872A36D /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = B262FDFF25FBF501EAF4E6BCDF41B01D /* httpcli_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C045352C75281EEBF6CD62FF5683D20D /* scoped_route.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 17B35501BE0EC03AAA5DCE6EFF70528A /* scoped_route.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C045B5B7BE6BD5D36DEA798A70ACDCE7 /* flat_hash_set.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 38A3325E51E471CBE548D575B6B38921 /* flat_hash_set.h */; }; + C04739CBCEE445B66192BFA708655EDF /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998DCDD3E97D357366BC4DF4228D2A16 /* StringEncoding+Alamofire.swift */; }; + C06024994619295C46B67C4405F9A91A /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2A5EB3F6F5489BE98226B601B3CD96 /* string.upb_minitable.h */; }; + C074B2C02B33C297D9B594AAA8BCA484 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF9F0E7ECA34589BF3EDC6DE61BF7A1F /* fake_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C07707B339007FF67687E31BFB80C64D /* cord_rep_crc.cc in Sources */ = {isa = PBXBuildFile; fileRef = B318A371D9CD80C5D5A07B796EC32622 /* cord_rep_crc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + C0775800D269741FCFF8D549CFD487D6 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F20813CB4A45F21E64397BC4921E10 /* rbac.upb.h */; }; + C07BE4B69256003FB0E8FDC0342D10C9 /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 690D7DEE3DB478F4A9C768F9B634CE60 /* credentials_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C0830B6728C29EA7D155D11797E6C4C5 /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 916A1D6ED8224675F79AB4B8F5327153 /* metadata_map.h */; }; + C08BF7F4BD6B8B722E80E9218DE942A4 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = C33AE304FAB446DD68053447486601FF /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C08EC7F7F7A525C458F42D60F398F402 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 48111F1C5F1E4F7F728A9C4FEADACEA0 /* config.h */; }; + C093B2E24489BA08D06B0FD4733A70F2 /* cord_rep_crc.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 28FFE6A7897EBF10FE6B9DFE8E7F6CC9 /* cord_rep_crc.h */; }; + C09CF9B04062BE273082B718169193B6 /* p256-nistz.c in Sources */ = {isa = PBXBuildFile; fileRef = E3B902C6325A9F43D14E9593C6E0D5AE /* p256-nistz.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C0A2D154DBB39F619BEE6AE52A15F747 /* common_closures.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6EB189FCFC6B1A54DB8D75EC94653C /* common_closures.h */; }; + C0AC11509F7802C1BD699224FE08318A /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FBD528311EB8F4C50194E5507B866B6D /* listeners.upb.h */; }; + C0B05B3F7D634D2ABF7C0007166B6F84 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45C2E02193AC9CB8DEACBECE0E446FC2 /* secret.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C0BE6F28EFF0590B2F4CDA578C4B5BDE /* grpc_polled_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A38E4E4386BE64FAA131A603EA677F4 /* grpc_polled_fd_posix.h */; }; + C0C3C5FA0F3882D7EF1F3AD458CD94F3 /* field.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A211413DAAAF922C319CEEF81AFDB9 /* field.h */; }; + C0C4F95E3B4BE48E385BE889C5A1FBCD /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E61AAD13DABA426E29239DABF90F6B2 /* authorization_engine.h */; }; + C0D0E1A5F29B50E2EB3745EA6883D76B /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 904A34AF863BEC127045B93DB6636806 /* fault.upb.h */; }; + C0D1DFD420B68EA007196AEE7C2CDD87 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3C8DE92AF4317F95A706D381203911 /* xds_certificate_provider.h */; }; + C0D3141F580D47BA7D51839952BCD65C /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6E56391EFF25C42B0BDB0EEF85DD2D2C /* http_connection_manager.upb_minitable.h */; }; + C0D33A90840ADE1A2D20A039E1F232FF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C41FC07D0D3680BC098353E9DE13FF6 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0D4704B7E070F9734D385AC470D4F95 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 941BDAE9434B5BEED506240222E3B72A /* frame_window_update.h */; }; + C0DB460C1D587AD83CDB2F717A273F26 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A1CFF9006318172FF875618996E243B9 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0DC7F7AB720E23750F2A1FF22DD9C0E /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 29034CAEDF2C2CE919132BD8E5EE10BC /* check_gcp_environment.h */; }; + C0EC4137935AA2508CDEB29B9A33E280 /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B759622C8FAD450C21CC3594DDFC44C /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0F4F392AE2309D85DEA271CEE8FC839 /* systemd_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44930D38DB7B08058DF865A8E20BD20E /* systemd_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C108D2B695DEDE54E5CCB85B26041C46 /* ref_counted_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 450E96E9F34BBBD81C7991926456785F /* ref_counted_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C10DAF443506A1227BADEFC2963FC1E1 /* ext_dat.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D585D0EAD8841546ABF0FEFEA074697 /* ext_dat.h */; }; + C11B5F2C651EBA0171A674CD750C60D0 /* if.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9A51E8BA4EA401B015CBDC00F02A33A5 /* if.h */; }; + C11F9F9B900FBB791E32DD69711C8406 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46DDC59131AF4570E3645F57AE45F701 /* circuit_breaker.upb.h */; }; + C1211F2CD6C62DE3035BF4B22AB491B5 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5B95DC0F0BD3161D25F1B238C821B9 /* socket_option.upb.h */; }; + C121ED237DCC5C931296E38A80FE514C /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB86404E074CCCDDEA14258D54D8FB60 /* tcp_server_utils_posix_ifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C1322C697554B8AB4FD4440BCFEF9AF5 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A9BE12316C4C29BA8672F8359B1608 /* csds.upbdefs.h */; }; + C134B5110FDD3A398640B70A924D6838 /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4716C9A5F11FC4A91FB695A4AADD0C /* xds_cluster_specifier_plugin.h */; }; + C135EFAD7E6A570DAED063347F3FE56B /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0263B42CCA540350E59269B3B57811C9 /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C1376627F9BE65EB146B4879156DD7D8 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C837C6591DC1C3026E98DA97B6C441C6 /* range.upb.h */; }; + C13CEFCAF521FEE5EC6B139115777431 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5373EE0020E7501BBA3B01D7D4FD4E22 /* metadata.upb.h */; }; + C13D9FD8FECC9ACAE3D6B0728746F91F /* UIView+TZLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D680DABD214F3385D5FFCD4CE9FA2B22 /* UIView+TZLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C14140642009363B3E343549AA0E0EDB /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0791D00DA8FC3CA38195C68CFA9B0CC1 /* quic_config.upb.h */; }; + C1434B55EC861D73777ACD75BE697095 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F0287CE42A40893703EE25648E5D04C5 /* wakeup_fd_eventfd.h */; }; + C14C8EE3FEA8E7A33F1AAA37565126A8 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7898B94618A60E30C44240617673FC6B /* status.upb.h */; }; + C14F1B97ACF195C31B7737B490FAF9FB /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 51A6784E63EF08435CEDD0CFC392A574 /* status.upbdefs.h */; }; + C15B3F89E6F83DC9CCB14903FC5D80C5 /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C803AC6ADA0D2567F45EF2F3ADF7DEB /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C15DE1937DAE891062974CC1AE7DE5FE /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 05625DA5F6551E56754387F4F2CB0DEB /* FIRHeartbeatLogger.m */; }; + C1612EF35DBB141C9EB90782E1971FED /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DC9C58B7EE5E8055B9DED375592C3B /* poll.h */; }; + C1714A0D1B5AB6B8B85C87824B53CA8C /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D498D44C32CF0DBBBCCCD6C5EB0CBD8 /* array.h */; }; + C17996BBD1DC51CCA68B35D345F0EA11 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 46CCD863ED9DD807612737C12052EF16 /* FIRCLSConstants.m */; }; + C17C030539E0DE92F0E92AB3C0181DDD /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B026A628E054EE5E7C290F57E9AE6CAF /* FIRCLSRecordBase.m */; }; + C17E5BB842EBDD335755F7352FEBAE5E /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 84BB4CEFF5D66F211D52C93C4DC818B2 /* call_once.h */; }; + C185D813E26CC18B5662DC233B7A4A36 /* asn1t.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F5B5D47C884131E60B2DDB60FB0CCB23 /* asn1t.h */; }; + C198CFEAB4A3936DFA8C1688436CFFBA /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D0331AEF47CB85BB83186F87C900F1B /* custom_tag.upbdefs.h */; }; + C199A6335917F0E0A583A1931D26054C /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 45FFCAC397DB0F74F647277B5B515B0B /* http_uri.upbdefs.h */; }; + C19D3B03D4C1CBC0B25B9C0A4A31C43A /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F4E527CAA573278E19F66F1370E5B20 /* matcher.upb.h */; }; + C1A9CAD6D2910AC0AF7D81192CBC2B06 /* service_config.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 303CE32F97720D58075441B064BBD81E /* service_config.h */; }; + C1ABBE1992E67265EA1721E95298DE59 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BF774D81ED6003BB11D21599529AC00 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C1AEA907AED13589659E37E417D9163E /* FBSDKDeviceButton+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 591E98414487104867469928992804A0 /* FBSDKDeviceButton+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + C1B19EFA57AB093C9C76EA0FED77BF42 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4570D7BEF446629739CDAF9DBFE4C8E4 /* cfstream_handle.h */; }; + C1BA89DAED2C3639F30893B0F84ADF08 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = AF21B2DA51F28FFE184F0AC17A6064E2 /* trace_config.upb_minitable.h */; }; + C1BC30BAF77AC84C7FBDFB073647A57A /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = BD30775BF9443B3B8C08BBFC7E3C1AA0 /* local_credentials.h */; }; + C1BC38DF4A76F4020467A03074FC497B /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = F476E313CAD2B6C0E800EB66079CD7A1 /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C1C813BB3E690862C763941066DAE507 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 2BB905ACC2214F1FFF82A2E7511F3674 /* PrivacyInfo.xcprivacy */; }; + C1F1471F1BA7233D1F12C3EDFA116995 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = 2D5DDEC8FEF41B97B5F1328ADF9815C8 /* iam_credentials.h */; }; + C1FC797A12CCBFC23B1DE0601DF21BC2 /* FBSDKHybridAppEventsScriptMessageHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FA081C120DC794385358C0B53FE240CB /* FBSDKHybridAppEventsScriptMessageHandler.m */; }; + C200376F0CD6AF913BAAE8F98B085C23 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8F71C7D10213B8076795FC365A143E8F /* wakeup_fd_pipe.h */; }; + C20106E50A750121A563A5831904263B /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4647A20C327B2BC18460420ED1BCB0F3 /* port.h */; }; + C2014373286A04E77E87EFA4E47BB673 /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 8448C877B707E3BCF19F42CC5C373F71 /* xds_bootstrap_grpc.h */; }; + C207AC52AE08436B4326FD38B2516737 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E18934560E0C55A173B24FFA8085415 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C20FBF80FE23828B793BD093D726B6D5 /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6A120078930639C1ADCCA33C4EC8A64 /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C21563B684C5EAA786BD6138636030DB /* internal.h in Copy crypto/fipsmodule/dh Private Headers */ = {isa = PBXBuildFile; fileRef = 8D74E0C976F9720A94FA0C3BAE525460 /* internal.h */; }; + C21AAA053D17FF77E0559852081EAEA0 /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 437FA33E380A0CB7F855C5A3BFC7F789 /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C2441CF2538C216E6B441913E3AFDA8D /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 87433464BBD0F30267842FAA0D64CA11 /* config_source.upb_minitable.h */; }; + C247DBC7534F150BACFB320A551E624C /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = A6860DEC7B9EABD696E9B3577FF6ED30 /* enum_reserved_range.h */; }; + C24876D4EC5313909FDADCC20D3B12C9 /* get_current_time_posix.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 50D3857706DCA54687F2BC977FF8A8ED /* get_current_time_posix.inc */; }; + C24F0BC4F98C5E91CA3815431CC1F385 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = CD3526D01A4145324B686B95F9FA3431 /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C259541CB42DE9D20B505E8D652D49FE /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F4D13BFA38BABFA51066F774598572 /* typed_struct.upbdefs.h */; }; + C25A772F206610DFDCBF367FBAEAC383 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DBB78398400E7750F775F5D88D6528 /* FIRCLSSymbolResolver.m */; }; + C25F7836AF9C47C290C614C09F5F5928 /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D60102CA12937890CDEDFA66BFE36FC7 /* try_seq.h */; }; + C26116243561A6041DB30F1E377F20D9 /* FBSDKDeviceDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD005353F1524A47CCD3D431C36C55C /* FBSDKDeviceDialogView.m */; }; + C2667504775F486C3F5985C7E264EA7E /* create_auth_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 164B9FA298A66A34CECEB7506DEB40AC /* create_auth_context.h */; }; + C26F21B0448486222A3FE5A4DE1EFFC5 /* json_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2DD7F841C5756293E2BE4EF2108499 /* json_reader.h */; }; + C27C8ABB5C6695372F0911A6E319BFAD /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 5F9AD0C399468DA572136CAE86892578 /* alts_frame_protector.h */; }; + C27E6190B67549CFE52C7E41192A0EED /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36BD09BE5F2EC42DA366D267955B60A8 /* frame_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C28111AB24AF921C0B6981865ACEBC5F /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A398551114FC941D0E2DA950C6B7A84 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C29363A42E96FC6238D449F657FE464D /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = C606C3126F8529C7CA305A211537F54E /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C29EC6FC2C5691BCE5E14529472EE4CE /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = 74897C7A71D6D7339EBCA04B7764D6A8 /* error.h */; }; + C2A476CD4E56B76EB9D7992510C7C210 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 4073F45F433A75DB075AB959A7EA949B /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + C2ABC524244D3E3DFEF935EFAF1BA426 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D3C7F0B14AC08313347EA946F5B9BF /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2ACBBA2F0516014F31619BD57E8955B /* FBSDKServerConfigurationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F28278A4EED2FBD42F19836C59CE20 /* FBSDKServerConfigurationManager.m */; }; + C2B0BA768D4192D5A82D0502E6154561 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CF1AE2FCCA1073BA4038D24DB6155CAC /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C2B18F3E7B3A499339B4825A8C399AB5 /* extension.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 26549A418DA5BE6D60312BA024008FB0 /* extension.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C2BE5C18C440B95F0F0CF911005C2908 /* trees.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = F100167E1BA7B5E787231793F97F2896 /* trees.h */; }; + C2C18D6FDC2CE46F39793244A7C63537 /* FBSDKAppLinkReturnToRefererController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B9283DEEE779E430CAD26C22FE1B90 /* FBSDKAppLinkReturnToRefererController.m */; }; + C2C383274DBF2F21E21E114BD61D593D /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6815E910D1386056903B28F6736CFAD4 /* init_dump.upbdefs.h */; }; + C2C4F6465F954D2BD066281DF491BC4B /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 571FA01481C452247E5020B939B68446 /* struct.upb.h */; }; + C2D0F469D71D6D6132F86B122F030AC7 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C6C3C2B82B1D3BB5527F2DE5CF7E69 /* types.h */; }; + C2D16A94284823BE71B7999C4CCF08A0 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A975E7AED809A982FB0C550A67B5DBE /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C2D1AA93001E4B47E3ABEA10CE0D7184 /* config.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = AF61804A5FA45D2047D450F82A3AD0E8 /* config.h */; }; + C2D2C68BB6C72A177CF43E3429E9E69C /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A702392A775E9ACB0A9F430868D17E7 /* optional.h */; }; + C2D66E21F0F3770AA7DE425E1D0F1C54 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2997D63FA71F474C0007E72BAC71BB87 /* mutex_stats.upb.h */; }; + C2D94DA4E9C9E5B104B2D149E05C5665 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = E46526A5BF9C4A1C334ACB727BCF72EA /* per_thread_tls.h */; }; + C2DEA17C646EFF9F8D99DB540F5EEAFA /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 404EE3170E64678A070C8808A5A11A9A /* health_check.upb_minitable.h */; }; + C2E4CBF80E8F453F7D12EF2410E1E9DA /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92C06845916F424871845F5BC9F0F20E /* http_connection_manager.upbdefs.h */; }; + C2E867984481B49FB60CD7EE082B06CF /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC6750D6E22F3861A09401D6E2BF0429 /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C2FAD005CD94365F463EA2568764D631 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3593DE33DB7E0223EE05A5376210B69D /* discovery.upb_minitable.h */; }; + C3013FB0CEA0FE75AB0B318BE0CC9C93 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 25179981FB82751FDB366929E3A6432A /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C31AB3D6EFB782B0CEB2FD5917735600 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B2E99F1280B86FB133A0236C86EFDD6 /* message.h */; }; + C31EF4EEEA363380AEC6C241E9032055 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FA76E16D2C2B018EBA32162FA7B5D8 /* message.h */; }; + C31FA07BE42BA47D22D55DA1E103C017 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2D9407D3ED3C98D1A1DC2B17BDF17FA /* proxy_protocol.upbdefs.h */; }; + C32501997D3BF08564263111004F700A /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6029EC93D205BA806D93319D600131 /* str_replace.h */; }; + C331FF17191FB8ECF72DDC256BF56F11 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5D3A10D4C075B5B265E81FC6EB95F8 /* server_credentials.h */; }; + C33B51282BD71376525B98AD1C8FB2ED /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C22AD5B76706CE38F6C9DE4CA4CFC94 /* FIRVerifyAssertionResponse.m */; }; + C33E6D9EA5A40F915EE49D36106BABC0 /* stateful_session.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 811D4F55C6814BF00181E5C067369C99 /* stateful_session.upbdefs.h */; }; + C3487CC30AA6D9EE05C3A40A0250625A /* listener.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DEF5BD03BEE43DEB57323241398C02CB /* listener.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C34D4796E6B283861A3867B9B9194903 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C76FA5B98A857E05C2BC37BDEDBCAA0 /* logging.h */; }; + C3501B1D07617B28FD9C1AF4B0026A51 /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = A87F7A77FE5CBCF0F4B8211AB96E8B9F /* periodic_update.h */; }; + C354F41A641DFC04FC3677DCCF591558 /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = 332E7124D1DC4F6207690B6BBB52EC98 /* unique_type_name.h */; }; + C357E1F44CC6994F67BB855F4DF17361 /* discrete_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 19613E298D37A60E97F9644EEEC5B219 /* discrete_distribution.h */; }; + C360038DD317E80763408F80C14CD30A /* zlib.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = D79295064D1834C4D110E37CB525094A /* zlib.h */; }; + C363E0886B3DA32F1A4252D236FDD82E /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C5C5A14F86523AC32F29AE3CAC76A98 /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C36F03646F0A930C7F1EC94FF35EE921 /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D6477D47444CC4086FB290AD1948F9 /* unaligned_access.h */; }; + C37CEDE327FDE757B14293E1961ED554 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 113553C0E3D66203F7602B91A34640DF /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C37F0393F6DA00E194E30C263934E580 /* hashtablez_sampler.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9C306C14F33F47B57739BA5EB124C275 /* hashtablez_sampler.h */; }; + C38055538B7D057AFB35E993841F1625 /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F00B779BE4131064537A7AA063A959 /* FIRAuthDispatcher.m */; }; + C38C8FDC8D118D59E2065ED24CA6BF7E /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = 920E6C57C2AD57B16EB2ED2698633A3E /* xds_cluster.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C39508BD7E36CB0720761248BA956146 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9B5C37CA2358483C1F8D39750A9FFFD7 /* endpoint.upb_minitable.h */; }; + C396DABB385E7DA5897F179785E4A3AD /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3037C6BFC7AC9A0D3F08EA8FE53CCC /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C397DC41F737EA1587929C1DD99DCCED /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 82EF14D4707DC105536F24BA22973FCC /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C3987E59B269279ABC406A318C005020 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 93914136B89D783A0A247E4F80118011 /* extension.upb_minitable.h */; }; + C39B0460852DE9CC7A90F98FA3B44C9B /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = F97A374DA166FF3040DA26119A3091C9 /* GDTCORTransformer.m */; }; + C39C4CD930D0DC3F27BB668F22261982 /* asn1_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0DA3338F7D53A25F261A8E80DBEAA469 /* asn1_mac.h */; }; + C39EA8EFDB42D0CF402630978B6E5EF0 /* tls_spiffe_validator_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EC97FD894BF5332876B2CEFD05C3152 /* tls_spiffe_validator_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C3A5291A993F4C7617106DA2366C1FD6 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 84CEE0036B9190AB0E55292575EAFFE3 /* generated_code_support.h */; }; + C3A5F642B1CAA0A3AD7761B7E06098FF /* LLCycleScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AA52B38BB105E4A9BB0CFFAC44106EF /* LLCycleScrollView.swift */; }; + C3A934D642D74CE729EDF5EA393F5E68 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A383B79EADD24AD543FC9C2C159D10F9 /* call_test_only.h */; }; + C3B5A9E52A0B0816345ECFA9EA743C6E /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C16D2AE9F346082B4309AB63381345 /* grpc_tls_credentials_options.h */; }; + C3BBF81E228180E68F372FD6C9AA4166 /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA3B9A39D5D2C3EF6A4AEB2354DA837 /* latch.h */; }; + C3C707BF8ED288870876A5746442AD9B /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = BCE40E0EDD82DCC0DD3C70E1EE4F3EA3 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C3C74B7AD8AE86B0DAEDE4F88FEBDF80 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F7252B40877D3F27DC0F510152845FF /* discovery.upbdefs.h */; }; + C3CA810A0D67763134C1A81756C209BB /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CEACDEA1B60D491A39F5860E0E605C79 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3CFBDD1EAF5DDCFE178C0BFF04E5D18 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE05ACD2ABE8DAD6F089116A3D5EB45 /* FIRTwitterAuthCredential.m */; }; + C3DD73E6FD5DF37DCBD458E98EB2DF7F /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D01573EC9CE6EA60F27F4E91A956E4 /* types.h */; }; + C3DF8A712A269622179DAFF24671BC41 /* call_op_set.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = C4C556FED90344CED6449DFFC8B6197E /* call_op_set.h */; }; + C3E5F5221C43313147D2B546D861FC69 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 28F362C72EBC35A29BEF0D09F9848663 /* timer_heap.h */; }; + C3E752B928E9436EF2034243BC7835F9 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4AEFB63B5203F8DBA00EC1862447F22E /* thready_event_engine.h */; }; + C3EEB52D2B01710E436D8CA93B2352BA /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 450451951FC2AC58BF47B481D6A744B0 /* construct_destruct.h */; }; + C3F27F83AE2E4FFAD2370D44399792B8 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3898D90349B37CFA2F2BD513393E50F4 /* sockaddr_posix.h */; }; + C3F741BCDC5B2D2081F4204CAB1B142B /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A5CDFE20FEB8E09D77768BF181F62299 /* stacktrace_generic-inl.inc */; }; + C3F9DB01F33AB9EE1E570C03B1EF43A3 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CFE927F35A5C87FF61F1ABCA11163C9 /* listeners.upb.h */; }; + C3FBDF6517DC872472EA399EC7871324 /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = 725365E125175FC6C7A6EDF6DD977478 /* objects.h */; }; + C407ADAA941DF9A82BBEAF58564A8B1A /* subchannel.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2A6B1512856BAEBD8F259304C7C93E8B /* subchannel.h */; }; + C40E80384DD11A8683C57F149A7EFD89 /* altscontext.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CC35F42D2CDC541F83B1D781B3DC34AE /* altscontext.upb_minitable.h */; }; + C41CAD73F601B0A8CC244BF0882DEFCC /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CA7C7E4B3D7D5FBC0C839823DDDD1A /* mutex.h */; }; + C422B70DEA50ABE789548E1FAFDDAAD0 /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2872619FB39761007FDBC92CEECD0E /* subchannel_interface_internal.h */; }; + C4316538F35E74E1A969672DEB9B2DAE /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDF4FDE8AAE7B59BC6139AD714FDCE75 /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + C432E97B3C517E480A453CB1AA9BAB78 /* cord_buffer.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = B75772990B00CF998ABC2895F6276E83 /* cord_buffer.h */; }; + C4502D4FC5E8CCC56AF8B618D5863D2A /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = D27030308EE0D81BDF1036D2BF3F8431 /* base.h */; }; + C4519AE1562DBABAACA274AD9233E216 /* filter.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 38149139E9DD67068F7DA31FC3162DB9 /* filter.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C45A4766E4E30D0A539F787030D4D4E6 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 1CE032DF9BD8ECED04AE75E1A0D58B0E /* inproc_transport.h */; }; + C45A4D3718378778561FF44D13987CAE /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D077C06BD49A00A85E962573EFBE45A /* matcher.upbdefs.h */; }; + C4652894CF9BDEE73B15C3169FE83871 /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D22FDB0C0023582240F12DDA0593E4B /* dtls1.h */; }; + C46A120A48E606227010E6AA2EA0EAF5 /* FIRAuthRecaptchaVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE7237F1A69F67F571A94040BA0948 /* FIRAuthRecaptchaVerifier.m */; }; + C46E1CD48BAF817783AFE6188ACB81DD /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CAFC7942485836905B6004A161A454B /* matcher.upbdefs.h */; }; + C46F08D4CC9FA1C4B19734053FFB2B91 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0800EAD18B7FF9347681F4E25BD8B2E /* percent.upb_minitable.h */; }; + C4758E6D73BF4754481562207C6AD188 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F4576A48160D5D6ED43C610F6D6139 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C48136871F422D9D934E0AA8E73F0EC3 /* thready_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8457ED27B51AD6FFF7850DD693D102B5 /* thready_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C4830ECF06ADEDE5BC78C54680F29DB0 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DDE341C0C662CFB3708633EB5FEAA81 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C492EAB41B0203F4A6E884AFE6434ABF /* map_sorter.h in Headers */ = {isa = PBXBuildFile; fileRef = 863F6090FD5561BF48A21C53D9239F76 /* map_sorter.h */; }; + C4B661B6C4818E9DEE66170A60827CDB /* supports_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CEE9E369CF1EA76B66C2F5BD7772C8 /* supports_fd.h */; }; + C4BE36D5A0AF3FA0275777CA8365C048 /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = B39D05A6C9D19FCCB15C3A5300926349 /* grpc_tls_certificate_distributor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C4C21ABB3D35417F56829DE588E7AF2E /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4243509E14B58BBB1D1355A2DEDC385E /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C4CE0DAC10793D2E4B8D1F4C3A6ECBDC /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = F91D5FB72A245F8B45C1331120CF151C /* ripemd.h */; }; + C4CE45AEEE004A34B808FA7A0C19A180 /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3F1D8F0B845691C77231FDD7CDD075 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4D34B05C9A0DAB136748DADD7DECE9D /* str_replace.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = CD6029EC93D205BA806D93319D600131 /* str_replace.h */; }; + C4D6081E2EFEC93F690EB08390CAAC00 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = DEF58E21E7DC16C84CF50BD3E4A4D213 /* global_subchannel_pool.h */; }; + C4DFD0950BCB9B53B31DB2B158D2F6F4 /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F06BED0F0DEB5FAA93ECB1106DAB55C /* xds_route_config.h */; }; + C4E007176E53952B22B734BB166FD5BF /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7749F8921D73AC22F357589193965D /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4E27B7D626A2119FC9CF1AC997DFAEA /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 4856881141E4AC66B7320B785D9126FC /* encode.h */; }; + C4E62E9B3DACF7F28FC1088D1FDC0AFD /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1343591B4DB115A0FBA1ECD717D5E6 /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4E8B5AF2B2BAE889D7FEF846A1F655E /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 820488F9D927AA3A729E468C8248E89A /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C4E9B6DBCE3A78C2127FA3A6269E57CA /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58097BA075B64006BADF4CD9DC79BD60 /* KFImageOptions.swift */; }; + C4ED465703930C870E2917AE8D3301EA /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AF91C7B403888FAB0393D25726032C7 /* civil_time.h */; }; + C4EF4435B8DF21BA795DD7F313955619 /* tagged_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5EA098E3A0EDFBD639BA0105E60CDA /* tagged_ptr.h */; }; + C504036F75E0F659CFF4BDE867834189 /* load_balancer.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F0D3DB78F9734C909EE2E8427663119 /* load_balancer.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C507F96F5E8924FD68A3770E0278B6F0 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C1FB8F23D864CF886BBF627FD5CEF2 /* stat.h */; }; + C5098B0FA18042407FDE957261CCF58F /* crc_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CD363402A52BFDB81950FB8A9AD31317 /* crc_internal.h */; }; + C51C92BE06E0213B4A8B42825AFD0707 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EF0EF70CC0FE20365AA7FAFF0E1B8006 /* work_serializer.h */; }; + C5287A1284A3E0310D84C1A79139183C /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 1D009CA44950D513B66D135FA67320A4 /* server.h */; }; + C52AEFF9AAE36A541EE95721441A2408 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 340A4613186CB32F1A1E2E02C43E7F1F /* FIRInstallationsIIDStore.m */; }; + C539AAFCD2436CCB2F6365379B241A8C /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = DF553B66C354808886781776A2B51590 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C543B78B9A10C3B4CDA240E1DFB61E2D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDADBD37B7404218955FEE2BEB828BB /* internal.h */; }; + C54EE6543480477D8BAAC61DBA13A228 /* fastmath.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BDE739610C56258EF257E163CF5BF175 /* fastmath.h */; }; + C5503DCE673D1D2242A7930187D77128 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 98FBDFB1CAE16EA841333FFB16C3A748 /* fork.h */; }; + C55A92EFB70AC127313274928D4002DE /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E1A515BA93875A75C80E08805019F470 /* byte_buffer.h */; }; + C55E58510C71365A43FAE3AC41CD1DE6 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F0B212492A17D284CEEB8A1EAFECC3 /* mpscq.h */; }; + C55EA33D3BA58298A3C57C012485C134 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B47279561F06F232C98FB7FFC9996438 /* event_service_config.upbdefs.h */; }; + C562FDB94027BD543C363BC34FF00BC3 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 500470F19C96815DAC95C93796976B04 /* arena.h */; }; + C56FAFCC91CBCD1843939AC8CF34D1C4 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C65593B21F80FAB8F750AB936D521BD /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C570B37877F0827BB1D7FE869983C5C8 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37D562817A26369C5CF7D5169CA41274 /* overload.upb_minitable.h */; }; + C575643B1537FC5C3C106ADA1DAB1275 /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC5672C357730DCA97079CF0914C00B3 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C57B9893FD72DE82572FBC4530ED3DCC /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F5B928B18375C336AB7A3C626635E7 /* rbac.upb.h */; }; + C57E749A2D606FAC75F740394FEB5B8F /* oob_backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 253CE005A486D7E19C85B8129CA56F62 /* oob_backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C5884F377DB2956F2F34561C428D84ED /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = CCC2F74CC36F468DC343FA7B66316AA1 /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C59299CCBBE88572F930B136EB02BDDC /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FD4E9BABB88FB97116EE4DBAE48451 /* matcher.upb_minitable.h */; }; + C5974CAD503DB72E1A29D56D0D29AF67 /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = F93D23EB535382F83664CCD687403179 /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C59CCA538AF2892F9AC5D9AF67903D79 /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = 28B5FC53837E0B6E5CE60F64EF677812 /* avl.h */; }; + C5A7642A539CAE4CDE14FD59DDF38A2D /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 995AF4F53D2143E857D6BE15FD1CA9C6 /* xds_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C5B24F169BB8CEAC1B5BE93FFE407271 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + C5BC81835F85677640DB04DB36F9569F /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 854216F87DBF70FAB2A5154CE6220BCD /* range.upbdefs.h */; }; + C5BE86796AF4CF307A0B412B9D2D6046 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = E147DEB1B5F1AAE448F78A750A6A96B9 /* time_zone_libc.h */; }; + C5C143E811E44AA5B7B4CDDB6C243174 /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = A261E6650AD10A310DA47294A7F69E82 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C5D0D69EC75F10336F605F04EA5D6773 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = FEB530D9AB1ECA44F56CA7FDAC944D85 /* posix_engine_closure.h */; }; + C5D522307266C998BF3E7E4400F913F3 /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = A1BC9E104FD6F3949E9304EB90C88536 /* format_request.h */; }; + C5E9F12B12B6B246B460D9CDA78FD9BE /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A999A9EDA79338B4950A2411D18CA83 /* rbac.upb.h */; }; + C5EF11EE48145049815689612B115311 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 676ACA3C874F9632E32F1B35A7A4AE7B /* proxy_mapper.h */; }; + C5F5F60D0DF6057BC57EE3C372C98C70 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E67D11EB1D9D2B2746DBC84E130DA5E /* http_service.upb_minitable.h */; }; + C607BE606FDE776E13F084E4BE6249E7 /* shim.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EA5E43CFE905014D68BF50ED8D786A /* shim.h */; }; + C617DA79DF539AF129546128AC1C657C /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 98389D31D68212AC79598BC07260F4D1 /* resource_quota.h */; }; + C621EF3139A32DBB67486ADE14970F48 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = C74D74B5DAE1A62E955A937F4FEDDADB /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C625099DDE450C260717629571BD87E2 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6ED636F11D37D99AEFFA05BDB3E021E /* metadata.upb.h */; }; + C62A9315AE36436F86A4AC72784EAB34 /* ctrdrbg.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AABC8B9F958F9087656A1FF73E3E94 /* ctrdrbg.h */; }; + C6371EC0F2C619BD9E8DBE218C142825 /* tcp_socket_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 469AB61AF50D7C519A81A70FCE4D0824 /* tcp_socket_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C63D39E8CF6C603A3093697048FDE9E3 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D6AC34171E53A1E2E88797FBC6C798 /* notification.h */; }; + C64DC72AAFCC3A21A8E2940EEC7BB935 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 8E88BB8E982D064DB4DFA2F15F39AA07 /* alts_grpc_integrity_only_record_protocol.h */; }; + C64EED5663493D6AB399013D96BA74BC /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E13D4ABB420F21C6DBB4B4C25D90523 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C6514CE80BFE6006269FD8626DC86C30 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C6B2A447E7B5AD0DDD1328ED916C11C3 /* lockfree_event.h */; }; + C659A4003832C6D2FBAD493A1A823DA2 /* metadata_map.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 916A1D6ED8224675F79AB4B8F5327153 /* metadata_map.h */; }; + C65AC5704FC705F778509E3697D24D07 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2731AAC2CC2EA541FAD92E1FBB7263E4 /* annotations.upb.h */; }; + C65E793730E9A7A7074BE361A5AC1613 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F4BC159E4985A12F0A622CAEB4CC7A60 /* service_config_helper.h */; }; + C67C363E2F39CA7F9B375061C9828EDA /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0EA2117952835B6822D493844FED42D /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C67E37A1C40BEFF05390705C34DCC68B /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C2A85E8388DFCA2BBA93E79D4F089F /* load_balancer.upb.h */; }; + C68B7572D856A5E1E61882EBFF180D84 /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8318306AC6A624965CA357600B999202 /* iomgr_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C6A23960C20B15FEE5C077C5805AAC66 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = F46316BDCF34B2CBAD26026FA6A9ADA0 /* iomgr.h */; }; + C6A7C7B9A0D7B499D82EF35703E13EE3 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A097A083EFE6D8D57B02A0EB2F52F800 /* completion_queue_factory.h */; }; + C6A90581D70DA1E5B3203299D5385EE8 /* FBSDKGraphRequestConnection+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA94E8B3B981217CD4DB20E2B94FB26 /* FBSDKGraphRequestConnection+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + C6AA6E1F4C6E50B70BE826AD59B125F7 /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 4F1F08A65453217952415D6521325BA2 /* descriptor.upb_minitable.h */; }; + C6AB6B7D4AE653A61FB29B509696A0C2 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 675ABBFECE7BA0300CEEC713BFB59295 /* chttp2_transport.h */; }; + C6AF60C48BA5715DFD03E84938F7E8B0 /* batch_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 53ECB87D5AA85271922BAFBF449FFCE9 /* batch_builder.h */; }; + C6B01CBDB05350F243B88BE23BBB38D0 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 2131F06BECBDDAA96B8A5A3D6671BD33 /* channel_trace.h */; }; + C6B5726F785AB87667DE83CED96F62C3 /* FBSDKErrorConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 702BE28CECED2E5CA16DF010E2BCC003 /* FBSDKErrorConfiguration.m */; }; + C6B691669E84F43D4DEAEFAE02D6BD48 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7AADA2F3CEC79FC707991AECEB37FC86 /* native_posix_dns_resolver.h */; }; + C6BB85234562794188604F87A26A72DF /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B923324D409469125DF6DF94BC6A375 /* FIRInstallationsSingleOperationPromiseCache.m */; }; + C6C36DE64BD091407AA1AEDDDEA125F9 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 969ADACC72EB583B84A222BCB1F992DF /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E20BC0C107E1ECD59714E487DAFCA9 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D87D55D6EBEA2002DA12F598F3E82F8 /* channel_args_endpoint_config.h */; }; + C6E62E0E2B3B29ED645E719447632A9E /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8E62165648A776A47061DF9D50C2FA /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6ECCEFB5E113A98DAB654F255034CEA /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CEC81FF1AEE3875E6313FE41FC2CA2 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7046679279941174FF9EE30FDC9A0A4 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C089A46B8A2F5FCC8F983212AD87CF /* security_connector.h */; }; + C70AEE1E61898906707A17E41CC5735F /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFD74E4AFEE30925EFB381C7D6BECC8 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C711F3B952BA67700DF97908F5F6634A /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4110C783316723021A0DBD4FA52893A2 /* percent.upbdefs.h */; }; + C7158C307087AA8ABD8F6F6E43DA6C21 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5993762CD361C4B69D3C4D4BE26EB5FE /* serialization_traits.h */; }; + C724A5D13D3B8F193AAE93DB46324821 /* substitution_format_string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1208B6BD54DFE33FB3DE02491D887333 /* substitution_format_string.upb_minitable.h */; }; + C72751345E6E19F2DA702702947AB470 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 270B5A3BCD4C98C8AACBDE291E99DC22 /* PrivacyInfo.xcprivacy */; }; + C72BA36E691EE134C51FF261F071615C /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7DA97D498987E9D8B7C35E40C75306 /* stack.h */; }; + C738502D36A76246A96F4668BFC316DA /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFE1F73D515600982DC964FE90A3013 /* any.upb.h */; }; + C741B45C5D2A41D904666E1457DE59BD /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = BE0899BC7FFFCD983C92EE85B13FC6C5 /* fake_transport_security.h */; }; + C7451A3752FFA7D43B5B081D4668E301 /* extension_registry.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FE31B31F772666F102BD33BE52C8174 /* extension_registry.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C75AC012F478E761FF9BE92C1123E39A /* backend_metric_recorder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43FC0E4858604005F1F84D28FB8711B1 /* backend_metric_recorder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C76D853743A658055E3DA5DA112B9CAE /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 7F13B575CD1A31C6ABD2A881BBF40611 /* grpclb.h */; }; + C77823E2972C39585A4927581C6C6076 /* flag.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7C20BF97AA928D8E09394423319FD7DA /* flag.h */; }; + C778AFE43B83490B3A7ABC7A6FF97F73 /* value.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CFF6073D47BC4F0E723A18DAF6335DD2 /* value.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C77B3F07A2965E83136860F9A2BCA7AE /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2F7BA3CC0D5F7F45CD5618F2922C03 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C783F8E81F379ABF7D1C72BBEF117881 /* call_size_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C504B1FA1D2B98CF832062D374ABA02 /* call_size_estimator.h */; }; + C78E0AF10A85895AB6A695B6FDA1C082 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 75C89AC9F534E7DC86EAFE7B02D35ED4 /* server_info.upb_minitable.h */; }; + C78EEF4F0EDE6BCABCCDB71C32B8AAFF /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65FF35098C7FE70C5BE7FED0F88AFBCE /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C7B2A8A4E771FE9EC8D7C4D08398E7DA /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 219FBD0B136655138196B9B2243D8004 /* call.h */; }; + C7B4CA6D1AC229451C3FBA0B1D69A5CE /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B73572591B33E9B835CB9E89EBAFDF /* subchannel_stream_client.h */; }; + C7BC1FBB327866CDB12D8304EF0975CB /* address.h in Headers */ = {isa = PBXBuildFile; fileRef = D30F74ECFEF08BEC4A8BA6E65CE3BD14 /* address.h */; }; + C7D0652747EDFD0957B8970400411DDE /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C51132B77F27AC9F39A4C1928B90CEF /* percent_encoding.h */; }; + C7DC37D1213C34C89A542F0A7BD974F0 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B565F4DAB9AE09AC14AF6C453B10559 /* http_inputs.upb_minitable.h */; }; + C7DEC6BEC5BB0E7085FE2A13704634A5 /* slice.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 600F2054D5E8D8D66BA21B29001A8384 /* slice.h */; }; + C7E74F87C7E35CD58762D71B0A436937 /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FEFD2143037999CC2A3B79CB5B1C6725 /* endpoint_components.upb.h */; }; + C7EF535EE3F46127DF86FA5C5848D5AD /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E16185C8F4FAFA5EFC1025E0963961 /* FIRLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C7F4359466A73611AD1AB69342D6E3AA /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3489B2E9E3175644C8EC1A7B26ECE77F /* metadata.upb.h */; }; + C7F85FEF5F07C76C211C521D5AEECDEA /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4526EBF9D8C1B1E7ADFE6CB53E4EB5 /* atomic_hook.h */; }; + C7F8C45624AFF1AC351C32F0A775D505 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = E145BE885604F654718CEE039F41F8B1 /* blocking_counter.h */; }; + C7F9E47F66C744CB0BF95559098F0074 /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F80E17F9809F78E5F47387BBBC540A6 /* method_def.h */; }; + C7FA0A4B0ACEE949D9C9D0245882487A /* PromiseError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6EA361750F38623D9643826372EC319 /* PromiseError.swift */; }; + C8035C39E0B801D902E64929822D0A8D /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = D4E3E46BB1DEDFFEEA029422ED5CF46B /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C80A7AF2549387D406FAD2B7702AEB28 /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A9290992FE2C03257FD12731623091E7 /* quic_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C80CCCB69D6CFA00D10224FBBB16F9B6 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 26B82E110E2968CF39A4040E577F7644 /* load_report.upbdefs.h */; }; + C80FECC321E4AD90C5F8A2C46E7CE17C /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 14257E05ED29C4ABDA4B37032AFDC0AE /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; + C8114A5667E718D9223B6FF69C008E8F /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E969B2A48049AAC22D770AB7EF266C /* default_health_check_service.h */; }; + C811F7C420F84C09C29D295EBF2CB6F1 /* FIRTOTPMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1806B9EB3A00F5741FC539C8F806BB3D /* FIRTOTPMultiFactorGenerator.m */; }; + C81960204C3A61AE9CCC1FC69AC5F890 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AA3350E3FB3EC259E0BCA89E288768B /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C8269B42DED12AB1F275648D0BD32E45 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85AA8EE550921D3412ACAC844261F9B4 /* URLEncodedFormEncoder.swift */; }; + C83084401A2942F49B8A83B4FD103E86 /* stub_options.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B1C97D4C10CA968AE9816A4BD2393949 /* stub_options.h */; }; + C83EE4A4268EA9528FC158765F2A7F7B /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 954F8CE3B634FEB9CFF40FD7C962BF51 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8438664122DF2EFBB98B18E785E2AC0 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7339F5D4CE983891F11B49A9DACCEB /* md4.h */; }; + C84A92350438E9575354878D4D7FD40E /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7CD0FB61E56A858F7A336D2570F97FAF /* memory.h */; }; + C85212F1400D821DAC9F380F6D963088 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4190D3A80247409629C5ADC935DFD8EE /* common.upb.h */; }; + C85463BE0A3E5B89ED70C51011747B1B /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = AD55A0009FD747E50AC97E64086FCDD6 /* exec_ctx_wakeup_scheduler.h */; }; + C856937E5E4C6F421851A56264AE6BB6 /* per_cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05506C165AF6C06A76BE57297557C485 /* per_cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8595CBC9DD674CFDDE0ACE6F6FD691B /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7289E408ACE5DE8114C26870E32A91AB /* cord_rep_btree_reader.h */; }; + C867EE73ECCB2B0E58C62C85FEFBA78B /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 215254EAC6327543B4CBCE2583DB6653 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C86DB08CE2165F5F20972BBCE457AD47 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FBB2267D7B9EE7EC9F57A1182DBC6CDF /* route.upbdefs.h */; }; + C8738DFBAD620B51300C2660E6CFF888 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = CA35DCD18E305A1F2DC4885E6A86F2ED /* call.h */; }; + C87515BF1F1194784712C292E8ED5E32 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C998CF25CD5395B71A28D2FBAC3A90 /* resource_locator.upbdefs.h */; }; + C87A2851013238C628DD524DE2A6A283 /* FBSDKProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = F0993CBC6939EDBA2C63600D6520FBD8 /* FBSDKProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C887AF03078E988DD850C9683DB9C5ED /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 82ACE4ADCDA03EDBA9D6A283C4759CCE /* FIRAuthWebViewController.m */; }; + C891F224576A6D8BCB1352E279BA66C8 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C7E1E3D98D5B32C50F03001A1E013F9D /* grpc_server_authz_filter.h */; }; + C89BF9ABD2FAC403B0F746A262EBF68C /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B2AE01B221780AB8E3C4E73288CD22 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8A0B3961330454FF1801D3C1939B8EA /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = E4A320FAB8002209A7EF65CF5C5B2F6D /* channel_idle_filter.h */; }; + C8A2472BEE3E7151AA72540454815F03 /* array.c in Sources */ = {isa = PBXBuildFile; fileRef = 038B646373F731F3D8E353E9D5728443 /* array.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8AB9F4A61F0D080EB32B24B06822907 /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BA1E67A1A91B66894158D743FB96ABA /* http_connection_manager.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8AD98DB1AD2C083F804D3ED955714E2 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8353382CA46BE96805F862E1F729D6 /* manual_constructor.h */; }; + C8B28651DB4EC0A3106DBB3670E90AD2 /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D923D330A83A59B1AF71E1C34F7A56F /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8B46771B8C7D220F544F34790AAE7BE /* match.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = D8561CF8D419E68D8EEBC3070CA73CE5 /* match.h */; }; + C8B607925A412E446DA9226B2C019428 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E4DED4A07B57AB3484526F0E1C930828 /* versioning.upb_minitable.h */; }; + C8CD7542C650AB9FB48B91D73E0ABDDD /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = 11DD51C1560FFD7D31336C3DB255BBDD /* charconv_bigint.h */; }; + C8D4541281052CD73C5332B49B1CD93F /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA2C0DEC57DF05B3BC63FE3BE6C3CFA9 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8DCE88A723CE2CA2A9F18CD47259B8B /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E838014959FBF2423B5B1D5620E71E74 /* grpc_method_list.upb_minitable.h */; }; + C8E1FA5214AB7E082CF96F48F7FD5982 /* GDTCORStorageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C431D839AD7742298DD978313465FD0 /* GDTCORStorageMetadata.m */; }; + C8E21A69655CB1B0C3E688416DE19EC3 /* config_vars_non_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAB82821F6E8A3925CBEC00666DEEA1D /* config_vars_non_generated.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C8E5D5E29D6745A7EC057272FFD3570A /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FF6F02EF9C2D7105F1C2AAF3A7144FC /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C8E876BE950CDCB6C29EC4511FAD6CE0 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B05BFDD9A09349D1E080C2BD36E01E /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8ED13B78F4D8D87A10640BE684BF6C1 /* create_thread_identity.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A873EF52B9132D479D7AB8748F13A855 /* create_thread_identity.h */; }; + C8FB972E45EF5E43B55F90F21249FB7D /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 832613D28963A33E04A99F8CC0644E62 /* common.upb.h */; }; + C9056F054961EFF78B1576A7CD8EAF6A /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FB8EA75E31B96D119A51904D19D63593 /* secure_endpoint.h */; }; + C906944DDA1F05BE124D5C12C7AAFAAB /* certs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B041B5D4C0C4B0948DCA54AE42A46156 /* certs.upb_minitable.h */; }; + C908A0ACB78E43EF3E154E121E596582 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B067F9AEEA02DE6405837B1BC19ED2 /* string.upb.h */; }; + C913C64BD36C4EE652AC77E4B0ABB872 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28D579249F0AD5F15C879A3FFEC86FC2 /* trace.upbdefs.h */; }; + C9171A1E6EFD48958FFEAA9FD9D717F8 /* NSBundle+TZImagePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A3E8311337F80C84BCDCCB7B0CCDE9 /* NSBundle+TZImagePicker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C91A0E230EDE2CEAD10FD1F0C09C0842 /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2148460F5F4CE0A58BC22AD2C9418DC2 /* listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C92470ACFD865C7B7AD1364C4BA4D631 /* socket_option.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 45EF2E143A14563D31D106DADF9F3482 /* socket_option.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C92CB5F6371F128A35A034A2D1306818 /* call_op_set_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 10353F3E64A8944D8776E8F14D7EFC94 /* call_op_set_interface.h */; }; + C933D0751433A7CB20C1D2C691624CEF /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = 251AE40A16A13CF687EB53C404B66D42 /* avl.h */; }; + C93E18E812EBA6B8DCA90993634256BB /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB1FFC7728756BFEB9232A17BD17337 /* xds_credentials.h */; }; + C93E37D0B5453955C223FECDA9E37AB9 /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CA034FE2D4B71F7F3B895CAA72FFC065 /* lightstep.upb.h */; }; + C945004E678A1362F8FC80953BD12B02 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 67356227510B5F16F77B7CAE15711F06 /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C946C0569BAB665E0A78DA05BB033ECC /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 261B4780EF6E4D6A906535C21DD2D7F7 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C948385115C9EF6D2B5B8CECF8EBB00B /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 818D6903CA6D272786D430CC5E9DBB3B /* httpcli_ssl_credentials.h */; }; + C950D2907918DBBD5AA467E2E3E87C1A /* cel.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A2ABE3DA04C2A17D00060FC25E547C1 /* cel.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + C96E5DEA86679EC5255A2C88DEE88AC6 /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = E326D34296E21D7276601A310F814E90 /* pool_urbg.h */; }; + C9747241A9452DBA5209493B5695FCB5 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E2BFE18FA1334EEF31D049B919F49B /* transport_security_common.upb.h */; }; + C9854A53B7CB7C26A407719B2D2F4D94 /* atomic_hook.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3F4526EBF9D8C1B1E7ADFE6CB53E4EB5 /* atomic_hook.h */; }; + C9895C7EDFAB74B241A5AE499D562487 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1EB9F88E9743029D9F84B1FB49BB5846 /* status_conversion.h */; }; + C98E0B1A2731B07157D909FFDE815721 /* undef.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 2FCF87AED2F007DC7FA5234B6F572599 /* undef.inc */; }; + C9981F0843425AE2BB699C22074D129F /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A852FC925D37F3688616E3948059B96 /* FBLPromise+Then.m */; }; + C9A74B64BBB8A8A045A8392EDBA0C2AF /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 87925EA2BB76D59A622DB9A5D88E1884 /* alpn.h */; }; + C9B778F96DD57893E7F991BB7F5CD0D5 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 447AC4FB70CFDFA0076B806AD6DA6219 /* grpc_tls_certificate_provider.h */; }; + C9C4ECEE78E344C6B2BB1DEE871E5B77 /* proxy_protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 265646EF2B71CD269C23336D2EB19B4E /* proxy_protocol.upb_minitable.h */; }; + C9CD89F4F0B3D235614AE5C5B53E0A4C /* cord.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 69423B8ECFF23B815658A5C0A7E97189 /* cord.h */; }; + C9D2FCB0CADAD26172BD73D28A0A79F1 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E46A971760A422CAF88A90F05141A25 /* stateful_session.upb_minitable.h */; }; + C9D55F22644F7ED5665AE0EE7AD53143 /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7033B65138E3E2CC7E216AACB02F80A6 /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + C9DCD0CA84522128C025DF4E9D71F872 /* party.h in Headers */ = {isa = PBXBuildFile; fileRef = 7085DA80666D75FB24D6752BBCFAF39C /* party.h */; }; + C9E154A4F44A24173DBA15127B481E7C /* csds.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EB569F8E1AB27CB046823F8A6A5D2DDC /* csds.upb_minitable.h */; }; + C9E1E4B16D94360F0E49963D3DD02E6E /* waiter_base.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0D2E8ECF7FFEE574225C040DCE0A5674 /* waiter_base.h */; }; + C9E4F75031F1A750B784BB43E0AAF33F /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CAAC53FC06F4E00762D668F67F21CE5 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + C9E5C3A33C020A2E0338A8C83A2A5495 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = CC66354C2272C751E890DE94F1BE6A7E /* rls.upb.h */; }; + C9E7158E319DEBD465957630BAB8EE95 /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3A51E25423FF3D42A954DE61B3344F /* unscaledcycleclock.h */; }; + C9EB26FB136A2F7BC56339E9724A4742 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = B42FFC28C18799221CF205D4D1727766 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CA027E9683F38F9939C6EBCA9335825F /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 145488D90013A209CCF1447464AED5B3 /* matcher.upb.h */; }; + CA0625975E2181FBA559D3931C9FB828 /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C00735DA9F93773B0AD015A5AEED079 /* circuit_breaker.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CA1864C3BAAD64EB3C303326EE75D5EE /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBFABDE60C3489264C13F3486EEBF5C4 /* tcp_client_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CA1BFC94E5AD2E95C061B14902827755 /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D220BE80C523D5DEF90C7DE07E907A2 /* ExtensionHelpers.swift */; }; + CA2494DFC8306CC45B2D409401850880 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F207FC3FD2D79C58DAC1FEE38547A0 /* internal.h */; }; + CA298F2EBE8461E602E45B65AB5E98B4 /* http_protocol_options.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABD51339BF1DC50726EB326B71563BF /* http_protocol_options.upbdefs.h */; }; + CA2E326EC041DEF9F67251485D597F0D /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F52FC0CEDAD4DDCF2AE5FBADC6DCC7D /* varint.h */; }; + CA3E1D5EB68765D9F3DE1BCD1BF68832 /* curve25519_64_adx.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ACA85193E8AD59A0A376C526D692853 /* curve25519_64_adx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; CA4982C1C1882D654E4B446E45462356 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - CA4A8A65BD2F3CB0D97D354C0327CF1E /* cancel_callback.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 89846A6FA00470A1521682B1DB026E80 /* cancel_callback.h */; }; - CA5A5B6FBABAC74044DA2489A77E3488 /* inffast.h in Headers */ = {isa = PBXBuildFile; fileRef = D91E24B884DFD927F0FE166AE17A3E40 /* inffast.h */; }; - CA618759BCCDCBCC16C9ED56F376AEA9 /* aggregation_result.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = D432FFE671448C21B753D312F238EBB8 /* aggregation_result.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CA6E7775EC0FA36694EC254F2EC9B697 /* internal.h in Copy crypto/fipsmodule/aes Private Headers */ = {isa = PBXBuildFile; fileRef = 3F488C77C85C1FC19FA2EB67E4AB1CFB /* internal.h */; }; - CA731AE59263B6BE6BF22F59CA1DFE73 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = DA885DA9E66CCA8F681361E9D68CABAF /* channel_stack_builder.h */; }; - CA7CEF9E6EA1132FE273C4860B87871A /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 77BE0747E53CE0E3552279DA86F27702 /* rbac.upbdefs.h */; }; - CA92289F517A4EC9EC6D6690D37712EF /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = FB3D21DB8AD6D820A102A796A86DA427 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CAA0BB72A551A1BC748FB516C4801A2D /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 9164DA1EEDE7B52B1D659DEA1823860C /* local_transport_security.h */; }; - CAA62B8A6DA3635CD8C3F4955778B4EA /* service_type.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5F266A62B4CCAE841526F9D9FC5008D0 /* service_type.h */; }; - CAA9232A1909E4B36FCBBF0B01079C0F /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 75BB53C96604EEA23323B4B10F5CE414 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CAB06FA49906F0DC1CF9337F3277BBAE /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AF237783057F58C665756F0F9FB75DF /* safestack.h */; }; - CAB2CF38AAB9F2DE2A6616B912F908C7 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = C24F05A03B093E8D96B6C92E6983B4C7 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CAB55522149874C7AA4529D15A8943C7 /* undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = B825C02D651B1866097D0907D657175F /* undef.inc */; }; - CAB9FC842372166C2EBA9C21CC4C0E2B /* ip.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0C2F1B6913A8897B21C5466D637B8E /* ip.upb.h */; }; - CABD392520C37A7ADD0D8B7822C6FB65 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = DECEABD4206226AB14F87D8855BE4CAD /* wire_reader_impl.h */; }; - CABE821A0B1FBBDC2B5F1F0EE81BD7A1 /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C267FD82325E628C65226C9036EDE7 /* FIRAuthUserDefaults.m */; }; - CAD03592B1EE0C32144ED3A7838222DC /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 308E1F439F3A55103A6C5FA9547F8565 /* rbac_filter.h */; }; - CAD58B5BD34241F46112FCE41A99B3A9 /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1831CDC5BA0E5FBCAACAF59D5AAAE455 /* init_dump.upb.h */; }; - CAD698E8763DFB2421BE8A53D225727B /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F375D3660D03697E2762A691FB90299 /* encode.h */; }; - CADAC5035BE81E0B415FA0E5C3420431 /* config_selector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9EF03DEE324CFDC0D447AAF6A6D3EC56 /* config_selector.h */; }; - CAE5B12701935E34D06BBAAD3595D3D8 /* http_inputs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E99C6602F022D7BA64D14FBE1CC465C7 /* http_inputs.upb_minitable.h */; }; - CAF22D6FBBF45ED574E1AD8CF0B86B8C /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = D493D5FA73B39244BE1161948352AD42 /* sub.h */; }; - CAF9164267AE05EF828633343503633C /* lrs.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D080DE20522F2A4FBCDFE7E876DBAF8F /* lrs.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CB01C9934271C597B7CF7C395AA284DE /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 725D660C34F059E7BBAF23F2E7740B08 /* ssl_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CB12521832A758A82213132502F6E388 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FD6723992C14AECA3595F92398724150 /* status.h */; }; - CB14783FFFAF99E10B9CD3E1742BA7B0 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 7457123E7D8527A87BABB886D345CC52 /* alts_tsi_handshaker_private.h */; }; - CB1691CAA5095D634E8398AB2C8C0053 /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = 3AA980A0F3FBDFE330FF4F91FAA847C5 /* stateful_session_filter.h */; }; - CB1DE7F3CAD9EFD1C22AF766006FCEBC /* rls_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 232586A2B599A8F8BA5C0B9E60CDCA30 /* rls_config.upb_minitable.h */; }; - CB264C9F80F14AD4601D986106F5A86F /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = B4895C2230245A6A5AEA203CFB9CEE47 /* local_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CB2C47FA9751BE7D49ADF531CF2A7339 /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5F412C804DEFD1776ED033166A0752 /* vdso_support.h */; }; - CB3636F2FADB3E9CF932412D24A7555A /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B75ECC7FAFC088BE5A0E6054D265545 /* create_channel_internal.h */; }; - CB434FC93734D4661391D96D4308A7F5 /* load_file.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 20D092D9E58465768DE9A5794E297098 /* load_file.h */; }; - CB48D5E96F459FB283A2F2A6981463EC /* BoringSSL-GRPC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B2F53CA631FBD7E2F052B6A9A67607 /* BoringSSL-GRPC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CB513E7845EBCC5D25F2633259B5CE79 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E014B0C58956043AB038223FD38811 /* frame_goaway.h */; }; - CB56AE805B5FE2037D3DCE42A4DBE045 /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BFCBB65DA2B244B7012C83F01705F2C /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CB59752ECE517708B49D67D34CC0126B /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 759FE8B95FF6A61D1A0A1D3DE2AE9872 /* binder_android.h */; }; - CB657AA7CA3EA8337ACB41D277EAA267 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = F371E301E46A3B0AE1778D00BE3F8F59 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB72DA35C7B19137DDE7542F9DC28C6A /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBD2614C103A2C8149F82E7CE1CD1A2 /* tcp_client.h */; }; - CB772744BCDB2E4167E45AAC3A3D6D75 /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = B2DE43F34868D1CB0DB5565EA4E9E52B /* call_finalization.h */; }; - CB781DFCD3B3AD4B9145E0E8855CDBB8 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 604315A5D02AD41BA7F1430425A42CF0 /* fake_credentials.h */; }; - CB88692CD34234583B6DE7F462D57467 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1D558CF265BA447E16972082C9E550 /* common.upb.h */; }; - CB917C6CDB39DAB24FD6D8170444DC0B /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 3A07F4C291140D065D094F128C692B64 /* windows_endpoint.h */; }; - CB9678F617D69D07A81F45A997802AD4 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD6A2BA5FF1E4D77B339BFB56C300A9 /* GDTCCTCompressionHelper.m */; }; - CB9778C302C2638068BEBE8B59FAFF26 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = A9B3FE469DD0B5A1276789ACA9AAB685 /* FIRCLSByteUtility.m */; }; - CB9B7F9C7128FD0A74D74D4D5367ECEF /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = AA41040D74334E26E587B207BFF70595 /* fast_type_id.h */; }; - CB9E61126F2300FF46A720AA27D05A78 /* call_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = ADF82B364DFA6C74FA42B2B500AFC65E /* call_trace.h */; }; - CBA1DC8069DBD351EBE01EB5757FABD4 /* wakeup_fd_posix_default.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EDCBE58F3750D75D2206DD2F5BC598D /* wakeup_fd_posix_default.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CBA77DE21CDEAA45428C9AADF929AE3C /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A2D06FD7B37093AFC02DF7B81FB679 /* json.h */; }; - CBB7349C20BEAA5A9747C999910943D7 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03F490FFF2550649C51BFF44840003AD /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CBB7CF651901775431CB9A254A432B0B /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDF2D65053385231C22C3423BE5B5B2 /* bits.h */; }; - CBC9737F3456153FE088E7CECBD5FDA9 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B20A89A0FBEA678ACDEE2D5F5CCD901 /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - CBD7141081F722A8F4C3B01A5A04AB6A /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B1C837D869838993126B2B46CF5182 /* server_builder.h */; }; - CBE11899E05615583A8E5A6B5A9261EA /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B3BEAB3D4F986193F588A0770B05D9A2 /* ref_counted_dns_resolver_interface.h */; }; - CBF0B4E349EE11B4D4B078666BD783BE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 930A48BA362DB99CACD317A972F85185 /* internal.h */; }; - CBF72C7871D377757CBF21D8310C0AD1 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = A82A877BFCE716D5F48A37F125C1250B /* FIRCLSContext.m */; }; - CC0227CF2AD7D9CC6ED8C345A499B298 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */ = {isa = PBXBuildFile; fileRef = C4C324721AD34CBA506C50F5B58337EB /* internal.h */; }; - CC0C7ACAD5AF10B4ABD81C1563E8ED04 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0AE0DE861DF52CAF2D542DA106A58B2B /* matcher.upbdefs.h */; }; - CC0D1AFFCFFD011F72E12A3B644237C8 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = DA53F17BB71DE197260D6652C6EF46CC /* memory_quota.h */; }; - CC13FF022D0B6EC8B0D0478E416F9158 /* zutil.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE6E2217F84A9D3070AEB7DCE9D9C02 /* zutil.h */; }; - CC15464C4993A9F814586B3DDA9F7376 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A391284F9C8B7EFA6AE0C1DC084CAB01 /* range.upb_minitable.h */; }; - CC1D417573BA9831477D799291A0DCCA /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3EE28933BBE5CC605293280C611EB1 /* unaligned_access.h */; }; - CC2160397E97F67CFE28B7D3E3B0A95E /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FC7276C5E33369C3345F28C8D05C00 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC26AC65F5180AD844D43DFDE5A60233 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A9DA83AB76EFD6907CE24CF7253EECE5 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2A09B41A774AEC2D907898C998C65E /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = FA46FC026BBF69EFD084DB5938011F58 /* rbac_policy.h */; }; - CC2FD5588F9CCC22CD96098335452E70 /* load_file.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 85CCE29DAB5B83174F619BBA3204D505 /* load_file.h */; }; - CC388649D59B87F03CB2054A60C4FCE1 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D987FA0DAAA553094A376CA23458520 /* array.h */; }; - CC3B5A86AE484800B7B332B5F4493A3F /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 503311B2A37E31A2005E398D03B65D22 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - CC3FC09DC72ECC1EC44ADF8BA6EA2642 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = A20A9F709789F8795BB53C31C9E1F450 /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CC51D4ADFBC63A89692A54C9D9D214AE /* xds_health_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE4641BF4344C84E8ED7B4EC587B38D /* xds_health_status.h */; }; - CC5403B9B5001FEDDCBF0BD13F44796F /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEA0A1B453A068B53CDC03075DCF2CCA /* grpc_alts_credentials_client_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CC551491B26503BA14A7180866DF1D7D /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2655D87DAF5D286F57BF1BA162891B7E /* sensitive.upb.h */; }; - CC5BC4391CF7452AF3254D8CAFC82062 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A18A850F820A1602693AB1B0701D64 /* ImageTransition.swift */; }; - CC664ACD30E0F5F831C0D74E30C1333E /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE50C51DFC4E46E67B47726FD6AF1FA /* xds_client_stats.h */; }; - CC7422E5629096DC38E2ADB6CD960F00 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 03095AD9BB5250002B15B7ECAE5F38CE /* mutex.h */; }; - CC75AB62A686556205043DAF9B36D414 /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = E91C032FA93DD21F0BD17B8104FD5BBD /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CC7AC1982330430ED68AF524D11A09A8 /* posix_engine_listener_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8127BA626D9B94220FB75A1FFC59A538 /* posix_engine_listener_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CC8841DCFA1053165A5E0D4D49BA2FEB /* FirestoreQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = B01008C3E88B365E3BF2891044F5E953 /* FirestoreQuery.swift */; }; - CC88D89CC5D43504657B13383081B9CC /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC1C010766A87AEEF3BAD8191296D589 /* struct.upbdefs.h */; }; - CC89D02B2C713D458DEBEEBC54086E7B /* json_writer.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 6859ED0C989D05ADD19BCEEE30B5F7D2 /* json_writer.h */; }; - CC8C261FE2CFF4C337EE0502A185B97B /* slice_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = AA18D6BA3472FE9AE2FC38C388A1C482 /* slice_cast.h */; }; - CC8CB061A4FDED7AB419B59B3386CBEA /* shim.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = C0E4C8B35ACCA6D12E460117B8678DCB /* shim.h */; }; - CC9E2A345FE6ABF925C4AFA01730088C /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 4314E2133E06E05721C34D2DE6F8DE3F /* message.h */; }; - CCA25F5B787FB8CEDDB9CA0DDC5DBBFD /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 313D152B52C193B3486E8BD7D7C8F449 /* service_config_channel_arg_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCA9AA15CC28223CFA7ED27358F0078A /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 843C6D8A6F7F13AF30F7364B73158E5F /* protocol.upbdefs.h */; }; - CCB10CB4200B2CD4E65E27A13E472244 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = D45F71B842BB18F7CFC3C66FAC0A1EAE /* status.upbdefs.h */; }; - CCB9F106E4854548070BE1E0305A35AD /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 89969406AD9F217E109A0A6813F85E55 /* method_def.h */; }; - CCBF149DBC4169FAF3077C23C3A6E8B6 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA09EA6B15D2DD72C7B884763363939 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC466CA42A4BCE7F7F669107B5675C7 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = BCC5A9A21BA2B753E2DD030AC9321BF9 /* arena.hpp */; }; - CCCB10C0760D6DE5A5389EB227730FD3 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7135CA98D437410B452824815E4911CC /* byte_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCE9B6AAFC762F20F64E186FAD7F57A3 /* channel_stack_builder_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 721C8179D54302C3B4DCCA5700421ADF /* channel_stack_builder_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCECC1735B4350AFCA7206B99DD93C4C /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A453B91078D61194B777704BC6A7DD0A /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCF35CFB78922E452B7ABFA120D27BCD /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 754F54B05C1822233DD8FA9EC94D790D /* typed_struct.upb.h */; }; - CCF6096484E85176978397A935A262EF /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3A5211D60DAEF9CF488FB14FFEBE98 /* channel_init.h */; }; - CCF8236C8BAD22C5E23AD17DCDD48777 /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E8691CDAB40B5E482CE40A0FDC7BD77 /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CCFC02BB02559ED8B821D36039629AFF /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 227CF7CCE8B62C981AB709CD41F7DFDD /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - CD01D8101B65185098B81CBB68D5F6B8 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A004F91BC985223BFD5AE59E1EE186E3 /* collection_entry.upb_minitable.h */; }; - CD05AB666F0AD62EB572F70E215AD05E /* scoped_route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 973386DBA4083747BEDEE17ABE8818FC /* scoped_route.upb_minitable.h */; }; - CD08090D8241E0BC89040CDFA0697A28 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 74D10328EB7B9A0FA8886575D040E248 /* percent_encoding.h */; }; - CD08D4279F96E883F27D8E0EC333B5B1 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = 485BF2666AE10AD0282B1DF9C8577B85 /* decode.h */; }; - CD0BBFAF1F6F7B953448A1F5FF90C3A0 /* rpc_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7A826815122831E69A31E7E1F3C4995D /* rpc_method.h */; }; - CD14117E5A18F1BFD15D98D5EDD80196 /* filter_state.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E246159C3C6033AE78EBDB7F015DA955 /* filter_state.upb_minitable.h */; }; - CD24782BF754BCAE3E1BAB1FA264AFA8 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F5DA69FD707E0A6499D893FCF2851339 /* matcher.upb.h */; }; - CD290C80EE24C0A0CFC94B09ED0FB2E9 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D73BBC4D30CD0C0FE9D7280FDD579A /* FIRGetOOBConfirmationCodeResponse.m */; }; - CD2BE40DB859C8C95053FC51F57D4BE4 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE0E919955E2B82AFB8CB63D76D43BE /* string.upbdefs.h */; }; - CD2E0A3255F662A4C7481C25C70C2471 /* stateful_session.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF310B2B579534CAC460773A9085126 /* stateful_session.upb.h */; }; - CD3CA955C2EDE7A9B70383A86C3C3C45 /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = DC9B0F89CB786523B923AF344C23DF69 /* field_def.h */; }; - CD3D2B822CF3836FD6AAEA0C0A01630C /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC4D272401FCBA26F53BCDF7DE571463 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CD444806C8F370D6E46C4E675DEBEED1 /* metadata_compression_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A39D0FCF3667494F40D2B9A13505DE2 /* metadata_compression_traits.h */; }; - CD45E91A92F7020B18C8C27D0D96D672 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = C32AED1CD71A4DB84846824C96040FD7 /* GDTCOREvent+GDTCCTSupport.m */; }; - CD493E4D25B6B884C54E9612F64E6D52 /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = B14C077E2D227F6200413E5BA1DC7F84 /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD4A2AB43DC0BAEE8A20847772BDC1A4 /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 351D2E7ED8EB097F332A0CCE950ABF29 /* ev_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CD5D8CEA749C8527DC6AB31E47CD43EE /* types.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 41D3484ED8A82B07C2FEF3B16FBEAB48 /* types.h */; }; - CD78339F5E8BEAE88AFF5DB12C22A8FA /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C4603A0BAB75FFA1E81801422D6ACE79 /* outlier_detection.upb.h */; }; - CD850D7D0E1384ECC834643BEF381291 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AFB98DEAD8BEE879F834C9642D41E992 /* cookie.upb_minitable.h */; }; - CD904F6A5F7F627DB734186145E1B4F2 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 46BA8B4C028211C3E13C528E6810B434 /* status.h */; }; - CDA083B62D21C5213B079B2AB83EDD0C /* TZImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5134B1B88BDEB109823283A02A1A6E6A /* TZImagePickerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CDA843511476D4A05999B4FC3B335573 /* grpc_service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7769C1A01B5B3D159F2B8D5975108739 /* grpc_service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CDAB555086A496E35C48692744DE9ED6 /* pipe.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = F0449EAF14CCE3ACBD2242EF2D1FD913 /* pipe.h */; }; - CDB1D440FCD52149B74D8472179C867D /* thread_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = E238E7B3F245300749B6273232A5AE54 /* thread_annotations.h */; }; - CDBB7099641D1B32B04139CB193C6EC1 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = 149A0529CDBD5AD07EE3F021D1457F64 /* int_table.h */; }; - CDCEE0448FC0C8EBF6F4EEA36B024604 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DF06477CCE388E456BF05C201F4E8F /* google_default_credentials.h */; }; - CDD181C0E3037FFBC3260AD3B3FA8A6F /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2002D045553D0BAC597D9C1CA5907FA9 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDD3FA71E749C6890B9E012062A77A01 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 777AAF2D67C0DE7495DCE4A0F1B74E0E /* authority.upb.h */; }; - CDD88E1069E382D83E3B5B718D66D73C /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8212589566B0658397A2F98F67F07695 /* status_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CDDBAF43DE7F524CB4BE756646435BCE /* has_absl_stringify.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 3FC61F6AE0FCAC70A0C2BC1045673A0C /* has_absl_stringify.h */; }; - CDDC0B6D1769E4A588029F13C60B3B4A /* scoped_route.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 37AD959F2250AF4847A33FA53A1F3066 /* scoped_route.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CDDE9162D7CA4C6C2CAA296BBDA0D747 /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 789D8960DDFCB53FBC176AE7F9D4A10C /* subchannel_stream_client.h */; }; - CDE053DE1C4B599F2391C4BF1F618BE1 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD2EE889B380D4CCD6EA0423DCF4F147 /* service.upb.h */; }; - CDE4A0F71F57353EF75B5E4F463D7922 /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D435A5DC3265B7838260F5C4A59227 /* udp_socket_config.upb.h */; }; - CDE59B4C5B0F10547E997699AA080AC7 /* fault_injection_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A55DCBAB50483536E64658B80939E74 /* fault_injection_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CDE84161AA71908F4FAB105531FF6A26 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F75CF31259F642F18DF4DC6BBA20D2B /* semantic_version.upbdefs.h */; }; - CDEA4AB49679205ABBC44650BF825479 /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 53B488456A8B81B35D2F6A39FAD1DFB4 /* cert.upb_minitable.h */; }; - CDF4D99B78532A78A899BD29ED09CEF4 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B881114DC44A1D534B3516C18CD70E9 /* struct.upbdefs.h */; }; - CE0129E33913E59B4A475A56769A872B /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 55F0AF43F3C29A7F4E66C9E55940BFC9 /* message_reserved_range.h */; }; - CE08123D164B466E983196AA6BCA7441 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 088A255CE2DA1845596A10B881EC420C /* quic_config.upb_minitable.h */; }; - CE0CE53BD380A6B355A64DF61E0A7578 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = C318CAD301FC8E6FA4F89C31E9FAB941 /* alts_tsi_handshaker.h */; }; - CE17C81FC5A406CA338D0C6DC9EB4C03 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 54ACADFF14DA3F6D10CFACA4E9E72928 /* httpbody.upbdefs.h */; }; - CE1C244970D9C76DDB35A8B84AC62345 /* RemoteConfigInterop.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1E44795B819A8DC7485F9C21C7954E6 /* RemoteConfigInterop.swift */; }; - CE3312981CDD1BC3B235C5A3D208BBA9 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4AD4A7C8AD5D0DF53E3763DAF1C546F8 /* base.upb_minitable.h */; }; - CE35FE7D8CBACB3CD9E2B4C96E974AEA /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 731E60A2A2030247EF333A137E054570 /* quic_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CE37A515731B107E136DF3867F9D6551 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7873B0A0AF3EEA61C3127FEFF6972AC8 /* metadata.upb.h */; }; - CE3AC30B40606E67DFC71623F6ABDBAE /* sensitive.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B36FB913CA5D133749D3A42B7DA28950 /* sensitive.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CE3EDC6B15562F82A478B87678015A17 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CA2296761C88D10EE8125E13CDB116 /* tcp_posix.h */; }; - CE3F370C17756789BFA46B6CAD4D00D2 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D870399210F269EF8E79468B2C83EBE4 /* metrics.upb_minitable.h */; }; - CE44C7F7CA5AE31FD0B2615B36B514AD /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 55D14F7D0A29BB1778024B6D03EAFEEA /* manual_constructor.h */; }; - CE4CA84EC75C5FDCF39EAC5596AF3A67 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 4C4BB4654BB09D877B222867D2415D84 /* b64.h */; }; - CE4E1F5AB39D0F1B4FAAD48FA533B7EA /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 64AF84D624602C92473930A69C87D64A /* semantic_version.upb.h */; }; - CE5087C5C81335CA8F2FA238E09656F7 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8E6ABC16D28925E703AD0A0BCCC057D /* proxy_protocol.upbdefs.h */; }; - CE70F922FDB1C85050A811509A467FC2 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E261B98D045BFD5AAAB667058D574A7 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE76AB80689C07855D44C817B4970E05 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = C217F97186C55EF28BC07D46B8683D6A /* client_channel_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CE79AD485A967F03DEEECFFF4579EA7F /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC7DD516C2D1301FD499D56E6140217 /* buffer_list.h */; }; - CE83999D932A85D44B74EF30762C0DCD /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = F8A58956F244756D5C78E1575B741151 /* lb_policy_factory.h */; }; - CE84E69AD16AF1963EFE534311CA2BA8 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BEE55DCC7F96E3D0678B0DB6C54F43A /* accesslog.upbdefs.h */; }; - CE8A69B21E9121007CAB01139A024F51 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CCD1AA314BE9F473658235B8DB088F /* struct.upbdefs.h */; }; - CE8D59747646EDA900A304622DE2F559 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = CD048622FAF320DF935A0EC18FF0EA3C /* enum_def.h */; }; - CE8E13E41AA43DEF2EDE46F75A6F46FC /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 634124EB01F71DB8F00C9A6CCC58D12F /* rbac.upbdefs.h */; }; - CE9B87043A1EB8F8E40824F641F43B58 /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BB5FAED5500705BF3C0B81985A0170 /* datadog.upbdefs.h */; }; - CEA809224E5D541498652F136A3F920A /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DFD175D21D04070131E2FBA2D1E4F4 /* stub_options.h */; }; - CEB55EAB184E1FFA2A68E825792FB724 /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 7371AB91C6D7C37AFD56A1EF8FFC5C8A /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CEB6F310DDE558890E97C530E6695937 /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD6EF1D617CFCDD0C718506CC6FEF7D /* enum.h */; }; - CEC9ACFEAEAA433704D4D722B6302888 /* FIRCLSLaunchMarkerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BE97BB56ACC410C93311B4E56EF30AE8 /* FIRCLSLaunchMarkerModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CED08F3872D4B07003CA535D38888424 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 63913EDA1D3499038EDF265D957F4C5A /* event_service_config.upb_minitable.h */; }; - CED391C37BDF49E2A7F4725968BF0BC1 /* Firestore+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E48454D8CD2A9D806B0CC027001B156 /* Firestore+AsyncAwait.swift */; }; - CEDE4D3C43FB1E9228670157498D7547 /* FIRCLSCallStackTree.m in Sources */ = {isa = PBXBuildFile; fileRef = C44019501FF2F21C08D2ED5F9C53DBFB /* FIRCLSCallStackTree.m */; }; - CEE385C365F4C59B6655DBAA7073B076 /* span.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FDD3E75867E77686D21FE85207AEE761 /* span.h */; }; - CEF920278BDD534EA64A0F664F27120B /* gRPC-C++-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DFC7DA882CAC9DCE3C4CC4873962F71 /* gRPC-C++-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CEFFFAB616E7BC662260CB867BC44CAE /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4EE884A2D11F77E08541760530B948C9 /* status_code_input.upb_minitable.h */; }; - CF0EA6C7934BEE254E6C505AAFFFAE97 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 1ECECDD9DAC840149B493B0D420EFB35 /* stats_data.h */; }; - CF18637E02A1D634CD71EC3C2DB9FD87 /* json_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = EA39B9B329BA65B9F9040478672FB0B3 /* json_reader.h */; }; - CF26DD71682AECFDA9B190F109DBBA25 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B7E1D4573AC4E0E596290B0657F4C0 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF371712879567FBBB8C91AEFFC2E7D6 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = A6091CE2A7ABE8C0E833346D011AA42F /* env.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF3A540523C9FB72250FF2DC7983B08C /* atm_gcc_sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 47E1F1920D3F54CD145216BAF2213031 /* atm_gcc_sync.h */; }; - CF4227490BC889B175DF4ED4E4689FF5 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6D0DFF352114DC0B0C28ACF2CDBDE9 /* internal.h */; }; - CF53C62E582C0605FC1F73F35F9CE31B /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FEAE8BE5B32D8D32A423B67CD2C511 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF622D98D37E00E61D29C3010D08F766 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F24CF537AFA5231136115B0CACEFEE06 /* rbac.upb_minitable.h */; }; - CF62616357586D3EDA5348B892658688 /* int_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 149A0529CDBD5AD07EE3F021D1457F64 /* int_table.h */; }; - CF631DD06470707993B883AD50F763FC /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 380EDC93700319F41F9E59502E68C059 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */; }; - CF6BA2697199CB74C70A855DD134BB40 /* eps_copy_input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F9E2C0A6B306707B24DF7BD4F5B319 /* eps_copy_input_stream.h */; }; - CF7B9307FF8B2D8722A707F80247447F /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = DC81278435E55B598D8E32AE74F048D2 /* event_poller.h */; }; - CF83989BF741D31E0BE6C63D29D25D2E /* cpu_arm_freebsd.c in Sources */ = {isa = PBXBuildFile; fileRef = E2F2FA5AB4D561422F913133EEAC8B46 /* cpu_arm_freebsd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CF8A7A13D6243FB771F2D7C541A3211D /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BD950FAD8F0D263C2C406F9D6C33F19 /* FIRCLSNetworkResponseHandler.m */; }; - CF8A9DA0D9431EF30AB30AA05B2880EF /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C17A8997B9B181AF2AAF934EF99858 /* port.h */; }; - CF8BFA2288F3FB9B5AD36EB5E5FA0E1E /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 578EA63E41A969FA1BE9EECDD3E5CAA0 /* tcp_client_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CF9646F16A26E66FD01D12A65C0FA2FD /* nullability_impl.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AB3838BE90465412CBF84986BF6610DF /* nullability_impl.h */; }; - CF9838744DF30AAF69AFBDDA17164251 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 707188FCD02CC56636A1FAC646E6EF5B /* TZImagePickerController.bundle */; }; - CF9BE594955D037B446F4136F0D83C15 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3312A694DAB2D927D1152BD59B1FF4B6 /* tcp_server_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CFA9860100B5BDB01755904BA5B656CF /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37C6FCEB9CBECEFAC940899CF008BE3E /* filter.upb_minitable.h */; }; - CFAF262E0CAA28200FF3025D69986A23 /* context_params.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA928E2FC3D26C7DDF29A33CD599EFF /* context_params.upb_minitable.h */; }; - CFB637D81A201E0E35C0EED63CDF15F9 /* nonsecure_base.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C74DB6726841E441F0258BF6A4E58FA0 /* nonsecure_base.h */; }; - CFB89D7DA4EEE060B476CEF773433C96 /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 367AE3FFF3B5B73A808CD7356F9E7740 /* host_port.h */; }; - CFC1D0F44E64DCEAD8926C382205FA4B /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2D8617212F8049BBF3AF6FB143DA1D /* regex.upbdefs.h */; }; - CFC6D461F696CAE6827B639FEC59E214 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = 50D518189286E1FD58EB792D61DC5A29 /* local_credentials.h */; }; - CFD73FBFD263932B9536F8B5028286CF /* crc.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E96B5BF0D243FF7C6D902A872BE7439E /* crc.h */; }; - CFE7DC51830C81726788960BC3667A7E /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8487FFBDF32AB2EB23543FD2A27F3B /* grpc_server_authz_filter.h */; }; - CFFAC5D53B1526577CBCFB2E7765FA78 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F14520324794E4C2C7B4F6180D311EB1 /* field.h */; }; - D007B04015BFA75FAFDDD969C3D1FC70 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = E99110AC46DD249664A5211EF7643FF8 /* decode_fast.h */; }; - D0102ABF0B4459900A5621371F3E57ED /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4CF7D0BEDF032E294A57E4A442F24F /* http_server_filter.h */; }; - D01A37D520A07423FC72BA42CC6DA0B8 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CB736E1DFA46F3FF7994A7FFB6ADD683 /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D01AE53C686525A02CD2F1359AC63A46 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D7EA3BC381F3CC4DEE6AEF3A9A2C5BC3 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D028A01A0A6544776A11BECFCAAE0F57 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B313D9447AEDA32DF3046A1B58B70DD /* FIRCLSReportUploader.m */; }; - D0340BAC10968C24F09C1639E5F92CBD /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 900A505CE99C86C177908F564B73AD49 /* call_test_only.h */; }; - D0376B5C618F25DD223EC91723DBF945 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E83E0FB1877602D9278D293DC318D5 /* wakeup_fd_posix.h */; }; - D03EA4ED2CCF4765C2B02B85262D08E4 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = A20E910BE3E858449DD34C70E7A374F4 /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D0560E8E2E5EB407B5D8E0381BF453FA /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ED685AE8F5FFF833C66F946825A4A81 /* URLConvertible+URLRequestConvertible.swift */; }; - D056FCD7D08ABDC6ECE94DEC61E9DF7A /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 808A42670243C61B5788F67CE87F2D6A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D058E3FBD46D9EB98AE176296B2FC752 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1B91F69198E80F6CC47F2117DDFB73 /* interceptor.h */; }; - D05AD3A28E5419BC576CD77088C28BBF /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4496A35C2BD0510FCF3C465587E5E9EF /* hash_policy.upbdefs.h */; }; - D0645EB3D7CFCF27E5EFCE70C18A1FE2 /* health_check_client_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91207A3ED8394275AC6CA97ED02B3D54 /* health_check_client_internal.h */; }; - D06A9468529179CE34DDEAD205235015 /* write_size_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 03759A44F8CEFE31CF54223696BE6198 /* write_size_policy.h */; }; - D07B6E31110160F7EBDF9B603C3452DC /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E387CDCDD8E5A46ADF1EA0BFB2A6B0 /* config_dump.upb.h */; }; + CA519A194E93A9EEEC44D33C1866CA8D /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CCEB29F37E5EAA32C4774C50895B7D /* retry_service_config.h */; }; + CA5254DD2CA8B081122B37E3E8997FF5 /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 768EF45EFBCEF02D05431082FF558BBF /* grpc_ares_wrapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CA6D4A6B85ABEFBAE4D9A919069C3CCF /* FBSDKTimeSpentData.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7992CE00D7595AC95828A6E786A1E9 /* FBSDKTimeSpentData.m */; }; + CA6E7775EC0FA36694EC254F2EC9B697 /* internal.h in Copy crypto/fipsmodule/aes Private Headers */ = {isa = PBXBuildFile; fileRef = 38F207FC3FD2D79C58DAC1FEE38547A0 /* internal.h */; }; + CA7999D07961B9149A61B5A581AA5CED /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C0C6257E215A440EC87428A6CF3A1E /* http_inputs.upbdefs.h */; }; + CA86460341747EE436C71AA5F457B4DF /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B188DD2B439A310B2387368DB23624B0 /* ping_abuse_policy.h */; }; + CA92289F517A4EC9EC6D6690D37712EF /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FB05910F1FCF73D7977BD1CF4004E46 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CA9F1D53D68C38A3458F1EF156CA316F /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = 4E1181B2672C0F9A807EF37D11553C82 /* iam_credentials.h */; }; + CAA34876871267C16D469A5D6EDDDC5B /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 748EFE09940277BD6259EE328663A098 /* empty.upb_minitable.h */; }; + CAA42C0E1C6330B5152170A39D1B00EF /* array.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 8179F3DA416B249C6AAF518F3341A726 /* array.h */; }; + CAA5BD27211FF305C61399E0650BA811 /* token_bucket.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E16457D1C504E8BDEECC5ADA14056667 /* token_bucket.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CAA9232A1909E4B36FCBBF0B01079C0F /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 344D64D05B45BFAF5EFE30AADF70DE97 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CAB06FA49906F0DC1CF9337F3277BBAE /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC29A0EADA59DCC95AE95252EEA28B6 /* safestack.h */; }; + CAB2CF38AAB9F2DE2A6616B912F908C7 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = BD40C38F26AB2BA6BD4DA7C73FE3C856 /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CAB9A51CED0F2BD59F73A453D373FEC6 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 455057A8FD941C3E723C4FD8C0EBCC2E /* prioritized_race.h */; }; + CAB9C83AA8D1BDFECDA47349EB53B4C7 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E73D43E844FFC6A8E10EA99DAF4C996 /* error_cfstream.h */; }; + CABB2DA23FDCF371A240B27F2192DDBD /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4AAA612AFACF86597A9400DC08C72909 /* migrate.upb.h */; }; + CABE821A0B1FBBDC2B5F1F0EE81BD7A1 /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E622A0A5DF921FBEF3A154910949346 /* FIRAuthUserDefaults.m */; }; + CAC86B9952C58554849B5ACA12353CB7 /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE819E0819D35D37D03A7D0F82FCCA0 /* xds_lb_policy_registry.h */; }; + CACC0C7F49BBFC4B422B5C51017D2F29 /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 764C3829FDD7DD53603435CFA7A139F3 /* ratelimit_strategy.upbdefs.h */; }; + CAE3D9DE87631C1C3502F221CE340513 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = C782415902A810008D89769FE2A086C0 /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CAEB2602DE575DC2653D6D7BA5EE4DD5 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC14572C5C7E2EBB3E546110AA634B /* byte_buffer_reader.h */; }; + CAECE6B3B5B007EC6F1760DCF84533CF /* backoff.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E96EE88D41B9D2493EA6E50053E082 /* backoff.upb_minitable.h */; }; + CAFF993D2B736372BA576434756BCBF0 /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1885890F43C2CB80F0D4F4A205EB302C /* authority.upb_minitable.h */; }; + CB10EC19FE1F04817CFB6A1CE66F6295 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E2484C23801ACB40F88A301BB86FCB /* load_file.h */; }; + CB1DE7B8649F8A1079529EA7EC2DA0A8 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE7E329122497A76C9E90D9065EF072A /* base.upbdefs.h */; }; + CB2DBFDB05652BB2C8B19FD032C37A47 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A1345A4AB4E8E1AF8F9A70C2AF05745 /* cluster.upbdefs.h */; }; + CB32E53E59FE6AC2FCC6B2B976DE89F9 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 575A1E10C03402EAD2F496F76803C2BA /* map.h */; }; + CB34EB4EF5EA8B60D94571D0445B08D7 /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F1DEAC912ACB167FB15EBB4092BF981 /* exec_ctx.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CB386C6EFA7C169DDDFAEC11AB0D97CB /* array.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 9D498D44C32CF0DBBBCCCD6C5EB0CBD8 /* array.h */; }; + CB3BCE1BE874CBF70B30CDA53836B284 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C97D4C10CA968AE9816A4BD2393949 /* stub_options.h */; }; + CB42BDA1C3831B84CD49DF633E672860 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A40499E4A18034B5032E086973120A89 /* timer_manager.h */; }; + CB48D5E96F459FB283A2F2A6981463EC /* BoringSSL-GRPC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 142E2EAC2659804680E6AE8E7DD97C3C /* BoringSSL-GRPC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB50D7651D8DF9193EAFB9717E0FF190 /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5059E103EDAD3D2B42329F78BA6F3DBF /* xds_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CB5690ED7AEF4909102CE5A401685A9B /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 950CBB7ABE44781957E4B0B22BAE8B09 /* GULKeychainStorage.m */; }; + CB60AB225FDE6F8E842F88592036E01C /* ratelimit_strategy.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9481487A24F0F2468457A33F924C460D /* ratelimit_strategy.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CB61A0BE53342F90E7E809C3A798B517 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 3EE638B8185757188F516270A19622A2 /* sub.h */; }; + CB657AA7CA3EA8337ACB41D277EAA267 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1D165EAF8947FBA92A5C323FFB2D46 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB68F23AAA67BC049C2894956911555E /* index_backfiller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EDC644034251441E2B3BD0A0660E06F /* index_backfiller.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CB6B24A6D6CFE0A8ED3DAAA2FAAEAC86 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 558E725563D49CA45A5D54353F9343A6 /* number.upb.h */; }; + CB703FFF61FC79A08B6D8B9E8EDF10AB /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = EA502974A37E87CC0C6EA336583143FF /* tls_credentials.h */; }; + CB86F368FC5A7FF4AA7616EB895DFE3A /* inftrees.h in Headers */ = {isa = PBXBuildFile; fileRef = 511522BC25D03D38597636D86A086183 /* inftrees.h */; }; + CB93BB52528ABDE1B502AE5B9D772FF0 /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CAD5D5CC9D260B6C3FD57528192F5FB /* dynamic_thread_pool.h */; }; + CB943BD9CDBC6AAB6AE6B16A67648ACF /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A3608605CA5FBFA1263E771DCBCFA8C9 /* field_def.h */; }; + CB9778C302C2638068BEBE8B59FAFF26 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 079397EBA607A7C9F53492A82CD84A96 /* FIRCLSByteUtility.m */; }; + CB978196B423CF6D9390236F88590293 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDFFB2E1FC501D91E5C1874E6DC956F /* basic_seq.h */; }; + CBA1E90AD835244CCE292A904B02F72B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3DC4A878ACF4B44D21F27BA8C538CED6 /* PrivacyInfo.xcprivacy */; }; + CBA6C3FA5346246EFE66C7FEAF68D8B7 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00C811B9EA5F05DE91A47451E051F14C /* proxy_protocol.upb.h */; }; + CBA91B7D59A845A69117B70942687E7C /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DE45BAD9EDC0271CDB3ECAAD43998FC8 /* cert.upb_minitable.h */; }; + CBB3E8333BF54C88A93D7376971E939E /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26EAD1953CAD91C9F04826789FEFCD45 /* client_channel_channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CBB7595B094E1F5B1A0AAA30A57A5BF9 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 71A2F618D3228252FEBB82FE53AB1658 /* aws_external_account_credentials.h */; }; + CBBB096027C642421D3C900EDF12BA78 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FD32DCE47B9BB34B6F3DA5A0AE713D3 /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CBD58E8D847C506B5019AC30B9DD624A /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A750799C655157E933A0E70313FF717C /* protocol.upb.h */; }; + CBDE1943C7B31AC5895684E72B6F6B7D /* load_report.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 71DBA451B8977F305349E02791D1C239 /* load_report.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CBDFD6F68C9F4EAB3C32DB05729F5DD6 /* tmpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB431513CE6BB59D401577F3ADDA7E43 /* tmpfile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CBE2E26D0EB4E170C908754BFC5B1C4C /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C9A7ECCB97423F9FE82976867609E4F /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE6F1D9968CA647E4902AB5A9ACBCA3 /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1CE08C16F75A73D2AAE9BB487B753C /* workaround_list.h */; }; + CBF0B4E349EE11B4D4B078666BD783BE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E491968D4021EC9A85D6338ECC019D68 /* internal.h */; }; + CBF72C7871D377757CBF21D8310C0AD1 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DE9D0F3000E7273C3DF87C95C5BF979 /* FIRCLSContext.m */; }; + CC0227CF2AD7D9CC6ED8C345A499B298 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */ = {isa = PBXBuildFile; fileRef = 95C0C7DEDA57D1A34B9C1E4F4CEDD6AE /* internal.h */; }; + CC0E8213D2E97B923245FA6C0AE8371E /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBC98581F36DAFB141C94751A15D8215 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CC184FCFCA39D8172DA61CBFB8E37D1A /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 9479426056AC9859E66265E50A717C76 /* spinlock_linux.inc */; }; + CC43CD4D4038B996C9D9831D43E13ACC /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F38C6862EA33B1BE6B4D2EE42FA2215C /* resource_name.upb_minitable.h */; }; + CC477270C3B61DB5E63ACF0508B6CA1D /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 490CA83E20BC07CFD033FCBDED88C97F /* file_watcher_certificate_provider_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CC5BC4391CF7452AF3254D8CAFC82062 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0464D37DF3B8C8A481761B5CFCC0DF27 /* ImageTransition.swift */; }; + CC654B2BF1E0831AA015A714539C13D9 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7765F2C2246806145F06B41EFEA614DE /* GDTCCTCompressionHelper.m */; }; + CC6742A61638EBDF8537342F8C3C5BD1 /* service_config_parser.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 1CDFB6898EE0877961169F16257454EF /* service_config_parser.h */; }; + CC7523D7C6664D9F0145201D220E0AA5 /* metrics.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A3033BB424AE4E6B17ACEFE3E3015B1 /* metrics.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CC7C5690FF7883E2A4229AC2BF5327E7 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D75AD96D0447C0632B3E4F07AEA65138 /* common.upbdefs.h */; }; + CC80DC335F8C020A73D971E1325B98C0 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E99A11D4E4E5C1A0C05F0EC60DD6BCFF /* mutex_stats.upbdefs.h */; }; + CC8841DCFA1053165A5E0D4D49BA2FEB /* FirestoreQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6EE6CCE063ED80EDE7216DDE6FA583 /* FirestoreQuery.swift */; }; + CC8CBF2B853D3A5E175DC126DA9B2C0F /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BDF0B4A6081B7A4CE140A676D823BC74 /* semantic_version.upb_minitable.h */; }; + CC8ED582BFDA4D4A07D2BE8261DADB2E /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7A97CD1C9C1D628070A47369CA46EE8 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CC9289D8E2F9E5AF43DA6575C19F99F7 /* legacy_inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F0D1D32CD1BE756C90D331095CC43DC /* legacy_inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CCAAB07D0D1BD9BC21B339FE143536AA /* cycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E8FECDA55934735363493F56C347094D /* cycleclock.h */; }; + CCAC36C5BEAFE4E0D3FF903F0410851F /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A7B005FE2A069CE1D0BA190CA0E9E032 /* client_side_weighted_round_robin.upb_minitable.h */; }; + CCACE40B8C65683CFD158A3E1EF09823 /* FBSDKMeasurementEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 15309C7D0F24B69B549D5CC74B88D9C1 /* FBSDKMeasurementEvent.m */; }; + CCB78E953FBDFD2A3537EF7A197EA31D /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 8C22BE6BA8E55177569E74CFBFB6B573 /* migrate.upbdefs.h */; }; + CCBED76D6906E229F5DDCE73D2B09A6D /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CB9B09E49DFA6130A56F691D0CCBB1 /* httpcli.h */; }; + CCBF149DBC4169FAF3077C23C3A6E8B6 /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 175F457DC97277EF9BD809D6F97C9582 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC2A8D5AD05BD4FC96BB55DE3BBC8E1 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = C59F7A07308B84035C60CBA4ADE93FDD /* trace.h */; }; + CCCC08F57CD6792F1341C7F714133E10 /* def.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 66769FB5BE8D16E28148DE8AC9ED7FF1 /* def.inc */; }; + CCD29132A1FFD942224717B8A09AE27F /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1D48A38320C36603A5B34338425DD44 /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CCD48CE825DA4C341D122657393255DD /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 29A819CF87CF5950B4EE9F7B5FF18D13 /* xds_audit_logger_registry.h */; }; + CCDF727794D248B8117C64EC5915962F /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBBFEE7E089AAB61CD6D340E05BB18F /* byte_buffer.h */; }; + CCF2274AD66E0E61B0CE4C8EA51E2AEC /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 55720247EA3F571FF8A9D8E803A6B07F /* field_def.h */; }; + CCF5C9F939D10A6FC6934CAF9B8ECB48 /* GDTCORMetricsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8003A9558FEE1049C1A648174999FCF3 /* GDTCORMetricsController.m */; }; + CCF6596FE6CEC605DFC6862898C08AB0 /* common.h in Copy third_party/upb/upb/hash Private Headers */ = {isa = PBXBuildFile; fileRef = AA11D58392B8F5604DE90A0476FD9D49 /* common.h */; }; + CCF740EE1B7DAD5E4E440D05032E59DA /* FBSDKBridgeAPIProtocolWebV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F558B71F31E74DE3A758CF6D45FE06 /* FBSDKBridgeAPIProtocolWebV2.h */; settings = {ATTRIBUTES = (Private, ); }; }; + CD290C80EE24C0A0CFC94B09ED0FB2E9 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = A100E21A725F3BC7B77F2772EEB2376B /* FIRGetOOBConfirmationCodeResponse.m */; }; + CD32415070228CA7B29509CF45A440BB /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F634FABDD0660A52AFA92BFD5C995A0C /* native_posix_dns_resolver.h */; }; + CD3C3A793ACED6190B5AB9285373424A /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = B50EDF341109ABF5DC4AC1851B0D9911 /* match.h */; }; + CD3D2B822CF3836FD6AAEA0C0A01630C /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4EE61E0B5C16A518395AA4A00D92043 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CD3DB9F9F0946657AD054F3F324A501D /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6585B17091334FEDA1A71C65012FDC1D /* udp_listener_config.upbdefs.h */; }; + CD50E0782FA29869F1EB3ABD1DD34D1E /* alarm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B9F7746F5C489019CAF221A920115092 /* alarm.h */; }; + CD5600589EEFEECE0421D3E59F82B989 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FC020A637E173C8C44321E0E1190E38E /* metrics_service.upbdefs.h */; }; + CD5E5135F61539F6792C59387A270F57 /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 01408743DD0340653EA2728C3DA7D906 /* json_util.h */; }; + CD5F14B02DF9D964E11C746431C44BDB /* FBSDKKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 22CF508AE5784C459CF7BC9F8BAE2B1C /* FBSDKKeychainStore.h */; settings = {ATTRIBUTES = (Private, ); }; }; + CD612D4301DECAA889BEC99F56CC0533 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F5CB28F507E40C702DB0C4BFCE7201 /* call_tracer.h */; }; + CD6246F3388AAEB4B183411CED8EF52D /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F39B91D83D5FFE922432A7C93BCB3F43 /* struct.upb_minitable.h */; }; + CD6310760C48E7CE2C840A810688B970 /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 30FC7A2C92E15320F6E7ADB7B3117AD0 /* rls_config.upbdefs.h */; }; + CD65CDC8CE3756AF7D670F6ABC6259FB /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 9CD535B6DCDB2EF43540009955996276 /* validate.upb_minitable.h */; }; + CD881416BCA532E82847C1C98AB2AC86 /* service_config_parser.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 638DA56CBB3390F1034287E2587DBBEF /* service_config_parser.h */; }; + CD8ABE771C3BC137822517B960390F50 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8F6C252D8D7A9A4F38073D2386A095BD /* tcp_tracer.h */; }; + CD9CC8D3D2CA49F2A2B39620E78A4442 /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = A7325AC4BEC7EF7D4DCD33B02B3E198D /* invoke.h */; }; + CD9FB0C7C2C57DB698F7424C6ACFFE7F /* service_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FE44FBEFF3111E26D5F60EFF38F8145F /* service_type.h */; }; + CDA083B62D21C5213B079B2AB83EDD0C /* TZImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C4CFFCAF63AF40C522F2E26F474D2C /* TZImagePickerController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDA820426435AC4C932EB39F80B18499 /* http_tracer.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F9D4B343FDBCF2812608E54A4A73818 /* http_tracer.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CDBB886E648845E47D7C6CEB1337AB77 /* async_unary_call.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 5176A1ABC323558D63DA0E41EFD544CF /* async_unary_call.h */; }; + CDC5A977886B20B188E0ED27580A4FC5 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E396CCF9035EFABC98088357DA9B0F /* cpu.h */; }; + CDD038C64961207378AAC6F53AC635B9 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C11BBC90F9DDC8F99BB5DE5A5100A0CA /* address.upb.h */; }; + CDE5897ED0212523F77325498E638DEC /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E3D6AC34171E53A1E2E88797FBC6C798 /* notification.h */; }; + CDF0D86951E1480C277B5D5CB16D0B1E /* strerror.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 502650DFEC52E056D1416D88160A67F3 /* strerror.h */; }; + CDF7870BB2BB98DEEC537068A8FC8515 /* path_transformation.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F03CDAED5D9FBF0328F025F69758548E /* path_transformation.upb_minitable.h */; }; + CDF8491E01F7B83208B7FC7A7C72724C /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B03BB8C2CAF5BA748E66A9D04F0454D /* atm_gcc_atomic.h */; }; + CE0556DEDCF04C1C07E9DF16E0B598FA /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 855325D260F7366FE50929FB3094E210 /* opencensus.upbdefs.h */; }; + CE0903984718EE33085657D198A673BD /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = DF586AA779ACEB4C1894A6B698614C6B /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE17A815C9E1059FDFE84E7AD46FA207 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = AF588AEEF19DF64754F4B70B3086B6EC /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE26E379D3CFD6BB7566F5F9D1F327B8 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F9EE5FB6A75BAF47431EE5D3C45158D /* bin_decoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CE2D5355A2F252064E6F80F857F2B7DE /* low_level_alloc.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C21FB8CAE63667062A9FFCD9F1E0DF22 /* low_level_alloc.h */; }; + CE301CD89EFF5070890CA567A1A010D5 /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB22D8479953C385023C703888B32AD /* tls_certificate_provider.h */; }; + CE348523838CE0AD1DB32D86327FB7F4 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BBE9D6E161396B9A52EEA1DD9A884B1B /* resource_name.upb_minitable.h */; }; + CE3CF671FF331060BC56D90DB42CC6B4 /* gpr_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 45C748D23C4AE21CA75CD64E57FF083F /* gpr_types.h */; }; + CE4D0E4EB7D1EDB3031DDF9A2A307CF6 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = EB5141A5BA5B413AF3B81E063AAD4EA4 /* cct.nanopb.c */; }; + CE4EC9F54D65C197544913455A47EC85 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 739366C7A48B796D62D96F7EE866C663 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CE5582D42AE1142FA46C85CB83E87841 /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1116FAF71FD18733CCF19F948320B3CA /* grpc_ares_wrapper_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CE59BC8970CAB8DEB0FB049570F53C73 /* discovery.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 89BCFAC952245F522158CE80CEBEA813 /* discovery.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CE657733322E649F92FF870205FFB580 /* FBSDKCodelessParameterComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D94923FB95C27D6D2C68F01D8D1934C /* FBSDKCodelessParameterComponent.m */; }; + CE6B57EA9A9FF0CF7BE45D341DC2B38F /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9468058FAFA60264A43F358870794E9A /* lightstep.upb_minitable.h */; }; + CE7AE7D8AFC796F491E5413DD97E02F7 /* opencensus.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEDA4A1499E16A91EAB26F29CD43898 /* opencensus.upb_minitable.h */; }; + CE8334647D9BC5C617CB8AD1AC5B032B /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D2E76CA8A9E7957EB492C3CF2EBC79E /* weighted_target.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CE84841957EA4A08C3469200644A081F /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7DF0B3CF4C92D506DB86659DBDE57B /* semantic_version.upbdefs.h */; }; + CE9BC4A0A2A51DF0B61A86D72AE1271C /* thread_pool_interface.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 552A17D16F809A9728E6F8B2ED8CB379 /* thread_pool_interface.h */; }; + CEA7A847DFA80480B18B0EE1327769C1 /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 399BBABC4F4F46AFAF404F21AE3B1E19 /* resolve_address_windows.h */; }; + CEAAF1C609E0DBA68BCE7217B7887487 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FE0817B0724EAEE03D7B28AC3A5D0A /* authority.upb.h */; }; + CEB55EAB184E1FFA2A68E825792FB724 /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D4574F0B1FA0F95533C414DD443364A /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CEBF9BC67C0C9D947836C16A11272289 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = E6353A86B48D6118731B47167539BC6C /* message_size_filter.h */; }; + CEC433F46A54FF669F25D7F95E2823F9 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB2E3AA2333FB9EE982500716B10030D /* http_tracer.upbdefs.h */; }; + CEC9ACFEAEAA433704D4D722B6302888 /* FIRCLSLaunchMarkerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = EE71CC4EEED3898286A3F0D91404F7C1 /* FIRCLSLaunchMarkerModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CECA9A53E08515A6543DE1D45751E99F /* message.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = C419BF9A35E1769C3F240F7E3463D611 /* message.h */; }; + CED391C37BDF49E2A7F4725968BF0BC1 /* Firestore+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C14E8722ED15F1717232A8D4D3BE2822 /* Firestore+AsyncAwait.swift */; }; + CED9680F4E3CD76C4D8798D80F684E50 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B0F97002999878182339D58EF7A694 /* alts_shared_resource.h */; }; + CED98CD09A45B513B660133A31409B47 /* http_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FF6BA90322898C15ADE3C518672A04 /* http_service.upb.h */; }; + CEDB737922D76455F42957AABB1B41C8 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E083AAF3DB125DB98B09D61A2B551DCC /* endpoint_pair_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CEDDAB9E9742080B47981917DA0E40BC /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3CC9B49068CC89D24C4E0FF7B91A7A3 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CEDE4D3C43FB1E9228670157498D7547 /* FIRCLSCallStackTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF044AEB5B865F756E3A931F905DC4F /* FIRCLSCallStackTree.m */; }; + CEE385C365F4C59B6655DBAA7073B076 /* span.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B9C6286CE0E1D0201096978FC5206734 /* span.h */; }; + CEE5E90EE34AA3257F4FFA16A0E2D8BD /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 15F3C3437BAF0C36C3543183A419F477 /* client_side_weighted_round_robin.upb_minitable.h */; }; + CEEE0A1F743E04CE4439B8F3560BA8A2 /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 27EEB3BC6EF6816719DF7AC8820AEB5B /* resource_name.upbdefs.h */; }; + CEF67959F5F7C5F3D5D38BC07CC07CCD /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B1E98B089B55439C9784C6B139EB7E /* exponential_distribution.h */; }; + CEF861A9B2A63F4077F5D1EB80A7097B /* str_table.h in Headers */ = {isa = PBXBuildFile; fileRef = A23F05121D096FDD4655C7C46C2EED3F /* str_table.h */; }; + CF08C74330593FCAB13BF26084D41DC5 /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D564562316EB5EF0CBBA966D156E88B /* tls_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CF164BE6A851258ED54C0B0FD1AD36EF /* grpc_polled_fd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F47F1D7D1BF1448F758579A00904ED78 /* grpc_polled_fd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + CF193D22B1F0F7140B3484A266BCB23E /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EABFBC9CC0613CBBE7BE764DFAA815A /* orca.upb_minitable.h */; }; + CF19A113FFE22763F72B027B95488E5A /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 553B765B7513AD3292A4A093214CE07E /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CF22ABBD0E75D7F4ABEDB714897EE2E1 /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8311A83B4A42F294416125953CCA6B7E /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + CF2659A39E535C80FDA0ECC52CFA34BF /* init_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA846C2C36C1433291010EC06C6108B /* init_dump.upb_minitable.h */; }; + CF2E9BB5B3E8F56A60FED9817E406EFE /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DA00B5A93C441E52D37658266D6E941 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + CF318E1544CA0CB8EA6EA149601DCFB0 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 904D8CF67DD1798DFA92C4E18F17C50A /* error_cfstream.h */; }; + CF32D49B03BB82701AC5373A4B89CCE7 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = A142890662C0F81E0482E2511050E3AC /* alloc.h */; }; + CF3DB48FDC89D75147637C19C89321EE /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 41B48C21E8A9E450122A3BA573AFCA5A /* checked.upb.h */; }; + CF4227490BC889B175DF4ED4E4689FF5 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5588F96F20FF174B05FD3FFA7754ED80 /* internal.h */; }; + CF430A4FD6FCFC200B1535AF0E0BE2FE /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = B0F136FDF5E179854B29C648B741098E /* re2.h */; }; + CF4CC865D1D123B4DD50F14CEA6EB740 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = FF078A3747EF899BD8D7EA46B7A80A62 /* load_balancer.upb_minitable.h */; }; + CF509186841A33F687D9F40CB0EABA04 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C10AA26106F53319997F71F8CD9C487B /* cord_internal.h */; }; + CF50FE0F4D621D1E459A637AE7C58751 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = C7D3682F74104E401F24F76C940E0942 /* fault_injection_filter.h */; }; + CF5EB296F19E77C6504E8D73A1BB0336 /* http_connection_manager.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD2CDA31DA917C318FAD3AFCFAD4BBA /* http_connection_manager.upb_minitable.h */; }; + CF612FBCA248CF214836D2B338DD9B78 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BD1492D1D9E3C677DE7AAC241EA54CC6 /* tls_spiffe_validator_config.upb.h */; }; + CF631DD06470707993B883AD50F763FC /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C332ACE0A8730C8B7FB4F11680EDFB77 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */; }; + CF6405A2BA8B7AA5AD3C7BD253CF84DB /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 4DA6F60C69A714EB58A8BB0A6323AAEF /* json_token.h */; }; + CF6827743AD6AB8C839FC82ECD71507F /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 6B12A3845A7581A776F0ABCD8AA783C0 /* base92.h */; }; + CF75283D041DF5523E6B9250E80F6B15 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 98F6A79A8BB64D59284C77CF3AF81382 /* status.upbdefs.h */; }; + CF81E1F0843E57AC830F82B7D82615C6 /* strip.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 726A28A088B368BDF2B5B099FCFA351B /* strip.h */; }; + CF83989BF741D31E0BE6C63D29D25D2E /* cpu_arm_freebsd.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4A03D892228AE4D446C261F4DC6DFA /* cpu_arm_freebsd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + CF8A7A13D6243FB771F2D7C541A3211D /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 351D3AD35DDDC576F8EE33EE1172E759 /* FIRCLSNetworkResponseHandler.m */; }; + CF8E71E026FDE8246E3C994AF1019ED3 /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 5627D503EF6EF8C50544924E1023A850 /* tcp_client.h */; }; + CF91574E5D5CA6152A49EC53FDAB9C39 /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0E9BDEF4930D2DD88F5310554C707810 /* time.h */; }; + CF9838744DF30AAF69AFBDDA17164251 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 46CAFF67493F14358E6CCA24A5D3FB16 /* TZImagePickerController.bundle */; }; + CF9E1D3F06C8FB4673DE6656A8D11EA0 /* FBSDKModalFormPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF0A2E30849ED615008383981692CDE /* FBSDKModalFormPresentationController.m */; }; + CFA4DFCB369427D6B65B02C2A6BAB095 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 39C03034C5B485A72AD6FBC7A40A474E /* frame_ping.h */; }; + CFB2AB140A34B047CE70B5904324E387 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 0D9756B83E5ECB19C3847A89C98EE2F8 /* thread_pool.h */; }; + CFBE53A76FC84D0E4DF6EBF76F7066E8 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D17537B9BC9FC4774B6E7504CF3C1729 /* frame.h */; }; + CFBF6A1BEB1BFD17CA109D1209B5C162 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EF95CCC8068449832D499F511F7ED22 /* checked.upbdefs.h */; }; + CFC3947442DEB5057B0A09302B48F6F5 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = C94BAF0E58BDA25270CB95F46DC58A2F /* async_generic_service.h */; }; + CFF76706A987880054CCC7395007DF1C /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 135F23549C9C46CAF62BBEFDE84EE03E /* simple_slice_based_metadata.h */; }; + D0085AD3E08DE050EC5E894F55A5ABA3 /* FBSDKCoreKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1BEBA0581353539EC63A75476C6D16 /* FBSDKCoreKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D00E72B51C322C8B16187CD16DAB321F /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F00F858C3266D46B9A4A3A5D50EB34 /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D00F687B4C56B034B9778738C27E494F /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B7140764D858602161BF13244D4AFC2A /* ratelimit_unit.upb.h */; }; + D01008F0C62721B158AF4FECCC5DEE2C /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31A09569652A8AC346A7D6ACE57498B4 /* secure_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0106A1F0D9FE19761488D50BCE02A2A /* tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB42D0E4B3AA5FA04F1FB0B270FF678 /* tls_crl_provider.h */; }; + D014398BA8B89C9019E5031FCEDCF3C4 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 452117578F797051AC83C4C96B442A39 /* config_dump.upb.h */; }; + D028A01A0A6544776A11BECFCAAE0F57 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 038C134CFCEB9E54F6B15AF1C3370A1B /* FIRCLSReportUploader.m */; }; + D02F75920646F37F910B467DD8A86043 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B92D4F5FC5A8BD976E60FFEEF1FA58AB /* value.upb.h */; }; + D0342087478078D6CBF5E999E6EE4F79 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + D034B7AB79DF8CA55CF07AD6B502CC62 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FECDA55934735363493F56C347094D /* cycleclock.h */; }; + D03878FAC854F7DE29111BA672DD81DA /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 91DD199F5414269413669F45AAB8ED9A /* listener.upbdefs.h */; }; + D044E6172832325260E85D8B5698DD82 /* policy_checks.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 112A17AEF028DDB635F81BA938899BFC /* policy_checks.h */; }; + D0473FAC84CBDA02ECFC346EA3D85223 /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CDFEB353691C117CDEEC9FB9A9A80A /* security.upb_minitable.h */; }; + D0560E8E2E5EB407B5D8E0381BF453FA /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E1AD022219F667D2C7EA38101AC5A4 /* URLConvertible+URLRequestConvertible.swift */; }; + D05697D8F9530ABFC7716E547A88BC91 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3026180E0A83C41078F526B57BF0D13D /* binder.h */; }; + D056FCD7D08ABDC6ECE94DEC61E9DF7A /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = E5566379EFEC203F8BDEBA8425B89849 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B30F5282B37C0B79CDAEF4DDD5432 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = D8EF5347FDE55EA2331BA3FB1FFAD8D2 /* message_reserved_range.h */; }; + D066A4F15BC13814C48DA153DE31C79D /* bad_variant_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = BB58F949572A1077313E0B426BEAAF7A /* bad_variant_access.h */; }; + D06754591C91AFDDB2F9923350F08C9B /* cookie.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DCC5F5FB05C0250B22ABE46B909A5A14 /* cookie.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D06C3F6E31831C5668A4CF5E916A9F98 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0CB0CE93CF97D1B24805F5FE34969DD /* trace.upb_minitable.h */; }; + D07A662B9FDB7EAD8556964B7F1FFF9D /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = FEF7990B1C443AFB00B249ECDA0DB7C7 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; D07B91BB7DD774D48B6936959558CC61 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; - D07BB990328011A9F56034A318BEE836 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C016B125D81F4A7DC7A5386808AFD9D /* mpscq.h */; }; - D07C94EFEA6A8117275A76523A1FB812 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7EFEF54388370A2F00475D35C52028 /* connectivity_state.h */; }; - D0815A4970F517A977BD63EF50EC7F42 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = F86B253B4523222CF9E4BB0AE46C40FB /* poll.h */; }; - D09056D829DBC24DAA1E0D329E69AC6C /* memory_allocator.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = F4DB5BF382B579E5BD8B3FF1F5B3C26B /* memory_allocator.h */; }; - D092F8445EDC9CED97A8CE50E431CD89 /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 933302DF69557FD1A837AD4E26DF4F32 /* aes_gcm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D0997FAF78FA861138C358446A381D31 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 941E73E0ED8B27F66A42AEC3F17851DF /* flow_control.h */; }; - D09CC86074AFD818E10D713379E3ECCA /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 2630243A8CC9E5A439C11474299EB0D5 /* default_event_engine.h */; }; - D09FBBADAF7C5C757AA5AB5DFE54BD25 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B24070C8BBA427FF9EE16C3C7A2579 /* Alamofire-dummy.m */; }; - D0A2FB5258796FA335FD7F8C52DF5ECB /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D811CCF841BB34DBA65A9799BE2EE1A /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D0A432E76A6A02A62A42D95A5ABF6A67 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47A971A0C5A1B06F98A524150CCA4D43 /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D0B0C527AB374AE64143B0F54195C400 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3D4F5A47BDB70F36B9822C7B3529C9 /* http.upbdefs.h */; }; - D0B6F192A3EC66904FB5FF1A48516108 /* strdup2.h in Headers */ = {isa = PBXBuildFile; fileRef = 8681CBA9E444AA66B2CD00CA2F789740 /* strdup2.h */; }; - D0BB88E8B6B19FDA0A4D3E77C0CE42C1 /* dynamic_ot.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 91476579C3533B254CEDBD5096A91273 /* dynamic_ot.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D0C34067B69A2C7AFA4DB678C6D79AC3 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = C652E352C5730DBBD43A6242DC71B49F /* GULNetworkURLSession.m */; }; - D0D70420856A76FE5ADE7DB0B85F6004 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = DC87F76C67190D4D4CA52E2E234AF71C /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D0D915178DE676D8F6F59F65EAF4A6AF /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 86562D1A2B1EC4D647060831DB630F29 /* socket_mutator.h */; }; - D0EA3C90FA90A77C3C008336ED785461 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E03B6D8EA7EF47791726AF72AE7CEAF8 /* resource_name.upb.h */; }; - D0F33607A9D3E09CBADABB706CAF0F30 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB08943C9EFCBB045A6D4221D4CA370 /* handshaker.h */; }; - D0F8890B334B6E84EC109A52542B0439 /* decode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = AAE3D8A5040F1E8C81A2DD7C8993B558 /* decode.h */; }; - D10229CF1C0BA8094A2069D33C62CE97 /* link.h in Headers */ = {isa = PBXBuildFile; fileRef = 2166B37D6904F10140F80A9B98CA92F2 /* link.h */; }; - D117008EC6DE458AACD14CE3622778FB /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6417B4349EC7A7B291484968C152F1 /* arm_arch.h */; }; - D119C339C18FF3C23C14FF1D55520E34 /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7E4540FCB063D3F1843796B6A61F7CF7 /* arena_promise.h */; }; - D12DD8FF4B3C81242CC2225B6079ECC6 /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B40CFFCB77048DCA251A4A63CDE993 /* trust_token.h */; }; - D13BDAD93EE2F000AF40F2BD09147AA1 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 97463FD359774810EF65318109B3DE19 /* rls.upb.h */; }; - D14560484DB7863E843668F9618B411A /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BA499F7C3D19741C328C84DDE3469F /* GDTCORUploadCoordinator.m */; }; - D1547451CB0AF5E24F818FEDFB4B66A9 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C74D6674677DF5A60E601B07911724A8 /* http.upbdefs.h */; }; - D1569C927EFF84ADC596E805F0247301 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1FEBB546464B83A5561581C760030843 /* mutex_stats.upbdefs.h */; }; - D15BAEA0434D2873B5C41509C1F8B222 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = DAF784ED2F2E10CF7E1B50E36C215568 /* resource_quota.h */; }; - D15C804AD6BF495483A0B78AEF787EF7 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 574214F3459A7E8A880943D00E67E245 /* FIRAuthStoredUserManager.m */; }; - D173323F7CDACDFBB9A95B75CB74F160 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BB05A19C27DBDE7AEEE978BF39437BFB /* xds_api.h */; }; - D17A42549994FB1231F34CCB8429F55E /* async_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CEBC4B67799FC96BF05E4E4479588E44 /* async_unary_call.h */; }; - D17B4710652CC17A3441441E3C0D0831 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2FF53C8F35A3AC4E998129BDE7EF2B /* parser.h */; }; - D17E11F09D7BF1F0B350BF26D44F322E /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = E28486F024179AB0C0783A4A3206A92D /* channelz_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D17FF30AC3CCC32DF0E16EA2CFC06836 /* TZAssetModel.h in Headers */ = {isa = PBXBuildFile; fileRef = B607824AFF8A8EAEEAA86E55937EB25E /* TZAssetModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D18405F70819C83E0C517ED2E4B4DABC /* port_platform.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7625FB6BE969F35F3D8101F8D51D62EE /* port_platform.h */; }; - D186391C4AE93C3357703C90BC42C3BB /* backup_poller.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = A7B113DCB4788AEAEB54CA0BD2E4E2F0 /* backup_poller.h */; }; - D18E982228C4E5CADA1A201ADB586A5D /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 729875D3C548AC8BABEDC37B598C9FA8 /* security.upbdefs.h */; }; - D18F1438EB200BDC5C8B7CDE6D96485E /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4032A0582A980AD142BC240AEB87AA /* statusor.h */; }; - D191DF53AF85F3EB637728C706C9586E /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C42C3734FCDC583B3C656D4595E83F3C /* csds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D192CF1DB362E3E3DAEADB6727BCC781 /* accesslog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 19877F7381A1D86A9F800366ADFCC60C /* accesslog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D19F6CCD4A5D56B4DBE5E1C422DA762F /* orca_load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5CCA28FA8FC566AF7DB3DF49DFB8D7 /* orca_load_report.upb_minitable.h */; }; - D19F98D5FCC1B11065C5C2E6736C793E /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2EBA3DE3FE1EE6AD0AE440FEE89EC7 /* skywalking.upb.h */; }; - D1A50B96FAA55900AFA58CC6D09785A7 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1881928922A74D3CB71A794A862383A5 /* socket_utils_posix.h */; }; - D1CC5CE588581B934EBAB404C04216E3 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E4788C1848D3046321F6C98B711363C /* zipkin.upbdefs.h */; }; - D1D3F6537F73287E8A2DC3EA2E2AEED7 /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = B39E31FDC2A8951A1258594074C0F931 /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D1DACF39D83B09EE492F1DA6E4378E70 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 013D237986207FA9A0A124776BB201C5 /* validate_metadata.h */; }; - D1FC1084B33B5C50FC34A600DB14F7F6 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E737F66E81A8D15066E83F63119152 /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D206BE597262B61D7ACE849DDE92A6E5 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 178B343D57806114B0F6106B24FADC42 /* alloc.h */; }; - D2108B25D232CE912CA1BD35C319E948 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = DF41B1443E368F9F1F07DEA4A1680BD5 /* handshaker.upb_minitable.h */; }; - D218F600517E3A18A690C2FFC0F7C117 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6306681AD6976A24015AA25D5CFD9665 /* channel_args_endpoint_config.h */; }; - D21B6A10B9BA85102C0515B790B690EE /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A1C35E3A7EA7EDBB42ADC8D0229C63 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; - D228FD60D1B6AEA925C9FDA65D4A91F6 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = E644DBC0E8CB42073ED42ED597FA5C9D /* xds_resource_type.h */; }; - D22ED1F81639D42B8FF654CB3AD2C33F /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3DD7C7E54915E343500C840A02357B /* annotations.upb.h */; }; - D230B586F92716A36801E0F042EFDBD0 /* address.c in Sources */ = {isa = PBXBuildFile; fileRef = 470EEF3E84292489A1CCAAA0D79A35BB /* address.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2314349F4084C2C67625B1911DF2249 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0582A0F8DD2672A4EDB376B7325392CD /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - D233931DFE7BD7BDD0A49BD71DC29145 /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46F9CFDC969A9A34291CE5F39A34C4AE /* grpc_service.upb.h */; }; - D236ED815DBF89F3E4787EAAB74988E9 /* work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C7F8112BADAE0F74CCE5464D10AD14 /* work_queue.h */; }; - D24D36AC0F73DD5F74FF7D5E74425B90 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0021800EE727D90A7B806CCBA93BF0EF /* extension.h */; }; - D24DAC36020D2CD3C47FD10A7EAA6E58 /* service_indicator.c in Sources */ = {isa = PBXBuildFile; fileRef = DF9C520F59788069A09789BCB8117D9A /* service_indicator.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2562618BDBF1D5F1917876102424E26 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CA2E709541EEFB1916BCCD36431182 /* common.h */; }; - D25C9A0E8B103A302E9F092EA149F0F4 /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB9D25318E9D36F3526E3037EAF46EFA /* ratelimit_unit.upb_minitable.h */; }; - D25D9139019B4C26AFC178956BB6D4C9 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = E17AB9739BE5C078569B38696F47032A /* inffast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D265BC7F25BE0A6397325C51FAADC7D5 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 77BE0747E53CE0E3552279DA86F27702 /* rbac.upbdefs.h */; }; - D2668DD5BFB5E88DACE87C9496008557 /* grpc_polled_fd.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E737B633A88C64998C60BAD13E0970 /* grpc_polled_fd.h */; }; - D270B0E794792D256158C3CC0A42BFD0 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D61BF7976D6D1CA1581438FF62176576 /* any.upbdefs.h */; }; - D273C486E088ACA972C83FC55EC0869F /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0CE394902CF7DE17D6A106550A137727 /* port.h */; }; - D27A2ADD4BF6AE0F437333B5B5071DEB /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 051703D9A626D5D3608CF7752766B09B /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D28494AFF3A94E0224100A72D562A381 /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37D28AAF6E29468528673914023B6F3C /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D2874C7E4398CC02AAFEDB1C615749E9 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D0A93E77401A6228CED871DC2078A53 /* client_authority_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D29063600454832E519B836C3D81BC3E /* FirebaseFirestoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E3A013D7F2C532463BFB1C5311035A /* FirebaseFirestoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2A42350BCAD59B8745644007E5D292F /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9D939B9691868A59B58BDC447AFA0D6D /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2A846DB4797C5A00212C2D0FD53FFBC /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CD3AA0E26E19449E6B4AA33D821960 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BCDE1C1ED9319E07896018C3D3DA3B /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = C09B2F669DCEB0F2B72D29D502861FDF /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BE4357EB09B7ECF49B7A6E033D7BD8 /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = CAD03E88F8434F776944F7E3240A0131 /* tcp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2BEBCD71C3B315F3730B7771A17D2CA /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 158F249697755EE2B863125D2F7B2DC2 /* socket_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2C1959847AE4A8FF8BF9B63DDAA489F /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 328F054AF56CD463F5B354FBDA1F7783 /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2CF10613D7C27AD9942B8A7DB46A7A9 /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F63F8F026478B0D6CC88861FE70F74E /* bernoulli_distribution.h */; }; - D2D2A788DC3B9579E294787A13CCD7C3 /* substitution_format_string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BDE107BBD7B8866BE54D2E45D671C1 /* substitution_format_string.upb_minitable.h */; }; - D2D5658072F717802905A92266893457 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE14A977C0CCA543FC357102ADA3D1F4 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D2D69E2E6A98EF837948BFD242728632 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B81DC0D3FE6B11CAF6453402694803 /* FIRDependency.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2DB1B2B1048221F7C47D325FFD05F3C /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A7CBE4F4DAAEE70ED3AD599A860152 /* iomgr_internal.h */; }; - D2E985B12C092826E2E5932AF07D2946 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = D585C5656B9F8F7572D68804AF4F2897 /* message_def.h */; }; + D08016646D014372BE9AF4CF1EE92FC5 /* FBSDKAccessTokenExpirer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E15CE2FF8155E20BC61F7C4D60BC746 /* FBSDKAccessTokenExpirer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D0842D06E52E4088FEA82DE03B58C681 /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 792036288DB39F80E461A474D78BA116 /* futex.h */; }; + D08AEEA206CDA3D92F744FCA0DA1A981 /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B323A490CB91F08A74B01482367F25ED /* grpc_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0970BCF9CA19EA62AE9CE9BC9F5D69D /* bit_gen_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FEFCA4CFAB7D3F7DCD90E9AB0083C3 /* bit_gen_ref.h */; }; + D09CD7914F5E62A21397EADA1FFFCCAB /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4DA121338DD194441944C74D6366059 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + D09FBBADAF7C5C757AA5AB5DFE54BD25 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4259EB1F7F04C1A8EFD6A66D11311F3D /* Alamofire-dummy.m */; }; + D0A4B2791FD76808E1651E507C8048C1 /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1338230FE496C62AEC78366B33871442 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0A5E031A15B221B4D9F5B5F3F798A19 /* retry_throttle.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1BBA3847783FF4CAC219B51B42714CA1 /* retry_throttle.h */; }; + D0AB2C5279F181C8878CDC058A20BC47 /* status_code_input.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 894D04C68F9A2419032770780331F42D /* status_code_input.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0B129459D46BB84C746169A647FEFAC /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD29883BECFCD85A70D372F1435CD60 /* bootstrap.upbdefs.h */; }; + D0B5ED3E0FA6834F0ED007DDD247BCF0 /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE46EA4732CC39F34AA8FEE7590E1749 /* check_gcp_environment_no_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0BC7799D8DBEBBB3C998A87283E0C2D /* Promise+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3924746F08EE8A2F08E35FBF970EE30 /* Promise+Async.swift */; }; + D0C38246263080FB4DF7C556EB767C9D /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B9367272D6CCC0F66E4930ACA2611CC /* tcp_server_utils_posix_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0C8BC5654AF4A07FB434C6B7F1C85A1 /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EB6D677DFCFB0550A7BCF43590B754C /* percent.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D0CD3BB2ADC4620261082EE98725B6B4 /* call_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B694B555CDFFA0B09218276FFBAA7A5 /* call_factory.h */; }; + D0D0443C68EDF5FFFE7E6E275694B7BC /* status.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 637AB0ECB7D5A6B75FE33C9E95192A17 /* status.upb_minitable.h */; }; + D0E10DA625399D7CF4B0A20850409687 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = C005079393957EFBDA81927AE2AC561D /* alloc.h */; }; + D0E1EBA8040B9E61ED496E7B4FB4F185 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A73A94AD93901D93169DEC72F8803C1 /* call.h */; }; + D0EC99764698BE72E328CE1809D3A237 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = B7A59BFC4E275C2F750B6DF8A539C22F /* status.upb.h */; }; + D1114C56F552B7D009BBC5EABE87A224 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA200AAE2BC952A447268704E316F79 /* work_serializer.h */; }; + D117008EC6DE458AACD14CE3622778FB /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E91CC473B80BB18D714F85077C3744C /* arm_arch.h */; }; + D117ECC22AC5F378A4179CCC8A3E85BE /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = B64790AC7A38130D86C441B2BACE6D89 /* GDTCOREndpoints.m */; }; + D119F52FE8850FBB663E86BA5903AF27 /* for_each.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = FF69E35CCF06F522DF4630762EB50302 /* for_each.h */; }; + D126AC638930DE01119843513FD1A652 /* RCAActionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C4008C420A6A9E897FDCD02911BCB73F /* RCAActionProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D12CA02F0BD543A8A2A72E9C35685308 /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEFDA9696C627C0A0041DCA5DD4887E /* secure_credentials.h */; }; + D12DD8FF4B3C81242CC2225B6079ECC6 /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA34EBA38D8CB39DA76C73891947179 /* trust_token.h */; }; + D13EA0CB3ADE7F90FEFB63AA8240965E /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD2C81E03B9FD7EA603878DA8D46A81 /* tcp_posix.h */; }; + D13EB3A96300428C6B496E02A756BF02 /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 878578434AEE41F0AB9F65B44CD634CE /* api_listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D143796CFE8EDD7CF056356E6145D1EB /* event_service_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C20E72C597C0BB8CEC8911F32B1D73 /* event_service_config.upb_minitable.h */; }; + D1486DC28B3CD7A9059FCBE3F1BF57BA /* attributes.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 103A16559839A4675EDCCF7E758E83F7 /* attributes.h */; }; + D1526E08CAFBA71159E7A719FDE671A8 /* FBSDKAppLinkReturnToRefererView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D2445499B216468460443363C9EBC5 /* FBSDKAppLinkReturnToRefererView_Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D1527961260CFD9ED69F008D7FF1867E /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 69622F76F8BABDFFA15319E25E2E1354 /* channel_stack_type.h */; }; + D15C804AD6BF495483A0B78AEF787EF7 /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A43B49AAFBDF98005B7C2B682791B5C3 /* FIRAuthStoredUserManager.m */; }; + D15ED46DBF4C775BED46A638D66AA383 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = 300A7826C574AE3B030BDC8CCBEE6AAB /* server_callback_handlers.h */; }; + D15F174B81992510C02532F8BA24D290 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D9407D3ED3C98D1A1DC2B17BDF17FA /* proxy_protocol.upbdefs.h */; }; + D16529F5FB9414D4333B8780A94DC3F6 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F7CE5FEE699ECA7776DE7CDEAC73F19 /* discovery.upb.h */; }; + D16B8072F08930E2F00D87B5F745ED3C /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5E2C3E267FFB24337230E76D239A84B /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D16D7658756F0A75318AA0FFA8FD0680 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = F9531921A80E7EBD231EC2FCCA98B938 /* eps_copy_input_stream.h */; }; + D16F27DB28F3AF3532553423972CA063 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D8F4963BA5CD85660FFBD09F4C888A9 /* oauth2_credentials.h */; }; + D1720F310351FD312E63C9A333111650 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F746EDE905BBB20455DAFB7273D4E0 /* GDTCORPlatform.m */; }; + D17FF30AC3CCC32DF0E16EA2CFC06836 /* TZAssetModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A42C98F161FD2FCE951D6FF5EBC3B379 /* TZAssetModel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D196195290053A408295E2BFD633F217 /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 68E1786BB265D03F8A1062A87A413291 /* GULNetworkInfo.m */; }; + D1978BE22D6D401914217B7C51A3255A /* representation.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 231E225200B7B4B26138CDAC2C61E4D0 /* representation.h */; }; + D19BF4B454E99109A915E4A66F575E5A /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A226B114C88052E9E5D026AA399B0E85 /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D19F4C2EF635393D30CED72F75AF6A49 /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62969704850874537502F2CAA4205BAF /* listener.upb_minitable.h */; }; + D1B21F022E61BC27C09150292DC96C46 /* http.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 704CAE6EC4FFBD86E3564590CE48F5DF /* http.upb_minitable.h */; }; + D1B57A58FEE5FDDBD499F1B34F54D331 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A1F495A82F0CD5BF03685A234AD607E6 /* path_transformation.upbdefs.h */; }; + D1BB7761E39FE3A650DF90B5BE7C743F /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 687599ED1D37F4ECDBBC24DBC05121F8 /* arg.h */; }; + D1C29E1B6C5529AF02BA4A94712D4E6C /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = A828E20A2E96059DE02C6626E515B95A /* load_balancer.upb.h */; }; + D1CB77DF778FCE000795B9A5F2B0828E /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 837777DE51FF4D89DCD509E6E879B24B /* windows_engine.h */; }; + D1D1CF543CD11952B5FBAE60EA5D4F64 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1B6229344D07E0B9A93C615C8CF36868 /* rbac.upb_minitable.h */; }; + D1D2B396309645D96DFC89BC0F814ADD /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = C33F442E931DF7A22FA14BE4F5DE9826 /* grpc_tls_certificate_provider.h */; }; + D1DB86F7A2F3B4E42849155F741C11D6 /* http_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F3AFADB3282B8FFDD3011FB9E55AEA /* http_service.upb_minitable.h */; }; + D1DC337E9A1C4ADE48E5B6E94FA5A544 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F082A39F31A4E6A3331FA63618C6307 /* context_params.upb_minitable.h */; }; + D1E0373D3A9BD0CFF6F8FADE57A6CB9F /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 1452B3AB7962B019C9F9B8C6163EA327 /* pollset_set.h */; }; + D1E448FAE59F756F0FEEECBBE6730274 /* cel.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B8CBFE239901E1B90BAD0EFBB832E1 /* cel.upbdefs.h */; }; + D1EBA293CC6796E1564F1F44AB094F27 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = ABEE231E0FA1293782F34A562383635A /* GDTCORRegistrar.m */; }; + D1F852F53DB1F55A0CD35B01E8EC835C /* udp_listener_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F84ED7EDB9DF8129E6B25DEF716256A0 /* udp_listener_config.upb_minitable.h */; }; + D1FB6A3BDF17009CA382F9C3A92AB8E0 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = CCC65F366C366ADA7C666454E2107E16 /* xds_override_host.h */; }; + D1FC1084B33B5C50FC34A600DB14F7F6 /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8C53368528E1D08E87BF315E0E62CA /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2024CA94C6DF488AFF9BBACC53E6599 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5355BD7231CDC743BC861A50BF89F889 /* atm_gcc_atomic.h */; }; + D215650C87482F3C42909B63407BC1E3 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE1152DA7C2F322D2B7FE91C5F7605B /* match.h */; }; + D21B6A10B9BA85102C0515B790B690EE /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAC89160C738AE121B21FA17F172A5B /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; + D2212C3126F05ECA9BE8D006B2EAD1F2 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6CD5950625AD89F0951A5DF5419AF859 /* zipkin.upb.h */; }; + D230B586F92716A36801E0F042EFDBD0 /* address.c in Sources */ = {isa = PBXBuildFile; fileRef = EDC7B769ED1466A91B189239BB4BCF96 /* address.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D236849CD174D19CDF12BC1D1B5264E9 /* FBSDKUIUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D1336B90AA46E6EEA0AD1D6AA5C566 /* FBSDKUIUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D2376B1AC8497697EFD429719BFC3317 /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D137FB3AF6139D69165FC7696C5291 /* grpc_server_authz_filter.h */; }; + D23942E57486C5A5E3F2C431DA065528 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EBEDA4A1499E16A91EAB26F29CD43898 /* opencensus.upb_minitable.h */; }; + D23B55CA8468CBA4D4175AE4CE26748A /* max_concurrent_streams_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 257AEBFA1368B4BDC71BAB1A10C9DEF2 /* max_concurrent_streams_policy.h */; }; + D24DAC36020D2CD3C47FD10A7EAA6E58 /* service_indicator.c in Sources */ = {isa = PBXBuildFile; fileRef = FE7CC18EAD7594DCD800DC1CC655E89D /* service_indicator.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D24F202ABFF6FF8B7AC2A937EEFBBFD9 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AB505BC7562071B7B9CC81FE9B84F5 /* sensitive.upb.h */; }; + D251FF0657768A54236B095FEE44780A /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28365A34EEA0E45D3CC79B53D470E11F /* grpc_method_list.upb.h */; }; + D25722CE90E0A8D0E5E2DC267252A40D /* accessors.c in Sources */ = {isa = PBXBuildFile; fileRef = E753A443D97203CC9242EDA5881B33DB /* accessors.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D25ACC15FA47DAA2E31460CCC1178DA0 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 2E61AAD13DABA426E29239DABF90F6B2 /* authorization_engine.h */; }; + D2684920588FDB9ED68F8B656BDA6F5A /* http_uri.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B15BE79BA16BFCBFB4960B2F4B91A60 /* http_uri.upb_minitable.h */; }; + D272D683198C959218874F36F97A748B /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80112EB2D32E874D28690BF2E0C2F18D /* extension.upbdefs.h */; }; + D292466338CE0A27B3B0A7D41065E4F9 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6012519A575DDA6E63478A74D84DF19E /* iomgr_internal.h */; }; + D29520BC3CC0A932088ECB6AE814E06C /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 9644B863DD73F84044058164F29CDC01 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + D2970B79BFE3985DDB7B16212ACFEB20 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C08CD14F186878A5DCA809188A153D9 /* http_inputs.upbdefs.h */; }; + D2996AD7D96FEDA7B2D9EB0F8189495D /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CC801DBFA3324D1B3C879E4974AE65BF /* address.upbdefs.h */; }; + D29F8BC76F16AA83208EA4684005C9D5 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */ = {isa = PBXBuildFile; fileRef = DD5305D831120E3D2D4D914404824AE3 /* dns_resolver.h */; }; + D2A846DB4797C5A00212C2D0FD53FFBC /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = ECCC3FFDF2F272409A02D483A61BCA16 /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2B254ADA4F7C02652B4F80EC2DDC1BA /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC4E6DF5FA6367DCB929C8578F84FC7C /* cidr.upbdefs.h */; }; + D2B72FF26F57B7C93FC475EBD97963CA /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13E27735B6BC41DD31AD37DB0B55EA4F /* string.upb.h */; }; + D2B8FAEDC9AAAFD0BEDB22C37C3AFFF0 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8255E0322A42BB9AA4EC784CD5D6EC87 /* config_source.upb_minitable.h */; }; + D2BCDE1C1ED9319E07896018C3D3DA3B /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F04F413CFF2C63257AA42D87BBA8EF8 /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2BD11A7A1DF4D2AE4E3C0CF6D333729 /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = D362951DE6C3CDFA6F7EB8A6BD777F18 /* file_def.h */; }; + D2C0F724F6CDC268B841F6A79E3D426A /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = B16E348A9C8869BDFE6E71FC6DB1CA82 /* utf8_range.h */; }; + D2C1959847AE4A8FF8BF9B63DDAA489F /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = DA815DE1E28DDC8928ED907232606E3B /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2CC0EA1CC389B445E77583AE99F99AF /* resource.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBC2372B5450327DEC77868E0BA6DC1 /* resource.upb_minitable.h */; }; + D2D6443ED270A8E048244CDF711C391F /* FBSDKInstrumentManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7145E3A7AD229EBAB82CB37ED1A6906F /* FBSDKInstrumentManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D2D69E2E6A98EF837948BFD242728632 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACE367D4E244F8C4050955061711340 /* FIRDependency.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2DFC21C03FCD308A4F70216A321482F /* cluster.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 211B8A2B9BA047B29DF59DD429C87B06 /* cluster.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D2E48ABACB5B0D19C59D3D11B7651C53 /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8CC8F53717C02C96DE8A5C534716DE /* server_callback_handlers.h */; }; + D2E6A28AC37053CC06F54D9E45410965 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 738289D53F6247210C3D15FF689CA49B /* migrate.upbdefs.h */; }; + D2E92DD05F3DFE9FBC121F5DB0A23689 /* FirebaseCore-FirebaseCore_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */; }; D2EB1E6F3671E397DA1CCE3F45521A4E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - D30E89416C503A5B3ED68F1231542891 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = F959E6F318B889AFE54CB76494B5AE42 /* wakeup_fd_pipe.h */; }; - D3150DD067B8093DA3F727D7754627C4 /* stl_type_traits.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0D066023D2E48D2DBF2EF91F6A75BF5D /* stl_type_traits.h */; }; - D3323708EFCA11DF2BF97387422C6C2B /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CF92AC56140F7C99E3B5E5D2421668 /* health_check_client.h */; }; - D333424094DBAB2E28EB22188E06BF33 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 94AF2DF11706D6F620DA9BB5B1D30F8F /* pollset_set.h */; }; + D2F3789EA8B03808E81E400013B989BE /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = B06F6F0D7A7E0D04E1257CADE292FFC2 /* spinlock.h */; }; + D305488B9018034DEC86E338A614549B /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A6CC05617ECD6E34E04312E1AAEAC22 /* route_components.upb_minitable.h */; }; + D30F04E1E0B8F7EA027CACE3799F79FC /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = AE918E2631835018BD3E2ABD906C2C13 /* trace.h */; }; + D30F37B7ED94BD3224F2A30CB41B00ED /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C053F8B0FF93398C48BF2A821B149C2 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D31CB91A192A11236B574C0E582079A1 /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6561745C35AF844EC71D3C9F3B1734 /* enum_def.h */; }; + D31DF18232A7746F0B54F46428AF8BC4 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 38E53FA9C157518D5D05304408113006 /* regex.upbdefs.h */; }; + D3205EB17F01C53446BECF642D153134 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4D963ED9744ABD410CB5519C2B240FBE /* bin_decoder.h */; }; + D3246E4792A7C8B424E639A44C2B3A49 /* event_engine_client_channel_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 57508E798AE201B71545D4D978DB91A5 /* event_engine_client_channel_resolver.h */; }; + D326D5C7841BCD373A43CD15E3193DB0 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 558852DB9B02D89322F08131A3B5E5E2 /* round_trip.h */; }; + D327C180F5FA2AFC0A9F92976B18EEEC /* load_system_roots_supported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31B730ED9AA33F3D1DFB8AFFCC2F0BA1 /* load_system_roots_supported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D335E8A4C1848833EFB797E63BFDBB59 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E13F55783D3C677A889F2CE0921A955 /* metrics.upb_minitable.h */; }; + D336805C1FA2C7BF8A717B0DC05CA1AE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6EF1EE535D74D7D05D1AEF4493DFB6A5 /* ip.upbdefs.h */; }; + D33CD93F8D6808DC0C678E0D3EAD7B32 /* FBSDKProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 9040B6033B9738A1782620810719F33A /* FBSDKProfile.m */; }; D33F8516AAC7AC1435DCB095BCE65681 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DE9E888096AF19468CED030FE669832 /* CFNetwork.framework */; }; - D34431461CF05780FC9937CD5800DACA /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = D21A4540798184626B9B40F6B30F0897 /* binder_connector.h */; }; - D3540AC12388CCF41C2DAB7B0AC29B56 /* ssl_transport_security_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 471813ED1736D58049F8B203826F26E6 /* ssl_transport_security_utils.h */; }; - D357C042793A2034C274C105300268E1 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AF1F27FF94ECA2A39C0C52BB780388 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D361BAE278B620A031CC6AD5A4D4736A /* client_channel_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F3DC42DF29831C5957CA5D772B8ED7A /* client_channel_service_config.h */; }; - D368E6F70C5E6998548A72E65F92432D /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772A79452FFE73F485D40C9FBEEF4B66 /* Validation.swift */; }; - D36FFB5D301CEC9255FFE6DDFBBC136A /* charconv.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = EBD65106EEA4E3AB2396DDFB11519FD5 /* charconv.h */; }; - D373A0105307A3A516731BFDB2BED7A5 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 15F8E8B4545CCF65CB978AD2BA66BE6B /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D376D43056E1D1447D651C2752CF6F12 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 95EAF310EDC699B2DEC3E3CFD017FBE5 /* timestamp.upbdefs.h */; }; - D3854CCE1DAC9AD4A075C06C0804E0E2 /* non_temporal_memcpy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4253748157F0B01577CAC8A47A9F6181 /* non_temporal_memcpy.h */; }; - D39C9BA0AD0E7D7F0114185FFB474862 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 3803E9273AAA263DFEB83C3488D2CCE3 /* extension.h */; }; - D3B183E7849F3FF506D37ADEDAAA16B0 /* call_filters.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 843EF13431F0B75109D89CED49A02D43 /* call_filters.h */; }; - D3B7E18ABC22FF1E2566747BE58EEA94 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F7A5EE5AE06EEAB1F1385FECF62880E /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D3B8DD44A5F21D3F45ABC1B8750CBAC6 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = E91686146DA62C09E58F11CEC5D16C62 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3BF739CBF30892D5991160E4273A82A /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F6FC1106FB1337EC4ACA9437A1812F37 /* wakeup_fd_posix.h */; }; - D3D01C5B0D4276D94B99972A6E8376F0 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 7BA0C9ECD27C268A7F8EDFDEF0C6E104 /* altscontext.upb.h */; }; - D3E0C61638E345F59E28BCB38D7A6C17 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 69D8952A1C95830A85712A8B279C8B74 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D3ED722B557209F85E6DDE69413B2F0F /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D066023D2E48D2DBF2EF91F6A75BF5D /* stl_type_traits.h */; }; - D3F13DD3059B54DF4A28E973ABA616AA /* json_reader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = EA39B9B329BA65B9F9040478672FB0B3 /* json_reader.h */; }; - D3F8178DA5568062B582CB2B840C6FCA /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9648F8D323227996A12459D40FD398 /* port_platform.h */; }; - D4073BE5B393980F331A1D2C716E40C7 /* grpc_method_list.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = EF54BD9CCF2460EC04DCEFFCE03B1754 /* grpc_method_list.upb_minitable.h */; }; - D4165B893C1E9EBC424D292EF71EAB3F /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5E9127F8583D9C86580AE986E2BCB4 /* spinlock.h */; }; - D4184DFD428C74B5CD8D5EC896603A1E /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 59E1DE391ACC93A1EEDDF5FCE2C005A2 /* slice_buffer.h */; }; - D42181E5E77878D898CC7BFB9425DA07 /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9960819D5E5FCC49028377207534FC /* casts.h */; }; - D423BEFA7C50F9A2F0A459645FE12DE9 /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 475759045F39CC973CC54DED35DAF5FD /* google_default_credentials.h */; }; - D425983946AEBC476AC2827990ED9EF6 /* crash.h in Headers */ = {isa = PBXBuildFile; fileRef = D09E54D4F9460848903B23168D718F86 /* crash.h */; }; - D4329CA26C13D3D0BCDD4C94785D82CD /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 857E5446EDA11C05E4B85AA17EF29A7F /* resolve_address.h */; }; - D439A05EECBD22EDD8C5D0B0CD8214C9 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = FB5CDA8F44599B1283B45828F31AE472 /* frame_handler.h */; }; - D43A8805C6C8BF8DCFDEFFDAE37D6B3C /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3567D551D26394B659FF290349BAA6 /* iomgr_fwd.h */; }; - D43D4982400736D3EFF06B025538BC7C /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FA520F8F121C04BF4F0EE496D9D9AC15 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D4400CAA9BEA8E80D728FAF60FBF2CA3 /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BBAFF46B591784557A85FCC9C11EE24 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D45143C34BE58F8F031CF0094CBA72B4 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39967DF59374C522B5ACCE4ADF0D5B2B /* stats_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D45A61A94B1203BE7FE4548FCA4321CB /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6476AD094CF47FF1203F8F29398CB510 /* FIRStartMFAEnrollmentRequest.m */; }; - D45EB4CED356C7E3AF5EB67B32C18717 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = EC806D78A55218165977E673D2892644 /* completion_queue.h */; }; - D464E218C5A174AFF74E24C10BA6502B /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5EC2FE495A27F500B3C2D60C4C5A8DAD /* orca.upb_minitable.h */; }; - D46E93C603BB1C8BC1BC29AF29E256D8 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 82F9FCD0EEB72F6C2050E16B13208F72 /* tap.upbdefs.h */; }; - D47D6360A2FDD9AE70AE22AA77E3B96B /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1120696D43B3ABE7671A077E39486C4F /* retry_filter_legacy_call_data.h */; }; - D487DAD9C3B7A40E1E9CB718CE0A49C8 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = C2E2BCCFA2B7BCB1FCA78A5DD204A9F0 /* stacktrace_emscripten-inl.inc */; }; - D48DAA94712074CDA11FC3D07DF9ED9B /* FIRGetRecaptchaConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F64AACB0411B5654BE6801159074B1 /* FIRGetRecaptchaConfigRequest.m */; }; - D49005B479AF357777A695ABE7CD8765 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D9FB45BFBD628C64E9D8D6D1A6831A /* channel_args.h */; }; - D499B4892822A0D436BA8041F82CC9A0 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4077A31F58134456FCE916A1E18A3B /* transport_security_interface.h */; }; - D4AB832C628B7EEB44B07EA2DE049094 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FECC76A9AC9BE86B3978BF23831C2B1C /* datadog.upb_minitable.h */; }; - D4B688FAD2FFE03F08A4F3CB20AB9174 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0070744901C1A1F58276448BDEDDBE /* utf.h */; }; - D4CB0F94C2730BB639CBCC32567C6645 /* byte_buffer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2A614AE73ED85F1962EE8762770F904D /* byte_buffer.h */; }; - D4CCE7B6163AC0000F8D2CD50050F3B3 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AF4FEEC4DC2584C3B804DCFEA40153B /* service_config.h */; }; - D4CFE7A8954F0E29633CD8E63DEC4B9E /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B74392A73E6CF66B0F1D2B4C14D67AAC /* iam_credentials.h */; }; - D4D7A6BD45A7AC8492A115DB2FC0AC8F /* Promise+Retry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F1A988482557E7576BD616498D76A62 /* Promise+Retry.swift */; }; - D4E03BE6A56027B616BE425D6E7AC1DE /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9D5414C7BA1712802DE6276857E39FA8 /* descriptor.upb_minitable.h */; }; - D4E70286ABEB359908E89E4B1211E51D /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CA7BA7E8F0F29BE1AE69E857AC9D92F /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D4F2707715B6772464D859A608F22E9A /* front_binder.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0CEEB958A67B6C896ADC0152A69919BA /* front_binder.h */; }; - D4FA5093BA6325AD7E6C54145228232D /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC813092B90CCDE3DC10D49F712B1A8F /* _ObjC_HeartbeatsPayload.swift */; }; - D4FCDBAA8BD6478A55145DDD5D19B9D8 /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC71C7FA9338B0E9E41CC71F6216EDD5 /* local_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D513E9042F71DFBDF51838B4AE9DBA0F /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1FA17F033CE40AA35A1AADE2A3809091 /* certificate_provider_store.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D51B1917F8B84B15869437AF09D60D83 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A47160F3FE49EA34A3B1DC3D08AFA39 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D51DBB7CCC8FB1C2EBA794DEE4610A21 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E6243618FC9FA43A543AA048CD82599 /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D526DA2A48660023D8F9994148B8AF7D /* quic_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D6004D8110BEA118866B42303DC2FE3 /* quic_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D532146FB9BB372A59EE9BCC829BFD4F /* grpc_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 01A98D5E929E8B3A5C9EE23CDC83C6A8 /* grpc_posix.h */; }; - D5385BA68CDE48B56B6B91B894B2C003 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA572C6A388CE8ECF77CCE4E0A371CA /* write_batch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D544F4ECB2E3258D5E1E20051279EF68 /* cord_rep_flat.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 38070771B95D10D76CCE305B763CC9EE /* cord_rep_flat.h */; }; - D545F7264FB40E4BBEAA48AD0B463A19 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AF76BC7EA47FB3EC4BC8C3488952B00 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D5589AE61AD7439EC0D511E6E3F29865 /* dynamic_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 87C21BB6766A21DB1DF2C3CC0233101C /* dynamic_annotations.h */; }; - D55DCC2D6CE5F5E51B8FC16AE0BAD968 /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = F8EF10C8F869DC0EB43E9384A3FFB56F /* checked.upb.h */; }; - D576040CBE5F1549757D2D9E51737AB8 /* FirebaseDataEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4B76B6D91AC609D35C9043CFAC69164 /* FirebaseDataEncoder.swift */; }; - D582A3D36D8F59202CC6407F164FCF1E /* sha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F41697C1435528F925010EC47DDBD28A /* sha.h */; }; - D585AD9E06E3913F7F4B0B2FA02B2FF5 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 6B4A77F016715A7243403A4C77D95820 /* load_system_roots.h */; }; - D59067ECDE5F0E18F3102EBF9F9711DF /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 75511C0F7DC0A923114F1A5E40B39976 /* latch.h */; }; - D59A77AAF8C7430BA51FDEF464F79C70 /* cycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DE3036D31A6996DF8233522041C5DC49 /* cycleclock.h */; }; - D5A0C617B1A729E3B23D0AB1A2729F98 /* marshalling.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9A4A0E96E61F5C61055EB6CFE63385 /* marshalling.h */; }; - D5A26F973C91C03C129367CDF3E7AE92 /* port.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 81275932C3E9417B4BD866B7A67873B3 /* port.h */; }; - D5A6D65C3DB789F60F65F4279E9063C1 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FF93CE6164A76770933CBFEE9257304C /* systemd_utils.h */; }; - D5A834CB12D2975232CDEF40E3F1CB60 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3506714A0619609E55545B209725CAEE /* circuit_breaker.upb.h */; }; - D5A8577653E9E44EEF5D43BBE43DB346 /* all_ok.h in Headers */ = {isa = PBXBuildFile; fileRef = D0401649B70716E36EA103889818832E /* all_ok.h */; }; - D5ADB48297C93137F94B82E23A4EE80D /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 518AAC019D56B05B910D626E6E5382DC /* address.upbdefs.h */; }; - D5AF822AC42AADCADB7F3A6DDF1E78FF /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F61F5D4A65DB866E080708B70F24552A /* FirebaseCoreInternal-dummy.m */; }; - D5B8A9C62D30FA25F09D0D530A443E9D /* xds_audit_logger_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 910ABA876E50FED1CC9291227650130A /* xds_audit_logger_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D5B92D71D77CA355B17EC1422479A2D6 /* skywalking.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 34CE5C57249F7C5B6A0708B47AB0F04D /* skywalking.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D5BF8440525E16D2BFF52C41564AFC68 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A19E40BF715C1D2F2C59E09C2BFB16 /* config_dump.upbdefs.h */; }; - D5C10A4FE015A4CEDED939911FE9940F /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ECC03D04C752055367014F5DFE5681C4 /* listener.upbdefs.h */; }; - D5C80FD770808077AD440FD6AF428896 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DFDDAA0DFC31F08BF744C12483DE6448 /* filter_state.upbdefs.h */; }; - D5CB3A4DAE2DEFCBBA1AE3C0033611EE /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E54E90BC36D7751E2B731CF0FAE359 /* udp_listener_config.upbdefs.h */; }; - D5D73502EBF1F5590A586FDBAF939B7C /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75280673915CA37BD7C49EDEFF7622FB /* load_balancer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D5E3B17E1CE60482F8AB611042449A8B /* backup_poller.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 37D936843959029F76FDA25AAE5EDDB5 /* backup_poller.h */; }; - D5E926839651DCB1FB7BE01E63025516 /* cookie.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C5FF9F2B15DA046552770EA5A24700 /* cookie.upb_minitable.h */; }; - D5E97A0561B93B00C1B4DF64443F306F /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = D586F0CFC605E254EB03F9B125C920A7 /* connected_channel.h */; }; - D5EAE3AD2F2159B294BE4AE2BB54653E /* def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 576625AFAAC0213ACAA8763C73C2B58F /* def.inc */; }; - D5F0C07047BF03E7612D76E35D8EDCE2 /* server_info.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D44E6BEB97300A04116B4901D6B6834 /* server_info.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D5F4938733CCC7308CCA90B416B38741 /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 540CFC326E8518F744DF9A930D017993 /* hpack_parse_result.h */; }; - D5F816F9BD415916911102797DADA7D4 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A99E80DED3AC3D1D646903CFD4F8EA2 /* trace_config.upbdefs.h */; }; - D5FC0B5C51EEB54B2C5ECF48728BDFBC /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2D738C8BFAA82728ABDEE46507B53A2 /* cert.upb_minitable.h */; }; - D5FEB385403F9636F0385F6DD668CCA2 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED8EAC0344E6545E4A41C6E2052250DB /* cookie.upb_minitable.h */; }; - D5FFBF589B6B53C20DC7807ABA8A62B4 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC9163E271E6243DBCE2FD302F096DC /* interceptor_common.h */; }; - D604B0611D882AE9AB87B56DEB035FD9 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A647D9FEBBD5B09EDE48EF529739692C /* zipkin.upb.h */; }; - D608F01011DD81B0725EE70A127EDC17 /* TimestampEncodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4881A7D2577D907EA8E4A60CCE2AB58E /* TimestampEncodingStrategy.swift */; }; - D616F224D6C37783B777A289A695E652 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 94161B9F7C680CDF87C6CAE625E4292A /* endpoint.h */; }; - D61EDF08482C94DB0E7107F78D39AC98 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 69B9F81F195DA892045916E3D81474CF /* stacktrace_win32-inl.inc */; }; - D620C719357382D8AE64DF994F5C52CD /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = D36BBFC80EC962C2079929ADE18A65C6 /* tcp_server_utils_posix.h */; }; - D6238F43BD0D68D9937C71C775470940 /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 260206AA12B46A154D59BBC01F2E6054 /* ssl_key_logging.h */; }; - D6402C2DA2BE6E034B14EA790B0EE0C0 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 2359CE57FB3A76C331360B404B212E72 /* api.h */; }; - D6467EEFEB379DB3BCE26442A2109EF9 /* xds_dependency_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5049A699ABF27C3CEA148EB7156B777 /* xds_dependency_manager.h */; }; - D664F924D020C92BD7FEA852865F7CA9 /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA926612EEE058989A060AAFA23262C1 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D66688B11475B4199D11722091F2555D /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA010FF617600E09D21D27BA7ED3B8FE /* clusters.upb_minitable.h */; }; - D66CBF1FE15430A22348676B350D80D7 /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 97DE95FB9C43FCCAE5FEB1742515AEB1 /* http_tracer.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D6713489FF6C58BCD0DC835458A3287E /* logging.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = C0D7761792AF2FFCD70449B8840C6F71 /* logging.h */; }; - D6732EF87F7F82B248C25992923DC176 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A7D0AC4B0CD11D6DD88E78AEAD7B974B /* channel.h */; }; - D67AC290478B54C919E08F7D0F29704D /* nullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4B1721405C4AD0A3C5779AB4CD08FA /* nullability.h */; }; - D68155660E81ED1CDC819C5E591390CF /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = D68CCCBF909F5F162AE0783373D3FDF8 /* tls_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D6827E4A70D99F55EB88FCF44BAAC9CC /* legacy_frame.h in Headers */ = {isa = PBXBuildFile; fileRef = DC87AAEF9B58756A4CD02B94A5EDFE0F /* legacy_frame.h */; }; - D692F59F073B7B59D9DF4BBCD99F70B2 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB099864F7029C650924575A502C0070 /* server_config_selector_filter.h */; }; - D69E22854B58B55CB8851D161B029499 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F1D48A2EA4A940A6C3CFF7D9C4B894E /* call_combiner.h */; }; - D6CC6657C85A30BEBCAFBAEB31D1C585 /* obj.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E49B52C984BBEF7127FFEACC3F7AEC7E /* obj.h */; }; - D6CE469C7187855B41111CC3DED8BB3B /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23304D6E7EC45891E214F943BA03BFB7 /* client_channel_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D6D4E6F5E342F552FB8D343CB2677703 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = 38070771B95D10D76CCE305B763CC9EE /* cord_rep_flat.h */; }; - D6E67C4E612CB8A31B8BAEE6BFC3684F /* event_engine_client_channel_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6093291C518985F63E4AA3711916B0E5 /* event_engine_client_channel_resolver.h */; }; - D6E9E268854520A1A40D2AFBA8E153B1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 576B73EAC7D5EFBADD55DD0574146E92 /* internal.h */; }; - D6EEBF39A800AF949C759A66890115F3 /* delocate.h in Copy crypto/fipsmodule Private Headers */ = {isa = PBXBuildFile; fileRef = 491ACE41D3FCF43024B6A01EB4D87312 /* delocate.h */; }; - D6F1472263A9719B9192CD1E43F123E7 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D2B39DB713BB9C293A72DA6BECA38C /* local_credentials.h */; }; - D702ADD515173904DF6EC5415DC6A19E /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07E7F3F3C504F7C27F38FFCF5A2A19A4 /* inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7042329EA915BEC63F01A13A2B9A313 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCF12F06E22F7FB1B9CB3B580BFAEE5 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; - D706E200D036B86CC7BCDABFD7367B33 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 863486688E8195BC916D92EEC7B05DE6 /* call_op_set_interface.h */; }; - D707C4D1C74974B6C270C581482E21B6 /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A16214B3F2615E0BD65AD632713FB2 /* reflection.h */; }; - D70FBA7027CF8FD4D15DF8BDCD20908F /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C4BADED359B92CEB1FB4A1107F7B4A /* secure_auth_context.h */; }; - D715D5DFFF720D8D7636D8EB2824C585 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 87CEBEF68E3E5A09668AC13F02B7F3CC /* python_util.h */; }; - D71602ED70B76CC8E5052623DEE9AD0C /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C25108AE849257D59DB306896F9F7341 /* common.upb.h */; }; - D721F60920FCE9AC07091E0471F4CFFA /* typed_struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 55C37B4EF62AD0E82093212661B674D0 /* typed_struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D723B8511886C835C9C0A5E026A02479 /* e_os2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0B4623E4C9A818AE076636BC7A739BC3 /* e_os2.h */; }; - D72816B17B3EC02926F2FB69F3C24C7C /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = C0EC18E2ECC9049C07F6BBB45E18E18D /* enum_value_def.h */; }; - D72AFFC7335BDC220172C6BEF4E0ED68 /* channel_stack_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = EB148091F7419ADF44FC8C732666293B /* channel_stack_trace.h */; }; - D7322BBD864057D95BEDCCCB2667DC49 /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A0173354CA5DD63783847DAB619B51 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D74B4606A3A125F0DE18966D2C71E07E /* charconv_parse.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AB8BE93703FB73093C71D82F6A7D99AA /* charconv_parse.h */; }; - D75259896060A1CC5F1E5AD5E6E4E0DC /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBED2E07AD729D10BFE5F3E807C05AE /* timestamp.upbdefs.h */; }; - D753C0BFDC5E3875A6A3AE5038173025 /* tls_spiffe_validator_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5845B2B48720F4D59DC841FEBAED9434 /* tls_spiffe_validator_config.upb_minitable.h */; }; - D768B9B5D4B7C5FD08B82546F6902FA0 /* domain.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC8BFF10CE26C76B9D6D73028D7B5BB /* domain.upb.h */; }; - D76D67D7E867ECC22730CC0CD535DC9A /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6073E521570552A997C9479C28FA3A /* handshaker.h */; }; - D7946F430747A3568B33E8AD77EA1FB2 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = B189353CB9C3D3FB4B1E9734F31BEF48 /* nameser.h */; }; - D7AEBCA6F5E2F9A447C98C612FACB41C /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 5623B06A4EDC26221E89232A0D8FB8F5 /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D7B692D7AA60AD076D7F38A7FE51F73B /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D45F71B842BB18F7CFC3C66FAC0A1EAE /* status.upbdefs.h */; }; + D34213C2E56D46043E21EA83C9DAB6CD /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 00592B8AED1D500F58C5677BAA38DCFC /* client_interceptor.h */; }; + D347DD14CB7D49AA67C0605214FB92D5 /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 88ED68FD189C5A9AA090BDBECE6D8F39 /* service_def.h */; }; + D355B44DA26425283632A4D2562DAFFD /* commandlineflag.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D116A2C7C9284BE01F6BBE45A35BDB7 /* commandlineflag.h */; }; + D357C042793A2034C274C105300268E1 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD8A4AFDF26893BC8AD56BDC5D7FFCA /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D35AF0677231584ECFE9C05A147AFF58 /* FBSDKAccessTokenExpirer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D33271352F246F58E08211CF184EA68 /* FBSDKAccessTokenExpirer.m */; }; + D35DCFF6922DC2481A472159A87E5D33 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 5164EDCAD404099E478AEDD48452B0CA /* security.upb.h */; }; + D36170501A09762629A03251E87D639F /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4031E3A7FDB0DFE95508A132581BEB66 /* stacktrace_aarch64-inl.inc */; }; + D368E6F70C5E6998548A72E65F92432D /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1E8B23DCBA9E2C9BEFDCF991A046718 /* Validation.swift */; }; + D373A0105307A3A516731BFDB2BED7A5 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 843C3F9B5F6B4444979C3EF59F44F392 /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D37F01F86CA8321891F471EC200F066A /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5A513F78FCB0003B74D0D1DC98FF0F8C /* pollset_set_windows.h */; }; + D380A66C962F3FFC0421F5663849BB8A /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFF296C082A4CF56DD53C651A83C625 /* cel.upb_minitable.h */; }; + D38C7259994EE13182E990791F8221B1 /* arena.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 6B12D111C7F03541CF1D184E640569D0 /* arena.hpp */; }; + D398F273F40A1FEA2C75285BCE74AA83 /* tcp_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6C252D8D7A9A4F38073D2386A095BD /* tcp_tracer.h */; }; + D3A120496B8CB982C706A4772B176B5B /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A472011BC6B27F81C11222DEA56232 /* security.upb_minitable.h */; }; + D3A58634539EBF020B8F9D0CC045150D /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = BED96D4B82C8DC0E276CD5432133E028 /* status.upb.h */; }; + D3B2D57E3FF63DAB326C3DA64F2FB8AE /* FBSDKCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2812A649AD4598A91470EF3816E9DA55 /* FBSDKCrypto.m */; }; + D3C327398F6C0ED57E5D56268183C4B8 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 1A73A94AD93901D93169DEC72F8803C1 /* call.h */; }; + D3C34285AE121D8DACE536B451924641 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC236229B1BC668A1C910286757328CC /* wrappers.upb.h */; }; + D3C85FA77AF22D26154B30994FA59B92 /* inlined_vector.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 400CB3556B9BCCCAB0C82DB5F6A34E2F /* inlined_vector.h */; }; + D3C8DCA01E5F655F29EB6E6BF1C220CA /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = F236DB5BFC9C240E86EBDDA1063EF77C /* int128_no_intrinsic.inc */; }; + D3CACB2EAB5858B19599BC77A26E1299 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F67AF66A33960CC08FBA35FC75CF6D /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3CBE0562205C911324FED56A5993DCB /* FBSDKMonotonicTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 41DBED7C53913C72269396A8DE1EFEB5 /* FBSDKMonotonicTime.m */; }; + D3CCBF8685B47ACCD90B442C0F9D646B /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A85CEB4C05814663B7BD46E9EB42C59 /* retry_filter.h */; }; + D3CD758FC8482CB8D6BDE52F4F8D8976 /* FBSDKTimeSpentData.h in Headers */ = {isa = PBXBuildFile; fileRef = CF5BECE2202F1A4D04B33AB226D351F1 /* FBSDKTimeSpentData.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D3E0C61638E345F59E28BCB38D7A6C17 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = C2C4635E572DF493EBBEFDC8D634FAB9 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D3E28B5893B67B14DFBC4777C6E79C3D /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 838A508144F5F5F5510DB17F78294CB3 /* socket_option.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D3E28E594AA780787547F88CD687CEB2 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A03EF837EB1C7F14DD25EE09A371DA6 /* xds_resource_type.h */; }; + D3F08A2C213AD4F039B0B3B1A12069B6 /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D93AE3E59D5D107E22F0CB1D0717136 /* grpc_method_list.upbdefs.h */; }; + D3FC523B08C6955BC5CB1221925D1340 /* metrics_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B6046249BC0E341B38F6E557B185F47 /* metrics_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D3FFDB1FF4D034A7649400FDCE2733DF /* type_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 11CA2CD28D5ACC35E48EA30E0D8417E8 /* type_list.h */; }; + D409DA5E733A1C5C4D83A8C1913A68FD /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 185F402C6BC0DD91C9B9C49ACE22C4BA /* timer_generic.h */; }; + D41182FAAAE1FA5BA95DBD357DCE0942 /* server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2A6F1DADD0D28E1532E5C3EA32770BA1 /* server_builder.h */; }; + D411ED90FB87897ECD9A5BB89BB5F862 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5944D50D48A5B70C2EC5D4F4860B1753 /* socket_option.upbdefs.h */; }; + D41A098DB2CBCAB0D672CFFA3E8913DD /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EEB8BB439810112811EA1C236A7FECDD /* status_code_input.upb.h */; }; + D42442DF728D80011C528A8137960428 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6B95836A732CED86B229E4C8BA7904 /* wrappers.upb.h */; }; + D427D1B4FC839219103D9209FB52B302 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = C906DFE8FC2D0D80CFD86DE5805311B5 /* http_connect_handshaker.h */; }; + D42CA60747DADF34CBD2A03040FE9DD6 /* channel_arg_names.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF6A40F1DDD9BBD45AF480AB91F235C /* channel_arg_names.h */; }; + D43904F6E2AB846A8A871D2C27B27787 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 3D567DCE6E9C1C89A9563BC972C7B849 /* slice_refcount.h */; }; + D4566403117E393CA77D516E4B86127A /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA111FCD298DAED66DB30BAEC77D358 /* versioning.upb.h */; }; + D45A61A94B1203BE7FE4548FCA4321CB /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 185EF3885299E84FDC0E27B2E3629D9B /* FIRStartMFAEnrollmentRequest.m */; }; + D462CDFD509146F17BB447D9E93AA0AD /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 167D26D26AD14700DD26C2294FC5ABA5 /* backend_metric_data.h */; }; + D47046A4EF1EE17D0CE0304CCB1EDEC4 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA19C5B156FBB9D892D775A3119504F /* path.upbdefs.h */; }; + D48466AB56C6BA4BA7FA9C302B9F8FDD /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A2A376DC339E1E89949C89FE48CCE3 /* certs.upbdefs.h */; }; + D48DAA94712074CDA11FC3D07DF9ED9B /* FIRGetRecaptchaConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F1A545B92E3E8A5E75F3AFE78198250 /* FIRGetRecaptchaConfigRequest.m */; }; + D4903A45946C8EFDBF767B59BB575460 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1477EC38E8AA88E3258DD94A83F6C69E /* fault.upb.h */; }; + D490B625FE2C14302407D1CA3E6EAF91 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5BD288A4F5A10D382D02744E56DB563 /* zipkin.upbdefs.h */; }; + D494C2B8AAABF648CFD58F1B3966C8E2 /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = C03D6A2FC817E8497DD79B57A3C63B66 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D4988D050CDB8D9CF04FCA6CCB7844A9 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 9CCBDBB5862F7BA31C167869B9102582 /* jwt_verifier.h */; }; + D4AF3EACBF056546DAB743E593EDE52E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 27913A040EB93EC3C26E75323DF67A2F /* range.upb_minitable.h */; }; + D4B57CBF8F2469662A632D51E1D473D8 /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD5950625AD89F0951A5DF5419AF859 /* zipkin.upb.h */; }; + D4B7E0B6023B977FAFE88EA10227C445 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AC3ED6353536A5DF3D9ECEFEB723C2 /* log.h */; }; + D4C81D8FD33D30F4959743D4543746B7 /* ares_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5D66C8153A679B6AA9C2132E3018C0 /* ares_resolver.h */; }; + D4CA94F4376F53492F4D84BF373E8F7A /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 21C4B2108DA657E892FD8F68220EADE4 /* any.upbdefs.h */; }; + D4CDE5D4A56C6FB701DF4008CC6544F4 /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D157C2A71894AA6B853DFD68C7F6A068 /* filter_state.upb.h */; }; + D4CE44B132581732A54A71937FA3DF94 /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = 32FAB22096D1C7A4B4E67189890D6E98 /* accessors.h */; }; + D4D84BEAD4354B172E34B2545C50D4A0 /* def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 6B00AA305068222D6811F33E949A9EAE /* def.h */; }; + D4E32335FCA2A3D0297FF0EAD3D3A396 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6EB9F6FCA0069BBA39F2F5D3180666 /* cluster.upb_minitable.h */; }; + D4E94B44CA86DFD05A3771F670CB1B28 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC8EFFB6CF341D91DC4C77CE8F899233 /* http_status.upbdefs.h */; }; + D4EA2DE1C7B15D665E669A5E580FDB0A /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CCD279258DE737C427441B3F9B2619D /* string.upbdefs.h */; }; + D4F657303C9870F31E25885C7C3D8B60 /* basic_work_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C831018E2E0EFBD4B5C4CE1E7CB043CD /* basic_work_queue.h */; }; + D5059D23F0D8C905654291BCDD2AC684 /* Permission.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9C258496BF8C1604C7111A7E75BEF30 /* Permission.swift */; }; + D514BE8E136FC282D5ADB7584CDF6EFB /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 85208430284189CEBDCE21D516EF8D2A /* buffer_list.h */; }; + D51B1917F8B84B15869437AF09D60D83 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 6002A089B676FF0363DF15FAFC7D4238 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D52687A981CEF4486F60361A531E0861 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0AAFD26089A60B3C7D47D6148FFAC3 /* GDTCORStorageEventSelector.m */; }; + D52B9EB4C0265AD75F880EE5A50E8FAD /* FBSDKAddressFilterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 47022611B1A165400CBF4AF68107E9EE /* FBSDKAddressFilterManager.m */; }; + D545F7264FB40E4BBEAA48AD0B463A19 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 47886FAA106CC5546707EEA12F421E20 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D546F6E45D7549418FDE15A54BFB0456 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1894CDE8AD4DE294E7F6A2D68FAE1C9A /* tcp_tracer.h */; }; + D549ECC8F5C1B7326D78582B8D261C98 /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 676ACA3C874F9632E32F1B35A7A4AE7B /* proxy_mapper.h */; }; + D55255E51FBDB22DD49576A26FE013A1 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 159391DFFF381F80A94841EE3E66ACE3 /* alloc.h */; }; + D55661F639BD37A04ABFF0C8F1AAC46D /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4E2C6E177D6275B34FBB0F0BE84D7317 /* subchannel_stream_client.h */; }; + D55FA7AF320B2AF536849345B4F267B1 /* listener_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D7119C95349CD0A60F24ECB2406792 /* listener_components.upb_minitable.h */; }; + D5607C72B10942F9E2430E5F85E5C9F8 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E87D057543D3280C5584FA3D0914BD6 /* transport_security.h */; }; + D5677DFB281CA1EAAEAFC7BCD968B391 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A1F3AFADB3282B8FFDD3011FB9E55AEA /* http_service.upb_minitable.h */; }; + D582A3D36D8F59202CC6407F164FCF1E /* sha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1C36572BAA189CD8738FA6D5BD6FABDF /* sha.h */; }; + D58E771C0613C6B3058A8F8541C1ACAE /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 64297F14FEA7F92252CE55D1058E9966 /* zipf_distribution.h */; }; + D58FE4679E8D58B623B4415EE3CCFA8C /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 952D4C0DDCA3A2DCB911AD81FE67A7E2 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D590205E6464E9785986C8CEECCFD7DC /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A472BB0E04C607F2BB82BCE2BB831A06 /* http2_errors.h */; }; + D594A2CA5F57C63A5F1E99DA9A567872 /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0C9BC0CEFA97B2BCE4371CF73BFE23C /* pollset_set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D59C31643E09EC985873B244121F26F2 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D4F6AFF5F1D643DB99E5387B7EFFB1 /* GULLogger.m */; }; + D5A70070DD997EF4068FA93740C13FE3 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 52B22D5089DAE6FDDDC3E87BB24B580E /* win_socket.h */; }; + D5B7A8747C96DA533B5E1D89649B670C /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA33E88F87DCD84E5775CB00914FB20 /* iomgr_fwd.h */; }; + D5C2DCE889B07C4151DC809AF0B91106 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C49BA4BB057EC9D7DB05389C53D1989 /* struct.upbdefs.h */; }; + D5C7373333561C49D1FBE1C25412B280 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 905DCAFFE0B75C4C4EB9D4983A0D798D /* rbac.upb_minitable.h */; }; + D5D9482F32783AA318C4646738A05269 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 98DCC09A432FCAED621D6F0EC0E69F45 /* PrivacyInfo.xcprivacy */; }; + D5DDF883A11F7B01224543F5C8F168A5 /* service.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F089F83C14CF8473FDFABAB4791149A8 /* service.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D5E949B5EF128A6895D4F9CEB3BE9818 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2EBC2372B5450327DEC77868E0BA6DC1 /* resource.upb_minitable.h */; }; + D5FCB28F82EFEF3A8E6F7524EC41D47F /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 404EF5EA2D5685B8B3668AF57EA55851 /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D5FE0889656E036F6D08AE773365BEC2 /* string.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E5231DA774E4B33B890A7F6F4A989B27 /* string.upb_minitable.h */; }; + D5FE6D4FA9807933E5E78AEE9EA2E3ED /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F5A7E4509EE584105C269C19B104BE /* validate_metadata.h */; }; + D5FF016FB2F4DD1EB20CC3B9CF3FB46A /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F996F03B33C74E101DB6B8E815CD16 /* cluster.upb.h */; }; + D607FEFF0E65A1B378577100AB62F07D /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D774BCF91E8AB89573309FCC930084C /* string.h */; }; + D608F01011DD81B0725EE70A127EDC17 /* TimestampEncodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAB9B18FEBF2295FEB35E707B645AD28 /* TimestampEncodingStrategy.swift */; }; + D60F8B2042E1DF2423ABD1B1313D1D45 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 03BC9B7A63117165EDC779CE94330EC5 /* lame_client.h */; }; + D615EC63231BCAA2C2BE3B5C0280D1CF /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8F67A3624734AFC3F0750D214BFCA9 /* struct.upb_minitable.h */; }; + D61C8D3040BEB98811C70E469EC4D692 /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 0F2AA7F598F51E25AE2913C4F2F3C100 /* windows_endpoint.h */; }; + D621CA0E3B25E7504D14BB9C5FFD7B5A /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 5743B5D7807C704357315DF22101F6C2 /* options.h */; }; + D62441F389B6CBF39837AA73A3B36BD5 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AF8F02067850A7B3435ABF30B4D7A1A4 /* xds_client_stats.h */; }; + D63BC45EF5E36AD510E9875400102F6E /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = ECFD3097CA6CFCA07921BE6F5AEEB485 /* server_callback.h */; }; + D6414D3342828588635DE5972F2EB388 /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 97223640056E39ADC758247D6A011193 /* migrate.upb.h */; }; + D6485A9D7F5C61E5139322C3E1EA6FB0 /* SessionStartEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20C44B5DB5247C04D4F75145D6FAB0BE /* SessionStartEvent.swift */; }; + D64AE53FC2B45625FEB89E5B4FC4400D /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE71F8BF69A179A366C9AC9CF0A686C8 /* common.upb.h */; }; + D64DDFE87631C70792A632D5297C7567 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8E9456E8A5747F89B9A8A69F93B2A16A /* struct.upb.h */; }; + D666E42466F53ADB6FABEDD60FA13A1F /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C5431B1053B69CCAA746A445CC077F85 /* route_components.upbdefs.h */; }; + D66CCDDAA4BC7A84FFA8E67004BEA893 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CF4D720930238207C2311F547ECDDA7 /* sparse_array.h */; }; + D67F265632D17ADF5158F442C7455522 /* cleanup.h in Copy cleanup Public Headers */ = {isa = PBXBuildFile; fileRef = DD8C640D62C3E6173C65B6EA63E8AB89 /* cleanup.h */; }; + D69B2C91A3A3138E26FA845A7B6DEC11 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DAA00871C602FB27AF93175F8C1562 /* message_def.h */; }; + D6C2D90C4BFD71495C0FA9CF871793BA /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F6973C71247B0DA38FE8264F97C7C3 /* resolve_address_posix.h */; }; + D6C93EB64FDFF78FE489C6182043C574 /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8BA847F5B73B7E780FCB47A3ED0DE7 /* certificate_provider_registry.h */; }; + D6CC6657C85A30BEBCAFBAEB31D1C585 /* obj.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 56F1E183ED9D8BB5C2547DD13F9CADDD /* obj.h */; }; + D6CCA835E509E48BACF36DDAA39CCA44 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 1C8B1CBAF5ECE7EC364857EBFF52DF9C /* url_external_account_credentials.h */; }; + D6CD340093F560F2EFFFB75AA7144B44 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AAC0BA5E90FB749B1776EEFC2342EA9 /* resolve_address_impl.h */; }; + D6CFC4ADDA244AD5F38880EFC9B1732B /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E7B6FD62C956EA884D6937CA84D188 /* ndk_binder.h */; }; + D6E1090972F80B5A84A43955E545CD91 /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 76010ADBA30FF1243B36A8720B4BDEBE /* tcp_socket_utils.h */; }; + D6E3DE244A11E3B1CC34C9051B02F9F9 /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C787CAE7159577BFD3BB4D8CB6B634C1 /* http_uri.upb.h */; }; + D6E412E7ED66248BC615436E54DAB206 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = C13D3A5FA6BB6517C241B310DD4CF012 /* GTMSessionFetcherLogging.m */; }; + D6E83C27159FEE64AFCD5E2F0D14D634 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F47A8A559BB5BD3B3F822BB238E789 /* channel_args_preconditioning.h */; }; + D6E9E268854520A1A40D2AFBA8E153B1 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 205B5C43E95D747C7122152BE7D7E864 /* internal.h */; }; + D6EEBF39A800AF949C759A66890115F3 /* delocate.h in Copy crypto/fipsmodule Private Headers */ = {isa = PBXBuildFile; fileRef = 1489BDCFBA8B6D2BB058D882EC3A545C /* delocate.h */; }; + D6FB7942D70FE8FDA557EE41D8F4E382 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = D8AA07301BB0B092B125B2788177C3E3 /* decoder.h */; }; + D70415BE3B7F42A9741A3C12C104E0B8 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A65B879700505BDD2FF378859447FCB /* extension.h */; }; + D7042329EA915BEC63F01A13A2B9A313 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EC73EC871826449FFD09E9ED4CC7A943 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; + D7045E6076E656984448DF38FEC38395 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BC9C6C924EF1C32451C6F1DAB6DA86 /* sockaddr_windows.h */; }; + D7090B9E9C72092C2D218722F1E6E2F7 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 61ED972A5F924F8C480CD39DE418C835 /* FBLPromise+Any.m */; }; + D70ABEDC40824C812154D06AD9DB0854 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28771946362C3B96D1CFB4C158ABBDDA /* circuit_breaker.upb.h */; }; + D70CC347787301732319AD46563381CD /* modifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DF6603A4D02D728C8DCCACFD20F896 /* modifiers.h */; }; + D70E60C2644670927CD6475FCE3669ED /* sync_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 50232EB8A6D9F84D8FA37AD78F863823 /* sync_windows.h */; }; + D7142BB42FEE6B81D624CF2B4B6C62D7 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 168067947F44683B21EA81EFEBF6B56B /* hpack_parser.h */; }; + D71E2B0A2A393A5121A16028ED517832 /* type_list.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5E97E013C978394860065C3A68D3F4 /* type_list.h */; }; + D7206A5F7B9337A54C3918E3210F8D76 /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 801D76EADEDB86E29361BBDB3AB88BE5 /* local_transport_security.h */; }; + D723B8511886C835C9C0A5E026A02479 /* e_os2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 23D7C0AE5202ADD84CCCDBD457B89525 /* e_os2.h */; }; + D725AA98223E105F563F1E54E2519C66 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 12A4936858FFE88656661FEB0251EC48 /* transport_security_common.upb_minitable.h */; }; + D72D2419BD4E2C7F43338C503F9E2A14 /* DevEventConsoleLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17F1C7285BFFA6D517A273971D15669F /* DevEventConsoleLogger.swift */; }; + D7322BBD864057D95BEDCCCB2667DC49 /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DF57EBAB2A1593559C0BA4A7AE31CC /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D73CCAFCA86FCEF8201EE48E87170991 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 123652FA8EA5508FD5114ED3FE9C1291 /* endpoint_list.h */; }; + D740605F04F30A12DD5B3FD25C6D0831 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE08AC4C65240597CB47221E81A069B /* parser.h */; }; + D744E63AE3C0D99FE8297985625F25A1 /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62EB7E95CF862DE42645EC6B40DECA19 /* tls.upb_minitable.h */; }; + D74DD3880DC66D1FA9EE0D2D7B3289FC /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07D9BC018F4D3360D51D4E6E36462B22 /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D76194E2A8AF0EFCB714CDFA275AD6B9 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7FF78CCAC6917CAFB5CC25EF959CC053 /* checked.upb_minitable.h */; }; + D7648163BC0506735F36EB897FA279D3 /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = E2FA96ADBC221AA6BDCBC453110ACB3C /* zutil.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D78339BE3794B4814F395D2DB9975BAA /* oob_backend_metric_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A4068E4E2CACA9A58C2FDBFC7FDEFCA6 /* oob_backend_metric_internal.h */; }; + D7881D066C1A7B28C2179A89FB16C548 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 19347175537611B3F126017E2F7195DA /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D78ACDC54286C3C6E0F2C7B15963CA26 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A82ECAA8514DF1CC2D8A1C937A7A0E5A /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D78B34B1E03CAD5C1543C6A06678841B /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01F8E5F9B3E9D3DA26996F2512ACE2F8 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + D78B3E6CD21057ECB57729EF8D690F05 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E9870A3ED4F09056DA3390765240BE04 /* accesslog.upb_minitable.h */; }; + D7964BB2FA194DEF93DDFABC671D0F6A /* cookie.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F025B14AA290ADF9F297FC8E9A87342 /* cookie.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D798A7A64E83EA542F8344493E9268C3 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C91963557AB77D550724A8A2675C4916 /* orca_load_report.upb.h */; }; + D79C754F2AA5D45CEF888071724D5B68 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D28B06779C656A3C6065D8C9573F11C1 /* accesslog.upbdefs.h */; }; + D79CD3FBF8A498493D60E2EF4D94E137 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B89D5B01B30CC1E5D53CA6C822AF61 /* bin_encoder.h */; }; + D79DEFC9DA70BB492117259F5D0823E0 /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F107D625B3093C1B4A4E15BBE57B39F /* dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D79ED82C4336C8538B2A382705CC7AEB /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 91FE69AB03D14CED2975A9EF76586B87 /* stats.upbdefs.h */; }; + D79EF78F98CF5C900645E80FFBB20069 /* clock.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 9CB62CD82A8DA0285F385CB86C072455 /* clock.h */; }; + D7A67FB7FF713265D0ED9E3E88EB1DCD /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 53E42C24678E5DC78F76D25277137192 /* wire_constants.h */; }; + D7A7C56484F6A01AD24D5FD3DAC2000E /* call_spine.h in Headers */ = {isa = PBXBuildFile; fileRef = F62EBC1F92A85DE2237D5C96C5151684 /* call_spine.h */; }; + D7AEA33794785C95193429C815F58575 /* FBSDKServerConfigurationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBAE192802AD0D8CE514675DAA2BAB6 /* FBSDKServerConfigurationManager+Internal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D7AEBCA6F5E2F9A447C98C612FACB41C /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D676635E7FEF597FE9B9A9E12F8CAB1 /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D7BA4109C8A69B0339541675DF84F511 /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0155ED53E9E74444A44678AF7A2320A5 /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; D7BCBE1EB4A638403C265CE2199EFF1B /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DE9E888096AF19468CED030FE669832 /* CFNetwork.framework */; }; - D7C017E996CECC0549CEB131CB545B2B /* container.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = FECE40F0DCCAF6567C7E3806FE911001 /* container.h */; }; - D7C70373FCACE2453A934660AD6BFE9B /* common.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = BAFDF37A5E735417E9FE5F6910D630D8 /* common.h */; }; - D7CB23E2A466FD9866450B93554A1009 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F50E6A5149A61E80576C6DA9726ADC7 /* proxy_protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7CB5610FA8E358DDBBCFC468EA56DAF /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD207776791D5EA768437F9D61FF6F83 /* String+MD5.swift */; }; - D7D7359FE370B3D183199DA71F3923F9 /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2CA26278F8057772A8FFEF0C113D89B /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7D96A881BB0882FECB5EC17D9CA1312 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 49FB62B2036B8C387D2FFF0B70857263 /* seq_state.h */; }; - D7E0307C6C4A03878596333CEEA33B9D /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3B88AB72E3A96481D3F8EBC9588518A0 /* path.upb.h */; }; - D7E8FB18414ED5864A2B4FB875E4D4E4 /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EA97E014B43448A19CDA616DE37454E /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7EEB1B479902BF4B05C92AF43D39BA7 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B9D671F22F4544631DF717BC494F352 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7F45A4232DB07D38FDD5C50265368BA /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 008893870926896AD0E43D0CB385E0D6 /* certificate_provider_registry.h */; }; - D7F72C859729BD53E93CF614DBCFA2C4 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B0028AA962197FF312E0A4F5B127D4 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7F7346FC946B87F375D3BAEADB61C2C /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = 911C5B2D238D8D6C68D5B25A0880FA5B /* err.h */; }; - D803748080671BA9BE70292403CE4B1A /* internal.h in Copy crypto/fipsmodule/service_indicator Private Headers */ = {isa = PBXBuildFile; fileRef = 41B4C2551DD7DE706587B2CE363EA503 /* internal.h */; }; - D8084AA041BB2B6BA5080CAC5E01AA99 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 213616686A2B08697F40C67C3974E4E2 /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D80D75C7416440BC675E012DA578B5CC /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE180DCC5695A1562C44BDAB79E219EE /* slice_buffer.h */; }; - D81C366C0D0C515270E909D5AAB91927 /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B5E9AE8FDBBAB2E923725A3DCFE2F42B /* FIRGoogleAuthProvider.m */; }; - D823F796BE076BB2BBCDCC8B3C835E12 /* service_config_parser.h in Copy src/core/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 880196E68F414A4C8988388778524B1F /* service_config_parser.h */; }; - D82E303472818AC43436ED00AEDE7466 /* config_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BCF232D851CFEFE0A5524BD03CE97B1 /* config_vars.h */; }; - D836E9D5B23F76F7095BB170DBAF5EAE /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09290E19AD8F9772405B032024D0B3C4 /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D84210989C06833963BC0E6D0B93CEB7 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = A552AAE6B58C3A105B23805999F0F46A /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D84BC44426A636299B75915B1E5BFEAE /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AEB47476D6739933706D19F54B13B14 /* FIRAuthWebUtils.m */; }; - D8548F55D2A30E5935CD1773CFD1510E /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E199C13AD39F2424E04DDD118FB98EB /* ImageDownloader.swift */; }; - D85B0A21468A8AB4AF214D6318820640 /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = E54D5097D5238C67E534F133B86D9352 /* reader.h */; }; - D85B9A4FDDE886599B11A4249D1BA677 /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0C3904D38290EB7759C8BFBFC0A66B5 /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D8644FC9B3B35B0C02D6B0F94E81BA89 /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D9C2ADD010939669508828F97BAF7954 /* ping_callbacks.h */; }; - D86F605AC39D7ECAB3FB4302A925C184 /* lightstep.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = AA4208930C960CFD90F35864702BB05B /* lightstep.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8746020BF6D2A90865DEBBCCCE53C00 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B5EF7FCA35AB0228443A4C7D0CFC3D /* parser.h */; }; - D8770C50FD43291DFF4C487A28A87418 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E0160BE5EE30B679BF675FD5E3EE9C73 /* address.upb_minitable.h */; }; - D879161178705DDE28F82C553D6D0F07 /* int_table.h in Headers */ = {isa = PBXBuildFile; fileRef = D23F1F8FB994EEA987CB9A86EF5B85B1 /* int_table.h */; }; - D8898938414044ED6C3453716F04AFAD /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 751C408E971CD848E7B5C4DE89D3229F /* uri_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D88AA0CC4B784FD6A073ACCCDA2E6F1B /* SDKDefaultSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947826FD7178E560D05329D09B70A7EE /* SDKDefaultSettings.swift */; }; - D88B3757A445E177CD5AE64D9B08903E /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B2770159786DE653FB3D3B87BC458B0E /* ref_counted_dns_resolver_interface.h */; }; - D88BED701798CC5FF84E743CB1FBDA07 /* create_channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 80F93C0B326FBCAC7C7E10C5AC7F4FD4 /* create_channel.h */; }; - D897B66E82F080C88A2FF1C1241AD07F /* extensible.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = F472A181F3989A15823A7AC50F209647 /* extensible.h */; }; - D898BD37F125B5DC06F91FA1328401E0 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEA7100322E06DC86E1CAD64DFEF4EF /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D89B854F15B6116978C31C350DA6293E /* method_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 8565ABA6E0F2BF90E8068DA4F14EDCD0 /* method_def.h */; }; - D8A66E5A6D843E3B8C81D99500460E68 /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11D884C5571A3355708F36E38B7001CE /* error_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8A8CD9F011440E9627944BBB66B2E61 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 294C88E9926D3DB5BF67EDC29F365B30 /* status.h */; }; - D8AB834A2F73AC85EFF006EEE532805C /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E36C97179852368A2AAAB8739C3DA9 /* tcp_client_posix.h */; }; - D8ACB41F6711390FF133105ADD84D3D4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 62DC48D696D2621B19973B10E864FC27 /* PrivacyInfo.xcprivacy */; }; - D8AE723B80504ABA043EC5A44852BC14 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3C9A268887B1341C38EF19953CF38C /* load_report.upb.h */; }; - D8AECC1B26765B89557014CEA2ACD203 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0C3F31D792AE9EF1B188F5AA953C0129 /* file_watcher_certificate_provider_factory.h */; }; - D8C5428369BE50321FF05DC82EE63CC4 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5836E877B7E157B4F298AB138C9894FE /* string.upbdefs.h */; }; - D8C87B32912C4FDEE8E45C49FDEFEAA7 /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 48D3752C7C2CDF9E853AB021F901A377 /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D8C88BB0C407FB3A882F9F0FCC6B7652 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 72E222B117AFD17335D09F472DB13860 /* FIRCLSDataCollectionToken.m */; }; - D8C890C682232B50DD97B015EBD74DBF /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 421DFB724BA851670481A5B8DDE66E47 /* weighted_target.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8D310D06EF7C1D96EEF209861894015 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 242884B0F378096627EEF734C684A1B8 /* FIRInstallationsStore.m */; }; - D8DD28E47F795C29E78D4E658A90F4CC /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 35C63F1E14F8C3F5278E376D5B2E16B7 /* opentelemetry.upbdefs.h */; }; - D8E377F9E27A1B82C05D644736F1B148 /* service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3887A3EFEACA3D434B84BDBFD2840333 /* service.upb_minitable.h */; }; - D8E3A49E08F0925B93C5908B22E740ED /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = 808072240E1D560CC2F6D359529D3B29 /* ec.h */; }; - D8F7DA602BF5D45A9687BFF68CC3505C /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 43465AAF82A4693D3BE68D179EA59698 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F9E788E45364B05178E822A65571A2 /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E079C391F7AC4817A8FDCF9C3111252 /* listeners.upb.h */; }; - D90A78E46D1ACE35B5774AEABCBAC0D4 /* status_code_input.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF987CCE5DF3B9E77B95A2CC9F8190A /* status_code_input.upb_minitable.h */; }; - D90CF2AE43BF374BA9C6EF23CEDEAB10 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3908DC8460D292BD47EADAC9C3006B02 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D914591947F58A8A26F24EFA54890CEE /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA2E92673230E43C9A533EAFAB98E749 /* perl_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D91EC06DE6B44330700EC110DFCAFDE3 /* wire_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D20BA7954889E29E34FB1BD255D57D /* wire_constants.h */; }; - D92B2854ED4C1C818B775DFAACB63538 /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8284AC2E7F310FBF3DC4D3F96CA53F14 /* message_size_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D93088FD67E867819AD435E647CDD016 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E9A3924EBAA56FD8B8D2CA1F4F483EDF /* exec_ctx.h */; }; - D93B445FE74FDC4A939FC9A302A987FA /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 9585827E8F6FBEA46CEA44F3E100BDEA /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D93C35C7DD70DC2C1E16FF54E4B911AA /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22549076D453F951EB86648210E200D3 /* ev_apple.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9467A62F35A4F280311F7A8BD919CB6 /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 90F03081A2FB31930020C49FDE51AB53 /* no_destruct.h */; }; - D946EBA66BDEFA82FA0C331745A2966E /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 8DC5038D93F255479DF0D71025BD405B /* aws_external_account_credentials.h */; }; - D9530732D1606CD58DB51C7B45222C30 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A15A6A181E28B626E116A6FD1502B625 /* slice_refcount.h */; }; + D7C96C661BA66892708D1AFC59783CCB /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 291F07D2091AF9A26BDF8960F87A4B12 /* channel_stack_builder.h */; }; + D7CB5610FA8E358DDBBCFC468EA56DAF /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48CD85A5DB5F5A7B0262FB9C5F025884 /* String+MD5.swift */; }; + D7CC74BC196B7DCB850338CEFE16F7B8 /* FBSDKModelManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E68A4A4C005F5022A743CA4CD53B89 /* FBSDKModelManager.m */; }; + D7E24795E1BAEFD80CDD8566B3136020 /* symbolize.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 75B2FE6AF746B331330E3E1854A12AAF /* symbolize.h */; }; + D7E55D6F2E95143316F65EE45C9ACAF3 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 733B3E2E4276285784AFF6035005E621 /* completion_queue.h */; }; + D7F72C859729BD53E93CF614DBCFA2C4 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4308D3321286B78AFF80AF76255705 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7F7346FC946B87F375D3BAEADB61C2C /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E9471C313F1B0CEE32848842A35D5E /* err.h */; }; + D7F7E83D61D019112CD41009FCED1A64 /* call_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6C536F84A687F12D25C7D33B148CCDB /* call_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D803748080671BA9BE70292403CE4B1A /* internal.h in Copy crypto/fipsmodule/service_indicator Private Headers */ = {isa = PBXBuildFile; fileRef = 2E8D6A512611345E23AE27EC4616DB8F /* internal.h */; }; + D8084AA041BB2B6BA5080CAC5E01AA99 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A01FBAB8673767DAB4D0879CBDFEBB /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D80942D42ACE4529AFF20C866EF9447B /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDFE916F90654005FAE7961B7009E5EA /* overload.upb.h */; }; + D812E468B3CF22BFEE10DF431E1A7412 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8365832229D398A3AFA45C87027F628D /* scoped_route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D8148C0F4AD23F756673B307F346A498 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F6CA68D4483F0291276291C862B315E /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D81C366C0D0C515270E909D5AAB91927 /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2595CCE0E8CD280C523468F5995341B9 /* FIRGoogleAuthProvider.m */; }; + D8225E08CA207CF07EFA91E6FB9B6118 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B886D0C2E02DACCBCEB4949A1417BA7B /* outlier_detection.upb.h */; }; + D82E4496900961A11C19CD5264C9A1D6 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */ = {isa = PBXBuildFile; fileRef = D2DD4683DDA6696ACED94B8469410F30 /* build_enum.h */; }; + D8305FD392DBE3742CC876767CE03EA8 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B01CDCCCABFCD19655EE996C004F95 /* xds_listener.h */; }; + D83C9F97A932587434AD7397D35B76A2 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A3606FCA29FB33C713FCF9CDA7A61514 /* iomgr_fwd.h */; }; + D8484304458F14EBBE42D060F47E4E4F /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D579249F0AD5F15C879A3FFEC86FC2 /* trace.upbdefs.h */; }; + D84BC44426A636299B75915B1E5BFEAE /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 62C393A52914E9058D4B544148307A3C /* FIRAuthWebUtils.m */; }; + D8548F55D2A30E5935CD1773CFD1510E /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC473A64934177A2501512E56EDB6AE7 /* ImageDownloader.swift */; }; + D85B153B121D689694751F92A814F727 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 66B067F9AEEA02DE6405837B1BC19ED2 /* string.upb.h */; }; + D85DAB8D8EEE803C4CD6DA568EE62A51 /* eps_copy_input_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = CA7B7FEC580936DF2255B940D6357721 /* eps_copy_input_stream.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D85DEE72DFCCF670691467F5C2D6F72C /* party.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7085DA80666D75FB24D6752BBCFAF39C /* party.h */; }; + D8611899427FC9679B72AF13122862FC /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EB479C3C3A7E63E9DBE1A85272DC197E /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D8624C610AA598D0FBB946434086B379 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AB8446C0D446575CDC100995687846 /* enum_value_def.h */; }; + D868FF7C379F51731664A86F914B4D01 /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */ = {isa = PBXBuildFile; fileRef = 070628F21807BAB5446552D283A4F7B1 /* work_queue.h */; }; + D8692194AD47896253B7E388D5B365A0 /* message.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 74881CC1A2810481557F8A859E734EC1 /* message.h */; }; + D87A5B38B0DCB40B7179F29A73EDE5B3 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7F3939B262DEA091AC55CC78E885BF /* cordz_info.h */; }; + D87DEAAD7BFFFF2E1880BF97BEFBA9C1 /* prefetch.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 551E89DE5FB4ABAF45B2D3EE044F9E2C /* prefetch.h */; }; + D8807CAE009B945F9A02790E78358D3F /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E767A0ADB9E541373191C5939D69AB /* closure.h */; }; + D898BD37F125B5DC06F91FA1328401E0 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C431A81DCBEB762F9F872E7D98714F3B /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D899339821728B0E8D098C1C6A8D7299 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 185715842EA2EBE2FD01119CD782F3E4 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D8A03D30CB0657DFE3BC5B8FE9554E31 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9456E8A5747F89B9A8A69F93B2A16A /* struct.upb.h */; }; + D8B387594D73D9576A147B65A02143B8 /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 889249B1C360C5E3319D39A1680FE9F0 /* binder_transport.h */; }; + D8C11C6FD340F1CA5BDC510F2758690C /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F2807656121FFB9EF4FEF4B3D6848AFF /* syntax.upb.h */; }; + D8C18BCD509215F1E5408FC39756132E /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = A2210E50E5950705A3EDFB8101D79A29 /* backend_metric_data.h */; }; + D8C87B32912C4FDEE8E45C49FDEFEAA7 /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = C1BEAC7552BD02E6056BFD0001A7DE9A /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D8C88BB0C407FB3A882F9F0FCC6B7652 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F86BC76BED8786E5BDD23013B218A03 /* FIRCLSDataCollectionToken.m */; }; + D8D0396674EE453005ADBCA40D9F2752 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = B69AE19CA3CB004C60E8D63547E7F3EB /* channel_stack.h */; }; + D8D1C2B1C173A9B9557BABDD1E605043 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 325EF1482161ACB5BAB5EE840704EE22 /* map.h */; }; + D8D357A06CA07F08BD326E49AEDCE10E /* FBSDKAppLinkTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = F1142C5C78C6E5FFBD84DA5AA3E26CFA /* FBSDKAppLinkTarget.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D8E008D8A9581F84A158E2EA94EE303C /* collection_entry.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 39CE56B0E4F1BFE1E4DCEF2DEF311285 /* collection_entry.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D8E01A1E7AB7F9D4C7470EF68A8F1EC8 /* FBSDKDeviceViewControllerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC45F071D39AD07CE265B892ED3F124 /* FBSDKDeviceViewControllerBase.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D8E3A49E08F0925B93C5908B22E740ED /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = A36E68B12F0F068E5935D455FEE80931 /* ec.h */; }; + D90AC1858C7E3170B87752C6507E2410 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = D82956C3977D6BEC2945FC25A8E394C3 /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + D9103E3A819E78B9064723BC65516DCB /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35928FF85E04A7BF3E30AE22CDD8E8FD /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D92168C47B4283248CB44B692F941392 /* byte_buffer_reader.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 17B753FDB3145B344A3EC9768035ECF0 /* byte_buffer_reader.h */; }; + D93B445FE74FDC4A939FC9A302A987FA /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 25A8B125A2F8046B660DD1E97D252BC4 /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + D941274C62FF6CD5A41BCE15EC455039 /* json_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E64AACAF90259864CB9D2142B051AA1 /* json_writer.h */; }; D9540BE7AA385109D82E9FA9A130E6CF /* BoringSSL-GRPC-openssl_grpc in Resources */ = {isa = PBXBuildFile; fileRef = 15B2AAC35D0FDBFDEB69A9FC675DC516 /* BoringSSL-GRPC-openssl_grpc */; }; - D958D1E6AB291D93ECCEA01B10C3B0A3 /* cordz_update_tracker.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0ACBAE3969A3D1702571ECB0997BBDD3 /* cordz_update_tracker.h */; }; - D95B8E1DC27CFCFD684735F524F01097 /* FIRTOTPSecret.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAA04610A132AE746FAFF109300029B /* FIRTOTPSecret.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D96162E8C172721F4D301F7D9C8D5A3F /* decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA70F6F9014AD7A5694C5C59F234C9F /* decoder.h */; }; - D962CC4B4ECB63D1FA31DE4786884CA0 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E18FCBC9A467C0E85B1FAFA91F9C3A /* bootstrap.upbdefs.h */; }; - D974B5F6AB0BA3F75AF53F4D6D0D5E6F /* reflection.cc in Sources */ = {isa = PBXBuildFile; fileRef = A242314A5D887E04F6EBDE572E3C2FEB /* reflection.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D978554E907EABAD69E1843F0B08DC92 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F91BD6E9A28F7FFFFDE86B52B6EEC232 /* custom_tag.upbdefs.h */; }; - D978AA80B70B9C160B8921D91E1E17B5 /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B872DD3311C5AC58CD0011AA6BF1473 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D97BEB759BB150955AAB071D0074D855 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = E99110AC46DD249664A5211EF7643FF8 /* decode_fast.h */; }; - D9879835979E83E4B427487583A967BE /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D58F1AF9F39677E5AC233C91FF94E69B /* node.upb.h */; }; - D99420EFE69A38FE3001686CAA3FBAD0 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A2E36C97179852368A2AAAB8739C3DA9 /* tcp_client_posix.h */; }; - D9990EE25845F695534A4263E7FA3159 /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = EC484B0535EDB787C5039B111EDEAB25 /* fixed_array.h */; }; - D9B339DD757AF61D0F2DA2D884CD08AF /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 31323D1E69B1CCE4640BB54F66B782F7 /* credentials.h */; }; - D9B67928F6440AF39CFFEFF58E23CE53 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = DF7B1E86CD9B881A9DC4664F8C0061DE /* subchannel_list.h */; }; - D9C37F8D2E7C79F21ACBA84CD7EF3BC6 /* internal.h in Copy ssl Private Headers */ = {isa = PBXBuildFile; fileRef = FDDD746993DBFB96A3C5B9E951A0D448 /* internal.h */; }; - D9CC66222E55827BDBE32EFAB31B5381 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216048025598D65E95D1D18FC8575401 /* KFOptionsSetter.swift */; }; - D9D47BEF29FD88490B6FEA71317BF90B /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = E49B52C984BBEF7127FFEACC3F7AEC7E /* obj.h */; }; - D9D6352795A2B140D67BD0EF95D19085 /* value.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = F429A1A8B29C0AFB8DE198B3781CC3D1 /* value.h */; }; - D9D754458D5FB170BF029091C720B294 /* grpc_tls_crl_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7561A0B2A4D2B4399C97BDC7179BC3A0 /* grpc_tls_crl_provider.h */; }; - D9EB799280836F9D56CA21A06CF297A1 /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 303508E6BBFA12534A2964D513D41E8B /* retry_throttle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9F4F1309F10576E07138DB44ED29FDD /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D552B51138DE789C7D72A94491F169 /* endpoint_components.upbdefs.h */; }; - D9FFDD8521C4742A2D513D9AA2CB5C9B /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D0E511281BA138F8BEDACF48081A96 /* channel_stack.h */; }; - DA027652D288E2C5CFEA207FABFB84F3 /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A56AAEA6F8331DB7199BE5C8444E1E3F /* def_builder.h */; }; - DA09E97B247987B1CB57B66BEFC218FF /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 874AD7243B524399290D3C2E43FE8B9B /* resolve_address.h */; }; - DA1176560618B7A92F2EC34B4B83C041 /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = C33F2DBC2170BAFFD950AF0F3D41415E /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA12B88D860C43E5920A6FF199712ADB /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = C74D6674677DF5A60E601B07911724A8 /* http.upbdefs.h */; }; - DA1FAC7B9AACC305B68A661FD8E4F024 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9D6CE426FBA947DEA52644F5F89FFDFB /* tcp_windows.h */; }; - DA2453CC84B2BDADCFA2803946680FE7 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3207D56A7852BE37898F775FF3D8A1C6 /* grpc_method_list.upbdefs.h */; }; - DA29B4AD07F4B8922C215ACA178D0B65 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = A87EB8F929B4903A6CDE6FD793B7DEAF /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DA2FCEB6B8A20AA07BC051E4C49ABFEC /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 334BBB4D22B732FD76A0F0E2A7C851F0 /* FIRVerifyPhoneNumberResponse.m */; }; - DA3351B34FE11DF5DBDBE4105F4173AB /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 5250C243D467FCF26BCD9437C66D4B67 /* chttp2_server.h */; }; - DA37A492FA204B9BE277D32D3BD125B0 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F7BDD352DE193C875FF6FFB8F289944C /* frame_window_update.h */; }; - DA3DC9D123EEB0C219E854BFFE296CBE /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EFF1AF364678F20E3BF2C605381F13F3 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA414827D4A97DF705BDCF4D171BCDE9 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 619FB9E8EA788E351EA5252F0C11364B /* empty.upbdefs.h */; }; - DA558B158BDBA601AB1151DC5D2FCBA1 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = E467AAA73A01DADA494B175229EF6B41 /* alts_record_protocol_crypter_common.h */; }; - DA61140CF47E85474DA34B139542B583 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCC04BBB0F0D799EABFB32D41DDACA9 /* ads.upb.h */; }; - DA61354848CECD75E8BDE13521092F0B /* struct.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F62C282702792681B5F199D46DF2B022 /* struct.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA61467AD0E550D7DA79B87EA79C5C80 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 905624B87CDF0A6866A9919680A130CA /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA639D3E03129E1489B9966F9AEDF3AF /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 32342701343A3C06482D1D6C317965F3 /* external_account_credentials.h */; }; - DA67034077863ABAD54E8D8DB1DAEBD9 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2084478FE25E4A5CDF71B8BAC7966243 /* xds_cluster_specifier_plugin.h */; }; - DA69012C65C49122FB78CF7BE102F46E /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */; }; - DA754693AD597B586F77EC5464383AE8 /* migrate.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 59821C8E6E0741D882F9D96BC5C89AFC /* migrate.upb_minitable.h */; }; - DA792FF9315A3916ED023A672B91E52C /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = 41A5DA42917F4F10ADC61953D2B03336 /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA7F4F0F72ABD0EA0F892AC137792110 /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 920CF98DDB9873937E0D03CA0B45991A /* memory.h */; }; - DA849D5838F0B6E0BD1DCF1F2E2C1319 /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 787332266166A4E1D128604DA65EC195 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA8653E573F56C4B3A5A41B2C2FC8F40 /* outlier_detection.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F059703F5F150AC2D23B9BABF8582DBF /* outlier_detection.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA86A7007DE20FDA8A1386108445B2AD /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = CB2CEE074615DFDE09C4C218FF7DAD55 /* channel_init.h */; }; - DA8C89B23E7CDA469AF3182AD16DBB3B /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C34D1A594697A7519492E80E505EB6C2 /* common.upb_minitable.h */; }; - DA954C74EEC15A19715E23C801E9A064 /* cpu_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1CBE2B517F0D9BFA828547100D2767 /* cpu_detect.h */; }; - DA9B0C113D9A0B9BFD1A322A3A5F3D13 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4C5E2024C729565E7BC4D7A871F51439 /* resource.upb.h */; }; - DAA55C966E72C9E3BD71034165EDA83A /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E53DC545353A2BBA8EA100A4E49CC2 /* descriptor.upbdefs.h */; }; - DAAB27729565B8407D388F80A1BF114C /* SessionGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BFD3C9B4E1B96B2663AB37D1429E2D /* SessionGenerator.swift */; }; - DAAB2C0A840CDCF1CC0455748E40C067 /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63F1DC38BE377A1BA74F9DA125546E12 /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DAAD7D277C595CBC03FD60A0B3A16BCE /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5263ADB27433D6B94FE44493C4FE4C50 /* filter.upbdefs.h */; }; - DAB143BBFF4310B07C047B2F5775C8FC /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 932A64C0B2A8CD8F4E17F6B89AFDF9AA /* legacy_compression_filter.h */; }; - DAB6A10971BA3E989D681189A518F517 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 28C07DAFA4FD518B918366F940486CAD /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - DAB8A462017E57829DFED60C47BF3F10 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 20ABB2EEF3A7AFDE2B5599A25A4342C8 /* completion_queue_factory.h */; }; - DABC98DF569F5CFE94CB9FE5F6FB2A04 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF232C1F59BD57815D3684D515BDF0B /* cookie.upbdefs.h */; }; - DAC3BFCC2A8A45C4794F3DC1E8299792 /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEF25E20CF1F8729D99BD01C35FC0CF /* call_finalization.h */; }; - DACAE350B03DD1DA7D537EC0AA9B44BA /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C23D041B517F921790EB0C9CAD4BED7F /* lrs.upb_minitable.h */; }; - DAD18B07E93DFD5426FFDF37C7D21B5D /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D2FD50ECB21A9E5D4F9063575D7538 /* gRPC-C++-dummy.m */; }; - DAD2F38A22F55316CE67DC8BC6E43751 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3803D062079F64B1F1AD1F5B58AF2D /* exec_ctx.h */; }; - DAE21DBD964279A6D3D3201922A1376B /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CD5AE985A157AA7563840D63B2151A /* base.upb.h */; }; - DAE264A402F34F6DA98CD39A09FFBB58 /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 551EDF3F3D789F3E316B36ADE9E5B347 /* cel.upb.h */; }; - DAEBBEC202F77C6B5DDDAF9228827621 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9DBD99BDFC777A3EF2FEC5A9ED8E74 /* resolver_registry.h */; }; - DAFA0D4512A7E1513B482ABBAE7979F1 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 52F61BEEE0A8C8DAE414A6E35EF80857 /* http_inputs.upb.h */; }; - DB0F059D72F8FA89D424D0ABEB715C63 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = 60046A7DBFAF1D73778B7BABBBF8922E /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DB1DC70AC4BCEF164D4DDC6757E9A209 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7823CF5F7C76207F91552F86BAD252EB /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB1EA82E14283CCF0D2FE51B31931ACB /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4914DC8FE81CCF2E89562BF3AA1B71 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB2316AF6915C189B97B87E41C2D08D6 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFEBA47434CBDA263BA9ECD88A3A17C4 /* strerror.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DB263B41E871972C8B03C438B1B5E7C2 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AF3567D551D26394B659FF290349BAA6 /* iomgr_fwd.h */; }; - DB367C67F29B2FFAD65762ABDAB6A2BE /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = D51BF0027B9A5DBB0F4715FBF6E6FFB9 /* types.h */; }; - DB3B1EB18FD46ADBA90352D51BD4EDA2 /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 1ABD7573C3946D960B1487DBDA5C8B4B /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DB3B9263DB81E224DB4D93B5F083F125 /* commandlineflag.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A313E554C8B7485851EB29B888EB20B /* commandlineflag.h */; }; - DB45AE1318A6F112F2631D9D300D6442 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = C96CCB9A9363E938CADE5ECC455AAF94 /* transport.h */; }; - DB484F490A96DFB1BFF4CE288BB15B87 /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0175C739415B6FA900A91500625012 /* ratelimit_unit.upbdefs.h */; }; - DB51EAA8667DC56444AF7400C3EC3BAF /* mutex_stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 41358C1067631AD0BC59473CCB052A2D /* mutex_stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DB78C55770D82394D836FAE08B375B96 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CCD4B9BD83A311A541DF2B3B70C0B3 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7ED64FDDC972B635729CE9F0E2EF4E /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B231395AB18255A2E6529CF6C8FB00D /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DB8D05CAC75A33E9D98A8E910A2B9847 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BE9610CA9A80B912CD6558426E539B /* value.upb.h */; }; - DBAE8C377C91B4672237A7970ECDE5E7 /* charconv_bigint.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D67E51FEBE5EF57ECCCA772DA0B4A0C4 /* charconv_bigint.h */; }; - DBB1CAB9E005D1ED6CFC3ABC83FCE2D1 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E23AFD25AF5704255A4ECE941ECD423 /* block_annotate.h */; }; - DBB2049A107F36F2C234665AEB220CED /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 055C219E6C93736F6D04F8CDCE0A9D70 /* sensitive.upb_minitable.h */; }; - DBBC550F014CBD332FACA00115AD3DDC /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3DF7CE1C2A099584E53E9B5FA86C02A /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DBC658937AC018E57D4E330D113AB61F /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 049E42F07C50A318EDB6F3727B48D740 /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBCC7FAF70D9485CC0D65E1B774130A5 /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F26278F2A13D9F0BD26B30FE2069B7D /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DBD70DE28BDBC4B1C09EEBA3F6D76BF3 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D48BA93BEFC4E37A08929EDE2CFE899 /* UIButton+Kingfisher.swift */; }; - DBE1A9E326AD42BEC9507AFE0CD58817 /* stateful_session.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 768AC917856256AE9AE3FBFC3398F830 /* stateful_session.upb.h */; }; - DBE2C5084E803859133EC63F70D02BFD /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AAF3C4E0D0749D0383A88D986D7FF96 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DBE3F5463066979918020EBDDCF3AB4A /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B1C80CC08BC5D5EFCA04BE552FD512 /* sockaddr.h */; }; - DBF93D22C643329C4BBD16A9E924044C /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = E701179F44AAC7684628492400AE67C5 /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DBF95D953DF0C5B6324B241F5BBDF744 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4DA5DD2141DBF34CDA0ADF57AA6274 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC1816D94ECB34BAEBEF13F9D62D65FE /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93761F0E89B96F7B6522944E2A721C12 /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC18C6D623801B2C80958CE3096397AB /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F74E9C5BB1BD18EC70FB2E2EB26536B0 /* regex.upbdefs.h */; }; - DC1F93A1AE7259E5FE5F8750BFBDD90F /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21B16EEECC2F6B21902F34A2AE4A2D3A /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC2626BBC02B8585798CA624B3960B0D /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3E4A358E82619F552C4DD27A89130AFE /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DC2B2759B80582DD98DF3E3C93AA660F /* fault_injection_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = D087BCE0E62DC8F528870274F35581B8 /* fault_injection_service_config_parser.h */; }; - DC2CD0410E5195FD07D1771FA0A14A69 /* query_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC9FAEE89E7A615BFFC0A9EA3255C70 /* query_extensions.h */; }; - DC33B42999CAFF632167C6C110490246 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0D4710F284F032766A53AF4B65CED9 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC3A4BD826DE3827D8E60E03C773B1E8 /* message.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 8EFD1FE92210CEBB77ED2D4D91939A8A /* message.h */; }; - DC3CCC43630EF0F6CA363B7B51F62FCE /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 73793FA1C770389887981763EFC40B11 /* backend_metric.h */; }; - DC40214A7B6A61219E862248E259CE79 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67502D055648B87D6FDAE48DF59B6626 /* quic_config.upb.h */; }; - DC4D9119F769B959023CBE2BC9E58A10 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A80017990FDD0D565AB30333B592160F /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC50410DC68A7682F7C3F74975A18515 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EF83F4110E5DA8CA98E271EFB759CB5 /* ev_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC5C2E1F21DAB49B3E437423A85EC142 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6CD0A782621C63B39E27EFFD3F7ED1 /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC73171D3A795965766F77206A270BFF /* md5.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59A6C62E4F5C2935449E8951719EEE72 /* md5.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DC7A0091AD08B901598A75E1E83C423E /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B301C71439E619547A869FD4EF8C46C5 /* address.upbdefs.h */; }; - DC8C15242EAEBAC81E284DE2486529B7 /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FAF5E8415FD99930D9875DBA24F5E944 /* listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC98BFDBF38241AA5B57D982B2EE7CBF /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A6B0FD8CE64F17F146CE210F16A4E2 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC9E193FCF4A2CA186036211EC3F73AA /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = D8306F7411BC6F01741978CFC90D42F2 /* buffer.h */; }; - DCAE00342A7C1C26CE4AF7AB16028E0E /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CAC3B87755E5519961792D880E5EB0 /* clusters.upb.h */; }; - DCAE92CE6165F378F9B3CB71309636B3 /* secure_credentials.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 68977D4FEEFC97EA172DAC24E9ED3176 /* secure_credentials.h */; }; - DCB72061B7E6F9130BE3D23C42A25753 /* x509v3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A37D08D216DD1DFFD79045D2B454E170 /* x509v3.h */; }; - DCB85585AB10012E33C0D49A67187F9E /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = AA128C73E577E73481942AB420A3386F /* strtod.h */; }; - DCBD379C2E84CDC583CBE972E1A8AF7C /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 538BA6CBD7B74E20E5D8966F58C9964A /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DCBF7B9A621836BBA68B34718FBD031C /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 03ECCAEA46AAD5C1DFB47D795572681C /* trace.h */; }; - DCDE91CDA5E3730E1ACFC653E28DD529 /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = B1BF08162129789B1D2F668A1062877B /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DCE247C81AE5AED335505CCCC8103C1F /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = D86C0F417D0CD588CF40AFDECB63320F /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DCFA3549A4348E5B31CF5027B64D7FA0 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CBAA17FC51510492CEC4FF7EDA4E6B /* json_args.h */; }; - DCFF018516FACD90159A481ADCB06B4C /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFCA5F1C373109B2AFB12B2FCB779C1 /* gaussian_distribution.h */; }; - DD02CD54C1DF487B237348E9A8512A98 /* frame.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8C41FA68BB2640F9DB7CD26DA20F5E6 /* frame.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD08A68572EED995E062A3B99B2D289C /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B01E721D7FE3C91B234C49898A0296 /* sync.h */; }; - DD1A0E63D61B839638CBD32C1A967E7C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = D6DFD93751BEFAE373A7C88F41927B46 /* time_zone.h */; }; - DD23941F2DE9F9332D5A54548EE5FD5F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5BE82615689DD552F4520E2C4722B799 /* protocol.upb_minitable.h */; }; - DD251BF3C36953F035C31581120CC9A0 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FEAAD1F1780E477EA3C49295A0850D /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD2C1E7435A0872B13AB7681DED9CEF4 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 69B9F81F195DA892045916E3D81474CF /* stacktrace_win32-inl.inc */; }; - DD2D92CB5A88B2ACAE02D7B2E665845C /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 99C062D15CE80005D21D097E6B5895A4 /* tcp_server_utils_posix.h */; }; - DD4CCFA70DA47E19B8D67186F9650DE1 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = F3991EC455A1E6DF6F8026CC7389E88F /* seq_state.h */; }; - DD7423390B8373126B1BA207FA5EEE7C /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = B8EA3B49540E18C349890B469FC810F5 /* outlier_detection.h */; }; - DD7522EBF94E614DED0E433869282ACB /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4AEAD8AE549395C593F6265A47971C /* time_util.h */; }; - DD77A7ACAAE5473E8EB1C4F4752257F0 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8BA1B52642A616868DA01AF1A26CC1F /* struct.upb.h */; }; - DD77B19E026885768F885F68714A1684 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = F3C8509D067FC2B7A776F7F926F73068 /* message_size_filter.h */; }; - DD7DF9AE035C83D68ACEC65B5307C082 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1D89369F0B5FEE7E7A5255BD5E138653 /* transport.h */; }; - DD853F310F660952CF78AC7D56F7460B /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 59ED0E489755338469587750C00329E8 /* vsnprintf_compat.h */; }; - DD8D2B1ECFF2B85186A0A4CF597738D4 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9D552B51138DE789C7D72A94491F169 /* endpoint_components.upbdefs.h */; }; - DD96BD0ED0F28C50012E915EAE7EA3B2 /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6AD40EF545F900894B267FC816D89EAF /* tchar.h */; }; - DD9E8852B89C24A93D67CA271347DDD6 /* channel_arguments.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E60E9A085139B2D3B1857F382D5C6E04 /* channel_arguments.h */; }; - DDA391379BDE3AE834D6D0CC6FF4DFF9 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 41271D39CC964BFC4A6A6394F67473B8 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDA3E56D7204C7CA2E364F9B9A6A91B0 /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FCFD4B40596A911A42BBCFAE924D5C4 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DDA88E3A60666EE69863FFA55A6F47F1 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF773B18E6E487046FD872DC5044247 /* proxy_protocol.upb.h */; }; - DDAA1AD669839E90E923EA35149A5F37 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE09FAD7341D06C4030F1B98B695A334 /* extension.upbdefs.h */; }; - DDAD4A7DF7DBB838D8A4BDAEAB861C04 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = C1915F6A68C01E325ED7B52368994D1E /* native_windows_dns_resolver.h */; }; - DDB03745CF585EE42857DD64A34570D2 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = EF6A57876AB7AD2D5B090FA5E637114F /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DDB5A55499F0E801213178AFA4059F3E /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6CB0E818E041DB3BC09D037AA5FFC3 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDB91501D3FA0835BEFE8354D39E63F3 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2FDE08B9D84CBF648DFB63BB498ABC /* timestamp.upb.h */; }; - DDBC7BCD0A15413FA7CE584BC1CBE4F6 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EA3FDE161CDD9729683985698882FF47 /* xds_client.h */; }; - DDC9459AA11007E1FAB24E130F659A83 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = A0FBECA10C13B221EC9DDADF7FAE5A6D /* client_unary_call.h */; }; - DDCE3C2298F0F4A01F3A809C51BDF95E /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 887474F99472FC9379A96708B39E5BD1 /* FBLPromise+Then.m */; }; - DDD3120858A08AB69812CE8EE25414C5 /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CC61C07C702DECF1928EA08DE2169251 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DDD9095E64595238997492783C387BB8 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E47DE62C1F23A8F359FF7B56738015 /* grpc_tls_certificate_provider.h */; }; - DDDDCBC46FF8E14AA473D53F9D81DBA4 /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CF6EB1D135BB3A8B681CE702D563732 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DDEC56001C3D9900BAC3FEF14D2441EB /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = F6864D29D015A79E4D22591907C54E93 /* metadata_batch.h */; }; - DDEF0818899EF98A774B74DE4059B667 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0BE9B05DBD8A4539A515176D6B1A5D2D /* security_handshaker.h */; }; - DDFE8C55F864613213E2986C0BDA6D80 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B2D06608DAB75BCC9E7327208BF82C8 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE0315D8EE63A1DF8042766CA3961723 /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1FAC671866AE6A631EC03E96F185D55F /* context_params.upb.h */; }; - DE0F216DE21F005BCF65FA5FB48801E0 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A8D7A7E60F1733C41CD1DE080C6243B /* path_transformation.upb_minitable.h */; }; - DE1005B059F7D5D88FFC320F0E13C146 /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 218B693F0E08C29105F812352729567E /* periodic_update.h */; }; - DE1E04DB919A4417096CAF57544D0157 /* posix_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDB3738774951A2566B83702CA3D2C9 /* posix_time.h */; }; - DE263DA4124252F08C956093059A09F8 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 292C6DDE5F230FACEFBB507C7142BF7D /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - DE2D19343D5FD4FD031DEAF4E05B2E3A /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB3535D37E1C80AA1240DB006B3B9A2 /* FIRFirebaseUserAgent.m */; }; - DE32A8BB3E3BFA3574A84EC1FB8D3B1F /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 4A7C64939D0AC67DF4ACF4009701520E /* transport_security_interface.h */; }; - DE45EC6E6C91F61811B2A4C98B357E21 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3A3F6325BD5A04BCA518575952B2854B /* extension.upb.h */; }; - DE4FAD3E62E10CD644640203DB74DD72 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D4F5FD51C35F382DBA3015D89439EB1 /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DE631D2EC70FF1DC99217E223ED6F726 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6344580C1A3229490FE1242C755285DA /* connectivity_state.h */; }; - DE63BC60E313FE4A5EC74C45699D2957 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84C760B88E15DB71323A3D54A4CE8359 /* router.upb_minitable.h */; }; - DE63C1F8E0AD258E49DABB5BAE96A217 /* commandlineflag.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 705CB98845F203DFD57636997CDFA7BB /* commandlineflag.h */; }; - DE6C475960C0D761F52CD8C05B0C484B /* semantic_version.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41DCD5B7AB2FAA1E3A763966CC7446FD /* semantic_version.upb_minitable.h */; }; - DE74BCC0BC146CC4D0F1AC504D694395 /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B7E139E5B065C5FFFEE3AA2C588871 /* accesslog.upb_minitable.h */; }; - DE822CA0F214200474B1B66DE154706D /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB77E8F0BDFEEC33E6698A8E4043FF6B /* config_source.upb.h */; }; - DE8E356FCB9998FEA23189E75AC3CA32 /* FIRRevokeTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E732924AC485413C74955BAB88FB4C8 /* FIRRevokeTokenRequest.m */; }; - DE9AAD3474B704C9944A56E2C5B4A6D0 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = FDF2B3B35A94824E9EBD443566E0418A /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DEAB3CED799DDE1BBD0C46BD6C7E2993 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 2371CB7E74F417F4DACB4143810FE9E6 /* atm_gcc_atomic.h */; }; - DEAD8652AC64F1E083B588DB56D9DA4B /* json.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2229063406D3E4938AD53425558AC568 /* json.h */; }; - DEAF0C099E71A8ADD1A7201D99BC7942 /* config_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5BB7191FCDFD3E12A4D764AC77D1CE /* config_vars.h */; }; - DEB8D7575164ED22AD618FD9DFA6E731 /* seed_gen_exception.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 279C8FF40365FCEFC9B80F6D5D15EC6B /* seed_gen_exception.h */; }; - DEC072A36F62E802D166A4334E9D979F /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD363B0BB99BBA01CE892B6DBA2DF353 /* resource_name.upb.h */; }; - DEC363362F99BAC79813B73975F56861 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E20493DE3421D89DAD82D41C14F5B101 /* generated_code_support.h */; }; - DEC988C4DA71322E3C6E99BA13CC226A /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAF35A0F7ACB65698F2BCECC8606366 /* csds.upb.h */; }; - DED1EA6206EDEA171FEB6A59762E5C48 /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 81E0A2CE06D951259EABCA38895295CA /* handshaker.upb.h */; }; - DED59065D5BF7D5320871DB5FB79B1B7 /* grpc_library.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3D6B7165F77657104D413B7FF0FCA729 /* grpc_library.h */; }; - DED6C98A831ECE490A8DFC5D2B765646 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3AD1A4A5A3AF2CB48C16F61B21809B /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DED9E51C498F24C7343DFAAFD2CBFED7 /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2337DDD1408F4EFB2A5757171E9F429F /* time_util.h */; }; - DEF6E75E28C1D9963FD58772DD58D1E2 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = AE0D56A47912A9FCA2EE667A828A8053 /* GTMSessionUploadFetcher.m */; }; - DF052C10FFE4DE4BE36BFCEE4E82AC47 /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E24E2BCA5981D4F6CE2B917CF19F19EB /* mutex_stats.upb_minitable.h */; }; - DF080AD5B0C97B0C456789502C6E842B /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C07FF2AB1EEDF57A9A1AC2E6238D2B8 /* atomic_utils.h */; }; - DF230A301627E07371236A3C797AFF8D /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = B114AAE69DDAB950137057DBA057492F /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF262A379852998C49D778FDAF7FCA02 /* client_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 06E65987F807334755555B25BD4EC745 /* client_channel_internal.h */; }; - DF2A19DA75C5B9247993E8250F0ED93A /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 876DC05DD20E06CF575640EF4AFE2C3A /* binder_constants.h */; }; - DF321E099BA3BCE8AAC59416AFB9E727 /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5845B2B48720F4D59DC841FEBAED9434 /* tls_spiffe_validator_config.upb_minitable.h */; }; - DF409EDB6424C7D826CC4DBD6CB85C11 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = C03B470D3EC8B243D0FFF7F0CE5CD10B /* examine_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF49E39C974A7F9844902AD3891FAA53 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = B93A2E707AC52AD71684F62FDF71230A /* FIRCLSCompactUnwind.c */; }; - DF551469451B01A866F5B1D754B1110F /* str_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 176B0012C0D28E080F3723E6076702F5 /* str_table.h */; }; - DF5CE5D810ED6176EC34531C91A08210 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = C65A6D788DF89E247AD2DCCE6A65C436 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DF5F4269BC562B5BD2FDFA30478E65C3 /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E851D8F9C5AF90AA68534DA5E7C63B05 /* ratelimit_strategy.upbdefs.h */; }; - DF6A7695813189A6BF371F38396845A1 /* call_hook.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = B9A81380A8385C0DD78EC00D30758649 /* call_hook.h */; }; - DF72F80FB9E4222F15A779FD17F9B135 /* listener.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E7059C777F52FB40E3270BB695A004B2 /* listener.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF734438A647AF7925F81F2FAD60D568 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A2CEC4E173568BB8D012C330DBFC3F /* address.upb.h */; }; - DF74A1F8BD56CF9DDC628BE09E4D5871 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 8076E629B1AD63CEC0F648DFB553848B /* uri_parser.h */; }; - DF7B2A3C9B1A81D32F8F26BF2702B6C0 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = B24EF83E43B5A3D6F25A6207DDA19E04 /* transport_security_grpc.h */; }; - DF7E893DB1F82152ECD5AC53A3FD5DF2 /* CrashlyticsRemoteConfigManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6C07109E071FA6F5847EF4BE130E9A /* CrashlyticsRemoteConfigManager.swift */; }; - DF93DF5E18CBF396617DF222B9C5995D /* refcount.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F313D31660106ED75D753131C795BCD /* refcount.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DF9AC7DD95CD6B4ECBB3AD1397198752 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C179F184CD9E03E11DF9E1B86964DB99 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9DB5725BFB2B57217B7DE3BAEA6CA9 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 90D435A5DC3265B7838260F5C4A59227 /* udp_socket_config.upb.h */; }; - DFA43180FD5D1FFB6636CEE47A7FEAD4 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D4FE31E80C8C0A0A7BFC7DF6C05F8F /* security_connector.h */; }; - DFA4C1D884E983098C31C7EF9FE25C32 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = FA8EEA5B633F10D23BD02BE10E6D5560 /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DFAD1FDA515A29F0E9AF73B862ADF273 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 080EA6A47C9E27149530F39654EBC700 /* status.h */; }; - DFAF68BF2F49B3491CD53ACC9CD9AA86 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C03F6349BA146B9444A36F1B2A77ED50 /* hash_policy.upb.h */; }; - DFC11CE7E34ADA41B30BB843CC1D7C78 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 20ABB2EEF3A7AFDE2B5599A25A4342C8 /* completion_queue_factory.h */; }; - DFC27892D6F8535CBAE890263BAE7099 /* decode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 3D6701255A45809DBF8E82CE47CA4556 /* decode.h */; }; - DFC3C714F12CDA309F85FE1D7774A76F /* round_trip.h in Headers */ = {isa = PBXBuildFile; fileRef = 00CA6717C30CD4487F9BCB1353686864 /* round_trip.h */; }; - DFD0B75DACB8079631740712E45ED192 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 941C2D84670D0815466CAF7CD7A12221 /* http_tracer.upb.h */; }; - DFD4E92ED512A1230C5702496754D68A /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 52DEAC978A50674DEE3C92CC23EC1061 /* tcp_connect_handshaker.h */; }; - DFD7F7E74B3F20136F3E1B3665086725 /* enum_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FF8152BDB140F99184C4A21CC60368 /* enum_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DFD823787E288A85AA70780AB817F253 /* backoff.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B66DADE975874A3A38B8A996184055E /* backoff.upb_minitable.h */; }; - E00EBB67128E82A18A0B098029EC2950 /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 909609CA0E5DE4BD2DBF858FEC02F52B /* trace_config.upb.h */; }; - E0112810840C0B5708A3A92D78D97129 /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C45318CA321F9F5A311656B3948B753 /* config_source.upbdefs.h */; }; - E0129526CFDF3FD2D34C6CB479684462 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 9AFCA097D32BA82AD38BAE6CDAD9A544 /* annotations.upb.h */; }; - E02D2FEC284C87DF38A3FD1E6959AADE /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = D7E837412B9B5280E47F78B5FA7999DC /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E02F83932B9ACCC32DE1C788F9AF50A6 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6480C95F39734B254282D5EE05466F /* matchers.h */; }; - E03A7AE974C33348D22241207653B0CA /* oneof_def.h in Headers */ = {isa = PBXBuildFile; fileRef = B48B5ABF007753289FCC5D5A76CCD2CD /* oneof_def.h */; }; - E0445DBAF93597B87AE14C3A36F1B78A /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = BE6DC61165256E70946269D20C560E6E /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E04B4B97C3FCDAA9E4287E0C3E57C9DC /* cpu_detect.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AB1CBE2B517F0D9BFA828547100D2767 /* cpu_detect.h */; }; - E05744CE1E5CB3CB782AA94236C961B4 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 3048EEF3925C8EC3331D51C085A6D1B3 /* alts_grpc_record_protocol_common.h */; }; - E065786CD0609947EB692682214C2335 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = FF78724F347DDF3D347E42FB0B5D6C38 /* xds_routing.h */; }; - E065AE14ECFF9D6EC26FB7AACB15E33A /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = E170DE80FC9A57A810D09A23977D4A9D /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E0664ADA5D8F9E52868A5BB405B0BC52 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = A15A6A181E28B626E116A6FD1502B625 /* slice_refcount.h */; }; - E06BC90DD3177D29406C0648004B5655 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = C0D846D2DBBC8F09A563A2AC4E3641AC /* promise_factory.h */; }; - E074563E39790D0073644F4470D27BE6 /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = C63FF0FF43858C063B5A49A2B461FA8C /* str_cat.h */; }; - E084AD2B401BED4EFB4AE7EFD0CE315E /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B12C3BF47A010032C7302640546A8A34 /* trace_config.upbdefs.h */; }; - E08DCB9D05DAFC5DFA22ABE528840E47 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = F049D4FF25AA095F535A2F99F7AB2072 /* alts_record_protocol_crypter_common.h */; }; - E0937AA92B6187F56BD3247CE4605DFC /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD97479931121FF94FB89E06E2CFD05 /* FIRAuth.m */; }; - E0AA750C7CB301FB880D0E431849CA51 /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49C5DAC0E6990A9B6DB03260F874B1E9 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E0ABF90F28E42173B0F22431E83FB6B9 /* flag.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 22DA1B34299944DC24BE5C4C7C844A27 /* flag.h */; }; - E0AC51973DCBD63D9751A66311B55EA1 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */ = {isa = PBXBuildFile; fileRef = EB94B717377CC1366DA46A6B02E66074 /* internal.h */; }; - E0B07A9B5EDD74307C83F36F01803605 /* config_dump.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 311B2F0020CB8374F54C219B9BDA3F95 /* config_dump.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E0B427E0379D7B183999D3A49BCEF202 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4087803685CDB7440B339D1372134AFB /* message_allocator.h */; }; - E0B650121547FD52426AFFBE5ED7CDED /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 21AFA0901CF5DFD241413068F140FDDE /* uri_parser.h */; }; - E0BE882AA343DB7F3D7D205A7ED949DB /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CE9412F2A90EAEBF84CBC0CE8F2821 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0BE935A2D6AE1170C2249D30A8C16A4 /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1831CDC5BA0E5FBCAACAF59D5AAAE455 /* init_dump.upb.h */; }; - E0C0694E2C3123BAF687F26D5419F8BD /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = 350D01C3718DC2F00ED3C396DCF5645F /* pkcs12.h */; }; - E0C37958646DC5EE6E4C0523A4661B91 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = D22075F997C58D0A5FE641D295895A6D /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0C729875CCA84203BF7012324683948 /* non_temporal_arm_intrinsics.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2534A0F9CC1A29AACEE4F97AA19DD6DA /* non_temporal_arm_intrinsics.h */; }; - E0C7D136BB15A33C07EBE54DD7DADDF5 /* errno_saver.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 768719912AA1F40F518F31997E057FFA /* errno_saver.h */; }; - E0D4DEFFC8D83545BE361E2C36EE7E4E /* protocol.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE82615689DD552F4520E2C4722B799 /* protocol.upb_minitable.h */; }; - E0EC765764B1A7057C56CCCE3376C3F1 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4D45C2DA327E6AFE110B327575871C /* grpc_ares_ev_driver.h */; }; - E0F67B59ACF45B92F3D307F338F1A6A8 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 09554B85B9BB9D3E4261E19A129ABA3B /* client_channel_factory.h */; }; - E0F73B355B5EA3B56C45B45860CC5FEC /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B69505FABDCC555D6009945F12735ECF /* accesslog.upbdefs.h */; }; - E0FDA3FC550D61A42A350813B729B34A /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9C8BEA52AE05A70FEAA9C46C68D1F9 /* tcp_socket_utils.h */; }; - E10186BD0F0F1350E79662BBE1EFCDAE /* event_engine_client_channel_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 246A516642BE55F7657074E2706D2D46 /* event_engine_client_channel_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E103D7BBA00EA57B5539C33B18E0BD14 /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0D6F4C85A7A6AEEC4A1304E1920781 /* struct.upb_minitable.h */; }; - E10CF7EC144D222D357314821BAA2999 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F79E4CA2C72C286350814AC67719439 /* lockfree_event.h */; }; - E10FD5F6D75011BC33D2A310D5DC540D /* charset.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF3A7DC0D03217AC4D44C5383C07044 /* charset.h */; }; - E11B6A8025FF90CEE1E8EF37FCFF2EE4 /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A7DE1D28003AF9437D573960C616EE /* c.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E11F01B9522B11585F09A6A42CA04296 /* arena.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 72D6A644BD7657DDE516553B99B159D2 /* arena.hpp */; }; - E123AD9E22FCFB7986C868586FF5AACC /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 810522A277DAAC03E9AC86949AE446C4 /* percent.upbdefs.h */; }; - E12E6C4A01CE24610A641E64E2FEB017 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 580D971E48192439E30ED565CD3E7BA7 /* cluster.upb.h */; }; - E13E2C9C527DC8D3326454627E6E9CE4 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7C64939D0AC67DF4ACF4009701520E /* transport_security_interface.h */; }; - E13F250DB749AC30348571DD62FBB9FC /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = CE2BFA5DA10C49E4D193D714615E569D /* api_trace.h */; }; - E140E1BB8C23FC575644DEDD1CBE90E9 /* buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D8306F7411BC6F01741978CFC90D42F2 /* buffer.h */; }; - E1474FB2218D08E861414475BBA05BD4 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BEB6F8DA81993094A19FE38374E716A7 /* udp_socket_config.upbdefs.h */; }; - E1498B174E39984006B27C537640FD48 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = 67CAA00E44F05BDF090828F8771D41FC /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E150BC23A0DFAC72651F17E54BFCBE1B /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E908D3F5BE15DE2B75D64E186266B9 /* http_status.upbdefs.h */; }; - E15821C4EEDAD3F0B271A1D4D434409A /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA89EC8E54AB0BC2B88D805A3E27C0B /* trace.h */; }; - E15BC48C8B56F39A6594CBABB90D11FC /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0373CD8B488CFE88CB7138ADDDDDB854 /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E15D7FA8A6D7E8F3A18D00058D4F60A6 /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 66403CCFE9F8B97AEF3187E718BF6BF4 /* cidr.upbdefs.h */; }; - E160F48393209F4783FCDBD1BCDE47FC /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3E1C09ED086985A19DF20EA4DF4F7811 /* xds_transport.h */; }; - E1758F8E5475BB3428F6F134797D0E3B /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3D5F9296C14DBFF81B04B16BA70F8103 /* cfstream_handle.h */; }; - E18DED8F520E449357F748ED5EF2B1CE /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A7C17AAB8A5DDA234199AE761509086 /* alts_counter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E1A312AC37773BF5027930882B03AE70 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2886C70DF5B59B998B6C5C6B5B47A7A4 /* path_transformation.upbdefs.h */; }; - E1AA47DF616A1B4B7FBDC8DE2E63BA76 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 71C6CBF8AF3D699E0FB8CEC8D73D1574 /* base.upbdefs.h */; }; - E1B1C5614EB405C49DF63C0F5A98DAD9 /* FIRLocalCacheSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B355B8835E022E15E98DEFA149A073B0 /* FIRLocalCacheSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - E1B3E76AD3ACE2D24839022E10B1A393 /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = F72135E5B06CBD9D0030F2369E3AB368 /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E1BB0460497438C8B0000CAD5EBCB515 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AA89A569C790F3C2FFA41763333C8C9E /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C46F80F3F3C4C708BF8219187AB738 /* Promise+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CB0FB21637F4692890C2D61FA3520D7 /* Promise+Async.swift */; }; - E1C90E297C505C2B91F090F4E25C926D /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B72DF2E7F49B3504CC37B6C19B57E7A2 /* cluster.upbdefs.h */; }; - E1CE2937F9C63443FDE88278A496ED93 /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C73F1E9F5635FCC7AAEED4F49F790A46 /* certs.upb.h */; }; - E1F479DD938A4A8D8AA4FE2B2178FFD7 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4859F854E973BCDD9FFB2CE1D3AD7E69 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E1F5F964620E2424D7EFECE8994DFEF7 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5935CA6AF36E9658A45CC190FB56FC /* FIRInstallationsIIDTokenStore.m */; }; - E1F8EF6027D0EA64932B26B7A1F489EC /* statusor_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6D51DA8EADDA05D9D7560228DB93358D /* statusor_internal.h */; }; - E1FCCDE52B1261A4D678A24FD306E927 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 08963ADDE2AE3E2235C5A6607F406B90 /* channel_stack_builder_impl.h */; }; - E200B961F0694DEE93CEC084F9B2DD1C /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B599DCD01FDAD8E70471EE517823F4F6 /* outlier_detection.upbdefs.h */; }; - E203C0508ED5F02A88990ECE32DF0252 /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F3A6625B18A30411B7675EE8630A38C /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E2052B2D11FA705F0DBF307E47FA57E2 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 22123E72E91C952F1F45CE87E9BBAB92 /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E21798C3E71EFF923BEDF2632970D50C /* endpoint_config.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = E25B12A60770DE7D34F34FCBE64F6720 /* endpoint_config.h */; }; - E21CFECDD1132AB05E3C16FB1090C515 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = D994AECDF2F721A8D73C4B221D28FADA /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E226ED6ED3BCB6111760A37CFE4D89D8 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = E2EABA3DABF95C97EAE5AB4DBE52902A /* FBLPromise+Retry.m */; }; - E22A1BD61039445FE245815A06AB4C46 /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 502DA3927CC2E63179BA8FD452C9BA7D /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E22A5472E0A5A722EFF387C1C6256495 /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 94F5BFD988E49E321C7427532DAD7BE5 /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E23345CDB48AFBB02C52E746C2032EBD /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0478AEC8FF31FC553417B47811316164 /* iomgr.h */; }; - E23631B2ED20025F6530F4E7471A846A /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C89D49ECFE3229F3C92A7776DC305465 /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E23D6E04AB41332BE60F662FA17123AF /* delegating_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4174064B37FD5F2E7BC6604177BDE1E0 /* delegating_helper.h */; }; - E24CC01084B2A15A00355BABACB649E3 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 049E32B76FA13134E08C57B6186A7F23 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2568609515278536414F3BEA9E03514 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 843C6D8A6F7F13AF30F7364B73158E5F /* protocol.upbdefs.h */; }; - E25ACF639FB4F673765E002E86824A95 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC39A6B79CCE6B19310DE34BC2EB2D4 /* sync_generic.h */; }; - E265876C53B803D5138FA8A87E4317D8 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A880624FA29148BD175E18911D13A75 /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E26A3E041E41680FC51229AE1DF7D25A /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7088B009656FC6E699611475339E1515 /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E2718F4BB42B91FB896EE8C5C2772471 /* syntax.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 33203F2348F3ACFD38A5FD16D9FF6B5A /* syntax.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E286CDB7B1AB998FB4F9C21A37795FDC /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A43F36F08EB3E41DC7E9E60DACB69BAE /* opencensus.upbdefs.h */; }; - E28832752F9433E921CC39A9AD20EABB /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = C1D4FE31E80C8C0A0A7BFC7DF6C05F8F /* security_connector.h */; }; - E28C3197A3CC385168C733F75DFFC3F5 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CF08400BD33896282B6DFE2D08E41224 /* FIRSignUpNewUserResponse.m */; }; - E29235EFEC8F30F3EC6A9C4B215EA41D /* Promise+Always.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F0B78A6341DD63C0C648949361B608A /* Promise+Always.swift */; }; - E298FA684F46D61E1C914C6F50C1B446 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC52C321879830BA38EF4FDDA7783D69 /* http.upbdefs.h */; }; - E29D4D2B53370FCE7412A421BED92CE7 /* internal.h in Copy crypto/bytestring Private Headers */ = {isa = PBXBuildFile; fileRef = 4190C111896418697CA40682B4383BA9 /* internal.h */; }; - E29DBE1BAE1D3E77892AABA235714551 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = B34A57AEB70C9888B5DA75870D26DB58 /* sync.h */; }; - E2A6E5CBB7DCA1880CCF5AA6F7D03D0A /* arm_arch.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4A6417B4349EC7A7B291484968C152F1 /* arm_arch.h */; }; - E2B011576BB9D2645E54F8F2B0EB920C /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = 173D7471E32E8A1DAE8039631B61E55D /* str_replace.h */; }; - E2B53A19075E3E626477CF2D5C96B97B /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = ECBEC4775CCF9204F38641A35EDEE1F0 /* utils.h */; }; - E2BD32324D2C94AEF1FFFB261110DD84 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58ED0090FBA5948F913DB3757FB9E8B2 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E2C3F78BBD88CCB25715049CAD823B06 /* stringify_sink.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6A6BB510A355A845EDF909A3530D57E /* stringify_sink.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E2CA5A8A9E29574EDA96E96CF2EDA5FA /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D0DA33BEB53214E8C1844A491FC4C1 /* http_connection_manager.upb.h */; }; - E2D3C2EFFD690DAF2FB5271AE850176C /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 904A6B63DB516966B1891D67BFB3D02B /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E2D9CF72A4C4C70145E837A0D7EE2827 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = F015C18F0712354900C78AF54F7162E1 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E2EA04D8846529E8E781B3DD0EDD0A4E /* try_join.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = CF61CBA82DF5F7A04844E76945DFCCCA /* try_join.h */; }; - E2F1774D4EB8F71DB2D32635BD63CEC0 /* ratelimit_strategy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A614B5F1BC1257CECC9B6B10D3874C2D /* ratelimit_strategy.upb_minitable.h */; }; - E2FAF9BBA284A2DA59DF7D4DC8D56E46 /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 538F677A536A37E99B376E463558C7C5 /* grpc_ares_ev_driver_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E308DC3CA68D8E6C16055A61DECF377D /* seed_sequences.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B027159E4C3BF871FA7457D3A4C542D3 /* seed_sequences.h */; }; - E318E764D6498ECF907927E90C445354 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = AE25C6BC09D11A6EFE958A15BDB92F5D /* FIRCLSUnwind_arm.c */; }; - E31AF88F1F80BA10612349F044746C81 /* thread.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C952DBE8547BBFA78052A917BAEB04A1 /* thread.h */; }; - E3238062889CB218D5F59150B2A3A083 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D974FCD2BA452401184A26F2C1A3B47 /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E328F7861843B0CA7BA5C2526C5381E5 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0644C393372B0B7C2B0564E776267B05 /* xds_http_rbac_filter.h */; }; - E33718D962CA34738484CF570AD0FDB4 /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3217112B6747670F99C1C88A0A7D6A2F /* lightstep.upb.h */; }; - E33A088266DC92FCE8AC08AD9D09885E /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4B77B11683510E8116965F762A5EFF50 /* xds_channel_args.h */; }; - E347E732B07ADFCF72BFD37EFA44FA05 /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E914C1AB3867B426CB1076E298764D6C /* regex.upb_minitable.h */; }; - E3526A9CCE0DB46ECEECA569CF2C837F /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9ED33DA2ED0AEAE52881E172A79B8C85 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E3672BBA04AAA3DBABF25227F0BBB787 /* pick_first.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E171821360A39197AA87F5A2C552C2 /* pick_first.upb.h */; }; - E368ED3945379CDB67FF06EF8569D632 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 82F16679B0F2076A1B751922EDD997C2 /* message_def.h */; }; - E36C74F2C5A07A96482DED5702A96B45 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 669BFC0BDC51A3E8373E62004EC6D077 /* resolver.upb.h */; }; - E370C28CF18BB0FB6AA69ECE28F10711 /* security.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A46FD0684FA228959B2AA0C09D7A967 /* security.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E37F88A97B40E0FE7D74202659AF54DE /* metrics_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C632DD4E7C4574623D384D4058B461D7 /* metrics_service.upb_minitable.h */; }; - E3824809BF41F1054E405846E60707B4 /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = FBD2B6836CA113ED9A7041F95D64BBF9 /* idle_filter_state.h */; }; - E383AB80C1784B6981BFEFC1A1F2EF6A /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = B48AB02D0B00ABD75D07444A1F748E33 /* per_thread_sem.h */; }; - E385A9D261B6C997871D7C75E7E1A11E /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = EB7F111EA56A29C4F4E778A217A5E149 /* compression_filter.h */; }; - E390A2007B50C17F5F24C6A1CB6F534F /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE14FC8CF9AD7841BA103189494604A /* prog.h */; }; - E391D1115AC89C1D2CA1511B9BD2BE2F /* discovery.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E635C530CFBAC2507E8770F884BE05CF /* discovery.upb_minitable.h */; }; - E3981F43DB708BE29F36FDF4551E5040 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 629F6B649CD6F57074D0E091B657D868 /* transport_security_common.upb.h */; }; - E3A7BA1315A342D9CD174C0DD6F3DEDE /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 54585CE9BE7A298EE5149E399CDB1A01 /* FIRMultiFactorResolver.m */; }; - E3A8613B09E87EEDFE899EE2C03F4751 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0AA008321352369CD72CB38BD9B2F615 /* tls_spiffe_validator_config.upb.h */; }; - E3AC8ACC1CD3080E1E30640A758E7B78 /* security.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C0A6B12C872298674E68931C00B91E0 /* security.upb_minitable.h */; }; - E3AE5585CAD9309E63226FED60D1331A /* config_dump_shared.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B56599B8C49C23ADBDADEF383DCDBE22 /* config_dump_shared.upb_minitable.h */; }; - E3B7DCF95F4FFB9D28DA730128E64558 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6CFE7FF67C34A127FE34AC261BD95D /* lockfree_event.h */; }; - E3C097807D64D62A2803E6A5F4A7908B /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FFEDE59AB7324E65D95B4B762838E40 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E3EE80AB5DD098AF936CD9EE24F724CB /* trace.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 91E956A136315DE3D786D3336048AC1C /* trace.upb_minitable.h */; }; - E3F05474B22D3BACBCD6890A8B4398FC /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 958730C2973972898C513AA1420D0FB6 /* stats.upbdefs.h */; }; - E3F5C08BEB1CDF9C4087A204AE56586A /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC417763C719CCC0A3149FC25D2C31D /* xds_client.h */; }; - E403641E425D3842F1711374B2CC63B4 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = A40F7714D2DAF0C998D2C77F9404C6A5 /* event_string.h */; }; - E40E3F84AACBAF918A53872C511ED943 /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C2E1019859884E9A90C5D1E1A9830BF /* frame_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E417BA491946362C0D35B0A8D399BDEE /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AA4FBFC848FC8516B27AC7768A419A /* checker.h */; }; - E4199F715166657E659400A8F01F95EB /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B16C75FB519B32BF42EC5C0EE71100B /* error_cfstream.h */; }; - E45C7B6FF0977BF6A1D2D1006D117127 /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B9EEF88483D909591152478FD34657 /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E467D351517FA2E809774065927AF488 /* status.h in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = C0D14788684802295667C4E2D8E7ACE2 /* status.h */; }; - E4686A07D4F14817AD51AADFBA0B7C77 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 885C0589F2AA6A9A391C90CDE25AB160 /* sync.h */; }; - E46B480849F81691AF7D982594D7AEB5 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 80D907121D1D9BC6F9EBC6C528E435DF /* load_balancer.upb_minitable.h */; }; - E471955BC92C6150D6E286AA9B44C18A /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E467AAA73A01DADA494B175229EF6B41 /* alts_record_protocol_crypter_common.h */; }; - E473B8482D15324E3ED2D438BB355CC6 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 114CA7DC135987BBED7D35D169CF295C /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4904E77E93A9F211110C4632034F0D4 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3508CDF38A29719B8A3E88DF722473F7 /* router.upb.h */; }; - E499E8693FEF5D84E68AB1271B54EAFB /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BE09FAD7341D06C4030F1B98B695A334 /* extension.upbdefs.h */; }; - E49A3A7150445CB67DA3F336BB969CC5 /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = E70296D3D8A6B35D69E50D2FFBCDF34B /* sorted_pack.h */; }; - E49E7FD6BB6B08F9B533FC18D067691C /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5E2024C729565E7BC4D7A871F51439 /* resource.upb.h */; }; - E4B0A9F39E6AE6063EFA4A1AA508672E /* internal.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = 76D0689D15775B592D106AD580953C4C /* internal.h */; }; - E4BA6A9BCB41E66709687394AA5ECDF3 /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86D43A2A14CEFF459AC5345025B08A0F /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - E4BADB7DA50501DD66691DD54FB0A8CE /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = F5027A68721D70B93A90574340115C6B /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E4BF14CD1896AF3D8D298A549EABB6DA /* query_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A469B173E26F2068C5D90E1A9CB894 /* query_extensions.h */; }; - E4BFE4BF9CFEF921FC29CD76A92C923E /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1EDCD53E124BF489D7C7628A806F45 /* tcp_client.h */; }; - E4C0A3416A184221565186A1DD8ECA43 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 83B85BA075A32E77AC9B46823F9AA2DB /* slice_refcount.h */; }; - E4C3C5025457AEEFE0167FC82A35679D /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C9DD55BAC6CCA072A3A11BFEE1538646 /* FIRGameCenterAuthProvider.m */; }; - E4D4B403B99087A6A53F8D50483B9C3A /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2B6FECD20BC6E4DFADF160D473AF05 /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E4DADFCEA8248CD42715E377E1FFDF4C /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 909D46CA513BC8002BB09AE2C7F1725D /* GDTCORDirectorySizeTracker.m */; }; - E4E66FCA5FD63575B9963E807CD5796A /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 490DD9278EBE747AC1EC28949C858C77 /* single_set_ptr.h */; }; - E50436E9F5EFAB2F3E26932E046094E3 /* type_list.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = CC5C43FB3047699413CEE92B78EF7FD6 /* type_list.h */; }; - E51A412D15F5B55A4A24D936A363370F /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 48EB8CC18BED98A0ADD5D29587DC432E /* wrappers.upb.h */; }; - E51FEAB90A53DE6F820C35147010DC2B /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = 284CD913B42BC19548BBF62F11D9FD8C /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E527E99B70699CC6AA4D839D9ED515CC /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54824719B82A4E204CEFCA107F5FF9F4 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E52AC19F503CAA58CCB5630FF6575590 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9F22DB1F0471DF342F5F9CA90466D8 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E53016226885A41CE4E55DA74F664655 /* polling_resolver.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 667A66E6D5337C3A205A8A270F03F90C /* polling_resolver.h */; }; - E534B988133220DCBD28F3BBB9BBAD17 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 44D0E511281BA138F8BEDACF48081A96 /* channel_stack.h */; }; - E541594DAF63A1CFAC4B2D455B6902D2 /* xds_client_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9311926379A43C63741253ADA5BA7B26 /* xds_client_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E54F71F4503AC8C5835A8E225EC4C013 /* SessionCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9673F54ADCA77A6A0BF04717406F7B2 /* SessionCoordinator.swift */; }; - E5563BFF1714C302AA8195B6B00D9D8B /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = AE1F206BD93F146348A18FEFA2AD9D62 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E55FE971CF4DB526B13D804A1C8B5606 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEEB264A3E73118083BE640EDC9EB78E /* TZPhotoPickerController.m */; }; - E575986F83AA65A3EA77AAD74C909557 /* party.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8AAF2AF9AE3C15B23A7AA4D368C2B5 /* party.h */; }; - E57B8CF18A511584F2B24A38D994E840 /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D73F6A4FEA15C1EDED3195027F787912 /* interceptor.h */; }; - E581986CEEEB21A0B65F66A044A544A0 /* compare.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 69D37BD89DADBC7004676D391DE9926D /* compare.h */; }; - E58247C4962EA3EE16272F82457E9BCE /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DA65CB265106BBDB906AFA1A73D94F /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E58F8377B14D2EFE8938B2A1DC945A69 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C77A805EA36913262D0D0D15BB81F6 /* intercepted_channel.h */; }; - E59C021D68658F59BD8E62DE42F5C113 /* metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B95126D1C097DB1144AA079B89C5475 /* metadata.h */; }; - E59D021508FE56CA806F064FE6C7D6A3 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CF1A50523AF025EE8B6510F5A35551 /* path.upb.h */; }; - E5A05F72CB9CE7DB2A6FF6FB4C3AED92 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9732A2625BA75625D71B2B2AC2B435F3 /* certificate_provider_factory.h */; }; - E5A74DA9FE3DC5718682F4950E6E055E /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 48C836880CF27D45A8507DB4670CEC6D /* json_object_loader.h */; }; - E5A98E5E79DAE72564F1EBD898626052 /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 37B6521E711FB954D237FCABFE225468 /* extension.h */; }; - E5B99EFBB3692B5A34D6A30A271F0CE6 /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD32FAEB205E316EE3B385ED08A02D9 /* http_tracer.upb.h */; }; - E5C73BCDB3A5F27652B1027A2698843D /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = ADF1EC55A7840D7D65334E05BB08ED73 /* sync.h */; }; - E5D33A55932B7C324988D4405C1C33A4 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 497ACF4E1ED7F22EF93E88A828356EA3 /* memory.upb.h */; }; - E5D5018AF35A149B1D9568419DFD2FEB /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FEEE2F54D1453B2E937414B9DA9239E /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E5DC2F96B6597B079D61B3A091867C75 /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8A33D2ABDF42BFB49A0F7F9AD718FC6 /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E5DF28A0B7E5A8BF230F952A4D0D0823 /* TZImagePickerController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6008F4B03A64576334FD4A984B73B4A /* TZImagePickerController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E5ED2EFB074611AD0F7DF479D463D0C4 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FD7A135F69389BA089892887FC2D8416 /* xds_transport_grpc.h */; }; - E5FBFBC0FC018D192326AB58605BD4C5 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 18FDFE3FCAE57B5A371A398792A524D2 /* cancel_callback.h */; }; - E5FC5532403C490B6CA17B9177429D98 /* server_initializer.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2DA336E705E4C8A048DAEB1CDE1E8FE3 /* server_initializer.h */; }; - E5FD5312DB39AB2AB1EEF5130B576623 /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CC82A32434761FFB1E07E584418FA6 /* tap.upbdefs.h */; }; - E60C7E7850732A1E15BEA6D438A10AFB /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A00B158EF5AAE2C6A0A5AB6360224 /* flow_control.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E610B6CD3C3C4717EA14F1DB0BDCA3D7 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CFBCE5F3AB47FF5CA432FE4158D673 /* FIRInstallationsIIDStore.m */; }; - E61E250378C86D6569390813F8B104A3 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F484170A01C350DD0FF4C57CA8FD7A8B /* wakeup_fd_posix_default.h */; }; - E6251F02EE12804D1B66AE32E716E664 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99E1C94134C0DACE4FF56935715F0715 /* SessionDelegate.swift */; }; - E62892AFEA17D4582C708F209D30401A /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B956BA04FBDAA20BBB7AB7E1BB902B37 /* wakeup_fd_eventfd.h */; }; - E62D04A40E883DAB59B0C8E0FF1507E5 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3735C6F76766779697371BAAB8B52A /* backoff.upb.h */; }; - E631152BA7CC97F79F753CEA2A2A7033 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FBAA4FE8E6281D16D1C5E888DD2EB5 /* global_subchannel_pool.h */; }; - E641CCB5D58ED98569D0D3171D236263 /* compression_types.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 8A15C70CD39FB77AFDEE0E4387E62796 /* compression_types.h */; }; - E645ADCE4B7697B75E9D5FEB5B3D38F3 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EB8C2E9F30BB69814EE696EFCEF3FF /* internal_errqueue.h */; }; - E648C6130606066326885CBFE4F814EE /* byte_buffer_reader.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 07D4FF87953A26155279B4F7AF654BD6 /* byte_buffer_reader.h */; }; - E649E20CBF0360D29432241983A3809A /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7915F10C91C7C74007B224B744E3B25 /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E64A4117A300721B75CF441F0FDC283D /* base92.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B3336DA156ED730A3F20B6EB785FFD /* base92.h */; }; - E64E0E010F580521E54E0925B3FB6E6B /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04A1DD31D05F56D425D12B17F770FBB4 /* fault_injection_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E64E8BF76284C2D5F5E54A47374B57EB /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A677245B2F09B0FC161FFA4D1E25AEAC /* cluster.upbdefs.h */; }; - E65E74C4E78D96CAD69D605C23305624 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = D7D22A92A07B1F81CAD7BAB7E848B975 /* backend_metric_filter.h */; }; - E663424E298506D26CE8CA407251E664 /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 0B66DD403FC65637B4E716868ACB1AB6 /* periodic_update.h */; }; - E67118966A804511EFC41AAA97634281 /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 269BC6FB2B0635713C50EAEC2BA4B6C7 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E677DC8529CF15C0EEBEAD161D4012F9 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3560D7B9BD5D649FC5A38540D2B355 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E68A8986A5DB04FEFEBBA93CCBC6D621 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F5CA0B9C9BCAD27A3B7A56970AE61C /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E693B51C8BC10F8702BBA5CDB18126FD /* undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = A569231358F2A69A54906D2EA6EF8C9E /* undef.inc */; }; - E6950ABA062B8A4B506EE57FFECB108D /* wakeup_fd_eventfd.h in Headers */ = {isa = PBXBuildFile; fileRef = B956BA04FBDAA20BBB7AB7E1BB902B37 /* wakeup_fd_eventfd.h */; }; - E6AC54C6E0C80F548DD8804EAB12200B /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BB263A6820C1D0DE614AA5A4F17ADC /* table.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E6B07E383253A6762C08918909E43A6D /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCF9475AEEE597A575C32D2855977A52 /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E6BD8D3A370853E72D32C4133B7372CC /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = B17A508793F5BC60CAA2726318F0F82D /* client_channel_factory.h */; }; - E6C07D63D6307DB8C3969910604A6302 /* rbac.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 88ACD2B1A963CF3372CDE2B108EC1B7B /* rbac.upb_minitable.h */; }; - E6C3576525DC87D0161585AF256D13B7 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D859B5A062AB1920F2AA5ABB9CBD8D1 /* handshaker_factory.h */; }; - E6C543135D7FA6E96723D61421C0F6C3 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = C08867BA63A421476B9EBDA61AD624F2 /* time_averaged_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E6CA281EABFC6C00D5F68F732A0307E2 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6E5DBDC9BA7D9917CC377DF7AFA27 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E6DB2059EA3974F24E79BA5C72D5D8F3 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A32880955D94FB6982150FE42C323D81 /* timer_manager.h */; }; - E6DB8CD0CF8EDEC41572469A59CBC56A /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE14327E64A00A939E6BDAAD1159AD5 /* certificate_provider_store.h */; }; - E6E0A3271110542A0CBB367B0A77058E /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 600106C9B6F709D937C5ED71C360C975 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E6F09E86146A00D3D8FCF642D6379278 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2AE0F987A2B34BAA32D574B0EE9BD7 /* xds_credentials.h */; }; - E6F2DBEAFB8748D1E833F8D795E76C17 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAF216B717CCDDFC2F92F674F290AE4 /* time.h */; }; - E6F2EA9BEB31A390EDD28BC9983AF620 /* resource_name.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 948F8698C35EBB05F513A0DD984E99E5 /* resource_name.upb_minitable.h */; }; - E6F3CA80450333406FFA711FB1A2FFCA /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27D6555784EBBAB6FBF29431A2809B19 /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E70055651B4227746175DB725261A071 /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB052F9DA7C0514242BF993DDF4EE10 /* security_policy_setting.h */; }; - E70EBA16751054574A227A6432CCE4B0 /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A559BFA6F00F83BEBAC3C38D228CAA3 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E71E3C3E85BEBBC49922329BA8C3B352 /* xds_lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 81BEEC032D651755FC18234633A5564A /* xds_lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E72829726A4FA46C2B3DB65466935055 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 78CC82A32434761FFB1E07E584418FA6 /* tap.upbdefs.h */; }; - E73434D83F52C04D2F7D74023B1141A1 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 3F63BF407685F3E26B3810890154A130 /* ssl_transport_security.h */; }; - E7378F61AD6959D5538E595EA4A48AF4 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3243580BB7CA8A3A17E07C964377F9F /* AVAssetImageDataProvider.swift */; }; - E7397AAB9D96B71B92E2DCF549F985E6 /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 490DD9278EBE747AC1EC28949C858C77 /* single_set_ptr.h */; }; - E74B1616D0C03A256D0812880C116887 /* datadog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 08EBDA96DA369EE4103C68DBD8044A6E /* datadog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E751FF6BECF2E9A1F4211290D23D98C0 /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6285C2A41D31E0D918DAB849DFE3C153 /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E75C9461A850E2407BF7D386A0EB6F4D /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD8037800081E70F14C42450159AB3F5 /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E75F34C116A34DCDF31BF39C899F633D /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D8E1F8A2C966F41AE032156EEB5DB54 /* config_source.upbdefs.h */; }; + D95B8E1DC27CFCFD684735F524F01097 /* FIRTOTPSecret.h in Headers */ = {isa = PBXBuildFile; fileRef = 734CB1E708E685C239BC13CAA8BD76AA /* FIRTOTPSecret.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D969BC4BBFD3F611F6C8F1CADFEDD4A6 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = AD869BB8BF39489293C759D4BBB92D2A /* filter_policy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D970E9AB710E4BD570422968E9D1C01C /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F6DFA830A822BCA0A1432F9F929456E /* stats.upb_minitable.h */; }; + D976856C7C09DC2AEB9CFF365E739CED /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = 098F61988714CCF7A406E19E34651607 /* call_details.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D97D9C683F3BA7C8DC19B075B29266FE /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 176A5B0F66088EF526E7876B5D3CA5DB /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D97E8BDB1C7F132FA83FDF279507D66A /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2408342D6767DD28091DA74A6CE45626 /* symbolize_elf.inc */; }; + D97F38167EBE60EEE439514B7475FB6C /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AE5CE95145FD657DDA9D7565829A79 /* handshaker.upb.h */; }; + D98DC598DB4B4A407C0DE5AD24F4DA8D /* posix.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2B2308941650B80F684250C20004EC49 /* posix.h */; }; + D99519BD29C027E4541E43EB0025D1F4 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA1EB7747C4A6A9565E59F2C72FFBC8 /* log.h */; }; + D997752A1070CC37FE74D52D0192C204 /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 012E135EAA9A9065E801DC3DFBDDB5FE /* dynamic_ot.upb.h */; }; + D9A19A6448135ACF7F1778A907CF9710 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A57A5811C7967BBB2E51CFF6F101F8 /* bin_encoder.h */; }; + D9B640CE6906E65DE7965DF7AB4C11B4 /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D5FA44CF02AC9B7057A21A128660B5 /* opencensus.upbdefs.h */; }; + D9B8B5E09C1DC9AE611D58BF17A1549F /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC9CC34E5656BF03856478F093ACAE9 /* udp_listener_config.upb.h */; }; + D9C062917B1F8838B0B2542BB80C2DC2 /* city.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AADC86E46CA501AE008201334DEEE113 /* city.h */; }; + D9C37F8D2E7C79F21ACBA84CD7EF3BC6 /* internal.h in Copy ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 502D05B50A0C8C96B3B32370BA7BA6CF /* internal.h */; }; + D9CC66222E55827BDBE32EFAB31B5381 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00482468D86619E488D88595A7410EBA /* KFOptionsSetter.swift */; }; + D9D47BEF29FD88490B6FEA71317BF90B /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F1E183ED9D8BB5C2547DD13F9CADDD /* obj.h */; }; + D9E0B669372D12702E262B7F867E468B /* iocp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 739847EC3427F03F7B98D3297D018B70 /* iocp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D9E481B2429B7ADEE6D90DF1982A07B4 /* service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C20FA212EEB61A4339D0E8CC188FFE /* service.upb_minitable.h */; }; + D9E59D8FA5F9F9EFD3888605AE55B56B /* channel_arguments.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9F7BCC45CB7F626AD4CD01C37AC4FD77 /* channel_arguments.h */; }; + D9EAE2ED3C272B17A050395FFEB79214 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 889ADA06A2820CA2210FED703CCEBFCF /* ref_counted_ptr.h */; }; + D9EB811749908694231C89B12269754F /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4FF7FA2D579817F3B8C036C29E8750 /* hpack_constants.h */; }; + D9F0E328AB660A1576CC0ECF4F03BDF8 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B977636DFC38E12ECD458C113B36C929 /* log2.h */; }; + D9FB00D80C97373E1A4C79A19C93C957 /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84517DFA9BF5E267A99B3899818B2B39 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D9FBA97851637F22C398C44E4CC25F95 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92BBB7CCEFA5796C2324B260A9DCB4B3 /* strerror.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + D9FF69B61892258E1C2F14F394F6006F /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C25901C8B51E6D24D12CC302CFC98BC /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DA03625820A2648C7F935A3BE2C23E47 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 257AEBFA1368B4BDC71BAB1A10C9DEF2 /* max_concurrent_streams_policy.h */; }; + DA06684DFEE3BB8A0D898ADAC28922C9 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3383727292C4D552095ECAF59DC513 /* matcher.upbdefs.h */; }; + DA0689D0232BC3371EF29379C4D327FA /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1C32B02D9053890FF4DCF44F13826B /* tcp_server.h */; }; + DA070D2536A1249AD4F706DA086C1D7B /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 690D44BE36AA3EB42CBD17F03F1E0B2A /* memory_allocator_factory.h */; }; + DA09C592F04DC7339697F3ADB86E8486 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = F75BC40316297BBE577D05C77566AEB4 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA0A54A184FC99AACA018967F5AF9AA6 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */ = {isa = PBXBuildFile; fileRef = BD44C5CBB0C1694F1E2BF85A78DCA9C5 /* FBSDKBridgeAPIProtocolNativeV1.m */; }; + DA0B4DF3A1EDB32DE389F9A11619210C /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46FEF5F8DE6AE73866CA82E709C88EDC /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DA0CA1A228CF3D47B29AAB6670738074 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44776998A0C99978A9FD74C471B48BC6 /* xds_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DA0FF58B13810DADCB27E1B6F9B2CC6F /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 972CFAA65278A82A8F172B2DBD183C84 /* ping_rate_policy.h */; }; + DA201F8EF29F73DB0CD2FDA735941933 /* bootstrap.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B634960A95BCA97A0BE96348A6EB9E /* bootstrap.upb_minitable.h */; }; + DA22308EFF16619377447E35E74E07B9 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9BB0C3778D693FCE2CEFD24104B35582 /* path_transformation.upb_minitable.h */; }; + DA2C3C5C85337C1EF993E67E75683E44 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 86B89D5B01B30CC1E5D53CA6C822AF61 /* bin_encoder.h */; }; + DA2FCEB6B8A20AA07BC051E4C49ABFEC /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = C00B7E2B969837EF6C7CCC66D9BB09EB /* FIRVerifyPhoneNumberResponse.m */; }; + DA30A84F062B866DDB324483EF4757A9 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D0ADDFC0C027A82A2D44555A82901645 /* handshaker_factory.h */; }; + DA4103B14D7A7A68F5A1601615D8E8C7 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6B5D905FDF21D8D5021957EEA5A57CF /* ring_hash.upb_minitable.h */; }; + DA526ED1E007EA1EC6870E1A40A93B8C /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EB94D32BDDECDBAD037608FC642CEF /* str_cat.h */; }; + DA5D749BFAD868A92462B8CF60D54EDF /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 01498FA2FD594454D5030E277156B269 /* slice_buffer.h */; }; + DA61467AD0E550D7DA79B87EA79C5C80 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 742226AB19A802A5DCDC782D705D2E9F /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA61B78BE645DB7351DD708616728F1B /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A1B0A3749AD88DC2BEF61A35A335A7C9 /* cf_engine.h */; }; + DA65DB70CEE00D22A47E52C19E0B5DA7 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B22D517D453794E612F37523DF0893DF /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DA6967207F24F0C5745FD3DC7A7AA8EC /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 6525389FA7B80AEA234429F128D2F1E4 /* call_op_set.h */; }; + DA6B606D62F44684C2C4B6E6BB1BC4CC /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC839390EA479EB59EEB42FDA13FB2BB /* alts_unseal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DA714D878CBC79A98B5D8035DC49E37D /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD74B37B35DA29E3566EE1200BF4896 /* xds_http_filters.h */; }; + DA74FA34A04143B6C4E178A2EAC7E6F4 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2F06BED0F0DEB5FAA93ECB1106DAB55C /* xds_route_config.h */; }; + DA76273F008ED75A6AFC79BFA486914D /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A3FAA1E303655DDF15F2B874DF44DBEA /* route_components.upb.h */; }; + DA773AAC8F225746831936FB0F6D1629 /* platform.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = ECAE2ADA81A8D75426B9F66DBB83CD85 /* platform.h */; }; + DA78C7D96F13A265886D3E25007BFE15 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E024C808727C5291D48EA0F6FE16865 /* migrate.upb_minitable.h */; }; + DA792FF9315A3916ED023A672B91E52C /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B553942BFC0863E2B17DA9C542AD769 /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DA7A3373120A224745CC577D878C02A4 /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA6D9C3CC07AD4A10559938D24BE07B /* str_split.h */; }; + DA7EF13F11BC528C309BF5F0257C326A /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FC711BC18441ACC64B72AB6710E87A /* xds_http_fault_filter.h */; }; + DA83FB5C0DD14AA6AFFD12611F82A537 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 12FA76E16D2C2B018EBA32162FA7B5D8 /* message.h */; }; + DA849D5838F0B6E0BD1DCF1F2E2C1319 /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A3A53173C1E6A1A063C26224E97999C /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DA87809BB6E9976AC7C93F01E3A7E20B /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B06900BF9E38790921A94BFD425B6999 /* xray.upb_minitable.h */; }; + DA9EDD848B06DDA02E692F46825C96A3 /* route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 825AA11244F22048001B93D6786C2983 /* route.upb_minitable.h */; }; + DAA14501DD8430FEC88184A5B001CC50 /* http_connection_manager.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9FB88A5CF9F15CA7BDC41E5356236667 /* http_connection_manager.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DAB1D398CCE28C0A6BE287A4E8BE5EFE /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9671B144E250035540A72168165CDD88 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DAB2BC189BCB0535BF3DB3EBFB6EC31D /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 145EBC93427268B41552DCC2B9D9F601 /* frame_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DAB4A4E84669769609239109870665E8 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 83DAFFD02C700FEAA1B3C89E9973B1C0 /* matchers.h */; }; + DAB585459FE8FB758FF54BADCEEBC719 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 940BA1A343A9B3E1B7C4435DE8FCDB5C /* host_port.h */; }; + DAB96FFC85FDBDF297580A38F3912D9F /* SessionGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 167885D157258352F18D9DCA0166D2D5 /* SessionGenerator.swift */; }; + DAC762AFF4FDC9A5AEE095F1340F7758 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0398F98DE22BCE2D5ACA65FD3070B8 /* tcp_windows.h */; }; + DACCCDF6B928EA8D937D53AFFB78E34F /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8C640D62C3E6173C65B6EA63E8AB89 /* cleanup.h */; }; + DAD9488CC408CF37867E0806DD0DED91 /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E07C4512E5717B5F56358BA2F857149 /* alts_grpc_integrity_only_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DAD9FEC818082F028C7C82907BAE672C /* container.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = F623D9DBFFA03EE85488B8598822B2AA /* container.h */; }; + DADD3E901AB517930F5C1CFDCEBBF378 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B05FB9EE75731B694ED3FE13FBB27F23 /* Storage.swift */; }; + DAE593A5308644031396B873AE9F0BEB /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0791D00DA8FC3CA38195C68CFA9B0CC1 /* quic_config.upb.h */; }; + DAF7C89B1AB94A837375861861CA7F6A /* has_absl_stringify.h in Headers */ = {isa = PBXBuildFile; fileRef = E12698E3E8179BC6C2F8A8EFA1881A91 /* has_absl_stringify.h */; }; + DB0AFE65A43B9DC4081909EB447A65A2 /* FBSDKCloseIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = C30F5AC660768DF8B1E16F4F0E0BF979 /* FBSDKCloseIcon.h */; settings = {ATTRIBUTES = (Private, ); }; }; + DB0F059D72F8FA89D424D0ABEB715C63 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = A0D1E2EC9A45ADEF806A7E27CE724BD8 /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DB260C7527F763249208CFAFCFF5C75E /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFF94587888DC67770113109A2C6F81B /* grpc_tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DB3B1EB18FD46ADBA90352D51BD4EDA2 /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = AF4AD6A2180D07EB5C4AA61083F8E942 /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DB3D9883FD3714960DCC3A1307F4B91F /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B9AF78B2EF0009CBD1C37D7D4F544E /* HeartbeatController.swift */; }; + DB4411309EEDFBC1A8C98C23907EBC4E /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE5BAB463571ABEBEF2C934396E87FF0 /* api_listener.upb.h */; }; + DB46E706DDAA07C6A5E3E1D84D7D27A7 /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = D3B16B2784A1F0B05970DACD21A8FF39 /* json_util.h */; }; + DB4D39DB9D670C8A81B59851084B183E /* lrs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 600555E1A9F6A501116ED2273BD9F3D0 /* lrs.upb_minitable.h */; }; + DB62EF73726295AE69C2893B92216B2B /* call_hook.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 366B569E9EEC2758871393493E82847C /* call_hook.h */; }; + DB78C55770D82394D836FAE08B375B96 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 045E577B58D9C87ACDA7F76AC26C7141 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7D509BCDE6DF89739729D210B767EA /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B78FEF05E3593E16E2194140D530A8 /* block_annotate.h */; }; + DB7ED64FDDC972B635729CE9F0E2EF4E /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = EE0C3436F1EF8FBABD28C3FE88433EDF /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DB878086A5D6BDEB780F6CFF7622B8E3 /* authorization_policy_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 9AD285FC3ABC3D0B986664959EA6DD12 /* authorization_policy_provider.h */; }; + DB8F354FA840DAFC9D570153DD0B2EB4 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7E164C552CE8C0736461BA6B3F0993 /* extension.h */; }; + DB98437C76B792B65975F4E4BEC1DC6E /* random.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = F33CB711856B63E4629A0C42C1164025 /* random.h */; }; + DB9B3ADBA4BE38481BCC32C26AABF6D9 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79720E42BC74A3CE57B51D6C946943F3 /* FirebaseInstallations-dummy.m */; }; + DBA398F43DA208A2BD97F2A5A9CBB9FC /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C15B8BA590898C1AC0C99BD032AB277 /* metrics.upbdefs.h */; }; + DBB30957C4B93A9FD147F9CB0C828B5D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = E7FCBC9C6A30C15FA6E2E459D72E394B /* http.upbdefs.h */; }; + DBB5CDCD1D7B0E18F9FF4E51C87F6F47 /* graphcycles.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 344C85D8677C71FD007EDB1BFA0309C6 /* graphcycles.h */; }; + DBBC16A59A64F5EB8BDA72A2C0D46E47 /* http_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E67D11EB1D9D2B2746DBC84E130DA5E /* http_service.upb_minitable.h */; }; + DBCC7FAF70D9485CC0D65E1B774130A5 /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA4DAB59391D18493FBA7E40437D582C /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DBD16B61FB5D56C7E64DEB498E336708 /* call_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D939AD0410E9099C2721A7E91012C3 /* call_trace.h */; }; + DBD333E0475847E36EEBD6F25ACF9CD0 /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35C229DD89622C1D5A61DA2BAE936493 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DBD5EFA096E73FCB5CA22E2B54264F53 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 2CAE82C7FDCDD69813807B422B87DFC7 /* deadline_filter.h */; }; + DBD70DE28BDBC4B1C09EEBA3F6D76BF3 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A3E8B2A4B3F5BBAFA7270D69FF0BD58 /* UIButton+Kingfisher.swift */; }; + DBE1CBDECE6CF9C55B3BF90F7B906024 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F475EDC8FB68E501C960DEA278244135 /* struct.upb.h */; }; + DBE1F73DD6D287A4794B44BE457505D3 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 4D33FE4754AEF6E7A9B2F9D475FAF6CF /* metadata_query.h */; }; + DC0E6A7EF5406F57DB61E4C88B6C2780 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF2268638E8C9447D18B7409B3E6282 /* xds_api.h */; }; + DC2B63855F220E250E46382BB7C0542D /* custom_tag.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A4F5D02B383FB0FDE19668EECDF132 /* custom_tag.upb_minitable.h */; }; + DC3092DE7AC6844BE52F2C8C44919E29 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D3EC7B2E70506A42F492B2BAA4DE52B7 /* hash_policy.upb_minitable.h */; }; + DC357AD7A62358FC49F6508DD06CDBAF /* service_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 286F5B56B89634F5CE73BC95E2C83EBE /* service_def.h */; }; + DC390E0058C6FA02AE6B0A510C8F3DFD /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = AC73FD9713EF2177257AD2D96A972FA8 /* http_client_filter.h */; }; + DC39A73DC75E4D9DF49B5BD067853EA5 /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8525E1F755B88C4A40A44A26E9ADC6FB /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DC3AD7BF40312B65D877A975FCE9643C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; + DC3BAD2D841F186302DAE4C7A19A7C46 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66529EAF8FB7F3E56613959AFA0BF751 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DC4A23A30B73268F92B01D916DF43D43 /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7BCC45CB7F626AD4CD01C37AC4FD77 /* channel_arguments.h */; }; + DC62D3AF69272FD6E4AD4E9EAB1354C0 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E1C8E546B7CCE5D647C794E37D3520E /* router.upb.h */; }; + DC63C56C6BCA4482630BC868AE7289C2 /* fast_uniform_bits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FE378C1506C10C0FAEAEEBC0362AF5E9 /* fast_uniform_bits.h */; }; + DC713B9FB1AF4528CF019163A779D0B9 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8448C877B707E3BCF19F42CC5C373F71 /* xds_bootstrap_grpc.h */; }; + DC77138517D960CF80E514962641BE6E /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3A787A0D452103D9A7AF5DCB876E51 /* health_check_service_interface.h */; }; + DC77FF63F5539CCB9738D52401A168BE /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D099B1AF0149F7AD323150066615F6B /* grpc_authorization_engine.h */; }; + DC7DA95E3C7178A2EF863D43177C800C /* bind_front.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 54C5CCCB26A45478A066DBACA3A5A4D9 /* bind_front.h */; }; + DC805D173B6FE552BA21DF2EDB61EE12 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DF5C74A14FB026B1B1A3B46918664AC /* connected_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DC881022079767309F7688EC9A826E0C /* array.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = FB62C9D5BDD92E079DBE2C8CC1E8F32D /* array.h */; }; + DC8E8A502011DE3D92CCAB4455E3E851 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = E10FF5F6EF3B317B65FAE8265CCCAF89 /* server_interface.h */; }; + DC98FC14657C9A8C50F48CFB2ABF3FBB /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 571064C5F4F628AF16339B1522DE4543 /* xds_bootstrap.h */; }; + DC99F5605C75715DB0BFB1047004F5DC /* raw_hash_map.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5E1D43E83F0B82354793EFEC4E99128E /* raw_hash_map.h */; }; + DC9D355B5FE6B08CCD7A3F7A8ED3C1CB /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 61B2C9E079C8ED1F2F3804574668504A /* thread_quota.h */; }; + DC9E193FCF4A2CA186036211EC3F73AA /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C31B6983B2CE32CCD4DD27B90EA6147 /* buffer.h */; }; + DC9E6B283E27CC018F8539D0AF01A237 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 88FAC4B868EEB38E245BEA18F7000FBC /* dynamic_filters.h */; }; + DCB72061B7E6F9130BE3D23C42A25753 /* x509v3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BFDD37355CA7D01685821B7938D92EA0 /* x509v3.h */; }; + DCBD379C2E84CDC583CBE972E1A8AF7C /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = 75C00EED857C7AB00F0C452D378F0D59 /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DCC929F9E301385DF762CB94C14D361B /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 3CC07488FEB091385E7EA098BFFD9521 /* extension_range.h */; }; + DCCA0CC377DE2A170EC0A96288394D85 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = E5206A14705293CC45E74A95220224B7 /* backoff.h */; }; + DCD125D1295DDA28A33B937B12B16BA8 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD931362E2A7841BD45D97C9C40EEFE1 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DCDC5B682A12EA3C5D75654088539785 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 998D0EDD802582B230B36B3868C0E6A8 /* value.upb_minitable.h */; }; + DCDE91CDA5E3730E1ACFC653E28DD529 /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = 578C14EDDEE1C63B5F45A9839C592C36 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DCE3103C91D2047B1C3209E9BEF05C6B /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 9188E8F0522081F88EB8DF5B980F04DF /* file.h */; }; + DCED236D34EF81F1A1652EFB242176F2 /* inffast.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C0F7D882739E2863604C84602F4790 /* inffast.h */; }; + DCF362253C736097BD4DD6DA1854F054 /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDF784ED19CD2F1FFA3336BBD46F6DC /* ring_hash.upb.h */; }; + DD092A39E8224F94B1E1AD4D6189176C /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 2942A465403889B09A1170673A09ADD8 /* address_filtering.h */; }; + DD0A9A129123AD591C9F08EB262CA8B7 /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CD8C1360B2B3A636178092BB264F888C /* file_def.h */; }; + DD130CA135293BD06DAD61F4C58F40C2 /* status.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2F29A4111573F984F14996E8689D9AC3 /* status.h */; }; + DD19C62889453878392D3B602A1B1FCB /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = AEACCAD2816169703A007A5C6E4D3E9A /* xds_lb_policy_registry.h */; }; + DD1CA0E85B8D0FDA675CA84D2D995DFD /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 153BD321F9CBB19BA1EA9A72848B0171 /* any.upbdefs.h */; }; + DD251BF3C36953F035C31581120CC9A0 /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3944A4518492637724B53BDE7BA70314 /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD2594C0D8BDECCBC6FBF7EFF2265E95 /* crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5444954D98BECFA8C37024AE6E44CDF9 /* crc.h */; }; + DD2B1D4687EEA84ACD9125EB6CC303C7 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25522D96D5737823661316D97A1E9583 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + DD2B8108F87F806B8E4C4FBACD3EA3B8 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1082CC9AD68CE7A582AE92688FFD4BBB /* checked.upbdefs.h */; }; + DD39CA0915C505DC0F5F8267F63F00DC /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E5131C6E1B125D30614E979C06A7254 /* resource_locator.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DD4E6539A537D5B775D2A5E0D9EA3049 /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 430B809D104C159A84D2687EB355C365 /* spinlock.h */; }; + DD505B75DDF9758B6288655E9FD68C04 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9128ECD6019ADA644AE06276FBAFE2EF /* filter.upb.h */; }; + DD50983717211436AC14774A90922695 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A762790AA3792FFEABB7A43903175A3 /* endpoint.h */; }; + DD5303C3F4418BD00489F68804A04099 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 479D166F33C9BD63E1AEADE736775B15 /* aws_request_signer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DD5444D817F8855745172176E9BD4551 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B35FE019A1F49449178C14147BB7A398 /* resource_locator.upb_minitable.h */; }; + DD786ACB1812AF81599015C05D1B09A4 /* init_internally.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7514E36D2FF438F21AD65E25CECC5B49 /* init_internally.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DD8E263B5C118A67DD29B59A3D7996B9 /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF17B617061139BDB857410F8B78D01 /* xds_resource_type.h */; }; + DD9BA2148908B4C4AEB281FBFBBE4C0E /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = C66A222ADFF6B519402190790922C698 /* census.h */; }; + DD9DE7ADE28DB44C91ACBE977BD1C164 /* FBSDKMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D08996078D790CCDB10094649822F44 /* FBSDKMath.h */; settings = {ATTRIBUTES = (Private, ); }; }; + DDB03745CF585EE42857DD64A34570D2 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = E35ADA6C24FF01EB64C2CA1C72E7AE4F /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DDB67CEF8DA97D8DD8A9B5AD34360CA8 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D9E34A8B1BB7EE16FE03A44FF4297F3 /* resolver.upb.h */; }; + DDBD0DDFD87248DFD4FEE1B5ABF93655 /* log2.h in Headers */ = {isa = PBXBuildFile; fileRef = 259C417450F3DBC3A8E102BABD97477D /* log2.h */; }; + DDBE6B3D88BC16142629C77D82F6E84D /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BCF04EC09CBD90C47BCD73CAD47B70 /* alts_tsi_utils.h */; }; + DDBF7536371DA45123C1A03A179CCE00 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6442569F1CCAECA8B217F4F002D25E7D /* alts_tsi_handshaker_private.h */; }; + DDD48F95DC56C50395A5BBA5115EBAC9 /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 855325D260F7366FE50929FB3094E210 /* opencensus.upbdefs.h */; }; + DDD73B4CBF9C0D2EEAFC44123C4C397F /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 4DE315B69E902BD979D5F06BC5325350 /* validation_errors.h */; }; + DDDA22AEF415656F715F790888D89B88 /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 11F22F8272586020994D65177CFB77CB /* bootstrap.upb_minitable.h */; }; + DDE1DF79CB3B1EA222711AEE3C885CC2 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C656D1A3FFB304188BF8E42EB2328096 /* buffer_list.h */; }; + DDE1F264733C87BC188FACFCB599A5FB /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DF0981D0F5CBE6B7A4360761E803A54 /* regex.upb_minitable.h */; }; + DDEB80A76EBD72F0AE3C58F4E4C48210 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 96DFD641B2CDF6831733CC7093482CB3 /* httpbody.upb.h */; }; + DDF3B002F009DB8FB4BDC2F4A6D492CE /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D49845E9DCBEF489509805BB7022EA /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDF564885D51FB6FDC3EA4E8B91BF062 /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC9FAC55551E50EB38E1ADAC3207842 /* handshaker.upb.h */; }; + DDF8ACA286367EB682B3C08A4A234A09 /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11E6D1B94544B8B08BFC974A0567788E /* env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DDFBA72F304079075EB6C29B4B8C31DF /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E4FB23F9ED638C4577C26488C28045 /* accesslog.upb.h */; }; + DE0D18BF9CA85BCC3E2148D8D64FC923 /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6682C5F498B9B212580B3B395868AF /* casts.h */; }; + DE17BD9B5F126D2D02D267B38DF9B26C /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = F207AF8306F8813F4F465D06C879E7DB /* status_code_enum.h */; }; + DE1E04DB919A4417096CAF57544D0157 /* posix_time.h in Headers */ = {isa = PBXBuildFile; fileRef = B885CCEDCEC3A7025360BB6863870014 /* posix_time.h */; }; + DE2C89C6D9FA6B1D322B76D5393E2089 /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2B1305F504279DDD1D310057C07AE5 /* IsAppEncrypted.m */; }; + DE2FDB54D6F52F58E15AEB7134E1672E /* client_channel_factory.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2198097276D40B5BF254F9EBE40E2426 /* client_channel_factory.h */; }; + DE31E6EA4AB70C52C3FC305A92B74584 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 60CF40161B6ED2F5CAC3E38CA16D9340 /* transaction.h */; }; + DE3F93BD6AC802B49E055E05A53358AD /* retry_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D90C9E5D9DA4BD6FE63556B685F94711 /* retry_filter.h */; }; + DE4B95E5CB56B3B45BBC6F7BA845FC36 /* Dictionary+KeyValueMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E801B6BE843E295A1DC9F694F810C5F /* Dictionary+KeyValueMap.swift */; }; + DE4FAD3E62E10CD644640203DB74DD72 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = B48BB880619FFD4A1473CDF3D73B947F /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DE569C33A253DD87CE926743D684C4A7 /* legacy_inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E51FBA5D15F12BA812E959C354A27A8 /* legacy_inproc_transport.h */; }; + DE696C93848919C7BE02D777579F8878 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2ECE8978C91499FE21026D92FB52F5E2 /* secure_endpoint.h */; }; + DE72DC773933ADB1DD2883CD205CB490 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B40028E058636EB9C0AB271FCD1CC7D8 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE762866E6C48DAF3B7EEDF63CAFDC06 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 96767EAAE4E4BEDC2C2A56C323985337 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DE79A5B6C140E8EC77B3FE19DC2DEC4F /* metrics.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A20DD5AA966072186AF7AD2B6EB4E93 /* metrics.upb_minitable.h */; }; + DE7ED3F08F4A9EB640BA0E42C5A921A2 /* trace_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 02050F8A5B1FECB8C7425B690B1D40AF /* trace_config.upb_minitable.h */; }; + DE80211AD5837002917A6BE54E076AED /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F80C543839E853236F3A3531244CE5 /* parse_address.h */; }; + DE8E356FCB9998FEA23189E75AC3CA32 /* FIRRevokeTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D7C2D27ED9AB9F691988C1D75C86F9ED /* FIRRevokeTokenRequest.m */; }; + DE9477DFC6A878A9E1F80D8FEEA4FEBA /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 91733C193EC27ED9365DB1D1B48A62A6 /* call_tracer.h */; }; + DE97FEFF5448C3223AD860C5A37D848A /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 748C619D9C28CB377F056706DFACC8FF /* sync_windows.h */; }; + DE9AAD3474B704C9944A56E2C5B4A6D0 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = 8940D9B56C89177B978DB66C8BB10EA8 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DE9D545DA7BBD5EE9AC3AA5335EB303A /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = FE39787B54BF98136F1313DC8FA0EE42 /* dns_resolver_ares.h */; }; + DE9E08319D57648CD64AEC485FF34619 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D51B7A5433BA7BFDB3799232037D6D50 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEB01D43DE2F3C46C6B2BFEAB0A65C91 /* zutil.h in Headers */ = {isa = PBXBuildFile; fileRef = AED687A52D8EBF4B959841FA11A22CE1 /* zutil.h */; }; + DEB2C5EAB243A6EFD9E6832FB436EA50 /* gzguts.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FEFC8876F59923299286A533C4F33CD /* gzguts.h */; }; + DEB4772EA7AF4635233A84E1AFC0056C /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A314BC0F7C658980F5A3CABFCC4E14F7 /* extension.upb.h */; }; + DEC2BEF6FF6786EE37F7B4AD26711934 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87F2C781A7B67205E7DC7A7CFDA862FD /* child_policy_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DED2604DD78E955E5F194E95FBDB0854 /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D6666EF9E879FA276C35B21ADD3A790 /* orca.upb_minitable.h */; }; + DED6C98A831ECE490A8DFC5D2B765646 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 8003C9147232BCB4B703D4BD90F19F53 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE0D23EC308BA6B3EE613B63550D504 /* stateful_session.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F000F04E87076A537AA13940FB435B54 /* stateful_session.upbdefs.h */; }; + DEE12EDEE7ABF8AFC27F44A72C1F1BC8 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2FB85AE1D34223B0273A9BC43F2A5BB /* backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DEE2FCD15B12449EB79EEDD65A70D959 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = D060A99987A09FB256765E404E1062AD /* socket_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DEE74A967CE39DB87629FACF14C2DD3E /* int128.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 1F0AFEDDE1DD5552D02B875A773C0DB6 /* int128.h */; }; + DEF9DF37B3463D165BA23FFEDDEDDD6D /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEEFE6BEF018519546F728808FA74D1 /* audit_logging.h */; }; + DF00E248230083429D91F7E302F498A0 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 8049259CA125FB0D326AF6064E0E5860 /* wide_multiply.h */; }; + DF03FF1E79A58031FA0BE92436773B22 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E73733E95E9AE6DB36487D1D70A0A39 /* substitution_format_string.upbdefs.h */; }; + DF082721E397A670A1B75FD6B97664A7 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 139135380FF57F861C147C30DD401861 /* per_cpu.h */; }; + DF16089298A7F696989FD61DC2861BE3 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F49004C3DDC45814CED7279F7B40EEB /* range.upbdefs.h */; }; + DF17DA5BFF2006056356A37400BD1EDE /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE50F4728219A2FD5A3380A09EE9339 /* proxy_mapper_registry.h */; }; + DF200C900A40261E9E773A4A0051F5DE /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 428A9F49DA6A31740D8EC1B93D371B96 /* ip.upb.h */; }; + DF49E39C974A7F9844902AD3891FAA53 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E9D0363D355B974E6A21B21101DB509 /* FIRCLSCompactUnwind.c */; }; + DF4B4EFF7D68C666E7B7634F292D80D0 /* FBSDKCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EBC3AF7647E02281CF6A9FAB890855 /* FBSDKCrypto.h */; settings = {ATTRIBUTES = (Private, ); }; }; + DF4DCA32858863011BB8A1D26E9E52ED /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2A7CA7594145665D438DC63219B9A9 /* context.h */; }; + DF5702069816C2BEB61B7B70703F8364 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B976927A06D48291011D5EFEA8547D2C /* memory.h */; }; + DF583ECCAA3FC210978433E5A0D4C8B3 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = BB58F949572A1077313E0B426BEAAF7A /* bad_variant_access.h */; }; + DF592C6A79511E8F20D9CC45B12CB53F /* prioritized_race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 8D438913BEEB951F15C704CDB247D50E /* prioritized_race.h */; }; + DF5C14FF580E89A94A7088DC92424951 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E85BFE2F21D4CADE2AD0B0CA5CAA82 /* xds_resource_type_impl.h */; }; + DF6F1687199605507F927FB1B0EB0624 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 569935E2CF18756CE4508CBF382F6575 /* delegating_channel.h */; }; + DF72BC6E6B0DC06440B2512AC0A7CEC4 /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 244C2DCB44C7ED74A6D79D6E1B39B667 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + DF72DC2EC1C2823AC68BFB931DCC45DC /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CEEDE9B5256C4F7638A0CC430B877513 /* mutex_stats.upb_minitable.h */; }; + DF775FE2F17E4B964F7AD175D1FE998E /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 87925EA2BB76D59A622DB9A5D88E1884 /* alpn.h */; }; + DF7A09C9E6FFEE2C224C62EA53B52147 /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F215FE883635A12ABA63856C95AC034 /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + DF7E893DB1F82152ECD5AC53A3FD5DF2 /* CrashlyticsRemoteConfigManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB34868700C724E633407B32688CABB1 /* CrashlyticsRemoteConfigManager.swift */; }; + DF81340698B8565DB8E3E7FA851EE66C /* simple_slice_based_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 20030FDC2427B4CCA5A5F79CBF972A24 /* simple_slice_based_metadata.h */; }; + DF8DD820F6F99F652B61446C06EFFC8C /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C0216D9D247B32F4D6E42E52D9C5589 /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DF8E99E6797CAD1F07FC42E3308FFDAD /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E048D4D8BF1CA55EBFA2F1844E77ED8 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + DF91F18147E4AC61E53E6AE3B5600FD5 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD53CAAC80DCFB178BEBEAA49E22497 /* sensitive.upb_minitable.h */; }; + DF93DF5E18CBF396617DF222B9C5995D /* refcount.c in Sources */ = {isa = PBXBuildFile; fileRef = 10B1F542D85CD3BB5C1F63CBA3ACC06E /* refcount.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DF9A0AAAFCC7BF75694B6B26C908A7D9 /* range.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 27913A040EB93EC3C26E75323DF67A2F /* range.upb_minitable.h */; }; + DF9AC7DD95CD6B4ECBB3AD1397198752 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 47FF43C2A312C4743C70F1EB9FCEE51E /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFA4C1D884E983098C31C7EF9FE25C32 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = C4AB9CF96CC38DDD6A9A8A1CFB5CAD36 /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + DFC0383E8A9C0D2111CD94C89F6A7BF4 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 436EC4B6C0FDB8B459D9B220FBD03700 /* iocp_windows.h */; }; + DFC6561A8E146F9F68D1ECFA0D3C83D3 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA7EE8693ABF786B5F4408735DF81F56 /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + DFCE9BE3851B1011632BE91C209D747D /* compression_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 115650BD79E89BFDAF948BB5868D896E /* compression_types.h */; }; + DFE4144D0C42FF04E4130F969DB36B48 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = 827DFD5EA9639BE29190D8221D52813F /* string_view.h */; }; + DFE82F0BA5940205E7367D4579449443 /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 7CD392C19A972115659F61BBFD2B712B /* poller.h */; }; + E019A9F39A43A795A53A9FB556BDCB86 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = 67B74C9C91EFF94A6F45BBFC8FBF3169 /* common.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E021AAB6218B92732F47F62C9D5FD3FA /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2EFA91A1A4BF46C39B0B2CAFF5A1275E /* xds_credentials.h */; }; + E02C1654C2591901464B2649F63575E4 /* zipf_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 64297F14FEA7F92252CE55D1058E9966 /* zipf_distribution.h */; }; + E02D2FEC284C87DF38A3FD1E6959AADE /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = 30ACF2F0DADDD78DBEA9C6E83994E421 /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E02FA2A0260A47C06B16E1577BB7CDC9 /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF8BCE89F1059EF0BA4F800F10C4AB6 /* grpc_types.h */; }; + E03A7861B1F4DAAC5D5B0FCBEC6AD315 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F14490AC2054D988C8838AFF59866ED /* alts_record_protocol_crypter_common.h */; }; + E0445DBAF93597B87AE14C3A36F1B78A /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = B86AD9D27FB42C99012413F9A6930DA2 /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E04F29CC3E2DBC692B0657EB9254F907 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 2C8E53D6C9CB192C3AC4392BF7630B29 /* client_load_reporting_filter.h */; }; + E05C0367CCCC43DFECA2F752EC8DF472 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 48F2957244BBA0D0E75C513E7506E12E /* empty.upbdefs.h */; }; + E06348EFC3A5C3241EBC0EA4C5418ACC /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 558E725563D49CA45A5D54353F9343A6 /* number.upb.h */; }; + E065AE14ECFF9D6EC26FB7AACB15E33A /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F2CF080D1524678A068AEFA7EC7F674 /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E06779E5A4B395D04C2C5D0D76FFCC93 /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5B0A3712F7495C4BF6CA8193562A1FC4 /* channel_stack_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E07551D5255B452236B09540D397C4A7 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A1BF0EADFB4B99D5C80F1840D4629A9B /* promise_based_filter.h */; }; + E07CBD81DF3D1F9649648F18C8DA9CB4 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C582EF63811775D3F0EDA9CE3EA0F5B /* call_op_set_interface.h */; }; + E084764C3750AE329745A3455F9B6EA7 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6353A86B48D6118731B47167539BC6C /* message_size_filter.h */; }; + E0937AA92B6187F56BD3247CE4605DFC /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 54491C6FDBF1DABA3F3AAE902692F139 /* FIRAuth.m */; }; + E0947AD487A9E3ACAA4557CA5383B8EC /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4EDF784ED19CD2F1FFA3336BBD46F6DC /* ring_hash.upb.h */; }; + E09B454C1D1CFD8AFB89728BE95BD0C6 /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 4FD9664D80F0FCD8485FB5AFAB29BC22 /* idle_filter_state.h */; }; + E09BC3B67EFA8FF0E283F85A3C1C9842 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 62B963135E1B5D0D0871A62C8DC29B85 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */; }; + E0A81AB25C7FFB3ED51ABF0A5E047272 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 8E03586D9244ED093D1090620A83C1EE /* deprecation.upb.h */; }; + E0AC51973DCBD63D9751A66311B55EA1 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */ = {isa = PBXBuildFile; fileRef = 8E432A6DA73D45FCC408F28043A42853 /* internal.h */; }; + E0AE2D19B5EA6530FFC723DB70824A43 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C8D69B0B65106CCD1AFE8585EAFE5495 /* health_check.upb.h */; }; + E0B0B8F7C2F4388930CB56C1A956D61C /* FIRAggregateQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49055526D146A01261E569E1911488A5 /* FIRAggregateQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + E0C0694E2C3123BAF687F26D5419F8BD /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC0C33DF90EA62D68E2D250249D26E1 /* pkcs12.h */; }; + E0C6281E4994C505CBEA2787704AEBB3 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF87CEF4CBD743014AF79E2C9D2B116 /* cluster.upb_minitable.h */; }; + E0CB4DF99F77EFD4FBA92D44DD22C327 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA4B148C5D6B5D5D8D7030E45F7DBA0 /* subchannel_interface.h */; }; + E0CF8CF9ACF76B8F66BE2DB016EFEA56 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 82D16CD495A3998B57BF573BC453F5D9 /* api_trace.h */; }; + E0D294067DDB511A2A10D86ACF41B19D /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 15090066D859CFA88D428ECF9C3C656D /* chttp2_connector.h */; }; + E0E2FFF3A77FB24DADFA3B8C0956F10A /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4A34B8FAC16E7F27BB547E62DBF2398 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E0F41E8A960332387187B11CFA5A0B15 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C96B874A2D86C3E3D4D5872C99A6DF7 /* proxy_protocol.upb.h */; }; + E0F66F3D782A88A98306E6654E95D847 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 491D942187ED57661D907390F2485E9E /* versioning.upbdefs.h */; }; + E0FFD2E71DE5948ADB0F8445C9443A2E /* commandlineflag.h in Copy flags Public Headers */ = {isa = PBXBuildFile; fileRef = 38E9274898F801A1412154454494B893 /* commandlineflag.h */; }; + E103024EA343063B6A2906303D5204B0 /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9D579E60B88798B2AABD0DCD66E851F /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E10777EA29F4254819F436F38865127C /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A946FD610BD620CC361EDA602804F /* ev_apple.h */; }; + E10C8A067B2B0950835E081DD1B8F996 /* ip.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 779A10441C0C0CB35B42969F90DE638E /* ip.upb_minitable.h */; }; + E116B7B00AC925F20C92C520F9C22A88 /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BB687353644AADBED4D8C1ECBEA51F /* opentelemetry.upb.h */; }; + E1180A3487C32339B15736B46AD5263A /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8920111A74CFEB22C21BD0EE48F7F670 /* duration.upb.h */; }; + E11F18E17C79BB222098B16862751D1A /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79DDF6405406E66CC19BFA07FAA6F100 /* csds.upb_minitable.h */; }; + E1204D5E2B1430BB020A2CF1D66DB984 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A17F147FE35A304B1A2B7DF9EA37E0D5 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12D02459A2A4FF33FAB159FF4B358EB /* GDTCORMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = 672DA3F925BB6493A7E413A04072EB11 /* GDTCORMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E134427052CFD734F35E4C07CEF6EEEB /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 201725757ADE87734AA381E6BE6DB1BF /* alts_crypter.h */; }; + E140E1BB8C23FC575644DEDD1CBE90E9 /* buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5C31B6983B2CE32CCD4DD27B90EA6147 /* buffer.h */; }; + E141CDCA5107F44259777C8353B507B3 /* ssl_key_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5711B42A4F61F9DBC534878334F139F /* ssl_key_logging.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E1426B72E069089EB35C7239ABE07972 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 26188589D07D58FB4860C6A3F2B68A30 /* strtod.h */; }; + E1498B174E39984006B27C537640FD48 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = F0CBEC395D9BDBBEF4B2807E3CE5D021 /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E1510A9892814F50D6E3C39FB04B8D56 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EEE6ECE863DB1437BAC440A05A44A8E1 /* node.upbdefs.h */; }; + E15694389D1E2D32A9B9E9E5BD010417 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B2A56D288CC6C14F95292DBF052DB4 /* hash_policy_traits.h */; }; + E15A615E32B130B38C3C7F27AD6B0601 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B7D7025C2422CEBC35920A007B9A465F /* GDTCORFlatFileStorage.m */; }; + E15BC48C8B56F39A6594CBABB90D11FC /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 92B81963609282109B40DACF2C57168B /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E16946AAF49A3FA7AC509C414C485B8B /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C5ADC0757EB867BCA46528AA81A02A /* auth_metadata_processor.h */; }; + E16D53957C7FE70C9A89BBC603DA5C32 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = F57C5C83751AB9B74AF090B857BA9AEC /* strerror.h */; }; + E171319BEC27CA78825FFE28190E9A53 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C3B76B146875B3D30724F236C83C4C9 /* resolver_registry.h */; }; + E17A95EB28661A6AA4D9F78A9703D955 /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D1CFB86043358A80A11A48815B36E9F3 /* resource_locator.upbdefs.h */; }; + E184698472D62A55DF659949EC0049A6 /* Promise+Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD2F1BA75E9A7C648A91B443EE8B601A /* Promise+Await.swift */; }; + E187AEC1E42FA8F99AD39B5D96DFA87D /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AD1FCB773A846665CA5A8C9E4F3168B /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E19B26AB3CDDB1749CF6FC070D6C7F71 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 41566A93184D41C4B6618F78A566CF5F /* api_listener.upb.h */; }; + E1A786C3CCA5F321F64A08C0F843C5F3 /* FBSDKProfilePictureView.h in Headers */ = {isa = PBXBuildFile; fileRef = 25183848DFBBDAA930D5E9D697DD3D7B /* FBSDKProfilePictureView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1A7B147EFA33225A70A6713734E8D32 /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 39264091EF4205BF19AE80B40397CCA6 /* hpack_parse_result.h */; }; + E1ACB9D3ECD3FAAD20D29528EA3E77AA /* bind.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 02D4BB88156BCA543178C396802206BE /* bind.h */; }; + E1BB0460497438C8B0000CAD5EBCB515 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AFE71C72F29168C4FCED1DD85A71C88 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C2474616B67E0C87BEEACC3511B49A /* windows_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 575C9A0A492D0380697F2DA52405F64E /* windows_endpoint.h */; }; + E1D6EFE499F477CD53DF6693F5E533A2 /* Promise+Race.swift in Sources */ = {isa = PBXBuildFile; fileRef = 320774EAA7C99DD0152CD8CA9CB2EB0F /* Promise+Race.swift */; }; + E1E504D07261C16FCD3EF48C94E16445 /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 631DA351AB80A15981E56CE059BA82F2 /* log_windows.h */; }; + E1EADD9EAF0EFFAA1DFDBD384463D47B /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E8E4D8537EECF2F30BC31228212F91C /* filtered_re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E1EE63E9AFAD98FBA479061BEF800B8A /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7025069235CBE4CA97133170E1C9DD /* rpc_method.h */; }; + E1F3D0581CF6A2D9D057D730C5E2DCAA /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80914B43EA1BFF563352E4D902A47950 /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E1F479DD938A4A8D8AA4FE2B2178FFD7 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = BACC9189A0783EB2E152E200526B22D2 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E1F7A0525027BDD510706DA7C0C00A38 /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 317DB0A61B9DBAA6E7FE6B70FDEF67EA /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E203EA215FDB215804541359FC6C7BA7 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C837C6591DC1C3026E98DA97B6C441C6 /* range.upb.h */; }; + E2052B2D11FA705F0DBF307E47FA57E2 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 16CE93017A59DC9BFE9399D013279D0E /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E20FEDF53FE7FA1D38DA915EAE887257 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 61CFEEF418991981FCDC62A1F8162E9E /* opentelemetry.upb_minitable.h */; }; + E21CE6FD473F7821C0BC4A8D7FE5268D /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B075B5E22B3D9365467D4B17D89289F1 /* pick_first.upb_minitable.h */; }; + E21CFECDD1132AB05E3C16FB1090C515 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 620E795266DEF43F3E4C90ABFB02673A /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E22A5472E0A5A722EFF387C1C6256495 /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D7337A1C77482557A511020F24E1F4F /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E23631B2ED20025F6530F4E7471A846A /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 55205050371CD68706B1B6B1D1E619EA /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E23BE7DCD740F838F3C93732F0C85626 /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A963C250CEF0B2E1D59C8B588A1744C /* skywalking.upbdefs.h */; }; + E23E619246686161143E57E4A172DC1B /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = DDFDA38CAB4C1BA32BE7382E9C84C9CE /* lb_policy_factory.h */; }; + E24C347860BDB7399534B05A409AF7A5 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A115225F337AF96B45227130D76530A /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + E257072A33290BFB1AF3EB2D6CE62E9D /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 975E1C34AACA8170390E065DADF3464E /* construct_destruct.h */; }; + E2676A588AFF72A6CA6F73025221B7F4 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F8317FA9C5A6FEB8DBAD6EF0064017D /* range.upb_minitable.h */; }; + E271CACBA672D9D58A50DEFEC67BB74C /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A77749ED273757006ABCF4DC8EA562 /* enum_value_def.h */; }; + E276D59B22EB05C0E515E4D9C61F3BDA /* unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 36DCA54E67F9E1320BD5834E81AAE031 /* unicode.h */; }; + E278FFC597ABCC9884E96518CC36A6FD /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BE3A589BE53FABE5B3244FE1B12E13D /* frame_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E28738D2B27EAD5233DEEF39CDBFCC2A /* number.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E31FA4A344C046C5CD400764D7715B7 /* number.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E28C3197A3CC385168C733F75DFFC3F5 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 1956E516F9F8D7A6EC0C4C793CB2AC3E /* FIRSignUpNewUserResponse.m */; }; + E28F07275CDE643ED020AB8701340C8E /* FBSDKErrorRecoveryConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = CD0068ADFAD3A88228FC34C2C8D13885 /* FBSDKErrorRecoveryConfiguration.m */; }; + E291E034BDB45CB586DD6FA6F1BA3FB9 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD782FDE9B645FB5C4F2F90E7C7BBB5 /* node.upbdefs.h */; }; + E29511AFE173D5745CC4DFFF15F748C2 /* enum_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEACE39169964DB10ADA78AACBB7693 /* enum_reserved_range.h */; }; + E29AABF1A2359372870E0131E708F0B0 /* domain.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E8A94557578676BA0DB28AF029B44B /* domain.upbdefs.h */; }; + E29D4D2B53370FCE7412A421BED92CE7 /* internal.h in Copy crypto/bytestring Private Headers */ = {isa = PBXBuildFile; fileRef = D85DE6741DC81E0023B378CF3EDB116E /* internal.h */; }; + E29DD4E77C2D506A21EC293E7703AB86 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = BDF47BE94199BA6DD7BDBEBC7DDEE11C /* time_precise.h */; }; + E2A1A11C991B501F2890A492A33BA5B9 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = 080A7A2AAFDAD17F9461570C72A8DE11 /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E2A4F02F80971E1738966F8C06C8B7A3 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = A75A53666FCE8BB118BD7BADA2E2D276 /* message.h */; }; + E2A6E5CBB7DCA1880CCF5AA6F7D03D0A /* arm_arch.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9E91CC473B80BB18D714F85077C3744C /* arm_arch.h */; }; + E2B0B5CA44039DEC03C32ACC335B0E07 /* SessionsDependencies.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6F98CAA0A783D8563A71A1EBAB23739 /* SessionsDependencies.swift */; }; + E2B10E761E172DE8F746A87AB78CE3FF /* wrappers.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C783B873ACD390F2779C6FB361427B /* wrappers.upb_minitable.h */; }; + E2B89979A0F6283D3C43ACF8418C70C1 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = E48075EDE88BE4C97C82232F54CA878C /* timer.h */; }; + E2CA467F9EB4CB18E3F39F7FE7A7BCD2 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9BDEF4930D2DD88F5310554C707810 /* time.h */; }; + E2EE408F0CEEEA59D46A2B43B21698C0 /* validate_service_config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3DD33EF671355E4D225ECED020327AEE /* validate_service_config.h */; }; + E2FAA91254DA34B20B6C48655A2229DC /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADBAFEDE5BB1E119278D4E241EB99910 /* inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E304638BC53F617FE131A0F2FC4A9621 /* ratelimit_strategy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7DB61CD4A0EF5FF27F3110E65A8414 /* ratelimit_strategy.upb_minitable.h */; }; + E30DBB77B8008FEDB4C479284F011EF7 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 71143274C5794BFA85A403E62572790E /* quic_config.upbdefs.h */; }; + E318E764D6498ECF907927E90C445354 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = C6E8CC0B0AE2E513548778CA93C908D6 /* FIRCLSUnwind_arm.c */; }; + E319D09B831598EF8242783892AAAB9B /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 78FD91F8927F89D204D115558E248873 /* http.upbdefs.h */; }; + E31AF88F1F80BA10612349F044746C81 /* thread.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 44FDD8CE72EE70AA6EFB414936F128F2 /* thread.h */; }; + E321F685167C5CA8ADCA8133FF9C3E5E /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = D60102CA12937890CDEDFA66BFE36FC7 /* try_seq.h */; }; + E3238062889CB218D5F59150B2A3A083 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B33D71A8C953DE5E9E366F5DBBCB2A7 /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E32931AEF6C123D92B39216BE75AF59F /* client_metrics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = C523A39CE073786B38E8804E5A5E0AC3 /* client_metrics.nanopb.c */; }; + E330894C245E9944654A03E3350147E1 /* external_prequest_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = D89C0B0460167AEE61BE4B7BB2C077E2 /* external_prequest_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E340646C86DB3C792732917BC912D850 /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = BAC5A5EB6EF84643BE00016F01E5D3DA /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E34CFADD2E2F2A0093EB69102F6C71CE /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9A1684DC952BC3A81CF45AA18819D2C /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E3571AF25F1F5ED7D5BB5002F71CCA05 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3822A9EA299776A89311FC4F9FE435 /* promise.h */; }; + E357D9D5EEBF2BD209C2ED552F692D10 /* common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 32B554197B4676332C81742FB6707F9F /* common.upb_minitable.h */; }; + E35C604E814F82287F45E01FEAB1F089 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 1858829078C71EFB7377C11331713EAA /* decode_fast.h */; }; + E35CB3AECDBDEC821CEBFAA0E51320D4 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = A62B38ED755F685277B407ACC7759FD3 /* exponential_biased.h */; }; + E35D0886748CF1D13067BC1D3D6042D6 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = C66607840F6BA454D844FDB27154E3A2 /* b64.h */; }; + E361B22FE2A1CE74D847A37C6665F6D6 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 66337294DE335FBEAED1FE737C7BDFC3 /* function_ref.h */; }; + E363081E6D32656AEA23A1AE1A571D5F /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 013AEB81A3C4EBCF54456B01DB19C045 /* cluster.upb.h */; }; + E3692053027786A9D0A34A7A84290FD6 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2F52FC0CEDAD4DDCF2AE5FBADC6DCC7D /* varint.h */; }; + E3776A8A0A3E18F3A8242871AB6D8BD5 /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 304AE726D484BA2928C1569B5617B493 /* pollset.h */; }; + E38877EC5858D9A6FA9C3E965F016EB2 /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 552A17D16F809A9728E6F8B2ED8CB379 /* thread_pool_interface.h */; }; + E38C1A764FE644C8409E0E52750B92CE /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DE205920796B4220744C496A612E24 /* civil_time_detail.h */; }; + E39C58C96F5C07C99B7CD7A82AE22776 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = F79249CB5E8A4D0AD7CD8BB5B20F2A7B /* resolved_address.h */; }; + E39C5D8BD6F87ED0EAC9C2E69B9967C0 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = 494095CB78A4739E53D514CCEB45F6F6 /* rbac_filter.h */; }; + E39EDB92D21A791D5D1E240DE83508DE /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6E38A277A750CC51DD24C1845F10F063 /* memory_allocator_impl.h */; }; + E3A1664A361174EA380FBB7191758937 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03DDF4AD7E884E9DF913954C391B4771 /* hash_policy.upb.h */; }; + E3A1A0E39B4DFC07C0D7190CB983C849 /* def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 66769FB5BE8D16E28148DE8AC9ED7FF1 /* def.inc */; }; + E3A24EC1631907D53117123173EBFC17 /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 410CE5ADBCC274FF38C8BC4A445653D4 /* backoff.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E3A4BAECBF3A76113D57208BB43E3CAA /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = 95C7D3F613783EE8174EDA9135E85688 /* message_size_filter.h */; }; + E3A5A4FD6CF336CC3066A6DED1C533E5 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 05166F81F7E9EFC2033F0CD3931F9198 /* orca.upb.h */; }; + E3A7BA1315A342D9CD174C0DD6F3DEDE /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93AD6AB72E1523061AD04CE84674E0 /* FIRMultiFactorResolver.m */; }; + E3A8CF607C17D1FEE9CAAD01DD435A0D /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7A9D7B59E2713C8525278046FDEF45F /* evaluate_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E3ADF01991DF7D327066281862ABDE13 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DCD29883BECFCD85A70D372F1435CD60 /* bootstrap.upbdefs.h */; }; + E3B621CA3E994835E0C11B59D2F8BF8A /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = 8D44AA174CA288C9830369D7FD508404 /* chttp2_server.h */; }; + E3C96F5417BF410285BD1FED6E6FBB3D /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 630FED3E77F91B86D2085032CDB8E11B /* socket_windows.h */; }; + E3E2245903FFEC899D0FAC8E6A602101 /* delegating_channel.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 29AFB371BB2DB579C041A99173C17F36 /* delegating_channel.h */; }; + E3F11A0179EC7F16843B378E15755376 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDB285F6F29B08791666BABE495037E /* versioning.upb.h */; }; + E3F1C3105DC8EF8E0EBA5D304B57C315 /* write_size_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = AAFFC94B75B126EB5EEAA9E298B6E59D /* write_size_policy.h */; }; + E3F2B5D63126A9CACFA3309945E1CAB2 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = C99AF24C539B90017E5B067665D11B87 /* retry_throttle.h */; }; + E3F33937619FD4F89E052CFF403CBCF8 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 83469AB61424189019D3733898739017 /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F5C4E2888472EF68BA69EA5B8BABC0 /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 796BEC48EE2BA1020D0EE3525E59B93F /* HeartbeatLoggingTestUtils.swift */; }; + E3FC7ACF4DBB1CBCC309A5BA87519F0F /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = C219A17F9B833E753FE50C3917DFFCE5 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E3FCFDC6BEC0C702D2608AD9B054B671 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BF8BE9E5930035355F54EF5E97840C /* versioning.upb_minitable.h */; }; + E3FED452237E4029D95E98AB4B0507BF /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = AA1EB7A75617ADEE8CD9CD4B7A28BF18 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + E4028FEEB9A1A091E8AB6CC6D0A0597A /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C08E758376C88420230E29B0D2E0D0 /* GTMSessionFetcherService.m */; }; + E40391D30B85BB5E2480F6557E77E888 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 0617EA5C43725E8D28A19CBA7C318E9A /* GDTCORClock.m */; }; + E40A6F9C1D1D8D8D3FB0EE62ADD5D58E /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73A53F6B6E2AA30595E45CF4A33C93EB /* node.upb_minitable.h */; }; + E40C0576BD265896CB59C4DF4E3123A9 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 201FFA3AB38347A583ECDEFBA0A02A34 /* grpc_plugin_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E40E0C2D4911757E538C945674704D6D /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = E58484A578EB79AB79A1018D46378130 /* call_finalization.h */; }; + E411B253E176F01620379060C0233A59 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C3D81936C0BA32E9A2252C2D0DB8A1 /* tls_security_connector.h */; }; + E4163A7E750A9A37024628029BA68A3E /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BF0EADFB4B99D5C80F1840D4629A9B /* promise_based_filter.h */; }; + E41FBECD2B33A9E7F63F850B7BA2E2C5 /* def_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 05451409179446083ABC5CC3DC413BC7 /* def_type.h */; }; + E4226E8223C4F4475D90E4D7067295EB /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = D62F080CB5CA315CBC6104960A3B18B5 /* google_default_credentials.h */; }; + E425B3488FEEF0766396219C5B8C0374 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = B38B90C2E8CE2F2A0FBF17D78E375239 /* compression_internal.h */; }; + E443DB699634F02580F02F7F0389114B /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B38B90C2E8CE2F2A0FBF17D78E375239 /* compression_internal.h */; }; + E4449303255550A7904B740C8F4C3CD5 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9CFE1F73D515600982DC964FE90A3013 /* any.upb.h */; }; + E444EF8846FB3D608E7B5EAA0609C9A5 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7907A6FFBB216AC83745AE992BAD2A8A /* grpc_service.upb.h */; }; + E448D7A033AC599F59E98B35A635FA5B /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5532AE10BFEFE103F4595E0A58B2EE /* message_def.h */; }; + E4491DD790E8DE7E90367F9EE2683C40 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA3CA09441ABBC51D73CAAA97106D1 /* extension.h */; }; + E44ECBE051A5A0C074FDC4D630DA189C /* GDTCORMetrics+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = E761109C3D2A022C2599FBACC3063B2B /* GDTCORMetrics+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E450C6EFC01E963F795A625C046FF624 /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1DBC681CC0E30A623DD0F37A635F3205 /* xray.upb.h */; }; + E45D0D73F458CFD2B9A8F508F4774F76 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = AB324347EE5934306A8D7988919FAF4B /* sockaddr_utils.h */; }; + E46A388A1096DC218BEB5472C418F247 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A88626F9F093AF61981A6F56D3B8143 /* health_check_service_server_builder_option.h */; }; + E4739067404A003448F260FAA08E9F01 /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C354953523A1EB871010E37480EA52 /* hash_policy.upbdefs.h */; }; + E476E75D2E3AEFD2B87577D2704638ED /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 006E6B96209A305D938E0CB829359952 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E48935FF58D0B17E5EBFC0FFDFAF5FC0 /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4BA63EED2066F4ADEB613BAD04F451 /* cluster.upb_minitable.h */; }; + E48B48FE0D8817904721B80C9DED3156 /* backend_metric_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A437F87B957CF4C7D0E6200BC877398B /* backend_metric_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E491C6A7BB615583BE0661876FF14339 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD199F5414269413669F45AAB8ED9A /* listener.upbdefs.h */; }; + E4A27D442CC44D4C166A70BCA8D5D707 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD905B9EE0889B316BDFEAC7ADCFC5FB /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4A2917F44799AD9731E732D56F169B9 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = AF61804A5FA45D2047D450F82A3AD0E8 /* config.h */; }; + E4A57D12674E4228B94D26221722C0EE /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 2044367157951ED94395EAAB25976BE1 /* connectivity_state.h */; }; + E4A99ADCD339D5A6385865E3B6C8798E /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = A85D2071E0503A42E850F78A0C696C6C /* ssl_security_connector.h */; }; + E4AAFF0A118DE0EBCCC07052BE2D0F17 /* metrics_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8F34E6B60C6E2CEB8C02053CD8100A /* metrics_service.upb_minitable.h */; }; + E4B0A9F39E6AE6063EFA4A1AA508672E /* internal.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = EBC4E9C9B3FE6F894D6112C579230ABD /* internal.h */; }; + E4BADB7DA50501DD66691DD54FB0A8CE /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = B36EE13ACFCA254C77957C2DF8C3A270 /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E4C3C5025457AEEFE0167FC82A35679D /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 94264F84489991CBD0DDF7AF40225F8E /* FIRGameCenterAuthProvider.m */; }; + E4C79928BE99ED42480C21B5F355BEBB /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = BA87CDE9EFEC04208A74D670BE4CF072 /* GULNetworkURLSession.m */; }; + E4CC45A818ADE7723DEA324C8450E3E5 /* pick_first.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CC7235C977F78D2DA62DFE6960935FEF /* pick_first.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4CFFDF9EA3199CA1AD6EBC122F091D1 /* channel_stack_builder_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0886C28466E0E8D71E2A71A91235170 /* channel_stack_builder_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E4D2484088A60DB3181E6923CAD041B3 /* async_generic_service.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F9558E220DA0BCF65B48C3A33762CB1D /* async_generic_service.h */; }; + E4D4B403B99087A6A53F8D50483B9C3A /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D8BE91A336C4341E0BA634987877DD /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4DDAE9627A7C4ACF63E10BCD8D5ACC2 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = D147DD5228B6E22C7E5D4231D40FA36C /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E4E5AFE41DE37A80440E56AE5598C1DD /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 72587A8F9A332038AA580235F5D3B464 /* grpc_ares_wrapper.h */; }; + E4F70381578FECCE052AED2BF3BFACA5 /* slice_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D6BC2B8CD41F450E9064B5214A36BA /* slice_cast.h */; }; + E516D265E7A48180E5E396CA11B313F8 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 56470AB90F2B6FF6463FE57FD3CE2523 /* stateful_session.upb.h */; }; + E51D59937BB6FB8CBC86132B10DB2B58 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 0523A85023174A02094D17A29C3BCD44 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E51F596980C6183B241BD05834B5D6F8 /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 62FDC7DCB670393F72B4EF156F35EFD5 /* sensitive.upb.h */; }; + E51FEAB90A53DE6F820C35147010DC2B /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = F7518842727B095A985C527679BC8C01 /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E52A2E3761C80F44282C783BF0B33F2C /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 90AFBFD90A8E1D1C849CCFB15C2D25BA /* ev_poll_posix.h */; }; + E52AC19F503CAA58CCB5630FF6575590 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA45BFDED6E375B5E976AD08E9C2851 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E52BACAADE6C9815E3B065F1789D1F24 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC2AE0C125568A567128996648CB0B0 /* channel_init.h */; }; + E53171EC5838993D74E1823ECD8883CC /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BCCB949E2186E2ED3739344AD272B002 /* secret.upb.h */; }; + E53D2A5C99DD6AE584ABA07EF65A831C /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 01538BADFD65BCCE219E5FDFCC037F73 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54AE9E14546311A7AD67A46D68D5462 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7BA7E30FD0517DC7ECC3473CFD14AFD /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E54C3AA0C6927AC14F6E95A7B74CC509 /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 66E9F527B7AB84718D3FF69A78F1BC4F /* trace.upb.h */; }; + E5505373C24205564B4D62E13E6DE250 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 12AA1DB0E6F9E9A4EFA094B2161926ED /* json_util.h */; }; + E5563BFF1714C302AA8195B6B00D9D8B /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 727E92D44EC87DD0CFCD42CEC7771868 /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E55845F281B3BDBBCD1C434CCEC1661F /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D894C1A02B516E940D5CC22F6D43402 /* FIRFirebaseUserAgent.m */; }; + E5596BD09BF117F018B42EAB18C589D9 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CA5DA36875F90CDDBBB6E5D417C4A63C /* fault.upb_minitable.h */; }; + E55A20086BEBA9EA99F2D4E658F8D631 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 763B3E3F5F78309ED2470CF2D66B8D73 /* http_inputs.upbdefs.h */; }; + E55D0CD5B76987874A20220E81A93A36 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00EB35E20530F490FA760EC99A2BD029 /* cluster.upb.h */; }; + E55E07AF3385690D57C71B5CBAA24EFF /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 794929CB2C2DE7793F881A0C8AEB7780 /* filter_state.upb_minitable.h */; }; + E55FE971CF4DB526B13D804A1C8B5606 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 959CE0C7C75487106FE57F47CC070CE3 /* TZPhotoPickerController.m */; }; + E56276E3D08501D8653FB1111F476DE8 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA927B038E93914554708340629B971 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5634996917E637CB6C19F7FD36166E8 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DA75A507E719903D2064EB697CF586B6 /* container_memory.h */; }; + E56456995301EA003BF5A683D26239AB /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = D751E616CED0A39C6E84E04FFEADC999 /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E571617B8811AE1A31E4237A542A4EA7 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = F1129083D76882906087CE9241249D20 /* auth_context.h */; }; + E572BC8112FE410D8F53DA1D24F99036 /* randen_traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4CAEF4EC7C93486445750D0511730C69 /* randen_traits.h */; }; + E59FF3693381F88628CC1F31F1226625 /* memory_allocator_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 690D44BE36AA3EB42CBD17F03F1E0B2A /* memory_allocator_factory.h */; }; + E5AFFD1590ADAF2AF62C5231562BA765 /* init_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 13641FA1025CBF3411BB17F686ED09A3 /* init_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E5B3FE23ED7924685FC53540EAA4E408 /* any.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1B438A3A2BCFC10FA2F781CE17EB63 /* any.upb_minitable.h */; }; + E5B868F457F91C1035F3E8A824A801DE /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 183B43AAC0AB983D035B82D6C82DDAF0 /* file_def.h */; }; + E5B88CD67717A1F400D94200C215ABD1 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A1A836981B12139527B2A62E2C825A /* trace.h */; }; + E5CDAAD9B3F388A969D4AFDC1DA30116 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AFF882188B33645A3A5623B5D60C8B /* slice_string_helpers.h */; }; + E5CFAC4C800F20283C76DCA6DC2A367D /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 222D926C235F83FB2D998089AABB5570 /* validation_errors.h */; }; + E5D14693B09CFF0F5394500304A055FE /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55D5846EDE96432F5F2162863310C860 /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E5D9EE5F6BC6538D03E35479D2317B4E /* posix_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47BB3CC775CF268F825F0841DCCE1FD4 /* posix_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E5DF28A0B7E5A8BF230F952A4D0D0823 /* TZImagePickerController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 152A46F68093B0715427462D404AF6EC /* TZImagePickerController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E5EAFD3C516F56CC199C5E22C863E669 /* FBSDKTriStateBOOL.m in Sources */ = {isa = PBXBuildFile; fileRef = B28984BDF838333CB8952874EA66BB3B /* FBSDKTriStateBOOL.m */; }; + E5EDF101DA549F8ABD36928082F0DF2F /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABE361598A332633F7D8D1AD38F95E11 /* alts_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E5F94D39C5B2D8769F9C448A18929A62 /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A07D96300BE8A595516F70D7A5BF9C6 /* init_dump.upb.h */; }; + E60410A6349CE6EF7AB25D7B580CD41B /* poisson_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = E48E3F2B713D64AC80B6AE4A04E6A177 /* poisson_distribution.h */; }; + E60E02DB454B80329E6A20950D44A4C6 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 206F283281F979D4C9857BC2255DE56D /* ring_hash.upb.h */; }; + E61C19633C91BDC1208BF39758256B17 /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = B43B269F915B2218CF0904DAE2AB072D /* local_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E61D19276BF3AFBFA31564B9A7EBA54F /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 298B908EEA0FF83F0FE8220EFF0511EC /* subchannel_interface_internal.h */; }; + E61EA7DECE49E7A08E2870CD65CC4CD7 /* path.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = EEC396DDEC11E6BCE6BA2274277BF668 /* path.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E620B19BE4E72FEEB1EADE62D77F28D1 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 444BC53C6275DC70121DDB72B4D4378E /* clusters.upbdefs.h */; }; + E6251F02EE12804D1B66AE32E716E664 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20FBDAFEAD17C83E15D56981FFFB3E1F /* SessionDelegate.swift */; }; + E62A6C38A1A49AA43A6218ABEF0BA5C8 /* GDTCORMetricsControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 73551ED7EBFD2A0FB8A1C33AAFE23EB9 /* GDTCORMetricsControllerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E62CCCE0604946873FE7B9D9B85782F8 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 187720D9E38560926BB4F0F3E7AECC65 /* load_system_roots_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E62E1A2975EBB8E7E7FDB0A7300D2D62 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = EFA94A3D413ABE74E1248B4FA8F6B306 /* tcp_socket_utils.h */; }; + E637584E41D1A20D35CF57C774DB738D /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7744EE707F4E650DDC601B78742F8A8A /* channel_interface.h */; }; + E63A6B9EE5F5C33CD469138428484D63 /* retry_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 52CCEB29F37E5EAA32C4774C50895B7D /* retry_service_config.h */; }; + E642E16F79EC6F78972E00336B1A393F /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACB0FE6CF9691F32E0DB06FF439683E /* channel_stack_builder.h */; }; + E64379A94B59D1831EF62AF0595203E4 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2796959A2FEE489EE004CDD8C6484D62 /* load_report.upb.h */; }; + E654A9073BAC7FA1B971074B758DC27C /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A831612FC65024CEEB35F6FD245135C /* cord_rep_btree.h */; }; + E6618751B2F8E9C8E55B892FB4A61189 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E4D87708E6C96DE4D62C124736E901F6 /* circuit_breaker.upbdefs.h */; }; + E66EF9CB04CC1DAA3F2F9F45ED340A1E /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = B8FD5650B4A22607B038D53CC704F334 /* composite_credentials.h */; }; + E675EED7DE490A3C2D179BCD22DBE60A /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EAE39C0068B47C9E17C04E79539F5EE4 /* fault.upbdefs.h */; }; + E67BAB1B45960EF4C072A6FF56B129CA /* ip.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 299D0F1D46B025B710BEF2C355C25A34 /* ip.upbdefs.h */; }; + E67F29469C5DA380EF3FECADBF3AF717 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B04A29837D30945D599277BDBCDB8F00 /* value.upbdefs.h */; }; + E6817F17671BD2CD14D868CB3541DC1E /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = C44E43E9177CB83760C6C8163F86C3FC /* alts_frame_protector.h */; }; + E686C5955C5C33E495A5A3CD41430C8F /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = 88552DE09052E43B63150278CC2E4A6C /* stateful_session_filter.h */; }; + E68A8986A5DB04FEFEBBA93CCBC6D621 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = D7070A4008E086C580683291371F290A /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E68E14842D9F3D522DD9A0F5579A0579 /* posix_engine_listener_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50583497E0194A147FB0D1CCB20F6AA3 /* posix_engine_listener_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E690EBB46ED142D06D8B75F5D94BF1B1 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D5C23C437F0B762B3274C646C9B707 /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + E691DF953BC9953ECF059CF2D397FA55 /* hash_policy.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D729C6B78C3890394F23BDFD90554F87 /* hash_policy.upb_minitable.h */; }; + E6B7535ACB534DCBC7BB15A76859C1F3 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 723B34E1B8F9F615E43E996810C17CA5 /* security_policy_setting.h */; }; + E6B9F1F5D3E349BAB8D79C26C915C638 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BC242B7EB8720447A7CB265F732F999 /* grpc_authorization_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E6C6531979E8631EDE123FA4F5BABAB4 /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C10B8017B7F9C09517B5511D2E6C5601 /* token_bucket.upb.h */; }; + E6CA1153C3B59749A8DEAA561152A6ED /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A4CE4272F029174EC35A40E34AFD1B /* endpoint.h */; }; + E6CB03F52D4B24E78295F9A931F9CB33 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D1EDDC59631D1F882FB7C2A85F9159 /* socket_mutator.h */; }; + E6D3C4117FCDFFFDA3A0B44A70716B27 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2B89EA296D0AE3F39289DB07C264B703 /* chttp2_transport.h */; }; + E6F4460472CA1056CC520ADF92A0172C /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CE1C1460FDDEC9C3CEEF55F003DD83F /* GDTCCTNanopbHelpers.m */; }; + E6FA9D4D0E3A33835FB247CBA1CD768A /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5CC9ED54F7B5C65311C45CFEB3801B0E /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E6FEC220816BEFE0240391B0A0A0F62B /* FBSDKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8268FC5A875BFBBEB4E47D57FE52281B /* FBSDKColor.h */; settings = {ATTRIBUTES = (Private, ); }; }; + E7053A3D7A9297FACC6C4F52BF0F868F /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 12B1B11494793F2640FF04AAAA0E0C43 /* http.upb.h */; }; + E709FEB908E8EE2A6407057E8E10C44C /* static_stride_scheduler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98865B818BB8EF47083F25B283777988 /* static_stride_scheduler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E70C8692617DCCCA99BEEBA549411074 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F623A622B9C721F2AEBA8FCBA6C3865 /* xds_bootstrap.h */; }; + E70D2AB7B71E549AC6BB51ED66388D3A /* FBSDKViewImpressionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = B75D456B8227A687959266B891202BCF /* FBSDKViewImpressionTracker.m */; }; + E70EBA16751054574A227A6432CCE4B0 /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = D67DDE5901A5EC9A7EACA8CF6F4E5C2A /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E719BA07CB19794DD50CE5D17F9F76F8 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1453134ED8AEA83C94A16F53E9466927 /* frame_rst_stream.h */; }; + E73390436F1B5C3930A612D23D309F11 /* FBSDKAppEventsUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E0B78645B8BCCC94B0206827F689CA /* FBSDKAppEventsUtility.m */; }; + E7378F61AD6959D5538E595EA4A48AF4 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C27F0C0AFA49CF78885A1C9F0516450 /* AVAssetImageDataProvider.swift */; }; + E7387052EECF32618582DB81177C5055 /* dns_resolver_ares.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2DAE0893C53A282740663127D76D95 /* dns_resolver_ares.h */; }; + E7396545DBB8B484AD35C9FA62A813A4 /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A320FAB8002209A7EF65CF5C5B2F6D /* channel_idle_filter.h */; }; + E7408485B58643962A6BE9EA2F798CF7 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 08E2BFE18FA1334EEF31D049B919F49B /* transport_security_common.upb.h */; }; + E74937E3805107D435D35D41E58893B0 /* posix_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4FF5FE0FBAE0BB3881E5C221049533DC /* posix_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E74B1BA9B3DEDBE7044009E665EFE86F /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E13A6EE45F5C1CEFF594B79A5E56CEE8 /* filter.upbdefs.h */; }; + E751FF6BECF2E9A1F4211290D23D98C0 /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D5A7D67D3AF87D7C1DCD0B6097449A /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E757601CC00D3CA3E817857B30D68BB3 /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 476E9FC75CE82108A5076276301F21A8 /* iocp_windows.h */; }; + E763147749089158594DF4121DBA1233 /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 63D63AEC5776C2570F3BBA290131277B /* transport_security_interface.h */; }; E76410A90E848D34EC057B7AEB30296C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - E764B809A3919BFEE628CF642C051A6E /* map_entry.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DBBEC7361E6419640B703064F63EDF /* map_entry.h */; }; - E76A457095A82F9A1E5D9D6AA0017958 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B04F46FD7592A390BC0B0F834700089 /* xray.upbdefs.h */; }; - E773389F9DFBB6B298C8972AD5114026 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E77A7E604E0D8C5BC83F3A84CDA81E17 /* rbac.upb.h */; }; - E77350E4DC12AEFA5AD413C0D9F3FA47 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E0D2D9C9CC95C76B2F3077237D46E80F /* TZPhotoPreviewCell.m */; }; - E7805181D8DECACF7D1FC03036B7CEF2 /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F13B615C240933AE43DF59AF26FC6F /* oob_backend_metric.h */; }; - E78A75BB60645CD947D3CEB5328B8FF7 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E72B29F1F832B0D659B4B5FD1C74931 /* NSData+FIRBase64.m */; }; - E78A76CAB6071DEB96A0CC9282D309D6 /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39EF061F6CDE280B5D94572D010C8B50 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E78F74E8158A5D55E56829D33DD98C92 /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1570612292ECFCB5B4B643636ED8F08A /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E7946267659A54C5BA094B5E774B597B /* types.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 2F51B6E80CCB08F68BE055BAD3CBA575 /* types.h */; }; - E79950E637E45FF50FD955DD005070CD /* router.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D0983B80EB433848285802BF2FC2C48C /* router.upb_minitable.h */; }; - E79AC10BB9C1171E9122498396B36A41 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BE7293D29866A8E78748CFCB74C84DF2 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E79CFC1F8A3983FAACE0D69026431116 /* cf_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 6937C7DECA5473FA57C1A8447406A2B0 /* cf_engine.h */; }; - E7A4955863522096A1529253DC64E954 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = C585307E7AD431B5049797C9C6499ADF /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E7B1470CE91F1462BF9F680E1408B61E /* create_auth_context.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3CF963187214685F8C9991A1E5193EC1 /* create_auth_context.h */; }; - E7B3BAFC9332D4968824E73A5B28343E /* civil_time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 57DCD7A5C33CBE505720A257C349D55F /* civil_time.h */; }; - E7BC569A6BDD11408843F9546315FC71 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = 263D637C42A0FF6B25083C4576D4EAEF /* distribution_caller.h */; }; - E7BEF5A46B431619CE03EBA9734945FB /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = F12F4F732B1049BCC0761E0DFB93D97E /* http_proxy_mapper.h */; }; - E7C0D2647F1ED14DBB71DC53C7708B6B /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DD564A2163A1AFE56CC423B434F7AB63 /* FIRWithdrawMFARequest.m */; }; - E7C683797616E936F4D7FCDE0E15C6CB /* message.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 512F42E55992DD16E9623E28016F124A /* message.hpp */; }; - E7C777A3A03A5F914B0D7287BD9DA142 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */ = {isa = PBXBuildFile; fileRef = 97278EA56DC568539320DC45D4735326 /* internal.h */; }; - E7CF31E93BCF03723D886EBBE11C2E33 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D705033E1B400512C16EA03A9DF234A /* dynamic_filters.h */; }; - E7D0FD54D56212CC3939B64DA5DDE886 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 07B3C24BA4CA8EEDBC51363F35675023 /* posix_engine_closure.h */; }; - E7D6FA26FCFF2A6E10C5510C2ABE056A /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = A832FA5E8F32E3FAB862D793F85097B7 /* address_filtering.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E7DE1B0232769592BD0351CE8F5AB5AC /* config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 04E7F4D5B50F810E407AAB68AC4EB1E2 /* config.h */; }; - E7EFBA3B08B0CFF8D59448A8684D666F /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 38AC8057E0552D610215BF9352B997F7 /* call.h */; }; - E7F0BCF569165FE3375A4FFA72339E57 /* httpbody.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5CB6F82C84152291E3699DEAD83651 /* httpbody.upb_minitable.h */; }; - E7F5B541E52CD4AED677EB2323C41C4C /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D454505CB2B38A0F77BA116058DEE74 /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E7F94F4816D9E8ED45625550F75BD61A /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 74F03F08EC95FEFBA52A25A2640B308C /* slice.h */; }; - E812D1144C92B97A5D15FBEDD16E3824 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = A6D38E4FB67021D76521E3CC3C98061D /* legacy_channel_idle_filter.h */; }; - E81BB7562594B8C88B7F67A4FB4798B8 /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 51BDE107BBD7B8866BE54D2E45D671C1 /* substitution_format_string.upb_minitable.h */; }; - E820A84A02DD490D87BFBB90157067A9 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10BC9CBD2D974C970CCF9EEB674C6621 /* outlier_detection.upb.h */; }; - E824B9340FD5C4C1AA24ED18B850B732 /* cordz_statistics.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 414E17B83AC5B77FFDF389B4AC674C65 /* cordz_statistics.h */; }; - E82D5CF9BD7CF5AFFE95EB48E80CC136 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 44B4DFB39DB20C371098EFA2F3F46654 /* migrate.upb_minitable.h */; }; - E8309E53495892AC7C1B71D2C87D2E4C /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1AB0EB84CBD217EFB3FA4FC0FC46F7F3 /* common.upbdefs.h */; }; - E83FE27FF5B408A91B652EEE0FBB5A53 /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4525F2D904F878C2A6D1F9B9F8F97597 /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E847752437304AE4ACC3DFA6D2B4EDD9 /* cel.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 771DCFC459FD68A135E93D13909B0399 /* cel.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E848C13E3611F9F2FADDD4DDB3D8FC58 /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23284CEB679C8A8F97D340960EF4D968 /* xds_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E84B8F583757ECCA416E9E398210BB68 /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FCC3F04109CB34B00001FFB2EF099E9 /* xds_http_rbac_filter.h */; }; - E851C605E232F27B6AD8ABC235E111D6 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C33B9770A48F21CDCA9C1D8AEF36187 /* fake_security_connector.h */; }; - E8611D0052897939174A83949AF2F825 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 789BC5A41F72446247B700D30848D88B /* string.upb.h */; }; - E86C80F3CA705867892DC280D06432F0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92272F41F223C887F814EE26F783E9C0 /* common.upb.h */; }; - E8784039DA96AF725BBA0D88C49CC241 /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A47CE4523EA1C6CB3AC7141BA0E9D11 /* health_check.upb_minitable.h */; }; - E87FE2A6B818EAC4BA1CC896D2990502 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B76C841B027D0497AA39B01AAC696295 /* hpack_parser.h */; }; - E88CB3C955CAA0FB12A38EC57BB8B3C6 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 6397412FEBAB4F7B662F76397A7715A6 /* interceptor_list.h */; }; - E88DDBE7DAF29F9666BACE5CB241B1C5 /* int128_have_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = B05FDF1E1B8ED92C92E1E2C79FC64BDB /* int128_have_intrinsic.inc */; }; - E88E57289CFFACC6DD01211B100DF670 /* native_windows_dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E57DD5C73964EA2CA7F91C33ED492E5 /* native_windows_dns_resolver.h */; }; - E8910C47F69B9BFF00781BF7B9B8695B /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AF84D624602C92473930A69C87D64A /* semantic_version.upb.h */; }; - E8A4FDD18C0DFCE336B8682029037CEC /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 95C161A577886DAA3AF5E494BF278046 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E8A7C2F4BE5B0CB63B4B09367AA9BFCE /* json_channel_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 311DE58A245FE497704D084D2EC99514 /* json_channel_args.h */; }; - E8CBB7E42BC81BB669ED81672A17C15B /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C4603A0BAB75FFA1E81801422D6ACE79 /* outlier_detection.upb.h */; }; - E8D324E558F4061FC65E13B45A5E7A66 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8AE3E766BC7FECAF917A88C0932C50 /* dual_ref_counted.h */; }; - E8DB81EE2C0335918E39E9A5ECB5E7D7 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 629F6B649CD6F57074D0E091B657D868 /* transport_security_common.upb.h */; }; - E8DFD12FB8E364086A3065AAF0408FE0 /* bits.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 17F0AF175CD3D49B85BA9A63D35B64CD /* bits.h */; }; - E8E5FD531DA11AEDE538DE1F1ADD02D4 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 5E2DCB8637E8981241E03FD4A05F22E4 /* xds_client_stats.h */; }; - E8E8AD6B39B88AA7B5A0FCC03D158729 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 595080F20CDB04B235603107793953CC /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F56525E60E7CE77C10FDFFBFDAC7F9 /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1A85EC0F0AE6FCBBCD8E5DBB82ACF94 /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E8F6FF7CBFDC4032F01CBFE85BEAE96B /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF4AFDCEBA0F18491C1CF0338549B105 /* node.upb.h */; }; - E8FD0D6B50ED24785B8C1E8C24B8D4C2 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8B0DC906BC2AC0AA17F22F6128432AD4 /* stacktrace_arm-inl.inc */; }; - E90731450D63CB70CDEE4C682792AC1F /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D579A93E0E5AD9762D35ACEA265FBA7B /* oauth2_credentials.h */; }; - E90CDAEB0C5481288F4C15276EB1EBAD /* p256-nistz-table.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0A63226F2EEF6FDE8193BB2C443076 /* p256-nistz-table.h */; }; - E90D8B5902698B932BD5A796B045EFB7 /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E402E8D5AE55F093E11356463F7201F /* skywalking.upbdefs.h */; }; - E9232069C8BE36964B5ECD907CE80108 /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A0B4B9445261B17DA5A06BC42A4645F8 /* memory_allocator_factory.h */; }; - E926E5F789D36A9A20A03D4C617BE95E /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F5EEFA0966523A0B516EB48B275B85B /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E92A354B473DEEADAE6225471D9D3072 /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = B88652FE53E190C7C6E8B25C5C3AB78A /* iomgr_posix_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E92D64175F03E27614D3E9859683D9D7 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C95133CF1C88F7BFBED72DEE24A265 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E93512DA9AD573AEB4E3178D30DA13DC /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = D41154BA31BD6DC9E344E66D6FB9118C /* posix_engine.h */; }; - E944C8551EBF2AFEA0462CF40077B0A8 /* external_prequest_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2912EBCB628EB9E74F2E065039411C1B /* external_prequest_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E947D269704015967A86ECE4F60E815C /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 471878165A1D90D55201DBE951BFA535 /* symbolize_darwin.inc */; }; - E948D10E850A451FF28E69E621B3C8EA /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AB6E692EA5619283B58A8FA146ED42 /* tls_certificate_provider.h */; }; - E94F606A513A8903F0EAAF53AE1A8E71 /* backend_metric_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBC24457286FC80CE9F26C23CE6B9AE /* backend_metric_provider.h */; }; - E9539E7119201592EF3F44711ED0A9D9 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 316A7163A7B4C17BAF25890EBB45E625 /* listeners.upbdefs.h */; }; - E95D6E6462506EFD8EA9332AD9BC492A /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA6B24D04E4144DBFD712509FE96736A /* SizeExtensions.swift */; }; - E964A7AB9B1736C7AD8D8C91686EB1C0 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3508CDF38A29719B8A3E88DF722473F7 /* router.upb.h */; }; - E97B5EDFC127728784612075E0B74789 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DBA4019EA241E02193679E07966AE8F9 /* opentelemetry.upb_minitable.h */; }; - E97D2CE80102DEC2CE12B59F5C1EB3BD /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = E08BEF8EA95D16E6020526523B103B62 /* x509_vfy.h */; }; - E98116C220B7838332943CF216A0DCBC /* poisson_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B8AD67E13087323426D2E64BE8A8894F /* poisson_distribution.h */; }; - E9830AB862D1A89E98E262071E1F50BB /* thread_local.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91C72A3C16A7FC4610EA6D516E466DEF /* thread_local.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E989A741D0FDB56A113EFCCDE9CDA54B /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = C269E8B7D1B059D3155601A01F1D00D3 /* nameser.h */; }; - E98DC8FB2578E76A812E0C94BA10E1B1 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5351629C10BA117B7CD6917AB464DF0 /* ConstraintDirectionalInsets.swift */; }; - E9913E099D2BC19668E9AC2E80AC8BCC /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = C52F2C782EF863DD3EF0A42593DBB377 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9AA715862CC392F93EE5168B4D342F2 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D8AFA201470165110654B0385209B83C /* exec_ctx_wakeup_scheduler.h */; }; - E9AFCDB895BBBB8A9B8B2DAAE34CDCD3 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A58956F244756D5C78E1575B741151 /* lb_policy_factory.h */; }; - E9B4218F02D0FC664DF2A69B97CD53DA /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F8B0EFF11EF5FDFAFCAA63B7271EA351 /* bitset.h */; }; - E9B9AD5667EC6CF32C85372F1DD1FCD6 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E123084C42A818352D17C6AA63744EB /* path_transformation.upb.h */; }; - E9BB92023802889AFBFBB9CF027C76AC /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 45001CB3820EEBF5AC7D7D67995EBB61 /* connectivity_state.h */; }; - E9C933569818173C0E7B9355F55F6504 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA541608CBB1549A411B3E090854125D /* common.upb.h */; }; - E9CC91738164C9E11E22588931B35DD2 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D55F1817A60C46B3FE172D98147EF5F /* HeartbeatStorage.swift */; }; - E9CE5AE6846D4DB16DBEB85C987B2945 /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8CB5FD756C0423DCEB94FA537B98CA5E /* datadog.upb.h */; }; - E9D37870FEDE7499CC08DF27C469A205 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D5D84AD79A6230C543A2B0D6D96237F /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E9E0C3D64C2B6B134917D13F92BDF96A /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AC477B9C94AB7B22D9372D4F6434B943 /* xds_common_types.h */; }; - E9F1E95AB9619635B78BC70C30F2ECF4 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F20C0FE94696902FBF412C309B1116F /* decode_fast.h */; }; - E9F7F8E01C966F3336BF721507A49BA0 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 34887DD7F0841ED43062C53A76C0AE87 /* stacktrace_powerpc-inl.inc */; }; - EA04BB23F54D2FE22D885EDE4C5F3FE0 /* message.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 1E460238BA3814C7507614732FF5323C /* message.h */; }; - EA073C2044E1FE88401031E1FDB0774F /* gaussian_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = DBFCA5F1C373109B2AFB12B2FCB779C1 /* gaussian_distribution.h */; }; - EA080F4888403ABE58B5E00E6A8D6F8A /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 46FD8984516BB2DB3B892617BD469491 /* message.h */; }; - EA0EA856ADAFFE05471A9D39453308E6 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D8EF522D6BC04C5DDE742D2132A4E5 /* http.upb.h */; }; - EA1D29C7E9A6F736EBA3984590557903 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74CBC7BB03C5AFBB7C70A2E7DBBB8B53 /* xds_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA35A9AB253D1B93E3B361924B2D6E5B /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8076E629B1AD63CEC0F648DFB553848B /* uri_parser.h */; }; - EA4BA94294A25D89BBFE2D9290714EA9 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */; }; - EA5145FA1445506EE9BD4AC69AF723EA /* cluster.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7727B482374D53B779434792836F16F8 /* cluster.upb_minitable.h */; }; - EA5D3B3B46F526A6D9765FE4FABA198B /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = F702ADC3300AB5BE2E82C1533D1B11DF /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EA5DD5F7ACA0BEC0392B07BCB03E1E38 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 24CF4BBB8569FA57BF6103DFD65FF6A6 /* FIRInstallations.m */; }; - EA5E53300397D9C5CE137FF0D06A5B2E /* map_sorter.h in Headers */ = {isa = PBXBuildFile; fileRef = E5300E0CFA08053FB865BD3D647B9628 /* map_sorter.h */; }; - EA6C2D1AC2632341584E1D5F3AADA8D9 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = AC373EAFABB7A39911EBB0DA89642F51 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA792EF728F84BDECADB372AB349A390 /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = B4CA3C31DF5098890F0353BBE40ADACE /* def_type.h */; }; - EA8675038FCBE620282F1461B5D9CB17 /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 902B39B9D7A0772E9C8AF5D45A2C23B1 /* hpack_parser_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA8FC5DC33EBE98F3622A15DAEB44EA2 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EAFE04ABA3C695D819D3C57B14E5121 /* _ObjC_HeartbeatController.swift */; }; - EA92DA4C0AE7B4B0E00F54E8D3C46437 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3B68CAF25F52193DD03FBAF736AAB9 /* proxy_protocol.upb.h */; }; - EA97E94F4C95379232CC9A3D1024D743 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6D1DE938959201731BB35919CC5513DA /* timer_generic.h */; }; - EAABD2E314A625E5F71505F000CB4D34 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = DB2DFF9874469505C0DBA26FCD1D8071 /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EAB2074CE338D12438CDD5C1E30ABA45 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DEACD7DC5DFC5774AC43E6273A3A6B /* randen_detect.h */; }; - EAB8AD17645A7FA4587D302733316A72 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1478307A13B4C5B4E96B233D177CEACB /* route_components.upb.h */; }; - EAC1F17FCEBF1194725F46BCB8A70191 /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D467CCD3EF36F4D32EC76A2CA6104D /* generate_real.h */; }; - EAC9E226BA041F6E035CBEC7B831DA29 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 18A1ABB64D2A1C6361AD1E2CB5000B03 /* status.upb.h */; }; - EAD0EB99C16035473509E3919B74D727 /* def_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B33CAE0F4284E64DFFD59B568CB2280 /* def_pool.h */; }; - EAD41B01CA3CC0CBE22ED32389518A22 /* async_generic_service.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = 43CD1752C2761A8AAD9EE766CA978089 /* async_generic_service.h */; }; - EAD524636118DFC94599863C3B2F5560 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = 260206AA12B46A154D59BBC01F2E6054 /* ssl_key_logging.h */; }; - EAECE0D77CA09EC979A7425B0292565D /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A66E6D5337C3A205A8A270F03F90C /* polling_resolver.h */; }; - EAF1E5F9D1E256992E909A5F538BC3F3 /* compressed_tuple.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 04AC091E6CD9D9FBA25E0B5AB087B1D6 /* compressed_tuple.h */; }; - EAFA83009F6829D2DE458B1097D4DB6E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B4CD7C67E3C223657DBB6C5404445E /* internal.h */; }; - EB03AB9D4487C14F9EA170899AB1A474 /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A750327C3915775D2CF5D70B32B179A /* channel_interface.h */; }; - EB04F6C37AC4B664CAE99708D0FA1FA7 /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 2AFBF4E49E7FE6E87EE84576980EDB28 /* httpbody.upb_minitable.h */; }; - EB111007D8149696053725B204645EAD /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F923A2E0F49C5C346BF2DA9B978FAE64 /* stateful_session.upb_minitable.h */; }; - EB159D3D60C7E89983EB5B7D467A7D14 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = CC28B3D9CF4742AB7351F97E541BF28A /* escaping.h */; }; - EB1C36C64F1AC2469D701C0AD4E55735 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D23041D7B6BC2DEB1E4A9F73EE967A9E /* base.upbdefs.h */; }; - EB2EE9E3D174AD71FC5FAA808781FC77 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A32C20DE10EEA48881C3FF3BE0904F /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB2FCE15563A888CBFD4910E1124A6D2 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 166B23B917047B215C27F334B8970D13 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB31EFB8241467684493BE78303335FC /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = A9C645B1B3E678E1BE11792DFCD4F03D /* xds_lb_policy_registry.h */; }; - EB468A45F23BCEEEC0AD8974354B14FF /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8652AB01C13FA784A5D586725E165F16 /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EB4D03AD3B17A5972F4C2A1B0EA9A214 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0413254134D0F7CC1B14052ADB4F6520 /* ref_counted_ptr.h */; }; - EB5ACA0AB26A7B2627E80AB0E62FB6F9 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4078692B36DF6209FD5E89DA4065ED56 /* authority.upb.h */; }; - EB5E31642AC2784D5A6335DDFB4337FF /* FIRCLSExistingReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = ED57507E96A306F291F12852ED022D14 /* FIRCLSExistingReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB5F6091098461ECDE54F886EF35A8E9 /* cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A86E61CC5F4A5C984A931D4B0B2CCED /* cpu.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EB612A9686B6D1B670FF159CF0C7384C /* composite_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4031F92AD885E549FC655842B7C488F /* composite_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EB6302BE87E3ED380BED6EE2DD461B01 /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F43FC1E43EAB8366660355326A0C762B /* abseil-dummy.m */; }; - EB6F9050F965A58792954F57311600C7 /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */ = {isa = PBXBuildFile; fileRef = E4489B92A4ABC7C5E0D153B008267108 /* pick_first.h */; }; - EB70629A0B023428BAA492A2404E556D /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C58B05232C8BF28153518A07E8845C0F /* server.h */; }; - EB7C749E7A79BEF289914D4D30900286 /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2084478FE25E4A5CDF71B8BAC7966243 /* xds_cluster_specifier_plugin.h */; }; - EB8B9ED9776D54C7FF85BF1C541848B3 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 334E09D644A26D6D3ED793E245B04B12 /* filter_policy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EB90CCF2694E4F725850C7340C6ACBA8 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C65A4E689D8CA790E90613AFE8D0EF /* FIRVerifyClientResponse.m */; }; - EBAAFCC95B242D0D976E15D9E3D3BEFA /* zconf.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 2910749493940BFA09C87A267F956EB3 /* zconf.h */; }; - EBB321384E5EA5A8444210217D03A3FF /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = A12E517EC84F573B01F2EA4BB568B565 /* alts_frame_protector.h */; }; - EBBE3B473B9A5305915A4985B06C7574 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = BD2820560C8578A0633E1BFA50E2E83C /* channel.h */; }; - EBC1974A097B96920B58A90EA562B043 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B411073CCDE9CB469E85F2604B1CCF /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBC21BD7A8B76E77D63FCE3D15648A1E /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = EB99F12636EC7644C58AB333C513B6FB /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EBD2B115576CBF31939211E37AE10E89 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 699D53B25E3969069B7BEF20E6E44A57 /* notification.h */; }; - EBD3BB542C711A381A53144B37517793 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE4B98853AB6EF93B06D43C3199354A /* callback_common.h */; }; - EBD86F31224CC1A0DE02C52D503FE49C /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2CB3B190542DEBD89A08AEBECA6CD9 /* FIRSetAccountInfoResponse.m */; }; - EBE8C0A319906DBE52F8E3066CC12B52 /* FIRAggregateSource.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC74B617926B69A0B3FE84EC2AB2442 /* FIRAggregateSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EBEE9E435383B9EFFF94708253DDFAE8 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = 46DACB750B5D843F239A2DBEAF07BB98 /* activity.h */; }; - EBF91E1627CDC5687E6AF89DE2DEF273 /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6DEE53045506C21D1A54BFEC09B706 /* certs.upbdefs.h */; }; - EBFAA4690E09A4EDA108D3BBEE45F6E4 /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = E6EB8C2E9F30BB69814EE696EFCEF3FF /* internal_errqueue.h */; }; - EBFEEC58E626C6F5F9FA3EC0CC63E1B9 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = FA888D84D215A359138B2EC521561AEF /* tls_security_connector.h */; }; - EC0DA702E13495C3A5D4489A110D081A /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 637CC0C421F0675015A89EACFD04D34A /* tcp_posix.h */; }; - EC1538721643C271C3344DD89C7F1FE2 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 97C8509120196AC77C6BF704A5E1DFC1 /* transport_security_common_api.h */; }; - EC2191524D37B1A4F25134E72649FC84 /* curve25519.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 06AA23034785E6CDDDC1E0E5643C1862 /* curve25519.h */; }; - EC28E3054AF1F140AAC434D851F550D6 /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30AA2D3189C89E25B6C053D2A22E204C /* channel_stack_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EC29A2CBA22C87EBDD6C37AFDC823C16 /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 759FE8B95FF6A61D1A0A1D3DE2AE9872 /* binder_android.h */; }; - EC2C380770BCFEA4F934A1B7969CD283 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = EA08C6EAFD54216AE5387F523B3AD65B /* checked.upb_minitable.h */; }; - EC32CE4FDB64B7364EA5F7D31DAF183A /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 182B9B3439014993DF2CE3BFFE634019 /* lb_policy_factory.h */; }; - EC36E08989A42AAC58244C3077717CF7 /* ping_callbacks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18554F1B945EAD7A802B62C4850174E3 /* ping_callbacks.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EC37F02872DEF2FC8ABC90F51EDEDF3B /* string_ref.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 7BB2B1D619DCF65D5B83A35D169F0AB9 /* string_ref.h */; }; - EC38787B2D73C885B6CA36CA1DB44F39 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */ = {isa = PBXBuildFile; fileRef = 3C85BEC84820E0EF2F58B68255A7CB1A /* thread_count.h */; }; - EC4A7A5C0A6C45361C6E62B67957CC53 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = D924F2197EC7C216A23C9481C543DD0A /* byte_buffer_reader.h */; }; - EC4C34221C212FEB70AEC30C1605E1AB /* metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5425E2B69D1389735B227D37F6E085 /* metadata.h */; }; - EC4D23246C66B99488837FB7B71FC096 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B0E0E03CECFBBACBEA8BA51C4771FBF /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EC4FC4DF09474A5334CA75AAE7D1F245 /* server_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 3DE2D1C0683BBE926F7B838AC5F2E317 /* server_callback.h */; }; - EC586B5640C2854576D5D3F7617BC82F /* round_trip.c in Sources */ = {isa = PBXBuildFile; fileRef = E0531C4F78BA76F29EBD81182758B64C /* round_trip.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EC5938E0ED54067A384F6ABF83ADA68D /* sequence_lock.h in Copy flags/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CC7045D2197583946A8585A194A2B9C2 /* sequence_lock.h */; }; - EC5CD8777C1A94FEC6A9E7F40CE946F1 /* http_protocol_options.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C354A7C6C83A549B636BC98126B4E02 /* http_protocol_options.upbdefs.h */; }; - EC68D86843EE41D5109321254604D317 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 0621A4A5CCDAF62288BA5D7C16F59692 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC713B74529AE49B7ADAD65C7F7179C6 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A758156457C5411D5001F1A1FB28C414 /* service_config_helper.h */; }; - EC8B360E5C3BC00745C2A955D523E84B /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9129B66AE5ED3CDDF6CF9D6808EB2D /* rls_config.upbdefs.h */; }; - EC93C66EF0E7B6D59EDFBA90C2FB75B2 /* randen_hwaes.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 95B390F198735D7EF93C29CC3FAD6A42 /* randen_hwaes.h */; }; - ECA38A254254C77F831CF84D3721E437 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8E2AE0F987A2B34BAA32D574B0EE9BD7 /* xds_credentials.h */; }; - ECACD00E22AADB8031B98215FFE60F5A /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B2D6349967415EF84F05A6AF4BE4DDC /* socket_option.upbdefs.h */; }; - ECB294B53683D4F672957FCA5A6FFE4E /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A7D154C842257A3383D505F471A639EB /* debug_location.h */; }; - ECB7CC656B6E90C786C999E8F24D0764 /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46D309A7EA3B1E8D1E0F08D35398E061 /* listeners.upb_minitable.h */; }; - ECBCB0779062CF78FD680B3A00118055 /* json_channel_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = B3E69C1F3348373C1CB7108D5BD6EE5E /* json_channel_args.h */; }; - ECC49AD36D451DDEE1FEE58B2EA85A2D /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C22955271F4C8B2AAA4921E3DA45805 /* binder_server.h */; }; - ECC4DF13AF505997EF6DA80461350FDC /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 00CA6717C30CD4487F9BCB1353686864 /* round_trip.h */; }; - ECC80BD5EA583FBA5FFFFB72FDD2C265 /* def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = CD088AF29CEF7CFBA187EB91BE7C3332 /* def.h */; }; - ECCFEEB8935B840556638E4FAB226D9E /* crash.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D09E54D4F9460848903B23168D718F86 /* crash.h */; }; - ECDD5EB3729390235A6D4F0A5A658AC9 /* status.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 080EA6A47C9E27149530F39654EBC700 /* status.h */; }; - ECDDF642DE575165F6C84D2D74CF7992 /* wait_for_cq_end_op.h in Headers */ = {isa = PBXBuildFile; fileRef = 044AB2672741D6C2FCA20CC8B63B696C /* wait_for_cq_end_op.h */; }; - ECE6F23823454A8FDB3F97CE1A7CD182 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E74FCC89B9A909DD8D2E28BAF318179C /* RedirectHandler.swift */; }; - ECE7A5CADE5DBAD2715098DF3BF44D44 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 31323D1E69B1CCE4640BB54F66B782F7 /* credentials.h */; }; - ECEC371F80F988AA510860148D7AC3B8 /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4751091C4CAFAF75C28E799762353FB /* local_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ECF2F956B37A4C28B228BC291A57AD6E /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = F051D43D8EA6240FAF7F020EB3F3ABFF /* RequestTaskMap.swift */; }; - ECF43B654859F59E2A9916463FDB9928 /* ref_counted_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7C5DC24E1FA7C2AEEDC84D88F332759 /* ref_counted_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED002AD544066888C9AE3848063DBADE /* map.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = A6F714B9493145A81FED6D9058D14C92 /* map.h */; }; - ED1F2BE3AE87A1B11AD817DF496C8DCA /* route.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 208ED97C6A6A5F2C67C7736EC4B8A7DA /* route.upb_minitable.h */; }; - ED273F2842FD39305D313C2A98BEC448 /* nullability.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6B4B1721405C4AD0A3C5779AB4CD08FA /* nullability.h */; }; - ED3107C749DE9E3331024F419BD39B33 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E749E738AA3F2E6E80A6A239A940EF4 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED33760EF82049AA49C6FAD99DE58E54 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 799D3DF7980697B3529D224A07B88557 /* udp_socket_config.upb.h */; }; - ED338CCC43E4322F269E1CEA47AF1AD4 /* grpc_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A9E8640232B4FB92EDE0D6B2B5CF1ECC /* grpc_types.h */; }; - ED33AC4CFB92A252D89BEA65E5CB948F /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = B20C2DD31BCCAC02D21F2C4B63E6DA9F /* memory_quota.h */; }; - ED35C0C4B6591A2FA3443745B831DF9A /* cfstream_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = F92B7B16A7412C8AFFC40D49CDB963EF /* cfstream_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED36AF5218BC54FAE45170081CD7D160 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F9BC0B5731D5BF3351F857545FF96072 /* GULKeychainStorage.m */; }; - ED3BA2A3C6E893CA07C24C6554AE48B1 /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E37A80801D984601B35C6E618E040A8 /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED3EF99AB9D6558C956590ACD1237EFA /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3FBCB7529A7BE0204C9C96A2F6742C /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED5D8384C3CBD0B3309C3729373773A5 /* retry_filter.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 20DAB0D10357AC0467943847FCA16B69 /* retry_filter.h */; }; - ED6070197E183A3837BEA6C5BEDC8653 /* curve25519_64_msvc.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3E252FD455E57F17525D84AE0780E4 /* curve25519_64_msvc.h */; }; - ED646ECC7D03327607EF353F9F86D483 /* init_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E1800BF79EE0FD81077421EAF6B45AAF /* init_dump.upb_minitable.h */; }; - ED73AC0E8A7DED12F1E7D09641A42135 /* reader.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = E54D5097D5238C67E534F133B86D9352 /* reader.h */; }; - ED7BE203D4433D6189ECE245002005F9 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D154C842257A3383D505F471A639EB /* debug_location.h */; }; - ED8A84DA032073B9628BEF224EF9DA3B /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 75511C0F7DC0A923114F1A5E40B39976 /* latch.h */; }; - ED9138354FE5D19CE8A2F7812F8BFAFA /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 5EA821AE1EAADBDAD65B61A542269C61 /* external_connection_acceptor_impl.h */; }; - ED937B3B4349B754550D319F45C80199 /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 020B5791475B7825476834230ABF0C58 /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ED9A767A1273C8C7909CDFD0BF38CA54 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = AD99245A7658F3B1E7383B357E505902 /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ED9E51268B293E6CCCBE84E1971A052B /* futex.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 647F18AE81EB7B94400A3EE8335F499C /* futex.h */; }; - EDA492EC78D8848AC3F2D451AA161D41 /* FirebaseAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2242C958907DC986BD82F39235940B /* FirebaseAppCheckInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDAA853D4804740B57EC44E465FFC606 /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 880264BF825768662058B7981F945A08 /* match.h */; }; - EDB6F00E75B4A251A13E4C639543A248 /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5F745F145220173684C47AA36E1D7FE1 /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - EDBA001928BBC18330DE0CE64B76935C /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = EB539C8226F09333E0FE2AD080CF9E25 /* xds_bootstrap_grpc.h */; }; - EDBCE82F1E0574C5DCF7261D1171D7FB /* FIRCLSExistingReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEA9A642C5AB014E46B6B6AF751EC236 /* FIRCLSExistingReportManager.m */; }; - EDD09A251AB1D419B682DA63DDC0063B /* route_components.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = B896495106A346C3E4E1F794210F5D0A /* route_components.upb_minitable.h */; }; - EDE67D2C8721A2EC54B60130A9CE13C1 /* message_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F16679B0F2076A1B751922EDD997C2 /* message_def.h */; }; - EDE80D95C138B9C4CCACC8BD41D91470 /* http_tracer.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FFF12F485358EF78BF62B812C3DD392 /* http_tracer.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EDFEC29C1F697C1A9DF620C514E16687 /* Time.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E34E416F8943B0A01CD476D0E5D40C /* Time.swift */; }; - EE05D393D208372A8FD8D5FD983C5944 /* crc_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A75AC896640EF70FC738DC83558425 /* crc_internal.h */; }; - EE0ADFC1031B8D3591913EF80FEB8ED8 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 26112CD5FD64DCFB2013B39A956FA0FE /* alts_crypter.h */; }; - EE104A3FAF5BC8EAEBD80FF61E6FA780 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FC07F214D911DD1AA222F292C584BEA /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE12844A3C94BB429BEC9A636F894C92 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E6994AF94F5484A5221765F857F72E /* function_ref.h */; }; - EE12BB4012567C0DCE81B484B02483A1 /* posix_time.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9BDB3738774951A2566B83702CA3D2C9 /* posix_time.h */; }; - EE13162F30471659B679C4C2C8C8FFC1 /* bad_any_cast.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = E8673BCFB168B463464E316EDBE5265B /* bad_any_cast.h */; }; - EE1BEFB109242710F1F40DC1F24B6C61 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB65CE423B4F6ED903865D2544DEEE6D /* alts_frame_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EE245CC18B4007A43BDE7CDCDF42E666 /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = B440FE0F34265799B65625C092CC12C2 /* reader.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EE2A1DF816AB1AF5FB39D2FBCD00305C /* pick_first.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD6633180B347C55CB0F7780E057C9D /* pick_first.upb_minitable.h */; }; - EE41F578F775F9A5DEBD8011892331EA /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D41154BA31BD6DC9E344E66D6FB9118C /* posix_engine.h */; }; - EE4746BF4DA4385700DC8FAADB072722 /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C69DC47B5A4327716C76E74D49320BCF /* FIRMultiFactorConstants.m */; }; - EE4AD5A3C2C6E5513A3413BB88E266E3 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B750B2A7AAC6E334BF6E5DCF2CE682DD /* discovery.upb.h */; }; - EE4CB90B750AE9251147E97A40F07045 /* cpu_aarch64_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D1251FF903F47F2D9FB1799E72C472F /* cpu_aarch64_apple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EE4E233D2DD0DFC4F82FD6748EC3429F /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D67940C68B27DAB03AF6D4321C21AFCD /* ImageBinder.swift */; }; - EE500487781FBC426104F645F8FAB0A6 /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 31C399604159E4055004553B0562F24E /* health_check_client_internal.h */; }; - EE57B775C313B2CB4E350F1BE9F2A644 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1945339EF3FDC2B927BA64FBB010D60B /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE6054D93A1E01137E5452FF6499981D /* serialization_traits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CEAF681F9E869183CE6185F3C796DC35 /* serialization_traits.h */; }; - EE66C991D8310F75804579EDE0F50AF6 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = F273C6BF8E39A0DD763D3930D94D127A /* call_tracer.h */; }; - EE96C347B7FEA143A96D4B739B5C5261 /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B70BA71C266A60599ACF7FE7CE259E8 /* ssl_types.h */; }; - EEB559E3B3CC73EEB8077F5FD7DCE8F8 /* any.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E4BA64E73FE7F1ABC120E935E7CA81 /* any.upb_minitable.h */; }; - EEB6A84FBE7EDD954590EAD32F9D95E9 /* grpc_service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E2FA72302094E2A0D9CD2F104C1816 /* grpc_service.upb_minitable.h */; }; - EEB70D6F072AD6FBB6C7287887C6E445 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D853C737A2F31D574C9C31C9F441B8 /* listener_components.upbdefs.h */; }; - EECA347E2C08016E8E376ECFD53D01F6 /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C4566A8EADFF00BDE9167A8E29112F7 /* grpc_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EEDB7E2AFDDBF622A23EAACFD0AEDCE9 /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = F07B34CB9208E2B74C307877AB3434AD /* load_balancer_api.h */; }; - EEEBB60EF95F691EF093951EE490259C /* service.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3B2A8F5A9C2B96D84AF1C0C9FF02A9 /* service.upb_minitable.h */; }; - EEF224EBF59385E4EF34391F943F62E1 /* symbolize_win32.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = EA036AE934DAE90256888BFE6A34479B /* symbolize_win32.inc */; }; - EEF44B960211335749903E7BBD96E7F1 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7457123E7D8527A87BABB886D345CC52 /* alts_tsi_handshaker_private.h */; }; - EF01A741A0539A740AB062399A7C8632 /* nid.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7EC16E91AB87253E111BE026440B4FB8 /* nid.h */; }; - EF0913BC8DF69A93D7A9C1AD9487E4DA /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD27F2B17B387D9F13318A65F38B672 /* status.upb.h */; }; - EF0C2C4C465E71529C8843B89E0DCE91 /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2959CCE459D1D600FC0BE513087C1FA2 /* sub.h */; }; - EF0DABC326AA469F61ABBF87C69B8FD8 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = B9F5AAE303D46A3C45F4E4531C44AF6A /* server_config_selector_filter.h */; }; - EF19C6F359EE64E3840D04B7A79E9C6C /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A3F6325BD5A04BCA518575952B2854B /* extension.upb.h */; }; - EF21586EC3DFF6097A58EEC87376A0C1 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D9BD93725625AFF2AFF02970C98905D /* ConstraintLayoutGuideDSL.swift */; }; - EF215A6844813DB8F1636EE1E1E38012 /* FirebaseSessionsError.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6B060F4B72C6DEF7D02698AB6AFFB4E /* FirebaseSessionsError.swift */; }; - EF2243DF70A9D54D4FB946E2842B9F3E /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 100022F75B7CE259D3DF2518920E1133 /* xds_endpoint.h */; }; - EF33B7A56410360F21E6859539576D7D /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = FA17BD8954C193AA99B13D8907BA9BAD /* elf_mem_image.h */; }; - EF3B4959EABCE9BD25051B83C032A475 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CAA698758924DF994C9611EFD21890 /* ref_counted.h */; }; - EF3D527D453C51D7969D401C1B0E72B1 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 416D757DB3A6C784775D66646C54DAB4 /* cluster.upbdefs.h */; }; - EF3DAD3CBB6065C4A343841991F1E440 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2DB61D1C769DA52F83C426022F933 /* atm_gcc_sync.h */; }; - EF417DF967F614048EB81A1029D2781F /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D389DF30FD84BA35AC067F4BECB1BBB9 /* overload.upbdefs.h */; }; - EF52684507F91CE1F784E3AD058F428E /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FE5355726EBF4B762CBC4FE5A0CB8DE7 /* server_info.upb_minitable.h */; }; - EF558E4D2718A880958766772EA760C3 /* xds_bootstrap_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BE8897428991EBBCC81ED2D2ACFB0BF /* xds_bootstrap_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EF5E1773A752FE261B6495D87A47E8C3 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A23199FF92FAD05C08ECA8439DB1547 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EF646F26FEA6459B95A5F20A2070D6E5 /* TZGifPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C21940E72FEC606B05D811350700C897 /* TZGifPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF6833238C7BE626742610B1A2A08DAE /* randen_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4ACAE8B5B22B0AB176B0E34438F40DC7 /* randen_engine.h */; }; - EF69495A6A0AE8F52D5BCB8287989EC7 /* config_dump.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 95751A275DA324D5831038BD76349D71 /* config_dump.upb_minitable.h */; }; - EF69725017CF82CC62107E2A54E7FC7D /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = B22BFBFD3AE4C61B4DB60808662C10A0 /* validation_errors.h */; }; - EF7A17F79D19AA6B3103C774C7BC190F /* socket_option.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E6EB9757ECA09D6BE4334A772838830 /* socket_option.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EF92C62C632C32BCCB2BBC131E8B262D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - EF93F9B283C1BEB0E6A1FD3DE41FBC75 /* arena.hpp in Headers */ = {isa = PBXBuildFile; fileRef = BCC5A9A21BA2B753E2DD030AC9321BF9 /* arena.hpp */; }; - EF9D1C99BA065BA74E63AB2D973E0FD1 /* enum_value_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 803F3065AAE2833F59ACA221B6B3AD51 /* enum_value_def.h */; }; - EF9E163DA7C8C5DD1F7916A7EAE790EB /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = B8D959EEC5E7C9FC70BC75BE42EAAFB6 /* alts_iovec_record_protocol.h */; }; - EFA461BFF541A1512B04A48BD611365B /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CDC3F5CCC1B4E83CAD482BA8D41C6F /* subchannel_pool_interface.h */; }; - EFA8AC53F655A20C30E1CFBF1FBC6418 /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15FA300653B268BC0F7518AC36750A30 /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EFA9E59AE79DA70D94A9CDABE37EC4A6 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2F20F9190A3A1C78C0A31460C16EE5 /* transport_security_common_api.h */; }; - EFAF0894F977D4EC66275276BF5FF90F /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76FEDBAA38BFF86AA8D4653D88AF172A /* route_components.upbdefs.h */; }; - EFBAC120EC0F42980C89E2DE0E6235C6 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F8D9440128C2E0DC3B44A57D495D78 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - EFC73B5A0BB59C97572BA6C589E58846 /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2003E6F47C25608319AB8631B76C1FF9 /* FIRSignInWithGameCenterResponse.m */; }; - EFC8FCC5B6C5F2676582498D8C219FD8 /* wrr_locality.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A3646553FF38262A9D3D7BD25DD0D0 /* wrr_locality.upb_minitable.h */; }; - EFCA281FBBF45BDAAFE8F3ED6BC40C96 /* method_handler.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0AD4F04D238507DFF08B7B8D55C90495 /* method_handler.h */; }; - EFD5FF94E8CCE5E3EC6A58D462D9F344 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1422736621A715D11572E983043F33CA /* string.upb.h */; }; - EFDCA1591457D197ACFB693AD4C29991 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD7745AC4E980D993A7CAD3EC1CF0B3 /* pem.h */; }; - EFE874BD4CC18AC51CE05C29010B2C22 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 79D28D31D68376BD4488E418F585237F /* xds_resource_type_impl.h */; }; - EFF2E7D47A45F5641CFB63A02570E159 /* any_invocable.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = D248384B85F4B29D7DE2F886429B1879 /* any_invocable.h */; }; - EFF528B39F50E152DB112E7131314F9E /* all_ok.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D0401649B70716E36EA103889818832E /* all_ok.h */; }; - EFFCCAB61273CB49A962DD15A66CC53F /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC0AB4D0C3FCE524D2A0F4104395D5A /* http_client_filter.h */; }; - F003A65F993BE72D8C7192CFA0CF84DE /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B29E40967E63BE8A3A7BC91217A296 /* cord_rep_btree_reader.h */; }; - F005D7E1688B78E0CFDE036B7180938C /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 805300EC5BA6E61D4CEACA611464918B /* closure.h */; }; - F0090DBFFED7D8D46CCA2E693540CA3C /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42CF1A50523AF025EE8B6510F5A35551 /* path.upb.h */; }; - F00AEB195E613A473EA80EDCAC5E5E9E /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0AB138575D3C5AEA793BBC5DCA98476 /* xds_bootstrap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F00C27DE71ACD5886C488EFD644D9501 /* delegating_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAC593E2DC16CDBC176A1991A486262 /* delegating_helper.h */; }; - F00E9CA3D610421DBDB7DBA7B65AB4D3 /* rsa_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = EC6EEE58D8BF297DA9F08E57CBFEAD9F /* rsa_crypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F017749C89BBFCA5DFC3C47A46D7160F /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33C2CC761DC3F8763C2ACDB22C558F2F /* sockaddr_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F01E64C5609E7E70690B260A656C460B /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B7F242D76852D0ABFB929DC1A5FAADA6 /* grpc_if_nametoindex.h */; }; - F024F9E4082E62A920212A68C6F210A1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = FD62213CFF500C01FB415E9010C01755 /* FBLPromise+Await.m */; }; - F02E1A34462EF4362E57D9CB046BF842 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A46BB487CD517176F84857B23947E23 /* security.upb.h */; }; - F038D81F7ABAA15CF03246AD4BF334F7 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 75759FB707268A035AE8167EF6337DBF /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F04180C243B00A93D71F0D5A4CF4C543 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1814C779C3A60600013E67E58AC4240C /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F048107F66C9A8162675A86182015627 /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 36DE5BD7F8F24AC476ED7D049B40A243 /* binder.h */; }; - F04B1768B4CAE68CDC3A0830A6BBE640 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 32869D974334B51884EAB22C6B79C705 /* call_test_only.h */; }; - F059F54C0AD2D6FCE114E8E9D35616FF /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E77A7E604E0D8C5BC83F3A84CDA81E17 /* rbac.upb.h */; }; - F05A9C4CC730532C9CE30F4646E7B663 /* call_op_set.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 4FB4F563C5945BCD2F47AF757E8E7EA7 /* call_op_set.h */; }; - F06CF912AE4B9FC5E94BA7C53CA08ED2 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 47C96961DA4B81BB8359CFB479053B33 /* health_check.upb.h */; }; - F07FDB4A3BDC559AE9E73EBF0E09FD7A /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = ACD1322F8672B8C26F63A3C806B2FCE6 /* systemd_utils.h */; }; - F084AED2952624DCA99EABAFF1F5D81A /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 235BE8323E4A0454A229CE2E0DE9D888 /* string.h */; }; - F08B15A83B7D52776D70D4738A25D99A /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = BE180DCC5695A1562C44BDAB79E219EE /* slice_buffer.h */; }; - F0909EEF9ACED4429399C492EDF3A6EE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB94B717377CC1366DA46A6B02E66074 /* internal.h */; }; - F0948DE27C671D46D1D74F84C9AA9CCC /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = D43D4E62B5168E61DFC104467622684C /* clock.h */; }; - F0A10DABC915BB86267C55A737324E5F /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2E43968B1640944B2854F0255FD247 /* listener.upbdefs.h */; }; - F0A653C6D30E98C7709DF2780870F8C4 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 282CA64FE46A8D2AC36F6CA8CCFAC0CB /* FIRCLSDataParsing.c */; }; - F0A86A29574370193245FA705C86F16A /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = F1646B82A6B890614F9861D5502A3479 /* FIRCLSRecordApplication.m */; }; - F0AABBB14DC3B3627058D18A54D4F8D2 /* xds_health_status.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0FE4641BF4344C84E8ED7B4EC587B38D /* xds_health_status.h */; }; - F0ABEC616A2967FDF7DB22DA8104E6A4 /* posix_engine_closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 345749E9B085C56C0A5DFA4C6B09D370 /* posix_engine_closure.h */; }; - F0AEAA9D064C078265DA1960FA35ACCE /* TZLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABFBB3DC0A0FCDFD2C2E3396C57A9FEE /* TZLocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F0AEEF4AA75AB5885C0E035BD3B63AF1 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9212EEDEDE220E1058CDDBD94B80C1D3 /* PromisesObjC-dummy.m */; }; - F0B7C68EC2CA4AFF4EA89333467A6D76 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 7413EE8505C6C89248F4BF68DDDA029F /* config.h */; }; - F0B972A5491C15B358A31B86C11C06CE /* util.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 8423DDAF01D41BAE43DEEEC84F049AC0 /* util.h */; }; - F0BEC0C3D207E9C85542C5A02D709BAF /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9964AAA6CEC1E206C42DEB1A451A72C6 /* ratelimit_strategy.upb.h */; }; - F0C08A46A82E5FD4886A9BC10B0A4315 /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B68C4FA4D179ADB04F78A4B1BB4484 /* memory_request.h */; }; - F0C34AD33A5CBFB7E22EC8C6A38CB8CB /* config_vars.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 9BCF232D851CFEFE0A5524BD03CE97B1 /* config_vars.h */; }; - F0CE6BDB357DF97B7E2832909AE54CA0 /* cordz_functions.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 291F872F1DCBBCBB75FC043CD38B8969 /* cordz_functions.h */; }; - F0D6D2585AB0B8600803C48EC37A5321 /* annotations.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A237AED07CC23A1F800A371068DF05 /* annotations.upb_minitable.h */; }; - F0D874604F64B5D5EBFC4EB3C45E9307 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7B6B3D1C6684B5CBC279BC8F4249BA76 /* unique_type_name.h */; }; - F0EEC2E62109D7B446281DF7C216379F /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B55289F2CF8DECFA78C7DC277C6037A /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F5FC3312FA8B66195A5DC42589C625 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A6ABA517BBD79662DE748BAF2C9393 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FE4A70A2877AFE285377400E3A277F /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AF34E449CD21237B1A2BF0FFBDF78A61 /* endpoint.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F1000B6199E7BC89B2C73DFE1741978B /* LLCycleScrollView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 1A990163483384282CF8330CD84B4BF1 /* LLCycleScrollView.bundle */; }; - F1050F3F4A522BB60AEDF8E7F8A294FB /* interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6C1B91F69198E80F6CC47F2117DDFB73 /* interceptor.h */; }; - F10843D64498749A59DD4DDB65E713FE /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DB2D05F324EBAA66152B869494AC1CF2 /* extension.upb_minitable.h */; }; - F10B3020ED6A8EB7D9E35F8EEBC731C4 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 673AB6A65EE5022F38625F73E938D499 /* backoff.h */; }; - F10C1B4480CD4B6AA509407849E1FC02 /* low_level_hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 26EA1B370BB9E95CAF8CF7285D0F757C /* low_level_hash.h */; }; - F1118F447D335547E81DE343924971D6 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 904E64CA1A7D347D11233516C28F31DE /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F111A063BA24082742E89178D7F2F75E /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79A9B116357544560529D03A9D121263 /* dns_resolver_ares.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F1148056FD844D667D2D3A163BA84DAA /* grpc_method_list.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0A33217505676AF2EEFD2EBD3A269A /* grpc_method_list.upb_minitable.h */; }; - F12764A4E16BDAA95900BA62C08EFE58 /* status_code_enum.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C15D77034C4C497C977934CA2B074882 /* status_code_enum.h */; }; - F12E3EACEEDF3AF52829EEEC830699B4 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 367606410BDA2F06E2AB5F5F6E3A520D /* pollset_set_windows.h */; }; - F13C3B21188B1AF8FBF259E85F318F3A /* stdout_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E42DAFBB2D82F8296E8C5BE55F6D38 /* stdout_logger.h */; }; - F13E143AC4429FF009EB78C9E20DCA1D /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5212F7529C3BDD858981C6100388EDA6 /* wakeup_fd_pipe.h */; }; - F141E291D5B8BD2955995AAB78995797 /* encode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 1F06975170B0BE23C4349ACAC89752E2 /* encode.h */; }; - F142A373BEB24499206DB8675F973B42 /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7A2619555BB683A6D074A85630EEFC06 /* env.h */; }; - F143641D98AD7E81BEB9C281C7FA2C00 /* CodablePassThroughTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17DA96EC950647B5D72426D1E406CD3 /* CodablePassThroughTypes.swift */; }; - F148B9CDF5A1182C1898B036D8CE4C1D /* log2.h in Headers */ = {isa = PBXBuildFile; fileRef = F86F04B64CD41B22A97D7DDE672D4467 /* log2.h */; }; - F15286A9D90D0CC236E8ADDCA901228F /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = B832EBBFE9B638340EECD1E3DEF6D0C5 /* alts_crypter.h */; }; - F15634DDAF17D6348722645D311A540B /* escaping.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CC28B3D9CF4742AB7351F97E541BF28A /* escaping.h */; }; - F15A682A06E0AFC578CCF590EFB70930 /* cord.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 843095ED1C736575EF04A39C1A095DEB /* cord.h */; }; - F15C55FD78743DA54DF778B36A707407 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 3972F39724143066B743A4F253A6CEB4 /* sub.h */; }; - F15CE7169BBD689A5A7500E3D5F4382B /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = FACCA73A21F698DDB49F22A7A7F9004D /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F167B0C0C7F2008219CCC40C36D34609 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E5300E0CFA08053FB865BD3D647B9628 /* map_sorter.h */; }; - F174C9564A1476DD704EBC05D059A4B7 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3D7D42BF26F1735C773557890D19E1 /* route.upb.h */; }; - F179B899D60EB3EF14727F323CFD2BBD /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5263ADB27433D6B94FE44493C4FE4C50 /* filter.upbdefs.h */; }; - F1905A0F456CEE8E8B7B390E2F71B6B7 /* grpc_tls_crl_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 486D2A79FEB47CCC342E8091647A5D80 /* grpc_tls_crl_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F19417EB7EE25792C22029EE0D175F17 /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 773079667F8A6819C33E2BD9C8087845 /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F1A2B4B5E22F8A59F81BC369B847AC8D /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AFA0D1961AE2EB70970F29FE27ABAA8 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - F1A72A096DE20A77D780C880876910F7 /* FIRCLSOnDemandModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 34028752B8769DC313F80DF0AE124C7C /* FIRCLSOnDemandModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A7B19C90659EF33BE5B3186F671FD9 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E23AFD25AF5704255A4ECE941ECD423 /* block_annotate.h */; }; - F1B58AE514DCDF665A529543470CA29B /* thash.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = F074BD62076EF7EC5C0F454BC691EC8B /* thash.h */; }; - F1B7152EC20557E09D5E6AD0E65608EF /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = DB93866588EDA352FB85C85A1287FA7E /* alts_tsi_handshaker.h */; }; - F1BFA25A76DDCBA64F6FDF1B283BF6A5 /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DBCF9FB6E0928EB9D64073A277976D0D /* substitution_format_string.upb_minitable.h */; }; - F1C6DFC194C9D345302CEFD2CF4EC464 /* for_each.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 0577A00D3B0F2F6F1C5BBD6B2769E181 /* for_each.h */; }; - F1DADBE673B791439B7825AF0BE81C34 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3A59B82A2B65E875CD833821AB08A3B5 /* transport_fwd.h */; }; - F1DCB424B20B0E79075768C7372A75A3 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 16720CE4C62846DF6B4CC8AB56E52472 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DF0DFC2BA12FA5995CD66575C5D782 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BD1676EC6CA693FF0928DA27D8D1B4 /* strtod.h */; }; - F1E08B376B4FC313DAA5C393F24273CC /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A83C7D6A3692DA7DBBDD4B358C8ACE5 /* string.h */; }; - F1E6A5EBA887262C611244610D26BC55 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C73CB90FDF89359C038EF121CFAD40E2 /* resource.upbdefs.h */; }; - F1E85FB1CCB572906A97F9B3A2CFA9E7 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = E438820C6D52231CDC7A286BE35D989B /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F1F9C29D548BC03D51044597B86BFC32 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - F1FA4A207E0AFB13428850EC78B792FF /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = C6EF64F064B15AA63A654922071B0EF3 /* export.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2052C1A2532775CE46EB9531E356C47 /* asm_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A302CA7B9A93072BD4474F5DE7123DE /* asm_base.h */; }; - F20AC4C6105F1A490475CD7871AF47FA /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */ = {isa = PBXBuildFile; fileRef = D0644E04101028FF000B98AB2A09188B /* validate.upbdefs.h */; }; - F2183FD9ADBB0682C47B8CF9BB513702 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9DC4917F302A535FA08E0745B0396B /* value.upbdefs.h */; }; - F21ACD6760313FF2560EC3E2777E4E5B /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE889FC9969BE3D0EF86761C518F1E15 /* extension.upb.h */; }; - F21BE5E5F98CCC4B7382F89D4D198782 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1284348E0CEC03C1422D58F7BA2B7769 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F21E3DE8C5ADA0CE817F21509E9A807C /* cord_rep_consume.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D3F98C97E27031D47EAE9DDDCE115A80 /* cord_rep_consume.h */; }; - F2201097F64837A2540EE19BBA3F7EAF /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D41C5DF3FE1FF88A5868B805E7C67213 /* init_dump.upb.h */; }; - F220916CF75E08F87A2CCA26CE30E1BB /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 06665ABF2501B60F035805072F63C283 /* trace.h */; }; - F2270B50975CCCF2CF731C02F0C36A2C /* backend_metric_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D227FC4FD66372393D002D55EA59AB /* backend_metric_filter.h */; }; - F22BD2A8B820E28C1B97987F307B0FB5 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD5F717702501F2E983DDAB7D3948E37 /* ring_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F22CA5560C187F3A8A3975EE96C3B985 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 064D20A05CEDCA68D14CDF541766C3AB /* enum_value_def.h */; }; - F22EBDBDD42D874F4D29F1ECD9F1BA24 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 996A200A69247F5203CB01EC2E265B6F /* syntax.upb.h */; }; - F23B7A42260C9278DD6B36C7C19F9BD5 /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8BD465C7E45C388393356042FEB59AB /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F2415AE8678DE2698B7AD7D88B1A5C0F /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC802BD5D00C13B5296591AD0D825B38 /* AlamofireExtended.swift */; }; - F242BEB9BCC72D5EA46197D2B9C57662 /* secure_auth_context.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = 79C4BADED359B92CEB1FB4A1107F7B4A /* secure_auth_context.h */; }; - F252FE27EAD2588508E0524FB4BD6520 /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 952962395600A8B84129B1906FC15F90 /* thread_pool_interface.h */; }; - F256180B2939C5BD0B868F14DA8FC321 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 65609BAA93B653F858D9CF6DCBE73140 /* GDTCORPlatform.m */; }; - F25D22CD2121AF507E8914AB8F45A06D /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43AE7DB7D5AB9477FBD3ED31C866BD41 /* accesslog.upbdefs.h */; }; - F26980EF3ED0CEC0F0B7E5564B406CC6 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 7C98B8B79581F0A4A816C7DF9FC1F46B /* deprecation.upbdefs.h */; }; - F29484830D6B33465EEDFD2DF9F47C8F /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 35D20BA7954889E29E34FB1BD255D57D /* wire_constants.h */; }; - F299F0E2703B85DC40A13E71798806F1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4426D007C0D82457D06C2D39FCA79630 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F299F97BE6F3F1AD4464712F6524BE91 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = F7BDD352DE193C875FF6FFB8F289944C /* frame_window_update.h */; }; - F2A65333FDDF61EE2EC4C71B2FA6C0FD /* health.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AB458C4D9667A2984515DEE690B491 /* health.upb_minitable.h */; }; - F2B33209BF6984D0446CE399D1FE9909 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 81D5EFAB7B9AA518982E390EC585AEB1 /* completion_queue.h */; }; - F2BB0422357A3A85074F11280F7604CA /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 7B127787BFD357023F68AB099C4B4ACA /* descriptor.upb_minitable.h */; }; - F2BBF7DADAD7902101733A084247B94A /* event_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = DC81278435E55B598D8E32AE74F048D2 /* event_poller.h */; }; - F2BC371FA3453BAA0BCC597B786B39D7 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D82FD0CDD93342575E1BFF98E861B138 /* substitution_format_string.upb.h */; }; - F2BD9837CEAE9809928467EEEF44AF34 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB301C266F6D63580BE43FF1227ABAE /* proxy_mapper.h */; }; - F2D75723D14B3F74C4D75DD771E65EAB /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B47FE98B05DD896A5D4C02F0F2AF88 /* ossl_typ.h */; }; - F2EDBE894602ECD3D170AC13BDFAFAF6 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D92D8001855EB1168E78937A378E66AE /* slice_string_helpers.h */; }; - F2EEDB88E33E3B15044A382A26A5C2FB /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EC866B1FE4AC7A2D4D5E98C14D6D5BF4 /* FIRCLSReportManager.m */; }; - F2FAD975CA77210AA8E95FC2C4A714CE /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = A90F6B7BCEE237D7422E20C85ADFF3C0 /* FIRVerifyClientRequest.m */; }; - F2FFD838DDF68A45E8A655E622BC1BBD /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6CBA20175DA726772DFBB285762F0FC2 /* stacktrace_generic-inl.inc */; }; - F3020C9B46FFB7B540B078A7C5049747 /* int128_no_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 565D70687AD84A382FE6AA9F4BCF2556 /* int128_no_intrinsic.inc */; }; - F305C1F62CE8B63D5E74BA1BA594C067 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09D2B47132EA5C267C300B0D90A7ACEB /* cluster.upb.h */; }; - F323B47D83CADB79E3666E1A3A858DF9 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F617FD44E3AD467C65A0DDC903F207F5 /* memory.upbdefs.h */; }; - F325377D824BC3AB43F7B6F17182DA0B /* authorization_policy_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 9CF9CDF8B7BD057A186F9E38DCCE87CE /* authorization_policy_provider.h */; }; - F32990AD05C9E67438A35BCF206A95D9 /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 427E7DA65B0D898F87326EE4DEED68E6 /* csds.upb_minitable.h */; }; - F3328C19F224E47D3963B5C75E79BB4C /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DA08743B49E4190F1B319B59C7EA31 /* oauth2_credentials.h */; }; - F3338343AEB3AE34093160EF06B9942E /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F28224FD5D5627C9A6727494EE00CB /* any.upb.h */; }; - F33395D0088A8D83D6CAC0184BFBCA9B /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FB90DF969D1636D1D318AD291FC654 /* frame_window_update.h */; }; - F33738E5027E2325E04911709B9371C0 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE5AB2D00BC42F6F6314E060A612B2C /* cel.upb_minitable.h */; }; - F33DDDEB59B4EB9B8D7A4DBB28AA1DAF /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2C28E8FAC22DE203D9843619402081 /* http2_settings.h */; }; - F33EBEA206A53E8957E0F65F5D69F97C /* client_side_weighted_round_robin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 49684D1C7B6FD283CABFCC688839AD70 /* client_side_weighted_round_robin.upb_minitable.h */; }; - F33F49F39435931F3DE1CE0FB6C97775 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 510A582E5F246F26A1E4389151F2EFCD /* address_filtering.h */; }; - F344242AFBB1848CEFAB5CE45B5F89D3 /* is_boringssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 45EAA12ECEB4647B29DE35F4F15A61CF /* is_boringssl.h */; }; - F3454FFF89BC06C17E4CBEA1CF1A090B /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC61A4F806212307CA56E889BABBB6C /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F34687A72734E1F0C3423BBCE84E7D48 /* spinlock_linux.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AAF779B7F7232E8CFB933149B631EC17 /* spinlock_linux.inc */; }; - F35D4FEB3DDC6A0FA953CAC89C2FC7C8 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A558ECF43BD45DAAE5391DA665DA255 /* base.upb.h */; }; - F362CA5E39B84CB446232CB4027F122D /* attributes.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6985E67F9F9BAF9D848A6D8A9D53B6E1 /* attributes.h */; }; - F369C57825CF0271416D9B96B9F1C0AA /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE965AC6C770CC4F199D482AC2F40E8 /* encode.h */; }; - F36F814B0772F2770C98C61741F92D62 /* load_balancer.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D907121D1D9BC6F9EBC6C528E435DF /* load_balancer.upb_minitable.h */; }; - F3758A616CEEA9359ED0BEAE13E60113 /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5096D01F9CFAA812ED9834E0E64070 /* unicode_casefold.h */; }; - F3769310898E3723540100870C52875E /* GDTCORStorageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3219581A825E64D13ACFADBBF1D57A /* GDTCORStorageMetadata.m */; }; - F378B7475713E1DBCC5902C54CF150F9 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 8ECEFA014D22F16D7DCD9AFB7C4D3E91 /* windows_engine.h */; }; - F37FB83F96B352E68D102E37C1CB203A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA967BF479E9A39BB40F0D6A7CA8BBD /* internal.h */; }; - F384950A48EA9CD58BAB375E8B743393 /* batch_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFBE8E51FF48E22C616E897B93E3F997 /* batch_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F38C944312BD1689AA88C967803971E0 /* FirebaseAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBBD3DC04189F82B4B46B87F626CC6FA /* FirebaseAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F395AED6D5D327FD3206F8B05AE66D28 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - F39C41C0BE1677DC8E5BE0217A284257 /* enum_def.h in Headers */ = {isa = PBXBuildFile; fileRef = CD048622FAF320DF935A0EC18FF0EA3C /* enum_def.h */; }; - F39E5DC2A8BD3DB3FEEF03867D27D34C /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D28B29195C2DC046B398CF43CBE281 /* TZImageManager.m */; }; - F3A5544A72CBE526DEE5B4D3EA278D59 /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0D05DD544BF5B2E3C73B877612718667 /* iocp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F3AC556001DB45C7D479054AF87FA446 /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 9767567BEC465EC5518CD9ECFA0396D7 /* curve25519_tables.h */; }; - F3AC781A27E9AE4967C3DB0FFB55BBCA /* transport_security_common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA67406F8B702773925514F4A8C57D4 /* transport_security_common.upb_minitable.h */; }; - F3C0CF6C6CC12495A996C348BD353CC0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - F3C533D7CE565472D84930849755951B /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 540DCF70744C6D2A6E204EF01013B3F6 /* config.h */; }; - F3C6596FFB5C594BA959F7CA219DA9A4 /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C4F85BEC42EE626891348BD0BEF690 /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F3DA13595924BA220E04B2679B61C05C /* rpc_service_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1ABE55DD027D9C864A0C77523C75D100 /* rpc_service_method.h */; }; - F3E319EB12768A1D15AAD18057955310 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E448FE672FB4BF16CDA909AB5BC865 /* FBLPromise+Validate.m */; }; - F3F0C87573DA47AD52F4CC210371A1CE /* connector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 237B1E5F67235E102DE7CA3435F12A40 /* connector.h */; }; - F3F38B5338576BA51AA4893EF91D0A6A /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADB22C0931B25DB83C5F1429ECBBD2F /* xds_resource_type.h */; }; - F3FD6953867590A8A293209C72144E77 /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CB442CF77FEFBB7CB158A6CDA1114956 /* extension.h */; }; - F41978CFFD10A9064789513CE0B8F122 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 61D4739B8FB20C12274D8FF0F875E066 /* versioning.upb.h */; }; - F43048AE7387DE50CA64E1319101D15F /* client_channel_factory.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B17A508793F5BC60CAA2726318F0F82D /* client_channel_factory.h */; }; - F43231B828790B19CDE24069A8C564D0 /* resource_locator.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BFAF277A9398EE5D440DAB8DB5675839 /* resource_locator.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F4450DB4DE9A2478DE39C342D03E6F19 /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D95A0CF5C1E40A00E38F87B10D93D688 /* time.h */; }; - F44AAEBCDF8C0D2D46BCCFE43C1A9E72 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 13CE54A039B189E4CD0FFAE3FB8A115B /* encode.hpp */; }; - F44AE568EBBAAB72D160474FBE6D90A5 /* FIRCLSSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABF98F0DD1CFA2A74F2731004493718A /* FIRCLSSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F44BF9DAC11ECE84684BEB043FF8A0FB /* config_source.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 293A9C684DB4416A7B66B15A7D848572 /* config_source.upb_minitable.h */; }; - F455D3543C8AFFF29343EFDA3FB10363 /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = E9357B4B2C647939E1AA94BF61A73255 /* common.h */; }; - F45775B92A75028DC5D772E84D8C2E17 /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = BD91921AFBC294590C0320D87D439530 /* insecure_credentials.h */; }; - F45C710B3613E6C9EA6E47FA29D572F1 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B695F3436FE543F7B7890CECEDF7D58D /* clusters.upbdefs.h */; }; - F466B92A588703FC199D02A893291BCC /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F1523A4C920EAF44535D2CBBBE35BDFD /* map_entry.h */; }; - F4716A8D292BFE01B8B23349DAF93860 /* blake2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CAE88266BCE228BCB5AA5F5967AA5C56 /* blake2.h */; }; - F472C95E4D435197043AA80A80617C7E /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 647E7A084035ED55C68CC7AB24722687 /* overload.upb.h */; }; - F487508805C5627D869C11A728626B48 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A49B647A86D134EEB1FCA9AF1631FEC /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F48BB1FB66D374522F3FFF02F2F2BE91 /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 5556A6E2EC4BED747653E4452746BF9D /* int128.h */; }; - F492777FB48764BF1E54A6B2D744D2A5 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 7EAB287E4C5DAD7C148307E54FFB9B7C /* file_def.h */; }; - F49327BE7840801A35CD47CA5DDABF5A /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = 4D295F7867F51E55DA55C2D87FE2BE29 /* composite_credentials.h */; }; - F4AC1DE6365CA9DA7B87436182D449C6 /* commandlineflag.h in Headers */ = {isa = PBXBuildFile; fileRef = 705CB98845F203DFD57636997CDFA7BB /* commandlineflag.h */; }; - F4B0299793C5EFDBA8AD444C46AA1717 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D08C038DBF34B891C2B20E28DBC1EA05 /* fault.upb_minitable.h */; }; - F4B1CF13EAB3CDF5606D2325D7E2A6EF /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 79A10E49606DB0FE993A6C508CCBA1EE /* directory_reader.h */; }; - F4B5231A60755F81C6A2DEA9A6C70AA4 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB0146BD56619D704B4F7979C3E4E7A /* authority.upbdefs.h */; }; - F4B54A4AA2C919C8DF731A1D63C546DC /* spx_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 319C9A4FA4B28FE78C7617331F891726 /* spx_util.h */; }; - F4BCA89F04DEFCC72BA7B7D93B314F23 /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = 40027A3D23A2145C79DC4116FBFA9FDD /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F4C0AC655B8EAFB78E17C29A05FFDA9A /* legacy_inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = AD465F2A1DF637CBB3D74FDA9682444C /* legacy_inproc_transport.h */; }; - F4CE571EBAD1996CF3646D798524F0AD /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 776629B8C0D860B526F246833E089BB4 /* mutex_stats.upb.h */; }; - F4D5A143E6DC021828920F14AF869611 /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C03F6349BA146B9444A36F1B2A77ED50 /* hash_policy.upb.h */; }; - F4DBAC28119DB50DE4A0884339D4C8C6 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 496106E16AE4ABF2DBFA6D45F1DB0DA2 /* bitmap256.h */; }; - F4E4BAD814F1A0EFF9FE48563DF5C8E7 /* target.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4225AF88179A809C375073DF245102FB /* target.h */; }; - F4F77CC7348BF8F7891D6EC77A8BC16A /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20961AE346FD5140550E27BE9C3BAF2B /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - F4F7DA9E1EFC5F900C8446E3459CF349 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - F4F9703599A7224F7588456FB96CA5A2 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 43DFBC4F50D23FB23B4E85B33D1AB548 /* error_utils.h */; }; - F4FB4D4E4D3B85D6C18D98BD6EBBCF93 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C13D48224FE8D01C7ECD8AB11AF982B /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F4FF2BBF515A37CD08544ABD9E68A842 /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F92842566CD35A1DD467F9D238C454 /* validation_errors.h */; }; - F514A2A6248F189ACA8E42A66E22992E /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAE795A02F810B143E550520BEB8774 /* bio.h */; }; - F51F92042E6B319131DEA96E59D0F161 /* load_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A9E993269AE56C8A59CEBB6A005A14 /* load_config.h */; }; - F5208A82F77FBCE9BEC9AFCCC148B3E3 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E2797AD5652626B5A6077742D03EA7A4 /* fault.upbdefs.h */; }; - F52C3C13A0F5FFED81FA7465EEAA35BD /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 5343C656109836C813F7B091CE5D356D /* FIRLogger.m */; }; - F52FE4704CEB36936B47F8B4D2B8DE0B /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B67847E61B5D4BC44D7F34422D11C6F0 /* windows_engine.h */; }; - F5324F1BC4E8955F2CBA4E1722BCA70A /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D887F8DFACDE95AD548E4E7FFCA37967 /* versioning.upb_minitable.h */; }; - F533F080BAD7FE84CA78517511F7AFED /* propagation_bits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2AC61CA84AFC512C54FCDB446D5B1D5A /* propagation_bits.h */; }; - F53C326B9DAA092B68E22343C84C23E7 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 637CC0C421F0675015A89EACFD04D34A /* tcp_posix.h */; }; - F54A63AD62F61F0E903D4D0FBED29DCE /* config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3868B0DFF6C209038C7822C3E8F9B5BB /* config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F54B4C316D9E962A4EC4440320CD3224 /* transport_security_common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1D88E21DB54ADF02DA9C138E5537E6 /* transport_security_common.upb_minitable.h */; }; - F54B532A5566B560E31ADD159AEB76D3 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C47215F748E7BC77AB4E03F90F17357B /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F54D7A5B789AD392EDDA5412FDAAA3F6 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = 8968F4C0557CCA747924B3DD1823D1D3 /* symbolize_emscripten.inc */; }; - F551F6ACD1907A1B0A217D7EFA5A25FB /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 307E88D360C866329865734A99EF433E /* slice.h */; }; - F5549E2A8E1AFAB4E5E0ACD125AAAA65 /* server_metric_recorder.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 5D7A8C59A4DC7A737979F96E533C1C4C /* server_metric_recorder.h */; }; - F55CDFD05665413E13965BCB291A1645 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 02370FC173FD6565B97E06DE60DAF3A9 /* common.upb.h */; }; - F5634E2E76296D7DF2F8146E7CE78D56 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EF90AB5C58010099CB6352B80DCFD2A8 /* TZAssetCell.m */; }; - F5661A5D43368FCBA968A02938255FC5 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6BEE55DCC7F96E3D0678B0DB6C54F43A /* accesslog.upbdefs.h */; }; - F567B70C37BD8103133EEA021DEE647B /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 7DA3D0F5CBCD7C8E82B5690D33489616 /* alpn.h */; }; - F56FADD6F104CE257EACDA921BFAE612 /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */ = {isa = PBXBuildFile; fileRef = 995F507F4449A70D11B99C134B0E4345 /* supports_fd.h */; }; - F571B3AFE04AC84E25D8A358174CECE0 /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = C561DFB8B0126C8920FD36CFF85250C4 /* FIRGoogleAuthCredential.m */; }; - F575822C8B7F17129429E00A9081ECA2 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E6D2F486B1C48B847EA40F926C0968E /* SessionDelegate.swift */; }; - F57C587EB989A0A8C9A2962BCF4BB0D0 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 1AAB428CA4F461B94421099680BC390E /* syntax.upbdefs.h */; }; - F57E24FC069AF4771F5C00DE53EE6812 /* symbolize_elf.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 8C244B2822C6F8E354631B271CE20E83 /* symbolize_elf.inc */; }; - F57F5CA17237819BD3687AE5D3D37230 /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 490B2FDB05E67CB2EB79CE9B31FCB501 /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F58F43E06AF2276C62055F47B4FA68F2 /* parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 76EE5FD8B2C754ECFB7DA58F6C93E3AF /* parser.h */; }; - F5940249316104BE150223F85B89623F /* def.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = 576625AFAAC0213ACAA8763C73C2B58F /* def.inc */; }; - F59613040F5361D40196B30A413FBA8D /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 2359CE57FB3A76C331360B404B212E72 /* api.h */; }; - F5B2A45ED5D4DD972DBB48979019A7B8 /* migrate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B43F0F0C2E0A71CA7C11F5A7C878BE69 /* migrate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5B523A2476725A8A26009FEC476B0F0 /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EB5209F888B627878D7145378B13FA4 /* message.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5B7145BB50CB6EAB1AD09BA351BCB5E /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A2341C0B7EC56E753FD33747D567D0BD /* path.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5BD44255AF2C460458AB08ACCD7F4E2 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 3048EEF3925C8EC3331D51C085A6D1B3 /* alts_grpc_record_protocol_common.h */; }; - F5C4D0E2C02E3893267159B071178160 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 85BEC225E86C639B7E4DB7C88D5023C4 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5C505A1F8FF89AA92C5A856A9AA5A35 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F28F7542DCDCAEC658FD23E7F1AA15 /* health_check_service_server_builder_option.h */; }; - F5C7953CD005B5814EE94A1045F16B6D /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = A66A9C51ADD19DEBFA42FB88CC7FBB9D /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F5C8CE71EF58A3EC92B6B2FB08663FAD /* basic_work_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = B639D4CDF34B2843200DD34526E06E36 /* basic_work_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5CB0217AB7E2CA0B8045438E59A6794 /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = E7D94A4CF16D2A990078576385B327E9 /* oneof_def.h */; }; - F5CD9A01E31AB936DFAA6E83BFD37015 /* constexpr_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B2ED42716C5826248C1BF99C8A647A /* constexpr_parser.h */; }; - F5D9821B9904741CB9573C2C8AD68364 /* message.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFD21C400BB819BE1699D2771B54F29 /* message.h */; }; - F5FC9DA854C3ED7ABE60525AF6480F44 /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA5A8003A4E0C064BD5C6B922CFC49C /* variant.h */; }; - F5FE0477F3C93208E3FA44D3F6F01CD1 /* undef.inc in Copy third_party/upb/upb/port Private Headers */ = {isa = PBXBuildFile; fileRef = B825C02D651B1866097D0907D657175F /* undef.inc */; }; - F5FF54BEDBD0A2EDBD1F882356B4CE34 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFDCF905E2C34DBF10EA316C2D738E37 /* fake_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F606FFF474107901BB0C9237C08F40A7 /* grpc_tls_certificate_match.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF8EFF69AAB989ADEBB256E5688E34DA /* grpc_tls_certificate_match.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F608088AFAFA8A013A36E02DF5D4F218 /* config_dump_shared.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DEA5C5CCF38F363C4D7B73CC005A20C /* config_dump_shared.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F60BF25529ABD557FCE7F30C3BAA34E9 /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = F733A4F23582D63CA92CE1B68C7DD2DF /* log_uniform_int_distribution.h */; }; - F611822798980AE78D3C8C2197A9F731 /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B24A607DDF42AA6CA67CC881C27CCB8 /* ip.upbdefs.h */; }; - F6157F7A06C065225256A4FE4DE635BF /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B6DC60A8A6D8F923108B09A78B27F4FD /* token_bucket.upb.h */; }; - F618724457BCDA901F5A98E32ABB40E2 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E33D5D3575A7A88B037D0F0D8D797C /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F61B3AA370DFFA0C5E8865034720B3EE /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8576BFCD0ADBB15FC2FEB6FAF1DB6CFC /* ref_counted.h */; }; - F6282889D2D6CA341872E7BA71250A60 /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DA552ECBE79EDB3E8FD836CEC1BAAA56 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F63BB7369DA658A4DBE971A8D6ACEC4F /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 023F2F0A584983F1FB42D36057D1B771 /* endpoint_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F644AE7E4E0D1180C847CD956EF10334 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DA611B3C4771D06B6B0D201E1402A55F /* overload.upb_minitable.h */; }; - F64BDF5CFA173B10117D594113103AFF /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E68250FF58E0AEFA8FFBEC6B278B0B /* udp_socket_config.upbdefs.h */; }; - F65454902394EA3EF4164A08B037DE95 /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D17728130D906452F678F1108DB018E9 /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F65965AFF6D567108CE23A7F2DC8B4A5 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A71109160C40147AB5BB9850B996DB1F /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F65EF1EDDD00400F6B704F86C495E9BF /* resource_quota.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5E4A692DF5F1B0142847D7CFBFCEA85F /* resource_quota.h */; }; - F65FD5934BF0D9C959420240FCA39312 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E2BCFC74A7CEFADC76FD7EE93A455C9 /* socket_windows.h */; }; - F66484AFC8E2D965B218C106DF3E6448 /* ssl_transport_security_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8247BE0A7A56D2DA5FA8FF3B65608AFC /* ssl_transport_security_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F667E24F406A6CA5A455C7F1054A8642 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4D232A2968EEE702024D4C23948F5B /* child_policy_handler.h */; }; - F66CC47AD425C8D57BD149AFD09C2AFE /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2004423D2DC64E98F68C93452AB1969E /* HTTPMethod.swift */; }; - F66FF67F6614E4B366DBC69E480F166B /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FBF473848E4B0E39D09045F8B5FACA7B /* endpoint_pair.h */; }; - F67AEE38DB8147041C013ED3B7BDDF27 /* vdso_support.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9E5F412C804DEFD1776ED033166A0752 /* vdso_support.h */; }; - F686AD929F3D2EE457DCF2B56AD6307A /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 3CA8B309063C41A6F071437C07EAB935 /* examine_stack.h */; }; - F68BA490069C3A04E48E2A1F19008BE6 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CECFA812D0AA6972ABB66BBE3D2D4344 /* field.h */; }; - F6AD86094C70AD1BB23CB934D0E6317F /* def_type.c in Sources */ = {isa = PBXBuildFile; fileRef = A2C8C03A7084C851D625B22C2D6C1CCD /* def_type.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F6B6139106EA99F009059D5DD4DDA891 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C92B38AFE785138E7173AD2973C2B0B /* accesslog.upb.h */; }; - F6CF3E3EE5F4B5DAB14CACE40E9B7E18 /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 215B5819E6BA14A6E0CC1F70205C64B8 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F6D59A9AAB6C7AC9DA287497DCC37373 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5B16C75FB519B32BF42EC5C0EE71100B /* error_cfstream.h */; }; - F6DBA259FD24143FCE4476E821B9801D /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 370463A978FC241F8F8C24616F55853A /* extension.upbdefs.h */; }; - F6DCDE9C9B59EE4122BB116D20F340E5 /* FIRPersistentCacheIndexManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE31B8AF325526F591ED1447CFC6D50 /* FIRPersistentCacheIndexManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6DD210EBDB750167EB714027E0D9DBC /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B069053CA9DBA3A7CD34322310B4B16 /* FIRGetAccountInfoRequest.m */; }; - F6E94E8EE1CE35F49B9091BE8748587B /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 683C10571DC0B6A651BA359358B6AC89 /* Result+Alamofire.swift */; }; - F6ECF6BE207D9C69FD46EB4296518B2E /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = F89BE8687F0505920BC07232F4612DE8 /* experiments.h */; }; - F6FA719245B24447E3CCDB33DC6EDA82 /* Promise+Race.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2E1E83A3ED641C6D04B9505260837AA /* Promise+Race.swift */; }; - F7015FC9999CA4DE016991A4DB401BC2 /* sample_recorder.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 141D683E3C6700E7532C23EA0EB9CE21 /* sample_recorder.h */; }; - F70D2177BE0EB78794C579BDA946C2FC /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 31651C337DDB5256B4F100ABFCDA9714 /* cfstream_endpoint.h */; }; - F711C7A700CD1332873FDBAC249DF844 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2BD7AEC80C02FEC7746CD78635D099F /* local_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F71870D1547D20A740008417AE653329 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6133C925EF08D7454F9C1B922B433E4A /* json_token.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F728E8269347101F51655DE967473D94 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B48B5ABF007753289FCC5D5A76CCD2CD /* oneof_def.h */; }; - F730E6C79F157C364E406248B01C2B94 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 1243035B194E2ACABC9418D979EFDEA0 /* basic_seq.h */; }; - F735EEBB6DD467FC1CC1E54290D65BE0 /* fors.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 1797F21634F70AC2464C57050CA5CF52 /* fors.h */; }; - F73B332DC0DBC56FD8320E105B3A6740 /* dns_service_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 07309D413B3E56407FA20F78F0F8EA71 /* dns_service_resolver.h */; }; - F73CDBA9AC08FA08A45A4F8ED0C15FB2 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C34D1A594697A7519492E80E505EB6C2 /* common.upb_minitable.h */; }; - F747B2ABA62F02ADE127B3BA877A97E6 /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4014E525FCCB6986B9286C01182028E5 /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F74B1565871A8647C829ACB1131C717C /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = ADF1EC55A7840D7D65334E05BB08ED73 /* sync.h */; }; - F74C7D49A16950918C684CD1991925D2 /* extension.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9286DD712DADE113829F799DA4DBE4B9 /* extension.upb_minitable.h */; }; - F74E42EDE3646433D4E3728A8F6F295A /* cluster.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 99BC43F22ED5B7DF3218F64B6362667E /* cluster.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F74F9931843361AC4A2BCD7D40E506B8 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F33B0171E520B5580814C4932C4E44 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7584F339C97D763C8E9EAF67780E83B /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BEF1216214FADE8CC634BE998EFB49 /* tchar.h */; }; - F76C5B903C1EED5A63CCE4C721072AAA /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6348977877DD6A40971788DA03A70999 /* http_inputs.upbdefs.h */; }; - F76DCCE8D448CAAAECD2FD1E28BB28B2 /* p256_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 2DA5D9A66210D7C3F5F3EEBB207EAEE1 /* p256_64.h */; }; - F77280E74EB91678AA294E66DD6070E2 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D7B45C294884A22E759AB937721BEB /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7823CC03337A33EC61D8B9F7C9B7F55 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2A54207E90FB4C3EC40E9D1660CEC /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F78367477D10985C4660B58197B09696 /* async_unary_call.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 3EE36ACCCE06FF0BC26E61410EC28144 /* async_unary_call.h */; }; - F78E5AB40E555051587175D49D3FDA0B /* ref_counted_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF616062239FC0BF1E34E0A5B7DD8EE /* ref_counted_string.h */; }; - F78F0AE9180EF6E1B5475EEB81A398E0 /* kdf.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4233E7D93B8A50C29368E751B35A0E /* kdf.h */; }; - F790DC23D164F8D4708916DF60A34F37 /* http_connection_manager.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F559001D49534E78782A87F0766008 /* http_connection_manager.upb_minitable.h */; }; - F791759A967B273CD67AE8FAE4587A7B /* reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F895D9FBFDEB1AF2E3D7F4A7FD162B2 /* reader.h */; }; - F79BA12D5A65B60AFA3DA3A54572D38D /* ip.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4AC202D88911FCBCDC1BC4409E331705 /* ip.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F79C54957D373BAFFEF7570017DF4228 /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F793B8A0479E67F308098B03226F857 /* packed_table.h */; }; - F7A3BAB52239EB52EC6D5BAF80734556 /* crash.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9F3C788730AD4E301C98EE69DE9EAC18 /* crash.h */; }; - F7A445CDB64E16C798EBE4E9EBAA9063 /* dns_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = C33178F43C6422FD7741547BE9A5C789 /* dns_resolver.h */; }; - F7A45086651AB410D663FA1BF0B92DCE /* ecdh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 765BB0924C0B0E2AEF1F1F1D1DB6D3BA /* ecdh.h */; }; - F7A534F0DEA8B72C9F96B0358D75B87F /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BED3AE58AB6232BA76455757FD01B44 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7A8C862E7A01173D96C2084BFCAC374 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE8E737CFB4101CFEA57DD622DFECDA /* cookie.upb.h */; }; - F7A978AFD18F95E2868ED85C193BDDD4 /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C537D4BB561ACD0CA314DE83CFE7C2EE /* opencensus.upb.h */; }; - F7B05E0CEE5F0921C030CDDFA6DDBBD3 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD37254E09FA503C555EF338E3C3524D /* udp_listener_config.upb.h */; }; - F7B47530DCBCE6E7C1C5053BE279DA21 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BBC750A21E60EDD5F15CC56B207B48 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7B78F301276FAE17A8FD2655BF385B4 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A6B3000342D453398E0AA93E4D6AC2 /* cookie.upb.h */; }; - F7BABA829BB47D112715E7770C7FA1DB /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C7E81F4F509597B27D0C8E47F7C949C9 /* hpack_constants.h */; }; - F7C0960CEEB8F0C18F4503B405EAC08F /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C264AF7BAAE028C2B17B52E0623BED /* ConstraintMultiplierTarget.swift */; }; - F7C241BED43D1A503086DB039825D6F4 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = F86596D72E1D41483FD703079552D969 /* jni_utils.h */; }; - F7C358E33BF257131AAA22DFFAA95E41 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 323FC9A426CCF9156C0EA1181A530B07 /* decode.h */; }; - F7C38CC610F50D0E1CEFF617906CC78D /* atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BB65AECDCDF60BEAA79A0ED3098D6F /* atomic.h */; }; - F7C7869E54119791C8CE161CC63E8D71 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BAE62CE723BCE1B68F51DD632C8ADF /* gethostname.h */; }; - F7D8B6E2E09F346929C4492C164C5FD6 /* native_posix_dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1B6A2674C2DF6006205B9E1AAD1AB61 /* native_posix_dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F7E47369892861C1953FFAF7C45E5843 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = BB099864F7029C650924575A502C0070 /* server_config_selector_filter.h */; }; - F7E6B15BEB623B84FE755E0B30E70AAC /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE0DE861DF52CAF2D542DA106A58B2B /* matcher.upbdefs.h */; }; - F7F30FDC85BFF88CE2FB7E8A0B8992B6 /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F6042CAE113C4981EB8B5004E0478A66 /* channel_trace.h */; }; - F7F5904E1748E8963AA2728AA0557E05 /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0ADAA5E1DB8979E4E6CA66F67FA5522E /* bootstrap.upb.h */; }; - F80B943ED6D50001C1648B1F2F753DA9 /* aes.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DE2328507915D9863D164088E86059CD /* aes.h */; }; - F8117B893AA74A4E9E626ECB15FB9DCA /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = C900601CD49D34C4A66BCA6D014EE095 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8183EDC698E465CBAA87CF980BEF72C /* directory_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9F785529CD693B84DD8B17D7A357096 /* directory_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F82BC47F3CC8B7857E53D1229C48C6C9 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA78AF9872652D1B13F77E82E8A07C96 /* xds_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8341157A4AE09A9A01A7F595EDA2A68 /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 08963ADDE2AE3E2235C5A6607F406B90 /* channel_stack_builder_impl.h */; }; - F836C92983DF858B0F79B636BDED212E /* server_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B6ED5395BE44F2D16B34F85AB98BE6A4 /* server_context.h */; }; - F840AE6B11EECA48F1D347DF1357286D /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = DA53F17BB71DE197260D6652C6EF46CC /* memory_quota.h */; }; - F842C8756E41C297B72D7F16B14EB0B5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = FEEAE857E0FA5D7527CF8FC8008CA226 /* channel_stack_builder.h */; }; - F84345B6ABBE3F759ADC67E7D779EB05 /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = EB589AA9B1991995ABA3A68720962721 /* asn1_mac.h */; }; - F845EF6601096FA0C07A15D2DED20AEF /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0B42087EE8D983859D449C4459473459 /* xds_dependency_manager.h */; }; - F8576F77214942CC85814EF1AD796B3F /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F7BC8A1970864443E71F04B45F3A0F /* extension_registry.h */; }; - F859E48A86DC4D6321CC3BF16F6BB6E5 /* service_config_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36C54B8EB55FB9FA272AA302C99D0A2A /* service_config_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F860690E9A66E1BCBDC9EC67A905A4B8 /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCD6239CA5D1A6AF7E6446E999A52D3 /* try_seq.h */; }; - F87511A74D7E0EF7F73AADAD3918B20E /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FA7519495428D68EC4F1B92ADD4D282 /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F87BD53DCEB5F6B2E91259CFEA5F5048 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD00716D5031E50820F3268D3824497B /* ads.upbdefs.h */; }; - F87FE134DB9AB231C62C4506C15D5A37 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FC1106FB1337EC4ACA9437A1812F37 /* wakeup_fd_posix.h */; }; - F88B5D28A7DF1E2A5294EC946DA411DD /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D67E0684451C583C54316187006449 /* sockaddr_posix.h */; }; - F8901651DAB70645C038F03B0A9D8645 /* nanopb-nanopb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */; }; - F89166B6B5BE809EBC23E64168D62391 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = A2F26527CA3E171B8756B88D11D4D9BA /* audit_logging.h */; }; - F8920D23E7D70CB6480D2A4E7ECE289D /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 71C1164997A880963014A0A965B6310C /* resolved_address.h */; }; - F8976DFC0B0C9C8182125C5CB7DC09C3 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DF2C20AF8CDF3DCB08773F34DC978D11 /* collection_entry.upbdefs.h */; }; - F898EB915CD1687E0702C50BBE2F1687 /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 53A469B173E26F2068C5D90E1A9CB894 /* query_extensions.h */; }; - F8AD2D726664A1E6FBAC938277171294 /* propagation_bits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9F29BECDDF04D7F7A31079535ECE0E53 /* propagation_bits.h */; }; - F8B05E4A5C61151447E77954A7DF0463 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E42650DEADE076682C32B824585E662 /* tcp_client.h */; }; - F8B8840FC45F1E15D32CDDDD8C17C230 /* csds.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 09EC93B3118B646302646BC6388A9F50 /* csds.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8BD557EB8E1F51697B8BD7B68DB97FA /* match.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = F397CD3633B2D9B807022D040FE6CED6 /* match.h */; }; - F8C6939759685A26EF0430152A64B593 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC2C376952090A2EB3BF3B33C5F1F12 /* metadata.upbdefs.h */; }; - F8D78B21770FB688F52314F7FEF1075F /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D90373CC1DA02C73FD1431D220ACEF82 /* resource_name.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8D8EF2E8ED257AE0C5FE9BD4985751E /* merkle.c in Sources */ = {isa = PBXBuildFile; fileRef = 9334412C33923B5F9305141595F1C34F /* merkle.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F8DEA734EDAD8B16ED2A16B369A7B3D6 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B303A5C1D13F5BC3E0BC6E640492FF05 /* server_credentials.h */; }; - F8E27C7F362B924F6FA1473B0F47092D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = AC3D4F5A47BDB70F36B9822C7B3529C9 /* http.upbdefs.h */; }; - F8EB99C7C5E066ED13EE823575DCA71C /* histogram_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2345E06F2F9C17733772735F3D7D440 /* histogram_view.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8F1E4EF1B5076AE3A6C09C45CF28B5E /* has_absl_stringify.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3B77EAC49D41342387ED46193ECB8225 /* has_absl_stringify.h */; }; - F90AABF94CE57BC924D8BB30A0B73058 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D4276A9182CA15FB9E2C4CA021B34F43 /* api_listener.upb.h */; }; - F91561BD9F1B32AFE436D9105222C064 /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = E8A8198B1FCE5866D07C533FA978E9F0 /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F91756AD72C6D064CA4C1C719EF12168 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = ACDE537232AD9B5FAA5BEF758258B37C /* alts_shared_resource.h */; }; - F9342E248BA64FA79273C210FA539C68 /* outlier_detection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 147D66F02F1AFA4EE185ED711D8E6FC9 /* outlier_detection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9378DB259A0481809B0E0E68AD2B080 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 128460CA611D9E3076AA2B9EA1183A43 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F93BFE9046A1707E35F168B12D98B089 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = BBBCAD8F7E1FBE06AEF65E96A7346B35 /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F94628CE2377FD9E7025977F5753EA59 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = EB71F7060219044546B40B32873F9A5F /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F94E7FD4B1F309399CB7C4A36CE0482C /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F5906CF6F6796E0EE52FAAF683DCE2 /* channel_stack_type.h */; }; - F9516462EEBF34F749BCA37116BD2295 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D3ACC95F11E30093E5E8DFCC8AED40B /* metadata.upb_minitable.h */; }; - F953AA9104BFE0C2DAD639EA60104A75 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D728E251BECE573E09EBD88C92A54CEA /* ConstraintView+Extensions.swift */; }; - F96DF222353B9744981AC7FAD929B278 /* directory_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = C16E9323DA01F144A99A8ACB7C02E4DB /* directory_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F96EE862D20AA843B502DF8FAAFB3002 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F8EF10C8F869DC0EB43E9384A3FFB56F /* checked.upb.h */; }; - F9782E0506AD18D6BDB3C34FCB128367 /* hash_policy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A8817A850CB3D99FC0EB383EE647B5FD /* hash_policy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F97840AF9065A123E8B1DABA7D95BB9D /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D06F1C8D86FA4B9A2977D33464CE785 /* Runtime.swift */; }; - F978B9538275B07CF5F929A2EB9A26C5 /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8A4AEAD8AE549395C593F6265A47971C /* time_util.h */; }; - F97CC0C30672264F976C79CCDEAF622B /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D56FA7FAB8981CB6914974717C9FB5E /* upb_utils.h */; }; - F98602D181572861D1AD3040AD70F945 /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB20F29D8E1A266F5C0F3782BBD476E /* binder_transport.h */; }; - F98E57A5E2C382D69A46288F096B6A56 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = D3DFF65BF982EEF36B7377B51E3FB09C /* stats.h */; }; - F98F784B456669C9BF60421A6BC86393 /* event_service_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CC799104022BB5D4F40060E4C08FB0 /* event_service_config.upb_minitable.h */; }; - F9966D644277F9E1CF856B8C2CB1C402 /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C2949859712A62B5BA7E1212AD5108 /* channel_creds_registry.h */; }; - F998255F1120C92E832F48533D0F7E6E /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 705D852205C63AE70C0163AC86135C86 /* server_info.upbdefs.h */; }; - F998F938999A296CA27906AB7058383C /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C18A68E03D4AA4475A83A3BCC97E6AC /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F9A0500DCB63C72583871B30D4883BD9 /* types.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = D51BF0027B9A5DBB0F4715FBF6E6FFB9 /* types.h */; }; - F9A3085BE8C63268A899B6F77964ABF3 /* cancel_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FDFE3FCAE57B5A371A398792A524D2 /* cancel_callback.h */; }; - F9A3BC3290AAC28A124A0174E2A1C1AF /* DocumentID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17BBB1F477E2641A8D8583CB94431F61 /* DocumentID.swift */; }; - F9AD0CF6E5A0E1B8FCEFDA8B56A63EAE /* generated_code_support.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = C624EFA3F41088EAE00EACB60FF1076F /* generated_code_support.h */; }; - F9AEBF6F55210318BFB92BE184E8D3D4 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC8672AAF1E85FF166E8FD52D1D4776 /* parse_address.h */; }; - F9D041BC2F66302C4B8A1C40CD4061E6 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = B959B2B81FAA88AD48EE54F74298F222 /* field.h */; }; - F9D140AC9D77A4420CFE292834AD1BF1 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = A497BEB2593DDFBF7C360C797575A9F2 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F9D30527E392ACD8A48CB863A67AEB07 /* QueryPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F531A6D2AF79F2DF20A587C0ED54AD2 /* QueryPredicate.swift */; }; - F9D98DD811BC2BCAAD658BABB222EC08 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35A30276C2B4698BF8E3FAAEF17AA909 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F9E227FC2AEBE85CC30C7D8E82707C3B /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 37975AFE65765C6DAA35506A2E20D9D7 /* bootstrap.upbdefs.h */; }; - F9EA4F467A4A5FE7C578762E1A0C2834 /* status_code_input.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B88E0826F4D6B99E3700EA8D11303104 /* status_code_input.upbdefs.h */; }; - FA00EDFF599477E81EFBEA5ADF3A5CAD /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 3C8B216EDED742F3F88E10F39EDF0FAC /* promise_like.h */; }; - FA084BAA4EA427E8A6E7DBDB0EDCD6CA /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82A90620CAF80A06E0991CCC3B8503D1 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA09F9DBD1B29E6A2DC9E655888118A7 /* tls_crl_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 27CF1D81A68D47EDF6B1829E38115047 /* tls_crl_provider.h */; }; - FA1F0947E548BBE4230021400ADC2F48 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5834A13D5431644AFE28BBCC337CE68 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA207C5729AAD7929B325488A8A49F06 /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BACF1B1712B2FBE05EB787E12CC07043 /* node.upb_minitable.h */; }; - FA261900E1B71F49873E5F6D72FAE1E4 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8F4620B0A502479AEC0FE2534697000D /* http_connect_handshaker.h */; }; - FA26274ED95D9C22E22769FFFD88CA98 /* interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D73F6A4FEA15C1EDED3195027F787912 /* interceptor.h */; }; - FA44679D78B838E9CC1FAE92E35E815A /* inffast.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = D91E24B884DFD927F0FE166AE17A3E40 /* inffast.h */; }; - FA69FBF74A68F9B42B91CA00B441C1EF /* atm_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5EF30BD9F4E25DE5215ADF076D6BFD68 /* atm_windows.h */; }; - FA753A4D7E3C8DD014B2F2E8F7BCC41B /* native_windows_dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA67E98EEC05A9A5884CFF9CC5523064 /* native_windows_dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA7A1328B3AD184E7C1507495838F447 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E31F098239FD8BF3E8CF1BF1FC8A3D15 /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA84AED7120D4B0D2FB17AA1CE5DA45A /* encode.h in Copy third_party/upb/upb/text Private Headers */ = {isa = PBXBuildFile; fileRef = 73A99A135B7B6299E17400397D149EBF /* encode.h */; }; - FA84DD2F0B6DB0AB58A901A264F82AED /* accessors.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C82587757B393931773699FB1C4BF3 /* accessors.h */; }; - FA91664A124A025801466E1B4505137F /* elf_mem_image.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FA17BD8954C193AA99B13D8907BA9BAD /* elf_mem_image.h */; }; - FAA8A1426CF64D47A7BAB5ED89CAD47E /* config_dump_shared.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9123B6081B15B70F0A0611BCD8603B27 /* config_dump_shared.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FAB03959C2357E325B19E08BC4775DAB /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 247C7969DF54268FC551FB856C748966 /* ConstraintMaker.swift */; }; - FAC5EC7375DCBC668E6F217B608A8C71 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC0BAC021F1FEDE1F5F57E5A407C7C87 /* resource_locator.upb_minitable.h */; }; - FADCD4996E52454B19F08ECBC3B6099A /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 21816F12823835230ED25751E5B3CAF6 /* memory.upb_minitable.h */; }; - FADCE9823463FB5DC957B0BED0A4F256 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A4DBBEC7361E6419640B703064F63EDF /* map_entry.h */; }; - FAE036BD0DFE7FE97D01D2CDD43BFB08 /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = C83C42C32CD93DC5DF0F9BC6104D0D1E /* grpc_security.h */; }; - FAE8786D598EA1BECEC71748A0263654 /* orca.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC2FE495A27F500B3C2D60C4C5A8DAD /* orca.upb_minitable.h */; }; - FAEE36623A1AF1A0DFB3368AFAF3B95F /* ares_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 46DD463B0BC80D4F26519A8DB70BCA05 /* ares_resolver.h */; }; - FB0A40E3D6E5DD06F97CA05D1C79A1BC /* metadata.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D0B78E8FCF1F30ADD47ABE37E43B685D /* metadata.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB0C10D35B5072A02623046E6BB63688 /* waiter_base.h in Headers */ = {isa = PBXBuildFile; fileRef = E59A487B3E5B45F0C7A53999F80460DE /* waiter_base.h */; }; - FB0D1CCEA37BFCD30B7915F6DAF4F696 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 2B70BA71C266A60599ACF7FE7CE259E8 /* ssl_types.h */; }; - FB0F3DF2AC425392D6B7992BF3B76CF2 /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 087801A5A9FE6072B50ED7A36EB6AE22 /* cleanup.h */; }; - FB1AC3A49FF2A857D2E8FAC9FA682F42 /* internal.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = 37C36A2EB5A02478D60CC424D10E45F5 /* internal.h */; }; - FB1B414689C8FA700EEBC306F9A2DCA7 /* grpc_crl_provider.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FDCDFC719506E3830A9BD9B17A928AEA /* grpc_crl_provider.h */; }; - FB328CE231ADD8F495B94F6B4B9146C3 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B4C52E628ED143ED923780D4D8D46E3 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FB32AE4EEC6C3B52EF80FB2FFB28F616 /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF54BD9CCF2460EC04DCEFFCE03B1754 /* grpc_method_list.upb_minitable.h */; }; - FB33797DD7C257314077A9EB47AB8724 /* base64.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AEF49F7B6696C2939641874D20B6E0FB /* base64.h */; }; - FB478068154459F46571F09192AAB875 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = DD2AD8FB658EBD78470127324F86A366 /* http_server_filter.h */; }; - FB51CCD492FBEB177D2354DFC79E971B /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 422BC350A7A010136889D10AA799CAA7 /* completion_queue.h */; }; - FB5C0B0447A43551852BDBAD77034D76 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AAEEE5E376AC099B4704F25673F802BF /* mutex_stats.upbdefs.h */; }; - FB644F85D060FC774B7858FDD8785075 /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0738D0D2DBF3FAFE8976B7BB9CC9D7F3 /* event_engine_client_channel_resolver.h */; }; - FB68A98D4743E7C2B08C4D725A908FD7 /* interceptor_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8CC9163E271E6243DBCE2FD302F096DC /* interceptor_common.h */; }; - FB7783BD114A775F08033921E3E5E252 /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D3FB752C505A13CD022D2C5A2073834 /* FIRGameCenterAuthCredential.m */; }; - FB7D2B5555A13BC1DF8D977770631359 /* cftype_unique_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D260EBBE32646BD3D02735A04DEED34 /* cftype_unique_ref.h */; }; - FB7F58BC79A3EA38E1282C643800091B /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = F29CE3A89222D7B7BF6CBBD6736DFB57 /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FB80575588E2BC3F4D541D948FC72F0F /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 303F477FD1498538A8EC65C42549D9F3 /* aws_request_signer.h */; }; - FB81F6F78AEF285B2EDBCE8A57E050E3 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1F79E4CA2C72C286350814AC67719439 /* lockfree_event.h */; }; - FB872E74D59542B3712031F4EFF7D66A /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0CB1098352CB9337FF27EFFAA005F10 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FB8BF8966687E5131428F7F63F5D754B /* ping_callbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C2ADD010939669508828F97BAF7954 /* ping_callbacks.h */; }; - FB911A60E604EEBB3FA8E07CE9753313 /* sensitive.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 055C219E6C93736F6D04F8CDCE0A9D70 /* sensitive.upb_minitable.h */; }; - FB9B2FB77C39E5B5483D27A485D596CD /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B87DEA8F96C32D76C94AF6DDB75778C8 /* authority.upb_minitable.h */; }; - FBA7293FD0B469C7A7CE8563528E97ED /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADAA5E1DB8979E4E6CA66F67FA5522E /* bootstrap.upb.h */; }; - FBA8191DE73813E947C125D59D0E8715 /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = DC33F6E9AF1B0308309FE5DBDDB3619D /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FBAFB3386A6E70CBA551C7887CA566E9 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = B9CB09BB07D04D591BEE6C9EE0802A8B /* httpcli.h */; }; - FBB3350E50A8302FD1A13BA38655AE2D /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 8B663B438D0C53ED4C507479F080BAFA /* ring_hash.h */; }; - FBB7B9326F40D4E187DAF10A06DD4515 /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B029FC91D87F6E65C6F15E72754F253 /* poller.h */; }; - FBBC3D1320A1A83A267095192C4334E1 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF9E2120FBF75CAB514C886061CBBBB /* grpclb.h */; }; - FBC4A453A89035AC4C77DB4E2DB1941A /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB77E8F0BDFEEC33E6698A8E4043FF6B /* config_source.upb.h */; }; - FBC6C1A1063A7AEA7956ECA205EE6F36 /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2120944D48FFFE005EE3978F14F8E591 /* ring_hash.upb.h */; }; - FBCBA32F5787E40E966C0C7F49914A85 /* zipkin.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CA138C2C40C5D5FD1A932A10BBB8316E /* zipkin.upb_minitable.h */; }; - FBCDD8C7AFF6AB22E31FAFE1AC56B21C /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4087257919B714B8A742838EDA6B6F /* fault.upbdefs.h */; }; - FBD2C9CD3F322C1394A7015A5DB4A6FD /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB6330933658E520FD011074E2CB805 /* sync_stream.h */; }; - FBD7F19996335B5DA0013DE6F5270738 /* value.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5CE8535F193916A602F693915F5982 /* value.h */; }; - FBD8E5397EF87ECF583484DC696F5CB2 /* FIRGetRecaptchaConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B6E5818C166239635FC98720FB405D /* FIRGetRecaptchaConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBECDD6FB4C7486CFCEB702EB3E03A00 /* stats.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 489C92B2E08D3A15EA672024C0F6CD96 /* stats.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FBECF045223048616A2A36E41AA4E790 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5C354A7C6C83A549B636BC98126B4E02 /* http_protocol_options.upbdefs.h */; }; - FBF7F4079869503380F9E7D047CF462A /* thready_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = A47ED003D405DBB9B02A20AED9C03666 /* thready_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FBFBEA6A7F45CA99699E1F6291EDE452 /* LLSnakePageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD01E56BC95EEF384EA019B534EB100C /* LLSnakePageControl.swift */; }; - FC026A9F503EF7AF553049AAA7F73947 /* opencensus.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CFF8BB6D7AA4C25E2996995B5C9C26F /* opencensus.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC19951F1CFBFA0B01ED4F807073305E /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CB72F5483B0C5091F57121C55C40E1BD /* compression_internal.h */; }; - FC26990F8ABE8EEF1275FC3C441A7F2F /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DA76DFACC30E6BDFA99A8EB43A3314EF /* stacktrace_aarch64-inl.inc */; }; - FC2D9D31DE16A9C8CDFF30486D453DC5 /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C0D41D7E20BD2AD96EB9F9159E7E3629 /* lightstep.upb_minitable.h */; }; - FC35ED1BD7CC355365C3A34BB980658A /* dtls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2A0546CE06DA56AE6AF7E70ACB0E2CFA /* dtls1.h */; }; + E76F68F68355838E034D21C80EE3B37F /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = D3B987528B6F453471B975AC238DC0CC /* rbac_service_config_parser.h */; }; + E77350E4DC12AEFA5AD413C0D9F3FA47 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7629E094E923585B4B4012D56B2CE42F /* TZPhotoPreviewCell.m */; }; + E782EEAE5A34F0B864B928B3E162E957 /* csds.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = A1E0340D35C58FA15F9AE74A4E1C39F6 /* csds.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E78A75BB60645CD947D3CEB5328B8FF7 /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4BEFF3F554E9CF4338BCECD21FF702 /* NSData+FIRBase64.m */; }; + E79AC10BB9C1171E9122498396B36A41 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E9AAC4D16C91492B2CB11D23A78EAF /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E79D9F37F6C0102A26F1B54628EA0EEA /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F9957C9557A66E2F57FF3B562923691 /* idle_filter_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E7A4955863522096A1529253DC64E954 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 371077972DC2E3FCE360EB44980716F3 /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E7B2DC09FF1F9B3601FFE9F59EB70C9F /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ACA2EF898C85A62C612837068F5B2E5C /* tls.upb_minitable.h */; }; + E7B30CC979253C7C150C9E50F2557492 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = ED324C77781894768E66229AB5653C1F /* grpclb.h */; }; + E7C0D2647F1ED14DBB71DC53C7708B6B /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBE7667C235F530A22443BEBE9C179 /* FIRWithdrawMFARequest.m */; }; + E7C4D2B3290BED3E84DBAB730357677A /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D839A017151BC0D2419367CC75621A /* env.h */; }; + E7C777A3A03A5F914B0D7287BD9DA142 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */ = {isa = PBXBuildFile; fileRef = 0D5AFE3F4CCD7E2F5A2800C7B37D9064 /* internal.h */; }; + E7D6CF65770B43E33611E2867FE5BD96 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */ = {isa = PBXBuildFile; fileRef = 13D2712B1470F76E1C899CDF59EE6B50 /* stateful_session_service_config_parser.h */; }; + E7F3F5EDC98298441DE1B7AA0E9608E8 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C2AE0E05CEEBBEA1004D68F9213B8B /* FBSDKBridgeAPIProtocolWebV2.m */; }; + E7FB43287498251A56142EEA060BBDE7 /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3662CDCB682DC39DA4C2EDE2CCB6B1CF /* http_status.upb_minitable.h */; }; + E7FCC01B17DBCB531364E4D7B75EAFB3 /* message_allocator.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 63AF4DAB70CEE3D3B20696D44BD32666 /* message_allocator.h */; }; + E847B6236BAFCF7CFD11FC73C9F680F2 /* map.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = A210D8C33F560CBD13881279872C5758 /* map.h */; }; + E849B525EA97CF9F217F0D948FFF63AC /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7BEA5EEAD4956C707F5C0692DADDC05C /* router.upb.h */; }; + E85C1FFED198E0C7BFD0D223E80383B3 /* config_dump_shared.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8F3AB30A2AC16C546EA54F7326DB2C /* config_dump_shared.upb_minitable.h */; }; + E86F51C6138EF003E2D9500FFD1F64CC /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = F08C9D8EFC3DDE79A79BBC31CA3A8C7A /* channel.h */; }; + E87A3D5BFEAEC567A8EFFF5CC3EF147A /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDA221D3816AB6EE46862A0751CF2F5 /* grpc_if_nametoindex.h */; }; + E87AEE3CE5388FCB7E69F496269323AA /* GDTCORMetricsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 241691EDF60D9751A366790636BAD2EF /* GDTCORMetricsController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8879135BF7A02BCD3028740F6421E37 /* xds_resolver_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 819C11BCFEFD8FD837DCAA4F321914E2 /* xds_resolver_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E88D43AA5BB6EA118ABA65948F631E33 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 56DA0C22AB965309C8B9C7F3D1387EEB /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E88E9E59E767EAF1E7AF1AA5601361E6 /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BA2B517AB924B13292EC6AF7B50C8E4E /* xds_resolver_trace.h */; }; + E891213660F290BCFD45B63F3333DF8F /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A8C4ED7F7D5C9743C6C359B8D258A0 /* string.upbdefs.h */; }; + E8977A6B2FDABAAA8B1C2F841D757CE2 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5380F303636DF88FD22AC18F7B56FDA3 /* thread_local.h */; }; + E89B454EE23B84FD9EBC48048CB5B1CA /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1F8FB44F285BBA702E664F8125BB170 /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E89E8D8C1514D5921455B30AF2B68C52 /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = F59A7EF8D27D44CD1BB60ACD72E421F5 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + E8A4CCEDD0EE053B6B5AA082AA55A0FD /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CEEE0F94F0D4E821D6E4EFCC04B54965 /* bin_decoder.h */; }; + E8A4FDD18C0DFCE336B8682029037CEC /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = F7B3DB8AA206ECD4AF33666BDA1A5857 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E8AB6EB1B04BEB453F6E45500C7E9785 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = D11A3217657F5C6BA59BF5148C4ED9D4 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + E8C729F2E78EBA9C3A78BB2F6B7C73D1 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD6A46506DBBBB7D4E96BF4C1906FF5 /* metadata.upbdefs.h */; }; + E8CE42C5BA47FA19158857BA7F4B6EBD /* RCARecaptchaProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 885592FD39D2793476DBA3DD583254BB /* RCARecaptchaProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E8D1CB6FEF203B183273BB252A28B47D /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE638B8185757188F516270A19622A2 /* sub.h */; }; + E8D90209D183F62AFE2B1393B752968E /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = BB0504BFA3C517BC5AEACEF05091347A /* parser.h */; }; + E8DE2A5D033029050F6A8C6903ECD341 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8FD864871E297F25D2D9DC83C90D57 /* versioning.upb_minitable.h */; }; + E8E8AD6B39B88AA7B5A0FCC03D158729 /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7D2CC606A12CE116FD07A90AEDB502 /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8EC5BE6BFF9669224F23BE6107C470B /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28CA4DD4A5655DBE4A3E411889B4C0C9 /* unicode_casefold.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E8FFE34846C07F64AF370B99BFD1AACB /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 69324BF219831823EA8409087CA7B407 /* mutex_stats.upbdefs.h */; }; + E9032DF0B9F0DF56203AED4A11B3CDE3 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F503304A40BA8FD30CBE48F3E360711 /* internal_errqueue.h */; }; + E9041D41A015205F0C37AF701D29750B /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B98E6B118A0629577FDACF1459054ECD /* duration.upbdefs.h */; }; + E90CDAEB0C5481288F4C15276EB1EBAD /* p256-nistz-table.h in Headers */ = {isa = PBXBuildFile; fileRef = E4358CB27FB7E82183864E7D9E0600E8 /* p256-nistz-table.h */; }; + E9180731BC356E2C2855FD57CBD63408 /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C636D0BAA6C930BFEE5C22A8DF56A520 /* node.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E924DD0BDEF88A491B11C1136C946E17 /* FBSDKWebDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BD59D1A348ADB712E502154818F2DD1 /* FBSDKWebDialog.m */; }; + E926E5F789D36A9A20A03D4C617BE95E /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FC29ECECF6A1F84DA5A14A7CC25CB20 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + E92BF27E3954E6C5ADC1A7885EC24130 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C813EB7AAE4276934E734BB967B28645 /* stacktrace_riscv-inl.inc */; }; + E931343977D31EF3F0A8BEFE3B8EF564 /* FBSDKFeatureManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93BDD4A3EF005C2DC0DF642B516D2AA7 /* FBSDKFeatureManager.m */; }; + E9517F688046CE57AB501E63768A4D1E /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CEDD7815051F1EE7FE260D1D8817DD /* host_port.h */; }; + E95A8C97F8C92E922D8D0B5C09ADC5DE /* ip.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 428A9F49DA6A31740D8EC1B93D371B96 /* ip.upb.h */; }; + E95D6E6462506EFD8EA9332AD9BC492A /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 665276C405F7327EA6849B60337DDFA1 /* SizeExtensions.swift */; }; + E95FADCBF11BDEE5F414DD7C4C8B0B09 /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20CEF42A154F4FA1A7A1EFBDC8432794 /* grpc_ares_ev_driver_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E960264E6A36A4234470FA96A1C3CAB6 /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = 726A28A088B368BDF2B5B099FCFA351B /* strip.h */; }; + E9623875633245D2D0D6EFA20A9A003F /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0F503304A40BA8FD30CBE48F3E360711 /* internal_errqueue.h */; }; + E96BC97C144849B69C42399C9ECE35B3 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C6CEDF96C8BECA13FC87960768225317 /* iomgr.h */; }; + E9727B3D8CB3F0DBDDA0F86B8F317E66 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B62D4057E5597CC6168D2559253F0E2 /* thread_annotations.h */; }; + E974EB5683B65B32E186785305ED9946 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4BBA2CAE887150C78A7718B0CE5CD4 /* common.upb.h */; }; + E97841F4D16A67F10B4823B2C335FC8A /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BC35C3F8824BD157CA4850D5331BD4 /* cache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E9787E3F4828BAD6D79D1CFC515149E8 /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C88E640434F6F36A7902A052E23F3A31 /* tap.upb.h */; }; + E978A2D02CC7A55F7240CAB2B7C00873 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8051AFBCB4E542311E9576389518EB2E /* hash_policy.upbdefs.h */; }; + E97B388543CDFA703CC4069203727481 /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E93B9C701BEB399419B6428A72246E21 /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E97D2CE80102DEC2CE12B59F5C1EB3BD /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = D71B3863C141E42A804F2EE0388EE51B /* x509_vfy.h */; }; + E98DC8FB2578E76A812E0C94BA10E1B1 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AE58325C4B29B405BA281FCB706E064 /* ConstraintDirectionalInsets.swift */; }; + E9913E099D2BC19668E9AC2E80AC8BCC /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EBB49FD2F8B263C527BF1CFFE4AF38 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E997C5D55C0EF9CFBA608B36509D6255 /* http_proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 77964661B7F137B33FE80968D6BF1EAB /* http_proxy_mapper.h */; }; + E99885B570E157583D921BA5188F284E /* struct.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCA1C8B3B17D9B5FC1FE27E9797E4AC /* struct.upb_minitable.h */; }; + E9AB237871AB07EE45CB001D35E7A4A5 /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DB77783FF298DCEA70F5D256189DC2 /* create_channel.h */; }; + E9D26A4152D88AF33FEE9DFAAE7B4AF7 /* tsan_mutex_interface.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8F958612B31F6E1F40D25944250D305B /* tsan_mutex_interface.h */; }; + E9E7C66EE1EE35268EFDECFCBEBEE739 /* field_def.c in Sources */ = {isa = PBXBuildFile; fileRef = E08FC1F2177FA671B28B997C939208B3 /* field_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + E9EA5D6C04A2BF07D19417C45E7040AD /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 72587A8F9A332038AA580235F5D3B464 /* grpc_ares_wrapper.h */; }; + E9EFDA007A3EF83BC8DA29CD932EC823 /* channel_arg_names.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = AAF6A40F1DDD9BBD45AF480AB91F235C /* channel_arg_names.h */; }; + EA12B6C97C5121AE95708BA8BD1932B8 /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0EDDD75DE2095EF065CF21179DEEE57C /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + EA14C4DC30D86FF428337265EE17CA18 /* utility.h in Copy utility Public Headers */ = {isa = PBXBuildFile; fileRef = 48EF2CE2B033F062B6C14141AB1B36EB /* utility.h */; }; + EA428C946871121A67031BEF5743EC41 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D6BFEA62DC00B70C8C57C53A43C39AAA /* sockaddr_posix.h */; }; + EA469A76285C72C95DB270F97F0B5CF5 /* FBSDKAddressFilterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12412EFAC58F27FB985EC321972A031A /* FBSDKAddressFilterManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + EA4940A415A2536A475D0BAD85FE315A /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = BEC6F387256B3E4432A0AD280EE694D5 /* grpc_tls_certificate_verifier.h */; }; + EA4AAB7ED79ECED0ABB8153D623F06AC /* seed_sequences.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 08D64B85345F2804481139E4A30B70DE /* seed_sequences.h */; }; + EA4EF29233703B07B615ED72BAA22A3A /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = AFBA883056F6004C5DF7FF56CDE06192 /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EA56B90BC1CE25C46087D43186BE43F4 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 6F75E422325FFE1A8052A22F5A81BBBC /* json_token.h */; }; + EA596F3A7B0C4BAF717A529EED06024B /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C677502B629179DA6233E05762510421 /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EA664BF8EFD4C21136E71423C730B895 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = E387728CCEFD404E74AB91EA9B4F277F /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EA69F7A2463CDBFC69CEDD79238E5F0C /* uniform_real_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = C26097BF9AC4C0329B8D69169BF737E9 /* uniform_real_distribution.h */; }; + EA6C2D1AC2632341584E1D5F3AADA8D9 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = F60CBA726113848E9A5BDDDA39CCA92B /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EA6C90135F920159BFF0441CFB4C262D /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 12989FA44145246DFF031F5A24247A30 /* socket_factory_posix.h */; }; + EA6CFCFEAFE83A2F53B692E886E1432D /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F090E4E64880CA6F0D5ECA8E3C21542 /* client_unary_call.h */; }; + EA708EE55AF3FD454A38DC39BC193D0D /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 8ADD26FE6B281D8182D9CFAFDA280B84 /* credentials.h */; }; + EA810F02F1D5EF3C3D944E4F9879C0F3 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01620ED71B38281B151FEE2227375F2F /* protocol.upb.h */; }; + EA8215F54ACC491961151DDBBF962051 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 21E265D554D9D8B10AC30E6920780272 /* completion_queue.h */; }; + EA8E80E396DBFC51452A07DA4B88B331 /* metadata.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 05331F5E509EBAC1D6AB831CB125A2BF /* metadata.upb_minitable.h */; }; + EA992E96AB8A7B84E72EDAC059387C23 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BC9B7A63117165EDC779CE94330EC5 /* lame_client.h */; }; + EA9F6C421A849196AB6CED74990317E4 /* domain.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = FB69E32FA3AC5C30313C9ADF9377C5BF /* domain.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EAA233B55B328C295D031230809151ED /* status_code_enum.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F207AF8306F8813F4F465D06C879E7DB /* status_code_enum.h */; }; + EAA5B28D55ADE914046487B284C10487 /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 1666305AA6C2FE0D63F604D684364EB4 /* compression_filter.h */; }; + EAA840D343E7B1F2A4F1E0247C91191B /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD4696076B9C2DCC13C3720B648BB86D /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + EAABD2E314A625E5F71505F000CB4D34 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = 407F73546E4C9F8AC7411D802E81F638 /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EAAFD21E84EDF17BFBCF673E4EBEE002 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F5062670A66696A9B7B5CC25A2AAC16 /* base.upb.h */; }; + EAB2B2566EAEBF1BC12DEFE3A1CD640E /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4EB2233817F2EE47938DA25009F16F /* GDTCCTUploadOperation.m */; }; + EABC7ED140BC5F7F8D7154CECCE3F751 /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 344C85D8677C71FD007EDB1BFA0309C6 /* graphcycles.h */; }; + EAC7C84649EBB00A274A9FC540C4F005 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = B04F90894C8A4799A3264F36BFFE8E0E /* notification.h */; }; + EAD5A60BC340496F618AA0AAA2E888F6 /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE6449E9DD7C62B24AFDEBC9A75C39FD /* xray.upb.h */; }; + EAD7BFACED80C445D602FB4E876A6576 /* discovery.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 70255F4985C0731F537540373352733B /* discovery.upb_minitable.h */; }; + EAD8FE86E671314A4AA9D5B7C005E24A /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA15158CFB3085FC06BC980602167D5A /* GoogleUtilities-dummy.m */; }; + EAEE0A5BA9F78896E0EEB2A32FB70AC7 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = DEFCC66D80F61B7A7D26002208AC9722 /* health.upb_minitable.h */; }; + EAEEC41192B5735D504F8D23AA338295 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0723FBD4F83EF23F034975DA33E622F8 /* status_conversion.h */; }; + EAF21BE60851DF40846A5949E5631E09 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4BE76D48BDB2E6A2D6F64E78C9BA2B5 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EAFA83009F6829D2DE458B1097D4DB6E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B5F26EB09671A59AE0CA0D2C97CEAE /* internal.h */; }; + EB04A82DBC1C466BCF33F6161972B4F7 /* grpc_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1890EE4078EE277CBD86A044226DD869 /* grpc_posix.h */; }; + EB15E331322CF572F0D9B71B93C54933 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B547A061E368D686C491C3485761144 /* tls.upb.h */; }; + EB246205101A5D0A0DDE0136D9AC6E79 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DB88558ECB82826BBBFFBAC4259B232 /* config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB2EE9E3D174AD71FC5FAA808781FC77 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C351AA2DC47946B943DA8209501DDF /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB2F95AD63901BA3B804A9EEB176FF90 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 217C799CBEBBB002374699D31C1A0F05 /* frame_data.h */; }; + EB3236A4072E0CDF39E43D2DD42F264E /* FBSDKMeasurementEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 954491775C87DCB7DE10E47652C2CE32 /* FBSDKMeasurementEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB5196753653ED216ACAC2AE87C4C76F /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D8F2018CC1EDB205AFE2FA3CCF9691 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB54161C986F98F07773772E8E2802BA /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = F9558E220DA0BCF65B48C3A33762CB1D /* async_generic_service.h */; }; + EB55C00C66EB52985F4187A73CCBDC85 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 65053BB224BFF882072F0D5683226C15 /* auth_filters.h */; }; + EB5B96E015475C62259BD9C73CBED15A /* udp_socket_config.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F54F4D170FD00F5AB27554A4744FD675 /* udp_socket_config.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB5CD6C5ECFE747C211FB5858B9705E7 /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E1743B4BA2782AF21ABAE718EAE81702 /* opencensus.upb.h */; }; + EB5E31642AC2784D5A6335DDFB4337FF /* FIRCLSExistingReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F1555A406D34680516E29B7AD94F2A81 /* FIRCLSExistingReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB702F128D0DF3EBFBE12E9279F29355 /* xds_resolver_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2B517AB924B13292EC6AF7B50C8E4E /* xds_resolver_trace.h */; }; + EB7544A400F27AB46EBD38B055B6A3C1 /* propagation_bits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 225FF9A3CF2E85308B488605BD96D4EC /* propagation_bits.h */; }; + EB7D0C5469FBE769203A58684C098572 /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 3157A47CD653D5C6555523F2C2383E03 /* endpoint_pair.h */; }; + EB8ABFF82CD08AB7C98D40948526BF47 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7A03EF837EB1C7F14DD25EE09A371DA6 /* xds_resource_type.h */; }; + EB8F16BB73DE364E0713C5A1AEA1E43A /* thd.cc in Sources */ = {isa = PBXBuildFile; fileRef = 754581895145DFDE7345D153A67636BD /* thd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB90CCF2694E4F725850C7340C6ACBA8 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 161781877AE5D81BE0D06E3AE6F1E367 /* FIRVerifyClientResponse.m */; }; + EB9386A61BBC6A7A373CF4C4FB3E99FB /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7142A495A70714EBAF2FD9D8DAA27AB6 /* address_filtering.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EB9D569CA4E0A424ADE4647ADE430B0C /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 75A527CF8A5799FB244CD5275F80EC43 /* xds_transport_grpc.h */; }; + EBA4F775410612E6FA6DF4C9A3A9193D /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 97BF481C7BA3B9263200549647BA2284 /* sleep.h */; }; + EBA5FAB2C21D9330A17BB52F4423F7EE /* json_writer.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 6E64AACAF90259864CB9D2142B051AA1 /* json_writer.h */; }; + EBAA846884597EA05A5A5BDFD862788F /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0355F30C25FD222A86D09F896FDCA48F /* message_size_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EBAE0DE64410DC1FE05D4653ED4D48FB /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3565F7CFE0E71D05C56F46591346A6D4 /* resolve_address.h */; }; + EBB5B5FB2A7E2D8348BDD6687249BA13 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DED0ED8CC87B0E34499AD31B7979C88C /* domain.upb.h */; }; + EBB6C82E12F6D8303C09164924EF1304 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E0CAF3B55F6062372BB232C4E796F8B6 /* tap.upb_minitable.h */; }; + EBC0470092751E5CD8BCA8E478F974B3 /* cord_data_edge.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB062ABE281A1E97FE70ACF5D4E9DC9 /* cord_data_edge.h */; }; + EBC1974A097B96920B58A90EA562B043 /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C9BD439F7B917ECE19DE84F2F7CE84B /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBC21BD7A8B76E77D63FCE3D15648A1E /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FC69D6D750015A3CF4EDAA96DD18764 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EBC47D723B27C511CBD4BCCED4C5B1AB /* vsock.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 13915032D0B114E937BB5C725A0B9BD3 /* vsock.h */; }; + EBCAA36C91EA60083DA1CC975DE0E4DA /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DCA06EC936BE11ECF451031CC26AB2 /* binder_security_policy.h */; }; + EBD86F31224CC1A0DE02C52D503FE49C /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EAB217677E29B3AF81B16E8B90B0627 /* FIRSetAccountInfoResponse.m */; }; + EBDE20B45CC58E4EBCD527948D24041C /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 60EFCF661D064BB8445C123F1015D367 /* endpoint_cfstream.h */; }; + EBE3C01BA4F72013461CB34E5F7EDB4F /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E10242ACC5900D68F532BF15ACCEED11 /* encode.h */; }; + EBEF962014C2CB0675C7BBAF51AB6F4A /* FirebaseSessions-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EFE536D8AC0B6222AEC4F7D1DD5D18 /* FirebaseSessions-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EBF87B859B1D4CFE53CB6D5CA3D47349 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 41C3D81936C0BA32E9A2252C2D0DB8A1 /* tls_security_connector.h */; }; + EC0212893FA2FB01B397324C50C91A87 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9EA33204474B97263677EDA6324E05 /* timestamp.upbdefs.h */; }; + EC04A9B8A6253D71C7553F5752F7D4F8 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7F4CE0A73B2AF9AE87509AA7B9BEC4 /* executor.h */; }; + EC06EADBD96C4E3F266791CD6CACDD33 /* extension.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 82BDC33B952AFE9EF82DCD5369B3B967 /* extension.h */; }; + EC0C7D91DB2BD132A534B280186B8D60 /* Promise+Recover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CFA1646D04112AFF9A98A6AE86ECD0A /* Promise+Recover.swift */; }; + EC0D82D74D22ADB89867E75670206712 /* grpc_method_list.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = B3441A6985B0B6BC52EDF7C459D00D61 /* grpc_method_list.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EC0DA91415310FA52F477B1281F9BC6C /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C177AE554AA8308A5F61EF1D55DDC0 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC0F4F00E79BD0A9ABE8B98C7E91B1E1 /* array.h in Copy third_party/upb/upb/message Private Headers */ = {isa = PBXBuildFile; fileRef = 86D961FE754A29E69261B28A260B717B /* array.h */; }; + EC16A546F62337E6B27FE3641B0227E7 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C8678D653544D1A79D205F57BE206C3 /* strerror.h */; }; + EC18F76153607084668F99E478DB9AA6 /* str_join.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 4F0E2FBD7854B6C6460B447EEB1895C3 /* str_join.h */; }; + EC1A32D32F3AE21C356390C3771982FC /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8FD9458AFDE18034FBDF7096BAF96601 /* message_compress.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EC2191524D37B1A4F25134E72649FC84 /* curve25519.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 628990FFBE6803A20006509E343B32D8 /* curve25519.h */; }; + EC364C7D70A8BFB3367D66FA08E16FC6 /* FIRPersistentCacheIndexManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A29CDC307B5AAEA1DC862B523531E6D1 /* FIRPersistentCacheIndexManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC38D01C60F5ECE7B45F349601262E58 /* FBSDKLogo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FFC68CFCCDA85B0900B0FEB9FD1F04B /* FBSDKLogo.m */; }; + EC3AEB2D135E301A15F91799C82D4DDD /* http_proxy_mapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18A9856C7DF37F25EB09F3515901BD78 /* http_proxy_mapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EC4D23246C66B99488837FB7B71FC096 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D543D895C8FA7E8B72363A93139508B /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EC4FCC69C50ED6BA6BD353B7193AA310 /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3F17882BB5E6303C3DFC803432680F /* ssl_key_logging.h */; }; + EC62842D91DD0F89C795D1FD167BAD32 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = DB61F25E99CEF633A3E4E0BF0ED163BC /* client_channel_factory.h */; }; + EC675FFE08D3FC47D18236AED27C97C9 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A061EE2461BB7AAAD6030225E4E5D13 /* memory.upb.h */; }; + EC68D86843EE41D5109321254604D317 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = F3DFC2095F229F3716675286A0B9E603 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC70BD1C493409AA931D239430B1D22D /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = BD280A40B6B219ADF30EDC76882BF647 /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC73277798FABCE717238D900BB74416 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 1525996841248040C425788CD292A814 /* config.h */; }; + EC7C25E2C9378B9D074248A63CBBAEA1 /* FirebaseFirestoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FCEBD25713685CDADDD9C66D3A37FB3 /* FirebaseFirestoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC7E2A3EC570E4A399E3DA2E2DBB31F6 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC47BD7BEE5F76EB415ACB6DF0A888F /* exec_ctx.h */; }; + EC9C12C90BDDD69D4B555039145679E2 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1029805654EDC455D1FBA85737C1FCBB /* resolver_registry.h */; }; + ECB62B75A60AA7A6BA041E768D280697 /* range.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 34F676BA81CBEACECDAF577B0810072E /* range.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ECC25DD1F64D087C8F9E28BB857C60D9 /* binder_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 7F1119FF603772F68F0EF43F859CB6BA /* binder_credentials.h */; }; + ECC355E4FE30772DC140F70163B4AAC4 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD6E166E21A21C82FE7FFDD774D8A54 /* tcp_posix.h */; }; + ECC3AB94B71A5F506A17546546970942 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA1944D7A0B43518EC0B7CE1CD03C7F /* exec_ctx_wakeup_scheduler.h */; }; + ECD174E221929AE8FC6736423B77420A /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7D849431BDCF0B0F6E5B07B7BACF54 /* regex.upb.h */; }; + ECD2FEAEABDC2008A3A41B2933047F9E /* token_bucket.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A224F73F33DA8A3C02A3C24B55091DE /* token_bucket.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ECE4140A04E79FE167506DC98EB31F86 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = 5C99B8FCBBAFB5EED3F747FAD657206B /* backend_metric_filter.h */; }; + ECE6F23823454A8FDB3F97CE1A7CD182 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8914078ACD72935E4754B53D9FF9336D /* RedirectHandler.swift */; }; + ECE8C0639E9659FE46677C076FECE34B /* Promise+Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9B3A754294F0C0712D2FECF9E6C0748 /* Promise+Timeout.swift */; }; + ECEA7502A22F34C8CFDED45BDA71A565 /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F8AE0A4827BB345F57D451CFCF290B8 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ECEACC1BBEC4A61630CA72663F545455 /* external_privacy_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF00A4188DE53577A61CC938A32EB0D /* external_privacy_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECF2F956B37A4C28B228BC291A57AD6E /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3745C1EDB01E0992313B4E2E2725D057 /* RequestTaskMap.swift */; }; + ECF4B550D0C0ABCF0760ADE89A02529E /* file_def.h in Headers */ = {isa = PBXBuildFile; fileRef = 183B43AAC0AB983D035B82D6C82DDAF0 /* file_def.h */; }; + ECFAFCC4A2DB05761534E59D05D63D1D /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = C76C05E12E195CA6D06874CE23980D35 /* map.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ED038CBD12DE58F91B3CF8015BAEA9D2 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 32DF46B42F5BDB98E8C7352F862B2617 /* secret.upbdefs.h */; }; + ED1445193C0F3B085E8B0ADB2F541595 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BA5EA0504A8A6EBF49AE74A741546DEB /* iomgr_internal.h */; }; + ED169B64ACEB3998A44C216DBB1213ED /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9470AF73E5F7D6C2FAC601C27776D2 /* handle_containers.h */; }; + ED199788CE575CB01CD0FB7D44F8CF62 /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7513E5C5AD21D97727C49ADD4472E4BE /* activity.h */; }; + ED1E80D60DB44476BD3826F8E6F04BC9 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 943A82D6E962FD0F76A8C51C2574335E /* unique_type_name.h */; }; + ED24ADA245E021B1D7FB2B71AC306A6F /* transport_security_common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A4936858FFE88656661FEB0251EC48 /* transport_security_common.upb_minitable.h */; }; + ED25C3D7DBE1FE059E6AF409A04877F4 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = ED32E5D307992A2F2BF46367DE8446B3 /* tcp_client.h */; }; + ED270F9AA29BE450D996A9689355F16F /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4110C783316723021A0DBD4FA52893A2 /* percent.upbdefs.h */; }; + ED3107C749DE9E3331024F419BD39B33 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC1642A0DFED377462FFFCF1055E29 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED4162ABBDD1FD7F137D351FDEBBD0A0 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0E28D281837501F54F7DD25C22FB4E /* ref_counted.h */; }; + ED42B3E155468AE4BBE8CCC88FE1CB8E /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 5921C4D158563EE664FB42CAFB866723 /* span.h */; }; + ED460410CE5D87E5097FCFE72750EED6 /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1F64784461183417EBCE6715CEC5CB9 /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + ED489D682F57B4D6924B70F99D838B1D /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B54A56E1A6F5307790E8D1349C98530 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED546328F5AE27A09DEAFBC24D20C196 /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = 78FEB31CDC03FAA1066CD0B893063427 /* handle_containers.h */; }; + ED55015E67B74C8BE44813726966C163 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC7B45047AB8C8288C96FCBAF5FC15E /* sensitive.upbdefs.h */; }; + ED59D6F23A2C5466089ECC4678D9BE6C /* httpbody.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = F2D0BB67726CD3F5E9F8F7CA95FDECC9 /* httpbody.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ED5D4D48D2F0211EAD21585414D877BF /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4E527CAA573278E19F66F1370E5B20 /* matcher.upb.h */; }; + ED6070197E183A3837BEA6C5BEDC8653 /* curve25519_64_msvc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5544712BFB30DB344E74DF0AD26E5F79 /* curve25519_64_msvc.h */; }; + ED7D575E5F9F5CC2DC8411C00A524D0F /* workaround_list.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9B1CE08C16F75A73D2AAE9BB487B753C /* workaround_list.h */; }; + ED859F214E543293F0F4BD1C35D531AE /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 899690B78A3F35F6ECE622A682DA2BCE /* http_tracer.upbdefs.h */; }; + ED85C10BEA16D6287C844949754EFF41 /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 75F04D47BCCF5E019DEB69181F0B97D8 /* time_util.h */; }; + ED937B3B4349B754550D319F45C80199 /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C938784E8012452027F838F5037F512 /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + ED94367FD8AD9FC74B525A217ED9DC54 /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4538912B20944B48796040C9FEF402A9 /* route_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + ED992F4EB61E87F4CE30EE22F55108B3 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B872D203FDA6A8A32B244D5B1B537F24 /* message_reserved_range.h */; }; + ED9979DE96668D543AB9087D181FCB8B /* arena.h in Copy third_party/upb/upb/mem Private Headers */ = {isa = PBXBuildFile; fileRef = F900D9D1C7A5788F548A4BCF91448FB9 /* arena.h */; }; + ED9A767A1273C8C7909CDFD0BF38CA54 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC1569BC8714AED8187CD9410112DA3 /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDA492EC78D8848AC3F2D451AA161D41 /* FirebaseAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 90ED4FF1EABF9ED8D0E62B65146A0280 /* FirebaseAppCheckInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDA7F21AA193156F466703ACEB4AE228 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = A778E2CD824AF7FC4304D9C82C9A3D0E /* modifiers.h */; }; + EDB4883AEFEFC5FE4903853636EB7599 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5373EE0020E7501BBA3B01D7D4FD4E22 /* metadata.upb.h */; }; + EDBC4D08FE098FE7C41C31A5186E9553 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 682AD09E9C7927B96FAD6BB09B0DD984 /* GULNetwork.m */; }; + EDBCE82F1E0574C5DCF7261D1171D7FB /* FIRCLSExistingReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 839B9BA6F51852D7957FA717C9D4345E /* FIRCLSExistingReportManager.m */; }; + EDC051B02200767851ACC6907D9CD9A5 /* slice_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3E801959856AB6805D8D9056831C3231 /* slice_type.h */; }; + EDC3B8845774F1CC8294049ADA7ABFE9 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E3E8DEE9447E9A23B23D2961D02DA64 /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + EDCE62055AAFE74152AE76DA5508BF74 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 6C3AC2E772599E7379C3590A453E588D /* enum_def.h */; }; + EDCF4C6BBC79D74D3A1EBC92E9D1292D /* quic_config.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0208C59A70EBB18CA7DC9899AAA4A72F /* quic_config.upb_minitable.h */; }; + EDDFF72E054C56BD65B2BF2133048C2C /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = A290AED07D27250B3D14E4D0CA449F8E /* syntax.upbdefs.h */; }; + EDE47C0567BD011186649D8F46C2DB8B /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6639F825B1F5D0EBA9E94470D661844D /* status.upb_minitable.h */; }; + EDE674E85357A9D920C70C22DD764B19 /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE5B95DC0F0BD3161D25F1B238C821B9 /* socket_option.upb.h */; }; + EDE739DEA549720286277D72EDD723C6 /* listeners.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = DA01CF9F3D9DE83273436010D3D70924 /* listeners.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EDF4B116EDA39BBF6B560F7F4AE71F1C /* gzguts.h in Copy third_party/zlib Private Headers */ = {isa = PBXBuildFile; fileRef = 8FEFC8876F59923299286A533C4F33CD /* gzguts.h */; }; + EDF62493E52F9CDFC5D64670DEC23090 /* FBSDKKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 60E65D09E67894B9E15E6BC1E04D0C41 /* FBSDKKeychainStore.m */; }; + EDF6FC5B030CFABD6D6878772B5A2C17 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4E606CEFB9482E44C8AE609EB58A52E6 /* frame_ping.h */; }; + EDFBD1F71045123316D73A8F752B0381 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2888BA9B9242FD9E07CA75EB9C5CAB /* format_request.h */; }; + EE07F460230E2CE4486368A3A336617C /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = A87F7A77FE5CBCF0F4B8211AB96E8B9F /* periodic_update.h */; }; + EE0B57B4C43B1C1CF6C93FD1FEDDB130 /* call_op_set.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6525389FA7B80AEA234429F128D2F1E4 /* call_op_set.h */; }; + EE104A3FAF5BC8EAEBD80FF61E6FA780 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE0FD018447CBDEFF6E6B3A71FA5FBA /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE12BB4012567C0DCE81B484B02483A1 /* posix_time.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B885CCEDCEC3A7025360BB6863870014 /* posix_time.h */; }; + EE1F6B9B4F6714D25C66AFAB417E978D /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00C6DBE4A6450FB757EE6300DF10AA42 /* collection_entry.upbdefs.h */; }; + EE1FA5F95396B6F87636D2B4AA9CF1A2 /* FBSDKSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6F1BF5232D291CC33DA43B066A511C /* FBSDKSwizzler.m */; }; + EE26F4BC83433D41323189DD7B271141 /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0590DE29CCB1AC021D853E75FD228E /* decode_huff.h */; }; + EE291E149E0C512B1B6A936380FC5BBC /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B52763F624FE1C178DB3DD4E60492306 /* number.upb_minitable.h */; }; + EE2D1226845A237F3A71C137B486705D /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 1D3A60920392196DBCD52DB016FA2A07 /* map_sorter.h */; }; + EE4746BF4DA4385700DC8FAADB072722 /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E5709C312886A58EBA75B096D9C077 /* FIRMultiFactorConstants.m */; }; + EE48E60778FBE7E3DA42FED5C555847C /* errno_saver.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7E1EDC218BB564292AC93B951E0D7878 /* errno_saver.h */; }; + EE4C61979095346B00F41DA43D37951E /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF84B9DFA0A136A6F1CEDDDDC0ACC84F /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EE4CB90B750AE9251147E97A40F07045 /* cpu_aarch64_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 92BEE49C4E137C6769AE28FEDC19A1ED /* cpu_aarch64_apple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EE4E233D2DD0DFC4F82FD6748EC3429F /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E36DBAB950694432890B645F2F5423 /* ImageBinder.swift */; }; + EE589ACB71BC2E4E58F96345FFD08686 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FE8A83ADB85709686C9870C6F677EB /* error_utils.h */; }; + EE6616B06684C1D3AB0B79245316E43B /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 742FC6884FC0E3DD26414E2E2555D97E /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + EE6B32BB692DC05BDC0F12748C023616 /* FirebaseSharedSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A916C4B617E1023880A9630F5180614 /* FirebaseSharedSwift-dummy.m */; }; + EE6F2B4CBBA0EB3C548AEE6D180675D3 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C96B874A2D86C3E3D4D5872C99A6DF7 /* proxy_protocol.upb.h */; }; + EE70C6E9C1FD9EE37E438DCC03918D2B /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D440B2E6801BCEA83BAD6A1A26A319B /* range.upb.h */; }; + EE95FCFB35640A53231762B90CD2C890 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E0AB15A985C35E160FDF938FDF69AA4 /* filter_state.upbdefs.h */; }; + EEAB3557FFC5C4314C33D25DCED913F3 /* resource.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = D1DB18A701B2F79161ADDDFFCEB1A248 /* resource.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EEB744DDF02CD9964C76798A491F7B79 /* token_bucket.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 417C87EA0DE3A70CA359F579A2E57281 /* token_bucket.upb_minitable.h */; }; + EEBA106D0F49F5B11C9A9DD0016B9EDA /* thd_id.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F15089016FCA88A885EFB7C04CD2BF2A /* thd_id.h */; }; + EEBF2E377071B1EA8B9A212071077852 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = A2300D4E52F3DB19972F4A4FF1CBD338 /* url_external_account_credentials.h */; }; + EEC04EB4FC085DF00C382B7F5F207D26 /* health_check_service_server_builder_option.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 7A88626F9F093AF61981A6F56D3B8143 /* health_check_service_server_builder_option.h */; }; + EEC8B4564AAAF00409BAEFB0E06DBAAC /* FBSDKErrorRecoveryConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EAEA0AE6B07BB9F325ED879BCF18BC /* FBSDKErrorRecoveryConfiguration.h */; settings = {ATTRIBUTES = (Private, ); }; }; + EEE348A66A9C7CD19FF02DE39BF9B428 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D98159C7631CA0402C03160FD98D0081 /* FIRComponentType.m */; }; + EEEA6189E31FB9A08AB14553F3377450 /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A3606FCA29FB33C713FCF9CDA7A61514 /* iomgr_fwd.h */; }; + EEEAFF67E92022F3048A84BCD825B052 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0208C59A70EBB18CA7DC9899AAA4A72F /* quic_config.upb_minitable.h */; }; + EEEBE36FF1CE0843B0D0A38E61A3212B /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 945F6670C8ACDF675B89A12DA99FE082 /* resource.upbdefs.h */; }; + EEEEE7497ADF8C0023F124DEF7833E56 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 082EAD88AFC803A5FAE724DBD5765836 /* map.h */; }; + EEF7E973729DF12DD3A1513F77759141 /* timestamp.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BF24D5B1948C3586E081DC415726EF /* timestamp.upb_minitable.h */; }; + EEFD93EDE23663227A221DF0F6AAA71B /* windows_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 180571B495B5E50846DA27DA0E89D33D /* windows_listener.h */; }; + EF01A741A0539A740AB062399A7C8632 /* nid.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 42CE55AE505F681AF1AC5E327B6689F8 /* nid.h */; }; + EF0EA7397F2A4B3FB14AE2A7897E0E80 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A74E0E058AD584D295B0B7D5F4537B /* timer_heap.h */; }; + EF177BAD6E16C31DC35146F002F34FAA /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 896C7022B25E39CD3C35C0B31D59DF0E /* completion_queue.h */; }; + EF21586EC3DFF6097A58EEC87376A0C1 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCF7AA560E14BFAB877C48C1EBFE58E /* ConstraintLayoutGuideDSL.swift */; }; + EF2702419744DDA2DF20FECEE6E74B5D /* thread_pool_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC9945A32AF477B4DC8664B24E11F5A0 /* thread_pool_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EF2F9E35FE750C36044F56C27207E89D /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0E5548B5101F4F7803619F4600483219 /* cel.upb_minitable.h */; }; + EF525B03CFFFBE92FEF43EB456E9BA21 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 1858829078C71EFB7377C11331713EAA /* decode_fast.h */; }; + EF5947F21AC32D6EB4A35D85664E04AE /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0030BBFFA5934BD1BE7CD46D713AB0 /* security_context.h */; }; + EF5E1773A752FE261B6495D87A47E8C3 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = 52CCE954484CDC6C0EAB2EE51842DE93 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + EF6294EF14CCE1C60BB16A5D6D386D5D /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = BA7853EDC390A57A81E63FAC3DF185DA /* FBLPromise+Delay.m */; }; + EF646F26FEA6459B95A5F20A2070D6E5 /* TZGifPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC081A0F3415A7490FC42C6AED534AF /* TZGifPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF855EBD5B656A4965FE4A2E4078368B /* GDTCORMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = A8FB2F653C46994AAA634997AD0E14BF /* GDTCORMetrics.m */; }; + EF860281C9A193368BBA68773D37EA58 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 217D1534936EBE2333CC1F6775AE73D5 /* string.upb.h */; }; + EF9E1F647ED54FBA828B6F473911183F /* any.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = A68AFE229271E2F2B69E588152129BA9 /* any.h */; }; + EFA4FD9766376BCB904366FC7A364491 /* config_source.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 87433464BBD0F30267842FAA0D64CA11 /* config_source.upb_minitable.h */; }; + EFA708FDE0C522A5FD1B8B2E998F030D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9AAE8310536E631856139637EBCA5DAE /* PrivacyInfo.xcprivacy */; }; + EFAF8B3B7BC75C6C1945DCE237EEAE5E /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6846C832D77D7484C5B1B75669907912 /* pick_first.upb.h */; }; + EFAFF945FC6DB9890A42FE998B5C9DC8 /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75697DE8A2727F6E4D81193940CEC94F /* grpc_if_nametoindex_unsupported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + EFBDF809A9D3F878E79246DA419F877E /* crc_memcpy_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E3CCC92FBBF1845C38E35411C4FB340 /* crc_memcpy_fallback.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + EFC73B5A0BB59C97572BA6C589E58846 /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E6128D992BCCB658CF2DBF3853A61483 /* FIRSignInWithGameCenterResponse.m */; }; + EFCADADBE419353D296F2640E34063F8 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = E30E509DD690EE960857E0AC18B77033 /* status_util.h */; }; + EFDCA1591457D197ACFB693AD4C29991 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B44099CD9D055E52391887E48BF8C76 /* pem.h */; }; + EFE0B0E6B14AA7386EA026AE6B2B5E74 /* checker.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 6D16E62719B115AD52A42B83245B825E /* checker.h */; }; + EFEFDA454DE861E53300F92C5B1697EF /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 55DB979A2E0026DE32DAC1B2CE468345 /* server_config_selector.h */; }; + EFFB0B13ADA58158E1EDD713E01ABB5E /* connector.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7A5155949D59D63F5F615087138900CA /* connector.h */; }; + F0053A24627BF063DBD494869B36D02C /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = D75D2E1D7FE8CD2499AD8A64317AF884 /* low_level_scheduling.h */; }; + F00E9CA3D610421DBDB7DBA7B65AB4D3 /* rsa_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = C127C4A985337FDB3919BB5E9CFB2426 /* rsa_crypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F011E434042E7D08899ABB909AAEE565 /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A3406D7AA9A01C9409274AC248F39BCD /* slice.h */; }; + F01AFA71EFCAE732F8F91D5CAA865060 /* dynamic_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 55A51924BFE814104EFC0B7426E92747 /* dynamic_annotations.h */; }; + F038D81F7ABAA15CF03246AD4BF334F7 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 125021A8DC96D47686D1CD93FBD42834 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F03F0F3180365A7748DFBDF991BB1E70 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FEB15F2CCD7FE46DBD34C092BB8CEB /* security_context.h */; }; + F04645C1D269BBBD67D76457E392A0E2 /* traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 12732F303050B0B504FF79F7D3BCD6F3 /* traits.h */; }; + F04A6363DF690CC8AAB1B63884B6575D /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = D4B2A066D210856ACB6780EC7A484F02 /* xds_http_rbac_filter.h */; }; + F054CF7C61DDEAE925DD25348A316E18 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 15411061B17DAC2EC04206BBCC1953F3 /* rbac.upbdefs.h */; }; + F056C3FF9BBF3DDEBD60E46DDA069461 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 8CA1A3839C30E03D425E87B9B350AA11 /* tmpfile.h */; }; + F063B2BFDBA92B686059E205866ED7C0 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 8DFC5F1EF85B1566AE050D0BE26B7A1F /* certificate_provider_factory.h */; }; + F069F5558A9DA5A5F3109EB57249D784 /* randen.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 171C5777CEA8840DDD1CD999E5BC2C3B /* randen.h */; }; + F06E56C818D79AE848141036AEBBFA0B /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 20B4742108D9C12DA4DFD7F41E04EC01 /* block_annotate.h */; }; + F08142332D4ED1210F54E7C4F7C8EEF7 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 427892DB8181A71853160F1EFA74B7A4 /* rbac_policy.h */; }; + F0909EEF9ACED4429399C492EDF3A6EE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E432A6DA73D45FCC408F28043A42853 /* internal.h */; }; + F097DACB8BD494CC01E61097A20CBFEB /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0386BDE6749892E1242A2620F8C64A5D /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F09886A86341CD02F8FAF0B4F6C07589 /* tcp_socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA94A3D413ABE74E1248B4FA8F6B306 /* tcp_socket_utils.h */; }; + F09C5166FA828B672BB07BE38FA0CDBA /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 231E95ED7A7D133B95FA30376DA15239 /* slice.h */; }; + F09D533639284FCD5F750CAD60653FF2 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = AC3F17882BB5E6303C3DFC803432680F /* ssl_key_logging.h */; }; + F0A2E421266FA2C5FC8863463FF2BCF3 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5497A1D0C3D2AE8A855412840F6BB742 /* orca.upb.h */; }; + F0A653C6D30E98C7709DF2780870F8C4 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 5175F40F3CEF7F906FD6AC0124E886AA /* FIRCLSDataParsing.c */; }; + F0A86A29574370193245FA705C86F16A /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DF9F3F2116C179428698543E66EBCE /* FIRCLSRecordApplication.m */; }; + F0AA21A17379571839328EF5F9C51F85 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1A74FAC2C44A62DADF73D55AFB0D0DBC /* xds_api.h */; }; + F0AEAA9D064C078265DA1960FA35ACCE /* TZLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F3AE384DCCF488BA650BDC2E0621D4 /* TZLocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F0AF654BBC7705411446F6AA8EDBFE88 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C340A73F5F0377413CB36B87E8C3D8 /* basic_seq.h */; }; + F0B20DF5C7C71C94360A4E4A93825D8A /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 92EAB37BF4AB9224FEACF42E4607E0A3 /* xds_channel_args.h */; }; + F0B44F377E5849AB82FE3F5DA46AEDFB /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D51A59131EC0067B976CDD813FE93671 /* duration.upb.h */; }; + F0BD849D5F3707BE7EDC1C747E44A3F1 /* vdso_support.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D810BEE2A2B1ADCD657A1C38C5F2F9A4 /* vdso_support.h */; }; + F0DB3E63BEC2F811F722FF88ABC94284 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD254CBC5B235C9F594934A8CF6E6D4F /* server_interceptor.h */; }; + F0DEB43CE4D0269D9A8D840B3CFE180A /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = B4B1DD0D6FE3F41A7BB8D49CE13557DA /* json.h */; }; + F0EEC2E62109D7B446281DF7C216379F /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 82047259339C60585165B2200BB7FB57 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0F2E7D8E85FD7E1BCAC5F28E2A17F2B /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A92B67678D7CC5B14C124DC2EC2E41D /* collection_entry.upb.h */; }; + F1000B6199E7BC89B2C73DFE1741978B /* LLCycleScrollView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = E09639B600AD049E7F728B0A81EA5F0A /* LLCycleScrollView.bundle */; }; + F102558BA63F967E24D26288B2247FE1 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1181B2672C0F9A807EF37D11553C82 /* iam_credentials.h */; }; + F1118F447D335547E81DE343924971D6 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE84B4075B758F3A3EF9E696CB9362E /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1224B57F60741DBD49CFDEDD960940A /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DF2C7237515AC339DF2480632E75EC /* enum.h */; }; + F12CBC7849E507DE47511BD042D67D97 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = EA48BC4900BCB773877405A99AF1FB04 /* xds_channel_stack_modifier.h */; }; + F12CC6436C6C0F4805A86149CF25A868 /* config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25EE0232291A3B7C8EED05CD35B3E2DD /* config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F13CCDE6E74600D58F34F684969C55AE /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB6BE008040FBB8075B1DB1E2C2ED43 /* server_posix.h */; }; + F143641D98AD7E81BEB9C281C7FA2C00 /* CodablePassThroughTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC593042D19E574999F0C2178771F39 /* CodablePassThroughTypes.swift */; }; + F144311D12DFD661BCF9245FC6F503B3 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4EC45578DDEB7DE701B84239F69BCF /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F148E92923B70B9ED6F136A53228CC8B /* FBSDKAccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = D4C5FEEE888F313E1EB2AF0E83CD081B /* FBSDKAccessToken.m */; }; + F151A0857140632442674F82EA485706 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8E53D6C9CB192C3AC4392BF7630B29 /* client_load_reporting_filter.h */; }; + F15339804DD02A3AADC7338F2FBA03F6 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7209137AD1E7FBC72594071765469FAA /* extension.upbdefs.h */; }; + F15CE7169BBD689A5A7500E3D5F4382B /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = CCB74DCB5D7CFCF395456118C8E1C6BE /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F15E7D1AB3FDA08E1D3CACDAE2FB5D05 /* cycleclock_config.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6FB58FCE4E2F127143D55869727AB2D6 /* cycleclock_config.h */; }; + F15EDCFA4FF4D89292FD1A7A7EF6AFD3 /* server_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5CB6BE008040FBB8075B1DB1E2C2ED43 /* server_posix.h */; }; + F160FB1604E99AD31CEA9DE2695D70F9 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9DC1F9C3D6461B2727D6BCF931945267 /* path_transformation.upbdefs.h */; }; + F17187B25E693D7D8620AC26B602F829 /* spinlock_akaros.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CF961A7ACCF0EA44A601CAC7C12C70BF /* spinlock_akaros.inc */; }; + F171A712A62B830DD93343617AEDC706 /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9381C2B1BE9DE41CCB1D1466EAF839D /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F17E1BB0059F8857AE27C017AE727A24 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E5C3EF2ABE501B553041FE488645C912 /* cookie.upb_minitable.h */; }; + F187EE4B2355D8E1F15AAE1D5926E23C /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = CD8BA847F5B73B7E780FCB47A3ED0DE7 /* certificate_provider_registry.h */; }; + F1945689E6DBC9F72A2C23C2FC79EE3A /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B9090A791BA73C8B31D57BDA8D92256C /* listener.upb_minitable.h */; }; + F19D8CF83F3BCA48B405FF0457CAABB9 /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A3EB02BE37D724B14295F97C4E1C3B0F /* resolver.upb_minitable.h */; }; + F1A31017F5A50D983B923028D492C4E8 /* alloc.c in Sources */ = {isa = PBXBuildFile; fileRef = C38DFA042439DD398867D01A13E4C720 /* alloc.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F1A72A096DE20A77D780C880876910F7 /* FIRCLSOnDemandModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7487B883D58B9571CDB9D14E78229D /* FIRCLSOnDemandModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1AFC57AFB0D7D5AE064189C66539D52 /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B89336E73194F4FA9F17C841C80909FF /* httpcli_ssl_credentials.h */; }; + F1B0F6EFB81E532AA4CD7DD0B41790A4 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9AA6E0ED9DBBE8136AC2DD64A718493B /* regex.upb_minitable.h */; }; + F1B16071DE3D8018F1197995A946863F /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1AEBA6B59CF6F91D44708A6C2EAD840 /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F1B58AE514DCDF665A529543470CA29B /* thash.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 3548459DEB91533E9830F85B9CA56C67 /* thash.h */; }; + F1B86F1A2668A8F842852BDFD9FF279E /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D6CAB970C9DC37128721F86BB1B9563 /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DCB424B20B0E79075768C7372A75A3 /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F1568899C882C4568591F86CDBB1F8A1 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DCE3981FC1C1FF32F1AC76DE53766A /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D6ABF958215FE0925BB590632770A18 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F1DF542480605A267C35384BEAF36E52 /* cord_analysis.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = D0884C94FC7925BBEFD5FC12C73F2065 /* cord_analysis.h */; }; + F1E4D44B8CBD10E925CE5C213CB753DF /* decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D98D64C9DAD8533F024DC4218FD9A5 /* decoder.h */; }; + F1E85FB1CCB572906A97F9B3A2CFA9E7 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AB766F7583BB70EDA331C62ED3483A3 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F1E9855DBDA03E619F191D7CA685A5E7 /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 32FAB22096D1C7A4B4E67189890D6E98 /* accessors.h */; }; + F1EA459DFBC64AC58D9705AA67D3E0B8 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DBCAD7C85D2A94478872C800211D61 /* ssl_utils.h */; }; + F1ECE25BDCAE63E71220F1BB8759B570 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 201725757ADE87734AA381E6BE6DB1BF /* alts_crypter.h */; }; + F1FA92406F38837D95D213D6345130F3 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F8EFA882D5F0497AB70F9976F12C9A /* transport.h */; }; + F1FAF6D0428D82B99EEDA9BD8841007C /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19CFE919F1407BAD9EE0B18001E8A8B3 /* init_dump.upb.h */; }; + F1FB46DC5914E25DB2C86C9C1CACA29F /* filter_state.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 794929CB2C2DE7793F881A0C8AEB7780 /* filter_state.upb_minitable.h */; }; + F2052C1A2532775CE46EB9531E356C47 /* asm_base.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C59E77C124E66CA666FEC4F1C8AAFE /* asm_base.h */; }; + F207AA38CC517F3CC521E584FB301646 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = DC962AEE00FB2CF7639E58A04739C255 /* ssl_session_cache.h */; }; + F20F6BE12FB72CD9AE48EC14440F731E /* seed_material.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 90E1D7086C56D3FCA05640D2FEB36466 /* seed_material.h */; }; + F212C6087006C4DFECD7767AB3128ABA /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = F98F11CD6DA6F81B59DE28F68CC0C038 /* inlined_vector.h */; }; + F21EF6F92E8CE36FD3B5C1EBF3022B46 /* transport_security_common.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = F2AD33D65865709DB9E9F2B605132C95 /* transport_security_common.upb_minitable.h */; }; + F220A17EE619186D8187BE329A6607E6 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B2E0095DFFBC1D88C70E1EA45883A0AF /* ratelimit_strategy.upb.h */; }; + F228831B9FC99606DF3E03849E60210C /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = A35C852036746382C458EBE741583941 /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F2312752968A5B802155D861FC658E13 /* build_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = D2DD4683DDA6696ACED94B8469410F30 /* build_enum.h */; }; + F237D6C430BE48E63E006918C7F669E4 /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09F346D33E1CF722141FAD88CD734490 /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F23ADEF78F95CF9A44BAB127CDDA42A2 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2887DDBDAA1872FD907CA6F28B82EEF7 /* xds_client.h */; }; + F23B7A42260C9278DD6B36C7C19F9BD5 /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5506BE2429CABFE6F84C6119E88FDFD /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F23FF8C6DA39A60192031F948CD51BEC /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F61D43926CA66D2847523469AADC2C /* transport_stream_receiver.h */; }; + F2415AE8678DE2698B7AD7D88B1A5C0F /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = B04E8860048FAC80E6A3CD769EEB880F /* AlamofireExtended.swift */; }; + F2482AF97C0EEDF24CB1CA39E3C726A3 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D131BC5F5AB69154FC0A8505E8E882AA /* atomic_utils.h */; }; + F25B497B19F003180951248C96FBEC04 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0C31798CAE115C04581C52A9A7364B /* arena.h */; }; + F25BD2589164E3BFF8CF2F75BCB71A06 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CDF3ED2FE5E4D13CFAB1AFB04967A6A /* tcp_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F25FC1A7C47EAD15865049143181FB7B /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB537CC198FEA229140FB4BA1061E38 /* sensitive.upbdefs.h */; }; + F265EF372170769D82208036A383A4CB /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */; }; + F268B6E6F59A099F80D6FDF7CEF9E02F /* ratelimit_unit.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 83B7ABF5DC9F22F339327156C9A74845 /* ratelimit_unit.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F2788A2DC78055663156650D82A144D5 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = C9854A6EA2CFA14B25D6619D3656E478 /* http_server_filter.h */; }; + F27FC2367B9E15C2BAD7D7ACDEC92F87 /* grpc_security.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6EF4FDD97B11A51B6A346E62B3CADC40 /* grpc_security.h */; }; + F288B8F501D77D88997317D8DB2D1B48 /* legacy_channel_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B58F7970DBE7D509EE765E51774C6034 /* legacy_channel_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F2923DE4008E826DA5A50945221906B8 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1EAB71909135DC786AD39D82569C92EB /* http_protocol_options.upbdefs.h */; }; + F2946066B731D81BAD1E8311CD78AE6E /* try_join.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9397AFB5B339F38E878E6171A4C330 /* try_join.h */; }; + F2A26CBB847D36A0F91E665DBF79BF8E /* FBSDKButton+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 77EEDD289BE4802A55EDA111CEC6FF2B /* FBSDKButton+Subclass.h */; settings = {ATTRIBUTES = (Private, ); }; }; + F2A7D6FE6592801AF85D38037536A540 /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D16E1BEF81AFE301868B6FF1DF414E /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2ABF17913E5BF9EECCC2B302513C503 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFF3BCE5187DD17D7F273D9B532CAD6 /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F2CE1300D2AF73F6BB752FE8AE3A5448 /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF426DE2AD16D08347EC1B42D016334D /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F2CEAF8419DDE8789C689DEA43227429 /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF58E21E7DC16C84CF50BD3E4A4D213 /* global_subchannel_pool.h */; }; + F2D75723D14B3F74C4D75DD771E65EAB /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 95570376996BB0AA664FCB7A919BC22A /* ossl_typ.h */; }; + F2E109528ABFB36192AAFE827EBE3C4B /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = B22FD52C153583C274B8A3C2D13DC7CC /* gethostname.h */; }; + F2E9046BBB871C4BCE25F73C4DBD50A0 /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 02FE8A83ADB85709686C9870C6F677EB /* error_utils.h */; }; + F2EEDB88E33E3B15044A382A26A5C2FB /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B7366190E38E5731583EA2A6827B83 /* FIRCLSReportManager.m */; }; + F2FAD975CA77210AA8E95FC2C4A714CE /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCEF90EAF2427E7673A88BA8B4A200F /* FIRVerifyClientRequest.m */; }; + F2FD7459BB317F770B54B41750D033E2 /* matcher.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC33BCC453265C8F25AED441418D737 /* matcher.upb_minitable.h */; }; + F30D8B7CE6A3E7771C169A06F9146065 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4394B23F6ECC4593E1D5C46011EE5F25 /* hpack_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F314FD8349F10B3291D6B347237B5379 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 448F32A96E625110CCEA9E5E234EBC8A /* connectivity_state.h */; }; + F3174D3A36DB16609B000C16259563FF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 93474DEBAE52FBC40F7692A4F239C1EB /* internal.h */; }; + F3220A3727B8B3E272EAD71F217453DC /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = AADC86E46CA501AE008201334DEEE113 /* city.h */; }; + F32960EB94565067DC5FD12C32281EB7 /* atoi.h in Headers */ = {isa = PBXBuildFile; fileRef = 012D38CB2A5FC9FAED3FE3292D3636D3 /* atoi.h */; }; + F32A2F70A1C6AC3632F77317DC65FE63 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A6C38AEC2231FE6EA5FBB54E9B262F56 /* security.upb_minitable.h */; }; + F32BEF733DBF46756A77A68F737C37D3 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B19DAC980CA3C6F8B5F8C0A37A915EF /* security.upbdefs.h */; }; + F3420E4CA9FC637CA59ABC4DB29B0E92 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = F3DB86F1C8A87A2078E5688E20CCF221 /* string_view.h */; }; + F344242AFBB1848CEFAB5CE45B5F89D3 /* is_boringssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2F8CD9192364C8487BFA354E0273FD2C /* is_boringssl.h */; }; + F3459508315F94D5E7B2FA89B32A64E2 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 214489387A8C4FE6211FD5491DA282FF /* encode.h */; }; + F35100D8BC68C56D4D423C599A025C9C /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = A819860B34E071FD7B8FEDAF1601EC79 /* FIRDependency.m */; }; + F355CA8A292C0FB55CF38130D39CAD72 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 54B2C819F3D8865783D2A7D0CE0E238C /* walker-inl.h */; }; + F35DD4549C5A21F5E1EF11F3A99B04EF /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CCC10C5453F1D9595853DF751BCBFCD /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F36279D8BF7F9C26A001B6D6C076D542 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B85B8443697BEAF6D83F83BB3E2452 /* stats_data.h */; }; + F36F27FC571A7B7EF7AE2728E87C0965 /* re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B0F136FDF5E179854B29C648B741098E /* re2.h */; }; + F37B6CCE389BD6487D031DF4084BE419 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 25824EFCD08834AA57E13B1F5184D143 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F37FB83F96B352E68D102E37C1CB203A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D315C5AF64192D42CE8106985F9488 /* internal.h */; }; + F383076058456598F2FF8D3E3C389101 /* lrs.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E899AED87468EAABA717FDEABC2276D0 /* lrs.upb_minitable.h */; }; + F3861E1A19BD99AF973E7B9A369E53F9 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AD9A6056D90271F56DD318B0D00DA04 /* xds_cluster_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F38C944312BD1689AA88C967803971E0 /* FirebaseAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF4411B861992AE5D6327D55FBAD3FE /* FirebaseAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F38E06CA5F36B2FE06F50C4BBC8F4544 /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8FB81AC24181869F954DCEAC237FD0 /* datadog.upbdefs.h */; }; + F38F03C1F22EF0437AE05036C4A0BFA8 /* wait_for_cq_end_op.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BBA631369950E57896D456AD4A5063D /* wait_for_cq_end_op.h */; }; + F3973028792F2269F75C8A1CDD3E49E1 /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5BC6488A46D3965C5E13ACBCD4A7A548 /* lame_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F397D465C7C7BD9A489FF9B18E5275F9 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 8BF2F406BB8BCED24034A2908CD24448 /* random_early_detection.h */; }; + F39E5DC2A8BD3DB3FEEF03867D27D34C /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF4AB32156E5F8FA9C272D5AFD59B26 /* TZImageManager.m */; }; + F3AC556001DB45C7D479054AF87FA446 /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B09A01FB20EF9EAD2ED087B30BA1FF /* curve25519_tables.h */; }; + F3BB4730929EDBC9829E15421DC437C1 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3081E20333B21F91C74B8B9CC6E84A1C /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F3C6596FFB5C594BA959F7CA219DA9A4 /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E6D4C850EAE68D3A49C30F698D422FE /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F3CF3A42987C13CDFE71BA622F5D5E0C /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 80B73572591B33E9B835CB9E89EBAFDF /* subchannel_stream_client.h */; }; + F3D59BA67238463F7AA4029380AAEC43 /* histogram_view.h in Headers */ = {isa = PBXBuildFile; fileRef = F0147FC6C6D1D435189006A306B052D1 /* histogram_view.h */; }; + F3D8A6AE217C50506A74DCA122C7A537 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = CB98109FB15681396C94BD634132256B /* grpclb_client_stats.h */; }; + F3E30633F8A1AA098D7DC498CD8B24DE /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 615972DD6334820D3B955C387A3356D4 /* FBLPromise+Timeout.m */; }; + F3F0657A69E0DF220F95149486E32D22 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = C13B181085DFBB736B50F5CE321CD77F /* subchannel_list.h */; }; + F3F19151D4782ACCD1C753583BCE3ECD /* optimization.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = D166AABC83636194478A5C972087FABC /* optimization.h */; }; + F3FA6DBBDDB3817E4B418FD1FB388DE9 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5ABD51339BF1DC50726EB326B71563BF /* http_protocol_options.upbdefs.h */; }; + F3FC8C705D9A7E38F782E97357531492 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */ = {isa = PBXBuildFile; fileRef = 6E7FD98463FF11E4489FD73C9503D6A1 /* round_trip.h */; }; + F4098CE2434A7FAE88E25F5B684E8A66 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C14BA25578E4A6913F922ED09BD06B1B /* xds_channel_args.h */; }; + F40DCBD322E77594E9B98339B92AF6D1 /* load_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2723AECC152D767AF1FC7492D962AB0C /* load_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F41AE48E3FA506BC3C5B66EC8578AB1F /* GDTCORProductData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6752F32F81C74A88BC39992F7B46F4CA /* GDTCORProductData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F41CD28089E6853014F2B90B3C210CC9 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AE71F8BF69A179A366C9AC9CF0A686C8 /* common.upb.h */; }; + F44639548F30B3CC544787B55200ABE8 /* endpoint_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC4F32230229D432B07E9AF11151355B /* endpoint_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F44AE568EBBAAB72D160474FBE6D90A5 /* FIRCLSSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 684B582A05244104B1FA1FB3D5E684FD /* FIRCLSSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F44F63C52B00A17F8E27B58C2523B853 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 885AC3A66959BCFD933D1DF4A41600B6 /* wait_for_cq_end_op.h */; }; + F450C8D1BBDE7B48AA1D84E435242BF5 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89300CAA8D4124C9BA735FC7F3287B00 /* migrate.upb_minitable.h */; }; + F453AE7CC156105D0C9808832D63E920 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C51981A47E6EE28086981521858209 /* mpscq.h */; }; + F45FF7E353A02D450DCD5ECD61DE8CBC /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = ED324C77781894768E66229AB5653C1F /* grpclb.h */; }; + F46AD1228B2E7695AE80237A2EE35B83 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D131BC5F5AB69154FC0A8505E8E882AA /* atomic_utils.h */; }; + F4716A8D292BFE01B8B23349DAF93860 /* blake2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7D2A6FA25AFC6989A144FE8BB8B40670 /* blake2.h */; }; + F472FA0D9DFBE5CAF3B998D0CC87BBEA /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = FC1F2CF1DECA8502F4A9093E03F9DAAE /* xxhash.h */; }; + F480192EE0763790AECCDE65DFA8A943 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F026ADEAF9B224DA3BF210226E67C80B /* desc_state.h */; }; + F48AC474D43AD5717BC6F1DCDA8ECA38 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF5D62F26CE970151951078473E47AB5 /* FBSDKGraphErrorRecoveryProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F48FC963662CC914253BB5ECFC8607B0 /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0E8085CDBD98BCEE03236276A7B75B /* datadog.upb.h */; }; + F49C8E7D0A19408321351D2DC6824DAB /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE35A3357F1E9BAD99DBBFFB30A0D290 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F49CF937F53F1C2B641E342160FD9F7F /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 191642D4B6183DE551CEA161CD1457CB /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A1FB1575AD0D4753CC3AC302E72746 /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C1F29F49366F585AD008162B3AC2AEB3 /* config_dump.upb_minitable.h */; }; + F4A801D1447A4D1F30E18F9DE9484528 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = DE525DE310B2F098CF48A3C6A4F4AE1B /* FIRVersion.m */; }; + F4A8C549D300509E6B1BE254B5B9FFC2 /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = C52B4800703AB8C0DDA7A051EE6BAE75 /* handshaker_registry.h */; }; + F4B54A4AA2C919C8DF731A1D63C546DC /* spx_util.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F2B27EC744F63AF966048841A3670C /* spx_util.h */; }; + F4BCA89F04DEFCC72BA7B7D93B314F23 /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = AC91445F66E778997A97F9466B5422BB /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F4D6336EBF128E936EE8787CFB248BC4 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8A9635B699CE726848A123221BCAC226 /* xds_resource_type_impl.h */; }; + F4DD78C7D0884E75F7B67D37657F8A65 /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = BE5BD7CBC9C677C1838F8FB6E95774CB /* default_event_engine.h */; }; + F4E27F8A30F195552DA018F0A314A750 /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 48E9A7F0A2A73A5FF8383925E15E5F8E /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + F4E4A4B5F131ACCDF90A9079DD6CAEE1 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */ = {isa = PBXBuildFile; fileRef = 3C30E325D7D1C222524474D3C30A820F /* thread_manager.h */; }; + F4E4BAD814F1A0EFF9FE48563DF5C8E7 /* target.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E321ACBC35744545C85848FCEF87C503 /* target.h */; }; + F4E7BAE5DB323B8D555C4ED654576E80 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4CD410E6433804F3F8764712893961F6 /* accesslog.upb_minitable.h */; }; + F4E85A192818F4EE5EAD3E6464E137D6 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F7E5549B387FF4D2F6749F2DA954CD /* ssl_credentials.h */; }; + F4EA64FDF87EE42A844124EB559F6DDB /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1D87D55D6EBEA2002DA12F598F3E82F8 /* channel_args_endpoint_config.h */; }; + F4ECE539544D203FE935049537BB7709 /* has_absl_stringify.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 518278901D33EBCACA9BD1AE461A8BDB /* has_absl_stringify.h */; }; + F4ECFD3B6EB31785F7710D74C06709D4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = CF42CFBE193CA55FC0F9C4EFA50F90CD /* PrivacyInfo.xcprivacy */; }; + F4EDC85A07AD02C57D79791ED6DF045A /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F6E6E170B5C8756B291CE2BEFCDCB3B /* cidr.upb.h */; }; + F4F578B613100F5A5F83F8849A300B05 /* crash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B9B35F6804888C013CD9722F3B3C25C /* crash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F4FB4D4E4D3B85D6C18D98BD6EBBCF93 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C280B12AD6BC81C90232BE66A251F12 /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F50CFF3A34BD55C1730E5FCFD17CD2F1 /* FBSDKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FEE001462C618BB6C6F060CB6CB3B5 /* FBSDKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F514A2A6248F189ACA8E42A66E22992E /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFECEF952611CA21B8EA6211ED967C /* bio.h */; }; + F51BD5E221A89611ACC5D85FB6BB0600 /* annotations.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = D2379A75E9BEE79C38DC035FE7D20E56 /* annotations.upb_minitable.h */; }; + F51BE49DD2E9A59D3E88DA65284273CB /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F25B44C03C54824C06C9A277208A2BE6 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F5219DC5865CE715FB19A580F656DE36 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = {isa = PBXBuildFile; fileRef = 0CFF2B3163468687D581384FFFD48556 /* endpoint.h */; }; + F523D149E798C860BE2983D9A0FD8331 /* cel.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = A606CAC641539BDCA994FDBCFC1299E0 /* cel.upb_minitable.h */; }; + F52DD975338F04CBC95D9368475B3B2C /* status.hpp in Copy third_party/upb/upb/base Private Headers */ = {isa = PBXBuildFile; fileRef = 552483454A7C0BCBB592A4ECBD4B649A /* status.hpp */; }; + F52DF84EA4F9612CDD28C4B58EBA8F5F /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2F329A3EFCE095A4C1EECDA2DACB850 /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F533F3F976AD144F559438E5B13982FF /* authority.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF14A0EF71A0E192691B9D0E517D5BE /* authority.upb_minitable.h */; }; + F535863BDF888F8726E7E4CC9A33D20B /* strtod.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FE6A7ED47D45D7204612AB32BF54871 /* strtod.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F535CE19BC44E39E7557CDDBB15964DB /* bernoulli_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = F01D9BCA2BA32FB5A96BFBE0DEB7E9B0 /* bernoulli_distribution.h */; }; + F5381F3CA4624965DB31DAA5C2789D68 /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D6A3CB32156B4288165D3EB988D1E6 /* filtered_re2.h */; }; + F53F723F44077AF49EA3A6AA68D2C44E /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7681A99833DFC29B49E76586E47B4749 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F5513BF5B53A89489EF367CB656B4EEF /* json_channel_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 49874FC55B89FD7E98FD7431723111F5 /* json_channel_args.h */; }; + F55E0149E3543C57B123412A87B092EC /* FBSDKEventDeactivationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F776F8ACA978A8B16D808AC7202EBA8 /* FBSDKEventDeactivationManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + F5634E2E76296D7DF2F8146E7CE78D56 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F537134BF82AA569A90E9B62098B08 /* TZAssetCell.m */; }; + F571B3AFE04AC84E25D8A358174CECE0 /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BA03A259DC99B118B1DC1F948EE937 /* FIRGoogleAuthCredential.m */; }; + F575822C8B7F17129429E00A9081ECA2 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25EF42CC879A8DB45244E342DC9985BB /* SessionDelegate.swift */; }; + F57B765CC6B7475076A058763BD98BB9 /* datadog.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FE57F6D36A483EAC9DD8B30B4DA8C60 /* datadog.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F57CF84CD0F654B87500D72205A4D015 /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = C273A191287CCAA0979DC026DDDCDAD7 /* single_set_ptr.h */; }; + F57F5CA17237819BD3687AE5D3D37230 /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D8819044C4B992CD227B30924B1B51 /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5A5C480109B633EEB202AE9712CA354 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0025C76190D38F69B9F1F9759E8B7D27 /* grpc_polled_fd_posix.h */; }; + F5A8E312CF9C731813FCB60F284CF7B1 /* FIRLocalCacheSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B94B3B741EAF4F03D157D00294E1CBCD /* FIRLocalCacheSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + F5A920778D31AA4B8E6ED869D9871C91 /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0990C0AAB5D5A87B9297E4CDDD4BFA74 /* iocp.h */; }; + F5A9A77593E0B6FBBD423B24137204ED /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B171F0ADED8B49E5F62E3E7E40D40A /* gethostname.h */; }; + F5C65676FAB90A3C1A5CB53DDAE1167A /* encode.h in Copy third_party/upb/upb/wire Private Headers */ = {isa = PBXBuildFile; fileRef = 8F5C57C4AD7B0FFEBBC087FF286D2655 /* encode.h */; }; + F5DB32A33203F5119AC870EF8277D8CD /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1025EFA1A3EAF2EBD76BEC609F17AFE8 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F5E9DEDDED4144E6BF66296EC379B833 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8362B0C18F37CC70A83D290439ED6CAC /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F5EF545E26A3914419BC65A323EC7643 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5DDEC8FEF41B97B5F1328ADF9815C8 /* iam_credentials.h */; }; + F5EF5992716C7512B2B2E66CBCCBCC49 /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E71044959D55BBD82C6430347E0EA2CB /* xxhash_inline.h */; }; + F60EFE358D8F58DA109C9E794F8B7A09 /* context_params.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F082A39F31A4E6A3331FA63618C6307 /* context_params.upb_minitable.h */; }; + F60F2CA7D7429B89F8A4A5A1C23E022B /* regex.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 540E4924012F3566A249813CA324C195 /* regex.upb_minitable.h */; }; + F613431FA84B35BB6DC01F470553D0FA /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = BAA111FCD298DAED66DB30BAEC77D358 /* versioning.upb.h */; }; + F615B002361331D463DD65BD2DE8E08F /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C776B75D07C25F1E680825880542B18 /* nameser.h */; }; + F6206434CF288A390E0F69530E2AC124 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C5D9E6805D6326C37D7226AF1F98B2 /* http_inputs.upb.h */; }; + F6213160A6A0E42BF5D2761AD53D5D68 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84DECB2103AA61C05E9B6CA6C1CEF824 /* http_client_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F6282889D2D6CA341872E7BA71250A60 /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CAC756A33F60AED6CC39D61D425A04 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F62BBFF6F44EDD110EB5A5AC208263F3 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0BEFA1A101DF255F933CA3E24DDA74 /* sockaddr_windows.h */; }; + F63A82730E685FB07B199B2E43B917A3 /* http_inputs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E11146F297E2CE8485B33D287BDF8748 /* http_inputs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F65454902394EA3EF4164A08B037DE95 /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 530A58E9328CDD6ECEF8A944F3AF1EB0 /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F65FE4F3ABAC5BB8EB1B88B599F564F6 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA3B2A1CF1B7D81BBD1DF3B0BEC2657D /* aws_request_signer.h */; }; + F66CC47AD425C8D57BD149AFD09C2AFE /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42784E889CCC1972319510D487A4552C /* HTTPMethod.swift */; }; + F6755B628039FB5F27D5E6F60B90D00C /* grpc_crl_provider.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 78FC1307812E40B2E8BCF8A3C5593FFF /* grpc_crl_provider.h */; }; + F67D0D12A0BE0553095993547459F6C8 /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = D61DB5FB893697FA8D491372A5428B46 /* lb_policy_registry.h */; }; + F684FB7052557CF89F0568D88A9F8C34 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A13EBAC3D482F85719757063B2DEE3 /* base.upbdefs.h */; }; + F6854938559205A6890F5A07AD892057 /* cel.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A704CCC0E1AD7701D743E4DB6E49930B /* cel.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F692F4F2DB9B90D0744E3BB9022E6302 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0AED2477BDFD9949AF27C85DA0B05A /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6963D487B67ACBCB3A1845D8AEED4A7 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 93272251B488DFC4CF3B3EDACAC93C87 /* dns_resolver_plugin.h */; }; + F697DD4E8AB0E03243F016EA6C065C96 /* filter.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 179A2C6C09B0E39EA94898C3940DFBA0 /* filter.upb_minitable.h */; }; + F6A1F670DF1DCCA4F1F61CEDE7F98318 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B4BA63EED2066F4ADEB613BAD04F451 /* cluster.upb_minitable.h */; }; + F6A22CD4F255C0D6A85E60BA4CEE14D4 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 975216F287D16E422FDCD00B07B59633 /* ads.upb.h */; }; + F6A90C14E4023DAC1973E09AA0174CDF /* secure_server_credentials.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 5B1F08C8DC8B94D03D824CF4D027F5B4 /* secure_server_credentials.h */; }; + F6B25EC76C31EF9DC684098D08C95A10 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70839A9CB8CB84E4CA6EFAD34B0EA85B /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + F6B96E4D60D759B98AC95F7834EB6EB7 /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C5E2DE50349A576F6E473706D28EAF /* win_socket.h */; }; + F6CDC60C37BA951DFAF4159589BA8AE4 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C71F2354B188E3F2F992FE83C3EBF280 /* evaluate_args.h */; }; + F6DCDE9C9B59EE4122BB116D20F340E5 /* FIRPersistentCacheIndexManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 782A3461C9C2AB4367BA6D02A8F2407D /* FIRPersistentCacheIndexManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6DD210EBDB750167EB714027E0D9DBC /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C6424967034F9432413FDA9BFC632E92 /* FIRGetAccountInfoRequest.m */; }; + F6E311277720BAEF9F08D6765D464FED /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 135002FD6EF4CA25D3C47EF7CA14755E /* frame_settings.h */; }; + F6E94E8EE1CE35F49B9091BE8748587B /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B30C60907730C125B3CAF96828B1345 /* Result+Alamofire.swift */; }; + F6EF6799D745895DD40204E605C5BD0D /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 137933DC1E48EB7C4C7255439EA795D0 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F703479402B08F475B931ACE908A41CE /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE44E256CA75E326F046678158529C3 /* pod_array.h */; }; + F7092FE98EED86BDABC58392150E1A1F /* GDTCORProductData.m in Sources */ = {isa = PBXBuildFile; fileRef = 050CD972311952918418441366D615E1 /* GDTCORProductData.m */; }; + F70CA14536C194A077C51099EDB6F87F /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = B084D75CC01E46D4E5F34CDA777C20D5 /* python_util.h */; }; + F7138B0AC83D58377DE14A903D656453 /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 487DFAD84AC26540007CE2AFCE8926D5 /* xds_client_stats.h */; }; + F72083DEA882245128B98E3DC746EEE3 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 44EB743ABBA8EFBEF0B6D11E1C176CA4 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F725A4A8E2DD0AC2F8650330AD9749DC /* cel.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 526BEF78120CB1D8826A6C65E510FDCC /* cel.upb.h */; }; + F732A0A01D1327398756B9BCA7EC2F99 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7D18194489388681DF933D43B27019 /* plugin_credentials.h */; }; + F7355082BCDE285ADAAD59FE8D2669F6 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6261A2A7FD7344535AF743BD099A7E /* ev_epoll1_linux.h */; }; + F735EEBB6DD467FC1CC1E54290D65BE0 /* fors.h in Copy crypto/spx Private Headers */ = {isa = PBXBuildFile; fileRef = 573932E3B3862583E51D2EC2A332F43A /* fors.h */; }; + F7366252BEEBCCB2559453695B688D5E /* retry_throttle.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C99AF24C539B90017E5B067665D11B87 /* retry_throttle.h */; }; + F73C9B272EF85D5F2C0EF3B307C65946 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9AB5FE1C2509E3EDEA78CD2398B4F45D /* channelz_registry.h */; }; + F7436B4A89233B7A05C851308807D8C6 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4807B0A0E23BB4EE2C1F181A2A95DECD /* substitution_format_string.upb.h */; }; + F747B2ABA62F02ADE127B3BA877A97E6 /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8056129BB42BB8A301BBFC9868F500FF /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F755ABCFF6E30811EBB391F6D7E0FF42 /* generated_code_support.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E6510E26F3D01B573896809E215D5F /* generated_code_support.h */; }; + F75658BB2B67C7A55F4618E01FC42765 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA3A2E2708D59389925C37F2FEE35FC /* pollset_set_windows.h */; }; + F757B268452FA06C6B62F3E22A81FC98 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B93A4DB1A137AE64334AD7B02ACDCD /* ssl_utils.h */; }; + F7606100756C084F4F981D21D3717D4B /* resolver_registry.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 1029805654EDC455D1FBA85737C1FCBB /* resolver_registry.h */; }; + F761EF7962269EC11C4CD340E3F49133 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4C0F3738E1A0BF4319C508736EA0C7 /* route_components.upb.h */; }; + F763066ECB7CF9CD22A9A67705E5CAB8 /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E14CF4CAE503D64F537E71F22398969 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F76DCCE8D448CAAAECD2FD1E28BB28B2 /* p256_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 91BB23722F26A469F36C0D2A852FDC9B /* p256_64.h */; }; + F77280E74EB91678AA294E66DD6070E2 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = A6638488C3F9E8FC1DA1C1C89C575332 /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F78237FB3B9F529A46EA59967F512459 /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 726850753D020773A68092D418DB5327 /* status_code_input.upb_minitable.h */; }; + F7823CC03337A33EC61D8B9F7C9B7F55 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = DF1ED9473D9888CB1098A34B0B7E6BDA /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F783AB8A688C31FE103AC6541C4B83CC /* aggregate_field.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DF1EC7E99456D6E8AB07BD3680D6FB5 /* aggregate_field.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + F789CD728ABB71220D7E6439061B74D3 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = C8263E7A069243881A53EFB1AEF8593C /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F78BFE522D42CAA22CABD64F23CB0CC4 /* file_def.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C5CC640F4DAE6313D01436FE142F980 /* file_def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F78DD6797C774F98D9CFD756B8DFA842 /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C2B7D642975DC60F7441AE8927A8889 /* base.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F78E4B661ADD32234FD5AB1699265218 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 14004F2581C899A434D2D47921BCAE9C /* promise_factory.h */; }; + F78F0AE9180EF6E1B5475EEB81A398E0 /* kdf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5ACF116C491094DD3C21DA1B84A404 /* kdf.h */; }; + F78FE4F2D45ADCC45C5EC45C28B441B2 /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 87D7F632338A598BFDFEFF5BF6344E83 /* interceptor_common.h */; }; + F7A1FA88BA517D5FAD559AD1AFAF4BFF /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 905DCAFFE0B75C4C4EB9D4983A0D798D /* rbac.upb_minitable.h */; }; + F7A308041DC38B8151BA50FA17D43D3C /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4E9470AF73E5F7D6C2FAC601C27776D2 /* handle_containers.h */; }; + F7A45086651AB410D663FA1BF0B92DCE /* ecdh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 967F346CB6DEE2795C670C5ED6C2362E /* ecdh.h */; }; + F7B47530DCBCE6E7C1C5053BE279DA21 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 530698D5E17F7527617C8036FB48FE28 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7B5ED5076188E1C4BAEE64835062074 /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7EB03A6E04E270160644D04592B275AA /* stats.upb_minitable.h */; }; + F7BBA03405ADD363FDB7118442ED3A75 /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 69324BF219831823EA8409087CA7B407 /* mutex_stats.upbdefs.h */; }; + F7C0960CEEB8F0C18F4503B405EAC08F /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC11F332316F4FF2E0EA6873E33655D1 /* ConstraintMultiplierTarget.swift */; }; + F7C8739161EC51CC94AD5AB951F3E43A /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD9664D80F0FCD8485FB5AFAB29BC22 /* idle_filter_state.h */; }; + F7D4DC17C5A8C9573ADC3BCCAB4661AC /* message_reserved_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EB3D4A2D4A62029F052C17AC2445FD /* message_reserved_range.h */; }; + F7E3C2F40DE3004340A11765D281CE8C /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EC2DFF1B50C5B3AD6B3ADDCC78AF85F /* prefilter.h */; }; + F7F7A8A4DCF4EAE86CAC7ABBC3E14744 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 624427A4D9203A45AE85C79CA188F9F4 /* fault_injection_filter.h */; }; + F7FA9D08E23DCE3E47ED459C27D3BD85 /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = F623D9DBFFA03EE85488B8598822B2AA /* container.h */; }; + F8000715D0F03835955F5EF7012E04C3 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0770AB5A24D73285D395CB3757D183 /* fake_credentials.h */; }; + F80B943ED6D50001C1648B1F2F753DA9 /* aes.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3391DFC9A9887592E1A03C67C5052991 /* aes.h */; }; + F80E5323EA4AB3F58BA2CF59FEA4606C /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01BB092B1776707616B61B1F34D67517 /* resource.upb.h */; }; + F8234A1DB2285719AE403177B859E5B5 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */ = {isa = PBXBuildFile; fileRef = 2552FD3FA3B260A34E3D219CD2C11A5E /* extension_registry.h */; }; + F82477CF159E8A2A6C546C12F8CC0445 /* config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1525996841248040C425788CD292A814 /* config.h */; }; + F825C82F3D7CF8684F95BE8DE4CA35E1 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = 5E6AB51A716CB8DF20E1E4F197C0872E /* def.hpp */; }; + F82816FD20AD1E4039D78DEA1C689833 /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01E96EE88D41B9D2493EA6E50053E082 /* backoff.upb_minitable.h */; }; + F82CDA211FDBEC463B18C6995C6F2079 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF4AF45B5DEFBAC2E5F583516C34B3F /* xds_endpoint.h */; }; + F8346A191B3A92EC2BE04BD61C009D96 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = 1B5B0726260B2425D3A67F5D5D43235B /* google_default_credentials.h */; }; + F84345B6ABBE3F759ADC67E7D779EB05 /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA3338F7D53A25F261A8E80DBEAA469 /* asn1_mac.h */; }; + F855AC34555AB477031DAE7086A396F1 /* endpoint_components.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = BADC40E440FEE520F0910768BA7EAD83 /* endpoint_components.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F855B865BB6CBC2E7A027B29805B442E /* FBSDKSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1A4A22B4DABA54A1C1AD8F04548334 /* FBSDKSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F855E39CCEB3EA48FD5F012DE762FE7E /* FBSDKGraphRequestDataAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = FAA9D3CE111DFE78B4E36A5B5E37FA4C /* FBSDKGraphRequestDataAttachment.m */; }; + F85B9420EF0FB8A04C062AE3AE692062 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 12732F303050B0B504FF79F7D3BCD6F3 /* traits.h */; }; + F85EE54AA63B4DB217B90DE75810148F /* map.h in Copy third_party/upb/upb/message/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0800843B7A8785A7F9098C9B4A959661 /* map.h */; }; + F865E2BC9514491D76EAB430DFAA58EB /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C35CD22A9AB732639F261DB5E90440B1 /* resource.upbdefs.h */; }; + F86667A58B59837A9FB05A6213E6C986 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F6D7D1304DFDF842007495662DBD4301 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F86BB358AC3A5E11339A9FC452667C85 /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A8F3586335DBC3B30C8C754DF818C35 /* handshaker.h */; }; + F86DAC5CF5D2526093EDA0FB6E37B4B6 /* opencensus.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E4B8B8564778A3DCCABF22F0CEFCCB4 /* opencensus.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F86FF84872E1EC4A3585F5FDDF181471 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70387B7313462F8A4D8A94DADA8205B5 /* json_writer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8751F5597FB330A9429AD446E0AE631 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6585B17091334FEDA1A71C65012FDC1D /* udp_listener_config.upbdefs.h */; }; + F87B32F9581F37FE3B5543E04CFA5D89 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 185E5CD7D0B6FFB91ED1D3C48AA9B7E5 /* udp_socket_config.upb.h */; }; + F883AECCEBFFF56678119778643776CD /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDB666B07433487254E38AF539A7D33 /* nonsecure_base.h */; }; + F885FE40B45D61BBA06996C5A01EEB75 /* compression_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB07A9355639E56C5283F2B1599F06E /* compression_filter.h */; }; + F8862933CE6699EDB40882ACA90EA4F5 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BFAAAE1D8DF443CCF7EFC43FA6C67EFD /* versioning.upb.h */; }; + F888D82EC6DF1CD173AE7AB43C08D557 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = C33F442E931DF7A22FA14BE4F5DE9826 /* grpc_tls_certificate_provider.h */; }; + F89DC75BA5310578C08BABB755C4FA8F /* opentelemetry.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 90D792311F4BE4082F77734B82C4BF9D /* opentelemetry.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8A31CCA12756E9D12C701AF323E7690 /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5257CFE0981FB5FCC38AA79E1E44005 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + F8AB6344CDD6580FC65E1EDA408E32D6 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABBE4161DD82BFD54F2F22F825A564D /* metadata.upbdefs.h */; }; + F8B5DB6EE4D2548F9CF6A7B6B5A0A426 /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3AD9DF81E14F838D3B91441C8340FFD3 /* poller.h */; }; + F8BC5E3C7D976F113A48FCB4E8AC50C1 /* FBSDKGraphRequestConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A4EBB1B3DF0A86FA6046CA760D7BA8 /* FBSDKGraphRequestConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8BCF41AE0EBBA8AD17DCFD948CBB71C /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 9E51FBA5D15F12BA812E959C354A27A8 /* legacy_inproc_transport.h */; }; + F8C7D6558AA111DFC2F9DEF11B3E9018 /* channel_creds_registry_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C70496B35248C50F4B19995E345F84B /* channel_creds_registry_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8CB7D4332FE6F5E4483B99A474BC5DB /* raw_logging.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7D2DE4804AA353A3EEA0DF73C598AC57 /* raw_logging.h */; }; + F8D8EF2E8ED257AE0C5FE9BD4985751E /* merkle.c in Sources */ = {isa = PBXBuildFile; fileRef = BF9C24CB9E870ECFCA3107CB49DFEB8B /* merkle.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F8E2192C9F0B6D506A3D3B15758DAAB5 /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = B03A4227E1A0DB6BFD7CB042796D6A57 /* polling_resolver.h */; }; + F8E47039D36420B16B232F0D04475629 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = EA03E39CB8D9928CD09944DE529197E3 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8F53B56057DFC0B8FF5FF1C495B71A0 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 81BB1E6D3AAA38DB3A7794C70D6357E0 /* timer_heap.h */; }; + F8F54CA19D3979E2FDF66E5B3DFD10B8 /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1DB1ABFD4533C640AC2AF63A3ED7906 /* channel_connectivity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F8F882BEB0D078805474039C154E48AE /* endian.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 879BF7FB57EE9B72BD1E23ECF9182319 /* endian.h */; }; + F8FA037BD8EC4AF5E6E6CF4B3AA442E4 /* FBSDKMetadataIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E2320B016119890559BA1FA970E793 /* FBSDKMetadataIndexer.h */; settings = {ATTRIBUTES = (Private, ); }; }; + F8FC9C7E1B29CEA21265E433ED5534B5 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1384468AB0D4FED3CA5DDC6E65BB288F /* connected_channel.h */; }; + F908D302EC4B9BB0B8AA22D1926ED356 /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF9AF91742D7D3BBBF1C0574CE906D82 /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F91561BD9F1B32AFE436D9105222C064 /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = D844F6707FB535716A062A958AD5E592 /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + F919AC133EA21E4B094D53EEFC040382 /* histogram_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BAD3BC69CCE28705702660097B7FF9E /* histogram_view.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F91D60FE8F1AB0656C99C827DE31E13D /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7751D2F359D542F4C5F31C687F7344AA /* tcp_server_utils_posix.h */; }; + F92D28AAD66ED6F1C8796655E26004C2 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 21B99FD1122A6F331E38DD9D015F9DAD /* clusters.upb_minitable.h */; }; + F92F18E67F41FEE4D2D9FCA4FE1C4E5F /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F110E94F0DC15996BBCF72F120CAA2A1 /* wakeup_fd_posix.h */; }; + F930468EC22FAD3FA0C5CCE568E12C7E /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 160BA88C2074D334E4D4CE2882CB2258 /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F932AC11E0574724E29981CDC26D40F4 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3A62298645E47D4C798F48490A36495 /* call_log_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F9378DB259A0481809B0E0E68AD2B080 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFADDA3A669774EF989DAC7B2FED23C /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F9457C84B8FF47C80F6FF19A3E8E781A /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E35E706CF21A0C00F15A00A5C7C66849 /* client_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F9524B394C54D5EDF4894A4862E753F8 /* GoogleDataTransport-GoogleDataTransport_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = F73AA961F4AEFF2B46B00AE435DF6BE3 /* GoogleDataTransport-GoogleDataTransport_Privacy */; }; + F9534BFD461DEBD25D421B6FFFE25FAE /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 20030FDC2427B4CCA5A5F79CBF972A24 /* simple_slice_based_metadata.h */; }; + F953AA9104BFE0C2DAD639EA60104A75 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C951F0880846B96A088CA60B509BEE2 /* ConstraintView+Extensions.swift */; }; + F97840AF9065A123E8B1DABA7D95BB9D /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4338B4E11C3FF4FAF9B1410938684C75 /* Runtime.swift */; }; + F97C073D1A6CAC7439516FAAB67E209C /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 42A7BD509DB669554785042138614EF6 /* trace_config.upb.h */; }; + F980642FD1DC9BC04CA2A0D131B21F2E /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB384F9F65B3D960CF67229CFB87D8BB /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + F9927DB68E8D47557F6DE17BDCE7872B /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 937127D542666105150974A7355D472B /* ads.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F9A3BC3290AAC28A124A0174E2A1C1AF /* DocumentID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77BC4E7D06857998BD6B0E3C340DB3DD /* DocumentID.swift */; }; + F9AC3F31BF98AB2EC580677CEB4C5136 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6F46B1FAB0DF83142F1AF3FA6D1CE9E /* grpc_service.upbdefs.h */; }; + F9B22D28557BDA316522E0D6DC5781DD /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70255F4985C0731F537540373352733B /* discovery.upb_minitable.h */; }; + F9B431F16ABE4D0FFF68738727F609C0 /* posix_engine_closure.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F00E229C8D966E7E8D72E079B505B8A /* posix_engine_closure.h */; }; + F9BC42D0D218E040FE4CC53708C0F32A /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 43AE5CE95145FD657DDA9D7565829A79 /* handshaker.upb.h */; }; + F9C295078AC2CEDDE4D767E5836DF1BE /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = A2210E50E5950705A3EDFB8101D79A29 /* backend_metric_data.h */; }; + F9C886B3129560191FA0C629E9EB7595 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5F94B3D29DD58BB6F5F3094A2B19EC2 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + F9CB54835197E29E202826F1407EEF48 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0D88ECD4A3E237588147176C9E0D5A5 /* bootstrap.upbdefs.h */; }; + F9D30527E392ACD8A48CB863A67AEB07 /* QueryPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21E3AC0F0811A594B317809B27587C22 /* QueryPredicate.swift */; }; + F9D8D46D3C42BB9210553FC1EAE1B2D4 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2CBC548C76E7632065C5CFAEF3C9F8C1 /* udp_listener_config.upbdefs.h */; }; + F9E1504C9E8EC368BB7D4157162CF743 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0B4A31B54E889A01506F338FB81CC418 /* status.h */; }; + F9E4A66F61961707CC9675AA58EB2001 /* FBSDKURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 488BC6D217889A41FE8BAFCC866C6D13 /* FBSDKURLSessionTask.m */; }; + F9F34241A679D0B5BC6750DAFFA2CC9A /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = A53ABA6A6DFE65305A2D5CDAE003A6A5 /* useful.h */; }; + F9FD31BFEFA6E62AC4F0F8F3849A359C /* call_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4D5BEE1ABCFBAAF35D3DC9C385E37A46 /* call_trace.h */; }; + FA04D0EC490C9CDA43FC9B260DDA4EE4 /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0C52C6A72FEBC2234400F08A210758FD /* xds_transport.h */; }; + FA077D9FA3323EB0B21C73E55E1EBEF4 /* tchar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4EDA9B7D9F16AFBD1CF298836055A27A /* tchar.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FA130DCB4509C5F07F16E028BFBBA184 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = F498A6D36A4F329C447A4849FDADB0AC /* table.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FA1373A404A61EDB6F746CD2D6184F4C /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = CDA6FF5BF576563347A792AA308F1C42 /* annotations.upbdefs.h */; }; + FA22E87A91EFF3520DAE3545A1EE6618 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BA6760B9FD0C5C692DD84392EDD11508 /* xds_route_config.h */; }; + FA2326A98F17DB6780BD577048D4048E /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E32844A89AA23B4FFD608C8EB51CC1D /* strtod.h */; }; + FA26AE37733E3C7CA92844E92072C6A0 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB05DA9C49C18DE3E8BAD930DFCF7174 /* time_precise.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FA279E8DB03D4A666CAB04EF9E942500 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 02050F8A5B1FECB8C7425B690B1D40AF /* trace_config.upb_minitable.h */; }; + FA29130B89932CFAF9882FF096E6F765 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = D24ACDE667F9748162F7CC76703EE54D /* mutex.h */; }; + FA308C964B19BB035EA0B808B55A4A6B /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = F06C10FFDD32BF8CF414EE12D7CA66A6 /* intercepted_channel.h */; }; + FA41C6124C30503D2CDE2F4F64E5F588 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E0544D397B08F0AF899E03DB71395166 /* cpp_impl_of.h */; }; + FA6CE8B186E53D140A314EB19143FBEF /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5383432FC28EB2BE9915C3B5A1C093B3 /* cluster.upbdefs.h */; }; + FA756AF150F537D8381EAE57424F49D2 /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CD2CDA31DA917C318FAD3AFCFAD4BBA /* http_connection_manager.upb_minitable.h */; }; + FA759FB6D1B7A06CDE092E2F231C3F65 /* FBSDKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C8F0598D0475A94D728371FC615AAE /* FBSDKInternalUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FA80C84BC0FFDBE0BA7DB50B518FD8BE /* FBSDKGraphRequestBody.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DC9F1C1211C28817FB0A1160258D16 /* FBSDKGraphRequestBody.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FA85B9FD40EAB7E9ECBACF95EB1B0CEF /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9536430BB48AE38B37A1158459A2D7EF /* ratelimit_unit.upb_minitable.h */; }; + FA96C05B6E6A841D54388CF2CE56AA61 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8F047EC3B8419CF9FAD9744AB1A2F6 /* api_listener.upbdefs.h */; }; + FA97050FDA16226DDE2CB35E44413897 /* stdout_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = ED33A13EF81AD523E5C62506EB51EEE9 /* stdout_logger.h */; }; + FAB03959C2357E325B19E08BC4775DAB /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45AA9F56498859B9E2D88FB705B92F54 /* ConstraintMaker.swift */; }; + FAB09DF7ED642E3350029B019762DCE8 /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6ACDCF025B07B2BD313DCF5BCA7107A3 /* plugin_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FABD95B20703419DEC09CBACC802B296 /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E1C687688E4179E43A8146A8A34F28D /* sleep.h */; }; + FABEBEA10B6E86F40DC809DDB1F8378E /* rbac.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 09404067048E95D78F1CF6F0DB77810B /* rbac.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FACEC393741ECF2AB772D685852A006E /* backoff.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = E3FDBECC2C1F426EF5A4DA43290D59AA /* backoff.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FAD25AA7913E3F9DAEDF3831A4CB3BCF /* http_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A580098DD72597896AAC610B4F953549 /* http_service.upb.h */; }; + FAD6AA712F36955110AFA7FA3A8957F5 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FF7C5A8949EAB89F02EBEF5A7AD2E9A /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FAE9A4E77EEA748BE6DDAF6590463E91 /* call_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 3B694B555CDFFA0B09218276FFBAA7A5 /* call_factory.h */; }; + FAF631D2673488646FBA8EF38E02ABF4 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64AD296D9545E32493227447CE012FA7 /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + FAFE467ABD5955229D5ADF0246BADDB4 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A71243831BC5502A74FE27F0568E52EA /* ratelimit_unit.upbdefs.h */; }; + FB08475833FE5D4FF548D975FE4467BD /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B6BE6CA658589AF89F36C72C51141C3 /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FB105B2DD11009D9A4FAB4BA2E0DD7D9 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 896E6DF9A3C1CD888BA880F21493B5DA /* http_status.upbdefs.h */; }; + FB1444B4476C80C7930CD61EFB77B8C8 /* cpu.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F4E396CCF9035EFABC98088357DA9B0F /* cpu.h */; }; + FB152686919EDD331FF98FC8B326C21F /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A4F4ED97C9F67C241DC20F5A0C6DDB /* empty.upb.h */; }; + FB194C47BA70B5DF25F135961429ADD2 /* strdup2.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F450728216B10BD7F908C6F56EE37D0 /* strdup2.h */; }; + FB1AC3A49FF2A857D2E8FAC9FA682F42 /* internal.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = 66D7B6F1C7EE001E330ECCACFA58715D /* internal.h */; }; + FB2C8AB994F5649A74EB197C9E93915B /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 513C512CD471536FD5B59EF7FBC7022D /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FB31F29D7BC5E28CC3D108A59B521A4C /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 14312E51E61FEB43A9F01997D694828B /* quic_config.upbdefs.h */; }; + FB328CE231ADD8F495B94F6B4B9146C3 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 84128774A76C8C2C4C70FA17E1A8EE0B /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FB33797DD7C257314077A9EB47AB8724 /* base64.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C289C8B3A09F5D68016A562BB56D2BBC /* base64.h */; }; + FB365CA715C50950323E4E5984A6ED61 /* swap.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ED0217C973958FCF6BB8A425EB881E /* swap.h */; }; + FB37DA765FDB42D1A81DB42A6A006234 /* program_name.h in Headers */ = {isa = PBXBuildFile; fileRef = 09BD709C9D89BADE736CD13E38E9B202 /* program_name.h */; }; + FB6626900CFFE892DB17944276E17E61 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 303CE32F97720D58075441B064BBD81E /* service_config.h */; }; + FB70D35A72AF3BC5A62F25D9BB0A13DA /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A2FFCCDE41FFCA9FD0D8059A7AD717 /* regex.upb.h */; }; + FB72B14ABECC1C1C4E6268758BEE303D /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 7C35296906AF23F6A79BF687595335EC /* migrate.upb_minitable.h */; }; + FB76ADDA13D2EAEB66875D0A033E298D /* secret.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B99FCDE13B9F55305ACF7365AD04D42 /* secret.upb_minitable.h */; }; + FB7783BD114A775F08033921E3E5E252 /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A5BC19690D13544FB22C7890DB349A0 /* FIRGameCenterAuthCredential.m */; }; + FB7F58BC79A3EA38E1282C643800091B /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CC3B3DEFEDE3CA46FAC99CC3D008836 /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FB8163B3F341F080AD5820EAA9ECA775 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A44ECF8F3488CFBDEE21BD37288A61 /* method_handler.h */; }; + FB870D69B993BF8BDB015D4046919BBC /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7C9818B546D9CCED3A701D943397B57 /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FB8CAD680E58CAF82EBCFD7F934F6CE7 /* waiter_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D2E8ECF7FFEE574225C040DCE0A5674 /* waiter_base.h */; }; + FB92A6648D639241B7CC228331BD2C07 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09DC7FD0B3181D76D3FBF8B3F33AFC21 /* stateful_session.upb_minitable.h */; }; + FB95090875C44FBBB39B3F9E727456D3 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C6DC8FA47C7660CFA9A78B7BEBE9A1 /* idle_filter_state.h */; }; + FB9B18C24EA40E31C067DD8CB5D33165 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 50E8BC343D6E247A2B945CDEF31F418C /* duration.upb_minitable.h */; }; + FB9DE99F04D8CBA72F6FAD2213FD9AA1 /* auth_context.h in Copy impl/codegen/security Public Headers */ = {isa = PBXBuildFile; fileRef = F1129083D76882906087CE9241249D20 /* auth_context.h */; }; + FBA2C9C7C61C978C45ABEBD1A4BEC84B /* altscontext.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 580C129ADAC94F281C01BE2931C2F6DD /* altscontext.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FBA8191DE73813E947C125D59D0E8715 /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FC26B64DF83E80F4693A21089831FDC /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FBACC455918148B6932FA6A36371BFB2 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 59DCDC71C05CC12DFE2840ADF8B4976F /* oneof_def.h */; }; + FBAF8956B45B1863CCA47714BB6635C1 /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 952B64ECCBB03860B15675CFEA3A4CC4 /* ref_counted_ptr.h */; }; + FBC20063FB41F060F3DD733042A16965 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8010DE4D6DF504BD3D439A1BCA8B75EB /* PrivacyInfo.xcprivacy */; }; + FBD8E5397EF87ECF583484DC696F5CB2 /* FIRGetRecaptchaConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 129B70BA0C67AD68E9E6578D0D832E46 /* FIRGetRecaptchaConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBDF3BB4F3C6DE2A603A3347F552BBE0 /* config_dump_shared.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CC50802D31B2B59376AC168311293E4 /* config_dump_shared.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FBDF940A49A2CF1DC8205A4D1F27AFF5 /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2B0A1C828BCECE9549444C781F3536F /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FBE0131DA8F0D2CD6591E1731B002275 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD09AE34DEA633396CAF709518F0899 /* slice.h */; }; + FBE9085A1A8C9573A90DCDC06CC397C2 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 11819201010D1147632474698D5BBD12 /* health_check.upbdefs.h */; }; + FBEDCB795B6E6F87F6293DBF1C27F366 /* tcp_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = F41BCC593934B22A87A2066A81A77AF0 /* tcp_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FBF135279C3080C183B57E53F671FE70 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 194A0ACA11B689587025CB43E6793A9E /* listener_components.upb.h */; }; + FBF25CD196CC093E777F7CEBFA2DAF9B /* resolver_factory.h in Copy src/core/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = BFE134FD42A23BE052666E4E481C6969 /* resolver_factory.h */; }; + FBFBEA6A7F45CA99699E1F6291EDE452 /* LLSnakePageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBDF577CAF9B7DCBD8C1A33ECC20207F /* LLSnakePageControl.swift */; }; + FBFE5E5955A39698879A60E04866EC20 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B259355D240494FF7C1A54F98ACF95D7 /* config_source.upbdefs.h */; }; + FC070304A8F7938AE509E8F952482508 /* crc.h in Copy crc/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5444954D98BECFA8C37024AE6E44CDF9 /* crc.h */; }; + FC10250669F1B42462F6A71EC57E2A0A /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = CCCC7D89416B229F0F4EE20E0EF45A43 /* load_balancer_api.h */; }; + FC1864EC45BE633964B9D4A7E7F592DF /* server_callback_handlers.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 300A7826C574AE3B030BDC8CCBEE6AAB /* server_callback_handlers.h */; }; + FC1E5B4114FDEF1FABE017DC02CCB310 /* GDTCORMetricsMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 232C5E1CF71E50596D42DD1063B283D9 /* GDTCORMetricsMetadata.m */; }; + FC3056D51D9737359E3FED63A4300460 /* FBSDKEventInferencer.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC505069E476689159206626A029776A /* FBSDKEventInferencer.mm */; }; + FC35ED1BD7CC355365C3A34BB980658A /* dtls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0D22FDB0C0023582240F12DDA0593E4B /* dtls1.h */; }; + FC3878181AE10C40ADF5D4B49C842BBE /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF3B7E630931C51941ED486D63A8F92 /* transport_security_common.upb.h */; }; + FC3B84FADA1CD95C5B1ABEE9C9DE2C1D /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1D12A9676C033EC26A8E430BEFD2BF /* http_uri.upb.h */; }; FC44FD753ECE619F3F635F28B1221DEF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */; }; - FC4568452A01ACA7090C8B78CF6FFF5A /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84004C228538D3D91BBF074EAB55485B /* Storage.swift */; }; - FC4EA5E05C48155A4B3E1FB5DB3C5C1E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C36A2EB5A02478D60CC424D10E45F5 /* internal.h */; }; - FC5A7F972544CE943F866D7F1299B669 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 002C5F928CDDA95238B64EBD8E33FF9E /* FIRCreateAuthURIResponse.m */; }; - FC5F3B2283B23987FE84731DD796F3A8 /* cookie.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 43B3FDD2870268D0E4C22D2782B75790 /* cookie.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC5F5A2288B7C3C57B3B6108BCACB6CD /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D138605ED78A5D37B233341E030A1E0 /* uniform_real_distribution.h */; }; - FC6577A640711A4B4FB4911D9DED5978 /* tzfile.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 44BDFBD2B8DA089A244FEABE101B601B /* tzfile.h */; }; - FC68D72077B700AAA3875302CF71728A /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E016B11F0B041E81596B7AFACF5402 /* insecure_security_connector.h */; }; - FC704CCA3428A01F1C74C32A29B74B84 /* windows_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 201F56EDF90D11A4B2F59B68B686A5D4 /* windows_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC898F0A755CDE20064D662D664DDB21 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 26445F19C29D86B8E3042E0C087C0C6C /* extension_range.h */; }; - FC94C6F78D6DCCCD4CFFDFE4D79C3EFD /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5462061FE5EFDAAC24ACAC12EAF8A33C /* channel_args_preconditioning.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC958B6D7ADE3654BE0673E165BF781C /* FIRAggregateField.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E7F136133AD485C5E062BD962922D86 /* FIRAggregateField.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - FC9A3912D0284F02B4820D31FE59A3AE /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DD511EA4F209439E9E6C990100DBD6 /* distributions.h */; }; - FCA1DA1185FE88F4E57FBF210F5EA161 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 7760F0AED8E4A1112F359D99C94F2DAC /* format_request.h */; }; - FCA432D971AF09574097B810EA41D34C /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 809BCE39C8B6AD5F6EACD1626B44AB16 /* http_connection_manager.upbdefs.h */; }; - FCBA5457D4D9BB306DF3E50AAF90A892 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4624AA2AD696D60F6B609D3309A3648 /* socket_option.upb.h */; }; - FCBBACFE017D02F718324309F846D820 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4496A35C2BD0510FCF3C465587E5E9EF /* hash_policy.upbdefs.h */; }; - FCC2EAC4A43B60E3FF7CAE719F4D4B0E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6F27A61CB671B5B3F2CBD8A92E843AA4 /* hpack_parser_table.h */; }; - FCCA2AF815420E6A31B87A8EC39213C6 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3ED2F1F4DDDC268CF16F2D83A0CBC8 /* matchers.h */; }; - FCCE1487D847188408B416B65709668C /* flag.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DA1B34299944DC24BE5C4C7C844A27 /* flag.h */; }; - FCCEB4756A7E406F998867164CFC5731 /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6BBE5D19C512DF5DBFF672AF0DA2E4C /* evaluate_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FCE4231AEDD5FF5EB8776FDC0F340EC1 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = AB03E51A506CBD2C0EFEF25A1ACF233C /* grpc_tls_certificate_distributor.h */; }; - FCE6692D73D373D6518EFAE51C48106B /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7162F2014886D43898DD8F2827D19B /* lockfree_event.h */; }; - FCF13DDDDF569ED6B3839EC926F975E9 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 994204E70EB77D424524E0058FCFA5AE /* block_annotate.h */; }; - FD00369BDE34F27C52A4B4E54A9C10E7 /* declare.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED67E4A77BD0818CEB7184A8E69E913 /* declare.h */; }; - FD0688CFB135C2D2A3647350329D4DFE /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 565D70687AD84A382FE6AA9F4BCF2556 /* int128_no_intrinsic.inc */; }; - FD0910E94980925CC41EE6097200B6BB /* prioritized_race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3DDEECFEA39616099BEF42F621791E /* prioritized_race.h */; }; - FD0AFA938385AD59D7E81ABFD772437A /* service_indicator.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 75A5DA679C15660399BA91935B83AF21 /* service_indicator.h */; }; - FD0B685183DE25B083012FFA3A25336C /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF49F7B6696C2939641874D20B6E0FB /* base64.h */; }; - FD1CE630F5232211A341BFD463F35CA2 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6858AFB173774F4ABF21FFC4B4719C06 /* xray.upbdefs.h */; }; - FD1E440A32753F78A9F400C7EAA3E124 /* max_concurrent_streams_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BE5B8C964AF111A103A6CD1C0645DB /* max_concurrent_streams_policy.h */; }; - FD25D7DB96BBA5C6B6809452FD6A0EF0 /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1CCF15838BA86151E97C8A1AAF08B2 /* call_creds_util.h */; }; - FD287868EDACB73655C8616AAD178C19 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 35B06EFB3F9B3CB2557EC8CCDF6423EF /* python_util.h */; }; - FD2F0E1EE0C03B79B251506973E68F69 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = B53B8BE9577FC6EAB8C88FA80416E954 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FD337A06A62D7A5620560274887B49A9 /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 798BF3A9881C7FD0079144EB0FEE6EF0 /* grpc_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD33F4D280271DF6F324F0B1A33F26F2 /* base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8E14E53F24D379EA809D92E17BC72588 /* base.h */; }; - FD4A148947DB6AAAA3A2319AC11FD9A3 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 92085BCBD0400CF3BD8A0EC4133FDFCE /* TZImagePickerController.m */; }; - FD4C1D1E8ED5EEBABCF24D39927690C9 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C9D1687C114554133216DA12EF6D56 /* regex.upb.h */; }; - FD4D5E87E6A6665B39239A7A84A52810 /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5EE1CEC0DD7D05828B8B7599E3784A /* cfstream_handle.h */; }; - FD5086E8F82E7C618DA3CE8996C0FF1A /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = EFCD326E9E72F726E8EE9EC7E20CCF28 /* lockfree_event.h */; }; - FD51977DE6EDFF7DF7A39A5EE6AD336F /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 988B3CDB895DAD25658224E0DCE54A79 /* map.h */; }; - FD5419FDB2C7B6F4E4AFA2E4A288C342 /* FirebaseAppCheckInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 173D4578EF7A0A55680C0D52973B54B2 /* FirebaseAppCheckInterop-dummy.m */; }; - FD58DD384C20BA5CAB90A5CC04859E4F /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = BB96F74542638ADE03255F0D22F61047 /* channel_fwd.h */; }; - FD598874ECD2D71A962D59B248CC6E12 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AF79400D8F98A1310F9B2F45D7028BD /* tsi_error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD60258F16567BDA4AE61DC86E8FD949 /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E61136A4439FB7808C8FB70EADCC29 /* FIRUserMetadata.m */; }; - FD697F68B65F1022D6ECA37DB58EBC6D /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A4AC82BEAE2F8E1F2200BE4B6FE842C1 /* ev_epoll1_linux.h */; }; - FD6B9BFD0E4D64D1E04E5C72246541A8 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A21777C9C040088AAB5C38064FFBD2DE /* resource.upb_minitable.h */; }; - FD6E777C3221B5924AB6302DEA8F670F /* constants.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB23442BC4CF254EBB15E48FB4EB0CB /* constants.h */; }; - FD707620D3C6214B036B8B6002BE082D /* stub_options.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1E084C6DA92D309BF98F4FA13C8FF9F2 /* stub_options.h */; }; - FD71BB49F91001B406DD065422632696 /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DCA1035CB7BDE8347288177BD192B7F /* syntax.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD725E72A8390A3C8A9354A8C8F1E949 /* context_params.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 4030A6830C258FE9DD1C53F38247DAB9 /* context_params.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD726EF8D5A90FECEE06702778A2A6A7 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B5E02C02A93695B48B2BF9DEC9B871 /* http_inputs.upb.h */; }; - FD7B6808E7F3197DA70FF8C960D83A68 /* ads.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 32FF8DAAC8C433840DC1923D64F528B7 /* ads.upb_minitable.h */; }; - FD84BF589B5BF3136E9A5BD787DDCB30 /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = C25F190F4D963FF45A86F428113FE6A7 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FD915887B4C9C5BA1F5AE70F82943C0E /* percent.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 254416F4A171AD0E2EBAB05988A8DAF2 /* percent.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD9715C265496458921385C233F3C0CE /* TZPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2A3E1DE6A6C6484290A0143D13B0CC /* TZPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FD9C7C903AC1225140DC9CA5443E613F /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = E0D7FC2BAAD7FAF98E860412A3042837 /* alts_shared_resource.h */; }; - FDA7D8DCB647C8B1F6BD087D9B380684 /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 01C3432304325DEB517878A4783BAB48 /* timestamp.upb.h */; }; - FDA99C91F13E85B385E1D7C6E9FC00F6 /* hkdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8204BDA20C67EE68C15F83DC227A8235 /* hkdf.h */; }; - FDB27B1664C50B69B30E5A94AACA1D77 /* event_log.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 4B276B96134FF03D1DA506D13CC612A0 /* event_log.h */; }; - FDB33BB5373CC103D4A7C7855DBC86AD /* has_ostream_operator.h in Headers */ = {isa = PBXBuildFile; fileRef = 687F7FE1B0F72E08BAFF3DBC67D66902 /* has_ostream_operator.h */; }; - FDBA095AA0E7938FC02498D174299504 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 80EA0DE0BCBFB0415B735D9F59AB8E43 /* alts_credentials.h */; }; - FDC0EEF0214EDD8DEEE4A80385AA6B6D /* internal.h in Copy crypto/chacha Private Headers */ = {isa = PBXBuildFile; fileRef = D34787CE3E5EC4DEE24AF365FBAC930E /* internal.h */; }; - FDD45B24CD0D53CB06DAEDE7FE03A5A9 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 041089630D869A0ADFC1D1962FDB9275 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE057B104E30CE7D2E37F0A080731308 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = A12093A3908B57862CDE104D90CF4FCD /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FE0BB2868517D285065520245F01AEFF /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 22DB72CB33E68909BEAD45075FA43F36 /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FE0D03907462E8D1DD3610798D5D354B /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 606E5C0F28DD7ECB2BBFDA894019FC9A /* context_params.upbdefs.h */; }; - FE0F4B2EA56943BDF44C2EC43EC26E54 /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F62ACE71082FF74FE7C369D7388D790 /* bitset.h */; }; - FE0F8F762465DBF92D079D25A01D7017 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46D0A15FF2E154B8654AA395C1AA5F56 /* orca_load_report.upb.h */; }; - FE100F11A2F7E54EE3198EEC817B50B2 /* callback_common.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = EDE4B98853AB6EF93B06D43C3199354A /* callback_common.h */; }; - FE11DDBBDF36498F937127B91B53A002 /* grpc_polled_fd_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B149B26C6F0E2EDA026E161F7DB1C64 /* grpc_polled_fd_windows.h */; }; - FE1B590113C70C315C29B31626E4185C /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E0A2CE06D951259EABCA38895295CA /* handshaker.upb.h */; }; - FE2402B628B37B850479CB7361913A1B /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7E0A3ACD9BB97D9FA957E960E37BFB1A /* stacktrace_x86-inl.inc */; }; - FE2FF69FA039C4C9AB6CC6919270A7A4 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = E9741B79D4B16D01F7DF6A5B577A9060 /* GDTCORClock.m */; }; - FE44281B1A774AFE3ABCC111C3C85028 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FAD4A92713F66DEB8509583890827916 /* metrics_service.upbdefs.h */; }; - FE44CADCDE6BC752CE56AC9B2B7F9AB7 /* fault.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D93F0479D367602D7FA1737DEEDB39 /* fault.upb_minitable.h */; }; - FE4D22CE893CDDF4934F483713CC0EDC /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D2434F127AA3C49B95542946D998897 /* status_code_input.upb.h */; }; - FE52B45DE2B80CD99566561AF2B51A0D /* binder_security_policy.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 78B6EF7FDFC28912741C281EF068379D /* binder_security_policy.h */; }; - FE5C4947759E33668BC166AAA2D09C17 /* secret.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 656179D52489E747BDF2051E0A9D0953 /* secret.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE6F3435686212CD265BE4E162BA7972 /* workaround_list.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F842432E98B45B4E53E9CB5C1149C59F /* workaround_list.h */; }; - FE73481A415038C545029950AEEDE619 /* call_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 446EA1510AF119F37BD5A034AAFF96C1 /* call_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE8A7399592297B3DFCA6F0EA2D36AD6 /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = D4AB678922D4E5E317B9EE89FB1DBF3C /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FE99AC849942AF638AE36F5DA374CCE2 /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 520B358953A032D1F3D829B452983FD8 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE9FDD5ABCF77DE013BD1B7CC60A7E3E /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F8E247C40A796B749428C291F8D7846 /* event_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FEA4ACFD6AED333F4F4E9AF4CD6A7C3B /* call_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BFD0A3D693116E6CFB1A848E29B6BC /* call_metric_recorder.h */; }; - FEA4B831657E930212674E68EBD05072 /* policy.c in Sources */ = {isa = PBXBuildFile; fileRef = DD0B5C1B0AB5B76E8B9308F6B66241C7 /* policy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FEADF4EB3DCB5AE8EB2CB93AE56EB6B6 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D17D8551F558C301B8274B2C5F1FB85 /* regex.upb.h */; }; - FEAF09A8E0EC7633CD7D03B810E99375 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E25FC40708787884D496D029637CE8A /* number.upb.h */; }; - FEB83C4D57EF2470D658F0D223DC7DCB /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E80A011D34CD73F12EA219FEFC3FACB2 /* GULLogger.m */; }; - FED5F3A0CF13DB021F61B5E31F58A727 /* stdout_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = E106C972E97F13307B6FE29CCB6B2393 /* stdout_logger.h */; }; - FEDC8335BAA8F04F2BE2B03F615B9AAC /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA1253F3C8808E22E519FDC053FA9464 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FEE4231AA70EBBFD427730A37B33D689 /* sub.h in Headers */ = {isa = PBXBuildFile; fileRef = B231B1BDA8614467FF05E7411E302218 /* sub.h */; }; - FEE67DE1452C4FC5D1A9BA0D93BC50F4 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = CF0F7E6A6AC1723A43EEC56F5CEC073F /* channelz.h */; }; - FEEC611F488D56FD83D3A7B660C4E3F6 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A939104FE03B00E960F1067FEA3003D /* timer_manager.h */; }; - FF0774C9A91932D1B0A22CD484F32FE2 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 09153E8FFDCAB6274B1D2960BFAD25CE /* sensitive.upbdefs.h */; }; - FF1116A0969F5F733D35903EEDDC1452 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 71BAD8EF932CEF7D33D919F12AB9DA15 /* fault.upb_minitable.h */; }; - FF1A7BB808C71448CF3C3B200D239DAC /* sleep.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8877387E27DF1330B8A70D940BA24796 /* sleep.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FF2178A79A83BC3530796DB59E1BEB0A /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8B99B04E0EA16A0725A321CAB369E8 /* sync_custom.h */; }; - FF21C2026E00F295A8F792A577E32809 /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = AF333E551621E760F0FA3D0CE50A1899 /* descriptor.upb.h */; }; - FF2C3A489CA6C963FCB90C7D8AB2DA63 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = 95C46FF9CC1195D12A51E78D9A4BC4DB /* secure_server_credentials.h */; }; - FF34F8C642DBD55B451E28C2E1808BFA /* inlined_vector.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 69CA551AEF37B223791AAF40042F79F3 /* inlined_vector.h */; }; - FF43684731CD9F53B25049B8BA1D0F52 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 69EA0F5CEACC77859D6DDD5BE313D641 /* status.upb.h */; }; - FF570F57795F054F915C343600AFD517 /* versioning.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F8A399560DDA4C413745C9AA55C7DE /* versioning.upb_minitable.h */; }; - FF6E4D7C223B8C98E600CB0808890F24 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */ = {isa = PBXBuildFile; fileRef = F1A1CE2B12E88D83CE209416CE7519AE /* enum_reserved_range.h */; }; - FF7316187C31A8B542641C31C103A0B7 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AABA9B78F40DD2E2152CED2435E01145 /* listener_components.upb_minitable.h */; }; - FF79596B88C5E6AB0E997CAAD2DE9E5F /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 032F1ABFE35C8B3EB4DEE347F01D044C /* cluster.upb_minitable.h */; }; - FF80D5851093CE364ABD51AE38D80756 /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DAE8DA6C1625B178443E8B726DB7D4 /* hashtable_debug_hooks.h */; }; - FF8D911A17C7D24926FDFD3107335700 /* futex_waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 80C1FEA37B954E24A5EAE6965C8AD5F4 /* futex_waiter.h */; }; - FF8E344C96030829EF7C67ECF55E10F1 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 4E42650DEADE076682C32B824585E662 /* tcp_client.h */; }; - FF91072C4DAD996E8A978B29789D5767 /* cpu_arm_linux.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = CB537A2B3D8A1EFC2409FFB0CC695BF3 /* cpu_arm_linux.h */; }; - FF928DEEDB0FBC51359A3E6BE25531DA /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DE439126AFD61618E749E57E36B528D5 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FF92ADC19DB0AE238DE0FC1592557D06 /* cpu_intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 69C236FD5DF2AD9D2FB6579150B0B093 /* cpu_intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FFA1B4DE3DB1A5C34EE8D10FE73663B2 /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = B164E7E3843AE4B746223EDEB5DD1002 /* backend_metric_data.h */; }; - FFA454F88C222D8B669C2363F902B89A /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 503585B4D45920D0AA6450D21D30C1B1 /* wakeup_fd_posix.h */; }; - FFB410B3567DA9F5B7A94157EA3A554D /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B32594FF0F397FB09967C06EDEA493 /* alts_grpc_record_protocol.h */; }; - FFBA395BEDCA5AD7E87AF781887501F6 /* metadata_map.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = B11633FDFBFB52E1505533DDD53B847D /* metadata_map.h */; }; - FFCBBE9856851A563D211A22282721E9 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E90BDAA9EC93C43BAD1515B6CC21D9 /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFD43D91BF1FA4ADF714D56E7A10B2A8 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6028D49BA587A99F3145FE74B5D57F20 /* SVProgressHUD-dummy.m */; }; - FFDC253BF078C632B0682B8BFAC12E52 /* str_split_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0D774D80C3335CD24F30437981A52216 /* str_split_internal.h */; }; - FFE37A9673B070C339AA75A711D3EE57 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C6115A5F064E4A38A8ABA256EA284A5 /* tls.upbdefs.h */; }; - FFE61E597C496F2502E1E5ECB783D3C6 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 2C8229CE6D281DA6692CADA64A104538 /* altscontext.upb.h */; }; - FFF50DF3E6BFDAF54A0602694D70641D /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 6582A7298915CC7AF0E476125466391E /* json_token.h */; }; - FFF8932293BEC2B25BE59BC50A09F47C /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C1780812A548FD1C7CC9A1B66E9D7ED1 /* pollset_set_windows.h */; }; - FFFD9CD3CE2FF8E11C231DBC2074738F /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 817F3C8002AAB7488BB3F4E01ACF36DB /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC4568452A01ACA7090C8B78CF6FFF5A /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4B055AC9A2DFB13536ED72CC07FE890 /* Storage.swift */; }; + FC46E89FB6F71CDC1DDD50CAC4EBEC31 /* audit_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB5CC451BC324EFC14CA5EDD9918532 /* audit_logging.h */; }; + FC4990CCC82514E96B163DF7580B0399 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FA486FFC91C406BBE365C1B9A6D2CA /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC4EA5E05C48155A4B3E1FB5DB3C5C1E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D7B6F1C7EE001E330ECCACFA58715D /* internal.h */; }; + FC500CC0D4B1BDAFD1F7B257D40B60E9 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = FA9489F06E802DD3973DEA7BD09AC8E1 /* syntax.upb.h */; }; + FC53A76452B5E0037B7ACBB113982E51 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 7DDFFB2E1FC501D91E5C1874E6DC956F /* basic_seq.h */; }; + FC5404EFE380A1A9342CA74760BBE72E /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = A81869701334A6F8771ABC95DD0F1EC7 /* insecure_security_connector.h */; }; + FC5A7F972544CE943F866D7F1299B669 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C1320D11E28563CD14B966A491E5F67 /* FIRCreateAuthURIResponse.m */; }; + FC6F0685F92A57F010A054C1A76B0201 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E3A7BB23504331E7CE7B9EF2EADCD1 /* server_builder_option.h */; }; + FC73F7FF3136A4E486B9D15CC6E2860D /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 344023CAD2B4DAAE09F010F3F36FE020 /* string_ref.h */; }; + FC829D8BDFE790B2CCF5482A74BC4819 /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6F7EF0F7CF5C84CE9746736BC4D3A7AC /* ping_callbacks.h */; }; + FC87EBDA2BA08D13CE24B1ED20B1735A /* ref_counted_dns_resolver_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4262B0A964A866EE9A698A6A52A300A1 /* ref_counted_dns_resolver_interface.h */; }; + FC8FA4D2B47030D586CA1382D925B88F /* migrate.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = CE9F23F14A32B8BBE941C71F43095539 /* migrate.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FC90E60B19A1C196FFC6C393EEB07BFB /* config_dump_shared.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AD10CD9DB465587C8B8832C50426C0 /* config_dump_shared.upb_minitable.h */; }; + FC986457819C409AAABDC526F8A9AB8C /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A33D48BC425AC45AB0FCF79F242F56FB /* health_check.upbdefs.h */; }; + FCABDDD6935C7870A89C65F619A993DD /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFE3804B2D745BF38D2CD849D66C38D /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCB119D32877DF7AB2102B79FA75F47F /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C69321C45A392236004A842A701CA954 /* authority.upbdefs.h */; }; + FCB21915170C46498CC092DA99268882 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 04B85B8443697BEAF6D83F83BB3E2452 /* stats_data.h */; }; + FCBBDD5A309E6A5E6701312216B925AA /* xds_http_stateful_session_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7B5781356A79E787A4AA6F8C68B0AA /* xds_http_stateful_session_filter.h */; }; + FCBCFF7B3E27206BE028C8012E227BC1 /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E0C2540BC7B029C949112C50E14E81 /* binder_stream.h */; }; + FCEA15DC58E1F10533F62643CDF120DE /* link.c in Sources */ = {isa = PBXBuildFile; fileRef = ED61C3C0877A6744C9DC3D8360AC057E /* link.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FCEE40AAACA6120D638D13970FE26924 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D53335DE83F827DB932D33F6CE2FC8D7 /* context_params.upb_minitable.h */; }; + FCF4C337DC5528E695529FE64B05E728 /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BE8A5DC9820DB08DB5B5476233BDB9B /* call_combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FCFD01EEFBA51D2B2CCC543AB6EDBFAD /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 8C71EBF16D551B8A59AB4AA5C44588A4 /* sub.h */; }; + FD01AAD29852E5D183FF2ABD7F463771 /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 418791A362A4C145F3F02EE5F58AEAE8 /* tls_security_connector.h */; }; + FD0AFA9002807BB377F0C76E325B47F3 /* accesslog.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 05477409508E44C5B959B552733BC2D5 /* accesslog.upb_minitable.h */; }; + FD0AFA938385AD59D7E81ABFD772437A /* service_indicator.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2AFA4753FDE8056931FF5F57F93040D7 /* service_indicator.h */; }; + FD0B685183DE25B083012FFA3A25336C /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = C289C8B3A09F5D68016A562BB56D2BBC /* base64.h */; }; + FD0E089E4E5730226901F7161C77C769 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B3785B2FCB259680D00D930C5691C4CF /* pollset_windows.h */; }; + FD15F9C19681C6924EB66ED273301A39 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D1CFB86043358A80A11A48815B36E9F3 /* resource_locator.upbdefs.h */; }; + FD1A9DCA7D4A8434571AB76D7783EF2C /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 182A946FD610BD620CC361EDA602804F /* ev_apple.h */; }; + FD206972FFE690BD69695EB819AEE79C /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A3C1FBBF4CC4856F6AD7E8BF1546806 /* GULSwizzler.m */; }; + FD2346FAADC8D6C6DDF42ECB6CBC854E /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AC3D97CD6C910C2697DA888D139DD21 /* resolver_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FD2DCEC75B858507962D493FB689C83F /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 99EE10979CDE9CC2D934B8452F8B6205 /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FD2F0E1EE0C03B79B251506973E68F69 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 7379DF353DEBDAD7EDBF9ADCA56F1937 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FD33F4D280271DF6F324F0B1A33F26F2 /* base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D27030308EE0D81BDF1036D2BF3F8431 /* base.h */; }; + FD425CF720AAEA558238B03F32782C19 /* FBSDKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5037F71EF23728843040C3FA9CA8C0FF /* FBSDKError.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FD45B53138C329CF7AC8B7ED55EFD1BE /* encode.h in Copy third_party/upb/upb/json Private Headers */ = {isa = PBXBuildFile; fileRef = 2140B802B8BAF0FC94230A85BFF1F3A3 /* encode.h */; }; + FD47A5198D1796F1F14584DD17CFF494 /* substitute.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E000A6999D93551FCE57AF2FC8B1BA0A /* substitute.h */; }; + FD4A148947DB6AAAA3A2319AC11FD9A3 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B318E8553FC5E06FA3466A5A17F5341 /* TZImagePickerController.m */; }; + FD5419FDB2C7B6F4E4AFA2E4A288C342 /* FirebaseAppCheckInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 567D9EECEF72D3388131CA1F59326D5C /* FirebaseAppCheckInterop-dummy.m */; }; + FD55DA33123D256EA1E0C8167DD49E61 /* FBSDKImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E283C7C23635D37541520C69BDE9E2 /* FBSDKImageDownloader.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FD567741E1C93B7E12C3D63280BEF778 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1452B3AB7962B019C9F9B8C6163EA327 /* pollset_set.h */; }; + FD56CA81535E9DD2497539311187D94D /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37B6875A545037EC06E819D61DF01385 /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FD5793C7F084927324B3E8ACF85BC240 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 402F18CE4608FF4A99A8D95FE0ADF32A /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + FD589A89FB96FF5BCD927E6DD34532D5 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B038B1A210499D54A253789D418301A1 /* atomic_utils.h */; }; + FD60258F16567BDA4AE61DC86E8FD949 /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A8109279929A8B5FCB3A69D0994C5B /* FIRUserMetadata.m */; }; + FD650F127389B895CBC642478C48EE96 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E494C6DF99E643B057C1F4166455583 /* crc32c.h */; }; + FD73EC09369ACD3A14B8A31CEB01EC46 /* down_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = DC64F7165CC42D2721FB613E086A9990 /* down_cast.h */; }; + FD788F62882A3ED19D860FE4E88B94BA /* hash.h in Copy hash Public Headers */ = {isa = PBXBuildFile; fileRef = AA7617462D6743F53C120D48C7860AA7 /* hash.h */; }; + FD877BCFA7EC68293B36EA1AF5D63B23 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF0C3D1458AB9DFCE51B1EDE69B5045E /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FD8BC795A9DDD83E3859F2B8216F2EBF /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6159FAAE06547D3DFB36D42A8258E2 /* gsec.h */; }; + FD9715C265496458921385C233F3C0CE /* TZPhotoPreviewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B89DEE4040C99DEC18FD35F396D550 /* TZPhotoPreviewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FD98713C50EFCAA697943D20856C7DC4 /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = E96AB8701F7566BF730A1FFAFDC83250 /* metadata_compression_traits.h */; }; + FD9DB72EFFE622D553D18852D8797D34 /* cpu_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2A21C7EE44403993630D63E160AD06 /* cpu_detect.h */; }; + FDA0329A7906464D57E4E5E0852A1473 /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = DF724F1210A0E4067A62878A72EAEB2E /* no_destruct.h */; }; + FDA43DD6C593072F473DEE6DB44DAB62 /* FBSDKErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7078C9E933D6BECF0EA77390CDEFB037 /* FBSDKErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FDA68208E0C4026BCD3F3A54C5E06ECC /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E6E3C4755BE0304C03AFE804909D0FF /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FDA891F8A5F1C1F366584FC4E7DF2E96 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 14004F2581C899A434D2D47921BCAE9C /* promise_factory.h */; }; + FDA94960386CB60076A0607176C84D7E /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 967E7E1FB1B926DBBA81A886C93AA827 /* validate_metadata.h */; }; + FDA99C91F13E85B385E1D7C6E9FC00F6 /* hkdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5893991E37307B26AF05049149BFADF1 /* hkdf.h */; }; + FDB1D42E02B56AEA82FB76ED6AC63CF2 /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 418758104DF39D19296C60B0B654B587 /* init_dump.upbdefs.h */; }; + FDC0EEF0214EDD8DEEE4A80385AA6B6D /* internal.h in Copy crypto/chacha Private Headers */ = {isa = PBXBuildFile; fileRef = FAD647239CFCFA71DB0D248D785F2087 /* internal.h */; }; + FDC5226694CF7255DD8448B61F181526 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = EF9980B419CD8521F0B657D7B4199D51 /* legacy_channel_idle_filter.h */; }; + FDCBA07532B7CDAE81150B7E301A1AF3 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 492AE202311C951686C79B6DA98768E3 /* circuit_breaker.upb_minitable.h */; }; + FDD0D7CCFC9EABC82CA607585A209D24 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = FCE5D50FC5F7B7A9A8D9D4D9EB8405C1 /* alts_iovec_record_protocol.h */; }; + FDD86806F254ADB37FD90F689D2A47C0 /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2552FD3FA3B260A34E3D219CD2C11A5E /* extension_registry.h */; }; + FDDB82FC7498BEE39C600D46A0CCF0CB /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D245DF03013D908317A469758A73B209 /* regex.upbdefs.h */; }; + FDE5331A681197DEEB05C60BD0C28830 /* cftype_unique_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 121156D254898F671AEAC684C1B1C129 /* cftype_unique_ref.h */; }; + FDF8E8DD8234AAEC54C9BAD8FBE850CF /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F38CA58DE8AB962922BE08F09473FD /* endpoint_components.upb.h */; }; + FDFCC9B7C867E4B1AF48D6C160A2E7E2 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 020517DAB22EEF1D0699B006880D4DE6 /* wakeup_fd_eventfd.h */; }; + FDFE135A8DB11205850997A78840F0E9 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7C571BEAC714250FF80919B9148ADCBC /* custom_metadata.h */; }; + FE0519ACD32E6D30017BD1D28BBF1406 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 127FCA2E3D70906A08E57D19F8734B26 /* load_report.upb_minitable.h */; }; + FE055D513BB869EB932D998EDEF5A502 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 12989FA44145246DFF031F5A24247A30 /* socket_factory_posix.h */; }; + FE07B0A9458A6C65132BAD19FEF9A135 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3BE0A0EF8B9990AFF4AE520E6CCA6F /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE09D56CDF540EAA23B1B50580A9EE82 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4D87708E6C96DE4D62C124736E901F6 /* circuit_breaker.upbdefs.h */; }; + FE0BB2868517D285065520245F01AEFF /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = 5662021301FC278F4C282E98961024CF /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FE0EA13506CC9ABC5579DFAD9136F31D /* completion_queue_tag.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 59A9D93CA6C1501391B4F4BEF8FAF995 /* completion_queue_tag.h */; }; + FE247047BEAF02BA8D06BA95DA860B83 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFD2FA2C70D682E460F1AD3595FCF5B /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE3CC24E5BBE362111207D6EE45E1930 /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 033E5BFC09045F1B45F5F72E9BF5E825 /* channel_interface.h */; }; + FE3CFAE9E0E8A20C73A8E05CE84C7B02 /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 718D14807FDBA341703A7FB83CF9685C /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FE42312B1A87F5F8B608B5C7BC9BF1E5 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3751278E236B50A94718C8C9E6A2C6 /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE4D0EC8FCB5263E0E9E7CBAEB596635 /* load_report.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 127FCA2E3D70906A08E57D19F8734B26 /* load_report.upb_minitable.h */; }; + FE4FC78E126C8EE56359D200FD0B5999 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 675ABBFECE7BA0300CEEC713BFB59295 /* chttp2_transport.h */; }; + FE591101E4307EE94AD35A5E52C784AC /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3931ACD0B4A6217B458E3390D8FD14 /* scoped_route.upbdefs.h */; }; + FE5CB15EDD0142D2B17AF004A813CDEB /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 607B4AF2BE4453329C822E396D9A6238 /* server.h */; }; + FE5F5B70425AE56D795567E821E9BB22 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 192098F692168C8F5E8AF4C587D02D85 /* audit_logging.h */; }; + FE7F00FE88AEA9B459B668BCD9232A14 /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = D9DE8E2B058AE415F28F41C6C69E100D /* chttp2_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FE887515F99BA709EF0B469D6503BD1B /* clusters.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B99FD1122A6F331E38DD9D015F9DAD /* clusters.upb_minitable.h */; }; + FE8BFBF4925A3725CF79B5FAFD923265 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5085E25245EECD9BF35418053995D3A4 /* socket_utils_posix.h */; }; + FE8E1726CDCD0615C1AC11FEAD250225 /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AFF296C082A4CF56DD53C651A83C625 /* cel.upb_minitable.h */; }; + FE9F43AEDE8212F0DEB2DF6557808EDF /* stateful_session.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AFA11A1FEB194FD02A19A5BA48562BA2 /* stateful_session.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FEA4B831657E930212674E68EBD05072 /* policy.c in Sources */ = {isa = PBXBuildFile; fileRef = DCBFC27D7D6879BDAC6442A99DFA4ACB /* policy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FEAEE8C0A8B40D68007F41D5CA62DDBC /* router.upb_minitable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FEBBF2D4596E7DF8F3087764FC44B9 /* router.upb_minitable.h */; }; + FEC8F686A4DA2DFA50B5442293BA4DEC /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 985D9A7C6CA27DC31C16B8EBF26B8C2C /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FECF29AC25DA683140A59705BAE48726 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 80002EAA6E4893D3BBDE704F50BAA8A8 /* httpcli.h */; }; + FEDB2A18691F2B0A262491F36FC2A8C9 /* enum.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B68FF2A3EE2D5DB49BF440A2B652756 /* enum.h */; }; + FEDC8335BAA8F04F2BE2B03F615B9AAC /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2E789D2C93397D1C6F9F8F69481D1DB /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FEDE8C7F96710BD38A20A0AF1955B6AF /* def_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 724A32183241FAA749F5A32CE4BFFBAC /* def_builder.h */; }; + FEE12227758E91941BC358B269AD13DA /* path_transformation.upb_minitable.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F1C1760D418DC9010FA1EF42846C05E /* path_transformation.upb_minitable.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FEE85F9511542CB4D96FAFEC743AD039 /* cord_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = C21F4FBCDD126D8DEE7C6C4F45E8ACB2 /* cord_buffer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; + FEF6DAA5834223FEAE4D4503066A0EB6 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 590732B53874CAB5CEC27E7C38BEACFC /* experiments.h */; }; + FF002F5B87B29F406749B0E8FE3F1D90 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 62FDC7DCB670393F72B4EF156F35EFD5 /* sensitive.upb.h */; }; + FF0379011E21744DFAAC72F9782180B3 /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52D953790E86615615FAC6EC45A1DA60 /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; + FF0BD42A7C463E5100F277BEE9DFC9C8 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */ = {isa = PBXBuildFile; fileRef = 67E969B2A48049AAC22D770AB7EF266C /* default_health_check_service.h */; }; + FF1986C2AB61B58C72DF5D2F35DD7D08 /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = F126679635DBF136DA5098F1160AE14C /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; + FF1EC06B3981CB8B80BBFA750B65B5ED /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 8EEEFE6BEF018519546F728808FA74D1 /* audit_logging.h */; }; + FF2F0564C927BB09A021EF0F9EFAB4C6 /* hash_policy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5145F16F5CD8F58082AD141DB2D717E6 /* hash_policy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FF35741814DC34877A7DCFA079F8D1D7 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3EB1FFC7728756BFEB9232A17BD17337 /* xds_credentials.h */; }; + FF3F62008FF67732DC1EF0895D905D97 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 832613D28963A33E04A99F8CC0644E62 /* common.upb.h */; }; + FF44254045CEE6DA1046F754C7509772 /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C210822C5822E7AFA0321FD15FA04A14 /* timestamp.upbdefs.h */; }; + FF4585495DE6642666A69A7D02B7406B /* config_vars.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = D79B13909177220B9C4A82D58F79A296 /* config_vars.h */; }; + FF4B1D84221E074D7071B57AEE87F7A1 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */ = {isa = PBXBuildFile; fileRef = A417FC5743E6E8C3A489804572ED6374 /* backend_metric_filter.h */; }; + FF64FA4DB4DFBEA20B41F2763C2ADAD6 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = A472BB0E04C607F2BB82BCE2BB831A06 /* http2_errors.h */; }; + FF6D9D6B5710E0820402295F4079D1E4 /* outlier_detection.cc in Sources */ = {isa = PBXBuildFile; fileRef = CE33E7BD29BB19BB7E44E173C05D6CB3 /* outlier_detection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FF749681F8B47C71DB9CFA627072AA43 /* retry_service_config.h in Copy src/core/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7FA64FBA7286618B844E2AF7D0717A4A /* retry_service_config.h */; }; + FF7C3E26E83BDDEAEACA646280347588 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 350392857660AA2A2A47AA423E7CE6E1 /* gethostname_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; + FF81A9FEA35E37FA8F82CCF086DCD17F /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 44D98D64C9DAD8533F024DC4218FD9A5 /* decoder.h */; }; + FF8E445F9C27648D89DF971C0DCE707D /* FBSDKTypeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F4984AE83F324CA56C21F7CD98D5EBD2 /* FBSDKTypeUtility.h */; settings = {ATTRIBUTES = (Private, ); }; }; + FF91072C4DAD996E8A978B29789D5767 /* cpu_arm_linux.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = B3AF27A10AC3A14EDE01BDC617215D80 /* cpu_arm_linux.h */; }; + FF9166DC8A777A75FF155170FDA4549A /* atm_gcc_sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 56CFC9E674EC4E1507581F19EEE1AB97 /* atm_gcc_sync.h */; }; + FF925BDDB5F7753A9F5DAFC1AE83B744 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B56D538004B37697A87B3F040D9627 /* bdp_estimator.h */; }; + FF928DEEDB0FBC51359A3E6BE25531DA /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D2DA6FD6559891572BE23E388615E634 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FF92ADC19DB0AE238DE0FC1592557D06 /* cpu_intel.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C866A4CC4234EA4DDC705F9D1BDEBAC /* cpu_intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; + FFA2C16FF308B5AEAB662C18B61E3182 /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD03A1E0D48430505A8969A36029814 /* ratelimit_unit.upb.h */; }; + FFA6142CA6ADA75A44D724ED175A8164 /* string_view.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 0CAE1B99C47B446E437B4ECE4BAE9322 /* string_view.h */; }; + FFBB1549908EF3168BE907B46F966639 /* channel_interface.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7744EE707F4E650DDC601B78742F8A8A /* channel_interface.h */; }; + FFC29FC13B98A4786711EFF87491104D /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F61D0928ADC480E05115063FD02D07A8 /* single_set_ptr.h */; }; + FFCBBE9856851A563D211A22282721E9 /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 408FA9241665959073B5923231510E57 /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFCF25FD72AE80868A7305B38D0F9565 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA00C41526613AA2CBFCCEFD0302A5F /* percent_encoding.h */; }; + FFD43D91BF1FA4ADF714D56E7A10B2A8 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B106E088D91D476BDDB2DDDB7C9F5DF3 /* SVProgressHUD-dummy.m */; }; + FFE002C43C210B6EB54D13C5F79083AA /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 5627D503EF6EF8C50544924E1023A850 /* tcp_client.h */; }; + FFE8CAE08854598FF683F06F97432516 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 39653BB49DC1A4449E117774A7318BE4 /* tls_utils.h */; }; + FFEE2C7D3C3B9516979B69BB2DD74422 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84146106E0B336B03BC5EE0E7A0BF982 /* resource.upb_minitable.h */; }; + FFF8EC5652FB9A1E3CF51DF02E7389CD /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4419CFB292FCDCCD1649B53F3323FF /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFFD9CD3CE2FF8E11C231DBC2074738F /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = C6536A171024F9A5F2CC10476E7A36D5 /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0387288F696CCA388EDE8C508FC79E28 /* PBXContainerItemProxy */ = { + 007DAEFF2AFDF3D2D328D7CA179C82B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E780888CEA3091CBE97429C8F57B3E8C; - remoteInfo = LLCycleScrollView; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 05121ABCA97442DA0675F8BE491628CF /* PBXContainerItemProxy */ = { + 02BFD42D2C3D16A323AC849ED4D3D96B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; + remoteInfo = FirebaseCoreExtension; }; - 052881E195F68E2DFFA7477B0B04DA7D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; - }; - 0D5C265FC77124CF6B7E9767BA44A06B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; - }; - 0D9D03671B8BB3F398294D09165C232C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 100C077AF75F3AC2EC4C481CF0576BD3 /* PBXContainerItemProxy */ = { + 0499C20689774183B54F5E1B3C1FCD43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 101B7EB97FE8A5B4134982E83AAF1A6C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BF61C1A657C58D1D0C1169ACE0A38B81; - remoteInfo = "gRPC-C++-grpcpp"; - }; - 143710F4A6C543652B16D42F312A45F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 199022DB3075234840A5198FFCC5A9B6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 19B76BC7B24B095D130B3AFBE1172917 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - 1D8FA3278ACA17E74E9C3C568324AE85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 1F46FA7139A48E6BA569729037D03B18 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - 23A89E768097CEAE9C1D81FDE5F534D2 /* PBXContainerItemProxy */ = { + 07D787F826DFD764CDFAD4FE9F66EA3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 315BE77CB66105CFF874D8FD15878540 /* PBXContainerItemProxy */ = { + 0926BA604218CE6BC32CDBF7B560821A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 28907903AF6DD0AD321D92CD660E7E23; + remoteInfo = FBSDKCoreKit; }; - 31B2EF8C29254A11B8FCC0129F3C7E0D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; - }; - 34BDC0D4A08124E42D62F6C0EB3B8F86 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 328CC04F43300C6CAB81659260A3799D; - remoteInfo = FirebaseRemoteConfigInterop; - }; - 36EA855F04F43B25439B61C2792D97FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 3A7F0A70C4984050F19B60321DBE6E12 /* PBXContainerItemProxy */ = { + 108552C9186752B65BEB2DA0B49DD90F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 9C4575D64B2B6264CF6AB60FB03302AA; remoteInfo = "FirebaseCoreExtension-FirebaseCoreExtension_Privacy"; }; - 3C154B5F51CF13A32E957AC80460AED2 /* PBXContainerItemProxy */ = { + 1122A4976BB3CA61DBC5DE9E9296CBE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 1A4A6619D154E3BC91FFF31507F3EC33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; remoteInfo = abseil; }; - 3F3BA544E86E397F26E2BEFB7E2C1B10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 4043F5C1F0864BB8377AB70E8A750466 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 4329225D3DC967F30C20669D967572B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; - }; - 46762469653D365E9845BBA07C3B4F2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 479EC46731F58143106830281E68D016 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4CDD1C6C8885D07092D8EA708AAC0E53; - remoteInfo = DeviceKit; - }; - 482E682E8AA3E6416347E52A0991B326 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A96BBB982D62BB807B5BD10774BE2D07; - remoteInfo = TZImagePickerController; - }; - 497B840628AB7AC34AF133E14BB7C6E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 4A0174C1783095A92A9F20E0BC6324F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DE74CDAFE8319CEDA4F1232DEC00140C; - remoteInfo = FirebaseFirestoreInternal; - }; - 5006BED11301B7A449E92C54B3C741A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; - remoteInfo = FirebaseCoreExtension; - }; - 54287538D4B0F975A7F371B70015E69D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 17CBCC6221F62B870268E935098B7D7D; - remoteInfo = "FirebaseCrashlytics-FirebaseCrashlytics_Privacy"; - }; - 54B4AE23D943B72869201B11D6BA9A3F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 5576135CC2A564FAE3507D12B7EBF10C /* PBXContainerItemProxy */ = { + 1A959856F64B035BB71A5232B6BCC288 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; remoteInfo = "BoringSSL-GRPC"; }; - 56390A4B585855EB3E250F744BA4C80B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; - remoteInfo = FirebaseAppCheckInterop; - }; - 59065F9ADDFA69A4EFE191C9045C46D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; - remoteInfo = FirebaseAppCheckInterop; - }; - 5A74E3BFEB8B47562D100104B3A0AF45 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 5B08B815BC4A8511747ADDFB14E4836D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 5B7FCD0A474710DBAEF8E76BB1274647 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 5D7FA4F44F4655ABD1D13196ADB8456C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0583478A3CCF5BCACD7E8105CF7918E; - remoteInfo = "BoringSSL-GRPC-openssl_grpc"; - }; - 5DE1C66F2B2D154C1E00782FBAB940C6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; - remoteInfo = "BoringSSL-GRPC"; - }; - 5E2D1B90BE55214304027DA37CE7D8DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 5F1324AF1CBD40755FDD8EF1C9B6206F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 591296C07DD97B6B624758F2DAF981DE; - remoteInfo = "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy"; - }; - 6250D851722E80CBA4D8CEE85B350CF9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 230F5EE18ECBB227C09ED2C571AFA319; - remoteInfo = "PromisesSwift-Promises_Privacy"; - }; - 647C103D3CCD3005A3FDDDC22C17F6C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 659075415DD5B354241134FF92D980A7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; - }; - 6799423C4C35125618492B8B3824CF12 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A979F9D3632CD5F2F7518F9A362CBAE3; - remoteInfo = PromisesSwift; - }; - 6875A33F00774D9D5C49C00284BCB24B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 6960466C8E3AD5F3A1EA163E49D2464D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BE6D8CBE8245C88A1146DE42D80A7531; - remoteInfo = "FirebaseFirestore-FirebaseFirestore_Privacy"; - }; - 69CE61B4A8189EA2C0226FA3A3118BE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 6A4705895EBBE9D3AB8F31F9DDFCD31E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; - remoteInfo = "PromisesObjC-FBLPromises_Privacy"; - }; - 6D2D6D0D41E8C66BA4E52CE7DF09C899 /* PBXContainerItemProxy */ = { + 1AAE6494097FE611488AA148038DF73E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 6D725C5CB4578B173AFB6DFDE637C219 /* PBXContainerItemProxy */ = { + 1F30DF5CAF071B08DD00E51F9FD2C5DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 728ACF3FF6F9F895CCFCE6D091F62C6A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 7328326A2AE243270B787BF07AE4FACE /* PBXContainerItemProxy */ = { + 21C6C62E9402D5361C455424BC548DFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 962124A759E27BE4799ED74362BED884; remoteInfo = RecaptchaInterop; }; - 75EBE95E558859AF9932916F1145DE6F /* PBXContainerItemProxy */ = { + 22BE6F0CAE4B967629C854A1FFB6040D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; - remoteInfo = FirebaseFirestore; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; }; - 7B9137867BE120ACC8FD8C6E9C119B4D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; - remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; - }; - 7C93181498C8E5F3AF3DF516B89EA069 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340; - remoteInfo = SVProgressHUD; - }; - 7E364730B889CE406D5FC32E653408C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - 8016B7C32EBD576281B14B4326D59B21 /* PBXContainerItemProxy */ = { + 241A32FA406E81A3E2902519680B5ED5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DE74CDAFE8319CEDA4F1232DEC00140C; remoteInfo = FirebaseFirestoreInternal; }; - 80A465588DD8858016C1A56D4E452F50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 85461C97ABFB1DB8DB54A7834B06217E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 962124A759E27BE4799ED74362BED884; - remoteInfo = RecaptchaInterop; - }; - 857B6937DED2257A80998B933C6FFB67 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3F8EC37C78673149F2B94E8BD9AA8737; - remoteInfo = FirebaseSessions; - }; - 891AB20F2FBCB5C574296FB3D183CCFB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94706DD5BBE215339DF893D4434E1084; - remoteInfo = FirebaseSharedSwift; - }; - 8B90D7D7382CFACE0381DCC66E8C2FE4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; - remoteInfo = FirebaseCoreExtension; - }; - 8C050FCBE479B43BFA481F5B87F16421 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 8F57611AB1864E65DFD471B15B097D8C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D994236C73AC9E758404DF574DAB4A9F; - remoteInfo = "FirebaseAuth-FirebaseAuth_Privacy"; - }; - 945B8CD0342535262EE2B75EC06F7135 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; - }; - 97ACE3618853CDAF9F0A4DB0EDE5682B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - 99385320B4A42C511B0462373700AC83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 9C0132BCC4F529F5E275205F49C81D38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 9C305868EC5FFF54BD50D21F877F15B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; - remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; - }; - 9DD36D51EB5CD8843F36C45A7BC000D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8AE1E2A4B497E543C01E68497F7C0901; - remoteInfo = "leveldb-library-leveldb_Privacy"; - }; - A58971D195CA6C704818AA41FD38A1C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - A710EFB759A2BED6507A179FD39C66DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; - remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; - }; - A72CA98D2C0547D200F38DFBFAFD743A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - A7ECD05FDD48608FF0F79B1F88F1CB50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; - }; - AF3D7B4E38D61D21E541B42BC01F8496 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - B21BAAD77DB0B49A189E91869A8FDDDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 86CFB548AF424CFBA176390BF5EDCC39; - remoteInfo = "gRPC-Core-grpc"; - }; - B48AD6614C875E81903404F1A454A2EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - B5117CD021F9DEB8288207FB2FB49C69 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - B8B35CE5B92101E59F9E4E6469EF5BB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; - remoteInfo = FirebaseAuth; - }; - C06587A522EDB43AE836A807DEEC0722 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A979F9D3632CD5F2F7518F9A362CBAE3; - remoteInfo = PromisesSwift; - }; - C16ABC985CD375210CB28A10F434031E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - C1A23A5081664636212DC2DE1B39E907 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - C6361F13E553843EB4131F75DE532A25 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3F8EC37C78673149F2B94E8BD9AA8737; - remoteInfo = FirebaseSessions; - }; - C6C5CEFB0650DA6F04811898EA424DF1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - C95ECB6EE87B760C64C9B9FCB15B9D36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - CB5534ABA8429AEAACB88AEA4754A441 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - CCFE13C5423AC7D1E32367685C386B45 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DD0D41A9315A48004E57F4F0E54095F1; - remoteInfo = "GoogleDataTransport-GoogleDataTransport_Privacy"; - }; - CD07C566E87B7C65D5622D30EF11A8FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; - }; - CD0D6353ACC8CD0BB3BD7BD9ADCB71E3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; - }; - CFC6E39C2F9591FB99E45C119495A94B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - D093E28631F7610BA6D040D3C9E7EF04 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; - remoteInfo = FirebaseCoreExtension; - }; - D320288FD4C5765A7A7A5BA83FC6D59B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - D8BE4B3FEBCFFC86914A5BB9B117DA8E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - DA8A73C90CC3EAB76F4FB647138FCDDD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - DDA47A1BBB2CF86211B7765B8A7F951D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94706DD5BBE215339DF893D4434E1084; - remoteInfo = FirebaseSharedSwift; - }; - E036E53AD65990992BBFB0A7172E1BC2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - E1423D928BA101C27CA3BD1BF06AC85A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - E56F40AFB24749CED2052D22B4769EEF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; - remoteInfo = "Kingfisher-Kingfisher"; - }; - E6A0190A00426CED51180489B3D30688 /* PBXContainerItemProxy */ = { + 272C630CF1B44D684AA19E882BB5F04F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 328CC04F43300C6CAB81659260A3799D; remoteInfo = FirebaseRemoteConfigInterop; }; - E8346AFA71A485E7855F26453C7B7581 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - E90FFA11FBC980CC3A7D322968BD0798 /* PBXContainerItemProxy */ = { + 2A2D7BD94B488321475A93199EEEA9E5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - E919BB085A5AB5203AFA4AAF4F0234B5 /* PBXContainerItemProxy */ = { + 2BF5956B044BD5E4B9DDEAD20A65646A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; - remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - EF1A1CB501988237B9400DA2A5E75737 /* PBXContainerItemProxy */ = { + 2DFA75B2DBB574C58E42EC680BCCB3AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; - remoteInfo = "nanopb-nanopb_Privacy"; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; }; - F2F281CFD4893EF9E12C8ED8C23AC898 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; - remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; - }; - F6A03C1C0F8A8C9294CB312EB78D362F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - F6F3C534BE8735E6B5184A46A1F39336 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - F865E8E45024172A35B1D04EF88DD4F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - F87DD5050DEA9F73BAD315C3E3780C21 /* PBXContainerItemProxy */ = { + 2FACC9ADDF76EEDC18E859DDE9145302 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - F986266289EE61FF233283F426E2C825 /* PBXContainerItemProxy */ = { + 2FB025240602E7C83C99BCA59485A5BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; - remoteInfo = FirebaseAppCheckInterop; + remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; + remoteInfo = FirebaseFirestore; }; - FD08915FE6E9A0210BD367C7058772BC /* PBXContainerItemProxy */ = { + 3C1DC2C4E4850F9D54746A0E2E5A3DA7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - FF20A004B6769AE994DB7BD8E4A42B07 /* PBXContainerItemProxy */ = { + 3EF42B49CD7C7CAF6FCA7792376F7EEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 49DA6BB09BDE26ABDB0B6A12AB00BF37 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 4A9F319A5FD6B1DD93C572E1D7745E1B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; + remoteInfo = FirebaseCoreExtension; + }; + 4B88336D87DE06F0487302E6D07B73D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 4BE41F05831B9C1B2C2E175A9C0FAD02 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3F8EC37C78673149F2B94E8BD9AA8737; + remoteInfo = FirebaseSessions; + }; + 4E5D7BDE9DC157E2FB4EE9400F986A07 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 591296C07DD97B6B624758F2DAF981DE; + remoteInfo = "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy"; + }; + 4F05D2E9473B2B208293C43D8295F5C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; + remoteInfo = "leveldb-library"; + }; + 50AC5725C300446F953B715A28E497F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 52A4E8BDB5F87607B1BE1915965FA36D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A979F9D3632CD5F2F7518F9A362CBAE3; + remoteInfo = PromisesSwift; + }; + 53A787BFBAB1F89B57E84E5B3B2B8D1B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0583478A3CCF5BCACD7E8105CF7918E; + remoteInfo = "BoringSSL-GRPC-openssl_grpc"; + }; + 53AFBAC2CD64F1E17BBFF89DB7B8B583 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 571572ED73E1B2B208CD9C07BF553A0F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 5A6D3C0030AC3005B65266689C262673 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; + }; + 5E5A5591D5CA0D1C06E2730AD3937E15 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 6288659B5E1D590CE00FD870DDD1699C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 62E971544F72B3E821989E6C40374C47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; + }; + 678BA7492D15BB3594826D8928118660 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; + remoteInfo = FirebaseAppCheckInterop; + }; + 679924E9ECD5EC17C1FE4DFDAF788372 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 6987DE750B0887D82A7BC89D77D0B099 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 69BE79D2AEDE5143D599860B1CD56733 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E780888CEA3091CBE97429C8F57B3E8C; + remoteInfo = LLCycleScrollView; + }; + 6FCCE68FB0413882EB7F47C0A634B5EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 78436F676E971512545CBEE1FFCB3408 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3F8EC37C78673149F2B94E8BD9AA8737; + remoteInfo = FirebaseSessions; + }; + 7B8638FD1CF1B75D458E3A98CBC28A2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; + }; + 80F98062ECB00E3186B04E10B4066CE7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A979F9D3632CD5F2F7518F9A362CBAE3; + remoteInfo = PromisesSwift; + }; + 82BB36AF1DA4E7BE28388125C9AF49C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 88CDCDD6913E83AFCF02D1CFD6C2EE12 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 8B46DE04623C69ABE9735F682659D2AC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 8BAC2358DE1488559CC5CAEC4599AB03 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; + remoteInfo = FirebaseAppCheckInterop; + }; + 8C56E1E548806D2BD131720897FBCC32 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; + }; + 8CEC259ECB17A89E8C9FE1C42675779E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; + }; + 8D58645204D86936BB6854B02CBEEC29 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 8F9E8B221736F8058A9A2BB668BCB464 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8AE1E2A4B497E543C01E68497F7C0901; + remoteInfo = "leveldb-library-leveldb_Privacy"; + }; + 9263B279260B7E769076B40281C1F5F5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 928B6277D15A407159B9BC9CBEAB0498 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 94257648033F055B17C9865C7E334A6D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 17CBCC6221F62B870268E935098B7D7D; + remoteInfo = "FirebaseCrashlytics-FirebaseCrashlytics_Privacy"; + }; + 981091D00A42B8A8AC35A70503369C8F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 98D58C0B27863E557231CE7C60E9036F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; + remoteInfo = "gRPC-Core"; + }; + 98F7AC3561EB5FAF4F42A1E7D18F3333 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 9AE8AD08F25174DAA0BB20752D3C7659 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; + remoteInfo = "gRPC-C++"; + }; + 9C80ED5684BE9D197B9A48E1807E3FF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; + }; + 9D07AF4A43355A12BBB929E43B9EB235 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; + remoteInfo = FirebaseAppCheckInterop; + }; + 9EEFBFEA99FAC9E89C3A19E039750412 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; + remoteInfo = FirebaseAuth; + }; + 9F93D02D16D2E5715254E1D0A04B3377 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4CDD1C6C8885D07092D8EA708AAC0E53; + remoteInfo = DeviceKit; + }; + A163E8FA293CBCB44AAC9B685E0631CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; + remoteInfo = "leveldb-library"; + }; + A21CE4772C213C3600BB227115A1FA4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + A344C9212F85B711310A6C35105BD1D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; + remoteInfo = "gRPC-Core"; + }; + A3E2211DDF0C05947E306F4ED1121D7F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 417B25AC44CA1D040034CC1F375CEE36; remoteInfo = "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy"; }; + A44BEAB9069811F3BFFC7378BE256364 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD0D41A9315A48004E57F4F0E54095F1; + remoteInfo = "GoogleDataTransport-GoogleDataTransport_Privacy"; + }; + A6491D0788960276ECD59F97F7D421CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + A6887CBAAD8A5A63BF6590DD80A9A7CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BE6D8CBE8245C88A1146DE42D80A7531; + remoteInfo = "FirebaseFirestore-FirebaseFirestore_Privacy"; + }; + A68ABE0581D07BEE65D959E52AFBC96B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 962124A759E27BE4799ED74362BED884; + remoteInfo = RecaptchaInterop; + }; + A9D0E0E2EFC9CD9A98863F9ABBDEB797 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D994236C73AC9E758404DF574DAB4A9F; + remoteInfo = "FirebaseAuth-FirebaseAuth_Privacy"; + }; + AB04E834F2069C9E802BDA0CC8118689 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + ABCE2D5794611ED75ABF8BD0DE6ECC7A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + B455290E19E98CD2A89ABDDE3E4B1FF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + B545A65D0CB8D28380B96FDC4FC31AAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; + remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; + }; + B6F5CDD549E043E969C2F692BF3F1B82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + B99797E7E56022C61447B12EC05DBDF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + BD750E8043C6D0E18C2465DBAC707ACA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + BE5A192A6A39EAA5811F45C1BA13E323 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; + remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; + }; + C15D9AA8AED77BBF3D7B505CF6A2FC66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BF61C1A657C58D1D0C1169ACE0A38B81; + remoteInfo = "gRPC-C++-grpcpp"; + }; + C18BDA206A34AF9895A3D03085D66BA2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + C2C3C1639E11B4D796F2DD3246346D95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; + remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; + }; + C2CEB7DD349E619F5795EFDC3085F560 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + C7608D38A2CF8CEA5F357327E60F3FFE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; + remoteInfo = "BoringSSL-GRPC"; + }; + C80A118F87695B75C8879804D0DBD105 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + CE0EDB9753F702505FF524CDC294B890 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 328CC04F43300C6CAB81659260A3799D; + remoteInfo = FirebaseRemoteConfigInterop; + }; + CFA9623549BAA23B4F84288CA84B2AB8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 230F5EE18ECBB227C09ED2C571AFA319; + remoteInfo = "PromisesSwift-Promises_Privacy"; + }; + D20B71511B716542766D9F91C56D970A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + D8C6BF51651387A315C5C84BA32B2689 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 94706DD5BBE215339DF893D4434E1084; + remoteInfo = FirebaseSharedSwift; + }; + DAF2EBA2DA0EEB094A5AB6AC0327EC8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28907903AF6DD0AD321D92CD660E7E23; + remoteInfo = FBSDKCoreKit; + }; + DC6D973DF6490131450216881EFC5045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + DDC673761205058C94C3EABDBC3BA9E1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + E04E1BD4A25E804FFFC8AE40F005A2FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340; + remoteInfo = SVProgressHUD; + }; + E2149B7D93C05BBE9D204DE6837929B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; + remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; + }; + E63F9543E61A653CB43C1A246F6647DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; + remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; + }; + E840FEEC5DACFC0CCC555B063B3563B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + E99B0A3DE1E04EDA08030E49BBDCC81A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; + remoteInfo = abseil; + }; + EA52F184DA03DA1E094AF3E2261434E8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + EA89988B574A219F7BDACD79B721BADD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 86CFB548AF424CFBA176390BF5EDCC39; + remoteInfo = "gRPC-Core-grpc"; + }; + EAE076CD68C13C89D628DAA6C58799F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DE74CDAFE8319CEDA4F1232DEC00140C; + remoteInfo = FirebaseFirestoreInternal; + }; + EC150F83A2E6294075E8DE386761FDEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + EC8D3D4B9E1DCB6D7C4126AF53DA2A89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + ED8298FA380BEE3738248A942BC89135 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 94706DD5BBE215339DF893D4434E1084; + remoteInfo = FirebaseSharedSwift; + }; + ED85BFBB0F29CB494BA82B31882E1A8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; + remoteInfo = "PromisesObjC-FBLPromises_Privacy"; + }; + EDD45E223B9DE98170B4DE25095AC734 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; + remoteInfo = "nanopb-nanopb_Privacy"; + }; + F1FFBCB8964B7B8589325BEE177478B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A96BBB982D62BB807B5BD10774BE2D07; + remoteInfo = TZImagePickerController; + }; + F3F0B3C02E9909DAC7E70AC7D80844B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; + remoteInfo = "gRPC-Core"; + }; + F6140AFB72EB79CD17DB8A778B509CAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE1DE31D91C32501251AE9687CDC2E0F; + remoteInfo = FirebaseCoreExtension; + }; + FC6B7DD912E5337A54FAC59800B7FBBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 290D7B2F80A1721A35508C1739C47F56; + remoteInfo = FacebookCore; + }; + FC900468C182A58136F5D4F57C76F8D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9828BBC09E9FB1238624113D7456E59E; + remoteInfo = "Kingfisher-Kingfisher"; + }; + FCF4A92E8164D1F1905A6DAF0984084B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; + remoteInfo = "gRPC-C++"; + }; + FF055C6000255FDD48D50D1DD5417973 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 0038274A4A24418D5725891A68DDAEF3 /* Copy third_party/upb/upb Private Headers */ = { + 0147F6A3FCD88F09F940D25D6928B780 /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; dstSubfolderSpec = 16; files = ( - F9AD0CF6E5A0E1B8FCEFDA8B56A63EAE /* generated_code_support.h in Copy third_party/upb/upb Private Headers */, + 5239BCB954A3CED93CCC232B7865617C /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, ); - name = "Copy third_party/upb/upb Private Headers"; + name = "Copy src/core/lib/security/credentials/insecure Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 019A8C879EC4505831C830D2AE8CABF3 /* Copy src/core/lib/backoff Private Headers */ = { + 017682064E072882F1AFA6186B773481 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3"; dstSubfolderSpec = 16; files = ( - 8140C4F7C202E3FA3EB7532D54C7C858 /* backoff.h in Copy src/core/lib/backoff Private Headers */, - 556688047A458E6FDA8F48107C3B9DC0 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */, + BE76892566C6D894FE0E268E372958DD /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, ); - name = "Copy src/core/lib/backoff Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 01B88E7882B4E9B475C2E5CA8C94DE32 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + 01EDCEC61B9715EE8C22E29C9CFE900F /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - 805A37CCB41E19167F7BFF89618BBD8A /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - D5FC0B5C51EEB54B2C5ECF48728BDFBC /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 5DCE8D26109C141C0D90E0EC59E7F0F0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 99964299DD43E77840194DE4D319E3A4 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 0B36215BA4DE57E6FBFF152D2DFDFE90 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 20163A53D720D4314F2A60DCF86AC6E1 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 86B23D07DF527927471589A0B08A77BC /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 1A4F3822728D5B51DA8D705D09BCFE2C /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - E3A8613B09E87EEDFE899EE2C03F4751 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - A102123427506BC247645A4AB8C6B025 /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + FE09D56CDF540EAA23B1B50580A9EE82 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + 6EBAF5DB88778B7F09405022CE5ECA93 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + 20E92132561448626A610A33371E43D5 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + 12BEAE2E4598FA3E0CFC497DA6CF3D92 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0252471F99EE0A37E3D27A0A36F79FE9 /* Copy third_party/upb/upb/port Private Headers */ = { + 020701C1322EDD554EBEB52C79B399BA /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/port"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - 40317B4C27A7FF6B2D94DC98835DE57A /* atomic.h in Copy third_party/upb/upb/port Private Headers */, - 9017DAD764D499941E0AF55843CDFCE0 /* def.inc in Copy third_party/upb/upb/port Private Headers */, - 4F0B7216B442B2D106033BDE15D682CB /* undef.inc in Copy third_party/upb/upb/port Private Headers */, - 2FDC4E1B73011A7BBDB9A0D723E40CEF /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */, + 833E63E33D5DA275C7BCA6E4BBB56ABF /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 6ED680379DBB1F3EFB421F438697B149 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + BA89BEF17014A080AA46EA74DB36CB81 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + D970E9AB710E4BD570422968E9D1C01C /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/port Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 029ECB084E1C4F055F11C9078C7EDA05 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + 0488FD7B9165901BF5A22DB7A1474E5E /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3"; dstSubfolderSpec = 16; files = ( - 7543FA8265D3F3A831DDE1B29B23E93B /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - E8309E53495892AC7C1B71D2C87D2E4C /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - A6CBEF0FF5DB3EBEE67DAA8193C75870 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C47895388A3B4E30BB6F50B1E29C026D /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 4D4C3583B965FCCB332577E2CA55FFB7 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + BA0457A9F8D82E6D6F23E78197282A96 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + 624AAFB5AB2C4C4E78ECD1C94FE0DC4F /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0399D4A2D4E939356E243109C93E8A39 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { + 04E79FC6847C3E97F630CC8BB052EA53 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 59E7A7B351D7CF56F0D666F83DAE7620 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, + C86DB08CE2165F5F20972BBCE457AD47 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + 957157B98EAAA8149B21A3AD593CEFC7 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + 374E716B9A543C32694C243B763ECE10 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 03ABA53646AB0CF7530A9CE891E919AE /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + 056B1A1F8D9643AB3537BB68D2A44D0B /* Copy src/core/lib/http Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lookup/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; dstSubfolderSpec = 16; files = ( - D13BDAD93EE2F000AF40F2BD09147AA1 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 0FA5637A670EC40C3298DAB4AF7889CA /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 7F14FB265D7D0DF04F7B70040C27593E /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 16973D6479DCA2FEEC91223EC1B426F0 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + 79A104962BD1205C89619E8A76841A7A /* format_request.h in Copy src/core/lib/http Private Headers */, + 46E08C31C4EE806E93B368D5F49EACF1 /* httpcli.h in Copy src/core/lib/http Private Headers */, + BB293244951378F5B7045CC4EFD5C777 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, + 4D0A63D72B7D7030D336346BCDA2BB6B /* parser.h in Copy src/core/lib/http Private Headers */, ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers"; + name = "Copy src/core/lib/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 04246FB841A53DEE02D95933EC1B7E86 /* Copy third_party/upb/upb/reflection/internal Private Headers */ = { + 05B177037FD003C82C3313D112DD0176 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; dstSubfolderSpec = 16; files = ( - 53DA775CB6A86545D9839914D3882A05 /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 2FB755428AB8D51685D64B0229C7E14D /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - B964C0CE0BCA8EEF386521396CC53A02 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 402503100BC188F99D36934D6FE666B8 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 4B082F331934984B82B96DBDE7FFB308 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 80EBFE8B37C292DBBC315830C05C79C7 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - FC898F0A755CDE20064D662D664DDB21 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - CD3CA955C2EDE7A9B70383A86C3C3C45 /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 91BFC01021F01942581FD71C74BEB91E /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - ABBF7D86DCC74573759F1381FE3DEB42 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 0522CA5D448289A176BBA79B70492E30 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 70D48527113B474FB855B295CC69D360 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 363F4BA77466F526CA72DCF96621DCE1 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - B81A77E33168C191172EEB265BCECF94 /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 193277926C753D9F394CA597EAFB2A2B /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 0E79100B14017B10DDE9848775DA65BA /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, ); - name = "Copy third_party/upb/upb/reflection/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0464E521A12D89B1A2E902B90AC04041 /* Copy src/core/lib/slice Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; - dstSubfolderSpec = 16; - files = ( - CE4CA84EC75C5FDCF39EAC5596AF3A67 /* b64.h in Copy src/core/lib/slice Private Headers */, - CD08090D8241E0BC89040CDFA0697A28 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - E7F94F4816D9E8ED45625550F75BD61A /* slice.h in Copy src/core/lib/slice Private Headers */, - D4184DFD428C74B5CD8D5EC896603A1E /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, - 3433D085CAA21B8597DB906FEDEE6402 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - D9530732D1606CD58DB51C7B45222C30 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - 0E0C71F0ED6030ABFB4CCFA502973F82 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - ); - name = "Copy src/core/lib/slice Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 04E83E79422F19091D68548E63252FDF /* Copy src/core/resolver/dns/event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/event_engine"; - dstSubfolderSpec = 16; - files = ( - FB644F85D060FC774B7858FDD8785075 /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */, - EC713B74529AE49B7ADAD65C7F7179C6 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */, - ); - name = "Copy src/core/resolver/dns/event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 051713E449FAE76E994388515AB24EC6 /* Copy memory Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/memory"; - dstSubfolderSpec = 16; - files = ( - 2F6ED5024F3BC59A22EF71451DAD5024 /* memory.h in Copy memory Public Headers */, - ); - name = "Copy memory Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 055CB7B238A7D72ACDDD8FA34CF844EC /* Copy src/core/resolver/dns/c_ares Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/c_ares"; - dstSubfolderSpec = 16; - files = ( - 82E6F91B47F3C33B67B41FE82CF86C42 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */, - 8B1C7FEDE0B1E7A6BD82E9F5C6A82DED /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */, - 45E3BD09BCBFA2AB87CEBF8ADD6EFC5B /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */, - ); - name = "Copy src/core/resolver/dns/c_ares Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 056370A53BFEEE4ED6790A96FF0DC71C /* Copy event_engine/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine/internal"; - dstSubfolderSpec = 16; - files = ( - 3742BE70F80DB69B34E3D14F348570C2 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */, - 2E3CBA026A04A3FFF9F256F41409840A /* slice_cast.h in Copy event_engine/internal Public Headers */, - ); - name = "Copy event_engine/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 056BBFA5D55A2D517BA813346F832137 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - F7F5904E1748E8963AA2728AA0557E05 /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, - 25F356D2C4E3F4F817F105E74358132E /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 05800FCD015E8A86EB275468AB7DA1D1 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - 08EAAB39BD72CCF9EFC3630648390F2C /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - EC2C380770BCFEA4F934A1B7969CD283 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - C5E42041B97E2C59579341F9A45E1BC6 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - 5823DB4F6073DAB75FCD6BC1B48F8B3B /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers"; + name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 05C8EC251340A5633375154D8F4BB1D3 /* Copy crypto/rsa_extra Private Headers */ = { @@ -10110,235 +10280,292 @@ name = "Copy crypto/rsa_extra Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 063B9D943BBE33120F1C9D3FC808DEA0 /* Copy src/core/lib/security/context Private Headers */ = { + 06155A513771ABBF931E01484DE5546F /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3"; dstSubfolderSpec = 16; files = ( - 30994301195F1257374306041BC27730 /* security_context.h in Copy src/core/lib/security/context Private Headers */, + C85212F1400D821DAC9F380F6D963088 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + 315EAA3369BCEE279A0A536248A3ACB8 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, ); - name = "Copy src/core/lib/security/context Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 064F823E13B4A3E027BAA8DB09537808 /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = { + 068320B9A47DE1ACD85DC3425B36C0B5 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - 21EA19D09BDBE83E195566ADC2D6C468 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - A1264129393DEE31B24832B02B50BA16 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - 66416C98DF588EDEF6118CB2218FDD32 /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - 7A7FEF84267DBA48F593B133E8E2A825 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + 6EC58BD9F96CF3F13820FAC438B3D598 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + E5596BD09BF117F018B42EAB18C589D9 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/annotations Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0725AB274CF1EA9BE380C4AC36F5EE2A /* Copy src/core/load_balancing/outlier_detection Private Headers */ = { + 075D455F9FB02770A5256A3CFC5516A1 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/outlier_detection"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - DD7423390B8373126B1BA207FA5EEE7C /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */, + 9C875C07B88F0FA89644FD586B2B0717 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 4FBDB5A42F36375B09D15D72BCA33AEA /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/load_balancing/outlier_detection Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 074A9FB6D9BAECD7D20F433EA6FB8522 /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = { + 07BE8C54C74B8D5E77F33E5D17BD9019 /* Copy src/core/load_balancing/pick_first Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lb/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/pick_first"; dstSubfolderSpec = 16; files = ( - 08E3635CF3B4D8F5F1E41C67B0B34868 /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, - 06271910CA53C549D9AE4319C81E171E /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + 6F66540A7823569A5BB5BBB595C4522F /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */, ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers"; + name = "Copy src/core/load_balancing/pick_first Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 094D012114C8B4E9658FD5E6F1C689A8 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + 083C19B095F48102866F3AFE94C151D1 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3"; dstSubfolderSpec = 16; files = ( - 15CCCCC9C6BB4F8BAB851187014880E5 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 905A0F315ED566AC05DAAC1629D2B996 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 0E32D45490CDB62C348D098DA2E44436 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0952248496CB6A5C85878244160D8900 /* Copy synchronization/internal Public Headers */ = { + 09A8DAA96A055B73524F5159C3A9D9E7 /* Copy src/core/resolver/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/xds"; dstSubfolderSpec = 16; files = ( - 1A88136CC819ED0B80E2DA0FFAF8C7AF /* create_thread_identity.h in Copy synchronization/internal Public Headers */, - ED9E51268B293E6CCCBE84E1971A052B /* futex.h in Copy synchronization/internal Public Headers */, - FF8D911A17C7D24926FDFD3107335700 /* futex_waiter.h in Copy synchronization/internal Public Headers */, - 596271F43948D60B862258DEBA8B1844 /* graphcycles.h in Copy synchronization/internal Public Headers */, - A25E6ED93270516DCA862D8C4849C2F9 /* kernel_timeout.h in Copy synchronization/internal Public Headers */, - 4780C7ED86C2AA7E37A54ACCAB2428DE /* per_thread_sem.h in Copy synchronization/internal Public Headers */, - 72760A8ABA17709FC6A56B4E041302AC /* pthread_waiter.h in Copy synchronization/internal Public Headers */, - 65D6F9ADA069C1C171C967826D61858B /* sem_waiter.h in Copy synchronization/internal Public Headers */, - 702B0629C2DD6476D926F95B49E425B8 /* stdcpp_waiter.h in Copy synchronization/internal Public Headers */, - 1A4D0F8607ADA1924C8F8D773BE2BCC7 /* waiter.h in Copy synchronization/internal Public Headers */, - 31AB4398291A52235B09FE025D7C1A44 /* waiter_base.h in Copy synchronization/internal Public Headers */, - 4345CD4F542A7536570A328D444F03CB /* win32_waiter.h in Copy synchronization/internal Public Headers */, + 04C78A9F8A8092BCDF2DE57224344DDA /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */, + 59A8B6962C7CBFE28BD2C2CFB4B61D96 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */, + 0F02953C2CE84B9B79A126060ED2512D /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */, ); - name = "Copy synchronization/internal Public Headers"; + name = "Copy src/core/resolver/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0BB779608FDA1C786043742045229D06 /* Copy src/core/resolver/dns/native Private Headers */ = { + 0ADEDFB56A676559FB8AD471EC6CBFED /* Copy memory Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/native"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/memory"; dstSubfolderSpec = 16; files = ( - B27C39F1C538B833DFC1BF4998DC3BEC /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */, + B1515BD2D2BB419EEB25231A0FE06104 /* memory.h in Copy memory Public Headers */, ); - name = "Copy src/core/resolver/dns/native Private Headers"; + name = "Copy memory Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0BD8FDD714D606A8CBA155B9F147312C /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { + 0B6D8054118F1C46559883BCACDD2CD4 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - E4904E77E93A9F211110C4632034F0D4 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - DE63BC60E313FE4A5EC74C45699D2957 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + E849B525EA97CF9F217F0D948FFF63AC /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + 136731A30B58359438455655C5094A2F /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, ); name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0BF67BE4853A1B873D424B8F378936A3 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = { + 0B7C3B068B81F1D0A116C579B2F850B4 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - B20FEFFD2A23F9987074680DDAC82CFD /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, - 001C125506F3D678E6B7941F98CD3E0E /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + 6055F9B51E721AFB1F9B1B5C4DCEAD0A /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0C31FA3907847094B67ED8BF752CBA0A /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = { + 0B8E441FE1B0B022922F2B6F0B288605 /* Copy third_party/upb/upb/hash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/admin/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/hash"; dstSubfolderSpec = 16; files = ( - BB6AF894428025B1D613F33FA5BA7153 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - C77CECC9AC4F4DFD6053FD7C5522613E /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 5DAD5AFD11BC3598BCBCDD81080EAE00 /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - D66688B11475B4199D11722091F2555D /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 171A7BD2A78AAADFCD5F299B5E015823 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 29BDCA86320DF3D2AE1D28F1F86EFFF1 /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 88BB92A97F449B7C3EEC6F325BE7F430 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - A7BC9901CFC392EB258925F427749AA8 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - A16202F52EDBEA916135EDB36239F14E /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 0260815802465C25E914D0890C47405F /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 78349B94FC9ECAF4584736E38CB543A1 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - A16A94B5292CE9232B746C596E48989A /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - E5D33A55932B7C324988D4405C1C33A4 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 72D7ADEFE9F74DB1BB38D238E2D1F771 /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 67EE73B0752D121193D488BEB0C4DF4A /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - CE3F370C17756789BFA46B6CAD4D00D2 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 09BFE50C8EE2270D963E915A687D471A /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - BE35728B1BC6D2E72FFCDD05C8B70C6E /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 784DA9CE2BD60A8EB70C76EB398D0911 /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - EF52684507F91CE1F784E3AD058F428E /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - A8DF5A2E03FFF43D6197AB853713521E /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - B7B887907DD1C5947A4AA6E742F420CF /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + CCF6596FE6CEC605DFC6862898C08AB0 /* common.h in Copy third_party/upb/upb/hash Private Headers */, + 0DF66AE1FA1C58EE839FA4CBACE19374 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */, + 6881DE438EFEF3160714EE1C9959BED8 /* str_table.h in Copy third_party/upb/upb/hash Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers"; + name = "Copy third_party/upb/upb/hash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0C7FCD21E118E7E4BE142F47CD198ACF /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { + 0C3B447EBAD6C856C3D71E44E6F29C89 /* Copy src/core/ext/filters/http/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; dstSubfolderSpec = 16; files = ( - A30C3EEF5B4F9153D1E11002ABD1E899 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 11155A3AE03CB3D2A4AC7F8CD7597015 /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - CF7B9307FF8B2D8722A707F80247447F /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - C5808ABF8926C63AE651F73DE55D08E9 /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 7E726C4C29B1E520804CCC8A2C4805F3 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - EBFAA4690E09A4EDA108D3BBEE45F6E4 /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - B5138857C3FD4E6E985DF9E97B56CD4D /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 1F470096A14810424E8D343CDF094C89 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - BC79B0CE780C686F30568FC7F7BC4438 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - EE41F578F775F9A5DEBD8011892331EA /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - E7D0FD54D56212CC3939B64DA5DDE886 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 2AFA65BE1938EAF77890B1CF630EC77D /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - BB9D700BEC9144D4F3EAF50F1916A721 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 43F1943EAF61A5B06863BB43206DC50B /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 419B85036BADBE4F91AE9C5A591E9EC1 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - B833BE84687051FAEB95869922E32248 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 8B37302DAF703F2F41DA10E4C1927943 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 87C7F382791D53CBB11565D27CAEED7E /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - E62892AFEA17D4582C708F209D30401A /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 08F1EB62EC62AD1BA52EE17E6AC881AB /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 74B19833F37FAA94C9EB0A017786A359 /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - E61E250378C86D6569390813F8B104A3 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 4EDD77C4244FBD8EDCFD0AE1512D2043 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, ); - name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; + name = "Copy src/core/ext/filters/http/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0C9A2F2C27B75EB4543CD09E5A5065B1 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = { + 0C401C42E48356E7980C1FDF11B657B5 /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/overload/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1"; dstSubfolderSpec = 16; files = ( - 5FF03F08A4316CF4DA9043F3D4E4570A /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, + 11DC85157D0C583331C3829A897391AB /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0D765F34F6A7EDA0E01A0B1A25A21DDA /* Copy third_party/upb/upb/mem/internal Private Headers */ = { + 0C8C12BB4D232D62947EE4247755FFC7 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 277E4256D693D37F518EFFED433098E4 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */, + 00712671A0B1266214077E7222698CDB /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/mem/internal Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0DE38C6136E1C04B439C4AC1B64FD10A /* Copy src/core/lib/gpr Private Headers */ = { + 0C915EE597B189CBF0E8BD0B98B94AC2 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 17FEF37B086BF65B8E549B71E7FBD1EB /* alloc.h in Copy src/core/lib/gpr Private Headers */, - 3B76BBF0E86AAC505289B8122E85C6E1 /* log_internal.h in Copy src/core/lib/gpr Private Headers */, - 0F082AE0620C195EBC43843EC4FBEAB5 /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - F084AED2952624DCA99EABAFF1F5D81A /* string.h in Copy src/core/lib/gpr Private Headers */, - C35A3E654D5851E95E5B30036238BA6B /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - 83124412F4A3305B1949009C2BC63B9D /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - 54DAB5149E308549F69155A1FBD232A9 /* useful.h in Copy src/core/lib/gpr Private Headers */, + 7059C0E906D55F7FA0EE26E9DFD817D7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 97A3FF3457152FC88A9EB1D2ADE632BA /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + EBB5B5FB2A7E2D8348BDD6687249BA13 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 06F7679B29E8877560D3F3C91FC8209B /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 40615F5AF220BF26AC70C981970383D7 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + ABC80CA58A704387A9783A4C5AA89B2C /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 934775AB7277261A4649A16D9DDC1030 /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 5554E5D771E47943C25CFB71FB927476 /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 22E7981AEA5F396E824B44D11D080C03 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 667883AA85E5226F33D36D66341F05F7 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 08D2989AE38627DB84A70A9BB17D2ABC /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + E2676A588AFF72A6CA6F73025221B7F4 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 5D239D3108A532A572EEFC0449C6B2AE /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 7101969016683EA4714187AF9F8D4DAB /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 1ABA390C0DE2DF3E4912EA824BA3356A /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 5E37E6453853BC079F1B7616D0832F82 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/lib/gpr Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 0DE726A42C43AFDA4639DB18D0CFE270 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { + 0CA1F1E0A60957931BA68814431C6781 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/gcp"; dstSubfolderSpec = 16; files = ( - E385A9D261B6C997871D7C75E7E1A11E /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - DAB143BBFF4310B07C047B2F5775C8FC /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + B70324E3A61903172ACF5FD7800C2068 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + B4F50087A6C6AB78BD26D08380DE55FA /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + F9BC42D0D218E040FE4CC53708C0F32A /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 80673EF92B1008BFAB547F924CBC4509 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 531149263B9B3B17DD2DE09CEF7D9CF7 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + D725AA98223E105F563F1E54E2519C66 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; + name = "Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0CBD1B5C0BC0A9E26E9EC0843D43C65D /* Copy generic Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/generic"; + dstSubfolderSpec = 16; + files = ( + 9CAF84E35DEF77D9FCCEED52C1B68CEB /* async_generic_service.h in Copy generic Public Headers */, + 608CAC9A35C4FE9C00A3EE0E79F69089 /* generic_stub.h in Copy generic Public Headers */, + ); + name = "Copy generic Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0CC4F99F09DAFC4CD318F726060C00CE /* Copy src/core/load_balancing/outlier_detection Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/outlier_detection"; + dstSubfolderSpec = 16; + files = ( + BFCD6AC51AAFBB8C489046D64DA4186F /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */, + ); + name = "Copy src/core/load_balancing/outlier_detection Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0CF9D68BF83D066C2AE1F48A85F6224C /* Copy src/core/lib/transport Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; + dstSubfolderSpec = 16; + files = ( + AB693C4C2D6D61F969D5DBD489512570 /* batch_builder.h in Copy src/core/lib/transport Private Headers */, + BF5E6C6A8A00B9DE9C55BB0799F46732 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, + 62DE9129F0B66F7B2C6B1DF1D625991B /* call_factory.h in Copy src/core/lib/transport Private Headers */, + 8C42F428A52181C51D74092F42603730 /* call_filters.h in Copy src/core/lib/transport Private Headers */, + 98932F008B789E7F448429102B01582F /* call_final_info.h in Copy src/core/lib/transport Private Headers */, + 3C17471ADE90540BE7347630D7ECAC93 /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */, + 23A32E528457AA170CA9A4B467253A31 /* call_spine.h in Copy src/core/lib/transport Private Headers */, + 1E03CC3BC2D70B25ACAEC19168DCE2BB /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, + FDFE135A8DB11205850997A78840F0E9 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */, + 39AE0FA98633D9CC1E553F90874E6ED7 /* error_utils.h in Copy src/core/lib/transport Private Headers */, + 00C8C9BDA6F40A49D6C04134739E3A9D /* handshaker.h in Copy src/core/lib/transport Private Headers */, + 469FE07E2E053B7E3D2058EDBDD4A60E /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, + 1DC0283A78DF53763EEB53CD4150181E /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, + D590205E6464E9785986C8CEECCFD7DC /* http2_errors.h in Copy src/core/lib/transport Private Headers */, + 4F1E1C6122F040E89D1A944DAC5B6A8C /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, + 80F615096DDE56DA09E22B0EEA1DFF2B /* message.h in Copy src/core/lib/transport Private Headers */, + 544F45FE6D85A0AC629A030980602710 /* metadata.h in Copy src/core/lib/transport Private Headers */, + 2A27009B6A7227089147A05F39B09B38 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, + 02FA4749710C7956C90A51357E555F1C /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */, + 30255EEB06A58D09A99F937EA6728DFD /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, + F9534BFD461DEBD25D421B6FFFE25FAE /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */, + EAEEC41192B5735D504F8D23AA338295 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, + 22C07AA9762C6EB1608BD1FF165F8DB1 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, + 3A5B8BDF5B59D20173B58AB3D850E052 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, + 8008215B261221CE1FAD1A74CB483613 /* transport.h in Copy src/core/lib/transport Private Headers */, + A2F41A47710A025C40CBB5AD8B2E33DD /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, + ); + name = "Copy src/core/lib/transport Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0D11DCDE6890515EC96DFA495E187233 /* Copy third_party/upb/upb/text Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/text"; + dstSubfolderSpec = 16; + files = ( + B7F3FC16503AB1D2F9897EE1AB45D6CF /* encode.h in Copy third_party/upb/upb/text Private Headers */, + ); + name = "Copy third_party/upb/upb/text Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0D635D3D8EA0862EF4787284CDABFFA6 /* Copy third_party/xxhash Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; + dstSubfolderSpec = 16; + files = ( + 5F57695F712AC0455D3DD76EEA79A17E /* xxhash.h in Copy third_party/xxhash Private Headers */, + ); + name = "Copy third_party/xxhash Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 0D7B521E95D8F91DA8B3D8B35045285C /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/v3"; + dstSubfolderSpec = 16; + files = ( + 6A41AB589F0F50C76C260AD278F39D0F /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + C5BC81835F85677640DB04DB36F9569F /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + 0CD6E4A2FA0A72592C794B231CE6E728 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 0E552817E26C8805900537BAC4926F17 /* Copy crypto/bytestring Private Headers */ = { @@ -10352,123 +10579,223 @@ name = "Copy crypto/bytestring Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 10028498FDFABEE7E64274352CA67716 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { + 0EDBABEF200B9C1D90FBC4EF0460D64F /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; dstSubfolderSpec = 16; files = ( - 1EAA0780619723FB497B2D3580E60C55 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, + D3205EB17F01C53446BECF642D153134 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 07A9496DEA2D397001E0B2D996CE8528 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E6D3C4117FCDFFFDA3A0B44A70716B27 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 7E43BE473ED5CBBD5B760FB513437C53 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 03EF35307C9C7C219F457247C5DF92F9 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 9151B0AD85F38D505E66CF35861E7AED /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4D32873C4ACEC2A1130235AB48B4818B /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 7C76AE87E4B134094EC0305AC1D69EED /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + AEC46A4D9B2DDC3E9280D1E1E1A32112 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + EDF6FC5B030CFABD6D6878772B5A2C17 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E719BA07CB19794DD50CE5D17F9F76F8 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + F6E311277720BAEF9F08D6765D464FED /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 8DFF69A73D2925415D89F7C33EF24DDB /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 1E42A16D14C97EF1D3D416E41F9F1935 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 91AEFBD0E631EAD390B68AA795E4342A /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 0D0B41B112AE03861DE64362A08C254B /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 954DC8E79B430BD7B7DD95F9260ABCEB /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B4527BC0CBA86E1131430A0FF3EC6BDC /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 5EF6DD933A01B6A7F4CB3A699F377701 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 23ACB51FFF9C5B55490607D2D6E351A3 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 321367B53CED5DDB4DADF688D39E703D /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4C369D62C3C7A1166C82609259FE2904 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 45BF535D71B0A61829E381742F8A3542 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 769C5DD2EDBBDC383DC86E15E92FD4AD /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 61CD7AF566F21DAACF468EDC00F18344 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 51888A79273053DC9B175E526F49E559 /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + FC829D8BDFE790B2CCF5482A74BC4819 /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + AB49F328D974E66D586E2F8073C35EF4 /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 83341BB95DE3791D6796A62489E70335 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 620F999A16BA05E0C515353EE95FCABE /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; + name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 117963FF940C1EC1565E6C00943AF413 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = { + 0F5050147D02F09B8B1D5D063FD162A2 /* Copy src/core/lib/security/authorization Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; dstSubfolderSpec = 16; files = ( - 8243996C6E8EBC9C548520BA6B21CB4B /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - 771132BE4EE631231358A2E136963DD2 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - C91FD4DF9FC354F2F7BBFD001DFCE1C6 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - 69131012665C23B079E4F1096022FB26 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + FF1EC06B3981CB8B80BBFA750B65B5ED /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */, + D25ACC15FA47DAA2E31460CCC1178DA0 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + 9563B0B8F26BD35F96980DA43D578EF4 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, + 1F72F82934DE40C1325451BA764118EE /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, + A4CC7CCD81CD4C7EEE329268681D65AC /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + C891F224576A6D8BCB1352E279BA66C8 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, + 7396DBA5A596A8C41869A3191A65C8A5 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, + BFD7438AF6D251BFEC83A6F2FD6B136B /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, + 2E69AFEF5231B483915743A9DA13F7C0 /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/lib/security/authorization Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 11E9F5475C94684B89BCECD5F98DF7E3 /* Copy src/core/lib/gprpp Private Headers */ = { + 0F726642B38AF76EDCEBDF2097EAA27D /* Copy src/core/lib/avl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; dstSubfolderSpec = 16; files = ( - C1FF87A09C18EDC2F396CFC24A3A4C7D /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - 35DCDACE9F4D72EA3DFBD3A44851D310 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - A0CB69B288BA265D098BA3B63E46B767 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - 1EDB2C66495196D867BA23122FC5CF99 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 19114FD19BC5FD1ADA8C8ABBA08D5F9A /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - ECCFEEB8935B840556638E4FAB226D9E /* crash.h in Copy src/core/lib/gprpp Private Headers */, - ECB294B53683D4F672957FCA5A6FFE4E /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - F4B1CF13EAB3CDF5606D2325D7E2A6EF /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */, - 23A84B0472238E1F79746454B71BB032 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */, - 5ADFFDABB2ED5D7045EDE32067432E1D /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - F142A373BEB24499206DB8675F973B42 /* env.h in Copy src/core/lib/gprpp Private Headers */, - F686AD929F3D2EE457DCF2B56AD6307A /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - 07289ED206B88005994C9EA7DE81F1B5 /* fork.h in Copy src/core/lib/gprpp Private Headers */, - 2E745542F9EDB57AF14E8B15ADB27D6A /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 2BDCF3C18C65C5901F0B0E44C2AC10CA /* if_list.h in Copy src/core/lib/gprpp Private Headers */, - CC2FD5588F9CCC22CD96098335452E70 /* load_file.h in Copy src/core/lib/gprpp Private Headers */, - CE44C7F7CA5AE31FD0B2615B36B514AD /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - EDAA853D4804740B57EC44E465FFC606 /* match.h in Copy src/core/lib/gprpp Private Headers */, - DA7F4F0F72ABD0EA0F892AC137792110 /* memory.h in Copy src/core/lib/gprpp Private Headers */, - 4F846479C43B6911169E12EB9EB3C933 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - 6E06B7C42330201E38FAB50EF766D7EB /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 29B865588A1E1CF2005E6FC62BC7EACA /* notification.h in Copy src/core/lib/gprpp Private Headers */, - C7980AAD2A4BDEFA6F8C6FDD13AC62CD /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - 512E7B2AC7EA8386F3D500FFA083DD67 /* overload.h in Copy src/core/lib/gprpp Private Headers */, - 0D963D02DD1FD0E8157622391ED909AF /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, - 2FFEC7A6FC516B235FCE6BEB07A16BF8 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */, - F61B3AA370DFFA0C5E8865034720B3EE /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - AB8FE92449D06DF825AB7B98CC827D91 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 7AE0DF4BEE6C1524F6974935BFC2E012 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */, - A64407A3F52288F9D2A244311BE6E6C8 /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, - B03749462C31CCE06ECABDDFC69A1401 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, - 22B6E6AF3F39173064CDF539630EB36F /* stat.h in Copy src/core/lib/gprpp Private Headers */, - 59E0800EA5A2A1D3E2B49B12246A9784 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - 3918867687AE6101A63A630CACA7FBED /* strerror.h in Copy src/core/lib/gprpp Private Headers */, - E5C73BCDB3A5F27652B1027A2698843D /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 7720643DBED07C35C5F3348113E4CC57 /* table.h in Copy src/core/lib/gprpp Private Headers */, - DD96BD0ED0F28C50012E915EAE7EA3B2 /* tchar.h in Copy src/core/lib/gprpp Private Headers */, - 9CA37BC9E09E0593B7115AE396D39985 /* thd.h in Copy src/core/lib/gprpp Private Headers */, - F4450DB4DE9A2478DE39C342D03E6F19 /* time.h in Copy src/core/lib/gprpp Private Headers */, - 9487FB8ED510BF02BFFA1A8DB29956BC /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, - 4B74C29DE61DD895A9723B9A4985000B /* time_util.h in Copy src/core/lib/gprpp Private Headers */, - E50436E9F5EFAB2F3E26932E046094E3 /* type_list.h in Copy src/core/lib/gprpp Private Headers */, - 3794F0D87FB28D024F4437A8C052CCDE /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, - 25F93310ECC9B89796B1F48DA968A935 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, - 456ABB4A3AD1EF931FF5151941EE79D3 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, - 4C13219F7C14002BD423F8CAB73866FF /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */, + C933D0751433A7CB20C1D2C691624CEF /* avl.h in Copy src/core/lib/avl Private Headers */, ); - name = "Copy src/core/lib/gprpp Private Headers"; + name = "Copy src/core/lib/avl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 120D5C3A813BC9EB3157A9B678D12B48 /* Copy src/core/lib/security/credentials/fake Private Headers */ = { + 0FA80D7E8188ABDFD1AF461D11184C34 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; dstSubfolderSpec = 16; files = ( - 13072E6FAD289AF7C4E375250051AB46 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, + C64DC72AAFCC3A21A8E2940EEC7BB935 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 9F3795819989F357EC00B13731E8ACF6 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + B0FF10078A4C884685AD4A0D4C4D7FB0 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 60D69723AC15DB553FD8F4B690B6E7B1 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + B44F173FBD46EFBAD0B1A8B4AC881914 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + A4CE71AEC78CBCC35E770D4FBA48E533 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; + name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 122642D27972E7D20BC80F682A30B6B4 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { + 1066F9514777799921FF8C1E2248CBD1 /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 62888320C4683ED1B8C638AAC740C977 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, + 4DEB490EDC9393566C7BD00B0DFD636A /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + E55E07AF3385690D57C71B5CBAA24EFF /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 5BF36F80D22A88D9369F5F853EE75B69 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 806D545F500416D1AA5ABF1D4471EBEF /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + C13CEFCAF521FEE5EC6B139115777431 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 867453C322EBA24E23FC060E5C7556C8 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 92836D69CC5DFDAE31C30706CE010ED7 /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 43D196C79ED41D746061B589A29406FF /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + CB6B24A6D6CFE0A8ED3DAAA2FAAEAC86 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + AEFFFDD8018E9F8A948A600A52F2B5FC /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 3AFD12617B6031A25791C2185EB6ECD7 /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + AB5BC3C24CDD0F04DCF957C9BC85DAEE /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 4C11A32FFBB1C104B851C6B35D508C8D /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 1803E9BDEF37219D3001D286A979C42C /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + D41A098DB2CBCAB0D672CFFA3E8913DD /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + F78237FB3B9F529A46EA59967F512459 /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + D85B153B121D689694751F92A814F727 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 689F07C3A1346E7113CF712A2BEDE9E9 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 4C0AEBD1EB6589B83AABA771DF0B2305 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 689BFAB11BA1F05184D0DED1D19D7991 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 92B28FCC7E884BE0BA3142D62C89E35B /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 14CD19743C99C139D9903D738F249448 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 12E745A8A7BE2C338E22EC876FC466FC /* Copy src/core/lib/promise/detail Private Headers */ = { + 107C37D9158102F9EBC2FC82B5FBF4D1 /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - 4166A440C4AF4FDBC0DBDD9A07256B22 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - 2F03F44CDA48142427B4BB811DF0A1FC /* join_state.h in Copy src/core/lib/promise/detail Private Headers */, - 9A13E554BBC8199862F5811D6128D832 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - 8239427792605389F887B6483D6E5B14 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - DD4CCFA70DA47E19B8D67186F9650DE1 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */, - D8A8CD9F011440E9627944BBB66B2E61 /* status.h in Copy src/core/lib/promise/detail Private Headers */, + B00E7F0193917220D67FD9C0E51066D0 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + F160FB1604E99AD31CEA9DE2695D70F9 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/lib/promise/detail Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 108A33FFCC575E12179BE596357CCD99 /* Copy crc/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/crc/internal"; + dstSubfolderSpec = 16; + files = ( + 802CD5D3315A40C901A494ED9C326997 /* cpu_detect.h in Copy crc/internal Public Headers */, + FC070304A8F7938AE509E8F952482508 /* crc.h in Copy crc/internal Public Headers */, + 34A8F658A556BA6F245535F0CDEE08E9 /* crc32_x86_arm_combined_simd.h in Copy crc/internal Public Headers */, + 32E33B1CA0A3426D8B5B6FED31CEE548 /* crc32c.h in Copy crc/internal Public Headers */, + 896C16E50BE84D46B46C9FE1A1E5DB61 /* crc32c_inline.h in Copy crc/internal Public Headers */, + 2E477BFA2A3FF17D3782217864C5713A /* crc_cord_state.h in Copy crc/internal Public Headers */, + 6871DA5388F29BBCCCA4223D5B81768E /* crc_internal.h in Copy crc/internal Public Headers */, + 620D98CF2A2070274E96EEF9540442C6 /* crc_memcpy.h in Copy crc/internal Public Headers */, + A7EEEDE09439FA545B5032C47C6A1B41 /* non_temporal_arm_intrinsics.h in Copy crc/internal Public Headers */, + B3AE074B92DE76CB7AA906F3F070E4B7 /* non_temporal_memcpy.h in Copy crc/internal Public Headers */, + ); + name = "Copy crc/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 11E6D96B99A44BA557A505F0DE6B4631 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; + dstSubfolderSpec = 16; + files = ( + 3C350D227F2EA3863088F3DAF1E60290 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/ssl Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 11E86B8609CA552C393386AECE635284 /* Copy src/core/lib/handshaker Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; + dstSubfolderSpec = 16; + files = ( + D549ECC8F5C1B7326D78582B8D261C98 /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, + 6801EE02F2FBC569FAAD7C864EC9F8CA /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, + ); + name = "Copy src/core/lib/handshaker Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 122EA14A275FC1833BB2CB2B78C3C0C6 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3"; + dstSubfolderSpec = 16; + files = ( + 48A89022B968252EE4ED63422B5A4969 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 136309B79A80D534ECCA67C1F904272C /* Copy status/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status/internal"; + dstSubfolderSpec = 16; + files = ( + 0308F03263F293C7A892C8DBEAFF0EDC /* status_internal.h in Copy status/internal Public Headers */, + 665FE432CCF7254403FAFCA3B90C5E3C /* statusor_internal.h in Copy status/internal Public Headers */, + ); + name = "Copy status/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 136C1BA563C7716D718E0CDCFD64C4C7 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/overload/v3"; + dstSubfolderSpec = 16; + files = ( + 67A3E5ED03322DAC07B64E2987E4E623 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1382CD9666FFDE788A35E2E2DA21C58B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3"; + dstSubfolderSpec = 16; + files = ( + D4903A45946C8EFDBF767B59BB575460 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + 1B98844132F9ED84FC7B76C5E0225966 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 1391DBB1CFC96C297231D7711CF28790 /* Copy crypto/fipsmodule/bn Private Headers */ = { @@ -10483,106 +10810,121 @@ name = "Copy crypto/fipsmodule/bn Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 13EF3696078890C595B734D1E43E85FE /* Copy src/core/lib/security/credentials/local Private Headers */ = { + 13B8C877AB3126098A1251F3DBBA7864 /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; dstSubfolderSpec = 16; files = ( - CFC6D461F696CAE6827B639FEC59E214 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, + 992287070334378D8562CC92001585B1 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; + name = "Copy src/core/lib/security/credentials/insecure Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1455A502C5721706356B619DCE581C8D /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = { + 1436BB31FE243E40D4A9E381A40E7F8B /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/tap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thready_event_engine"; dstSubfolderSpec = 16; files = ( - A479BE2505C07D753DE863DD9AF232E0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, - F73CDBA9AC08FA08A45A4F8ED0C15FB2 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + C3E752B928E9436EF2034243BC7835F9 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers"; + name = "Copy src/core/lib/event_engine/thready_event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 14AFB085202AD8602A034A1757592A9B /* Copy src/core/ext/filters/rbac Private Headers */ = { + 14D8B838F86079A9536E825628E91FFD /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 77CEA959002F566CEC648F9E3469377B /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - 9BBAAFA919DD37C57273848395994B65 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, + 21D654ABE8AC737B89EA4C89D776B37C /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + E55A20086BEBA9EA99F2D4E658F8D631 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + AAA97544A22A18665D67812A2CD4CB32 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + E1510A9892814F50D6E3C39FB04B8D56 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 68FF68E483B0B64A668D5546A5EDF943 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 85EEDE3DC9E53085BA063C6B4940343E /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + D31DF18232A7746F0B54F46428AF8BC4 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 9C99E99761EC96C0B45FA05B13D2D3F4 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 8DA8F6B7D52B70B632F470108E598717 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 5E3FFD6B92AF0D515D0D976E43921CF0 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + E67F29469C5DA380EF3FECADBF3AF717 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/rbac Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1520166C1845838DA1CB2D4ED6496991 /* Copy src/core/lib/surface Private Headers */ = { + 151921B958E8DC850C02D1BFF1A8954C /* Copy third_party/upb/upb/reflection/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection/internal"; dstSubfolderSpec = 16; files = ( - E13F250DB749AC30348571DD62FBB9FC /* api_trace.h in Copy src/core/lib/surface Private Headers */, - 3880809BA8316FF690C50AFDC8BCA563 /* builtins.h in Copy src/core/lib/surface Private Headers */, - 2D74BFC70CC8681EA7E4CC1768DF9CF7 /* call.h in Copy src/core/lib/surface Private Headers */, - F04B1768B4CAE68CDC3A0830A6BBE640 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - 3552A6CF2CC445EE7DC0295567E5099D /* call_trace.h in Copy src/core/lib/surface Private Headers */, - D6732EF87F7F82B248C25992923DC176 /* channel.h in Copy src/core/lib/surface Private Headers */, - 1F1C585BE0EB60C9D24B34384D1648D1 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - A773A2731D1D99DA4ACD84918A95BEE8 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - C983478BB80BAF0456AD693D6BF9ADE0 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - DAB8A462017E57829DFED60C47BF3F10 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - 3E1F316B4DDE3234BC3E2B151698A4C1 /* event_string.h in Copy src/core/lib/surface Private Headers */, - A9DC426BB37D02688EDFD3DA29B42E06 /* init.h in Copy src/core/lib/surface Private Headers */, - 086386EF121745DA58138E0F1D9EE375 /* init_internally.h in Copy src/core/lib/surface Private Headers */, - 41864D416DE279FE70B3281B664B57A9 /* lame_client.h in Copy src/core/lib/surface Private Headers */, - EB70629A0B023428BAA492A2404E556D /* server.h in Copy src/core/lib/surface Private Headers */, - D1DACF39D83B09EE492F1DA6E4378E70 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, - 1B824E1BD3AB070C215007DFA3681D59 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */, + 869AE5C0819BAF2805260590CAFE288C /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 748FED1B814F9FCCD60763E52F6980E9 /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 92A8609836565D14B7E47BA65E67DFF9 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 20F911DC53235EA92A6C1B39F2A0906E /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 50171DE8F37B1003AFD6707B5392BCED /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + B1870A8DFCFD4FB75B0B33A8A60AF822 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 03B533266A0D3C896E6D4FE2436B3929 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + CB943BD9CDBC6AAB6AE6B16A67648ACF /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + E5B868F457F91C1035F3E8A824A801DE /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 02D5044319CFFE1341B1E0849C5861F1 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 005AD4F0C607858AFF16AAC156761E00 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 21A6F4530F989CCA2543CD7B07E3879B /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + FBACC455918148B6932FA6A36371BFB2 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + BD9AE4FD898CE11C78FF25F4C94F920A /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 451FCC377A0E89E58FC3E7759D93F391 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */, ); - name = "Copy src/core/lib/surface Private Headers"; + name = "Copy third_party/upb/upb/reflection/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1532FEE4AAED8725ADF675568B72765B /* Copy src/core/ext/xds Private Headers */ = { + 15233053F725920ADABD6D0BAB123145 /* Copy src/core/lib/promise Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; dstSubfolderSpec = 16; files = ( - 98B5DFD586B2C539B893EC5645BCEB6A /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - D8AECC1B26765B89557014CEA2ACD203 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 22CF0459F9E911D05320291F27EC1C92 /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - 7129C598F2003288E4107490E3FB9AB8 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - 6C517DC3D7D748F4FCDC377E036C57FA /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */, - 38B22CFAF6AC709625F45FA20306ED9C /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - 2A71F5B462AE5E574C107AE8AF242564 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, - 21D108F3D377B6E93ABAA85D6D848CA7 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - 83490ABE0B4DBBED3729DB26126E2CC8 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 8FF9B2CC0E8EE4BA8C189001AFE08B11 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - A15A7C012362F86345DF5AC0BC5D8349 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - 878A0686F85BF7E3074DE8A687476226 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, - 66E50E16E5EE7E1B07C964E85FDFA666 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 6F7F8822A54810F9BC2DB07A08C368DB /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - 1B807E3787F8163E38E7DC7217D05FC3 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, - E9E0C3D64C2B6B134917D13F92BDF96A /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - A47F64377D5E9A2483A9FAE721492893 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - B26210717556A5BE23CA56DF34388E7A /* xds_health_status.h in Copy src/core/ext/xds Private Headers */, - 13DAD0F8385DCB2BD56537E033E43678 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - 193D04252D9D516F248C78BEEEA4D36B /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - E328F7861843B0CA7BA5C2526C5381E5 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - 7C2824BBBF4DDFD1F536F17F4DD01071 /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */, - EB31EFB8241467684493BE78303335FC /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, - 05F5CE73363920AF0295DE1D464EABF7 /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - 5FF197C9399E8D07FF084C0FBE724B2A /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - 48F8027BFE17266B2B0199FBA99EF299 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - 623E6AF51A23BEE43E97246586B50E20 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - 562A2B2503EC299178B092D80F627269 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, - 27A0DFC24CB579A957B0EC0120015B04 /* xds_transport.h in Copy src/core/ext/xds Private Headers */, - 2333E78E9B66E7CF7F6E568E27AC58DD /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, + ED199788CE575CB01CD0FB7D44F8CF62 /* activity.h in Copy src/core/lib/promise Private Headers */, + 443DAC9D42C592948F9503BB5D9F2B6D /* all_ok.h in Copy src/core/lib/promise Private Headers */, + 4B40F177D8DB9B1AACD33836573D032B /* arena_promise.h in Copy src/core/lib/promise Private Headers */, + BB2CA38B1A81DE075AFDDB44332D51D6 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */, + 369B12B3923CF7889180A648D44936E7 /* context.h in Copy src/core/lib/promise Private Headers */, + 3262645271865A15C9E69E87D55E78FD /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, + 88C0E0E843C889DE9243CE9005AE3C37 /* for_each.h in Copy src/core/lib/promise Private Headers */, + 834C3A40C08F1CC2C7BFBEFD0EA055DA /* if.h in Copy src/core/lib/promise Private Headers */, + 705711130A8024012D9A31254E9E0D98 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */, + B57C5DDC17FD3134F114BE1323371E8B /* latch.h in Copy src/core/lib/promise Private Headers */, + 66AC18A45C9A8686A6DD9DF45A12ED44 /* loop.h in Copy src/core/lib/promise Private Headers */, + 837836C96FDD106169F94E69954B5CD4 /* map.h in Copy src/core/lib/promise Private Headers */, + 27A4A0EC163CA384E059435B774F7C10 /* party.h in Copy src/core/lib/promise Private Headers */, + 1B0AA09C57BB628892796295878F5B3D /* pipe.h in Copy src/core/lib/promise Private Headers */, + 6C3D6FE06FB54835F8049948E2CED40B /* poll.h in Copy src/core/lib/promise Private Headers */, + CAB9A51CED0F2BD59F73A453D373FEC6 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */, + 8F45EB02C775C0DD09C8846F917A6AE9 /* promise.h in Copy src/core/lib/promise Private Headers */, + 900D22F673BB488E73585068218F1BA4 /* race.h in Copy src/core/lib/promise Private Headers */, + 6BC4A321A0339F2E8226DC0F387AB483 /* seq.h in Copy src/core/lib/promise Private Headers */, + 37DB0E182646FE183A4E5B2ABD635006 /* sleep.h in Copy src/core/lib/promise Private Headers */, + 8658A5D2E3120DD26E627AE3658FE8AC /* status_flag.h in Copy src/core/lib/promise Private Headers */, + 27E29F7EDB3DBA19882AC6FF8481117A /* trace.h in Copy src/core/lib/promise Private Headers */, + A2A6E8E0AE44DED549823119489AE07B /* try_join.h in Copy src/core/lib/promise Private Headers */, + 55C8F11F3B2907340B510FEA084CFF0E /* try_seq.h in Copy src/core/lib/promise Private Headers */, ); - name = "Copy src/core/ext/xds Private Headers"; + name = "Copy src/core/lib/promise Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1528A102B9D50249FEA45100BA9EFFA5 /* Copy src/core/load_balancing/grpclb Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/grpclb"; + dstSubfolderSpec = 16; + files = ( + E04F29CC3E2DBC692B0657EB9254F907 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */, + F45FF7E353A02D450DCD5ECD61DE8CBC /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */, + 88D85C36CADC7E7F48E9ADD722C79817 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */, + F3D8A6AE217C50506A74DCA122C7A537 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */, + FC10250669F1B42462F6A71EC57E2A0A /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */, + ); + name = "Copy src/core/load_balancing/grpclb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 15373C0CE583A02D7A52127D09362B23 /* Copy crypto/obj Private Headers */ = { @@ -10596,74 +10938,77 @@ name = "Copy crypto/obj Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 154C9DE092E823414A380CF924164692 /* Copy third_party/upb/upb/message Private Headers */ = { + 15A9156DD1AFC0D142D3EE6BFA99DC39 /* Copy src/core/ext/gcp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/gcp"; dstSubfolderSpec = 16; files = ( - 659591FB2E63F3266A0138FE0222B699 /* accessors.h in Copy third_party/upb/upb/message Private Headers */, - 3B03643E79C7ECEF0D705F58DDC050AB /* array.h in Copy third_party/upb/upb/message Private Headers */, - ED002AD544066888C9AE3848063DBADE /* map.h in Copy third_party/upb/upb/message Private Headers */, - 6A86CD744BF2DE1794871634453610A1 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */, - EA04BB23F54D2FE22D885EDE4C5F3FE0 /* message.h in Copy third_party/upb/upb/message Private Headers */, - 617BE983E7613DEE85B331584B0C4E53 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */, - CD5D8CEA749C8527DC6AB31E47CD43EE /* types.h in Copy third_party/upb/upb/message Private Headers */, - 36929D7AE258738DA4A08D6A77885078 /* value.h in Copy third_party/upb/upb/message Private Headers */, + 56A83896602D4E60F019D1DB65D944FC /* metadata_query.h in Copy src/core/ext/gcp Private Headers */, ); - name = "Copy third_party/upb/upb/message Private Headers"; + name = "Copy src/core/ext/gcp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 15A6706451311EC3C8CDD89B4EAEAD4A /* Copy src/core/ext/transport/binder/client Private Headers */ = { + 162A23C7ACB8ECE714A07A445CD32CF7 /* Copy src/core/lib/address_utils Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; dstSubfolderSpec = 16; files = ( - D34431461CF05780FC9937CD5800DACA /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */, - 8DE05331EA340F620914B768B50E20AC /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */, - 7CC8A9B123A99483B9D6056A7F7F69C8 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */, - 41572A4BAD4344F1C5D498869ED35558 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */, - F7C241BED43D1A503086DB039825D6F4 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */, - 2E06A1637FF6038801E9BAFDF7C1F047 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */, + AF0F8B646F4F2B6FBE2D884471D50795 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, + 8FEDCA525BA1A6652BF9E46EBEF98527 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, ); - name = "Copy src/core/ext/transport/binder/client Private Headers"; + name = "Copy src/core/lib/address_utils Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 15C88B946E616C8FAC56B2B66C5756F0 /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = { + 1697B4BC87331A3BFE8009F65FE80027 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3"; dstSubfolderSpec = 16; files = ( - 25532DE736FF1F46C61B3E63FF5BC942 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 42835EE23E9BDBB0B9A6136A3B293E75 /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 56A67887618B82A00667D7F4555E993F /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - F2BB0422357A3A85074F11280F7604CA /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 01079E97192312B2E5FE6147405F3CC3 /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - BF5E93527289D288616B45597CF00BBD /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 7D26E3EFB5D0456FD2D21B09F06D02C6 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 53E11B737CFC23281228D4FBCD49B041 /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 1BE0BC25789AF3EDACC8090021AF6D46 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 4966A48A7DE4C7EC60C9CFEBE4044287 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 04B3CC6889AE1B4CB7C13841BCF8716D /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 1C8CA2967B649DFA63FD044BE7A65210 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 6B45F64F69C34C8E168040D4F00894AD /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 68A5C2AD1CB9A4FD25EFDAE5C12D9090 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + F9CB54835197E29E202826F1407EEF48 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/google/protobuf Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 170B8237DD8FD70BE8EFFAF71778DB0C /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + 169E8BD7E54C996C7ED123C002473549 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - 94BD6CEB00F2A6936B42C212FEA3A033 /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 44D32B7662A0215E89BAD5F6C4FC6F54 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 2C78D89571C9AC0E976CC755C21AD1B1 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 7A3E7654CB88F07AE206B05F3F402012 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 498F51F15A995DD776D3CAB49005BD60 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 8B8D383E477783962D87DA40602DE969 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 16F71D447818371977F5077B21F67755 /* Copy . Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstSubfolderSpec = 16; + files = ( + 3E5C752538B53588FBD9AB4778E6C2B0 /* byte_buffer.h in Copy . Public Headers */, + D92168C47B4283248CB44B692F941392 /* byte_buffer_reader.h in Copy . Public Headers */, + 04B157F1EF6A8F1939377B8E90943AC6 /* census.h in Copy . Public Headers */, + 79B8DFB67E10A55BF1C16A9A80002026 /* compression.h in Copy . Public Headers */, + 1CF2AA44990E1D0FE53D588E1D87B9F4 /* fork.h in Copy . Public Headers */, + A220D3BB48E0D830E34DB94419E05837 /* grpc.h in Copy . Public Headers */, + 3F37425B480147DE8096122CF5310CFF /* grpc_audit_logging.h in Copy . Public Headers */, + F6755B628039FB5F27D5E6F60B90D00C /* grpc_crl_provider.h in Copy . Public Headers */, + EB04A82DBC1C466BCF33F6161972B4F7 /* grpc_posix.h in Copy . Public Headers */, + F27FC2367B9E15C2BAD7D7ACDEC92F87 /* grpc_security.h in Copy . Public Headers */, + A8E7CA14C3F132E2C191781E72E5C7BC /* grpc_security_constants.h in Copy . Public Headers */, + 551CC4ED1BBF8158B0E6332F4EC8219E /* load_reporting.h in Copy . Public Headers */, + 35784368845E4438FEF0EFD68A053AD3 /* slice.h in Copy . Public Headers */, + 6AFDFED7F81A536E565510D256EF2F41 /* slice_buffer.h in Copy . Public Headers */, + 501645AE82EC97A6D592A961CFA09B1F /* status.h in Copy . Public Headers */, + ); + name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; 172F7B20F3F2F582D5B0C583E930C7BD /* Copy crypto/curve25519 Private Headers */ = { @@ -10678,786 +11023,775 @@ name = "Copy crypto/curve25519 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 1740578281ECCED480C9DE058A648972 /* Copy src/core/lib/security/util Private Headers */ = { + 1738AF7C9C2BC9915802757B82EC4EE8 /* Copy src/cpp/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server"; dstSubfolderSpec = 16; files = ( - A3A7D4704EAD750D70DFDA61F59646A7 /* json_util.h in Copy src/core/lib/security/util Private Headers */, + 9887274BDBA75B5FCCBC22D540308D94 /* backend_metric_recorder.h in Copy src/cpp/server Private Headers */, + 1752DE2C128EFD7821AA70177BA2753A /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */, + 1A1559ABE996CF2B67064EDE641FAAA4 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */, + F6A90C14E4023DAC1973E09AA0174CDF /* secure_server_credentials.h in Copy src/cpp/server Private Headers */, + CE9BC4A0A2A51DF0B61A86D72AE1271C /* thread_pool_interface.h in Copy src/cpp/server Private Headers */, ); - name = "Copy src/core/lib/security/util Private Headers"; + name = "Copy src/cpp/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 17509D4F9391287A8F59A3A46FB5B07A /* Copy src/core/ext/filters/channel_idle Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; - dstSubfolderSpec = 16; - files = ( - 61B44A9B1B282ECE06A558D30305831C /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, - E3824809BF41F1054E405846E60707B4 /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, - 338B5A3556E999AB611A51AC3DD5F5FD /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, - ); - name = "Copy src/core/ext/filters/channel_idle Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 17E262CAC70ED2697C2D09C858FDDDCA /* Copy src/core/lib/event_engine/thread_pool Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thread_pool"; - dstSubfolderSpec = 16; - files = ( - EC38787B2D73C885B6CA36CA1DB44F39 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - 7D9E1161DAE6CF3A0136D995C2C34640 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - 9A19DFAEA7B04820E52A2E131C12C00F /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - ); - name = "Copy src/core/lib/event_engine/thread_pool Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 18619F54FFB6365CE5898660A95C8616 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; - dstSubfolderSpec = 16; - files = ( - A12A3E5B5367DBC8C2BBCDA30E12FEAF /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - 0948ED245D45BA59287B2B01EACC6CF1 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 18DEF3C35060D9CFA7408B17D8EEF3F3 /* Copy src/core/lib/security/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; - dstSubfolderSpec = 16; - files = ( - 5614B2D1C25554B900EB008DA1EDB0AA /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - 89EB54982E5815A250F3997A4AFBE807 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - 4EA0E369936159C51A3FADDF2DC16C0E /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - B3D6D84CADE5CB469679E01102D701BC /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, - ); - name = "Copy src/core/lib/security/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1A1171D50E0183FA285AD6119916906B /* Copy time/internal/cctz/src Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/src"; - dstSubfolderSpec = 16; - files = ( - 4EBB73EA17121357BBB0CE917E605E72 /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */, - 59D788DD8132883552FAEB003B877077 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */, - 44F43809D88AF86A91AEBAD1F4D79387 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */, - 39BF1B779F4A50F52B87738714626255 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */, - C7BFA90EE409B2EC926E3E3BC07718C1 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */, - 2DB54E3F4285FA7E070F973BEF59E640 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */, - FC6577A640711A4B4FB4911D9DED5978 /* tzfile.h in Copy time/internal/cctz/src Public Headers */, - ); - name = "Copy time/internal/cctz/src Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1A2025F9EB349B3E03284F073F511C3F /* Copy src/cpp/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/client"; - dstSubfolderSpec = 16; - files = ( - B4F8FBCC0A661D074AA31F84766BB359 /* client_stats_interceptor.h in Copy src/cpp/client Private Headers */, - 22327A540DE7E7DE9BC1DA2B6FB0E80A /* create_channel_internal.h in Copy src/cpp/client Private Headers */, - DCAE92CE6165F378F9B3CB71309636B3 /* secure_credentials.h in Copy src/cpp/client Private Headers */, - ); - name = "Copy src/cpp/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1A6C76578CE2965BB9FF19DFF6161039 /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/health/v1"; - dstSubfolderSpec = 16; - files = ( - 1DA7939541CD0971A79AE40CEF6182A2 /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - 691B44FB6A536B1163593FC9C485F9F3 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1B0C87F30188D41A62F3A2E2A8F51406 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; - dstSubfolderSpec = 16; - files = ( - 1B3C02E21619B899B0315DC92C43E6F3 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1B8919A81DB4A802AFB707AE73ABC356 /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - 1931945B994A1DFF532A079BE8985A43 /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - E82D5CF9BD7CF5AFFE95EB48E80CC136 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - AF8BA8D01E721253ADDFD656196ACE09 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - A21866B1FC24A26C9CE50D4C05E21DEA /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 72E5E93FD110FE419836AAA45A9A1460 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 88090A11D6C849F581085ED1E0836CA1 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 7BF5C541B4FC006C7D6358C1E0F4CF31 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 604901154335ED08290F19E98C01064E /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 389C30C1107406C49CB7E28416EF6D42 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 1A71B2F555F9C8DE14A3144E5F0A262A /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1C3CBF4A3081BC885B32345F9164F578 /* Copy src/core/lib/event_engine/work_queue Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/work_queue"; - dstSubfolderSpec = 16; - files = ( - B6A1345B57E0CA6F096D153B369505FF /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, - 418E3477A2F4777505BCDA8E04DB1078 /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, - ); - name = "Copy src/core/lib/event_engine/work_queue Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1C4A194CC2E33FDAEDEDB01A25F9E573 /* Copy src/core/load_balancing Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing"; - dstSubfolderSpec = 16; - files = ( - 190A459025B672636BBEC43AA810512D /* address_filtering.h in Copy src/core/load_balancing Private Headers */, - C21618C5D252401C1DFC6712724777E3 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */, - 3BF9B0F22E4EC2260F65E19787B1F04A /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */, - B824E5EA22BA55897D5CEF290E6CCDD2 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */, - ACFC68D00C830C82D2E7EA3E383D3433 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */, - A0CDA88FE3CDFEAADCF948B74F68BC65 /* health_check_client.h in Copy src/core/load_balancing Private Headers */, - 60C6857167CA9106AF1B4B01FB3E57BE /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */, - 7F78AC91559A387D4510B435B8A40CEB /* lb_policy.h in Copy src/core/load_balancing Private Headers */, - CE83999D932A85D44B74EF30762C0DCD /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */, - 0FD8D61C280949D2DD503686349ECC3F /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */, - B4FF76882D39B720177327C0926CDB87 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */, - A7A2BA4DFE874E00F90FE632B1FD8995 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */, - A472F1217C50D45A281F8103B796EFB3 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */, - D9B67928F6440AF39CFFEFF58E23CE53 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */, - ); - name = "Copy src/core/load_balancing Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1CF056DC9006F727B3A09C83FF15EA32 /* Copy third_party/utf8_range Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/utf8_range"; - dstSubfolderSpec = 16; - files = ( - AB76EDE904257EA7A719DC990EC48F96 /* utf8_range.h in Copy third_party/utf8_range Private Headers */, - ); - name = "Copy third_party/utf8_range Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1D02E44CE2E4AE42BDBD6E0F519E978F /* Copy strings/internal/str_format Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal/str_format"; - dstSubfolderSpec = 16; - files = ( - 1543F690DFEF80216767F0FDBDF0E3EA /* arg.h in Copy strings/internal/str_format Public Headers */, - 45D4AB51590EE663B7DCDEF807B78863 /* bind.h in Copy strings/internal/str_format Public Headers */, - BA418E47FF922003C41F8C1C06EF6AC2 /* checker.h in Copy strings/internal/str_format Public Headers */, - 2D0927D886685CEED690B4CBC02FB830 /* constexpr_parser.h in Copy strings/internal/str_format Public Headers */, - 07EA6EFD5F8693694A1B6025A7F7366C /* extension.h in Copy strings/internal/str_format Public Headers */, - 43C3198B3112267DD102F7BDF2B0B6B4 /* float_conversion.h in Copy strings/internal/str_format Public Headers */, - 162A94F14DF6946B59ECF312ECD8A7DC /* output.h in Copy strings/internal/str_format Public Headers */, - F58F43E06AF2276C62055F47B4FA68F2 /* parser.h in Copy strings/internal/str_format Public Headers */, - ); - name = "Copy strings/internal/str_format Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1D0BDC1F2A9EE9EA14C93D48FF6A064A /* Copy src/core/lib/iomgr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; - dstSubfolderSpec = 16; - files = ( - 9B7C8C4924A2E2041BA10F5FF4E82A4C /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - 2A057C31D5734FE5D745740FB740D29A /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - A35BBACA8912986211E17129ABAE6C02 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - E1758F8E5475BB3428F6F134797D0E3B /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - 0E0C79265255AEEBFE6B737DB9827C87 /* closure.h in Copy src/core/lib/iomgr Private Headers */, - 99036DCFC43B04B3F7A48B063F30EA0E /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - 74AF91BEBBCF0F3072F90927574379F5 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - B564E3479B1BBCEAC473B7D1147B5089 /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - 59734EBF79A8E484CAAD43C3A67BBC73 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - F66FF67F6614E4B366DBC69E480F166B /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - 073D6CE56CCB769B2941348E9009BE79 /* error.h in Copy src/core/lib/iomgr Private Headers */, - F6D59A9AAB6C7AC9DA287497DCC37373 /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - B48F8AC8167CD4FB9A0F1AD02AD38A8B /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - 905ED5519C3B7FDCA5AF5B60B45A7461 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - 52AF7632BB75271A44C6B4630D985A76 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - 01BCA66E298E10DE0082F122FC433FC8 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - 33E29DEF590C726629670ED1C65F80C2 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 739F38F888A44C9C1E98AF472725E28A /* executor.h in Copy src/core/lib/iomgr Private Headers */, - 10EBF0C608ACA57E9CF0083155648D32 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - F01E64C5609E7E70690B260A656C460B /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - A81E9FE88676EE05D5C1D6F01A288AD5 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - 19660DDD00CFEF6B28D18A949B2F6D69 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 9591E4E4267D6500E90AA967AC5ED195 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - DB263B41E871972C8B03C438B1B5E7C2 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, - 08C1BB7EE69B121CA86541205E45A1F1 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - 9395894B0293087D24503016B127FAC6 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 48DFB28BA04E87F7CBB405D5C8643424 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - 7DF0A3F1D01F3C975BF0E9F584EF2FC7 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - 4CFE6DF53311C5743997E21A8B44BDBB /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - 48A33272982F76597CA253CAC5D67E8B /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - FFF8932293BEC2B25BE59BC50A09F47C /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - C038761DC1679EB6666C4ABC2FA85E4A /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - 18546C226E9757ADE08B1FDFD810EA00 /* port.h in Copy src/core/lib/iomgr Private Headers */, - FD287868EDACB73655C8616AAD178C19 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - 81AB65EDD763DD0C0C5AB05F80236C04 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - 5D428E2992CBA286AB2CCD88CF4CD9D6 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - 4C5639FF322CE31D429BF0EC29787045 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9DE38CACA80E9843936B52EBDA7F72ED /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - F8920D23E7D70CB6480D2A4E7ECE289D /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - 3EA106FC187FDBA5C6DA98AFD981AF2C /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - 61D758FD4313C79A2E791B8BB02E70B9 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - 619754BF0230C764301E67036C79A9D0 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - C62911D2D1D93BFC7CC5751D57F934B2 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - 648CAD50CFA7F0DBC0DBFA6EAE6AB746 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - A874823F23A23CE1EBC2F08F524347FA /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - C29826D8B1CF190C535807662161AC82 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - BF52ACE75DAB3B1E66DE6BDCB11BE028 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - D5A6D65C3DB789F60F65F4279E9063C1 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */, - B9E889A5C0F16684BEF8514EBA372D26 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - D99420EFE69A38FE3001686CAA3FBAD0 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - EC0DA702E13495C3A5D4489A110D081A /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - A4F130B43EAA631E7212EEB751C81A25 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - DD2D92CB5A88B2ACAE02D7B2E665845C /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - DA1FAC7B9AACC305B68A661FD8E4F024 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 93B0F4A38A03BD1280BF1AD19ED97883 /* timer.h in Copy src/core/lib/iomgr Private Headers */, - 6D0B39145A64C900E3D1ADC9B638E60C /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 1BA2AA4BDBFFDEF0A38811330D2155D7 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - B4932EB46EA3FCD7F01913178FF32DAD /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - 7025164CCDE715D8711AA22F2618045E /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - C31C2E4DA44739FB45DF5398AB0E389A /* vsock.h in Copy src/core/lib/iomgr Private Headers */, - AC33F6D4E5569EE4318EBB0ADAB1D432 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - 234D86856FC652BC79BC04E9E25D2A37 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, - ); - name = "Copy src/core/lib/iomgr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1D0C94437FCCD9E4A941B9DFCD00C862 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; - dstSubfolderSpec = 16; - files = ( - BBDD827116497F3907B3DF59B2897A1A /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1E4E51CAF3127D1FE7BE6A7F723DB558 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 1E818842E333BBED5455C42B37F994D3 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 20334AC8957C276805620D6EEA3D4707 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - 491E5AF6F87EBD29BC0B26E864FFE831 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 37B41A47B1CDA110895CA2B150B8BA61 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - B2295195AACE4219A18B8D73AE25A74E /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - AB5187706C810ADF6805D09C843DC70A /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - A4555781263FF85216C67919F5CD1D0C /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 1E144E0B1A7F97EBF484F6A32A3AAEC0 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 1BD3E6510B05F47D817AC91EB5862AB7 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 767D21FEE872CBBFC3C5138B9163EB22 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 6085012DE78C32BA79029AFA0AF53CE5 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - E76A457095A82F9A1E5D9D6AA0017958 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - D1CC5CE588581B934EBAB404C04216E3 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 208B611A750FA741769CD5EDE0339B1F /* Copy src/core/lib/event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; - dstSubfolderSpec = 16; - files = ( - 06808E1B694B141669177A0905FBC215 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */, - 5B10C6EEDE63D4EDB66409DAC6BC457D /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - 76A0CE006193FDC109E5424044021447 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */, - 7F4593B294A9B79BF1AF172264FF6EAD /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, - 4BC11193F16091088DD1BF9931264812 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - B9F7887C8785C07985962406B64CDF38 /* forkable.h in Copy src/core/lib/event_engine Private Headers */, - 10ADC73017594D0A7BA31B763E95B0AC /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */, - 9CF99A2E2E3FDA0C1F271DB7DB43CFE4 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, - E9232069C8BE36964B5ECD907CE80108 /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */, - 8E5C6AC9710CDA83497B2CF2B037DF92 /* nameser.h in Copy src/core/lib/event_engine Private Headers */, - 2E5127BBDDE0B23D18F17ABFF30612C4 /* poller.h in Copy src/core/lib/event_engine Private Headers */, - 831A031BD6FE97E15C2A39E281038ABC /* posix.h in Copy src/core/lib/event_engine Private Headers */, - 4CF0B47A94048D2C5B8228E44B7A9150 /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */, - CBE11899E05615583A8E5A6B5A9261EA /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */, - 05B6CA401C663731EE48663180B72304 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */, - 672AC4AE82A75060EBD4C3833F01CAC3 /* shim.h in Copy src/core/lib/event_engine Private Headers */, - 402C03BF4856FCBBD30307343A861824 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */, - AFC93D2FFD49DF5395902D3A0B0DD904 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */, - F978B9538275B07CF5F929A2EB9A26C5 /* time_util.h in Copy src/core/lib/event_engine Private Headers */, - 00A1851D9148F1BBBF2F6601ED9F0ABA /* trace.h in Copy src/core/lib/event_engine Private Headers */, - E2B53A19075E3E626477CF2D5C96B97B /* utils.h in Copy src/core/lib/event_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2093EB82DF097C9C081366F4C82A9464 /* Copy src/core/lib/compression Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; - dstSubfolderSpec = 16; - files = ( - 1D2FC1708DE826EEB032C813BEBE2C5F /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - C7188F4AF5BA43FA40BCDD08A21B530F /* message_compress.h in Copy src/core/lib/compression Private Headers */, - ); - name = "Copy src/core/lib/compression Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 20E91CB5F5A291147C1AE471EA2EECBD /* Copy random/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random/internal"; - dstSubfolderSpec = 16; - files = ( - 2832DD3CD70F400664B8DF4F2E60C9F7 /* distribution_caller.h in Copy random/internal Public Headers */, - A975C779106C1B9D7A7546D4C2A0D4D4 /* fast_uniform_bits.h in Copy random/internal Public Headers */, - 87EB19ED9DC3D1C519A50539065C71BE /* fastmath.h in Copy random/internal Public Headers */, - A4747751E56CF82136DB205FDFCEB5F8 /* generate_real.h in Copy random/internal Public Headers */, - 6B53EDE2A387063E097CF429FA8EF663 /* iostream_state_saver.h in Copy random/internal Public Headers */, - CFB637D81A201E0E35C0EED63CDF15F9 /* nonsecure_base.h in Copy random/internal Public Headers */, - A5B488BFEFDABD36505B0BE28E69D464 /* pcg_engine.h in Copy random/internal Public Headers */, - 6E59B18D5C39EF89F27FC65C9CEACAE7 /* platform.h in Copy random/internal Public Headers */, - CA1014A829CBC56E3E01E64DA4E7AA33 /* pool_urbg.h in Copy random/internal Public Headers */, - 649D4FC9242589DC0052A8DE6272D264 /* randen.h in Copy random/internal Public Headers */, - 1C4654FD84463C5EF497AF20FFE216A3 /* randen_detect.h in Copy random/internal Public Headers */, - EF6833238C7BE626742610B1A2A08DAE /* randen_engine.h in Copy random/internal Public Headers */, - EC93C66EF0E7B6D59EDFBA90C2FB75B2 /* randen_hwaes.h in Copy random/internal Public Headers */, - 58A300A347C3BB1DDB981010A3A81A6D /* randen_slow.h in Copy random/internal Public Headers */, - 7B4342E33F09A4AC2B91E0BC75994D4B /* randen_traits.h in Copy random/internal Public Headers */, - 5EBD2E70CDBFF6B69F41DA591924DCAE /* salted_seed_seq.h in Copy random/internal Public Headers */, - 8C352341BA83F0224FC4FD80A9635897 /* seed_material.h in Copy random/internal Public Headers */, - 6D84F88F396A596C652F6B701E90583F /* traits.h in Copy random/internal Public Headers */, - 34446B29DC359BF5EE6AECFC89749D64 /* uniform_helper.h in Copy random/internal Public Headers */, - 99A7F07200FF5A1F62D218F770A9C66C /* wide_multiply.h in Copy random/internal Public Headers */, - ); - name = "Copy random/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 212261C6AE71CD36E27CDD9CBFA4DCB1 /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thready_event_engine"; - dstSubfolderSpec = 16; - files = ( - 801A7D5287266ADD7C6A0D7FCBE062DC /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine/thready_event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2286CF5D8233A8CAC7352DC59BECA0AB /* Copy third_party/upb/upb/hash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/hash"; - dstSubfolderSpec = 16; - files = ( - 840496BFD14B5C9BF671698BA6AE0D24 /* common.h in Copy third_party/upb/upb/hash Private Headers */, - CDBB7099641D1B32B04139CB193C6EC1 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */, - 44EAC897036762A2B9EBF3423BCF20D8 /* str_table.h in Copy third_party/upb/upb/hash Private Headers */, - ); - name = "Copy third_party/upb/upb/hash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 22A105129A2120D3FA9E8D86467C82A4 /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; - dstSubfolderSpec = 16; - files = ( - FD697F68B65F1022D6ECA37DB58EBC6D /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 70065AE6148E652ED2D533953AA5F92F /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - B37073CF538EEA8332335239ED55FF75 /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 9E4145F4B970327DC609E87693BCE48F /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - AB3225B69AC8F8BC0EF3E9C2C0454C6F /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 61089FE7CED94C9277B85A28E81AF1D9 /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - FD5086E8F82E7C618DA3CE8996C0FF1A /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 1AD21E3A07EB8219BD38FF188F5B86E7 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 6FD3B77D80806F20184C99FCA34B838C /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 323A3C871A757E0138D89C9ECFC0BAB4 /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 4B3C808ED5CD88A7612B1C043987EF75 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - C716CC4FF86065C4E0750320CDBAF6DE /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 62F8733BCC43C466B5C996473F0547DA /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 0B0C999B89366AE7AEDD6EB802F470E0 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 3D4CD7AD4CC9A9210D720D883B4A6DD1 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - C28CD8C70D5A85328EE5542DBDDED4C1 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - E6DB2059EA3974F24E79BA5C72D5D8F3 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 2D69276BB0133C40A4D785C1D9BC59D8 /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 923ACED1A7A3995B269CF17DB1E1D850 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 31051999A624287B4C190E03F9EE00AC /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - D3BF739CBF30892D5991160E4273A82A /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 9B5559D2A02DA82D87CC2D5E38F0BD3D /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 23AC2BE422AF223ABDC9581A058C3368 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/discovery/v3"; - dstSubfolderSpec = 16; - files = ( - B934FAF7202442B1549995A53D70EA2F /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, - 6D2BB0DAA91BA3ED4E5F24280673EDA6 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 240DC667FD3A48B02165B72381BC4880 /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/annotations"; - dstSubfolderSpec = 16; - files = ( - 1A6C69920F33D87DF7A49EB26514A113 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - 54AF90DEA73AE9B3F9655220434DEA29 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - 16693F1A657648624109960CC8BADA9A /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - FD6B9BFD0E4D64D1E04E5C72246541A8 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 254D55DE7FCB83F557789113631740EA /* Copy src/core/lib/slice Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; - dstSubfolderSpec = 16; - files = ( - 94F311B31B372E309DD97B68114536B4 /* b64.h in Copy src/core/lib/slice Private Headers */, - 92E2B0FAACE212CE3998E20FD8DF7180 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - 6BFD49FED4EC983EAE423C7E27F3CC69 /* slice.h in Copy src/core/lib/slice Private Headers */, - F08B15A83B7D52776D70D4738A25D99A /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, - AEFC78276A5F3EB5134B7E4CDFAA91F8 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - E4C0A3416A184221565186A1DD8ECA43 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - 27D8AD02673A4C9235063BCDA7C0C5BD /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - ); - name = "Copy src/core/lib/slice Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 262837B20F4EE544172DEC1713FB626B /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3"; - dstSubfolderSpec = 16; - files = ( - 82C13E8CFC2DF5289E34BCE4F038A2B6 /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, - 829FCE98AA8B134BC86FD93350D6FA5F /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 272BAE217570B26879D233D2FFFD076F /* Copy third_party/upb/upb/message Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message"; - dstSubfolderSpec = 16; - files = ( - 939F3DA2AD8C4DADF3900D24E27B6692 /* accessors.h in Copy third_party/upb/upb/message Private Headers */, - 81584F1FD93F5138B31271AE87A1FD34 /* array.h in Copy third_party/upb/upb/message Private Headers */, - C59FC1C8142121C7056E93C611FFFE26 /* map.h in Copy third_party/upb/upb/message Private Headers */, - 0F736D61E1EF7E60784946AFE14A2086 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */, - DC3A4BD826DE3827D8E60E03C773B1E8 /* message.h in Copy third_party/upb/upb/message Private Headers */, - 87DB1E7F4B7216846C0A272826C9F8AB /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */, - E7946267659A54C5BA094B5E774B597B /* types.h in Copy third_party/upb/upb/message Private Headers */, - D9D6352795A2B140D67BD0EF95D19085 /* value.h in Copy third_party/upb/upb/message Private Headers */, - ); - name = "Copy third_party/upb/upb/message Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 27A161FE1055F66B6EF07A8EF1582301 /* Copy src/core/lib/event_engine/windows Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; - dstSubfolderSpec = 16; - files = ( - 068C4969AF6AF9BBEC3730E90E3D5EC6 /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */, - 9E0D2E91A71AEF776411967EEAD4053C /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, - 3EEF0198DFC647DF3EC41C04DDD3AD87 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */, - 85BE65850562CA18D8252E427605107A /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, - B8ADBA354073F92D4E44FA19CE268812 /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */, - 9D15E04FD770567525ECFEBA8CAF10B2 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, - 1CAC486B5F1FD70A0FE9D4E7B636A5E7 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */, - ); - name = "Copy src/core/lib/event_engine/windows Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 28066F6661E364650ECB4E0A3D8AA1C2 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - C514DC779772A48D060A13B22092116A /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2918F40C93598CAD2C1DF8AFBEAB328C /* Copy src/core/lib/avl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; - dstSubfolderSpec = 16; - files = ( - 69C8D2E00F085547239EF514C13A17C5 /* avl.h in Copy src/core/lib/avl Private Headers */, - ); - name = "Copy src/core/lib/avl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 29379B458A19B60B24C268F8E74B9473 /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; - dstSubfolderSpec = 16; - files = ( - 177BC16D8DB00854181028C8260D647B /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 0B7FCEA11E40DFD26A38282344BC0E17 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 26238E2CCC560D2FA7747D21AF6D3EAB /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 299EB4E9C9A04C317456B2933274B81A /* Copy src/core/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver"; - dstSubfolderSpec = 16; - files = ( - 46825C0DE2F66434AB9E79757D662B31 /* endpoint_addresses.h in Copy src/core/resolver Private Headers */, - 8D4CF64488D2DC0ED9680D2C20BDC6D1 /* polling_resolver.h in Copy src/core/resolver Private Headers */, - B90256070F9E58841016DC482A04273C /* resolver.h in Copy src/core/resolver Private Headers */, - 607E7F00AD3DE112B429752ED359E310 /* resolver_factory.h in Copy src/core/resolver Private Headers */, - 0B78B29A86663E85F1EE1185AFA4FAF1 /* resolver_registry.h in Copy src/core/resolver Private Headers */, - B52DDA1C5508C33C8ECE1FF9665ADF6D /* server_address.h in Copy src/core/resolver Private Headers */, - ); - name = "Copy src/core/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 29E807D5556DC7093C96843D91912217 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/listener/v3"; - dstSubfolderSpec = 16; - files = ( - 6D3F027FFA2A56F92128D0D0430CBEEE /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - C447DF8A69F2A1A8540F68824791805A /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - B63370374E7303D53EA4FA98CB7FDEF7 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - B8961ECAEF71B7EEC197297647D3B7A9 /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - B1B8A8423084E11165A64F07BAD13495 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 7E64708316DBBC06020B0DFAD852E8C2 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 88715D836AAD215EF9780CB2DF5259DA /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - B2CC192BD4E910CC73C56950F6B7E25E /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - F7B05E0CEE5F0921C030CDDFA6DDBBD3 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 91FB35F880A01308AF21AD04F9AF1D84 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2B32E8B822E0D07BA1CC45C4B58E5FC2 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; - dstSubfolderSpec = 16; - files = ( - F567B70C37BD8103133EEA021DEE647B /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2B398DF386BA71CF082E4BE2D242D133 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api"; - dstSubfolderSpec = 16; - files = ( - 66AEBD2A95883C72E2FC66E997F3BB80 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - F8E27C7F362B924F6FA1473B0F47092D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - A7431DE9455609DFDB8F17B8C987CA66 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2B94875E54AB89A22DFC4EE7A3AE4026 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; - dstSubfolderSpec = 16; - files = ( - BF96190E3D791D226EE727C36301C8E6 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2BD8CD84C8BB2E4B7B8EDA93818DF665 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine_shims"; - dstSubfolderSpec = 16; - files = ( - 104D078C570671F52F46928B0EC565C9 /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - 7E3C2150EF92F3E22A41CB6FCAEE7507 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - BBF23C637BCD3264AC0D99E79E37E0E7 /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - ); - name = "Copy src/core/lib/iomgr/event_engine_shims Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2BDD212054839DB5EBCF6D744705EB01 /* Copy third_party/upb/upb/text Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/text"; - dstSubfolderSpec = 16; - files = ( - FA84AED7120D4B0D2FB17AA1CE5DA45A /* encode.h in Copy third_party/upb/upb/text Private Headers */, - ); - name = "Copy third_party/upb/upb/text Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2C676254AFD51630FF35B040D11AA5C8 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - 1C5A0AD27C0B81670806F5703E64107A /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 5ACFE1C712525BACD0CAB56BBB808B7A /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 93D47FCB2CFC4C6FFF9F98E93421B0AC /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - FFE37A9673B070C339AA75A711D3EE57 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 500B52F9DF5BAD349AFADE5C3B5B801F /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2C9E1EE3C7D48BF1F93823503412B41E /* Copy third_party/upb/upb/json Private Headers */ = { + 17DF309E87571F31D145CBEBD712FEF1 /* Copy third_party/upb/upb/json Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/json"; dstSubfolderSpec = 16; files = ( - 7641F9EB101EC986A6A135A8985D9D8E /* decode.h in Copy third_party/upb/upb/json Private Headers */, - 2FC7029FCACDF799B1E072985D41ADA6 /* encode.h in Copy third_party/upb/upb/json Private Headers */, + 0B88400F5D8E680F19DA75A086CC042D /* decode.h in Copy third_party/upb/upb/json Private Headers */, + FD45B53138C329CF7AC8B7ED55EFD1BE /* encode.h in Copy third_party/upb/upb/json Private Headers */, ); name = "Copy third_party/upb/upb/json Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2CF63FE283A1CD6B17A5386AD550C08E /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = { + 18937937CC9972CA6B960166B8CB4D6F /* Copy third_party/upb/upb/text Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/text"; dstSubfolderSpec = 16; files = ( - 03CB794DDE91D16610287B6B8D71406F /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 4858FD3A66FF009A6E370865714BB8BC /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 68262093D6E032BB60BF8DD3C8948BB5 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 5F8D1B03B5AC6BAF3B71C0A8090579C8 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - A6E6904E335AD9E78D038517EDE9EEED /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - DBB2049A107F36F2C234665AEB220CED /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 2AE29A89B11AD47C5C4C3CE6BE709944 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 66492C3FD91001F9771346446AFDF79D /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 168D3125C26AFE4C12D8C1565F24603F /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - A35DBD1B9D5B0E1CFCC741D321666DDB /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 3EBE4B936FB701DD319B8E05AD73754B /* encode.h in Copy third_party/upb/upb/text Private Headers */, ); - name = "Copy src/core/ext/upb-gen/udpa/annotations Private Headers"; + name = "Copy third_party/upb/upb/text Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2D2D794AC12E5C7FFACE0C9B024B0D0E /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = { + 190905943BC79692158124DA541AF471 /* Copy src/core/lib/security/credentials Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; + dstSubfolderSpec = 16; + files = ( + 434A028BB1D2621C9F3B35EA69118575 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, + 12A8FD34A6C0D5B43881A025F83EB2E9 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, + EA708EE55AF3FD454A38DC39BC193D0D /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, + ); + name = "Copy src/core/lib/security/credentials Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 19134F8032D269B7ECA8078AD27A1CDB /* Copy src/core/lib/event_engine/extensions Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/extensions"; + dstSubfolderSpec = 16; + files = ( + 259CC26D6A0CC14B94125681820F7E0A /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */, + B41EE6BB8B5D36E49993777AF42917BB /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */, + ); + name = "Copy src/core/lib/event_engine/extensions Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 19A38FC90E3CCE3507B348A85E4F7483 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; + dstSubfolderSpec = 16; + files = ( + 581EAEB0C3C566FA9D1FA8E94A7D64A6 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, + F187EE4B2355D8E1F15AAE1D5926E23C /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, + ); + name = "Copy src/core/lib/security/certificate_provider Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1A2599EF1AAAEA490B4A77BC755CB77B /* Copy src/core/ext/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; + dstSubfolderSpec = 16; + files = ( + 34263EDFA12F9796352D701A48D3FAE8 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, + 41F3D0368FB67EC943661517BDD1F1BF /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 305D6E1E3A544D4122EAA1D8FAFE73EA /* upb_utils.h in Copy src/core/ext/xds Private Headers */, + B2271268AC0AB74E72EC4B14E6225C2D /* xds_api.h in Copy src/core/ext/xds Private Headers */, + CCD48CE825DA4C341D122657393255DD /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */, + DC98FC14657C9A8C50F48CFB2ABF3FBB /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, + DC713B9FB1AF4528CF019163A779D0B9 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, + BB82D69F8B4E7915E9814CAB08230CE3 /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, + 012AB9DF03DE70EBD14AE8103D04D4F1 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, + B60CF4BF699A6DA45E2B04DD5F1753A6 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, + 5D4FC51704A30F07F1106B82DF7047E0 /* xds_client.h in Copy src/core/ext/xds Private Headers */, + 57CB939DD0F42D967E7A60BDD30F831B /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, + D62441F389B6CBF39837AA73A3B36BD5 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, + A33FDEEAB2032E4E5B0809DF08A71870 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, + 00151FAB7534095B671F132C91DC1EBF /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, + B267BAE25E15067A9F9F69A6DD9C66F0 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, + 51BE1886CC3008533D8F053C6A4C5935 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, + 8CB0F2D353E224A12380A1C915994056 /* xds_health_status.h in Copy src/core/ext/xds Private Headers */, + 9B39B8EDED805FC101DA87411EC3767E /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, + 5B6A58604207947D629106A764166993 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, + 873D0EEC27453670AC96DADA265B816B /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, + B3E3664008DD6693E87E1621082B9BE5 /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */, + 57E642109D7CC128E79A76A1B71B0097 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, + 21F0EE0968C7024F6B5C142FEFC3F635 /* xds_listener.h in Copy src/core/ext/xds Private Headers */, + EB8ABFF82CD08AB7C98D40948526BF47 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, + 9B7E617C56B8C4588E87A166A8799226 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, + FA22E87A91EFF3520DAE3545A1EE6618 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, + 40FC9B97A888A836E962B89F60768BBA /* xds_routing.h in Copy src/core/ext/xds Private Headers */, + 7DAA5FBF5915715C79B1C29D1D45239D /* xds_transport.h in Copy src/core/ext/xds Private Headers */, + EB9D569CA4E0A424ADE4647ADE430B0C /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, + ); + name = "Copy src/core/ext/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1C45004C7BB6619E8CDE56132D374CA4 /* Copy src/core/ext/filters/http Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; + dstSubfolderSpec = 16; + files = ( + 273FC996536D7E40800C825F887B457F /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, + ); + name = "Copy src/core/ext/filters/http Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1C9DE79A378FC539A1C9590A103AE9FA /* Copy synchronization/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization/internal"; + dstSubfolderSpec = 16; + files = ( + C8ED13B78F4D8D87A10640BE684BF6C1 /* create_thread_identity.h in Copy synchronization/internal Public Headers */, + 0E134E8D79335A95F4AACF4EAC04B04F /* futex.h in Copy synchronization/internal Public Headers */, + 3EB52ECBD3B570A41A8CA16E80776070 /* futex_waiter.h in Copy synchronization/internal Public Headers */, + DBB5CDCD1D7B0E18F9FF4E51C87F6F47 /* graphcycles.h in Copy synchronization/internal Public Headers */, + 11A501A45F6E0B1EAC3458B44A6AA42F /* kernel_timeout.h in Copy synchronization/internal Public Headers */, + 2633846F5288E94BDD9E5428A2D1E32F /* per_thread_sem.h in Copy synchronization/internal Public Headers */, + 4BB670F0857F4C1EA2B72C96853A94EF /* pthread_waiter.h in Copy synchronization/internal Public Headers */, + AB4081DDA2CF0421C45949733989D0B7 /* sem_waiter.h in Copy synchronization/internal Public Headers */, + B03D4E77AC51616C9A7AAAC41506CDDD /* stdcpp_waiter.h in Copy synchronization/internal Public Headers */, + 0796A3FE27AC49DBD96E460E2427D074 /* waiter.h in Copy synchronization/internal Public Headers */, + C9E1E4B16D94360F0E49963D3DD02E6E /* waiter_base.h in Copy synchronization/internal Public Headers */, + 25CF6870C19F6BC42375F2E5433A6F21 /* win32_waiter.h in Copy synchronization/internal Public Headers */, + ); + name = "Copy synchronization/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1CD010F3B431020E9BB8CA24BC1A5F0A /* Copy third_party/upb/upb/reflection Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection"; + dstSubfolderSpec = 16; + files = ( + 196FC0F067161AB1135C73A5F66804D5 /* common.h in Copy third_party/upb/upb/reflection Private Headers */, + D4D84BEAD4354B172E34B2545C50D4A0 /* def.h in Copy third_party/upb/upb/reflection Private Headers */, + 73FDDC9A6401DB927CB30186B1B60AD6 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */, + 0C9FFD157C1B351801D35758187A0D6B /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */, + 481FFE93E56A014C2D787399F788C576 /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */, + 47DE932F5C43185414FD58502C28B82E /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 203118E7315DCD5997765E094BDD6DD6 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, + 4F871683548F1F87515474D81528A621 /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */, + DCC929F9E301385DF762CB94C14D361B /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */, + CCF2274AD66E0E61B0CE4C8EA51E2AEC /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 87DEE22E9ED6E877D0BC6ABA1CCAE092 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */, + CECA9A53E08515A6543DE1D45751E99F /* message.h in Copy third_party/upb/upb/reflection Private Headers */, + 611978580FDA885EAB90BB5D79670223 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */, + 3A8E82E44C97367339708F4C36D9C799 /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */, + D05B30F5282B37C0B79CDAEF4DDD5432 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, + B5BEA3C78038A916F6298B51AAF0D1A5 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 17155979B6AAEC63CDD4658ED71B4373 /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 24169547C83DAFF98091DE1BC63921C1 /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */, + ); + name = "Copy third_party/upb/upb/reflection Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1E07AE3EA5495A200F507004736C22E2 /* Copy src/core/lib/security/credentials/alts Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; + dstSubfolderSpec = 16; + files = ( + 0AF238D6F5C337D6DE08E400EECF5D0B /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 62AAC9CCCAC00F4B30F0E40A7EAC2236 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, + A01D8A9542F07A454254447273364AC3 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/alts Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1EEC63C929CB1ACA5FB3B52E745CAAE0 /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1"; + dstSubfolderSpec = 16; + files = ( + A774C4A5D002354CA9F6A9E5210DCC4D /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1F44A821324D92C6A3DC9DD9D23163CC /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/status/v3"; + dstSubfolderSpec = 16; + files = ( + BF4C8F0AAF84137B7C8C0851D6740F68 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + E11F18E17C79BB222098B16862751D1A /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 1F8AFACA7868D4DF0D89E7D7D2125241 /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/v3"; + dstSubfolderSpec = 16; + files = ( + 1774DA293E5DB799E690010D6D0F6A5F /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + 7577A82268823215E4BE1725773D8E8A /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + 80A4269A6DA76D03FDC20BCE42E40881 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 200BCDB5D698765725FBECE309AED31F /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thready_event_engine"; + dstSubfolderSpec = 16; + files = ( + A2A413C9E4C4106C66408958C69571B2 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */, + ); + name = "Copy src/core/lib/event_engine/thready_event_engine Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 20796FC1E19DBD9DA2B7B574D4C06B09 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/udpa/annotations"; + dstSubfolderSpec = 16; + files = ( + A23A16ECD55AC15B297ECF601FED5C9B /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 35FD91AB6563384B78132AAA5EE2CB14 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 0BAABE96C9CB62F07A6C81A8FBC3F508 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 985F3C3E9062029BF08D043F5A96D212 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 00A9B1C9C743F6AE10013B1A5B4ECD7C /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2097EEB1884F12F060ED60F5582787CA /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/matcher/v3"; + dstSubfolderSpec = 16; + files = ( + A5EDDB4C2F7994774BDC2D31CE3DDF54 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 4F56550567EEF7BA578AE5CA2A5CB593 /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 63F189F801F1033B8FE9C9FEF3D67A3A /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + D336805C1FA2C7BF8A717B0DC05CA1AE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + A92F2CACAEA608FA7EBD0892C4A2749C /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 81239A32AFBE39DC3D60EF0DA117085F /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + FDDB82FC7498BEE39C600D46A0CCF0CB /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 1C0519745FB09F087A7D82DB5398753D /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 21630D0E8C32D7F91137E060FB1D73BC /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3"; + dstSubfolderSpec = 16; + files = ( + 5461557FF0B1AC109ECFCB46A44EEE92 /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + 2C5BD5D50CA4ED4CE5850D865A799369 /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 21A6230A680169BF811BF6EC806F1469 /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/health/v1"; + dstSubfolderSpec = 16; + files = ( + 18D8F214483E2E65BA7AC07663C53F7E /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, + EAEE0A5BA9F78896E0EEB2A32FB70AC7 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 222C811B5465CD453A5B967D1414D367 /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/rpc"; + dstSubfolderSpec = 16; + files = ( + 152FFFE9122928C9BA9EB750D90B4780 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/google/rpc Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2239580BBD3AF6BFD50A6FD901090540 /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/opencensus/proto/trace/v1"; + dstSubfolderSpec = 16; + files = ( + 48555B579F5C2B126889E3C9EFD148B8 /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + FA279E8DB03D4A666CAB04EF9E942500 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 22BCFCB9736F1B5D60E835E5F7E2C025 /* Copy src/core/lib/iomgr Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; + dstSubfolderSpec = 16; + files = ( + 3D8538C1BEDE7B1986640A39762FA5AC /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, + 80846F43356252DD7D6977615A48035A /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, + 11AE0E2F9C9CAEE79B198AB4A7DA4A12 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, + 2E78D23AF3B7591B9E2F24755EC8E274 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, + 9D17EA54BD7491D08FEA423A504C1065 /* closure.h in Copy src/core/lib/iomgr Private Headers */, + 9443C025439C54C49DC588340AF3565C /* combiner.h in Copy src/core/lib/iomgr Private Headers */, + A534C6874E70F33B54831F547A3AB69E /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, + A3789FD115B814DA8867208D0801F13C /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, + 5443C5CCA02C5B9F5B0AC36ED5D860E0 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 38E6D0F49357C0F32BCEC50D85AFA76E /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, + B87E87204B6AA67239E24A6C668D5AC2 /* error.h in Copy src/core/lib/iomgr Private Headers */, + 836DC5FF8DC037092B014B9CCB55CCEB /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 747922AD78E4C86BEEB9FFCA0E6D459C /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, + 6D33D5F0A2479A3490F9FC38C187BBD9 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, + E52A2E3761C80F44282C783BF0B33F2C /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, + 37314B52D245B2FB5DA133767C9B7DB3 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, + 7576E15BA8BCD57B8A10EFAD7D4339E7 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, + 688155A6BD324568682ADFC162785FEB /* executor.h in Copy src/core/lib/iomgr Private Headers */, + 67696479644649E9B922FD1FBCAB8A2C /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, + C01CB0F5186A7965801E1947DBF40ED6 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, + B7D1C2707E888611F79AEC315D2B2F43 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, + 4C38BF6437C55ABBBC2DD446EB64EE8D /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, + 1F1B221181DA0CDC83E31B303B60C6C9 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, + D83C9F97A932587434AD7397D35B76A2 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, + D292466338CE0A27B3B0A7D41065E4F9 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, + C6514CE80BFE6006269FD8626DC86C30 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, + 37B4F42C3E19E9A891AE62B7745A5C47 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, + 4E88FDDE43E9F47694823140C4717C46 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, + E3776A8A0A3E18F3A8242871AB6D8BD5 /* pollset.h in Copy src/core/lib/iomgr Private Headers */, + 8FA0F5429D8EB4FF29BBEDDB0FBECD3F /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, + 35FBAB05AF7E2D33767CF4801721C6A4 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, + 795F6D4F7F410CD7B64B125CB1BAEFF4 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, + 29727C6ED65A38C5C9B49CEB7520052C /* port.h in Copy src/core/lib/iomgr Private Headers */, + 0908FE945EBAB6DB588140795BD50E85 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, + 014ADEC2CA2168BD903A734C9FCC4764 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, + A9D70DA95AE210645801BEE8CD770FCC /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, + 16F9AD59895208F5CD8B8FDE5CCE5388 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, + 10C3B670B0740AEDF2E74A81A7AC6E43 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, + 7205DF2718B974B214339A211F55627A /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, + 9B8B4F9798E2983060DF015D28D734CC /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, + EA428C946871121A67031BEF5743EC41 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, + BB2C9D3A860CDBBCA73E7E8BC09B3C10 /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, + EA6C90135F920159BFF0441CFB4C262D /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, + 07F9FE016CEDE4B1E6066DA6541EA488 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, + 52A5C24DC9D8AA565FD3BCCFD731D5E3 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, + 918F386B64E8CDDB1DA7D651EFB01897 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + 03CBF06A11A4CC793766605093F5851B /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, + 9CE3BE2619EDAA691C2BB42A548DF6A7 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */, + 9B66C201B82499C6EA9D2DB3DA31E403 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, + 8BC56347656AC2D58A01191348BB9BDC /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, + 50538824049D1E57E130F5606EAC7BF5 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, + 3A45982735C4A4536561AB692470BB4E /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, + 2B5747725C5E646F029EBCAF4D15E444 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + 5FE57A8E91623F798B59B5EB911D8C27 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, + 68143A91DF0260BAB9F3180AFA82FB75 /* timer.h in Copy src/core/lib/iomgr Private Headers */, + D409DA5E733A1C5C4D83A8C1913A68FD /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, + C3E5F5221C43313147D2B546D861FC69 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, + BA43491933622BCC5D6639A94B909668 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, + 49E8EA71DEBE30220B925562B35C5389 /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, + 66C02638AFC2E77FFDCC6A87B5F2E083 /* vsock.h in Copy src/core/lib/iomgr Private Headers */, + C200376F0CD6AF913BAAE8F98B085C23 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, + BFD5E6A7049748AE555686CD0E95F008 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, + ); + name = "Copy src/core/lib/iomgr Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 23B588865E9347A519AC02615E803CE4 /* Copy src/core/lib/slice Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; + dstSubfolderSpec = 16; + files = ( + E35D0886748CF1D13067BC1D3D6042D6 /* b64.h in Copy src/core/lib/slice Private Headers */, + B9D88CAA2C20CC8FE72926DA37284118 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, + F011E434042E7D08899ABB909AAEE565 /* slice.h in Copy src/core/lib/slice Private Headers */, + 02A8300A54E43D7869CA7D4C203A4B1D /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, + 528AE2A2B967D72B9E06EE83C5D237E8 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, + D43904F6E2AB846A8A871D2C27B27787 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, + 6B4DC1B99075ADADE2C45F88735996F3 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, + ); + name = "Copy src/core/lib/slice Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 23EFC62101FF0D0599F5AC6D56A62BBB /* Copy impl/codegen Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstSubfolderSpec = 16; + files = ( + E4D2484088A60DB3181E6923CAD041B3 /* async_generic_service.h in Copy impl/codegen Public Headers */, + 94B01F31C92E1B8584F4D4A9B414E38F /* async_stream.h in Copy impl/codegen Public Headers */, + 9E7DADE26ACCF83D3E6820A1521F8135 /* async_unary_call.h in Copy impl/codegen Public Headers */, + 804368DD955872151320DB260C235BE9 /* byte_buffer.h in Copy impl/codegen Public Headers */, + 45AC42B8774E67E2BBD9D9A04781DA6A /* call.h in Copy impl/codegen Public Headers */, + A8CDB0C409D34BEC70816E374F0FD603 /* call_hook.h in Copy impl/codegen Public Headers */, + EE0B57B4C43B1C1CF6C93FD1FEDDB130 /* call_op_set.h in Copy impl/codegen Public Headers */, + C92CB5F6371F128A35A034A2D1306818 /* call_op_set_interface.h in Copy impl/codegen Public Headers */, + 20C012B4EDEF2C9DB5A796382BABF039 /* callback_common.h in Copy impl/codegen Public Headers */, + 987D52A0D07EEA3DCDA7478A7ACDCB96 /* channel_interface.h in Copy impl/codegen Public Headers */, + 9DF22F49F72922E5F3DFE1D05B1C24D4 /* client_callback.h in Copy impl/codegen Public Headers */, + 4CF9F6B107936C9F96ACE8F72DAE4842 /* client_context.h in Copy impl/codegen Public Headers */, + 4966E9A1CFBF89D4703E1AB746A4E154 /* client_interceptor.h in Copy impl/codegen Public Headers */, + 5D558AC6476B0E79C5B77774C68BA21A /* client_unary_call.h in Copy impl/codegen Public Headers */, + 454B0DD9E71AC79E8ED8C699B06377C5 /* completion_queue.h in Copy impl/codegen Public Headers */, + 980E54803CF144FCF6B71BB9B7E26850 /* completion_queue_tag.h in Copy impl/codegen Public Headers */, + 015CFF19D0557A40E7DF296A7F00E613 /* config.h in Copy impl/codegen Public Headers */, + C2667504775F486C3F5985C7E264EA7E /* create_auth_context.h in Copy impl/codegen Public Headers */, + 86DC16E2984141DF483F3392E745B0F8 /* delegating_channel.h in Copy impl/codegen Public Headers */, + 9BDDE4819BC4998C5DC99D31F9E27748 /* intercepted_channel.h in Copy impl/codegen Public Headers */, + 6BF2BC55F115D1B137309287DE709914 /* interceptor.h in Copy impl/codegen Public Headers */, + 1DB95A5D939A716EC6A22242D33D39E1 /* interceptor_common.h in Copy impl/codegen Public Headers */, + E7FCC01B17DBCB531364E4D7B75EAFB3 /* message_allocator.h in Copy impl/codegen Public Headers */, + C659A4003832C6D2FBAD493A1A823DA2 /* metadata_map.h in Copy impl/codegen Public Headers */, + 0D3705FE126E248DBA4443D9A1BE1AA7 /* method_handler.h in Copy impl/codegen Public Headers */, + B92D6CD46F7C6EEFCCC6B10ABBA9E61C /* method_handler_impl.h in Copy impl/codegen Public Headers */, + 264F555BCD191A53D513913E114660B1 /* rpc_method.h in Copy impl/codegen Public Headers */, + 68E157BFF98FA3337EDCD8DE1C06FC6A /* rpc_service_method.h in Copy impl/codegen Public Headers */, + B16C7B48460E10ED486E3951C11128B8 /* serialization_traits.h in Copy impl/codegen Public Headers */, + 4A7D23CED05C42719C7840B1EA8A6CB7 /* server_callback.h in Copy impl/codegen Public Headers */, + FC1864EC45BE633964B9D4A7E7F592DF /* server_callback_handlers.h in Copy impl/codegen Public Headers */, + 5DC5813573F846E20D974665EE6CD03C /* server_context.h in Copy impl/codegen Public Headers */, + 2AE9C5F3DA45EC400D081FFAE95CB875 /* server_interceptor.h in Copy impl/codegen Public Headers */, + 4F19ECB13C49ED2CAED28C7600CEC60E /* server_interface.h in Copy impl/codegen Public Headers */, + B2B3482B20B97D0A25E27176B10327EA /* service_type.h in Copy impl/codegen Public Headers */, + F09C5166FA828B672BB07BE38FA0CDBA /* slice.h in Copy impl/codegen Public Headers */, + F9E1504C9E8EC368BB7D4157162CF743 /* status.h in Copy impl/codegen Public Headers */, + EAA233B55B328C295D031230809151ED /* status_code_enum.h in Copy impl/codegen Public Headers */, + 3FCECD08BD8182677266EAA5105DB8AC /* string_ref.h in Copy impl/codegen Public Headers */, + AB47E3B7CF5E26D12E7CBF50CFE6F7DA /* stub_options.h in Copy impl/codegen Public Headers */, + 9D7F1C31A0CEA398C359181F1E0E0F9A /* sync.h in Copy impl/codegen Public Headers */, + 818ADC273DFC3C28B9366AEE1107FB81 /* sync_stream.h in Copy impl/codegen Public Headers */, + 2A8EAB45C8934D2D1513F7479FBAFC77 /* time.h in Copy impl/codegen Public Headers */, + ); + name = "Copy impl/codegen Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2454DE5F38AB0A4282CF6BC4196CDE6E /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/v3"; + dstSubfolderSpec = 16; + files = ( + 3D07D6E7DE2661E00EF15E6BF448BB73 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + EF2F9E35FE750C36044F56C27207E89D /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + 6D2333EA7550D6E0F1386DDC27CCBFA3 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + B3519CBAA302DCEE2845491C845EDC9B /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + AE5299BD8BFC6A3D503A563646184FFD /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + 057190063B920376DBBF6CEFEB28A32F /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/xds/type/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 24B4F72B9FD32E8B02624DCC908B1BC2 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3"; + dstSubfolderSpec = 16; + files = ( + 9A2419EE39F8296C1632C8A6D7C11CB7 /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + 614763C8DAA1D74551F286D9D20E32F3 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 251574FAE9254F5B61FC3B216AC6172A /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/data/accesslog/v3"; + dstSubfolderSpec = 16; + files = ( + 00B83799AE84D65903F17A6819B04EAB /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + A0893D2217F9F2FC56F4EA5A621D74FE /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 257FD86E341AB6F97958E0B59A580411 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/tap/v3"; + dstSubfolderSpec = 16; + files = ( + 20C5D8A6B4A3E66E441DA581169CE191 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 259831AB2C3BD7035CE83BE96E4CDCBC /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/annotations"; + dstSubfolderSpec = 16; + files = ( + BF897417C0FEE62A8B9E9DB782C4A90E /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 055D83D994EE14CCA5367D7539DD2765 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 25B74735451F9BB2EACF3BD16C6B6A23 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; + dstSubfolderSpec = 16; + files = ( + 0E9C2337D7F9E787ECCDEEA84EE1734B /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + A50C4CAA1C7C68F4B75E14C03C19B7D9 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + ); + name = "Copy src/core/tsi/ssl/session_cache Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 262CE25AF8E8CD34573C11D765504A5D /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 32CBC44346D16CF978B9D5F1CDA1454A /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, - 974A98FBCF623272EA6C6B1ABA838B48 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, + AB63F8DC221E7564F88C8FFB35A6BA3D /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, + 652351695D9E6A3D8E1D106BF539A9D8 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, ); name = "Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2DD52AD979261619B82990D24B2FE081 /* Copy third_party/upb/upb/mem/internal Private Headers */ = { + 26459BBDC0384506CD4452B75A4DBC12 /* Copy src/core/lib/config Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; dstSubfolderSpec = 16; files = ( - A06809CF15C215C4E3DE1BEDE589AC97 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */, + FF4585495DE6642666A69A7D02B7406B /* config_vars.h in Copy src/core/lib/config Private Headers */, + 462C87D1BC3C261C03CB19D4AF5C0658 /* core_configuration.h in Copy src/core/lib/config Private Headers */, + 8B8BBA6595EEFA8F382359D462BB9D00 /* load_config.h in Copy src/core/lib/config Private Headers */, ); - name = "Copy third_party/upb/upb/mem/internal Private Headers"; + name = "Copy src/core/lib/config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2EBF3DB724AA6F1EC722DA16342585FF /* Copy src/core/lib/security/util Private Headers */ = { + 265732BCF97D643D45E0C2140D4DD047 /* Copy third_party/upb/upb/wire Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire"; dstSubfolderSpec = 16; files = ( - A2ED0DCFCA9F42C60BABD957111CC54C /* json_util.h in Copy src/core/lib/security/util Private Headers */, + 16DBED3A48C4EF11BC0F0DE52C307EE2 /* decode.h in Copy third_party/upb/upb/wire Private Headers */, + 1D2F433E8799F5D81287492C281800AE /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */, + F5C65676FAB90A3C1A5CB53DDAE1167A /* encode.h in Copy third_party/upb/upb/wire Private Headers */, + D16D7658756F0A75318AA0FFA8FD0680 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */, + 803E4A2EF224C5AAC1225B3DF3C69F1C /* reader.h in Copy third_party/upb/upb/wire Private Headers */, + ADB650BA2D354E1550E236C8986E483A /* types.h in Copy third_party/upb/upb/wire Private Headers */, ); - name = "Copy src/core/lib/security/util Private Headers"; + name = "Copy third_party/upb/upb/wire Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2EE6D0D0FD35DBCD5473BE397F53609A /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = { + 27838EEADB7498EF148BF57C381FEAC1 /* Copy src/core/lib/channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; dstSubfolderSpec = 16; files = ( - B28A364CE85C6A71A5A9D2ADA9AEA708 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 5A6C58CFDB4249470FCFCFDFFC980222 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 0BC290E612B30A613C1C74CDD64B9260 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 18FE6FA37B4192218F0F18FEF0F5BBCC /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 2737FBA8074124C982AFCF4A55B0085F /* call_finalization.h in Copy src/core/lib/channel Private Headers */, + DE9477DFC6A878A9E1F80D8FEEA4FEBA /* call_tracer.h in Copy src/core/lib/channel Private Headers */, + 1627357118413B436D3C8EB2F149D38F /* channel_args.h in Copy src/core/lib/channel Private Headers */, + 3BC41177BFFA9A1482F1266901E036E9 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, + 6EB20E642880C112BDB9396DDD010765 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, + D8D0396674EE453005ADBCA40D9F2752 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, + 6DB68276878032A6CEE28B3A7200D7E7 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, + 413CD6B05CED8EE09F82B92D2143E6A2 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, + 143979FCB7ABA84378AC4EFBE7F2637A /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */, + 33BC35AA1D94E4158D6C888C841C33DF /* channel_trace.h in Copy src/core/lib/channel Private Headers */, + 7F505FFB8C63EC55FC84508E55E2C59F /* channelz.h in Copy src/core/lib/channel Private Headers */, + 8E15D196A2098E7212D873608870C73D /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, + 1D8250EAFA39FD4D2CA29BA9304B18A9 /* connected_channel.h in Copy src/core/lib/channel Private Headers */, + 20D6F63310D1283491A46BABB216F52D /* context.h in Copy src/core/lib/channel Private Headers */, + E07551D5255B452236B09540D397C4A7 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, + EFCADADBE419353D296F2640E34063F8 /* status_util.h in Copy src/core/lib/channel Private Headers */, + D546F6E45D7549418FDE15A54BFB0456 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers"; + name = "Copy src/core/lib/channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2F08FB5F569FE16AA583F7B98BC6F295 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { + 287FFB5CF57E295D1809E41BD822B10D /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 898C412FDDBEE61120455980BE0C7AB8 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, + C2E4CBF80E8F453F7D12EF2410E1E9DA /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 2F4A914529905CBDFB12DAD0F1254E82 /* Copy impl/codegen/security Public Headers */ = { + 289DB606B20EBCE420049DC93B373A58 /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen/security"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/tap/v3"; dstSubfolderSpec = 16; files = ( - 2EFE03B334EA707FE092947041C4D781 /* auth_context.h in Copy impl/codegen/security Public Headers */, + A81DE88C3B625567583838DEE21B43A6 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + BE899431E019C20C949CFABF64EE4935 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, ); - name = "Copy impl/codegen/security Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2968EC62E0286237D43914F21E19163F /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine_shims"; + dstSubfolderSpec = 16; + files = ( + 79CAECE76138D0435BE7ED9AC10A277C /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + F5219DC5865CE715FB19A580F656DE36 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + CF8E71E026FDE8246E3C994AF1019ED3 /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + ); + name = "Copy src/core/lib/iomgr/event_engine_shims Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 29912A7E8B30615DEE0F3090D23CC03A /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/annotations/v3"; + dstSubfolderSpec = 16; + files = ( + 2A821D12F352800F49F49E4B9C909DAD /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + F450C8D1BBDE7B48AA1D84E435242BF5 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 00B0EE9C914F8FA1D1E53B0561C86808 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 200DE6F9643A63DE035D9A1D363F6F5D /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + B5679EA8A6F70F123C16D94ADC24FB5E /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 507F39DC172E61E4826689D4707A2960 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 14016261280565187486FC75C8D6E8E9 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 7AC71DF9EFADDC0B1C871F8218922A94 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 0D0A5DFC2939D74BD0A70C09AB6D0F12 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 1B0432CBC6F1FB4A47D283DD8EF47C32 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2AB0AB2FDA4B3846C3377E786582091E /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/endpoint/v3"; + dstSubfolderSpec = 16; + files = ( + 868F415F05B713D1A591E5ED473B1987 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + C39508BD7E36CB0720761248BA956146 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + 64674F5BC563685ACE803E7F355A78DE /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + A2A9F9D8B001421B5B7DB83421EFBE72 /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + 0119A29724B11277A85265461F7F9306 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + 4E8642D8339E2F19E56EBF56F920CCB0 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2AB64D8A484B3C0ED2FAE80D4978165B /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3"; + dstSubfolderSpec = 16; + files = ( + 55D4F60BFD37E428A7F62683CA7BCE4D /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2AB7913EBA56BDBD206D6C15E05A4281 /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/listener/v3"; + dstSubfolderSpec = 16; + files = ( + BA26D815C2B660485C8057862916C4BE /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + BB3FF305812A0D94668F40016B624DBE /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 333C04040AA87DCB3DF0B5861F2D15F0 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + FB31F29D7BC5E28CC3D108A59B521A4C /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + F9D8D46D3C42BB9210553FC1EAE1B2D4 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2B98D34CC21978A7AE5B3C4939F55098 /* Copy src/core/lib/backoff Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; + dstSubfolderSpec = 16; + files = ( + 16E0840F878F058D71460F73C7E556C7 /* backoff.h in Copy src/core/lib/backoff Private Headers */, + 072DD1CD1405F38A44E15C104AE12927 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */, + ); + name = "Copy src/core/lib/backoff Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2BA14217630ECCC0A6FDCE4940025377 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3"; + dstSubfolderSpec = 16; + files = ( + E3ADF01991DF7D327066281862ABDE13 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2C4AC5E8E8AE33B61AE3DDEB8D7BD3CB /* Copy src/core/ext/upb-gen/validate Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/validate"; + dstSubfolderSpec = 16; + files = ( + AF3FC353FBBF5F3B966EC22B35BCE830 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */, + B70DF9912ECB5666F997890D0901AED5 /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/validate Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2C9AD9B57792256B3845F05AD4C4446F /* Copy src/core/load_balancing/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/xds"; + dstSubfolderSpec = 16; + files = ( + F0B20DF5C7C71C94360A4E4A93825D8A /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */, + 727233E9E872BBE1AAFE065CD4D10831 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */, + ); + name = "Copy src/core/load_balancing/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2E83B98BB1ECA00B8F514CDB1F8CD50C /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lookup/v1"; + dstSubfolderSpec = 16; + files = ( + C9E5C3A33C020A2E0338A8C83A2A5495 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + 082CB48AB1A613C25BFC5E9C6112A119 /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + A49E37780060BAC4AC98AACD927E22CD /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + B038E7213A2725F9FDF36D4D60107048 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 2F43707F73557CCE3DBDDAF14E17CA91 /* Copy src/core/lib/matchers Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; + dstSubfolderSpec = 16; + files = ( + 1FC6BE4AD977A070E91DBE0F6F9A06E9 /* matchers.h in Copy src/core/lib/matchers Private Headers */, + ); + name = "Copy src/core/lib/matchers Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 2F7621F33CDD1BBF78F0BE7442D89AC2 /* Copy crypto/fipsmodule/aes Private Headers */ = { @@ -11471,62 +11805,146 @@ name = "Copy crypto/fipsmodule/aes Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3160D4BFD7DF6FA46980334E9D834A75 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = { + 2F86C1B9D3C729ECAAE0E716C5403A7D /* Copy src/core/lib/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/tap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; dstSubfolderSpec = 16; files = ( - 5F8983FF813977AC1F9DF0C2E25AECED /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, + ADAFB5DE03D0D937166E0FDF2608AADB /* batch_builder.h in Copy src/core/lib/transport Private Headers */, + 94F2C8935BCF30ABE45BE9253D932C5D /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, + FAE9A4E77EEA748BE6DDAF6590463E91 /* call_factory.h in Copy src/core/lib/transport Private Headers */, + 90C354CE6999D16D5A3BC8543A91E234 /* call_filters.h in Copy src/core/lib/transport Private Headers */, + 88D80C58D1276AF4A930738932D927E5 /* call_final_info.h in Copy src/core/lib/transport Private Headers */, + 47CB7569AEAA14E5CCDFD85E36D49BFB /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */, + A3D496EBC4EDB9AACA7913AB76A73A68 /* call_spine.h in Copy src/core/lib/transport Private Headers */, + A26F526143CDF462341C5436E2612F2C /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, + 6F72E76406CF1975AC7CEA624B8EDBD3 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */, + F2E9046BBB871C4BCE25F73C4DBD50A0 /* error_utils.h in Copy src/core/lib/transport Private Headers */, + 5B7842374E21A1F4AD6533C29C753029 /* handshaker.h in Copy src/core/lib/transport Private Headers */, + DA30A84F062B866DDB324483EF4757A9 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, + 473AB20647AED60BE56DBC2BF547AE7C /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, + 4FADDAF190FE16BFBD36AE7710DE3403 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, + 78CD91203D43C5FC6EFCABC7A27E741F /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, + D8692194AD47896253B7E388D5B365A0 /* message.h in Copy src/core/lib/transport Private Headers */, + 82D8B078CE47A818C2A32FD80EA99D4B /* metadata.h in Copy src/core/lib/transport Private Headers */, + 81A398DBB4F2685A7C8C71E6E65F6677 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, + FD98713C50EFCAA697943D20856C7DC4 /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */, + 7E59621473197CAF7655E42D86DBBD8F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, + CFF76706A987880054CCC7395007DF1C /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */, + C9895C7EDFAB74B241A5AE499D562487 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, + 81E797749CF613E4B09CEC6B9EA1CC02 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, + 7254F2E78C0854B5D53E35181F551131 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, + BEB3FA0152F99FF6E135AF910CF9420F /* transport.h in Copy src/core/lib/transport Private Headers */, + B52A597699E0F30787A5EE6DBB6E08B2 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers"; + name = "Copy src/core/lib/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 318B153B0539FF1BA9B7D4EC9A5AC5BF /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + 2FF09315DED635A8E009A498CB9B883E /* Copy random/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random/internal"; dstSubfolderSpec = 16; files = ( - 6D53B1D15D7FC45D68302D23B0937445 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + 4C50407FD3A5656A9F7178E8D4F0DF53 /* distribution_caller.h in Copy random/internal Public Headers */, + DC63C56C6BCA4482630BC868AE7289C2 /* fast_uniform_bits.h in Copy random/internal Public Headers */, + C54EE6543480477D8BAAC61DBA13A228 /* fastmath.h in Copy random/internal Public Headers */, + 62ABAEA765BF881D8A22902955147FAC /* generate_real.h in Copy random/internal Public Headers */, + 0F5B0A2D3C948C9C2ED1074CBF1B68D8 /* iostream_state_saver.h in Copy random/internal Public Headers */, + 61E2CAE23E5C1FFA93E87040C18536D6 /* nonsecure_base.h in Copy random/internal Public Headers */, + 9330D2D16A7B6D7B25FB6FC7BB29B63A /* pcg_engine.h in Copy random/internal Public Headers */, + DA773AAC8F225746831936FB0F6D1629 /* platform.h in Copy random/internal Public Headers */, + 32B068B0BE35392238A4DE19623073F4 /* pool_urbg.h in Copy random/internal Public Headers */, + F069F5558A9DA5A5F3109EB57249D784 /* randen.h in Copy random/internal Public Headers */, + 9E84D85158E70E61D3B82F9DDEFF0250 /* randen_detect.h in Copy random/internal Public Headers */, + A4B82D9217A1FFF29DBC87EA9C2B72F5 /* randen_engine.h in Copy random/internal Public Headers */, + 8AA44486460BFC3107D0C0637782F17A /* randen_hwaes.h in Copy random/internal Public Headers */, + 6F5F6A655EAD33AF938B535FBCCA1D75 /* randen_slow.h in Copy random/internal Public Headers */, + E572BC8112FE410D8F53DA1D24F99036 /* randen_traits.h in Copy random/internal Public Headers */, + 60A4BD75ABA1AC2E16A1FCA29D6B2721 /* salted_seed_seq.h in Copy random/internal Public Headers */, + F20F6BE12FB72CD9AE48EC14440F731E /* seed_material.h in Copy random/internal Public Headers */, + F04645C1D269BBBD67D76457E392A0E2 /* traits.h in Copy random/internal Public Headers */, + 7582D0F4A5FDAC3285D4EDA126911F23 /* uniform_helper.h in Copy random/internal Public Headers */, + 279CF0869C103E8E903009721BCD0065 /* wide_multiply.h in Copy random/internal Public Headers */, ); - name = "Copy src/core/lib/security/security_connector/fake Private Headers"; + name = "Copy random/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 31CC5716B443BC340FA8214B575241B5 /* Copy container Public Headers */ = { + 3125587507170CDC5F99BA19276A1ECB /* Copy src/core/load_balancing/xds Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/xds"; dstSubfolderSpec = 16; files = ( - 60E7ED40C95035FF86C421802AFA4A63 /* fixed_array.h in Copy container Public Headers */, - C279B33359B0CB227ABA88630A96253E /* flat_hash_map.h in Copy container Public Headers */, - 46EEAE5A591A0E6B71893D2D0D780D3D /* flat_hash_set.h in Copy container Public Headers */, - FF34F8C642DBD55B451E28C2E1808BFA /* inlined_vector.h in Copy container Public Headers */, + 05FAA679CB1C1FE41761CC9943A5908F /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */, + D1FB6A3BDF17009CA382F9C3A92AB8E0 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */, ); - name = "Copy container Public Headers"; + name = "Copy src/core/load_balancing/xds Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 321353A6DD992126F4F9888ADDE3D820 /* Copy src/core/lib/uri Private Headers */ = { + 313B24933739C02A19A78061321A301D /* Copy cleanup Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup"; dstSubfolderSpec = 16; files = ( - E0B650121547FD52426AFFBE5ED7CDED /* uri_parser.h in Copy src/core/lib/uri Private Headers */, + D67F265632D17ADF5158F442C7455522 /* cleanup.h in Copy cleanup Public Headers */, ); - name = "Copy src/core/lib/uri Private Headers"; + name = "Copy cleanup Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 32178B301C34B451FCBD4A2B55C85D3E /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + 31693803C38274CCD6AD2B92AD139D82 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 6BB5F3F2B6D948CF5CB2707978ADCBF7 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + B92B6B5094E4274B5F27FAF516852357 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 51D4206844D09BAD7A46D86D184A5C1F /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + ADC769CE5EF71A1E9E530BB300463CA1 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + D19F4C2EF635393D30CED72F75AF6A49 /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + FBF135279C3080C183B57E53F671FE70 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 6A9C70D756CCC0E3E1C1AF8B63C26896 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + C14140642009363B3E343549AA0E0EDB /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + EEEAFF67E92022F3048A84BCD825B052 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 2AA81C3A0503F727597C678C18483027 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + AB24C9AC8F5A2E47969B54E109F03701 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/fake Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 31722097938870C6C0D6FF5707286853 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/status/v3"; + dstSubfolderSpec = 16; + files = ( + BE2B11FC4AEB2AAF9AE2B420258D0EB2 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 324EC1F4E33116296838C21A07FD6ECD /* Copy src/core/lib/security/security_connector/local Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; + dstSubfolderSpec = 16; + files = ( + A0D0BA00D14CC17E46BB0412544A7342 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/local Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 32AEE21E1E7B94D87CA5353592A90928 /* Copy src/core/load_balancing/ring_hash Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/ring_hash"; + dstSubfolderSpec = 16; + files = ( + 73D93D45A0B3666D1EBB02D3DB33DCB3 /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */, + ); + name = "Copy src/core/load_balancing/ring_hash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 32BEF4AE2381E2B4B43A84EA1AC689A2 /* Copy crypto/fipsmodule/dh Private Headers */ = { @@ -11540,151 +11958,77 @@ name = "Copy crypto/fipsmodule/dh Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 32D3A4B8EDE7062D8FBD4F391E6A398E /* Copy src/core/lib/event_engine/cf_engine Private Headers */ = { + 33317C223E3349E7E2179434BB70B607 /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/cf_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - A7372069F0416A38C5912C7F41AA8BAB /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - 89D9742818B71F5648D5B7841CB25D64 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - 0C8D37119603397633D2EF4D6D4D6E87 /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - 97F731FA0625EF03652C625A69C86739 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + C7F4359466A73611AD1AB69342D6E3AA /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, + 06EA6EEB104D19EB7894E474A5D82613 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/lib/event_engine/cf_engine Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 32D8E63F641B69FF7DBAF601DF210584 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/data/orca/v3"; - dstSubfolderSpec = 16; - files = ( - FE0F8F762465DBF92D079D25A01D7017 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, - B6B0346002D576A78E47198E5F7FAAEC /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 333B7FEDD137033ABFEC10B915C7C6C6 /* Copy src/core/ext/filters/http/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; - dstSubfolderSpec = 16; - files = ( - 990689E6C0A5833E7E9682A00FAFAEE1 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, - ); - name = "Copy src/core/ext/filters/http/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3381AC13C50980438AC8C34174937A33 /* Copy generic Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/generic"; - dstSubfolderSpec = 16; - files = ( - EAD41B01CA3CC0CBE22ED32389518A22 /* async_generic_service.h in Copy generic Public Headers */, - 4FE990773E38C6ADAE95DF1300F3FA5B /* generic_stub.h in Copy generic Public Headers */, - ); - name = "Copy generic Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 34380900A9EE177D9BB7CAF6B3B3C912 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3"; - dstSubfolderSpec = 16; - files = ( - 513F7565DF87C87541FE4BDAD14CDBA5 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, - 85F2F2B5D929AF307A2AEDDEE5E22063 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 34A79A1073AFB40027C8718345176BA5 /* Copy src/core/ext/filters/stateful_session Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/stateful_session"; - dstSubfolderSpec = 16; - files = ( - CB1691CAA5095D634E8398AB2C8C0053 /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */, - 5F852523E084D41747E9B0C290F24408 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */, - ); - name = "Copy src/core/ext/filters/stateful_session Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 34BD9D5795C2E645A66772EF6FD05A7E /* Copy numeric/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric/internal"; - dstSubfolderSpec = 16; - files = ( - E8DFD12FB8E364086A3065AAF0408FE0 /* bits.h in Copy numeric/internal Public Headers */, - 3EC4C67F729AD146CC1C386810296944 /* representation.h in Copy numeric/internal Public Headers */, - ); - name = "Copy numeric/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 34DE757082A3E821D30BD7693F4A8F2E /* Copy src/core/ext/filters/http/server Private Headers */ = { + 33ACE8A2C009A62FAE91C2BE3B062347 /* Copy src/core/ext/filters/http/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; dstSubfolderSpec = 16; files = ( - 67373121C322FEB08195BC357E312B8C /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, + F2788A2DC78055663156650D82A144D5 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, ); name = "Copy src/core/ext/filters/http/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3593124CFC1002BE660F067413C647FD /* Copy src/core/resolver/dns Private Headers */ = { + 33ED8E636A020FFA0E73F7CD834FADC3 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 7F74D145525C2A183C4A7E5C792A802C /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */, + 30F14FEC4C9EDABB80FFEE1B8C2E627A /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + D76194E2A8AF0EFCB714CDFA275AD6B9 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + ACBB2808AA47EFC83522ABAED2FC8866 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + BFF6E53DBB2E39D171FCCB8678F5F25D /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, ); - name = "Copy src/core/resolver/dns Private Headers"; + name = "Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 35B26376B905DB1A7195175DEDF54E11 /* Copy third_party/upb/upb/base/internal Private Headers */ = { + 34C825E082DE187BE81210562D7D86ED /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - BC06DF31BC9749095F382BE5CD103DE2 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */, + CABB2DA23FDCF371A240B27F2192DDBD /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + DA78C7D96F13A265886D3E25007BFE15 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 5030B4C3C1098EB96074EC3DD65C4628 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 8B11E591076D3EC600EFB7E2B1F3D6FD /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 7830549F0346987623A1D1DFE721FFF4 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 9F0E8467E691C594A410C1631904B47A /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + ADC36E13A7B10839B1195CB98D3BF99A /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + EDE47C0567BD011186649D8F46C2DB8B /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + F8862933CE6699EDB40882ACA90EA4F5 /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + 504DA8998EEC5E289401FC099842DA6E /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/base/internal Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 35B72A2BF6B6E32462C1D72EDE0C5AEC /* Copy src/core/ext/filters/message_size Private Headers */ = { + 3575D82FB12D3C0BD3AA6B328EBEC7D1 /* Copy src/core/ext/upb-gen/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api"; dstSubfolderSpec = 16; files = ( - DD77B19E026885768F885F68714A1684 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, + 4B1CDFB8435CF9ED66915E85F3C05260 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 5CEB0D4A154DD7603165F27B32F6A7C3 /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 459D334DB77A6AE70418131EB8C83916 /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + A38B00C483F77B76BC144DD0EB60E318 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 17F78C7DACBC35239A2346C2BB7CF785 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 372CD72F74F313E66483E31862FF488A /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, ); - name = "Copy src/core/ext/filters/message_size Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3624A25E1FDF49EAE1AFA89E6FF15551 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - 8F9A9E6CE52E96A10A0B9868C36C0465 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 7917B58031A7DA24CC9B20134BED697C /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 28001B0F05504009CC9832EB976CABF9 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 5CA7E5B819B9DAD64125ACAD616061BA /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 9212BAF716CCB5EA4622D6B4C5C89FDE /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 1E9BCB2186DF9BD3B78FA19F47ECB1B6 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - E820A84A02DD490D87BFBB90157067A9 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - B65DDF22D7CCF0A010CD63F8005FBC8E /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 36440DE26E08A619D9964BA38AA55C86 /* Copy crypto/fipsmodule/cipher Private Headers */ = { @@ -11698,112 +12042,192 @@ name = "Copy crypto/fipsmodule/cipher Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3726176A8FF181C5412707B856D42D6E /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = { + 3731987163363B2AD295BB2E8962992F /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/protobuf"; dstSubfolderSpec = 16; files = ( - 5F8492AF47F653AC95770C4444079E49 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 500F7C0BE731F3EF04C4AF911C0D2DCA /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 39E079FCEA957F92B162423395D26DBC /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 06D620A431B4097FECE8A10270BA6FAD /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 5103FC2A8D2DAF776E163B8F77795439 /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - A28507C64FF929EA0B88786266B772FB /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + E4449303255550A7904B740C8F4C3CD5 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 779F7BC30BFE12BCC82E803E2E6D566D /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 9870F872A1C091EA0254EFF04CCB745E /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + C6AA6E1F4C6E50B70BE826AD59B125F7 /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + E1180A3487C32339B15736B46AD5263A /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + FB9B18C24EA40E31C067DD8CB5D33165 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 6A2319F50A4F558D0963C977A892E677 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + CAA34876871267C16D469A5D6EDDDC5B /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 038CD1744DA8B94290A4D53F18075D95 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 1F6B5847DEE27FBF7FE1ADB3554C4EB3 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + B04CABB9227D99988332919F677B2FB4 /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 761B4A2E2547C0C3C12B0EEF09BDAFA3 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 1BB1E0A668B7E149E0C9C130544DA209 /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 353720D54A7BBCDEB3AA1C3DBD7076A9 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 377F970EA5BDCF59804A76E5AB338181 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = { + 3767A199D25398F63262510265CEE493 /* Copy src/core/lib/json Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; + dstSubfolderSpec = 16; + files = ( + 943A8D546EA7C8A4B34EA5682E0472FB /* json.h in Copy src/core/lib/json Private Headers */, + 4786A54F8299651F5AF0A79D5F05746E /* json_args.h in Copy src/core/lib/json Private Headers */, + F5513BF5B53A89489EF367CB656B4EEF /* json_channel_args.h in Copy src/core/lib/json Private Headers */, + 8FEBE3DCFDB9E8111B2CAF03F679FBA9 /* json_object_loader.h in Copy src/core/lib/json Private Headers */, + 24E5309C09FF5F01074C5D78070A0CF2 /* json_reader.h in Copy src/core/lib/json Private Headers */, + DB46E706DDAA07C6A5E3E1D84D7D27A7 /* json_util.h in Copy src/core/lib/json Private Headers */, + A1DEFBA96CEDE09A645BB56A9EF33BBF /* json_writer.h in Copy src/core/lib/json Private Headers */, + ); + name = "Copy src/core/lib/json Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 37E30E9FFB4E79D445C0CF31C72C02CE /* Copy src/core/ext/filters/backend_metrics Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/backend_metrics"; + dstSubfolderSpec = 16; + files = ( + FF4B1D84221E074D7071B57AEE87F7A1 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */, + 0238FF552F87E758B1C5690AD45C7FCB /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */, + ); + name = "Copy src/core/ext/filters/backend_metrics Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 37FFE2E8D6E5A02B3F3B63297C92AD95 /* Copy src/core/lib/security/context Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; + dstSubfolderSpec = 16; + files = ( + 246EB85F3B2BB8D4ECF4EBBBB6AE7272 /* security_context.h in Copy src/core/lib/security/context Private Headers */, + ); + name = "Copy src/core/lib/security/context Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 38091E6ECE11DC0A51D4B5977B7E3F8D /* Copy src/core/lib/uri Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; + dstSubfolderSpec = 16; + files = ( + 302231866E73106CB05CC9919F25729D /* uri_parser.h in Copy src/core/lib/uri Private Headers */, + ); + name = "Copy src/core/lib/uri Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 381E8DF47BBEA24E6F58161EA88AEB6D /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3"; + dstSubfolderSpec = 16; + files = ( + 216FBF2B2798290EA21F5E532672AC97 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 3821FF0DE37565234A77BB5D76386A9E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3"; + dstSubfolderSpec = 16; + files = ( + A89B1C079CE5DA4F72984AC61BEC8E4F /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + CCAC36C5BEAFE4E0D3FF903F0410851F /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 385EE07825B4932D4D98C4722369CCA6 /* Copy src/core/lib/experiments Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; + dstSubfolderSpec = 16; + files = ( + 47DD7A3C5DFA4C24FB645356405997F1 /* config.h in Copy src/core/lib/experiments Private Headers */, + 83524461C226C700CDD575DF6A7CEEA5 /* experiments.h in Copy src/core/lib/experiments Private Headers */, + ); + name = "Copy src/core/lib/experiments Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 39C0C66532C60A86F73ACA3BBC1A22A9 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3"; + dstSubfolderSpec = 16; + files = ( + A3A7E3F2147728C4F6A681F74392F8D9 /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + CEE5E90EE34AA3257F4FFA16A0E2D8BD /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 39D54080661720020FEEB557FAC9F95D /* Copy src/core/lib/debug Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; + dstSubfolderSpec = 16; + files = ( + 6092C1CFA556656C6FB60A3676707998 /* event_log.h in Copy src/core/lib/debug Private Headers */, + BD52D9AFD65B61E66F695C8099F0E467 /* histogram_view.h in Copy src/core/lib/debug Private Headers */, + 0C1C099E21343912BD5C369298FB2678 /* stats.h in Copy src/core/lib/debug Private Headers */, + FCB21915170C46498CC092DA99268882 /* stats_data.h in Copy src/core/lib/debug Private Headers */, + 194046D1B88B09B5A61025F9F4DEBBA1 /* trace.h in Copy src/core/lib/debug Private Headers */, + ); + name = "Copy src/core/lib/debug Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 39E36CBD296AA925E42EC8F4897E791C /* Copy src/core/ext/transport/binder/utils Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/utils"; + dstSubfolderSpec = 16; + files = ( + C0007313441F0FD0B684D9ACA24C4AFA /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */, + 26AF2C4502FC489A01A98D6345E5DD5A /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */, + B75EE9939AB933DA9FECF1224196C0F7 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */, + AB8F4C648E59A9D5D6FBD4940AAAC564 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */, + ); + name = "Copy src/core/ext/transport/binder/utils Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 39FBB477991209E4EFAFBB3E7C9C6E6F /* Copy src/core/resolver/dns/c_ares Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/c_ares"; + dstSubfolderSpec = 16; + files = ( + DE9D545DA7BBD5EE9AC3AA5335EB303A /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */, + 11CB2D833910EEEAC35536F071F14F91 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */, + 2D2AF2463B47ACD8062836D8C3E7F6FB /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */, + ); + name = "Copy src/core/resolver/dns/c_ares Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 3A46712E473E02DF372649EA66EEEBA4 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 6D51756DA508F48DBB0C59475282C9E7 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - 37DC04B1304359BC7DCA34E9A82A9F77 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - 083D00CD168CCF3178B0668330533AD8 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + B459878FA30C5B4474AC91D8EFAB4D8A /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + D666E42466F53ADB6FABEDD60FA13A1F /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + 7BDAA28A056FFAC640F151BA921C3D1B /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, ); name = "Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 381F5C50497C5FE0DF931EA4FA210A91 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = { + 3A4EDD9C9D08016DA0D137177BDFB60F /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - 66EC86EA6E0FD2915C7A9E757012A21B /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, + 9528A1B2E8D6B8E124C992A380873250 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 386B9EB1C3ECE95C5C95FD93C95F49DE /* Copy src/core/lib/gprpp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; - dstSubfolderSpec = 16; - files = ( - 352754E06604B4CD2452FBF39138FD03 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - E9B4218F02D0FC664DF2A69B97CD53DA /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - 39197F7FC2CFD5B6B27B8EFD6089C525 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - 4EACB1490EE67B6D666A9B5645EEF1DB /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 5460EF4CDB0DFD55CBEED86AD8172D48 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - F7A3BAB52239EB52EC6D5BAF80734556 /* crash.h in Copy src/core/lib/gprpp Private Headers */, - 16A6053F876CCDAAAF2070947CF9E1BF /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - B6184C81E865E852E9FB802377CE42D7 /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */, - 48023470021CFBA75092BF2C29336D85 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */, - C677B06F4903F410C0FB892396B60FE9 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 587EE6A7257D071F3F10BE8BF9F23E85 /* env.h in Copy src/core/lib/gprpp Private Headers */, - 43BF302EAD58E2FDE810ADDD10F8DEDB /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - 3EF83E354E561E03876881F099342360 /* fork.h in Copy src/core/lib/gprpp Private Headers */, - CFB89D7DA4EEE060B476CEF773433C96 /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 931E03474B4027C9F36B8F15AC4AC30D /* if_list.h in Copy src/core/lib/gprpp Private Headers */, - CB434FC93734D4661391D96D4308A7F5 /* load_file.h in Copy src/core/lib/gprpp Private Headers */, - 3B33BB9837A99CFE245D356004B4917E /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - 6B6E669DD284C50C10A7635F238F0446 /* match.h in Copy src/core/lib/gprpp Private Headers */, - 452C262707873C97F96909F39AE2EF59 /* memory.h in Copy src/core/lib/gprpp Private Headers */, - 197339FB03DDF0FA5CF673F2248B00D9 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - 405883ACDB738A68B78FAFE7FCE09106 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 2DB51A95387AA98F8A4790B5D3BEC4BC /* notification.h in Copy src/core/lib/gprpp Private Headers */, - 3653460992972273387C4C7ECD4944D3 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - 95946244EFB15B3DE313056DCAEC1C81 /* overload.h in Copy src/core/lib/gprpp Private Headers */, - 237BE036AF654B193EF1A19F4130F5FB /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, - C75A91D0EF1033452FF5839845EA4ED7 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */, - 688596D476F35EB45B860F203031C1A8 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - B63779FB2882C6D1B95FD8F044841279 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 120D8B9B5A4390E738ED2321F322E775 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */, - E4E66FCA5FD63575B9963E807CD5796A /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 631675DF053AD3E95199E9E64D5F2882 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, - 2E93F2FFBA5544E420DDAF46F1F7C723 /* stat.h in Copy src/core/lib/gprpp Private Headers */, - A1D881CA0A67F53BA03D06A9D922AD24 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - 3D628B96B5C48CA06A309225C2FB9F82 /* strerror.h in Copy src/core/lib/gprpp Private Headers */, - 0A26C0F620DE39CE545E30E3C8447AB6 /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 4B0D545CA11606CF85512DDE873F01C2 /* table.h in Copy src/core/lib/gprpp Private Headers */, - 53526EC9C9F3A6DC5F9D82F81F5078A9 /* tchar.h in Copy src/core/lib/gprpp Private Headers */, - 5C026C01F61E749879963E025DCA2ADB /* thd.h in Copy src/core/lib/gprpp Private Headers */, - 5B345E8F9EE9BF7BA31300912DF5AEFF /* time.h in Copy src/core/lib/gprpp Private Headers */, - A13E711FEABC0608ECD6781E85F3A09D /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, - 1DA9633F1A81E4A8A6B17509C8160E98 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, - 62C01089EDC87AE8E61D7FC4C932CB5B /* type_list.h in Copy src/core/lib/gprpp Private Headers */, - F0D874604F64B5D5EBFC4EB3C45E9307 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, - 07B298DAA63AFFD7CAFA2AA2C2F9CC6A /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, - 651B7518318C646C77681279D53569FB /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, - 333F769DD7ABEFD9B5D2348C3C85145A /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */, - ); - name = "Copy src/core/lib/gprpp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3A0A548694B207FD9E4D525F635ED946 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3"; - dstSubfolderSpec = 16; - files = ( - 8D0C80DB4635AFFE3C29BE7C367A818D /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - 0573A64C94970759CD3843C2D267C6C9 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 3A725B52FBD7FE1681E28F38A2938F40 /* Copy crypto/fipsmodule/modes Private Headers */ = { @@ -11817,362 +12241,230 @@ name = "Copy crypto/fipsmodule/modes Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3AAEA8594B8FBCA16B222493D952935D /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = { + 3AD4CEC8ED51B84E6119D82CCA11AA8A /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; dstSubfolderSpec = 16; files = ( - 66A1615C44DBCDFE1D80693A3E85318A /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, - BA3EBC951554718882DEB17A0BD5A8E6 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + B30B1458984F862FE858860CD6F2DC2D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers"; + name = "Copy src/core/ext/transport/chttp2/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3B56CF1B4DFD6F13B9FE7E0D48DCF9DA /* Copy src/core/lib/iomgr Private Headers */ = { + 3B7A7110CCCC44D1A22D8D6696BD8E7F /* Copy functional/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional/internal"; dstSubfolderSpec = 16; files = ( - DBB1CAB9E005D1ED6CFC3ABC83FCE2D1 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - BC33047B55F02E671B4A86A777DE4137 /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - 1A14B541FD091C63812F274E22B90819 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - 6C9BAC5E90FF821D19721A8D4AD8C5A9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - 5BBCA0F935BA89079DE7A80F81E3BE06 /* closure.h in Copy src/core/lib/iomgr Private Headers */, - 500C8ECDF29DA0EBBB469D61DF876F6A /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - B6A68C5E9CCE9FAC7C069603303BE762 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - 1D0499381EEC36968794B960DF33304A /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - 3460501A136059A824F4D8D1EC973F18 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 084F1D0AE6E8D19497F035C8C5CEBF41 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - BBC30782B0240C6676D0A293DA9816FD /* error.h in Copy src/core/lib/iomgr Private Headers */, - 603584E54E878056D614C83DA0461CFE /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 8F7B045685AD1CE35F31D1614D604684 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - AECB994267CC01C72E4878FC33D0D666 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - 62080D86140E43A87C59138D0FD929F7 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9E7152C7472A95D6AEC5C1492695A027 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - D93088FD67E867819AD435E647CDD016 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 56D921429EB5290E1BCF437FAB844E5D /* executor.h in Copy src/core/lib/iomgr Private Headers */, - 01BD4DC8977EAB26C76D49B90FB4ADF2 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - 074D8D2AA0C4300D808AF80119BCF8AE /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - 033E4AF572BD18CF6FA179F15002C260 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - BC68840C06F2403B00DCC29B320080F2 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 8166837B47D17623F6EA1805CB82D694 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - 5D6E757B10D8DE429A47BBC31570EF35 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, - 241F9870EAE25FF22C0FD65AEBCF84D3 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - FB81F6F78AEF285B2EDBCE8A57E050E3 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 3405A75520116DB3135FE6DBEFE2DA23 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - CA41B720362FB509EF6970A7532483D8 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - 2A17A073ACA3EF109D7189F67A33564F /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - D333424094DBAB2E28EB22188E06BF33 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - 94C16BE3828D1E3C7D848C85259A0B4A /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - 3060FC72F0D59D9C2DC5CDE5EA41DE2E /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - D273C486E088ACA972C83FC55EC0869F /* port.h in Copy src/core/lib/iomgr Private Headers */, - D715D5DFFF720D8D7636D8EB2824C585 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - D4329CA26C13D3D0BCDD4C94785D82CD /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - A3BBC763897BA7377778A3EF4D490696 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - A98CF8709424D87D3EFE70839596ECA3 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9EF7773A3007CA2EE8EB79512E59F282 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - 4C41121DF049EF3A693DEB7946781166 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - 0AB922FC6028DC11C6707DE4AD07CDA2 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - 4F97B71DC7CEAEBA2AD7480280CB8294 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - C35574F3709F8360442862ED95B95D7B /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - B7569D7B7C0FC2CFCD8D44D52D83825D /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - D0D915178DE676D8F6F59F65EAF4A6AF /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - C5DD454687CC70BF4E5D96A121649F2F /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - 62D99A55311534FDF93D006E728EEDC1 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - F65FD5934BF0D9C959420240FCA39312 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - F07FDB4A3BDC559AE9E73EBF0E09FD7A /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */, - FF8E344C96030829EF7C67ECF55E10F1 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - BFD088F19ED7104DCE35D26454C3B2CD /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - 181F0445D019D74DA5AD4EA35DB342DA /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9EF99CCAB5408A2A173181BDBC6E57D5 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - 98FA165090075A46E90085E5977BFDB5 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - C9999F3FC927E648F0F4C0205D14932D /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 782195D999E8CDEE84DBBE5D1A7DFB8C /* timer.h in Copy src/core/lib/iomgr Private Headers */, - EA97E94F4C95379232CC9A3D1024D743 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 384916C9F7D8A9D1EC64EE6DE8C69026 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - 5BAE2F62E6CC978E46625E87CF2DB471 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - 8391C12335B609C6368454BB1524032A /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - 0B1A0E491063C3A73DE08E5814FB99A0 /* vsock.h in Copy src/core/lib/iomgr Private Headers */, - F13E143AC4429FF009EB78C9E20DCA1D /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - 049C1D6F6C90F5291122B9549A40958E /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, + 3D37159EE7693F7FDC7359E630674824 /* any_invocable.h in Copy functional/internal Public Headers */, + A588B83743E993C54F7F961C6D5AD1AB /* front_binder.h in Copy functional/internal Public Headers */, + 14D3FC60DCDF676B82679F1B73257AA2 /* function_ref.h in Copy functional/internal Public Headers */, ); - name = "Copy src/core/lib/iomgr Private Headers"; + name = "Copy functional/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3B69CD1013D5F9AB37EA0F44F4A0E008 /* Copy src/core/lib/http Private Headers */ = { + 3C7259419EE7370876CC2746C1F87960 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; dstSubfolderSpec = 16; files = ( - 695859C3E765BDF67AADA34CA030185C /* format_request.h in Copy src/core/lib/http Private Headers */, - 729FF7788A09E8F8611930CC2F4B6DF5 /* httpcli.h in Copy src/core/lib/http Private Headers */, - 217B941B7EAD896B4945B85074A35403 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, - 3A12012EB2EA51201924DCC8AE7ADC11 /* parser.h in Copy src/core/lib/http Private Headers */, + 6E6F748AF124F7469AE907D3EE268687 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 5F7F61D83B90E7657B4F89296E75DEB5 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 6A77D2D0BB2A12CF4394039208CD374C /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 29E3A948388D6C5DC8B9575432A5B526 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 0BE6B7F5CA75DF11BABFF59742E2A285 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 6E6492CC6EC406D3D2D54F61CACE4490 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, ); - name = "Copy src/core/lib/http Private Headers"; + name = "Copy src/core/tsi/alts/handshaker Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3BCB38BAFA7CB2C6CCA5ED6F585416E5 /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = { + 3D04B716A0C8BC194289393C91249EA3 /* Copy src/core/load_balancing Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing"; dstSubfolderSpec = 16; files = ( - DC7A0091AD08B901598A75E1E83C423E /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - AC5CF0B1B6042D0F0C4E7D9AD030CA60 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 0F260D59187D2547E9ED1146D316F185 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - E75F34C116A34DCDF31BF39C899F633D /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 4F224B97889B6098BECCBB0359631D86 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 8656323BA94F06203EAD278B0B27B37B /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - DA2453CC84B2BDADCFA2803946680FE7 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 6C55BCFF88F98CFD7752FED05F86D566 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 61DC9C62290B5E143EE85B99CE92F487 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 166612075D2BF2BCD41684A4DF284FD6 /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 66B067FC6DDFBA002642C5CA0CD35C33 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - CCA9AA15CC28223CFA7ED27358F0078A /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 937CFA1E5B9852D4E5FBEAEE31131E7A /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 8AD573064CA80F21F51AE52A4DC3FDB8 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - ECACD00E22AADB8031B98215FFE60F5A /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - B482CF357D834AB4B90AEED556884A7D /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - E1474FB2218D08E861414475BBA05BD4 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 659DC72673415500539C2DB5B0EDA10A /* address_filtering.h in Copy src/core/load_balancing Private Headers */, + 105D9B682930BA077243C258C51066A8 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */, + 40EFC5FD92AC118C7DC8BDB5B85157A3 /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */, + 69447CC2528DDC76BC37D69A7D2011B8 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */, + D73CCAFCA86FCEF8201EE48E87170991 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */, + 8BE62688B74A1B798CE8AC6B24A1199F /* health_check_client.h in Copy src/core/load_balancing Private Headers */, + 692BF5C037FF3092C9E8FD0E05FC39A1 /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */, + 1F144385B937BA4AECDBCD4B688753A3 /* lb_policy.h in Copy src/core/load_balancing Private Headers */, + E23E619246686161143E57E4A172DC1B /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */, + 59E3ACC89267C4FCD662A231E0282068 /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */, + 6851F20AAA6A3E80063CEC68B833FF99 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */, + 6091A1BD56FF348585D36E59A36110A0 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */, + 9C4FE65261B4377B59E5E511D835833D /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */, + F3F0657A69E0DF220F95149486E32D22 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/load_balancing Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3C9C5594B8786FAC7BF48499A3BB7104 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = { + 3D554AC0703938D0FFAFC50DB342AE9C /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - EB5ACA0AB26A7B2627E80AB0E62FB6F9 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 412FA08360F4E65FD97C21A0D57EF27E /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 5E6A380D3185ACD6EC6966BF465B385A /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 3F5CFA835828DED84401B3014FD0B01D /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - B4E966D195E3C7E1E31F016B978DB86F /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 0D686A99B4741C5222C8586FF2AD151E /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 9F63DDAD7D74025F3E1B1E9BFF66FD9A /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - C0E4AF4954C9F698D1CAD448B95FEC40 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - B65C1DC10107B6CB23A2DFB2147B75D6 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 76A80704DDFE141242B28B56B2849EBA /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - DA9B0C113D9A0B9BFD1A322A3A5F3D13 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 9EC880368D642650A94C99B931F79F55 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - BE6D4CC7192902BAA7619DF71FE55955 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - FAC5EC7375DCBC668E6F217B608A8C71 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 254D1BB3DF91464711BA7D3D195414AE /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 4677AB802DC2A7F254933823515EE4B9 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 34E4B7CD8049AE10B257AFD9C03BFF73 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + 14C48DDCCE615A85C395E53EBA7850AE /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + E74B1BA9B3DEDBE7044009E665EFE86F /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + 7189438B0B92AA90A798414C5F9C97FB /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/core/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3D756E9811BE5B1D2ECBA623F9BB27FC /* Copy src/core/load_balancing/ring_hash Private Headers */ = { + 3D6655480E829A88D4F62B6719637823 /* Copy src/core/lib/security/credentials/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/ring_hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; dstSubfolderSpec = 16; files = ( - C2DD0314380B861CB0EB71FB18559FFC /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */, + B2F9088099029CB25B38F9DA97D6565D /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, + C0DC7F7AB720E23750F2A1FF22DD9C0E /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 8D3DA909ECBAC8269DD4D69A76BCCD9B /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, ); - name = "Copy src/core/load_balancing/ring_hash Private Headers"; + name = "Copy src/core/lib/security/credentials/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3D897C9DD270F9E74BDB39EFA8BE1AD7 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { + 3E58B2196216C926D5BC6A7745209EEC /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lb/v1"; dstSubfolderSpec = 16; files = ( - 0670219A5023898DE20B8AEFEF4217A6 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, + 137493B12F901DCF847BAB578B46C4CA /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + CF4CC865D1D123B4DD50F14CEA6EB740 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; + name = "Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3E1618C9CF337A593C9D501D8E4E011D /* Copy src/core/load_balancing/pick_first Private Headers */ = { + 3F5799C23F98B1554745A1CEB8E5694B /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/pick_first"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - 3561EBF7521156BB9F3E256CBA8D8750 /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */, + 95C5656E1F4F69DD03DC8F1E11786A66 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 9477170877252F5E8FBE4998BC8C19A8 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 0BB4541056E1EE2A653AE680E8F60458 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 10FFFD541DA20AB496325B1770CBF543 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + E0F66F3D782A88A98306E6654E95D847 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, ); - name = "Copy src/core/load_balancing/pick_first Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3E1BA9026E7B57BF1DEC6C5EBA34FBCD /* Copy src/core/ext/upb-gen/validate Private Headers */ = { + 3FF30F540B410E11A758115C6CC4A098 /* Copy third_party/upb/upb/mem/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem/internal"; dstSubfolderSpec = 16; files = ( - 9C65D63E3F29F3E173895A9D19145CC6 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */, - 49FDDD9F3E5AF962E8134835F4446A8A /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */, + C562FDB94027BD543C363BC34FF00BC3 /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */, ); - name = "Copy src/core/ext/upb-gen/validate Private Headers"; + name = "Copy third_party/upb/upb/mem/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3E4DDA672F3FC7B34ED95D21F3712942 /* Copy src/core/lib/transport Private Headers */ = { + 4013EAB1E9D712EB4F4076B6A64682F0 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/tracing/v3"; dstSubfolderSpec = 16; files = ( - 458D18B04787D67A4F2EBA75174CDF7C /* batch_builder.h in Copy src/core/lib/transport Private Headers */, - 4062D2EA4BF7547AEA07A198D078FE46 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 5C801BDE167CD72DE3AEF206962D4137 /* call_factory.h in Copy src/core/lib/transport Private Headers */, - D3B183E7849F3FF506D37ADEDAAA16B0 /* call_filters.h in Copy src/core/lib/transport Private Headers */, - 06F01A7F3DA08EF0489556B78C0E9A00 /* call_final_info.h in Copy src/core/lib/transport Private Headers */, - 79148E43FC4B8EA127863538B950A36B /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */, - 39FE0170AE358C428282664DBB65C7F3 /* call_spine.h in Copy src/core/lib/transport Private Headers */, - A664517AE0B0470C90290EA92578A99B /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - 8E4F94A6806D8F7F0B6C1FB3D74E8A79 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */, - F4F9703599A7224F7588456FB96CA5A2 /* error_utils.h in Copy src/core/lib/transport Private Headers */, - 0347675243054DE7ED438BEFADC2FBC8 /* handshaker.h in Copy src/core/lib/transport Private Headers */, - 607ED673AFF60383D54D7B2E3D8AE37C /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, - 77338FF2BCBFAEE1FD0A1677E1540579 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, - B6F9655F4048C07E969DADDB534E4B95 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - 23B2CEEC7DC90160826A96267AD3A811 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 797ACC9F6017A6663D5D6E58956594A9 /* message.h in Copy src/core/lib/transport Private Headers */, - 51D6479D09C481DF755450177369EC18 /* metadata.h in Copy src/core/lib/transport Private Headers */, - 81BEC193402BD529866D5F8EBA02B020 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - 11CB82FF4529791612712F784E514925 /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */, - 3536C5368A258BF1EE622D7DB14490A9 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - 510016FC1A44BC50DBF3AAD6D7A6E954 /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */, - 67C50E99EABD0E1EC7E9084F13F7550B /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - 9BFA8065D471FC35FA216976D13CDF8A /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 30605C5F9D3175BEB295A426E2BE13AE /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - DD7DF9AE035C83D68ACEC65B5307C082 /* transport.h in Copy src/core/lib/transport Private Headers */, - F1DADBE673B791439B7825AF0BE81C34 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, + 11B10CD306D7232F75FE5BF85CA638E7 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, ); - name = "Copy src/core/lib/transport Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3E945E21B2A4A0762C5BBB80CA07B86F /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = { + 40D7C19071A420CC486B61882F3DB16C /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1"; dstSubfolderSpec = 16; files = ( - F25D22CD2121AF507E8914AB8F45A06D /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, + 0868686F78D85A2C77A4D1B0059A7070 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3EFF04471FBF38A99B7EC3ED3B8870C5 /* Copy src/core/ext/filters/http Private Headers */ = { + 40EAC51B18BD9F0D3922B32ACBBD7932 /* Copy flags/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/flags/internal"; dstSubfolderSpec = 16; files = ( - 190A0AE928D1038BA6F1A4B47CD41401 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, + 180F78DB79293D39117B9331A05EC227 /* commandlineflag.h in Copy flags/internal Public Headers */, + C77823E2972C39585A4927581C6C6076 /* flag.h in Copy flags/internal Public Headers */, + 84057AD29DE5EDB71C4861DFD9AD2237 /* path_util.h in Copy flags/internal Public Headers */, + 442BD15D990CC7F72B40F757C739A983 /* private_handle_accessor.h in Copy flags/internal Public Headers */, + 11450E791644F883734B140DCB95C10E /* program_name.h in Copy flags/internal Public Headers */, + B31EF3BF5C08A529E10FBA653C3D8AF1 /* registry.h in Copy flags/internal Public Headers */, + 59D30D42F0087541CC972385493E0258 /* sequence_lock.h in Copy flags/internal Public Headers */, ); - name = "Copy src/core/ext/filters/http Private Headers"; + name = "Copy flags/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3F2460D73B4A3D4E03EA2A3CA377F4FF /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + 4113685D0B8570CA9568F31B09E7DA28 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - A38D9820674E2493913012D9B2EE6A77 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 755F7FEE6364B78C6389E88211176A21 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 118DED77252E7D5D2B7E155BAAB1E42F /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 4733285ED11FC23D7623E7B2068C67B8 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 02221E3BF68F3A377CA3083BB8C5234E /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 2AED0C16C3BCB37FB8F633584DF431EB /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 933F0499A8D632FA5312628FF4318619 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + E363081E6D32656AEA23A1AE1A571D5F /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + F6A1F670DF1DCCA4F1F61CEDE7F98318 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 3F5611D60AD34C6D56C90A6DF5666CBF /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = { + 41677832F4F3D4644711F34CD56A12B9 /* Copy src/core/ext/filters/stateful_session Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/stateful_session"; dstSubfolderSpec = 16; files = ( - 6444BDE6240C72EAA53232D0703E0EAA /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 7BEC9DF507D3321CE53C5C3CF8190AE9 /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 5D09C807DB39EE77E0E7CA0F49FEA0BB /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - B9E18D7999214629F60D625E4371B5EF /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 035A73E97CC2124956974495330F51E1 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 696A4A0E5F59E4AD457AA0E9A480BF0E /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - D9879835979E83E4B427487583A967BE /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - BF8CD8E964BD8926186E57DB9C3879BB /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 85E5B73E0B604D084CFB4A89E4CDF125 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 3423A75674E10CCA58E589DB5AA55472 /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - D7E0307C6C4A03878596333CEEA33B9D /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 6472BE8E44D5DC94EC8291C4710D1FE9 /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 8A3FE2B1E7505C656491CCAB3484DEB3 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - C5A060B2F4E33B276D82E6FF9FCDC52A /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 267863A7DDEDDCD6C5FA4CF13661DAB3 /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - CEFFFAB616E7BC662260CB867BC44CAE /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - E8611D0052897939174A83949AF2F825 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 083721B1EF6EEEA9A77AF5F161398AEE /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - DD77A7ACAAE5473E8EB1C4F4752257F0 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 6B5502CACD50E5E307D5D5660EE526AB /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 2D8DB981BB0D7B2B3E1700A7670EAD68 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 5D44C926EB9EC7F5A78E2D9FED00BE93 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 17610C341B72E62B1548FB95783CCE3D /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */, + 578DEE5041C6C1622C7F3AE069CD1AD5 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/filters/stateful_session Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4017C8DD8CD070AB7EF86654E1D65724 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = { + 417065B76999103CEF9685CB46EB9EF6 /* Copy src/core/load_balancing/outlier_detection Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/trace/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/outlier_detection"; dstSubfolderSpec = 16; files = ( - 276C4CF42B4CF091C5124D23A0463290 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 77316EE4AE6415353B1EBEFD5D71E236 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 6782BE2ACF7C810388BE84DEEBD60991 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 45726F6370F947D6854BFFCEF2B6C826 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - E286CDB7B1AB998FB4F9C21A37795FDC /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - D8DD28E47F795C29E78D4E658A90F4CC /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 103A365D558B4DCDB6D0ABC6ED4E4CB0 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 946EDAEB2CD6CF1BEDB9D390F64E26A5 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - A7796354DBA6A47AC3D02DAB34F6677F /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - FD1CE630F5232211A341BFD463F35CA2 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 0B9DC3D56FB738CA211870A5E3DA3401 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 5B953024D8AE978E285F9A539A9634AC /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers"; + name = "Copy src/core/load_balancing/outlier_detection Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 409FC1F0E70A197A6DCC355871AE1799 /* Copy src/core/ext/upb-gen/validate Private Headers */ = { + 418A476826A68F490D1E58A32FCC8380 /* Copy src/core/resolver/dns/native Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/validate"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/native"; dstSubfolderSpec = 16; files = ( - ADA66C111435EBEEDF7F3F3349AA2496 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */, - AC5E1D6463C20E7983571D158D90649B /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */, + D29F8BC76F16AA83208EA4684005C9D5 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */, ); - name = "Copy src/core/ext/upb-gen/validate Private Headers"; + name = "Copy src/core/resolver/dns/native Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 41B18693AD66C719E0488C29DFC2DC69 /* Copy cleanup/internal Public Headers */ = { + 42380F30CD5E0E4CEFBD5B4D7032C1B7 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 5EB2A73ACFA3790E80ED247A570D45DC /* cleanup.h in Copy cleanup/internal Public Headers */, + C5E9F12B12B6B246B460D9CDA78FD9BE /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + F7A1FA88BA517D5FAD559AD1AFAF4BFF /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy cleanup/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 42A353C5C5D2B126B73E4536C55960BF /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - B26788C488E0CB4A41B2FE97FCE38A41 /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 42CF4872D6D4BFEFC29D7747C56A6EAD /* Copy crypto/des Private Headers */ = { @@ -12186,328 +12478,356 @@ name = "Copy crypto/des Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 42DD77661DABAD8FB646161E6CA3EFEA /* Copy src/cpp/common Private Headers */ = { + 43C480FCC291543BBBAD4958FD9776E5 /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/common"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/protobuf"; dstSubfolderSpec = 16; files = ( - F242BEB9BCC72D5EA46197D2B9C57662 /* secure_auth_context.h in Copy src/cpp/common Private Headers */, + 03B976DE58814381B47F074019CF18E1 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 79052F24F026D82EE05BB2A90FA43217 /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + B8A2AD430049A9D0B24BB41323B08782 /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 4376C00F30C2270314E503D85E6A52E7 /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + F0B44F377E5849AB82FE3F5DA46AEDFB /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + BD651454F0CC90E6BBD8D963DA4C8251 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 64B5D8632FC360F5F7553A0A2A0A3F54 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 7C8B75CA5159237E8A783770653F00DD /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + D64DDFE87631C70792A632D5297C7567 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 0C4CD16BB4F1155BA5637EED32F12C30 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 920D396EA42C475D8AFDA29266E2400A /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 205049BD13731AA71A6903AABEDB6F67 /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 60BEEA9710D51FDDC270357079FDD5FF /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 175EE7C460AE70AB0974CB44B708F247 /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, ); - name = "Copy src/cpp/common Private Headers"; + name = "Copy src/core/ext/upb-gen/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 42DE45E47A4FBB14955EE5F1611D6315 /* Copy src/core/lib/address_utils Private Headers */ = { + 441D1CBDDD71DBB0D1C91DD9E40279B1 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - B22A010F313242886ECB798C0B9D0146 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - 524F7ABA841C9EF68968FB363BDA4895 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, + 64AC5A516AD5022300A34438743E8F27 /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + C570B37877F0827BB1D7FE869983C5C8 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/lib/address_utils Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 42E4F9A63A1692A02FACF8BF0C725FCA /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = { + 447FEB98624AE8DDDA85EAD2E4395B10 /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - 103CA154B2089F732D28356BD3555A49 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, - 79BAD8B9677ED2DC59AB63BA47331E43 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + 4858D4946AA8C0E635C51C4C6E5960C0 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, + 343D15EE00EA41A4A5404D68515232C7 /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 42EE160CB103684F30AAE252825790AD /* Copy time/internal/cctz/include/cctz Public Headers */ = { + 4570E5EBFB12CED4EF93913B09785E72 /* Copy third_party/upb/upb/wire/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/include/cctz"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire/internal"; dstSubfolderSpec = 16; files = ( - BB10E5B57D08189FB1744F28EE5B38A6 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */, - 6C5778FA5D3CF8795DB037E796422C31 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */, - DD1A0E63D61B839638CBD32C1A967E7C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */, - C429648E0741B736BAF39026009D6E2B /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */, + BB726F87F1E87B6BC2F3990E99B53780 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */, + 58AE99084FA8F562894EE0A849D36AC4 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */, + 176BE4714CA85E3BA505FA6201A1B034 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */, ); - name = "Copy time/internal/cctz/include/cctz Public Headers"; + name = "Copy third_party/upb/upb/wire/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 431BA95692C2B713072326C5C32AA336 /* Copy third_party/upb/upb/mem Private Headers */ = { + 467E7AF8A7769C3444DB5CF7C48D4651 /* Copy src/core/lib/avl Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; + dstSubfolderSpec = 16; + files = ( + C59CCA538AF2892F9AC5D9AF67903D79 /* avl.h in Copy src/core/lib/avl Private Headers */, + ); + name = "Copy src/core/lib/avl Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 46BCC7CA841C404AE39FC073E15B84EA /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/matcher/v3"; + dstSubfolderSpec = 16; + files = ( + D4CDE5D4A56C6FB701DF4008CC6544F4 /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 63D31BAB7819394683675E0331CFA6D8 /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 75B02BEE90963BABBDA90ACEAD8117D5 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + C7DC37D1213C34C89A542F0A7BD974F0 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + C625099DDE450C260717629571BD87E2 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + B6417E07532CF4E7F9C225741754ECE6 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + AB3E2ABB01D7023DD3A4BE0DFD61115D /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + E40A6F9C1D1D8D8D3FB0EE62ADD5D58E /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 5868B21C5A408EF20923ED38C70082CA /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + EE291E149E0C512B1B6A936380FC5BBC /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 7F9E7DB0065FA4C4873E93E483BB1F08 /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 49616455168AC039AC2888608F2CE8EB /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 7ED85402DFACC704FA66ED84876FD6A9 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + F1B0F6EFB81E532AA4CD7DD0B41790A4 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 92DDA7745A0BFF703075FF8F7FA5CC20 /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 8DC136078F3824DD069320F426F8202C /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 77EFC7CCE6A7CB888EA14334D9F6DD00 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + AD8EED2AB7DBFE980B366F0C3D5D1141 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + C2C4F6465F954D2BD066281DF491BC4B /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 38A75467EE1968E51E4B6F8E6B015A1D /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + D02F75920646F37F910B467DD8A86043 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + DCDC5B682A12EA3C5D75654088539785 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 470B72583B637CF82132A6693B6B5D78 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/tracing/v3"; + dstSubfolderSpec = 16; + files = ( + C198CFEAB4A3936DFA8C1688436CFFBA /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 47B5BC1AE593BFB383C0B17B90D02F1F /* Copy src/core/lib/security/credentials/iam Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; + dstSubfolderSpec = 16; + files = ( + CA9F1D53D68C38A3458F1EF156CA316F /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/iam Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 488C521438D79D077EC9E727AB07B664 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1"; + dstSubfolderSpec = 16; + files = ( + CFBF6A1BEB1BFD17CA109D1209B5C162 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + 791F20127A4FBC7F5138FDEDF83A8429 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 48DA3EB5A9C68D0849FE13CE89032959 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine_shims"; + dstSubfolderSpec = 16; + files = ( + 2FB6CECDC66F6A2F0DC1B357C046E68E /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + 8460D11D6270B7CC3ACD0CC4E7D8AC8A /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + 1439A0D71A86F50F2BFE0D78A55B223D /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + ); + name = "Copy src/core/lib/iomgr/event_engine_shims Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 49A62C984C571B34A32085F2ACDA5025 /* Copy cleanup/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup/internal"; + dstSubfolderSpec = 16; + files = ( + 98FA19D16C34EEA4BA96227B8E50D5C7 /* cleanup.h in Copy cleanup/internal Public Headers */, + ); + name = "Copy cleanup/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 49EBE0F1766D4AD535218D81A47A35F6 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3"; + dstSubfolderSpec = 16; + files = ( + 2DE1B28685E583F5B177F0240B4704DB /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 1C6371B239DB244FE54B9FBF187ABE88 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ED038CBD12DE58F91B3CF8015BAEA9D2 /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 78F7264787DC8A00ED685D83B6A28287 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 366E741E1325591E9A06D4F6334548A1 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 49FDC9798BE49E3CA841C9ACD71B6E8A /* Copy meta Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/meta"; + dstSubfolderSpec = 16; + files = ( + 9C7DD36F8CC14C618E36D063CC8E68C9 /* type_traits.h in Copy meta Public Headers */, + ); + name = "Copy meta Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 49FEF4DA3B48F571636EBD06307FD027 /* Copy time/internal/cctz/src Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/src"; + dstSubfolderSpec = 16; + files = ( + 6C308352DFA2BC1391087E8D6B45D06E /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */, + 87BC23469B61B0D561AD4BB00EA6612B /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */, + 8CB96F672389F3A7517D8859429652D5 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */, + 8932068CD202B5DAC1A9C08FE5FADA59 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */, + C5BE86796AF4CF307A0B412B9D2D6046 /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */, + 6B22FA026271B662C4643D92DA464141 /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */, + 19C3C8176F7029BBFA6D2C1ED532A116 /* tzfile.h in Copy time/internal/cctz/src Public Headers */, + ); + name = "Copy time/internal/cctz/src Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 4A113EDE05326A2B6AF226E9EAC84DFF /* Copy third_party/upb/upb/mem Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem"; dstSubfolderSpec = 16; files = ( - 40DD8911318F768F0B4921A2617F703E /* alloc.h in Copy third_party/upb/upb/mem Private Headers */, - B9B73BBBD565181B67F6FB5437CF44E7 /* arena.h in Copy third_party/upb/upb/mem Private Headers */, - CCC466CA42A4BCE7F7F669107B5675C7 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */, + CF32D49B03BB82701AC5373A4B89CCE7 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */, + 99ECDB47B524A815C0C6EDF1905BCDA6 /* arena.h in Copy third_party/upb/upb/mem Private Headers */, + 62C3AD1207ED5DE85F8D684E942DF070 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */, ); name = "Copy third_party/upb/upb/mem Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 43957EDEA52DB348042A5C6CF034DFB2 /* Copy third_party/upb/upb/mini_table Private Headers */ = { + 4A71C7FEE5ECE5C57589EE9A08F5E3A2 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 009105778C05F78E14BD857B53E69909 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */, - D39C9BA0AD0E7D7F0114185FFB474862 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */, - A83D3BCC31B6BA299EB0B2C77FCF788F /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */, - F9D041BC2F66302C4B8A1C40CD4061E6 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */, - 9A061A3DDE605C8965DC902969A6926F /* file.h in Copy third_party/upb/upb/mini_table Private Headers */, - 61425C15B1AF8284835A51B7F01CBA01 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */, - F15C55FD78743DA54DF778B36A707407 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */, + 0214B30E571EB7EF72EE779AEB2E50F2 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + BFEFC242457892764183BBAA75262CF8 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + C7E74F87C7E35CD58762D71B0A436937 /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + 61C8376E34B86BC85F07585B6B19D2EA /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + E64379A94B59D1831EF62AF0595203E4 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + FE0519ACD32E6D30017BD1D28BBF1406 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/mini_table Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 44B20733C17CF2639ECD4B9BECFC168D /* Copy src/core/load_balancing/xds Private Headers */ = { + 4AC959CAAC66CB6E8FB47F5C9A78FD7E /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/core/v3"; dstSubfolderSpec = 16; files = ( - 12F98E52839DEF6B5583128E9850B5FC /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */, - A853244354A854BA98C55540121F14C1 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */, + 38F9325A1DBDF2616B807CC6914C94FC /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 7AD2502A6FFBA9748D12DC203EEFBE98 /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 5352F4D92938C9BD4D83BF7F534EEE98 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 6C3C1FB284F5DFDD1E5C35ABBC4067D0 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + D272D683198C959218874F36F97A748B /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 4AB6F1D3D8A196ED51D8840B1C717202 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + FD15F9C19681C6924EB66ED273301A39 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 874F40D9CE130C332CE617C289E2F974 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, ); - name = "Copy src/core/load_balancing/xds Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 44CA22E844B4FC9B5DC042EA89D630CC /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + 4AD5D90B5E67D804364AC794EE06E19E /* Copy hash Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash"; dstSubfolderSpec = 16; files = ( - D265BC7F25BE0A6397325C51FAADC7D5 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + FD788F62882A3ED19D860FE4E88B94BA /* hash.h in Copy hash Public Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; + name = "Copy hash Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4525097FF8F49E4ECD43A176BABB2CDF /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { + 4B82592BF619B87BD480A9B057AED543 /* Copy src/core/lib/security/credentials/external Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; dstSubfolderSpec = 16; files = ( - 8855FBC5ADDB2D2266F9AE1FB0A6EBD4 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, + CBB7595B094E1F5B1A0AAA30A57A5BF9 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 3F59FC896CE8A14749BB51DE7B396C7D /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, + 1A8BD015D36D207A12B64E4C6483C22B /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 385007830143A06A10F36BA571231BC0 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + EEBF2E377071B1EA8B9A212071077852 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; + name = "Copy src/core/lib/security/credentials/external Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 456E64FFE4A3743B10691384A5CC1D98 /* Copy debugging Public Headers */ = { + 4D042D52618B739B3C41F97551480344 /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/data/accesslog/v3"; dstSubfolderSpec = 16; files = ( - 0D35989E666827B4A01DCFB1FDD2A179 /* stacktrace.h in Copy debugging Public Headers */, - 321D9849FD3F6EFACCE3713E3202950F /* symbolize.h in Copy debugging Public Headers */, - 987F3CA527867FB09472354EEFF00EF2 /* symbolize_darwin.inc in Copy debugging Public Headers */, - F57E24FC069AF4771F5C00DE53EE6812 /* symbolize_elf.inc in Copy debugging Public Headers */, - 6BEDC92AC89885B6A6399AF987959727 /* symbolize_emscripten.inc in Copy debugging Public Headers */, - 5178CE67B345E57BC911CF9ACE086506 /* symbolize_unimplemented.inc in Copy debugging Public Headers */, - EEF224EBF59385E4EF34391F943F62E1 /* symbolize_win32.inc in Copy debugging Public Headers */, + 5B6B3513B34CD1B3766333568FE0A2E9 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + D78B3E6CD21057ECB57729EF8D690F05 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, ); - name = "Copy debugging Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 468020E7D3671082C3D04F69B3C7E418 /* Copy src/core/lib/event_engine/work_queue Private Headers */ = { + 4D42D42DD609E6F9E371EED39D6C37C7 /* Copy src/core/lib/security/credentials/local Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/work_queue"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; dstSubfolderSpec = 16; files = ( - C0596193E27914D04A46839A6A2BF945 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, - 81D33E0802B702C1F97A001F2CD1B69D /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, + C1BC30BAF77AC84C7FBDFB073647A57A /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, ); - name = "Copy src/core/lib/event_engine/work_queue Private Headers"; + name = "Copy src/core/lib/security/credentials/local Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 46ED1C5CE7731D76F25D4FAEF2F6B4D8 /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = { + 4D65E21A90F62FA8C3135A1B5D52D54F /* Copy third_party/xxhash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; dstSubfolderSpec = 16; files = ( - 64C9B0FCAD5B8FDEFE47229C06634923 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, + F472FA0D9DFBE5CAF3B998D0CC87BBEA /* xxhash.h in Copy third_party/xxhash Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers"; + name = "Copy third_party/xxhash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4825CAB04B41D29EE3FF602AE3F9A402 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - A3E98F79CE45C3F157E504E41CA6061C /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, - 198B41AE03542ECCDCBCD2C6D60FF413 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 48EB0A61CB7CEE24371B27B84317E434 /* Copy src/core/ext/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; - dstSubfolderSpec = 16; - files = ( - 45B27A9B4A4BAC8E4C2FE282AFACC72D /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - 6D26E1CCC01657E6EE5009E071D068C0 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 9D8D463D0A0A54ACE3AA52154B5C3B9D /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - D173323F7CDACDFBB9A95B75CB74F160 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - 43E4242AF063F002C60832C474A37586 /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */, - C2F791F327A5251A4E07342363C655D4 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - AD02EA946273E29DE604A628873471E2 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, - B07277BD0315744600922D6D07F20F8B /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - A22B29BE458F672B7522E4A69504FF4D /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 90CA92CE2F95AC0C00D2C1D66E85FCB0 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - DDBC7BCD0A15413FA7CE584BC1CBE4F6 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - 7620F20ED5264B121A0C29566B790A97 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, - E8E5FD531DA11AEDE538DE1F1ADD02D4 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 17BF4097DAB95989A4DF15418276B81A /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - DA67034077863ABAD54E8D8DB1DAEBD9 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, - 4B87EFE35591D1B7971EE1DE00A3CE20 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - 61D7FB4E64B93B90A799A48AED491F39 /* xds_enabled_server.h in Copy src/core/ext/xds Private Headers */, - EF2243DF70A9D54D4FB946E2842B9F3E /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - F0AABBB14DC3B3627058D18A54D4F8D2 /* xds_health_status.h in Copy src/core/ext/xds Private Headers */, - 2A67D19F64A1E6F7B1079292B9F3F36A /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - 6A56735F63633F78880B082B988881CB /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - 3087C8AE902EDC88F6ECE9BC91727BFF /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - 2E3734C99CCE292518BB639C4AAEDC3C /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */, - 44BCF18A3A9415639B5C7C9F5C7F9B00 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, - 76F3B1C95083B654279315A9AC79745D /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - 0794D955276BED5E16860D3BAC938AED /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - EFE874BD4CC18AC51CE05C29010B2C22 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - AEF4E74CD1198F2C5433B6DB61753CC2 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - 6DADEA8C456E80109C5EFD62E15A4C37 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, - E160F48393209F4783FCDBD1BCDE47FC /* xds_transport.h in Copy src/core/ext/xds Private Headers */, - E5ED2EFB074611AD0F7DF479D463D0C4 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, - ); - name = "Copy src/core/ext/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 490FE3F1C837CD1B4F6EF5CB281164B1 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - 92AD73DE40D8653AEDD57A47D51335AE /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 49688BC9E2D6EB01CDC5FDAF2BDCE168 /* Copy strings/internal Public Headers */ = { + 4D97FDC21193293959B488595833AEB9 /* Copy strings/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal"; dstSubfolderSpec = 16; files = ( - DBAE8C377C91B4672237A7970ECDE5E7 /* charconv_bigint.h in Copy strings/internal Public Headers */, - D74B4606A3A125F0DE18966D2C71E07E /* charconv_parse.h in Copy strings/internal Public Headers */, - 22994934C114DCC3CCEC67E9C8264B32 /* cord_data_edge.h in Copy strings/internal Public Headers */, - 76D6289DBBE377A94CFE5463B742B0E2 /* cord_internal.h in Copy strings/internal Public Headers */, - 519B05D563C93629A1C8BFB921DBF5BA /* cord_rep_btree.h in Copy strings/internal Public Headers */, - 3DEBC4A846BE7422181057F408871A42 /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */, - 048D2CD93EAA3CD8DB9B1AB0A504D2DF /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */, - F21E3DE8C5ADA0CE817F21509E9A807C /* cord_rep_consume.h in Copy strings/internal Public Headers */, - 7F5CF93A04BD7B5C4A5BF8543E86E9BD /* cord_rep_crc.h in Copy strings/internal Public Headers */, - D544F4ECB2E3258D5E1E20051279EF68 /* cord_rep_flat.h in Copy strings/internal Public Headers */, - F0CE6BDB357DF97B7E2832909AE54CA0 /* cordz_functions.h in Copy strings/internal Public Headers */, - 73E43E2DFBD90D700E173DA731436053 /* cordz_handle.h in Copy strings/internal Public Headers */, - 61E51014CF5BBA56DBA987805117987B /* cordz_info.h in Copy strings/internal Public Headers */, - E824B9340FD5C4C1AA24ED18B850B732 /* cordz_statistics.h in Copy strings/internal Public Headers */, - 96B2DF57E78D344756ECBE908F3075DD /* cordz_update_scope.h in Copy strings/internal Public Headers */, - D958D1E6AB291D93ECCEA01B10C3B0A3 /* cordz_update_tracker.h in Copy strings/internal Public Headers */, - 7A23D6B89DE1E89626EB4B913F0522A5 /* damerau_levenshtein_distance.h in Copy strings/internal Public Headers */, - F15634DDAF17D6348722645D311A540B /* escaping.h in Copy strings/internal Public Headers */, - F8F1E4EF1B5076AE3A6C09C45CF28B5E /* has_absl_stringify.h in Copy strings/internal Public Headers */, - A9909575272E82EE7A04F0968E75481E /* memutil.h in Copy strings/internal Public Headers */, - BCBD8E8564A20B982C93674F790E064B /* ostringstream.h in Copy strings/internal Public Headers */, - 92F9702B634D4272CB34B2C50935B83B /* resize_uninitialized.h in Copy strings/internal Public Headers */, - D3150DD067B8093DA3F727D7754627C4 /* stl_type_traits.h in Copy strings/internal Public Headers */, - AF6DC5A8D3C0A1CA7FD8A8BD4C0E8E62 /* str_join_internal.h in Copy strings/internal Public Headers */, - FFDC253BF078C632B0682B8BFAC12E52 /* str_split_internal.h in Copy strings/internal Public Headers */, - A8962EB733FC871F5D63BC99D9F90155 /* string_constant.h in Copy strings/internal Public Headers */, - 8161571E7BD4B4EDEA90DCD9BCA93CC6 /* stringify_sink.h in Copy strings/internal Public Headers */, - B908C4E94774ED79E8CA5991AFF83E84 /* utf8.h in Copy strings/internal Public Headers */, + 8550EAE4EF5F96F070202EADE4A5F9B6 /* charconv_bigint.h in Copy strings/internal Public Headers */, + 7F8EF00E3327572700B0C7C8F022FDB0 /* charconv_parse.h in Copy strings/internal Public Headers */, + 91C8C146B3C00FC9FCC148544B37A09B /* cord_data_edge.h in Copy strings/internal Public Headers */, + 69271D1631D82DC48ADBC34CF690ED4D /* cord_internal.h in Copy strings/internal Public Headers */, + A4A913C8252815275BCD23742DDC2D7C /* cord_rep_btree.h in Copy strings/internal Public Headers */, + AF21FA9FFB14F55A6390F1AB3D6F774A /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */, + C8595CBC9DD674CFDDE0ACE6F6FD691B /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */, + 9EB0587D157F194879D5BD8FDA95FC6D /* cord_rep_consume.h in Copy strings/internal Public Headers */, + C093B2E24489BA08D06B0FD4733A70F2 /* cord_rep_crc.h in Copy strings/internal Public Headers */, + BC84FCBB241A96655DE980C226EB7F2F /* cord_rep_flat.h in Copy strings/internal Public Headers */, + 0FC129247C0D13418706D7F74115EDAD /* cordz_functions.h in Copy strings/internal Public Headers */, + 681C519E1AE631100180742F96DE8B0C /* cordz_handle.h in Copy strings/internal Public Headers */, + 11305C7C87D52677070D4A5BD50E7C65 /* cordz_info.h in Copy strings/internal Public Headers */, + 6B27CDE15F572C211F60ADA28ABDCFD6 /* cordz_statistics.h in Copy strings/internal Public Headers */, + 72BA7AAEE81ACE033E78E2BAE39B04C5 /* cordz_update_scope.h in Copy strings/internal Public Headers */, + 329F5C5ADBC090B0B58869A0FF3B513F /* cordz_update_tracker.h in Copy strings/internal Public Headers */, + 58EC2325B43E4C714A3AC5A8A856228C /* damerau_levenshtein_distance.h in Copy strings/internal Public Headers */, + 05B5CFBEF90B84D90395816573935EFA /* escaping.h in Copy strings/internal Public Headers */, + F4ECE539544D203FE935049537BB7709 /* has_absl_stringify.h in Copy strings/internal Public Headers */, + 1072FAD4AAC8C941E74F12443607E47F /* memutil.h in Copy strings/internal Public Headers */, + 866DB2F380A6AD89457BDABDCBE324B1 /* ostringstream.h in Copy strings/internal Public Headers */, + 9AB4EC70A021040E3DD6F882A57F0BE3 /* resize_uninitialized.h in Copy strings/internal Public Headers */, + 58F32A31B703026BEEE3EAB4DC3F0097 /* stl_type_traits.h in Copy strings/internal Public Headers */, + 4B0DA8B8E08F1F4AB88663883A901A55 /* str_join_internal.h in Copy strings/internal Public Headers */, + B99D78BD4C47238176BFE179C228D099 /* str_split_internal.h in Copy strings/internal Public Headers */, + 60B2439704468460A51FEE5AB5E23C6E /* string_constant.h in Copy strings/internal Public Headers */, + 1854BE3F59057FA536570BEDEDB42B8B /* stringify_sink.h in Copy strings/internal Public Headers */, + 23EC14E552D1A3814129CFAF8FE4DDD1 /* utf8.h in Copy strings/internal Public Headers */, ); name = "Copy strings/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4ACC51D95CBBF2C46AA3C518EC173688 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3"; - dstSubfolderSpec = 16; - files = ( - 5AC26A4829DE0891D03F619AB5486485 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4B1F9B097F812C9586D560AEFC4B4C1A /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - 9A2C9EFE24CFE13653F6AFB3369CDD5C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - DD8D2B1ECFF2B85186A0A4CF597738D4 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - 0B166974E2EA6DC92D09691AD70DADC8 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4CCFD27A6BEBC962D552A9FB8CB200F0 /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; - dstSubfolderSpec = 16; - files = ( - EAD524636118DFC94599863C3B2F5560 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, - ); - name = "Copy src/core/tsi/ssl/key_logging Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4D3C842DD41BB99D5086097B9DFFD6AA /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - D5C80FD770808077AD440FD6AF428896 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - C7E6A08BB6F2CC0DC04946F703D53378 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 0756BA6BDE4F8BBCCEE87C397CAD4E10 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 20B7CA79F8BB9C39DD21EE8C0D91E431 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - AB781B26D66BE3B1AF2907B35C2AA7F8 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 9155C5E0D3A7590B3A3E2F0A8FE760EA /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - A98C11741EC8B4180127C45BE7AC1C5E /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 7EDDDBD728F25B58988FD6C54FA5EEFD /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 497B3A00F2D1D143427E59F320975155 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 22D5755D018D4FD126A409B967B8E3FA /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 431F0D29D5D2BB15AD151C6C0C6A4A27 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4DE833AACACC12826E397CB497CA4FAE /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; - dstSubfolderSpec = 16; - files = ( - 0EED8A54B34726D7C1F523C281B45AEA /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; 4E1060E2E82FFB6B6678ED188879E52C /* Copy crypto/fipsmodule/digest Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -12520,279 +12840,427 @@ name = "Copy crypto/fipsmodule/digest Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 4ED18DCF02969BC076BB63024EC7B8D7 /* Copy src/core/tsi Private Headers */ = { + 4EB7B48D847F4A2BDF3A5417ACCF3D71 /* Copy third_party/re2/re2 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/re2"; dstSubfolderSpec = 16; files = ( - 26463A5F7FD34319A02E71B303E47C64 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - B09E1912B3817E9338B14CE2DCA81677 /* local_transport_security.h in Copy src/core/tsi Private Headers */, - 1D572B8D37DF2DC13209435BF0C12D6B /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - 254BD5336716DD0558A902C9AC5E1F55 /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */, - FB0D1CCEA37BFCD30B7915F6DAF4F696 /* ssl_types.h in Copy src/core/tsi Private Headers */, - 67F85E30417BE2B9C2FAB3E37515FA05 /* transport_security.h in Copy src/core/tsi Private Headers */, - C7B5D1F8370D395DA53DF8BA20B24DF9 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - DE32A8BB3E3BFA3574A84EC1FB8D3B1F /* transport_security_interface.h in Copy src/core/tsi Private Headers */, + BCEF21054B9C79BBB301D7C797C8430D /* bitmap256.h in Copy third_party/re2/re2 Private Headers */, + 4D71E5E896BB0BDB2B741B92445A9E1D /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */, + 0B9B8E10C4123879AB327FB7F017A755 /* pod_array.h in Copy third_party/re2/re2 Private Headers */, + 12FDD188A73A14B6BAF8DD2C76D85283 /* prefilter.h in Copy third_party/re2/re2 Private Headers */, + 5F8DEAC336B19473ACEE29A1AD4E3CFA /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */, + 0DEFDA05A36AB9171FDC10732B3B9BBF /* prog.h in Copy third_party/re2/re2 Private Headers */, + F36F27FC571A7B7EF7AE2728E87C0965 /* re2.h in Copy third_party/re2/re2 Private Headers */, + 4C4D55559C5FE480089612E0E6F42EF9 /* regexp.h in Copy third_party/re2/re2 Private Headers */, + 751270B822F26C81A46F330B69ABC7D9 /* set.h in Copy third_party/re2/re2 Private Headers */, + D66CCDDAA4BC7A84FFA8E67004BEA893 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */, + B9DD2C8F9E00085EE0CCFA13EFB0A7E9 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */, + A3C00591A9BFD3FE4B1346C7600868AE /* stringpiece.h in Copy third_party/re2/re2 Private Headers */, + A7ECAC3A538ADECE2FAF5EAB26DCFEF3 /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */, + 62688F1B99DD6E2A5E9FF304F57A9495 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */, + F355CA8A292C0FB55CF38130D39CAD72 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */, ); - name = "Copy src/core/tsi Private Headers"; + name = "Copy third_party/re2/re2 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5023FD87010572961AFFAA3DE425D933 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = { + 4FDB5FB9B950EC32AAC7FB34206BE7DB /* Copy src/core/ext/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; + dstSubfolderSpec = 16; + files = ( + 75623CB3EFF05A945AB959F72D639234 /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, + A84BE758B3E9FD3A1DED423EB8DA3D9F /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, + 944426DCCF5142660F63903059FD2534 /* upb_utils.h in Copy src/core/ext/xds Private Headers */, + F0AA21A17379571839328EF5F9C51F85 /* xds_api.h in Copy src/core/ext/xds Private Headers */, + 0744A7926F2A23160828020A3EE2A537 /* xds_audit_logger_registry.h in Copy src/core/ext/xds Private Headers */, + 1DE68056E987AAEA5B136F149D29B3C6 /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, + 30BED102A5C545104AF28F0A362ABD7C /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, + 63AE49DAB5DA02D71FE5695A9494361F /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, + F4098CE2434A7FAE88E25F5B684E8A66 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, + 186751616AC3EA0C386796792902D0F4 /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, + F23ADEF78F95CF9A44BAB127CDDA42A2 /* xds_client.h in Copy src/core/ext/xds Private Headers */, + 1862E57E3A168A9CE40B2050EF8B5123 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, + 90CEC350CC785E5E657B857702668E48 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, + 297A6FE5F889F9665818C903D154FB0A /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, + 439CCED26E317D25D721A498905F18E9 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, + 66380169FF9312B7ABF316E1CCAE56EB /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, + 2F93560B31E15C26BA3A9370EC3673C7 /* xds_enabled_server.h in Copy src/core/ext/xds Private Headers */, + 6C5A59A23E2EEEC34CD7BA523F314789 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, + 166FB5E6D86438F53A3857449E38E46F /* xds_health_status.h in Copy src/core/ext/xds Private Headers */, + 768BB7DC41D011DC4894791468DEBCB9 /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, + 25218881F93582CC48A2ADB7CDFB85CB /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, + F04A6363DF690CC8AAB1B63884B6575D /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, + 97B6EBF90030DD962711583D1767A49B /* xds_http_stateful_session_filter.h in Copy src/core/ext/xds Private Headers */, + BDFC00187BF5352F074AC44586C16C45 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, + 3149A4CF6EB15A9CD05E0CA759B5FB37 /* xds_listener.h in Copy src/core/ext/xds Private Headers */, + 7B6EDCDB97C375BD9110266842EE057C /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, + F4D6336EBF128E936EE8787CFB248BC4 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, + DA74FA34A04143B6C4E178A2EAC7E6F4 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, + BEFCF58A94E2557509DE234F7A2D7490 /* xds_routing.h in Copy src/core/ext/xds Private Headers */, + FA04D0EC490C9CDA43FC9B260DDA4EE4 /* xds_transport.h in Copy src/core/ext/xds Private Headers */, + 04A287BA07774817A762DD5B2FF7D488 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, + ); + name = "Copy src/core/ext/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 5073733690965DE5780D953F52B49B14 /* Copy src/core/lib/experiments Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; + dstSubfolderSpec = 16; + files = ( + AF0B9A8D13C4C8C12F277AE329E58ED6 /* config.h in Copy src/core/lib/experiments Private Headers */, + A5D38ECE1D7C4F6C82CAF192B8705ADB /* experiments.h in Copy src/core/lib/experiments Private Headers */, + ); + name = "Copy src/core/lib/experiments Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 50A107D8C6795740B4A992F3242D2B15 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1"; dstSubfolderSpec = 16; files = ( - 0B2159F75F61A70CF4DE2E337824EFF7 /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, - F57C587EB989A0A8C9A2962BCF4BB0D0 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + BE1F361B97D5E53A83354F5A0AE6D6FA /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + EDDFF72E054C56BD65B2BF2133048C2C /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, ); name = "Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 50BD34C5346D1EA07942DC556892DF39 /* Copy numeric Public Headers */ = { + 51122D4D4069F4FC255FA29D6A30FE0A /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; dstSubfolderSpec = 16; files = ( - 6BE19CE369892ECF27ACC0E8B83C4654 /* bits.h in Copy numeric Public Headers */, - BBFB381776FF52ACF1E1D8B7FF04A749 /* int128.h in Copy numeric Public Headers */, - E88DDBE7DAF29F9666BACE5CB241B1C5 /* int128_have_intrinsic.inc in Copy numeric Public Headers */, - F3020C9B46FFB7B540B078A7C5049747 /* int128_no_intrinsic.inc in Copy numeric Public Headers */, + 55B1309B7C3769BCF005E542FD6A3E83 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, ); - name = "Copy numeric Public Headers"; + name = "Copy src/core/lib/security/security_connector/alts Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 50CB4548A7DB6C12BFA6B8B75E9FE439 /* Copy src/core/ext/filters/channel_idle Private Headers */ = { + 5129088D15CE6EC5EBB92839922C921C /* Copy src/core/lib/gpr Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; dstSubfolderSpec = 16; files = ( - 6B7F68FB1B8BDB31AB90B74979051983 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, - ABF8F8DC1EC526624185C064DABA199E /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, - E812D1144C92B97A5D15FBEDD16E3824 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, + D55255E51FBDB22DD49576A26FE013A1 /* alloc.h in Copy src/core/lib/gpr Private Headers */, + 520DFC2DC9F54D2DA0D90C213CADBAE7 /* log_internal.h in Copy src/core/lib/gpr Private Headers */, + 8CFD3895BD1DDC2047765F0287FFA98A /* spinlock.h in Copy src/core/lib/gpr Private Headers */, + 5EAC26793F87DA5FE8B99E20FC848DC0 /* string.h in Copy src/core/lib/gpr Private Headers */, + 89DF4E19C4A60F1F73BC9686F05BB251 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, + 302D4BA8EB6A1601BEDB815A34706CBB /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, + ABD503C1EF5667C3EE7065CDBF0E7D30 /* useful.h in Copy src/core/lib/gpr Private Headers */, ); - name = "Copy src/core/ext/filters/channel_idle Private Headers"; + name = "Copy src/core/lib/gpr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 50E650E9802B6BD5C49CEF4D82D9CA55 /* Copy src/core/load_balancing/weighted_round_robin Private Headers */ = { + 517EE30B695301F1E099F541444032A6 /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/weighted_round_robin"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - 3A2D692C0440C8AD80554AA2770E516A /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */, + 70A7DB6DE1D34A6D3012D9C1BB999209 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + B9A7875867ECB4BE0B23CB5F1B5E2792 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0B24403491C229B31F0F71F6461AF4B8 /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6CDEB45859CFEAC0B08A23C676E4561F /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 4B36208B8CA65F2DCF260286C5E794FE /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + BCFA60C7F5BFFFFA387E50253DBFCF77 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 374F0C8176A0ACA777C551321979D402 /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + C2441CF2538C216E6B441913E3AFDA8D /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6639E9470F18E45F90F9D189E8AE651E /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + AD6DB2655824994286E50291E2D9C69F /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 996B8528DEFD93DA26A177C121F9ABE7 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0BB74DB9121DC7CE015104B5068F4E96 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + D251FF0657768A54236B095FEE44780A /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 3A92466D4AF5DCBF9EFC1FC364FBD1D7 /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 935F1EC80FA174B46793475BA86F71ED /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 602EFE2DD5D5DB15916BC138B877CD61 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 81BBC8EDBD7BAC2348C129608FFD27B9 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 975308D0EE82BBEA34D3200CDCA995E7 /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 057DA30F470062024E038CE89DA929E0 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + D5677DFB281CA1EAAEAFC7BCD968B391 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 06ACDCB0CBE95C88C13C860C0B01B5B0 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0812825F49B9DDACF32C12AACF214504 /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + EA810F02F1D5EF3C3D944E4F9879C0F3 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 11A0DB5B92424BDF417FFA4994F3B706 /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + CBA6C3FA5346246EFE66C7FEAF68D8B7 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 404509D4611A66E0AA70CE35BCEF46A4 /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + DDB67CEF8DA97D8DD8A9B5AD34360CA8 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + F19D8CF83F3BCA48B405FF0457CAABB9 /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 93B08C95F3764F11CF590F5DA23970C0 /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + A0F308E1DF27FB66AB5FCC3A647B0ADA /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6DCA52C8C0501610C505E53AE50B945F /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0EED4597A8B4C066DCDAFA6E470BFADB /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + B90CDB39E5F4DE288F2CEF61EA6A1D59 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 12C2B7B4F7BB1203AF276CD31B439C02 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/load_balancing/weighted_round_robin Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 50F827E35B70E1F76C4048F62649E13F /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3"; - dstSubfolderSpec = 16; - files = ( - 80E35B219776BD9D608FDFD93E50282F /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 512793802B19F9907BA7AAB294E533FB /* Copy src/core/lib/json Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; - dstSubfolderSpec = 16; - files = ( - 343366D8AFEC0B15B17FC7543F47A84C /* json.h in Copy src/core/lib/json Private Headers */, - 0FABF0E292C79B2D25D837568E7AD055 /* json_args.h in Copy src/core/lib/json Private Headers */, - ECBCB0779062CF78FD680B3A00118055 /* json_channel_args.h in Copy src/core/lib/json Private Headers */, - 356FFB483D7445C24437D1FC99CBE659 /* json_object_loader.h in Copy src/core/lib/json Private Headers */, - D3F13DD3059B54DF4A28E973ABA616AA /* json_reader.h in Copy src/core/lib/json Private Headers */, - 6C9EFB720D2683A3DCB3170723CEDCDC /* json_util.h in Copy src/core/lib/json Private Headers */, - CC89D02B2C713D458DEBEEBC54086E7B /* json_writer.h in Copy src/core/lib/json Private Headers */, - ); - name = "Copy src/core/lib/json Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 52EC046FE78457930C1DCF2775A0783C /* Copy third_party/re2/util Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/util"; - dstSubfolderSpec = 16; - files = ( - D6713489FF6C58BCD0DC835458A3287E /* logging.h in Copy third_party/re2/util Private Headers */, - AA2D02B3DFDD6CEC145491788CCD3B87 /* mix.h in Copy third_party/re2/util Private Headers */, - 61013996FA2E852776F62F64BE6129A7 /* mutex.h in Copy third_party/re2/util Private Headers */, - 9263BF33145E99E8E33234D8BC99E5FD /* strutil.h in Copy third_party/re2/util Private Headers */, - 8C358EA52FE7F441EB5FEC26D269A5EE /* utf.h in Copy third_party/re2/util Private Headers */, - F0B972A5491C15B358A31B86C11C06CE /* util.h in Copy third_party/re2/util Private Headers */, - ); - name = "Copy third_party/re2/util Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 52F9A14AF8A51EAF5DEFC1CD348DECBC /* Copy src/core/resolver/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/xds"; - dstSubfolderSpec = 16; - files = ( - F845EF6601096FA0C07A15D2DED20AEF /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */, - 14C7E59931C56FAFF5E0E5F94BF6272B /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */, - A89149ABD7E7FE36688D93B2AD13FABA /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */, - ); - name = "Copy src/core/resolver/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5352F7B1F39988673404B6FBD9528992 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - 7D83B183989C160F7455E43838323301 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 9DA67F7558C6FD2341408C9637B39071 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 535C76B92C7FE51FF404A9A1B4270179 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3"; - dstSubfolderSpec = 16; - files = ( - 91B451A6874D2427D1994145B1594DBA /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 536F828E626898C1214841563A3D4AF7 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - 5C4158700E5F8EE62E7A5D77ACD71CAE /* checked.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, - C2743CAA1C3E195DAA84238A805AECF7 /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5374900AEC877843D83E7E9EB3738EFE /* Copy src/core/ext/filters/deadline Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; - dstSubfolderSpec = 16; - files = ( - 2F1A45B57DBB6FA8D75A1B9FFF4B15B4 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, - ); - name = "Copy src/core/ext/filters/deadline Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 53BB1436E8EAEB7F5FEFD1D1641C7BBE /* Copy src/core/ext/filters/fault_injection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; - dstSubfolderSpec = 16; - files = ( - C0E46C72146C5AE23A5B04105314B501 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - BD4C2D0C54E8981B152BE5C47A158B90 /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, - ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 544509B9FE1F96AAE5CFBBDECCBE1928 /* Copy third_party/zlib Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/zlib"; - dstSubfolderSpec = 16; - files = ( - 54BF546943A5CEB58EC2CC2D31A8E4B2 /* crc32.h in Copy third_party/zlib Private Headers */, - 345800955B6A02B4E1BBB7019FCA6E89 /* deflate.h in Copy third_party/zlib Private Headers */, - 89AE4D1AEEB515ED5F3586B9B15AD1C3 /* gzguts.h in Copy third_party/zlib Private Headers */, - FA44679D78B838E9CC1FAE92E35E815A /* inffast.h in Copy third_party/zlib Private Headers */, - 3C5F47EC4F1F7E75FA5A6F64A378AF54 /* inffixed.h in Copy third_party/zlib Private Headers */, - 2121798C6F327E6E09227E911AE4134C /* inflate.h in Copy third_party/zlib Private Headers */, - 076452173B93AB5E37CF64B6CE9468BC /* inftrees.h in Copy third_party/zlib Private Headers */, - 79018270BC8BFFE9BB516C69D5552644 /* trees.h in Copy third_party/zlib Private Headers */, - EBAAFCC95B242D0D976E15D9E3D3BEFA /* zconf.h in Copy third_party/zlib Private Headers */, - B9761DA96AB878ED3ACD9DD462DD8674 /* zlib.h in Copy third_party/zlib Private Headers */, - 71FB3D358F45A676DC1AB6346F91EBAC /* zutil.h in Copy third_party/zlib Private Headers */, - ); - name = "Copy third_party/zlib Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5501CE8908B6BA6E8F4655D22DC0963F /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - E9CE5AE6846D4DB16DBEB85C987B2945 /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - D4AB832C628B7EEB44B07EA2DE049094 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - A21CF177C08583AACC71642D60A15C0D /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 305097462E64B6623D4C09A7DE7B7289 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 7AA08AB029513C0C0ADC0211D8E3AD17 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 2BDB30F2FAC5399058EAF7F2569EEBEF /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 8C2C7EB1C75AA7669948BCCBE330457A /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 635F611CF922A5F0D24D78DC42261E80 /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - ABDDC6C2CEE697093A80ABE465BD0176 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 6730E5D7C4D74A9463F6F3C7C9BB015B /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - BA87971203F900B6B9F4F639DB9A4E53 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - E97B5EDFC127728784612075E0B74789 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 048EEF6127F5587623D0B23CC7825853 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 67B440890E567959C3839CF33B0D795F /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 82C791CA101C655F36E6B9B7CCE62CC7 /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 67D855B84E4DB5E0A7071665209115C3 /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 443318B46A72D0D6ECFB24F7E345EC5F /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - A735C9B93AB9A22D0FACE8DB1FD2E900 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - AFC01A877AA4ADF703094A8EBCAEA2CA /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 2C909E6488C253D9B5B0E95044408152 /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 268A529AB8396A6FBC494AB09EDCCCE8 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 8733F400AF2DC018E1EDB23CA1398436 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5716CB537741737189ED3BD933742F8F /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = { + 51E61AC28B6904A1CBE6099681FF4C87 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - 9F68719F3BA98FCCD1C6F9D2CAA6DC90 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - 4AC987D18E235F82A4EC014F04568D8F /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - A56DE634D4D1068BFA773E309245071B /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - 54E85AD3920F0760E859DEB9596274D2 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 3D5114E34E21FB9473FDE6941FBBBBB1 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 1A22F799A2D4EC91A4955B6676F766B0 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 9249533F84EFC2E98CB7C6B432CF2DB5 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + C2FAD005CD94365F463EA2568764D631 /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, ); name = "Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 575E0B48B67C7AF65D6F1A7F1C9C4CAA /* Copy src/cpp/server/health Private Headers */ = { + 522086A590685FE13FE1FAF7C6BF385D /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server/health"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3"; dstSubfolderSpec = 16; files = ( - 8E31DBA84CE736D026464A966BD15503 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */, + C46E1CD48BAF817783AFE6188ACB81DD /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, ); - name = "Copy src/cpp/server/health Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 57C4AD20701E10FFAAC0951CB39142A1 /* Copy src/core/ext/transport/binder/utils Private Headers */ = { + 52D5AA68C2A8709D8BB9D1D54DB2C685 /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/utils"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3"; dstSubfolderSpec = 16; files = ( - 500D9D8E32537A646C1A2C533918C5B3 /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */, - 4148FE477565D4898E7D76C528FC67A5 /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */, - 13961E5C35DF8554D074EEF1C70EC141 /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */, - A533671694AD8D96C70CDE0B8D2E4CE6 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */, + 56366258D5292E8F46DC5C4B9DEE5440 /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + 6EDACFAEB7F5C19BC6D6D36F5003FC78 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + 735870EBFB7AEB98843C67E7CD1537E8 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/binder/utils Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 52F2CF05EE858C6945E12D05F21DC238 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3"; + dstSubfolderSpec = 16; + files = ( + 6ADC8FE7988DB8E981DE6557FDF1EC48 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + FB92A6648D639241B7CC228331BD2C07 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 53D8C7E38998B40495276F6CF62D5CE2 /* Copy third_party/upb/upb/mem Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem"; + dstSubfolderSpec = 16; + files = ( + D0E10DA625399D7CF4B0A20850409687 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */, + ED9979DE96668D543AB9087D181FCB8B /* arena.h in Copy third_party/upb/upb/mem Private Headers */, + 30290372C730B0D2C437AFBCC35A5677 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */, + ); + name = "Copy third_party/upb/upb/mem Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 544A6D60E674E28965BBB076D4C68B1F /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/v3"; + dstSubfolderSpec = 16; + files = ( + 2B1C849685EB654B9557F24E6940B22E /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + 611A69F7619832FD87778EFE6677093F /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + EE70C6E9C1FD9EE37E438DCC03918D2B /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + BAAE382120AD4A04658954702540A17E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + 772512B58F6969DA45E825FA67CC2F2A /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + B327549E49A349E025E8137AC6DE7CEB /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/xds/type/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 544E25E4D2715B6D769F13E493A3E8ED /* Copy src/core/ext/transport/binder/transport Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/transport"; + dstSubfolderSpec = 16; + files = ( + 2A865CFCCEFA44D00C8B8F50BE183BB2 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */, + AC1FBA58CFEF2441E8FD8AE1DC741C5F /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */, + ); + name = "Copy src/core/ext/transport/binder/transport Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 54BED23B896A40778A4BEFB16096AB09 /* Copy src/cpp/thread_manager Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/thread_manager"; + dstSubfolderSpec = 16; + files = ( + F4E4A4B5F131ACCDF90A9079DD6CAEE1 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */, + ); + name = "Copy src/cpp/thread_manager Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 55440B8F558B64F72A0B745C9F2AD04F /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; + dstSubfolderSpec = 16; + files = ( + 8479FECD2DF28CA360F4120603A6DE19 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + F1ECE25BDCAE63E71220F1BB8759B570 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + C27C8ABB5C6695372F0911A6E319BFAD /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 269B10C7C392CBD98814A6EABFB57CD8 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + BD102C082B51AAD655B4250646105C24 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + ); + name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 55CED78713ECF2695A42A429022E825D /* Copy src/core/lib/promise Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; + dstSubfolderSpec = 16; + files = ( + B5BF71B0F5D2F9620F3DA9060F52C1E3 /* activity.h in Copy src/core/lib/promise Private Headers */, + 4BC14FF2F83A6308F63E968F9B00C710 /* all_ok.h in Copy src/core/lib/promise Private Headers */, + 7D3BB4888AF5A5ADEE6A276F475CA6D4 /* arena_promise.h in Copy src/core/lib/promise Private Headers */, + 1DE6FCBB9EC01E0AE8E6396F261D4DD5 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */, + 05E6A7EC1DA06F9366BE5F2B1E9018B9 /* context.h in Copy src/core/lib/promise Private Headers */, + 106F47DDA0BF136AF6BD877BA5FB8D6C /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, + D119F52FE8850FBB663E86BA5903AF27 /* for_each.h in Copy src/core/lib/promise Private Headers */, + C11B5F2C651EBA0171A674CD750C60D0 /* if.h in Copy src/core/lib/promise Private Headers */, + 2B5101AB1402046C2A26B98AEA5F3271 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */, + 3C86BFADCBB5D0FD060B7A9A149258EA /* latch.h in Copy src/core/lib/promise Private Headers */, + 9A9E8E971C37079CE632E9A5A25455A0 /* loop.h in Copy src/core/lib/promise Private Headers */, + 47E2483764220E2DCC3C3381CA7927F1 /* map.h in Copy src/core/lib/promise Private Headers */, + D85DEE72DFCCF670691467F5C2D6F72C /* party.h in Copy src/core/lib/promise Private Headers */, + 5CEDF406256468078763978357D574F8 /* pipe.h in Copy src/core/lib/promise Private Headers */, + 2DD68806F75A9959D35E258A3640B247 /* poll.h in Copy src/core/lib/promise Private Headers */, + DF592C6A79511E8F20D9CC45B12CB53F /* prioritized_race.h in Copy src/core/lib/promise Private Headers */, + 91E1A926F5F87D038E9F5FDDB45E847C /* promise.h in Copy src/core/lib/promise Private Headers */, + 9E38D42D96596C78E22BD409A7F734C9 /* race.h in Copy src/core/lib/promise Private Headers */, + 356C069C3B28229805851EBC7A40C21B /* seq.h in Copy src/core/lib/promise Private Headers */, + 6347BAC7A5413B01D9CA0C66E6573F74 /* sleep.h in Copy src/core/lib/promise Private Headers */, + 70359B91539C791CC2671F2D57C7A8F6 /* status_flag.h in Copy src/core/lib/promise Private Headers */, + 5FE7B066AC858865ACEDCE8E31061FA7 /* trace.h in Copy src/core/lib/promise Private Headers */, + 5ECBF4C7599A9E79F8093DE48908714D /* try_join.h in Copy src/core/lib/promise Private Headers */, + C25F7836AF9C47C290C614C09F5F5928 /* try_seq.h in Copy src/core/lib/promise Private Headers */, + ); + name = "Copy src/core/lib/promise Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 55E36114E03B1946769106026831433D /* Copy strings/internal/str_format Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal/str_format"; + dstSubfolderSpec = 16; + files = ( + 763D86C159D9CB060467EB8407845DB7 /* arg.h in Copy strings/internal/str_format Public Headers */, + E1ACB9D3ECD3FAAD20D29528EA3E77AA /* bind.h in Copy strings/internal/str_format Public Headers */, + EFE0B0E6B14AA7386EA026AE6B2B5E74 /* checker.h in Copy strings/internal/str_format Public Headers */, + A8DA27D6C65E9609A6D3B3ED775D5C4B /* constexpr_parser.h in Copy strings/internal/str_format Public Headers */, + EC06EADBD96C4E3F266791CD6CACDD33 /* extension.h in Copy strings/internal/str_format Public Headers */, + 03054FC466A4A97650211EA1661F80C4 /* float_conversion.h in Copy strings/internal/str_format Public Headers */, + 4843F718554817CA2433E87151821BBA /* output.h in Copy strings/internal/str_format Public Headers */, + 5DED7102518F3A80EB6E2CB60168D71C /* parser.h in Copy strings/internal/str_format Public Headers */, + ); + name = "Copy strings/internal/str_format Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 560CA94D3F6E5D2ACA6CA0623475924B /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/service/orca/v3"; + dstSubfolderSpec = 16; + files = ( + 61D2902B9535404232DDFC42A43021D5 /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + CF193D22B1F0F7140B3484A266BCB23E /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 5772054BB8C45C1FB8CE6C0C7DD64C67 /* Copy hash/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash/internal"; + dstSubfolderSpec = 16; + files = ( + D9C062917B1F8838B0B2542BB80C2DC2 /* city.h in Copy hash/internal Public Headers */, + 63F3E099FC6B428D38CD6182F458F58C /* hash.h in Copy hash/internal Public Headers */, + 69EEFB29BBFC2FC05906050586050DCE /* low_level_hash.h in Copy hash/internal Public Headers */, + ); + name = "Copy hash/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 5773F051D78EC67904E7AAA7C7A14B5B /* Copy src/core/lib/gprpp Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; + dstSubfolderSpec = 16; + files = ( + F2482AF97C0EEDF24CB1CA39E3C726A3 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, + 8507E21D35F862F4AE893AA8B257B761 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, + B07961711C8B0CB1838AA5E5DECBCDC4 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, + E257072A33290BFB1AF3EB2D6CE62E9D /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, + FA41C6124C30503D2CDE2F4F64E5F588 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, + 107A48E43D8FF740509155D37B0D0903 /* crash.h in Copy src/core/lib/gprpp Private Headers */, + 1AD42153A694A6C0D75E7A87141C8B7A /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, + 0F8ED67C9F8A17BF78DD60EA0AC1517E /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */, + 6335E881BCC9D94BE25A3EE6F1456B60 /* down_cast.h in Copy src/core/lib/gprpp Private Headers */, + 7636DA3DAD4CBE116723ED5D3797E220 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + 96581E11F3B9A04BB5376D1B8ED00925 /* env.h in Copy src/core/lib/gprpp Private Headers */, + 2651DC5445C41FA7060AA463505D4E23 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, + 270537B3EA373C983CED2D40973C21C3 /* fork.h in Copy src/core/lib/gprpp Private Headers */, + A5D19EEAA58352782FE907F7AC2653F3 /* host_port.h in Copy src/core/lib/gprpp Private Headers */, + 33933DB04F707A1472E1432D5C9EBB5D /* if_list.h in Copy src/core/lib/gprpp Private Headers */, + 03899EB8BC522357FCCAF8C7EDFC526D /* load_file.h in Copy src/core/lib/gprpp Private Headers */, + 71AE9F86AD895E4D29CCEF003C5D01DC /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, + BC91CA31ADC37C6FEBB8797C9273C8DB /* match.h in Copy src/core/lib/gprpp Private Headers */, + C84A92350438E9575354878D4D7FD40E /* memory.h in Copy src/core/lib/gprpp Private Headers */, + 98C120CF25E74E6199BF357B2907DDBE /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, + 847E6CB86F1807D68D763061C79E1757 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, + B3A08E720670583C3AC4A926951B4981 /* notification.h in Copy src/core/lib/gprpp Private Headers */, + 1FB9CE4F9F384F256B8584F03B0A1028 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, + 440C6189C2444BBBC7DF77B1E763633C /* overload.h in Copy src/core/lib/gprpp Private Headers */, + AD7B0E250E7519B193E91D29E6CDC4EC /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, + DF082721E397A670A1B75FD6B97664A7 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */, + 2F4CBB98B646A097E6DFD4DD2C47D110 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + D9EAE2ED3C272B17A050395FFEB79214 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, + 1E137CA79E1EADFDEBC8A5209596B70D /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */, + 2C4D95AD7012A0B7DE3F9EAC7B1D0ECD /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, + 447042159F0CBF3207AD9CB214AC54AA /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, + 9FCF503160E31C2175EFF18F77EA2746 /* stat.h in Copy src/core/lib/gprpp Private Headers */, + A2397DF25FA3760D39C631CB6832371A /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, + 0821937EC16DB407C1CB57280F66A9B7 /* strerror.h in Copy src/core/lib/gprpp Private Headers */, + B631588A3C72B0FED5EFC75FEAB83602 /* sync.h in Copy src/core/lib/gprpp Private Headers */, + 5872A640E8A0C42499AAB79EA8C99821 /* table.h in Copy src/core/lib/gprpp Private Headers */, + 8B0DFDD3FDD2F187FB149A8F0814D5C7 /* tchar.h in Copy src/core/lib/gprpp Private Headers */, + 85B10308264C6D911E04C171AA325F78 /* thd.h in Copy src/core/lib/gprpp Private Headers */, + 92C65CDDAFEB3A47E77308B0233EA3A6 /* time.h in Copy src/core/lib/gprpp Private Headers */, + 015846F7B66909FDA58C4430DF93EFF1 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, + B7B328CBE99678F47A7E803594ACDE5C /* time_util.h in Copy src/core/lib/gprpp Private Headers */, + 995FE5FDCB97254F05DDEDA6EB4205F4 /* type_list.h in Copy src/core/lib/gprpp Private Headers */, + ED1E80D60DB44476BD3826F8E6F04BC9 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, + E5CFAC4C800F20283C76DCA6DC2A367D /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, + 7EB45F8BF08A6E4553BD624869C52F83 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, + 08F4BC93FB159C754ACF2A3306D96068 /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */, + ); + name = "Copy src/core/lib/gprpp Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 57B45F8A6AC8584211DE3A53BF7627AA /* Copy crc Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/crc"; + dstSubfolderSpec = 16; + files = ( + 8A7FA0D088EE219AA78937A684E6E5FC /* crc32c.h in Copy crc Public Headers */, + ); + name = "Copy crc Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; 57F151E8542270182EA00193E9104230 /* Copy crypto/fipsmodule/service_indicator Private Headers */ = { @@ -12806,452 +13274,384 @@ name = "Copy crypto/fipsmodule/service_indicator Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 589C8578123773CB2E7B0FE46757BD41 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = { + 58A3DD0F373E55C1B8179858D4FED192 /* Copy third_party/re2/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/util"; dstSubfolderSpec = 16; files = ( - 67F18B54E93B83A51A70A4F9B7F19653 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, + 8944ABAFF50FE418659D305AB3A60F87 /* logging.h in Copy third_party/re2/util Private Headers */, + 71EED717396927C5158A6A7C471CD1ED /* mix.h in Copy third_party/re2/util Private Headers */, + 7DE55D4626F57A8267A1287ECA737020 /* mutex.h in Copy third_party/re2/util Private Headers */, + A814BA0FCFD20036D552228D84E2F028 /* strutil.h in Copy third_party/re2/util Private Headers */, + A7DC316C69A0BB303A85923E296A6DF6 /* utf.h in Copy third_party/re2/util Private Headers */, + B2BA633C3DB62A606D5A1DB9D2801A73 /* util.h in Copy third_party/re2/util Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers"; + name = "Copy third_party/re2/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 58CF5FDBD800F6969DE1648FEECDB294 /* Copy src/core/lib/security/credentials/local Private Headers */ = { + 59669A2B7210208F411779464E2A54CB /* Copy third_party/upb/upb/hash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/hash"; dstSubfolderSpec = 16; files = ( - 5DFAE00FFA1B6FCAB80699484870DA2C /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, + 13403CAB898B82D4E48C5C93709EA6E1 /* common.h in Copy third_party/upb/upb/hash Private Headers */, + B5ED748C486176D9888806C9323951F9 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */, + 14EBD784E612BADF3B96F21743EB189F /* str_table.h in Copy third_party/upb/upb/hash Private Headers */, ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; + name = "Copy third_party/upb/upb/hash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5A1D9F03F398FC76CE8968207F185E2C /* Copy src/core/ext/gcp Private Headers */ = { + 5A2A3CF49F5D37DC2D87D013FEC20C2B /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/gcp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3"; dstSubfolderSpec = 16; files = ( - B5222B793336C016C958A2E034A54E44 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */, + 4E31549AFB624311481002C5E427B9AE /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, ); - name = "Copy src/core/ext/gcp Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5C5EA1DBA741EC77330AD63C93CA91D8 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = { + 5AB8654E11F66990DFCA421ABCA03F4B /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3"; dstSubfolderSpec = 16; files = ( - 6CA6890753AE95E37879ABE57E2965FD /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 0C805FA9FA787C4FEEA28FAF0514FF6B /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 5EB9C5AE1831918AF4D54B9596F41310 /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 803C6D62F01592D0FF814587ADC2E586 /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - C5B801C1FD9664AAE8BBC316D786FEBF /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 25B42674A8B59D08115BE7FDB755F493 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + F2923DE4008E826DA5A50945221906B8 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 5DA070DAED082DDC7634F0F7FA715E79 /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; - dstSubfolderSpec = 16; - files = ( - 3109A7629E882DC09121066691BF047D /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5DCBEB0A531648285F7BF044E1BC842E /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - 34B9F26D1D95EE7A9F337CE4FD9CEDFA /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - E15D7FA8A6D7E8F3A18D00058D4F60A6 /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - F8976DFC0B0C9C8182125C5CB7DC09C3 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 2FD41B1A0A71386784DFC0E779EA3782 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - DDAA1AD669839E90E923EA35149A5F37 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 101DB4F51BDEA5952D5A69D50980EA46 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 93FCE4AFC248686CA905B870FE1292BF /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 8F63DAD3AF95AC77E7073F4109A78929 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5DCCA2FB06EFB79C982AFE033F0EB5C5 /* Copy third_party/upb/upb/wire Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire"; - dstSubfolderSpec = 16; - files = ( - DFC27892D6F8535CBAE890263BAE7099 /* decode.h in Copy third_party/upb/upb/wire Private Headers */, - 11AEC0983FAB9870C4497BC1708F2A58 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */, - F141E291D5B8BD2955995AAB78995797 /* encode.h in Copy third_party/upb/upb/wire Private Headers */, - 75EDB075615BE3832DF0C4943EEA962F /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */, - C18D3F55176D2E1864D4064B796C2420 /* reader.h in Copy third_party/upb/upb/wire Private Headers */, - 3758F0C94758F2D62328A1A86A749B5F /* types.h in Copy third_party/upb/upb/wire Private Headers */, - ); - name = "Copy third_party/upb/upb/wire Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5E032949321210940CA244D01C86541B /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/route/v3"; - dstSubfolderSpec = 16; - files = ( - 09F26C9418939C7014583538EEB582CE /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 41B769566E02AA33DE7B55B5985CADF5 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - EAB8AD17645A7FA4587D302733316A72 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 80E21F08026BDBBA8B87C3F8C6303036 /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 4C084E909E724DC67BD7EC34FAFC6FB2 /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - B4F0F24383E8200003606B9069DF8D79 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5EC50CA0CA4914C3FB3969AAB3F76F4A /* Copy src/core/load_balancing/weighted_round_robin Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/weighted_round_robin"; - dstSubfolderSpec = 16; - files = ( - A8B6CAAD43F713010C083ADA87FAEF10 /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */, - ); - name = "Copy src/core/load_balancing/weighted_round_robin Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5F118DC53834C1A03A33A329254310A2 /* Copy src/core/lib/experiments Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; - dstSubfolderSpec = 16; - files = ( - 12F3E4487F877B33570A95773B4E526D /* config.h in Copy src/core/lib/experiments Private Headers */, - 539BD2495B0C75D5144DC972617BFA37 /* experiments.h in Copy src/core/lib/experiments Private Headers */, - ); - name = "Copy src/core/lib/experiments Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5FA17B5103C6BF8A92176D06B6A9896E /* Copy src/core/ext/upb-gen/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 6B0FECD429B67253060C662AC9343EC2 /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, - 3E30DA66A532454EBFBE7CEE55468846 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5FE54D9DF3807470BCF4FEAECE7479F9 /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - 7AEE8B83235D313BB4D344BCE5F4564A /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - 95722E15AB0D39CAC96FBD93124A8A32 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - 8EC2E8890619F40723A022B950015510 /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - 4EA8705D99761EEEBEC4951E0D615211 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 601A6970B7E2F7DDFBC66DDEEC4E7AEC /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - F9E227FC2AEBE85CC30C7D8E82707C3B /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6030CDC5D58107803F799EE8F8B5B0A9 /* Copy synchronization Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization"; - dstSubfolderSpec = 16; - files = ( - 932904D7AF4C770863EFED309BC63C30 /* barrier.h in Copy synchronization Public Headers */, - 9DD0C9689B60C005F8070B6CB725E063 /* blocking_counter.h in Copy synchronization Public Headers */, - 9480DA2B7E76D8679ACFF4FEF10C1D08 /* mutex.h in Copy synchronization Public Headers */, - 8765A785878443BEC4A8E13DF80C59A2 /* notification.h in Copy synchronization Public Headers */, - ); - name = "Copy synchronization Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 613EE9E83A4E8DF83D8D577CE39C4E96 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3"; - dstSubfolderSpec = 16; - files = ( - 5A29643FD0F1205FA4460BE7412D1C7A /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - 2D1F4C4C3A2FB734E8C72452977F9B00 /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 617F6DB77D3942BEC1D3A609BAD3E779 /* Copy flags/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/flags/internal"; - dstSubfolderSpec = 16; - files = ( - DE63C1F8E0AD258E49DABB5BAE96A217 /* commandlineflag.h in Copy flags/internal Public Headers */, - E0ABF90F28E42173B0F22431E83FB6B9 /* flag.h in Copy flags/internal Public Headers */, - 74C376ABC83E5329B656D248F2E8587C /* path_util.h in Copy flags/internal Public Headers */, - C0D5ECC0E543BD7F09870A18C75E1E63 /* private_handle_accessor.h in Copy flags/internal Public Headers */, - 9F3E2890B4F3D85106A1E005DD7C49B6 /* program_name.h in Copy flags/internal Public Headers */, - 27E9ABDBEE2A90C9EEB5929EF07C10CA /* registry.h in Copy flags/internal Public Headers */, - EC5938E0ED54067A384F6ABF83ADA68D /* sequence_lock.h in Copy flags/internal Public Headers */, - ); - name = "Copy flags/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6180A52CDE1ABE1A79CF9651CF32E43D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 579D38DEF04F227E910EA1BCDE5D2630 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - 18BCBE1F88BC5205095811385FF175FE /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 62883354CDB2A2D36744C5C528E903D7 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - 2EAD1EF7ECDC0600B637D4BD97334440 /* endpoint.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 84942222F444BDE86B9209C1680C67E6 /* endpoint.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 184D7332571451C2ABD45D993AD6B48F /* endpoint_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 4C9AC1D1E07C243B596C1B18FB82CF9E /* endpoint_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - B972470B15E0CCEE25D0339491A66942 /* load_report.upb.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 2C8B240EE80A22C106F08F756775A630 /* load_report.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 62AD393123E55369BD22E1A6E8FE69AF /* Copy src/core/lib/avl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; - dstSubfolderSpec = 16; - files = ( - 15D74C5B0A3D96A409952149E792CA8F /* avl.h in Copy src/core/lib/avl Private Headers */, - ); - name = "Copy src/core/lib/avl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 62C6449064736CBCC3DE902439F485E6 /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { + 5B2D26E891BAB6B6ACCF0BD5740453C4 /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; dstSubfolderSpec = 16; files = ( - 4616B54480032A19C6639A635F364092 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, + 275764473960685210386604FC8153D2 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, ); name = "Copy src/core/ext/transport/chttp2/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 62FC234AC9A6FCB109F9F47370F010A0 /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = { + 5BA2500C737DBEA608B4A8284350D962 /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - 72413DB3E94D6B41DECC9BC5A6A790BE /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - 10E2DDC6B79B3A5B3BAB23D341110FC3 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - C53AD4839EEBC03445EAD69069556C12 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + B5E62EA36B861F611CDFF7DC901D1850 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, + 12A9EDA551503F72160C7C98B754C7DF /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 64F54212720D0683F24484D030C4478F /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + 5CDF0618211F664336D8D2726CD6558D /* Copy src/core/lib/event_engine/work_queue Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/work_queue"; dstSubfolderSpec = 16; files = ( - 94ED841C8D5EB8AA57158199CC2ED5E3 /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, + 174C5607CB7075E820754E1C01F97408 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, + D868FF7C379F51731664A86F914B4D01 /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers"; + name = "Copy src/core/lib/event_engine/work_queue Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6649C22BF67DE8DE52BBF16DB0C6B174 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = { + 5D602C77A833E5FF05DACA9877F4E48F /* Copy src/core/ext/filters/deadline Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; dstSubfolderSpec = 16; files = ( - 5669C6DA454A2264BCE307A06A0C9200 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 9AE8D3E442F03F628590AFFB1C4B9CCD /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 710681050FBB2CC7B83CE6D0EF1BF903 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 2D0A640AA9C6918CCD67E6A6974E8A6F /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - DAFA0D4512A7E1513B482ABBAE7979F1 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - C789C0AECD778747AB807717CF5C9932 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 269AB871A34EEA6A680EC2890032532F /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 565557D74909631A53076D77B5400D7D /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 0BBF983034BE68B4628A473352152A58 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 4044E7778EE6ED27A36590DCFB9F94B5 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - C35732FED49306B8A23701975128AD1F /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - CC15464C4993A9F814586B3DDA9F7376 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 6C7FE0AB90F27382A6124B97861AB264 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 46C103F122B8107CF648C3AA8DA62754 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 1A70C13077042A1FC74BB2F9A7453F5D /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 85EE5E40FB6046FEB3096BCEC57CC7BD /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + AD7FEA7A60CB1942AD82469187A3A47B /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/filters/deadline Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6693CD647F2E326ECBE7E39DF03864D6 /* Copy src/core/lib/address_utils Private Headers */ = { + 5D7679C37F4E2AED2C1BA25ADE63DA28 /* Copy container Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container"; dstSubfolderSpec = 16; files = ( - 4C1C7009262DEFE258B4E9514E7BD4AC /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - 0921614B1D15BB66AE95B554FF81D308 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, + 2B71296A19D9C0BF5027C535F09090D2 /* fixed_array.h in Copy container Public Headers */, + 55AE3B4EE42D5CDA27B1AEB68DA13582 /* flat_hash_map.h in Copy container Public Headers */, + C045B5B7BE6BD5D36DEA798A70ACDCE7 /* flat_hash_set.h in Copy container Public Headers */, + D3C85FA77AF22D26154B30994FA59B92 /* inlined_vector.h in Copy container Public Headers */, ); - name = "Copy src/core/lib/address_utils Private Headers"; + name = "Copy container Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 66B05C851C9E7EDC53028E816BBFA48C /* Copy third_party/upb/upb/mini_table/internal Private Headers */ = { + 5EF9A267830F38846BA90BE949C75FA8 /* Copy src/core/lib/event_engine/extensions Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/extensions"; dstSubfolderSpec = 16; files = ( - 9E1BEC9EE52A80979B2370049EC0B9C4 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - C534844078AC50F9DD86A5E616FC8F54 /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - CFFAC5D53B1526577CBCFB2E7765FA78 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - 183616F4286253CB1EF91AD57322FA58 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - BF5754405BC26BAC37E8087148D4B013 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - C319F018E72FE52912F989F2BE03215B /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 0A4D166F06B41D6C3459451FFA38C22C /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */, + 4DA6FE1179781D115C966F5F10DA6D74 /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */, ); - name = "Copy third_party/upb/upb/mini_table/internal Private Headers"; + name = "Copy src/core/lib/event_engine/extensions Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 672599F64B345876B5B4134EDAA618CC /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = { + 5F19034D7DC835F42C63733292B173B2 /* Copy src/core/lib/security/security_connector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; dstSubfolderSpec = 16; files = ( - 548620C21710A0C548A800D468337EA6 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 2EBFED675CB968D25307CEE295BBC701 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - B3A3FDB4B9EF66155C1EC6E78CD7131C /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 1C74D8C7932B34B47C3F69EAED39AC36 /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 08925069167A9D6E5F95709820C544F6 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - CE3312981CDD1BC3B235C5A3D208BBA9 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 0AC696C6AA027633B617855F37DEC421 /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 8B0116F84D8243CAA2C707BA99989F58 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - BF25ACD8EF27FA3741DA37194814F1B2 /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 952CC9E3ED57720EBC7AF136CC99B9E2 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 4413F003E5AED6A6D298D60354C1C7B1 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 430B6A479CB97A20D6C400371795DB36 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 1D2D362B93FFA6BECCEA22CE2838FA37 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - FB32AE4EEC6C3B52EF80FB2FFB28F616 /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 2176EC96EB5CB65C069B17A94B5F4314 /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 10972E6BFED02729B65AD91C6B09A87E /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 54B7B49DBFF2147D65789D9BFE60D6B2 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - E8784039DA96AF725BBA0D88C49CC241 /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 424CE9E4B5FF1F1ADB97B34CC83881B3 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 32D733F3BB806463764443A0304D68D5 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 29BF2968BDA825519835367A21824CFE /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 18F79D649D39A489F731270C2B0EE74D /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 18F661F820C37545D2A0BC577CAB5491 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - DD23941F2DE9F9332D5A54548EE5FD5F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 62ECF723784DFE4A8E361326116EED0F /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 0C85D7AFC614805DC9BC83A2276A81E9 /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - B9C734C24C932EF63F18711D375FAA16 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 98F0513C404271A3991C14DDBEAC246A /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 96F5176576D3B658617E0E5EBFF34C9A /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - C478C67D09201CE26EC4CC23CE74F4BF /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 871957F63E4B54C71CC091753576761F /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - F1BFA25A76DDCBA64F6FDF1B283BF6A5 /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - ED33760EF82049AA49C6FAD99DE58E54 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 11E709C7F70FD4C8ADC2E2C898F31711 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6140A2FA412A1AC5D756129CE4C634E0 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, + 72364CAA0264F9C4ECF25F78016D3F89 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, + 1603FD59F25826A96F6A0C59D101FB37 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, + 6B4A546598C9BE11AB802DBBB0072A9D /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 67406CFDB5D856FD9D45379352E216E3 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { + 6068F35F3B3C0025929B853EB25D3458 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/udpa/annotations"; dstSubfolderSpec = 16; files = ( - 37EF2BC4C742EC065DE9810C827EED41 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - 2D9F780238BFCC21DB89DC495FEECA5C /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + CCB78E953FBDFD2A3537EF7A197EA31D /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 0DD716209AF9B203409C38AD32A62EC4 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 627B1FBB795DE8D0703ACDE00E70AAD1 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + C14F1B97ACF195C31B7737B490FAF9FB /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + AC5D175DF375068A524682C6C17129F3 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 67A3D56C9FD1C2B25EC7E0C052E096DB /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { + 60C00472754A174A67FD289D71E2CDAF /* Copy third_party/upb/upb/mini_descriptor Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor"; dstSubfolderSpec = 16; files = ( - 55139F97229589F4A3A6851A8EFC6A1C /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - 89A988B844B94E7CEFDEADB3072F5302 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + 4D7C830EFF37AD0718DF1EE9C59137B0 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, + B14C268154025F8B32BAD61EC34698BF /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, + 00913136CC459B867FDF6901D7B71311 /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; + name = "Copy third_party/upb/upb/mini_descriptor Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 68F2C157B271F78FCA0F6B36646E946E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { + 6145ECF7EED02FE03760A415B1DC30D3 /* Copy time/internal/cctz/include/cctz Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/include/cctz"; dstSubfolderSpec = 16; files = ( - 718298104ED3A89DFECB3C0AA98B32D8 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - 4170B3C56458C272FFDAA752616665F7 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + 7919C85ABAA04A197E1CD82E6F3A0C28 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */, + 43F1090F6429F68E7E577E4E11A2BBAE /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */, + 1F39AF29330D8C0BA56E2E9EE2F5BC6F /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */, + 81C5C02A9925F80CDA03E52DFC27D6DA /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; + name = "Copy time/internal/cctz/include/cctz Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6991802BDB46FDCABF8ABF9BE7C01F2A /* Copy third_party/upb/upb/lex Private Headers */ = { + 62646D4AA4545A03789793A0B047C0F8 /* Copy src/core/ext/transport/inproc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/lex"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; dstSubfolderSpec = 16; files = ( - 1D72D92710E8291EB96E630E75F0D982 /* atoi.h in Copy third_party/upb/upb/lex Private Headers */, - ECC4DF13AF505997EF6DA80461350FDC /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */, - C64DE1B209B8607232F0CFA54E9CB886 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */, - ABB7979288ED7258EE74392887DF207D /* unicode.h in Copy third_party/upb/upb/lex Private Headers */, + C45A4766E4E30D0A539F787030D4D4E6 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, + 0C83AD5117B2178B8BB57F08C29D92F2 /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, ); - name = "Copy third_party/upb/upb/lex Private Headers"; + name = "Copy src/core/ext/transport/inproc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6AB2431CA2490D48EFEE036F5315DCCC /* Copy third_party/upb/upb/mem Private Headers */ = { + 630E1590D6295C3CF6CB88F74D3672A2 /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/service/orca/v3"; dstSubfolderSpec = 16; files = ( - 72901B6A9EC77E4D29C7AEBC5FCA31E4 /* alloc.h in Copy third_party/upb/upb/mem Private Headers */, - 6555653EB52C1F6AAF078A93FF5658D2 /* arena.h in Copy third_party/upb/upb/mem Private Headers */, - 32649CA14C2CC38B2790D88973A5A3A9 /* arena.hpp in Copy third_party/upb/upb/mem Private Headers */, + AA4F5A4ADFBDF95362100A7F77E331AC /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + DED2604DD78E955E5F194E95FBDB0854 /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/mem Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 633ACB171DF9E84B58CC70710EF6B65D /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/status/v3"; + dstSubfolderSpec = 16; + files = ( + 207C8DB7AE1C3DA8B597F57323560D6D /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 63BE5EFAE9D8989613911ADAE5206605 /* Copy src/core/ext/filters/message_size Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; + dstSubfolderSpec = 16; + files = ( + CEBF9BC67C0C9D947836C16A11272289 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, + ); + name = "Copy src/core/ext/filters/message_size Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6404B9D1E6B080ABCA996B8F22310807 /* Copy src/core/resolver/dns Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns"; + dstSubfolderSpec = 16; + files = ( + 44BFBBC2A3B4518B15A46F1EC60BA082 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */, + ); + name = "Copy src/core/resolver/dns Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 64D57092CCFAB3FE1FABF445301E2E53 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; + dstSubfolderSpec = 16; + files = ( + D16F27DB28F3AF3532553423972CA063 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 662B830390A88BA8100E52E5E834D4F1 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; + dstSubfolderSpec = 16; + files = ( + F7F7A8A4DCF4EAE86CAC7ABBC3E14744 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, + 7257F2DE3585DF340EB776107D3077FC /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, + ); + name = "Copy src/core/ext/filters/fault_injection Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6643B050212816A72D6D4FA7D5DF1EBA /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; + dstSubfolderSpec = 16; + files = ( + 46936D1AFCB0CC6D970E6FAC97F44264 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 673EAAB6805A6F28EB2821CA5413C90C /* Copy third_party/upb/upb/base/internal Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base/internal"; + dstSubfolderSpec = 16; + files = ( + D9F0E328AB660A1576CC0ECF4F03BDF8 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */, + ); + name = "Copy third_party/upb/upb/base/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 680286142B2E6816FF864D8B6BDBDCEA /* Copy src/core/lib/security/credentials/external Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; + dstSubfolderSpec = 16; + files = ( + 113B43FB8F65937C7BC9254D2A965DBF /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 9B7A38D80F87ED09FA8D3EF6E570E886 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, + A0F4D43CA335835C8F3FE4D0B3C0086C /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 416C82BBD88272B4B4325EEAFB43B91B /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + D6CCA835E509E48BACF36DDAA39CCA44 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/external Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 68CC38B90A22C4069B0290D06E962B0A /* Copy third_party/upb/upb/base Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base"; + dstSubfolderSpec = 16; + files = ( + 2018F92E5635F707C7F1F73333DB93B8 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */, + 2F22B4D7BC8B732CEE6CC3DFF52B9FCB /* status.h in Copy third_party/upb/upb/base Private Headers */, + F52DD975338F04CBC95D9368475B3B2C /* status.hpp in Copy third_party/upb/upb/base Private Headers */, + 689D0014CA909B1094D7DD5CC72841E6 /* string_view.h in Copy third_party/upb/upb/base Private Headers */, + ); + name = "Copy third_party/upb/upb/base Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 699B2E706AFB4349F7B347D68E97FCAF /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/status/v3"; + dstSubfolderSpec = 16; + files = ( + 852B4C388E86CC52782B1370FFA1D7A8 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + 5977F1DDB90062A348C1A143B86FAA8E /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6A04579943BE509656A1C549C1919AE0 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3"; + dstSubfolderSpec = 16; + files = ( + 289A0EBFC3FEB69134A0AA3F05C0F3C8 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6A78CBCDE285563CA9B22239D5B2112F /* Copy src/core/lib/security/security_connector/local Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; + dstSubfolderSpec = 16; + files = ( + 52DDFAF32C9CD6237F15E798D1D39236 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/local Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6A8ED4AC22643F2DAFBECA57998846EE /* Copy functional Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional"; + dstSubfolderSpec = 16; + files = ( + 02AAACB1E87E117E12DBA8D648981AD6 /* any_invocable.h in Copy functional Public Headers */, + DC7DA95E3C7178A2EF863D43177C800C /* bind_front.h in Copy functional Public Headers */, + BF99F6AF50AE58113B58C2D2AFA634FC /* function_ref.h in Copy functional Public Headers */, + ); + name = "Copy functional Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6B1B7D3EE1CA44873E6165258E2CC720 /* Copy src/core/ext/filters/backend_metrics Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/backend_metrics"; + dstSubfolderSpec = 16; + files = ( + ECE4140A04E79FE167506DC98EB31F86 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */, + 665231B2F21AF16F8B756A892CECD621 /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */, + ); + name = "Copy src/core/ext/filters/backend_metrics Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6B2126717E165BE60437A406FB7B0046 /* Copy src/core/ext/filters/http/client Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; + dstSubfolderSpec = 16; + files = ( + 112EDEAE1C3F7AF784E82E7F9663A2A6 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, + ); + name = "Copy src/core/ext/filters/http/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 6B67F30602A6A543700DEB00B452EA98 /* Copy crypto/fipsmodule/ec Private Headers */ = { @@ -13269,300 +13669,137 @@ name = "Copy crypto/fipsmodule/ec Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6B738BF5D54DC14214D326D281455FB1 /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = { + 6C1953F307EB729388CBC12931D1E2C9 /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3"; dstSubfolderSpec = 16; files = ( - AD91FA8E3933370A10DE08C33E0BD7B8 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 7A89376911C70CB005CCEA20C5C4E028 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 503F0B7FFFB30885711035C87F3CEE3A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - B92F46387336381316F70E830E837946 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 476853B6BB17F7D70B8F411BB83ADE27 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 98DA8AF7160C0DE7F86AEA4FCAFFD404 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6B83B466C4F964F0D8E3175DE3615CA8 /* Copy src/core/ext/upbdefs-gen/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/validate"; - dstSubfolderSpec = 16; - files = ( - F20AC4C6105F1A490475CD7871AF47FA /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6B89328CA318274DCE0FB4E6BE6AF2E1 /* Copy functional/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional/internal"; - dstSubfolderSpec = 16; - files = ( - 4771B55C34AEA10875CED7EA4D83541D /* any_invocable.h in Copy functional/internal Public Headers */, - D4F2707715B6772464D859A608F22E9A /* front_binder.h in Copy functional/internal Public Headers */, - 7F4C035CB7C4E6951D7E191BD9CBC2E2 /* function_ref.h in Copy functional/internal Public Headers */, - ); - name = "Copy functional/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6B936F99F2CF803ED9AED5ADBE8FDCB5 /* Copy src/core/load_balancing/grpclb Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/grpclb"; - dstSubfolderSpec = 16; - files = ( - 832CC5B3BFAF97AC96A65F00A70AB2F4 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */, - 94E381181EDC13C48FE7F5A7E6E847B8 /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */, - 0775DDDB8C5F2B07BC8235DEF0C0EDCD /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */, - 59766CA24261D4F14C2CC96EFCE6FDD1 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */, - EEDB7E2AFDDBF622A23EAACFD0AEDCE9 /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */, - ); - name = "Copy src/core/load_balancing/grpclb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFC7EE2A942BD98D425D9879780DAF2 /* Copy src/core/ext/filters/rbac Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; - dstSubfolderSpec = 16; - files = ( - CAD03592B1EE0C32144ED3A7838222DC /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - 7B3E70A45FB50DC2AB1F10BE44ED04D2 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, - ); - name = "Copy src/core/ext/filters/rbac Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C26A3689651C7CDB33AD9BF2C07D96B /* Copy algorithm Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/algorithm"; - dstSubfolderSpec = 16; - files = ( - 9D8BB675B956325DFADF62887376D89D /* algorithm.h in Copy algorithm Public Headers */, - D7C017E996CECC0549CEB131CB545B2B /* container.h in Copy algorithm Public Headers */, - ); - name = "Copy algorithm Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C34E7EE9731DBAA71435B4EDCCC1BC7 /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = { + 6C599E77D3E5B52AB1BC25EC372ACA8B /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lb/v1"; dstSubfolderSpec = 16; files = ( - 638FDD77EC436CA7176759BC15D19716 /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, - E46B480849F81691AF7D982594D7AEB5 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + D1C29E1B6C5529AF02BA4A94712D4E6C /* load_balancer.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + 0B8A521E130D87029E3AE6C7E53211C7 /* load_balancer.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, ); name = "Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C528E2F9662B5FD2F2B363F0CFC0FD6 /* Copy src/core/ext/filters/deadline Private Headers */ = { + 6CC8C804A272394632D59FC4F52BE6AE /* Copy src/core/lib/security/credentials/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; dstSubfolderSpec = 16; files = ( - 77FB6D08C6C8EDAE514BF5405F22C6A2 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, + 42C84B3BC2CC0183EC3320A86D91B4F0 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, ); - name = "Copy src/core/ext/filters/deadline Private Headers"; + name = "Copy src/core/lib/security/credentials/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C68DD6742A1BF209A175202514FBEAC /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + 6DB39F67C2EE79CEEF4080D890E75384 /* Copy src/core/lib/event_engine/windows Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; dstSubfolderSpec = 16; files = ( - 0F2B0B916D8782225EE13A62C25879CC /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - 5D3BF2CDDB39F378D89B03F6898EE610 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 1C26A481AEEBE02CA2F194DE1A5FA16A /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */, + 0001AE26EC4A81717E558B9FD919F17C /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, + 76DFCC5EBCA8ACEB6E89B40911DD64C9 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */, + A7CC42EC39EBB722696F409780153F1D /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, + D61C8D3040BEB98811C70E469EC4D692 /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */, + 2D625A27A35ACDC02DC30C634687E372 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, + 5E447EF0EE755263ADD3D7ADC34A0853 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; + name = "Copy src/core/lib/event_engine/windows Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6C86EAC1E9422C3ED4F8C64D19991132 /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */ = { + 6E485ECC27F11A979C74C04228BF21FD /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 1D9FD8DD5DC6E99CA62AD687C1024738 /* filter_state.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 5C965DD55470B02B9A53532D5C8204BB /* filter_state.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 76525D94CB4A90DF259B498B02BED663 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - C4FE29BE343A56C7FD959B071A057F52 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - C7EF538D6F545A358BF4E5987AA7EA1F /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 663DEFBDDAF4411AFACA9453CCB07B84 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - E8F6FF7CBFDC4032F01CBFE85BEAE96B /* node.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - FA207C5729AAD7929B325488A8A49F06 /* node.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - BA2D3D752C4CE1986F54B35027AAB4A8 /* number.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 1C11F4B9672BB5710E533936FB0D1E50 /* number.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - F0090DBFFED7D8D46CCA2E693540CA3C /* path.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 0D024BE9171C320CAB9F95DD93D1E57E /* path.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 3DBE1F088BCB8776709ACE8F441B0870 /* regex.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - AE7756CBA8A6671E132B13463320C00C /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - FE4D22CE893CDDF4934F483713CC0EDC /* status_code_input.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 67C25EB219B6737E0E184AF4E837B024 /* status_code_input.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 90B84D01AF3421E05AD935C037CBE0E9 /* string.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 5584F566B0D196A6748EF10395E7C12D /* string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 3218710FBD61D049C6E38C9E6601B3C5 /* struct.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 222F01D222AB2563E788E9D1FE78E774 /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 544753ED73FBE406667D69905D31BB68 /* value.upb.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 9951CCA8DC9C256E0E7E560AE2312852 /* value.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 73A0C6D76B1BB21A30EFDAAF9CE38F87 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + 0766E49DE83FC84571196574DC185438 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + 03C0862A82306D475D3DDB14819E69DE /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + D5E949B5EF128A6895D4F9CEB3BE9818 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6DDCFEAA1196508DF16752B2B6071B07 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { + 6EAA1E1EAD858FC1DD1D970FEB259EA4 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3"; dstSubfolderSpec = 16; files = ( - B5B2B273E1857230BFA005036AFFBCAA /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 4DD9325C17CEF3807153448E8E3DE63C /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 6FD294FFC3BCB6FE5E8D6F2F75B9FA17 /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/core/v3"; - dstSubfolderSpec = 16; - files = ( - 47ABB248ECBC769EACAC17D78871A264 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - D8770C50FD43291DFF4C487A28A87418 /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - B68E77085E0353287D72D105A04B36BF /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - B2DAE401D8E55B21D1EB82243FCBB48A /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - F35D4FEB3DDC6A0FA953CAC89C2FC7C8 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 35088771E4BECAFCF9A4AA4F64A23B41 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - DE822CA0F214200474B1B66DE154706D /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 8AA9EF4F9DDF48DC2D83531A4FE14FC4 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 5BA00FFB681F44FD20E8AFAC91F3C7F2 /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - CED08F3872D4B07003CA535D38888424 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - DE45EC6E6C91F61811B2A4C98B357E21 /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - F10843D64498749A59DD4DDB65E713FE /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 994B229A2C375D4B9A3D98442028C033 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - BC1801AF696E8205F30620E790BF60FE /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - D233931DFE7BD7BDD0A49BD71DC29145 /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 5CF38CAFDC2F6AA6D53FCD604C01C4D2 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - F06CF912AE4B9FC5E94BA7C53CA08ED2 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - AEEF931ADD7C1281CFDF798E45CA29AF /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 40BD33535CE675FAC7FBD590630F80AC /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 195681D6C87A645EB32F7BDA7083BE69 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 05D840CDB4D734F1884D12FCE9811787 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 7E8CBC1EE965D0E5B1431ACE6E3E46FE /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 4D6BA473C245610A07DDBF994438BDA7 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - ABFD447CDE1C7F974278A90EA531A10F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 185BD88EB6F609CF33C4BD94489CD6D5 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 3BBAFFD3521C8AF061F88DC7F76396EC /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 68119FCE93C544A1F67AE23BFE027F09 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 578D42B652A74E170172A7ED41CA85BA /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 69E52A8F24B78C84312EE08041219FEF /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 1285E3ABFDA6AACBB41FABBC79751052 /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - B5E40F68218868CA6BC14CFFDDB60290 /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - E81BB7562594B8C88B7F67A4FB4798B8 /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - DF9DB5725BFB2B57217B7DE3BAEA6CA9 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 09A320A08D4993BE22B0213BB32B9895 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6FDD87F1E8E15097DA8B32853343E89C /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - AC1948158134AE42F39DC5B7E897E4E9 /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7093DEAE008348E5A8101A3E0037ABF8 /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - 13FB154BDFCBE6EC2731C71F0B35FA24 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, - AFDBF01472F61857953534110849AEAB /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 70C95F260A23A2E7EDC1E01648EEF203 /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - 53820E91C69BC9E941111F56D9FD36C1 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 712A6F2AA9E576519AC8AC296A373D9C /* Copy src/core/lib/experiments Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; - dstSubfolderSpec = 16; - files = ( - A0DE04FEA29E9B3AA76DE2F643FA4B04 /* config.h in Copy src/core/lib/experiments Private Headers */, - 31D90576354A2C691413B2E8FEB7DCDD /* experiments.h in Copy src/core/lib/experiments Private Headers */, - ); - name = "Copy src/core/lib/experiments Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 715163F0E0749A6E63999B44E681F1A0 /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - FCBBACFE017D02F718324309F846D820 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 80CC387190E08CCD036D4DED10BA3984 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 9A5774EB96DCE2D5BA12873B1D5C960A /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 9E8BD5BA3675DDEB0CC089D8F38DE6E0 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 7A46676B9C4454A35F413DFB5A740F31 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 64FC461CB5C4513C3FCC0C76F95007BC /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 83F2803AD9DF8B098216BFF6B82A3D0A /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - CDE84161AA71908F4FAB105531FF6A26 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 1E50284E5D463D5E6865A2A00323B45B /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 716A58EB868215979E4F2EBF91D8FEC7 /* Copy src/core/lib/resource_quota Private Headers */ = { + 6F40DAD5A3A8B0E1A8D98FFED76A5261 /* Copy src/core/lib/resource_quota Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; dstSubfolderSpec = 16; files = ( - F59613040F5361D40196B30A413FBA8D /* api.h in Copy src/core/lib/resource_quota Private Headers */, - 7A34837E304422C2537CDE4627581F1A /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - ED33AC4CFB92A252D89BEA65E5CB948F /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - E663424E298506D26CE8CA407251E664 /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, - D15BAEA0434D2873B5C41509C1F8B222 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 9FC901DF49BB6F150581C4AA9496F86D /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 3C1321318E5D55FF814FCF2BBE273BEE /* trace.h in Copy src/core/lib/resource_quota Private Headers */, + 2BD3C7EF70EBA0FFB40A8C9F059BE353 /* api.h in Copy src/core/lib/resource_quota Private Headers */, + AF89025409C244BC3640356F3C26C206 /* arena.h in Copy src/core/lib/resource_quota Private Headers */, + 7EA840EDE04E8C5710FA60163B5C56EB /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 4955A31B39A640A31EFCB0995E98485F /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, + 6706C34E30C2C4FF937386B3FDB8817C /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, + DC9D355B5FE6B08CCD7A3F7A8ED3C1CB /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 93B709098BE936830A447A75A817676D /* trace.h in Copy src/core/lib/resource_quota Private Headers */, ); name = "Copy src/core/lib/resource_quota Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 71771B088BDB53C9CF11252A6C675A51 /* Copy src/core/service_config Private Headers */ = { + 6F560E88B25EB812EB3C07E736693B37 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/service_config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - 1C3C96AB6ABD218836F0E07695309C86 /* service_config.h in Copy src/core/service_config Private Headers */, - C7A036F30C57FCDD18996EF78CCA59C1 /* service_config_call_data.h in Copy src/core/service_config Private Headers */, - 5C1E123389FA4F1E73F767C0F00E5219 /* service_config_impl.h in Copy src/core/service_config Private Headers */, - D823F796BE076BB2BBCDCC8B3C835E12 /* service_config_parser.h in Copy src/core/service_config Private Headers */, + A10544C55671C989537A5031C40FE230 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + C3C74B7AD8AE86B0DAEDE4F88FEBDF80 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy src/core/service_config Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 6F8BC8A6A87B7FFC6B4C7BA22A3F4E06 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3"; + dstSubfolderSpec = 16; + files = ( + E60E02DB454B80329E6A20950D44A4C6 /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + 3339BA0DEAAA53B973D64B13821CD0D1 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 70574ABC7563D31542756F14C8515F01 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; + dstSubfolderSpec = 16; + files = ( + 3232EE73F15EB96B9DA165A5569FB5CB /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 67236F44F6739F08DE67B857C3C40796 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 33D4912D881F45C371AD1D066A9C5E06 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 9C8214C696767ED77EAFBF3691D7A5F8 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + FDD0D7CCFC9EABC82CA607585A209D24 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 75F0F72988428A97E281FE6A3E6EF137 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + ); + name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 7190CB064445159E521D90A182240A4D /* Copy crypto/asn1 Private Headers */ = { @@ -13576,280 +13813,285 @@ name = "Copy crypto/asn1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 721608BFBA3213B90187851B0E7E68BB /* Copy src/core/lib/security/security_connector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; - dstSubfolderSpec = 16; - files = ( - 1B1CE12EBDCB99AD4E4602744DEEF509 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - 94BF1A22DF22A8229898A6C82E0BA8C7 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, - E28832752F9433E921CC39A9AD20EABB /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - 66109362CE0EFF45254D6013F9DAD6AF /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 72C9FD4AB1BF83BC36B014A59C4C0A80 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3"; - dstSubfolderSpec = 16; - files = ( - FBECF045223048616A2A36E41AA4E790 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 72D20E70FB363488C344E4757CA68062 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = { + 722D457F962EB178BA92FFCD6B5E9A99 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/udpa/annotations"; dstSubfolderSpec = 16; files = ( - BEE025F5BEE7D8BDBC4782251EE3291B /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - B6BB6EE0C3E8CF13F4F2F34D6749BAFD /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 0D9A0D05231ADA13C219482F16255489 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - C0E8055041A8953AA02E20468417E432 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 209BDC7EA55501D2F325CC1F13AA3E48 /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - C0938BCD303E8455911DA5F0F4A5E282 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 6130867C2DB21590F4D3D56439E026F0 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 28AD8583E9E6D4A8606CCE72157D3E59 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - A1D6648D5A00ACBF9ED98E12D9578937 /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 54D5D5A30EC2BB797911D445467F15F2 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 27E14DABF007142981CD1B56F89F3FAC /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 9B1C208D31A4941271DF441E62CC9D6C /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + BD03EFD99BCCB9CD77984330BD3265D1 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 7D5649B57603452FE80E7E9B23C53EB9 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 9D5DC6373A5C173547CAE5841EBA93BE /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 3588FBF528729ACB62F59324CD1C505D /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + B12E5AD9E6AE78F89971CBD729931120 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 540E91AF8D3AAD13C2A49F29434D21E0 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 066735D3B39A4006C500B0D0C29E515E /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 7EA2E05A5CC31A8CCBDF30615067A73D /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, ); name = "Copy src/core/ext/upb-gen/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 72DD85D4D405B12424FDA82748869B47 /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = { + 728392CDD9EBED72032AEE2313EF2F5D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3"; dstSubfolderSpec = 16; files = ( - C0168BE8188F9C726CC808B84084AA05 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - F76C5B903C1EED5A63CCE4C721072AAA /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 653FBB746F1293BBCF3166C77CF6282E /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 7C1A02CFEECEF2DAFD2E0DD7A90DD76B /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - B64536AEAD654CE714009D4D53F9F6A1 /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - B301D356FC28482B0E15182CAE2F7EBD /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 64FAD6660B018409E23DC1981FF8007F /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - ACD418FB91AE40106C825A6C870C6E63 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - A494A3FBCAD9AD9095E70559E2D2EFC6 /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - CC88D89CC5D43504657B13383081B9CC /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 8E987ECD9BDD078AD326801E26D5A265 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 3A93BA082A36E5381EB506E26DD7514E /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + 3825E9D148E3BE83C9F91CC36302E629 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 741CE4956ADFB0576EBFBBF6E94C16C8 /* Copy src/core/tsi/alts/crypt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; - dstSubfolderSpec = 16; - files = ( - B575D5B4B0FE9CC2C0C358BB39270B2C /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, - ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7426086E581975ACA6E5BCE8E3B53148 /* Copy src/core/lib/channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; - dstSubfolderSpec = 16; - files = ( - CB772744BCDB2E4167E45AAC3A3D6D75 /* call_finalization.h in Copy src/core/lib/channel Private Headers */, - BB2BE4BB435D7B6D55F9E6CDC3D90D5E /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - 2AF7294CFF8027A724400ACCBA5B00FB /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 199A572C5AAC9B04652B19B19CC36918 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - FD58DD384C20BA5CAB90A5CC04859E4F /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, - 469791353F8A6C3B307E5656C962A569 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - CA731AE59263B6BE6BF22F59CA1DFE73 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - E1FCCDE52B1261A4D678A24FD306E927 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, - 25F00FC6DDEFF92F8685071E18B5ED7E /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */, - 8F03A92A626C9376AF667C9EA3CB74B4 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - A37FE239B3910FC3E3FABB6F2581CDBB /* channelz.h in Copy src/core/lib/channel Private Headers */, - 25BB19D352A75174D9A862FCD0779A2B /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - C619A399D8BD4BFB058A4FE4DB5EA278 /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - 42C0F7D67F5232D18714B1557B37F0AD /* context.h in Copy src/core/lib/channel Private Headers */, - A9830554B2DE48D18DB9D88C85984A29 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, - 04934567D445C8E8B5D07BAF99C9C783 /* status_util.h in Copy src/core/lib/channel Private Headers */, - A66A22AD109D3C68B1C0C97FEC612AF4 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */, - ); - name = "Copy src/core/lib/channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7451898AA4E38DB7EF296C7FAA65352B /* Copy third_party/upb/upb/mini_descriptor Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor"; - dstSubfolderSpec = 16; - files = ( - 9152B3B323B355A7C65BADF4DC9161B2 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - CD08D4279F96E883F27D8E0EC333B5B1 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - B408DA77C39258EA240073BAF087B1D2 /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - ); - name = "Copy third_party/upb/upb/mini_descriptor Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 749B69C8EC164C0D0F88D7605E382AE7 /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - 722D45D1CC90E91E6A81D2EC9BD85CA5 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 74D70649FF7A9C0D7F1598188CDE4EF0 /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = { + 7340BB9DA06CF7A41ECC26575278651C /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 36882849E3841443F96FA932810829AC /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 7603EB1BDCA90DDDF5F7D35A8DD1BE6C /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 17FE23F143A7CC60F6B1ACCD00F4EE50 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - AB51523C238889E47105074C471CC36B /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 9966013D7CA5563ED0A0EBB8EFB5A41D /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 3AF8596E43D07433094BEDD5168888E7 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 085732F0F90A2452F9D9BC6ADC9FBDA4 /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + A6185DDAAFF97667277F02183FEBDC97 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + DA76273F008ED75A6AFC79BFA486914D /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + D305488B9018034DEC86E338A614549B /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 74FCB40C4ED74C34D58EC0E9C895356E /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 4133887C9A17C242433E5B33B02C12FE /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, ); name = "Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7719420D68C7A6D58513C86EFD6178A3 /* Copy src/cpp/thread_manager Private Headers */ = { + 7367B3450865769FA684C8D614ECCA15 /* Copy support Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/thread_manager"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; dstSubfolderSpec = 16; files = ( - 06C122883810A382C86849C7C04FD393 /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */, + 3800175154CEA3CABE93DD272536F0C0 /* alloc.h in Copy support Public Headers */, + 567D0B430A76DB657AAE097E89836DD4 /* atm.h in Copy support Public Headers */, + 394F092C789A4583F533155C0FF1D610 /* atm_gcc_atomic.h in Copy support Public Headers */, + 488F62A87F1DC1FAC8BCF2BA20D00C89 /* atm_gcc_sync.h in Copy support Public Headers */, + 7D8003E1E263F2399EA2DE7CDB4D58FE /* atm_windows.h in Copy support Public Headers */, + FB1444B4476C80C7930CD61EFB77B8C8 /* cpu.h in Copy support Public Headers */, + 0E49821CC15F59D45357A63CD7E5D92C /* json.h in Copy support Public Headers */, + 60325FEA6BBEC46782691E061339B68B /* log.h in Copy support Public Headers */, + 72F259E6C7C4A0125259D1BCF33D676A /* log_windows.h in Copy support Public Headers */, + AA6736DF69C2CF0EC9B69B9806E2D85C /* port_platform.h in Copy support Public Headers */, + 084F0CB235BC57930897B78B28E77F4D /* string_util.h in Copy support Public Headers */, + 7F1B17C0A52CD5A12EF12A99D730DE0C /* sync.h in Copy support Public Headers */, + 89E29118E4EE49F6B43709FA4318F0D9 /* sync_abseil.h in Copy support Public Headers */, + 6C92F32D2DCDDED95F4B71B6AD01B147 /* sync_custom.h in Copy support Public Headers */, + 29B512F35757C6BFA9C66B0CC96D322C /* sync_generic.h in Copy support Public Headers */, + B8C6C5480C14073F63DD5FC99E3DD5EC /* sync_posix.h in Copy support Public Headers */, + B0B715AA97B407236A0FF9860B1CDE53 /* sync_windows.h in Copy support Public Headers */, + EEBA106D0F49F5B11C9A9DD0016B9EDA /* thd_id.h in Copy support Public Headers */, + CF91574E5D5CA6152A49EC53FDAB9C39 /* time.h in Copy support Public Headers */, + ED7D575E5F9F5CC2DC8411C00A524D0F /* workaround_list.h in Copy support Public Headers */, ); - name = "Copy src/cpp/thread_manager Private Headers"; + name = "Copy support Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 777939ED1EE7AD792B138536313EF3B7 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + 73907A1C606F19013C18F33D49DC91E6 /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; dstSubfolderSpec = 16; files = ( - 2FDF5AA59D554B5B241B968002E798A2 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + F8346A191B3A92EC2BE04BD61C009D96 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/google_default Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7897BE8C813EB6D57A4A41F8C75CBE12 /* Copy impl Public Headers */ = { + 745CB49CA204D30B1CCC131EED73ECAE /* Copy src/core/load_balancing/pick_first Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/pick_first"; dstSubfolderSpec = 16; files = ( - AD248D9CC36E4DF7F02E29B471D009D3 /* call.h in Copy impl Public Headers */, - 1CDF51A6E4BA28D2F3E81E7929E5AEEC /* channel_arg_names.h in Copy impl Public Headers */, - E641CCB5D58ED98569D0D3171D236263 /* compression_types.h in Copy impl Public Headers */, - 3C07A9D2261B0BEA9CC08DA9AC55F204 /* connectivity_state.h in Copy impl Public Headers */, - 4F8A86AB71634AF12F99D50FC109ECBF /* grpc_types.h in Copy impl Public Headers */, - F533F080BAD7FE84CA78517511F7AFED /* propagation_bits.h in Copy impl Public Headers */, - 5628B01954D311AFB19F66292C884367 /* slice_type.h in Copy impl Public Headers */, + 03AC71F61112FD532638A306C8E8B24B /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */, ); - name = "Copy impl Public Headers"; + name = "Copy src/core/load_balancing/pick_first Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7A35C0F0F96CB54AC3A7024963910B91 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { + 74B6F256E060E1478E7D70E03DE7EFA3 /* Copy src/core/load_balancing/grpclb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/grpclb"; dstSubfolderSpec = 16; files = ( - A1C479F5C4744774B74A9E28E761C462 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - 899EAF096481D98460F3A4AEDCB7E64D /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + 9F8988335C90BED7ED8A8FDDD3757905 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */, + C76D853743A658055E3DA5DA112B9CAE /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */, + 9AC8EDDF8F863820597B6EB2AB34B4D9 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */, + B55C8DEBF09FC07593EF1455D4818AF7 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */, + A0A69861B1E3BDA7EA6593C406E78252 /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */, ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; + name = "Copy src/core/load_balancing/grpclb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7A8C234787987EE8BD9FAAC6BB84543C /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { + 74F18B4602BB13C6A33C1A5721BCC3B3 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 89E43DAEBEB251D78A7A531E0B85B893 /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, + 849519C500686207F0D459D64CDB991C /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + D1D1CF543CD11952B5FBAE60EA5D4F64 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7AC71A70D30018E9A6B70A7871C28794 /* Copy src/core/lib/security/credentials Private Headers */ = { + 752B22DCD5F2DD1F5B146CEF8B9FE33A /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3"; dstSubfolderSpec = 16; files = ( - 5586FA3DAD335663DDB54271FE7C1C90 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, - 137EE16B9DE9A60DB6930B96F73E9758 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, - ECE7A5CADE5DBAD2715098DF3BF44D44 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, + ADE6DEFDCAB64BF7C1B04C2AADBB813A /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7AD8071B958E68EA06211AF02A590467 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { + 756A0527283E4584D76895D40A3C0F05 /* Copy src/core/resolver/dns Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns"; dstSubfolderSpec = 16; files = ( - 9F52ACFA043050A7D0361DBA5C2D5CFF /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, - 42AB6E891A3164DE0F7D269C9B697941 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, + F6963D487B67ACBCB3A1845D8AEED4A7 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */, ); - name = "Copy src/core/lib/security/certificate_provider Private Headers"; + name = "Copy src/core/resolver/dns Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7AFA5B2D9B0B79BCB5E5698C8662799C /* Copy src/core/lib/promise Private Headers */ = { + 75BA3510BACDC3541535A02F6BDCFB94 /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - AA5E8096E67CC283F68FE23779E1986E /* activity.h in Copy src/core/lib/promise Private Headers */, - 2050308851EF2853ADEBFD53C9D9C1EB /* all_ok.h in Copy src/core/lib/promise Private Headers */, - D119C339C18FF3C23C14FF1D55520E34 /* arena_promise.h in Copy src/core/lib/promise Private Headers */, - CA4A8A65BD2F3CB0D97D354C0327CF1E /* cancel_callback.h in Copy src/core/lib/promise Private Headers */, - 6AE41D3D94648DAF7A7F9D03B8077D8A /* context.h in Copy src/core/lib/promise Private Headers */, - E9AA715862CC392F93EE5168B4D342F2 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - F1C6DFC194C9D345302CEFD2CF4EC464 /* for_each.h in Copy src/core/lib/promise Private Headers */, - BCCAECBE325B1253D2C7EFAC4F5DC1EA /* if.h in Copy src/core/lib/promise Private Headers */, - E88CB3C955CAA0FB12A38EC57BB8B3C6 /* interceptor_list.h in Copy src/core/lib/promise Private Headers */, - D59067ECDE5F0E18F3102EBF9F9711DF /* latch.h in Copy src/core/lib/promise Private Headers */, - 8BDCBDDBA672EF307AAF26EA48B60C2B /* loop.h in Copy src/core/lib/promise Private Headers */, - FD51977DE6EDFF7DF7A39A5EE6AD336F /* map.h in Copy src/core/lib/promise Private Headers */, - 305CC887EEF90FDFFF09D1EFE7C738E3 /* party.h in Copy src/core/lib/promise Private Headers */, - 5E0676D52C1661AD113A4CBA5FB27033 /* pipe.h in Copy src/core/lib/promise Private Headers */, - 7FADC53EB0CF5A377D1F738CFEC4D5F9 /* poll.h in Copy src/core/lib/promise Private Headers */, - 0A69E1AD41B77EAF2CC6A781C00AF945 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */, - 835A86598A317718BB98887D451194AE /* promise.h in Copy src/core/lib/promise Private Headers */, - 9ABC249A2B3C79812C53E0F3B79B02A6 /* race.h in Copy src/core/lib/promise Private Headers */, - 7966D5FD3FE13002BDEE2C85F96FC7FA /* seq.h in Copy src/core/lib/promise Private Headers */, - 65E549956782C6E869A20FA7349973F7 /* sleep.h in Copy src/core/lib/promise Private Headers */, - A16D7988A5F4EC2B0409E3EB25357354 /* status_flag.h in Copy src/core/lib/promise Private Headers */, - 548F8C93828EF7383998AEA9A6B33C1B /* trace.h in Copy src/core/lib/promise Private Headers */, - E2EA04D8846529E8E781B3DD0EDD0A4E /* try_join.h in Copy src/core/lib/promise Private Headers */, - 7B8F8A6D02C456F9367DB1169A9EEB2D /* try_seq.h in Copy src/core/lib/promise Private Headers */, + 1F7405790E29CC2AB8B503809570549C /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + D1B57A58FEE5FDDBD499F1B34F54D331 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, ); - name = "Copy src/core/lib/promise Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7B30C79D6091EBC110B75D569D521A2E /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = { + 77E85E1BA0B68487BD4F4200B8CC59AC /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; dstSubfolderSpec = 16; files = ( - 566A7350D771949E703BAC49AFCEF113 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, + 3FE1C5A59B6B8B117FC030A5448929E0 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + B640A10D5C8BCC965EAE429634F8B888 /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 06BAC55CE53319FDD9619FB4316355AB /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 8EFF74E7B87CB3C345AC3B42B0E8FD4F /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 40C5F32C33081C52CFDA9E06493234B4 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + E9623875633245D2D0D6EFA20A9A003F /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 425AE9958466D37DF8909D97666C2704 /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + C6B691669E84F43D4DEAEFAE02D6BD48 /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 0CE09CA62741FBD0BC21888876FB42B6 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + A1C56F61341003D1437C97B6E91A7E7B /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + C5D0D69EC75F10336F605F04EA5D6773 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 8B4C101F33A568B4C2298D155C0836D2 /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 21473E5AE75F0759005447F83DD35C55 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 78F4AE5793468CFF6756AD18527134A5 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 6AA8B9020761649F3CC449CB8BCB7A52 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 6C2B450AD56AD3C18C4B4EB08BB35806 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 51995EF7C37047EED8C74E2BF44F32F5 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + BB425C4AE3F5A0B1A170F92364B48ABA /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + FDFCC9B7C867E4B1AF48D6C160A2E7E2 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 6E76D6C3269221BB5872D3551090A583 /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + F92F18E67F41FEE4D2D9FCA4FE1C4E5F /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 10C130BDCC604C4E9F251C50069EB360 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers"; + name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 7915E1D9C5DE608D7726B1E39E8A2CA7 /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; + dstSubfolderSpec = 16; + files = ( + EA56B90BC1CE25C46087D43186BE43F4 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 83F6C9D3A86859BFDA0E563D00B611C4 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + D4988D050CDB8D9CF04FCA6CCB7844A9 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/jwt Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 793A61AAE4F1400887FF01005D9D372F /* Copy debugging Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging"; + dstSubfolderSpec = 16; + files = ( + A8A34D6D69075F2AFC0B6B4C895189D3 /* stacktrace.h in Copy debugging Public Headers */, + D7E24795E1BAEFD80CDD8566B3136020 /* symbolize.h in Copy debugging Public Headers */, + 45B51FC21451059B0AE4338778E54011 /* symbolize_darwin.inc in Copy debugging Public Headers */, + 4EA434615E52DB2063D436F82219A1CA /* symbolize_elf.inc in Copy debugging Public Headers */, + 9A0BA1137B57A0B1CCDA6876FEF3B2F0 /* symbolize_emscripten.inc in Copy debugging Public Headers */, + 6750DA8F578B36432F369435A779339D /* symbolize_unimplemented.inc in Copy debugging Public Headers */, + 95633D366280C3DCD3D862F70A5F6996 /* symbolize_win32.inc in Copy debugging Public Headers */, + ); + name = "Copy debugging Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 79596EE0873A7C8E2CB725BA4789A947 /* Copy src/core/lib/security/security_connector Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; + dstSubfolderSpec = 16; + files = ( + 2BAD1FE6990D68C19AAB3BF7A177BA4F /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, + 14DA15A4FD5BB4DE5C7E177944F140EF /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, + A81D9032831625AABAA7FAB8320F9FD8 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, + B2D649089B5D2DC011975B3A90644106 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 79666B74C433559C413FD3DD34D48001 /* Copy src/core/ext/filters/message_size Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; + dstSubfolderSpec = 16; + files = ( + E3A4BAECBF3A76113D57208BB43E3CAA /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, + ); + name = "Copy src/core/ext/filters/message_size Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 79F62CEE7DF57373E1760F2AD99748DF /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/opencensus/proto/trace/v1"; + dstSubfolderSpec = 16; + files = ( + F97C073D1A6CAC7439516FAAB67E209C /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + C1BA89DAED2C3639F30893B0F84ADF08 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 7B96942D70275AB42D18F7DDDCC580A7 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/trace/v3"; + dstSubfolderSpec = 16; + files = ( + 21DC00FD4557272D2035ED827AB08826 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 389271EA4E9D8410AE5C1AF30126C64B /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + AA06B0B01EEEB7C7D14C19B5A3DAEC98 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 3FC8249386E0FBEAB5F6B3975433FED2 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + CE0556DEDCF04C1C07E9DF16E0B598FA /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 964BB5260A37142ED8DF17E26FDE7124 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + A9D3F186DB19BB84B5ACABF5CE3221D1 /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 11CB1CEEB11098CB7735C9B3B52C8DAF /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + C913C64BD36C4EE652AC77E4B0ABB872 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 763426EC87A35BFE56D2B727498D0412 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 3EFE9E066D2086BB46528F7C97D4FAE0 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 7BD57F8A5B5BF512D8D425E26C411E1E /* Copy crypto/spx Private Headers */ = { @@ -13870,524 +14112,483 @@ name = "Copy crypto/spx Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7C3E8DA0B53410DF02E4FAFD4963E77B /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = { + 7C56E0E651DAABB13F8FEAFAC4652A1E /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - 8E9BF76A20603B4AAF82B5B8F0C02EA4 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 2EF4128469E285D79FD9BB949C56B987 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 8C29A6A3ED57110F55DF2892B6B7FC0D /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - 8C7051D72FE1101085F06B9C6D97F37F /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 96DF2670D9BEFF721E50447657E4F5EF /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, + 096ECD74DBFCDC36C3303A6B5DB3AD35 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D2BD819C8C5480AFB35B104A209989F /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = { + 7D8F30C54FDCD3C78EF7342BA57B549D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3"; dstSubfolderSpec = 16; files = ( - 5FCFA79FD592DDFE5B869598A835BBDB /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, - 58361A0D878694BA50467CE1C00C13DE /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + 8EDF53064034E1F10FD67FC29363121D /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 20674E64855C6F7816E9B3B1ABD022E3 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D3D17AD6FC1004A49931CD4EA668F0B /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = { + 7DFE6DCBDE5BF39BD5F8DE224699C3A5 /* Copy src/core/ext/filters/channel_idle Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; dstSubfolderSpec = 16; files = ( - D5ADB48297C93137F94B82E23A4EE80D /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 0918257DDFBD1C678637FAF101D45C6C /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - E1AA47DF616A1B4B7FBDC8DE2E63BA76 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 72B0789FA56179090BE8E6A36C7AB72C /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 0A79041D85FEDB08E6F49945B153CBF6 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - F6DBA259FD24143FCE4476E821B9801D /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 419EC3DA4FB67E8F352FBD09AFB6B0B7 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 87C918BF310FDF42DF8855C427EDD5E8 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - B27572EDE2B344386A0A205FDAB6F669 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 4F09C19531F992B9E88CAE2A670CE8C7 /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 0E82F3DAF106550C975A246B2D8B2322 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - ACC525FB46C9188955C36BC2F14E0535 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - CE5087C5C81335CA8F2FA238E09656F7 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 27047B109B708B340930C1710CA86698 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - B306787B4E4BA209B6C1046A81B4292D /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 853CE6CD9B721653C7C3976C13CF9B3E /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 97144F4C61891A583DB9D335C35DABBE /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + C8A0B3961330454FF1801D3C1939B8EA /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, + E09B454C1D1CFD8AFB89728BE95BD0C6 /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, + FDC5226694CF7255DD8448B61F181526 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers"; + name = "Copy src/core/ext/filters/channel_idle Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7D559ED7BE615734E5F03329CC1B9B8A /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = { + 7E15ED629990033CB283429DAEE00FE8 /* Copy src/core/resolver Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/data/orca/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver"; dstSubfolderSpec = 16; files = ( - 87941A20F550A5CA44BC1A3C706D1723 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, - C86532220A9C383CE56B14597F7E55C9 /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + 671CD9788E306123CD4B17C8083D07A7 /* endpoint_addresses.h in Copy src/core/resolver Private Headers */, + 956F8EFA1FB783B30E0E175F798BAB14 /* polling_resolver.h in Copy src/core/resolver Private Headers */, + 228CAD70E74331CFFCEB76A7E9382F29 /* resolver.h in Copy src/core/resolver Private Headers */, + 172CA387E4021070701FB9C4065ED3CE /* resolver_factory.h in Copy src/core/resolver Private Headers */, + 0B683EE38B060C5D4310B50A55B7937E /* resolver_registry.h in Copy src/core/resolver Private Headers */, + B350FDED461CEAD8A217FF6DB7B69E31 /* server_address.h in Copy src/core/resolver Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers"; + name = "Copy src/core/resolver Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7DAF48AE23A8D93B075584A6879ACF9A /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { + 7EB21AC7A53978D5ABA6F62E0400197A /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3"; dstSubfolderSpec = 16; files = ( - 7F23D193E9D8CB1DA2796CD7DBE55B57 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, + 19248C68A3AD211333DDFA6C8AFA4CB7 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + CBA91B7D59A845A69117B70942687E7C /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + B7A3B1F33EDEC8AB2CAD952FE320B8C3 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 8BF7C67AA56F0398DD7EF42E2A9B001C /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + E53171EC5838993D74E1823ECD8883CC /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + BD1D5795945BF7AF969BAC867E08EFEC /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + EB15E331322CF572F0D9B71B93C54933 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + D744E63AE3C0D99FE8297985625F25A1 /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + CF612FBCA248CF214836D2B338DD9B78 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 64775E7CB89E46D30CB3FC01DF3A810C /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7DF03B20153CD726B0415E632FBBEBC0 /* Copy third_party/upb/upb/reflection/internal Private Headers */ = { + 7EC27CD2067A825A4DDCAC9B0F5B4E1A /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - DA027652D288E2C5CFEA207FABFB84F3 /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 68FF1206450851ECD363C4F6333C46BA /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 00B95B795C2CC3658AE306C2AD3699D8 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - C6294BA5F10D2E53242A2D7387ABFC10 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - B8E35B60BFC8319231C615546E88C3A7 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - F22CA5560C187F3A8A3975EE96C3B985 /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 66F4ED779DA79B78EB0090170DC2150C /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 73BBBC22D51195975A492436B26C1549 /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 2EAADB6AB4F5A96E71EF2EEADCF056F9 /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - E368ED3945379CDB67FF06EF8569D632 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - CE0129E33913E59B4A475A56769A872B /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 470A43BF4555E9BAC40C9BD7538017D5 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - F728E8269347101F51655DE967473D94 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 2D7ED368BE235D2A7D7325F8395965C4 /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, - 622B3235609D7844951D52D3D3CF6B72 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + ABD82566A0C9D6CDF3250866CD658614 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 9A37E98EFA3E95A9ECDEF0EE4944312D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + D4E94B44CA86DFD05A3771F670CB1B28 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 30CD62BD928C5A0AC68060D3F1C6526E /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 2771E14C9E5819BBFE7D8449ECB80EE3 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 917491AE9896E72309F0FC728DD300E7 /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 8377445D94486CE9393ED0ADC9EE7FC1 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + BA121ADAFA123413C86FB9A90D22AFBB /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + B6ADBADC78CA3A6292D4F2B446975D81 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/reflection/internal Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7E888ABD542E967E6E5BAB0CD89357BE /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { + 7ED3A4B2360ABF28AFA58A0A0E6B2E1D /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/common/matcher/v3"; dstSubfolderSpec = 16; files = ( - 8800F4CE70A744882802665A223007F8 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - 866374F06A319FC2D6C8A6B3980BB3C9 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + 1B772DF7B389F739A1B93FC8DE18627F /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, + 9B131586AF1E3A3DDC9C16879C2538BE /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7EC4DC8E450677FF0130FF9F403E71A8 /* Copy src/core/lib/security/credentials/alts Private Headers */ = { + 7F0846F47851EA62B28F964472B404A8 /* Copy third_party/upb/upb/mem/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mem/internal"; dstSubfolderSpec = 16; files = ( - 2FD259A3299B6A3E89A7ADA489DD406C /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 2C0169A579EA73BD5BB919852F3AF0F8 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 6DAFAC1236603C9BF1901F0759F803D6 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, + 29BB27FB357049FD7EE65CCD28E7396F /* arena.h in Copy third_party/upb/upb/mem/internal Private Headers */, ); - name = "Copy src/core/lib/security/credentials/alts Private Headers"; + name = "Copy third_party/upb/upb/mem/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7F2449CAE104A525DA878411BF875800 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { + 7F2188D3A0B6AA2EDF48C66F969978E3 /* Copy src/core/client_channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/client_channel"; dstSubfolderSpec = 16; files = ( - 7609F9AEC1C9B6CA99FD839ACC0DDC74 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, + AEF655A9ACFFBB9FD38AF3DB6443D5DF /* backend_metric.h in Copy src/core/client_channel Private Headers */, + 10D0F4C5065DC688C0FDC0993B801A0D /* backup_poller.h in Copy src/core/client_channel Private Headers */, + 7CB68EEB0004F51BF7F86E55217CE78A /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */, + DE2FDB54D6F52F58E15AEB7134E1672E /* client_channel_factory.h in Copy src/core/client_channel Private Headers */, + 52C40C950AABDDE145EF4B223AD07A80 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */, + 9A0091E798DC32180EF2A83187BC3A98 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */, + 16A2823C637F7D2E2FBB7B0DCB943AEE /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */, + 97A5015E515FE76281C7C96B71EEFA77 /* config_selector.h in Copy src/core/client_channel Private Headers */, + B4FB4061026D43C7C90AD695A3B1307B /* connector.h in Copy src/core/client_channel Private Headers */, + DC9E6B283E27CC018F8539D0AF01A237 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */, + C4D6081E2EFEC93F690EB08390CAAC00 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */, + BA533D9EB5E41D5FBDD3914127E2C7A1 /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */, + 9951BB0F09A59991F1532456A562C874 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */, + 98B30E99AFA4D5573C4236F4CEA3AA19 /* retry_filter.h in Copy src/core/client_channel Private Headers */, + A7172601B4EC2458ED66854119D55F35 /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */, + E63A6B9EE5F5C33CD469138428484D63 /* retry_service_config.h in Copy src/core/client_channel Private Headers */, + F7366252BEEBCCB2559453695B688D5E /* retry_throttle.h in Copy src/core/client_channel Private Headers */, + C407ADAA941DF9A82BBEAF58564A8B1A /* subchannel.h in Copy src/core/client_channel Private Headers */, + B877F21DA272685EFC52E2B294C50D8B /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */, + 228DC7B1838E70A19378B4BF53D6A35E /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */, + F3CF3A42987C13CDFE71BA622F5D5E0C /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */, ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; + name = "Copy src/core/client_channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7F61E886418F10066B27D8892831D59E /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + 7FF391E32EF81ADE6795EA273C03FE35 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lookup/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1"; dstSubfolderSpec = 16; files = ( - B899FFEDB2D88698ECCC03561E1E153B /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 48B6914BB894190D44473D456A2E50FF /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 2F101F175A1BF418D73913234770434C /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 7A2F0AA868049B916D640B9BEF93A5D9 /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + BABB873EF1FE7F5992F61480D738BCC2 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 7F918B956AA9AE180475F1A274D3A508 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + 806192B8677026E588072E8A2819B021 /* Copy src/core/load_balancing/weighted_round_robin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/weighted_round_robin"; dstSubfolderSpec = 16; files = ( - C0F8314567125AACD921ADD78882478F /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 5ADFDDAE8FFD3CBD0C725494234C9FB1 /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy src/core/load_balancing/weighted_round_robin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8109926E39A9BC02F26556525DFD1170 /* Copy src/core/lib/handshaker Private Headers */ = { + 8147708B2737EEBB39E2D43C54216038 /* Copy src/core/ext/filters/rbac Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; dstSubfolderSpec = 16; files = ( - C523F520FF100C30D326A144A06E9AEC /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, - 05F9581C918D9C8D2DA9EED974D033EF /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, + E39C5D8BD6F87ED0EAC9C2E69B9967C0 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, + 05EA39090BE60922FA0289F87A7DC786 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, ); - name = "Copy src/core/lib/handshaker Private Headers"; + name = "Copy src/core/ext/filters/rbac Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8151AA4CF572948E7A7206376CBC3B97 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { + 827F08211CD2DBA7AA6C3A69AF4A9F8D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 2A83A639448918FDA5C2BD42B34612A4 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - EE0ADFC1031B8D3591913EF80FEB8ED8 /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 371F92DDD433FA34DE476F6B6CAE7EF3 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - E08DCB9D05DAFC5DFA22ABE528840E47 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 308E7291B0A4C23E60EB326CDFAE9328 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 02834E446242B160A50FD92B7E475BBD /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + FA756AF150F537D8381EAE57424F49D2 /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 81DFD6502C1AA5F816826277C188DD86 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { + 83F3B268A024983D82651EE9BFBA7682 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/overload/v3"; dstSubfolderSpec = 16; files = ( - 1BD2F303060A6547826B1B0205C3232D /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - 74615ACC4579894851A027D9A80B0D38 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + 459C9DAB85F8EBB90A4E42673F29E627 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 82664D11575708BB29E2C405A0E949EA /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = { + 843688FB1C26E46954A5FFCA1FCB3C3B /* Copy types Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/admin/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types"; dstSubfolderSpec = 16; files = ( - 0441F693F176CA99B0F355B15BD74095 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 652761F9FADA1307BCFE30282BF72A99 /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 677461B17268FABAA53B9A7AE6A63EFA /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 836858A648872749D2C3ECC9B3A17854 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 742C7E1F1931C956A6286A57BE57F853 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 14B2437CE1212AD85107C8FAC320D7CB /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 2AD8DEB4F64B3A94D888D9EAB4C673C9 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 7422ABDE2FCE30386E2BB93A1E37DA43 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - CAD58B5BD34241F46112FCE41A99B3A9 /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 912FE5B3A84CC0881F511A82D323867F /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 4123DA5F934CDEEE4DD1CCDEFCCCE248 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - ECB7CC656B6E90C786C999E8F24D0764 /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 0234AD5D2AD669571BB9115B1D47DBFE /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - FADCD4996E52454B19F08ECBC3B6099A /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 6F5C67D4C57ACDE5D808354A7953DC71 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 9CB3084976FA484B812C2C86AF9E71C2 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - C6F0159561964CD3863EDF4D49639943 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - DF052C10FFE4DE4BE36BFCEE4E82AC47 /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 8A7282EF4F912006155EA25A21C1ECBB /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 87921303C312E2BFA74BADA13E8F6B22 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 1AE3E46B590ACD292F4374CC313FF7F2 /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 2F7609E448FCD728EAA68C01FA2A4874 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + EF9E1F647ED54FBA828B6F473911183F /* any.h in Copy types Public Headers */, + 4972352C36D3791042DCDF5F6B4C44B5 /* bad_any_cast.h in Copy types Public Headers */, + A1294579C062FB3F6AE60D918E8490B4 /* bad_optional_access.h in Copy types Public Headers */, + D066A4F15BC13814C48DA153DE31C79D /* bad_variant_access.h in Copy types Public Headers */, + B34F78B841454393D94C3EA365995DC7 /* compare.h in Copy types Public Headers */, + 73885E638C779A880A1FC6AF3E83AD28 /* optional.h in Copy types Public Headers */, + 7077BB2D8DE1810F9085ADEA7C69DEDF /* span.h in Copy types Public Headers */, + B755E532F70FC0A34B75F1D0AA1DAF66 /* variant.h in Copy types Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers"; + name = "Copy types Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 82C66779C4ED5CDC4E96D652F4BCFAD8 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = { + 8439D5DBB7B5BDFA60757CE8DDDBA2B2 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/discovery/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api"; dstSubfolderSpec = 16; files = ( - F87BD53DCEB5F6B2E91259CFEA5F5048 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, - 97C0E2DA7E91D3428A74A610D844B530 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + FA1373A404A61EDB6F746CD2D6184F4C /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + DBB30957C4B93A9FD147F9CB0C828B5D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + 74084BDE326554E0645D103B77EFE3DC /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 842BE91752FBD41FE1B25555C5E8A5B6 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = { + 84839B0632069E86827F29AE64B16E6D /* Copy third_party/upb/upb/json Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/json"; dstSubfolderSpec = 16; files = ( - 43D0AA928AFAE764BFB7C40EE9208D28 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - D5FEB385403F9636F0385F6DD668CCA2 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - E9B9AD5667EC6CF32C85372F1DD1FCD6 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - A4AE8E316D6CF1D270D679EF96F7E3A5 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 846A9FD3210B3551A9C8ABE354580DF9 /* decode.h in Copy third_party/upb/upb/json Private Headers */, + B2FE22B87B21BB0BC3351707ADF5D668 /* encode.h in Copy third_party/upb/upb/json Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers"; + name = "Copy third_party/upb/upb/json Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8484A79A53914B572EB5BCE282CD8AC8 /* Copy src/core/lib/event_engine/cf_engine Private Headers */ = { + 855B50143BD8E439CB3037EE4364520C /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/cf_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - 803D5FB1C27CD5F3889453CE31167ED2 /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - F70D2177BE0EB78794C579BDA946C2FC /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - 281D7BE0FA191CC4A85F706BB213063E /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, - 64C8E9F1B440FE59ECBBBEDD3075ABE5 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + E675EED7DE490A3C2D179BCD22DBE60A /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/lib/event_engine/cf_engine Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 849B3A2DC88CC387A1A9834420E1945C /* Copy third_party/upb/upb/port Private Headers */ = { + 85832F1D87DB4C75C1A97D8431C445DB /* Copy src/core/lib/security/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/port"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; dstSubfolderSpec = 16; files = ( - 91DE4131D99A70CE188D7BEF19F73A41 /* atomic.h in Copy third_party/upb/upb/port Private Headers */, - F5940249316104BE150223F85B89623F /* def.inc in Copy third_party/upb/upb/port Private Headers */, - F5FE0477F3C93208E3FA44D3F6F01CD1 /* undef.inc in Copy third_party/upb/upb/port Private Headers */, - B8B70A79BCBA5073B6DB297CEAF18A46 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */, + CD5E5135F61539F6792C59387A270F57 /* json_util.h in Copy src/core/lib/security/util Private Headers */, ); - name = "Copy third_party/upb/upb/port Private Headers"; + name = "Copy src/core/lib/security/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 84D9F779768F210B1113368CFFF2FA43 /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */ = { + 85F790DB540AE26ADA8C3A14C168E8A8 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/annotations/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/rpc"; dstSubfolderSpec = 16; files = ( - 38654BDF6E99B77F4B627AE31CACD002 /* migrate.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 703AC36A5F5651CFC0456DD2420B2EA3 /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 20C47191EEA08796BB6A33FE9B106D89 /* security.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 758E462E070F001CF693B41CA1D08D34 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 6A4C6415D0FD3C54EAEB08767D788827 /* sensitive.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 79221238A9069839DE7DAEE42F23A993 /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - EAC9E226BA041F6E035CBEC7B831DA29 /* status.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 01812E26AD681C347D6399FDF833AE94 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - BCFC1E610457B40404E9E12AE4E535BB /* versioning.upb.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - F5324F1BC4E8955F2CBA4E1722BCA70A /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + D3A58634539EBF020B8F9D0CC045150D /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, + 2A6A104FC3CA4598BC7D5E35D0D228F1 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 85C4BC45A14C7EA3A3B1DFC8D4A48846 /* Copy third_party/upb/upb/mini_table/internal Private Headers */ = { + 85F8A8FA5124007419C7D0B09746E568 /* Copy src/core/lib/gprpp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; dstSubfolderSpec = 16; files = ( - 191751E30758B2DBC10D96A44C82AE62 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - F3FD6953867590A8A293209C72144E77 /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - F68BA490069C3A04E48E2A1F19008BE6 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - B4662D51E840684BAAE17CFFFA72EE05 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - EA080F4888403ABE58B5E00E6A8D6F8A /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, - 3F2F6D6D61526A1EC0E72EAD8107BF2E /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + FD589A89FB96FF5BCD927E6DD34532D5 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, + 6CF18B6CDF1ADC5532A2141188E3ACA3 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, + 3943D2E5C65FF78C2CBB4ACF75D70CD9 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, + C3EEB52D2B01710E436D8CA93B2352BA /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, + 445A4E772D47694BB1EE7082BCFF214E /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, + 648D03A5E7627188917B2EB6D7DB721F /* crash.h in Copy src/core/lib/gprpp Private Headers */, + 401207A92BD2C6B04808DEB1E9208BED /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, + 5F698B50E9D28F0E112630A3F4D257A8 /* directory_reader.h in Copy src/core/lib/gprpp Private Headers */, + 879B192EF50A1EE92800BB6C9B4310DE /* down_cast.h in Copy src/core/lib/gprpp Private Headers */, + AFFF34E3F7705EB186A4CFBA67B28D47 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + 3D7C5DEE6E3792020F7B16186D52AE4F /* env.h in Copy src/core/lib/gprpp Private Headers */, + 1969D1D92B708E2C00ABDBF9ACD8DD5A /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, + 6865B04BA7239AB0797BC91F3A70426A /* fork.h in Copy src/core/lib/gprpp Private Headers */, + 8E9C78BDBCED7EBFCB4A8BC0E70FDDD8 /* host_port.h in Copy src/core/lib/gprpp Private Headers */, + 95B89F67A22B2D8BE5D4ED514B8EEEBC /* if_list.h in Copy src/core/lib/gprpp Private Headers */, + 10B7346C142BE9F11A2FBED41A301605 /* load_file.h in Copy src/core/lib/gprpp Private Headers */, + 902C42187DA6BF8A4E1879894FC80494 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, + 43CA905B198A8B0CE8AB7CEA4EE83440 /* match.h in Copy src/core/lib/gprpp Private Headers */, + 092844AD1F37759513F9AB0268B1BE2A /* memory.h in Copy src/core/lib/gprpp Private Headers */, + 2365328F38554678331B6D1B8C7F92A5 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, + B0139927C46F15191EF8C7547DEF7486 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, + CDE5897ED0212523F77325498E638DEC /* notification.h in Copy src/core/lib/gprpp Private Headers */, + 7EBF607E55C2A0F8EE92596176438841 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, + 35D515AD4D17447F8CFE870AD2577496 /* overload.h in Copy src/core/lib/gprpp Private Headers */, + A116F483DBC78D5BC3D056DF966E776B /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, + 44AA8979799356A6ACA6F91FE2346808 /* per_cpu.h in Copy src/core/lib/gprpp Private Headers */, + 2A42172677AD206652043861130335DF /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, + 1596E5C9E207928D317EAD0CD3F2E3DB /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, + 4311666C2D45FEF2124F38D7FA6EDCF5 /* ref_counted_string.h in Copy src/core/lib/gprpp Private Headers */, + FFC29FC13B98A4786711EFF87491104D /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, + 68AD69F5168725E35BA6CC156E7B5C56 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, + 5E8E3A416DE98BE60A35BBE5AFC1FB14 /* stat.h in Copy src/core/lib/gprpp Private Headers */, + A80255C5321952C452390BE9E15C7C77 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, + CDF0D86951E1480C277B5D5CB16D0B1E /* strerror.h in Copy src/core/lib/gprpp Private Headers */, + 0DF8C2B3776F89A6CC2FCB53B77FD00A /* sync.h in Copy src/core/lib/gprpp Private Headers */, + 1F4519E5536A75DF02E01A6C4478F55C /* table.h in Copy src/core/lib/gprpp Private Headers */, + A821167E48C426FC07643B033689D95E /* tchar.h in Copy src/core/lib/gprpp Private Headers */, + 1B5E4DA34D84F79587219FB68CC08071 /* thd.h in Copy src/core/lib/gprpp Private Headers */, + B19E2BDD678DEA188A69727F8AD868F3 /* time.h in Copy src/core/lib/gprpp Private Headers */, + 2D347DA960880B4B67FBA702263B7283 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, + 29965CBFF711D3EC996022A865D517D2 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, + 00021A79B37951B11EF5D5D40986D8E1 /* type_list.h in Copy src/core/lib/gprpp Private Headers */, + 6F890BE4F88F50338C1B9C892ECFA384 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, + DDD73B4CBF9C0D2EEAFC44123C4C397F /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, + C51C92BE06E0213B4A8B42825AFD0707 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, + F5EF5992716C7512B2B2E66CBCCBCC49 /* xxhash_inline.h in Copy src/core/lib/gprpp Private Headers */, ); - name = "Copy third_party/upb/upb/mini_table/internal Private Headers"; + name = "Copy src/core/lib/gprpp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 85E1BD8DF7F551CC1A8F24D22669CE5B /* Copy third_party/xxhash Private Headers */ = { + 8616C174886288B619592166C9888FB6 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - AC6E17D2231766D1F439D15AC57621E6 /* xxhash.h in Copy third_party/xxhash Private Headers */, + A6CE6625CDF740A3B4198F3909FCD13D /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy third_party/xxhash Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8708EB37895EE0ACAB9F6E94DED8DE3D /* Copy third_party/upb/upb/base Private Headers */ = { + 87045FCD4145929F982E05AF36C5EAC2 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; dstSubfolderSpec = 16; files = ( - 2C55A3EECC5403FA3261CF5A5C388183 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */, - E467D351517FA2E809774065927AF488 /* status.h in Copy third_party/upb/upb/base Private Headers */, - 2860BAE1C1F76AF0E18AA2CB49310DA4 /* status.hpp in Copy third_party/upb/upb/base Private Headers */, - 1B5394298B6D53D0884CEAB95E75E503 /* string_view.h in Copy third_party/upb/upb/base Private Headers */, + 11D7EDA5F12ACD9B22D210DDBBA574FE /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, ); - name = "Copy third_party/upb/upb/base Private Headers"; + name = "Copy src/core/lib/security/credentials/composite Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 876A5D3C1F1C63B57648CBC98866DEF0 /* Copy src/core/lib/promise Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; - dstSubfolderSpec = 16; - files = ( - 18D857E355381CEF0BDA026C6F843A1A /* activity.h in Copy src/core/lib/promise Private Headers */, - EFF528B39F50E152DB112E7131314F9E /* all_ok.h in Copy src/core/lib/promise Private Headers */, - 8AB19307D12CF183E6BBBDB0A45979B5 /* arena_promise.h in Copy src/core/lib/promise Private Headers */, - E5FBFBC0FC018D192326AB58605BD4C5 /* cancel_callback.h in Copy src/core/lib/promise Private Headers */, - 2247717B2BE769B2DDA5213FA8AC4C83 /* context.h in Copy src/core/lib/promise Private Headers */, - BC74FB79730A681A6C2BAFFFA9C1BE5F /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - 77C1F12365DA77781A3E5F620373AEC4 /* for_each.h in Copy src/core/lib/promise Private Headers */, - A3695C69E3B11E4BF83E7E99FF99E289 /* if.h in Copy src/core/lib/promise Private Headers */, - 5E85D9166B0891AB9D7D82DB010919FE /* interceptor_list.h in Copy src/core/lib/promise Private Headers */, - 3CE1E30E5E482E01D00A858A54A98FF7 /* latch.h in Copy src/core/lib/promise Private Headers */, - 468080322CAEED331943E7EE937FE3B5 /* loop.h in Copy src/core/lib/promise Private Headers */, - 29EB570B99FE4CA9B4F7291C73028271 /* map.h in Copy src/core/lib/promise Private Headers */, - A0CD4A2A8ECCCA71753901B134B6B3F5 /* party.h in Copy src/core/lib/promise Private Headers */, - CDAB555086A496E35C48692744DE9ED6 /* pipe.h in Copy src/core/lib/promise Private Headers */, - D0815A4970F517A977BD63EF50EC7F42 /* poll.h in Copy src/core/lib/promise Private Headers */, - 00159468DD45FAB7C9FEAF20911E5C29 /* prioritized_race.h in Copy src/core/lib/promise Private Headers */, - 96E6BDAE912E63049ACEE62EFF708CA7 /* promise.h in Copy src/core/lib/promise Private Headers */, - 3A45B8FAB955D06EF4C3FFFD20097653 /* race.h in Copy src/core/lib/promise Private Headers */, - 1E58F04E5667F42EB4C2E720EEA83124 /* seq.h in Copy src/core/lib/promise Private Headers */, - 7CDA73201D6699ECB2DD8DA4AB28E6E8 /* sleep.h in Copy src/core/lib/promise Private Headers */, - 4320CC945B0B72C4D212B03AC5498C2D /* status_flag.h in Copy src/core/lib/promise Private Headers */, - 89FDE8AFF0C7472C0B362668A9E85436 /* trace.h in Copy src/core/lib/promise Private Headers */, - 9B585EB9081DB1773D9D71A60CC80353 /* try_join.h in Copy src/core/lib/promise Private Headers */, - 549838F65F7620D7CA542FE2AEFEA25A /* try_seq.h in Copy src/core/lib/promise Private Headers */, - ); - name = "Copy src/core/lib/promise Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8786554FBC12765A9284D1143C5EE616 /* Copy ext Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/ext"; - dstSubfolderSpec = 16; - files = ( - C0806051E094A39B0F67EC018D2E0519 /* call_metric_recorder.h in Copy ext Public Headers */, - 5ACE9DF66D1DED85A29E54B062F603D5 /* health_check_service_server_builder_option.h in Copy ext Public Headers */, - F5549E2A8E1AFAB4E5E0ACD125AAAA65 /* server_metric_recorder.h in Copy ext Public Headers */, - ); - name = "Copy ext Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 88904A8034C91D5B0AF69EC9750D9215 /* Copy src/core/resolver/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/fake"; - dstSubfolderSpec = 16; - files = ( - C7A17B8B4C16B142644CA48A1A89533A /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */, - ); - name = "Copy src/core/resolver/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 88B4621B37A5C531C4827C7D8F854E02 /* Copy third_party/upb/upb/wire Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire"; - dstSubfolderSpec = 16; - files = ( - D0F8890B334B6E84EC109A52542B0439 /* decode.h in Copy third_party/upb/upb/wire Private Headers */, - D97BEB759BB150955AAB071D0074D855 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */, - 47E60C701835FE837C4420D0C8B1DB97 /* encode.h in Copy third_party/upb/upb/wire Private Headers */, - 83DF90B40F8A679154B24E63183DB3A8 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */, - ED73AC0E8A7DED12F1E7D09641A42135 /* reader.h in Copy third_party/upb/upb/wire Private Headers */, - F9A0500DCB63C72583871B30D4883BD9 /* types.h in Copy third_party/upb/upb/wire Private Headers */, - ); - name = "Copy third_party/upb/upb/wire Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 898D6CE9DBDBD923F7B3392266D5E325 /* Copy src/core/lib/surface Private Headers */ = { + 88780CAA5D401518E6FF2E88EF30D951 /* Copy src/core/lib/surface Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; dstSubfolderSpec = 16; files = ( - 0FC437D343FDC8A0AE6AFFC7B7137923 /* api_trace.h in Copy src/core/lib/surface Private Headers */, - B481250395DEFC07B67971A7A49F01D7 /* builtins.h in Copy src/core/lib/surface Private Headers */, - E7EFBA3B08B0CFF8D59448A8684D666F /* call.h in Copy src/core/lib/surface Private Headers */, - 340507BD9648723026AABB0DAF9AED59 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - 853EFC2695DD34480DC17EE0916EE3F9 /* call_trace.h in Copy src/core/lib/surface Private Headers */, - EBBE3B473B9A5305915A4985B06C7574 /* channel.h in Copy src/core/lib/surface Private Headers */, - C72E8F9EB9950C92E20AFE7BC2E65B71 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - A6ED3CEE7143932AFAE62A1F07E52C9E /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - F2B33209BF6984D0446CE399D1FE9909 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - AC79A0F3182A99B4BCB5555FE6609B85 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - 5D6A8A9D0BC250C801F233501DBB5358 /* event_string.h in Copy src/core/lib/surface Private Headers */, - BFB8C3998032D923488EDAC4CEAF8DA6 /* init.h in Copy src/core/lib/surface Private Headers */, - 440E0A37D48C93763E2951E666D77B71 /* init_internally.h in Copy src/core/lib/surface Private Headers */, - 9FE6DBA35E9AA01148DBF5775797812C /* lame_client.h in Copy src/core/lib/surface Private Headers */, - 31035CC7DC323CAA315053CB89F67D31 /* server.h in Copy src/core/lib/surface Private Headers */, - 6F14955EC21848EFA28E3229C4CB3ADF /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, - AF29D0D05E4E481AE762326AD0061AB7 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */, + 95D84FB6EE62BC095AD3B3F0BA980BF1 /* api_trace.h in Copy src/core/lib/surface Private Headers */, + 4303671FC44CAD8ACDB6BE0711A78CD0 /* builtins.h in Copy src/core/lib/surface Private Headers */, + A2198067DFE5E5223FAEEEFAE05C5289 /* call.h in Copy src/core/lib/surface Private Headers */, + C3A934D642D74CE729EDF5EA393F5E68 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, + B7446F9DAB651DE1B8E51FFCED2A7E5C /* call_trace.h in Copy src/core/lib/surface Private Headers */, + 1C8C09EF54CA6645A93174CC3B11CA42 /* channel.h in Copy src/core/lib/surface Private Headers */, + 6DB0DB07488008A6EE2F5576FE17A8FA /* channel_init.h in Copy src/core/lib/surface Private Headers */, + D1527961260CFD9ED69F008D7FF1867E /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, + EA8215F54ACC491961151DDBBF962051 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, + C6A7C7B9A0D7B499D82EF35703E13EE3 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, + 23572BA52C7912FD75D5746DFE6DDB78 /* event_string.h in Copy src/core/lib/surface Private Headers */, + 6AB5090C04336693C2BB8133990160A7 /* init.h in Copy src/core/lib/surface Private Headers */, + 817965338B036883788A5B21B29C90D6 /* init_internally.h in Copy src/core/lib/surface Private Headers */, + 177365461BFB1C85BF249138F42E68B4 /* lame_client.h in Copy src/core/lib/surface Private Headers */, + 276C14A992B4A41B8D9A36E4C46A7FF3 /* server.h in Copy src/core/lib/surface Private Headers */, + FDA94960386CB60076A0607176C84D7E /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, + 38065568BE14AF1D2172B1C62659AB4A /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */, ); name = "Copy src/core/lib/surface Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 89D83BE44BFF70CACEC1640CD20545AA /* Copy src/core/resolver/fake Private Headers */ = { + 8923B572689B96A1C1C0DC67435BABF3 /* Copy flags Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/fake"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/flags"; dstSubfolderSpec = 16; files = ( - 106F66D360F66F7AF9AD620B9D4E36CD /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */, + E0FFD2E71DE5948ADB0F8445C9443A2E /* commandlineflag.h in Copy flags Public Headers */, + C2D1AA93001E4B47E3ABEA10CE0D7184 /* config.h in Copy flags Public Headers */, + 52382113E3E4C896C6245732EE95B7FF /* declare.h in Copy flags Public Headers */, + 0344936F6532C0663F018EF51CC0B2BC /* flag.h in Copy flags Public Headers */, + 045891D5D3BB50E006E61829D1C05BAD /* marshalling.h in Copy flags Public Headers */, + 767ABD3998DDB7F5D1E195CEB3E240ED /* reflection.h in Copy flags Public Headers */, + 6BF1E8A19FAFBED131C4ADB54304F8C7 /* usage_config.h in Copy flags Public Headers */, ); - name = "Copy src/core/resolver/fake Private Headers"; + name = "Copy flags Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8A0EA0D5A7CB4E30D91257048F5D1016 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { + 89F643C50E0D7F2DC81EA3F8DD2FA7C3 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 2886DADB4013ABBD486BE766ABAA0A4B /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, + 2AB4F075C26AFEB0B2EC57CD7BF094E3 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8A33CD8AC9A56BB63ADF1632794E279E /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { + 8A15F9654A16D59D9A321A0519D28CB6 /* Copy src/core/ext/transport/binder/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/client"; dstSubfolderSpec = 16; files = ( - 775F2993D268927940EB0EDDB0573E2F /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, + B7C21D071B8A0DD967916E1EDB68D75D /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */, + 48B3C49AB849AD64C9B4E7B027E7CEB7 /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */, + 09EF91070ACEC591DA681B5D3C381389 /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */, + 5A0835F57C4BA98351A11FBF5E2A3CCA /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */, + 51C5918D7B1C1F04D0E43C5C1EB33069 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */, + E6B7535ACB534DCBC7BB15A76859C1F3 /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */, ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; + name = "Copy src/core/ext/transport/binder/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8B980A8C8DCB29F1A0A7ED5B8B52798A /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = { + 8B0025D38585CF8FD561E9E285900633 /* Copy src/core/tsi Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; dstSubfolderSpec = 16; files = ( - 623DBF23E22D000F8F8B3366E278F21E /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 909C8912152A03E77D4EE61A6CC76785 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - B9B6EB9D6628EFEB6ECEEDFEE427CF13 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - CCB10CB4200B2CD4E65E27A13E472244 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 1B2A5A519C75944FDF511C1A6675B008 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 89701EA202A9468A0D916071AD65B293 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, + D7206A5F7B9337A54C3918E3210F8D76 /* local_transport_security.h in Copy src/core/tsi Private Headers */, + 88D476D3541815A2D4D868AEC0737129 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, + 37DCC369887727E66460D4EAD90EA80A /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */, + 07D49EB7DDDD6947D2CE0D072B902D05 /* ssl_types.h in Copy src/core/tsi Private Headers */, + B0AD4C54AC279A2D13C7A204AA6AC8C5 /* transport_security.h in Copy src/core/tsi Private Headers */, + 0096387275FA9AD6B150B69633C04778 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, + E763147749089158594DF4121DBA1233 /* transport_security_interface.h in Copy src/core/tsi Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers"; + name = "Copy src/core/tsi Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8BD75A641A88CAACC260CAFEC3F8F2BB /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { + 8BAC9C59B9A14C646D1997F0B72B3645 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/admin/v3"; dstSubfolderSpec = 16; files = ( - AC16DC57B60FE7580FA0629981ADB444 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 2512EDCD8DB8F4F08FEEB7DCFFF5166A /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + E620B19BE4E72FEEB1EADE62D77F28D1 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + A70DBAAD5F5EC3242A41AB30915772A3 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 127FF2AC90A6C0C3DEA20AF9B729AEE0 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + B37EDA9BFD98ED828E4503C021417C38 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 877F3CBECCD082DF69D137410882162D /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 5C7B16D4BBFC20BA294C49136F7D40AA /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 247D925DA256BD3DD3E8E1ACDD3EC450 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + E8FFE34846C07F64AF370B99BFD1AACB /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 12A66DF0AF6CA06F29FADFB5351F039D /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 3F8A68FA14F4F3E39A26283919C4237F /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8C380CA45311807E89CD041A472DA759 /* Copy src/core/lib/handshaker Private Headers */ = { + 8C26FF1E102545D1E601EADBA53D8155 /* Copy src/core/lib/security/context Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; dstSubfolderSpec = 16; files = ( - 4E9C77E32A74E50D47695581CEBC1FBD /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, - 010E17A3DAFF2D88597F17AF3B21B58A /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, + 57EBC247B5DA4F0675755210B86EADA6 /* security_context.h in Copy src/core/lib/security/context Private Headers */, ); - name = "Copy src/core/lib/handshaker Private Headers"; + name = "Copy src/core/lib/security/context Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 8C65D869AF79266E6A3997019A189350 /* Copy crypto/evp Private Headers */ = { @@ -14401,27 +14602,34 @@ name = "Copy crypto/evp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8D5B6BF0C5E6D61BA6222E464977279F /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = { + 8CA3437B2A1F1459AAE8C69B21B3BE2D /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/tracing/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/protobuf"; dstSubfolderSpec = 16; files = ( - 4057A86A358CA709BA06FDDB00D7E225 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, + 4F6FAB0E54B32025DBFADC936725070F /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 791198C12F87C98C150E8B9C8B9904DE /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 5DF96C3821C27CFF304777505F0F3E44 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 61FECEB248710250FB92EE7F46F93BA4 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 99F5328EEE29EA6B654290292E3B2083 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 59A115410F9708AB8FFB29C8EF4484F4 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + B61B3B42F4F18609E7DC9401F8AC7314 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 8F7A066E2426D0234288019B4225BEAF /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + 8DA3E8A6F25EE6C8E060A6C0546DDEA9 /* Copy ext Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/ext"; dstSubfolderSpec = 16; files = ( - 2AA2E559D10D2A4D331CB63258E0EF0F /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 4F35F4CFB0835BD581FB9DB1A946EC27 /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 717B2E2D89375A5E3F4BD751EC8DB3B4 /* call_metric_recorder.h in Copy ext Public Headers */, + EEC04EB4FC085DF00C382B7F5F207D26 /* health_check_service_server_builder_option.h in Copy ext Public Headers */, + 5612E053AF268CF81F6B369CD5E9137E /* server_metric_recorder.h in Copy ext Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy ext Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; 8F929A9175B62D20B35FE06A538AB1AA /* Copy crypto/kyber Private Headers */ = { @@ -14435,6 +14643,17 @@ name = "Copy crypto/kyber Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; + 8FDA23244771F78CD631E273E70A9B30 /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3"; + dstSubfolderSpec = 16; + files = ( + 65C81003758D6B69A140D1A43FEE58F2 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; 904D6B152AD9D8CDD8F684B5FB113911 /* Copy ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -14446,362 +14665,236 @@ name = "Copy ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 912E8359F6882D96AEFE7160E4745E31 /* Copy src/core/lib/security/security_connector Private Headers */ = { + 905C3C635CF53CB814C410FD112B6980 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3"; dstSubfolderSpec = 16; files = ( - D585AD9E06E3913F7F4B0B2FA02B2FF5 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - 8045CAB7DCBAD45D413CA391E54BAF09 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, - 65DB7E86D8AAEEF76C864D7E2050FC5F /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - A76A25942399CC0364597A5BA4AEAF12 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, + F3FA6DBBDDB3817E4B418FD1FB388DE9 /* http_protocol_options.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, ); - name = "Copy src/core/lib/security/security_connector Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 917624EC5C339065677B32190A54B630 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; - dstSubfolderSpec = 16; - files = ( - 4284DEA3B3302A381A45B18457C4B9F4 /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - F91756AD72C6D064CA4C1C719EF12168 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 0C4E219F1BF57F4DAB27B8B633811C43 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 6C637A9BD506E89A03C11E04D0CE9902 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - AF92E08BD2E396CE7D515625C9636DC9 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 2E66A78A58380AC02EC295C78AE6CC5E /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, - ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 91C1E2DE5A6F721DCE457B1D3CEBA8F8 /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - 86273F65436FA1F00B76DF9593C0DDA3 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - E64E8BF76284C2D5F5E54A47374B57EB /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - DAAD7D277C595CBC03FD60A0B3A16BCE /* filter.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - E200B961F0694DEE93CEC084F9B2DD1C /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9230EC47DAC1FEC81C82F7BD0EA02BD6 /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; - dstSubfolderSpec = 16; - files = ( - 2C51B56E58B8CBC51C9BCB3E36BB5F03 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9233FAE9D4DF9ABA611896E5056544E7 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; - dstSubfolderSpec = 16; - files = ( - 5511EA2A691408766843377B764D0B3D /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, - 911471F560135D658C682DA95B7EA089 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, - ); - name = "Copy src/core/lib/security/certificate_provider Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 924869C8AC537C2C5AB04975F97124A7 /* Copy src/core/client_channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/client_channel"; - dstSubfolderSpec = 16; - files = ( - 4254020475FCED0C529491288E4DA3C1 /* backend_metric.h in Copy src/core/client_channel Private Headers */, - D186391C4AE93C3357703C90BC42C3BB /* backup_poller.h in Copy src/core/client_channel Private Headers */, - 474CF20E17EEAE4EED576FB06A08B96D /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */, - 9B4D12E728FC349A9584922BEFAFA3C2 /* client_channel_factory.h in Copy src/core/client_channel Private Headers */, - 89EDD87EF1957F3F890F61DF5DDE31D8 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */, - 855F2176AB41872B87508DBBECD65A77 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */, - 0B5019DEC4912EC4ACEC01F4203176BD /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */, - CADAC5035BE81E0B415FA0E5C3420431 /* config_selector.h in Copy src/core/client_channel Private Headers */, - 5E9287F436C8895CBF576E4E1A44C81D /* connector.h in Copy src/core/client_channel Private Headers */, - 864750C221EF974E8A12F14B56E29799 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */, - A3032F91D232452D03883C6E7D6F0059 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */, - E7BEF5A46B431619CE03EBA9734945FB /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */, - 7BAD44EC483AED275F0CBBB5B1ECA5A1 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */, - 31FDCA3E29D58B23A9477DA48712B6F1 /* retry_filter.h in Copy src/core/client_channel Private Headers */, - D47D6360A2FDD9AE70AE22AA77E3B96B /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */, - 7FDB0A50A3869BF98360AEE9EE5F686E /* retry_service_config.h in Copy src/core/client_channel Private Headers */, - 8A05C86D834E67994EEC3F28952257C6 /* retry_throttle.h in Copy src/core/client_channel Private Headers */, - 9666A7419C84F56A6BCE84B68974E778 /* subchannel.h in Copy src/core/client_channel Private Headers */, - 54176E641D82683B2F072437085BD5EC /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */, - 1AF72E7C7C13767E4ED7E1313A189BBF /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */, - 88712912CA49F0C3773AC514626A7E47 /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */, - ); - name = "Copy src/core/client_channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 92D768636AB5B26B4A610E6744F1C907 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; - dstSubfolderSpec = 16; - files = ( - 3F370A70B180A144259AA4A4609DD5D5 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 93167F0F755AA142DC450AF8CF23526E /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; - dstSubfolderSpec = 16; - files = ( - 893E4F268A03F90AE2A29A43F94EC4E6 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9346672664C803BB81BDDF6352CDA057 /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - F059F54C0AD2D6FCE114E8E9D35616FF /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, - 6D7299E260ACBD621C456A13106CA22F /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 93821A3F0CDE68E5BF4E31D3A1EA9D65 /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; - dstSubfolderSpec = 16; - files = ( - 034B7BF843F951E166845F08D593C9AF /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 938EC2003C732CC459EEE72405E4D119 /* Copy src/core/lib/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; - dstSubfolderSpec = 16; - files = ( - 945E809ED066EBA730FE9846EB090FCC /* batch_builder.h in Copy src/core/lib/transport Private Headers */, - 57CE41BEDDC64893B941A702079DE01A /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 2BE14D31EDFB40484C868E1BE01E1D1D /* call_factory.h in Copy src/core/lib/transport Private Headers */, - C2003AB269F687D04FE745BE09DAEA2A /* call_filters.h in Copy src/core/lib/transport Private Headers */, - 4F981F7581EC76EDBAD83DD9CA3053BD /* call_final_info.h in Copy src/core/lib/transport Private Headers */, - 249255BF66EE2F92C55D2DCAD4EDC78D /* call_size_estimator.h in Copy src/core/lib/transport Private Headers */, - 632A5C1154E049B624B4E52E699BAAB4 /* call_spine.h in Copy src/core/lib/transport Private Headers */, - DE631D2EC70FF1DC99217E223ED6F726 /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - 53106B1D745D95C6DBCA9A52BC4913A7 /* custom_metadata.h in Copy src/core/lib/transport Private Headers */, - A503C8148469250094ABF286BAE8AA65 /* error_utils.h in Copy src/core/lib/transport Private Headers */, - B16336A5BFFEA9BE9F8659E005E74988 /* handshaker.h in Copy src/core/lib/transport Private Headers */, - C7C784EC2953769DB1299EEC34070048 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, - A39077EEB077DA40ADC33FAF6CF883F0 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, - 42B8EBC805FA41BDD0A1966B724B3727 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - FA261900E1B71F49873E5F6D72FAE1E4 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 51F27166BA01FDF6522DF1C6F2A69E49 /* message.h in Copy src/core/lib/transport Private Headers */, - 935E28789272A7B380FA2B01A9C73B17 /* metadata.h in Copy src/core/lib/transport Private Headers */, - 34DB8E23F5D28FA1C00DB80B8CA2B75E /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - 9D5514F0BFBE9136DA2BAC52C994563B /* metadata_compression_traits.h in Copy src/core/lib/transport Private Headers */, - 3FF72A305208D2A14B2D5E40AA0554F0 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - C24036B0A94646F2D823501D5036C67E /* simple_slice_based_metadata.h in Copy src/core/lib/transport Private Headers */, - B01E8CA8F8E2B12DEA71E3CFC8341076 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - 8EC9E656BDF6063AC37FD95C4588FB68 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 4E09808C52ADB5640792312974875068 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - 7B684554371254683EBBDCA2AD9240C1 /* transport.h in Copy src/core/lib/transport Private Headers */, - B6E840CE2C3C20A6F02E3D874381803C /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, - ); - name = "Copy src/core/lib/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 93E508290789CF8003C8330E817AAA8B /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - C5F9143E4EB68AA32A0E6AF29A5F547B /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 942B6897130214EE546317A7830FCCA6 /* Copy src/core/lib/gpr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; - dstSubfolderSpec = 16; - files = ( - 12844BCACAFA0707F5D97A82C1733785 /* alloc.h in Copy src/core/lib/gpr Private Headers */, - 9049FBC59BAC54306121B63145E0DD75 /* log_internal.h in Copy src/core/lib/gpr Private Headers */, - 06FAA07ABF438DC6A2211D37283B9858 /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - 1DED2DEDF06FC1F9F30BED7EBB828506 /* string.h in Copy src/core/lib/gpr Private Headers */, - 27C313A702DF7B7C0FCD8542EE442997 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - 3DAC3897E6D63A317EF89F1FC43642A3 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - 2DBC900238B7D1B2B301C56C74B24686 /* useful.h in Copy src/core/lib/gpr Private Headers */, - ); - name = "Copy src/core/lib/gpr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9479D4C0AE0ED4BC213B9A07D351B979 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; - dstSubfolderSpec = 16; - files = ( - 723313192B63DDE8D01ED638CBDB8AFA /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9567DA099B0C629461D5D647F27AF422 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - 059889E6BAB306CCFEDE296B712272BD /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9569DADD6A000693F6B33B010426CAF8 /* Copy hash/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash/internal"; - dstSubfolderSpec = 16; - files = ( - 6679430DED4C5E10F5C9CAAEF4C6A27E /* city.h in Copy hash/internal Public Headers */, - 9372F5DA2E8F57ED60975986FCC874DD /* hash.h in Copy hash/internal Public Headers */, - F10C1B4480CD4B6AA509407849E1FC02 /* low_level_hash.h in Copy hash/internal Public Headers */, - ); - name = "Copy hash/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 95789CB6B505188779CA2FD5A4263DD1 /* Copy src/core/ext/filters/backend_metrics Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/backend_metrics"; - dstSubfolderSpec = 16; - files = ( - E65E74C4E78D96CAD69D605C23305624 /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */, - C4DBDA154B84699BDC5529C03909674B /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */, - ); - name = "Copy src/core/ext/filters/backend_metrics Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 95B67D6FC3CE4DB46ED92A1BDE656D9F /* Copy src/core/ext/upbdefs-gen/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/validate"; - dstSubfolderSpec = 16; - files = ( - AE8F0AE17B067A0BC69E36574277A581 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 964D2573C5787E9D897E95EC3D413807 /* Copy src/core/tsi Private Headers */ = { + 91158CD642DEFDB0B88B7D7917F5F9C3 /* Copy src/core/tsi Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; dstSubfolderSpec = 16; files = ( - A28D9DC22A14DCF93306DBE6D88EE55C /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - 51B47F7BE0D6A9429B597027C465BBA1 /* local_transport_security.h in Copy src/core/tsi Private Headers */, - E73434D83F52C04D2F7D74023B1141A1 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - 501566C8267E058C3E5613036DAC791A /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */, - B73CD36B4E4E827C928B9B3DFDEF6FBD /* ssl_types.h in Copy src/core/tsi Private Headers */, - 2E55B21F22156C87FD759384F574271C /* transport_security.h in Copy src/core/tsi Private Headers */, - 9D1856FE7B5E377ABE05E12BA47B4CC5 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - 2FB334E459128B8C21628E75DBEFAD61 /* transport_security_interface.h in Copy src/core/tsi Private Headers */, + C741B45C5D2A41D904666E1457DE59BD /* fake_transport_security.h in Copy src/core/tsi Private Headers */, + 19E959B2A7D303C3F26543312856AF7F /* local_transport_security.h in Copy src/core/tsi Private Headers */, + 2D1FFCD5B58F5547FCF27F80386E8167 /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, + 1596E020935893B5E15290D5CF8B6E9F /* ssl_transport_security_utils.h in Copy src/core/tsi Private Headers */, + 54C31EF32E2A605BE27E95D587B1DAFD /* ssl_types.h in Copy src/core/tsi Private Headers */, + 240899A8BA2D2937CC5987F9CD27EA3C /* transport_security.h in Copy src/core/tsi Private Headers */, + 16D97B6143F41CB388C7899DD901E81A /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, + 70B88C9653681A5E520CC1ABC9C95958 /* transport_security_interface.h in Copy src/core/tsi Private Headers */, ); name = "Copy src/core/tsi Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 96FB3708A5516C060559E867CB646B67 /* Copy src/core/lib/matchers Private Headers */ = { + 91C7ADB22FAF38B541C546E00AF76705 /* Copy src/core/ext/upb-gen/google/api Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api"; dstSubfolderSpec = 16; files = ( - 3621C22C1F79BBE32864DEACA83C0E6F /* matchers.h in Copy src/core/lib/matchers Private Headers */, + 6EB86AFAE3036FB4D2BBACBB07678332 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 8EC9F148CD1A4159F9E1EC841A140724 /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + E7053A3D7A9297FACC6C4F52BF0F868F /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 98DB65185B86EC5B38626C33231A447F /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + DDEB80A76EBD72F0AE3C58F4E4C48210 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 5CA1B8A78ABAD3D976705FE8BC45571A /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, ); - name = "Copy src/core/lib/matchers Private Headers"; + name = "Copy src/core/ext/upb-gen/google/api Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9717875727BAA6565CD05732B193FAE4 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = { + 920B4D0129A4055BC9A5CE97E7081139 /* Copy src/core/lib/json Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api/expr/v1alpha1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; dstSubfolderSpec = 16; files = ( - D55DCC2D6CE5F5E51B8FC16AE0BAD968 /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - 03DACAA4A2DB926A31C85E47B16A9BE6 /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - 3FA1EBEF205B619CBA72F7635FD1E386 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - 276501F0D53F01F3AC639B198700BDE1 /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + F0DEB43CE4D0269D9A8D840B3CFE180A /* json.h in Copy src/core/lib/json Private Headers */, + 274FED159A282E7599519BA14D396386 /* json_args.h in Copy src/core/lib/json Private Headers */, + 6B039E460651B20DBB4E35287A723D18 /* json_channel_args.h in Copy src/core/lib/json Private Headers */, + BE6BC3DB649D3095215A72E381EC161D /* json_object_loader.h in Copy src/core/lib/json Private Headers */, + 6FA9BF6CB04D9BF2B4678164D1103DF3 /* json_reader.h in Copy src/core/lib/json Private Headers */, + 27AF13DF3D95D1CB8ECFF65D8202234D /* json_util.h in Copy src/core/lib/json Private Headers */, + EBA5FAB2C21D9330A17BB52F4423F7EE /* json_writer.h in Copy src/core/lib/json Private Headers */, ); - name = "Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers"; + name = "Copy src/core/lib/json Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 97D37A4928441B244BA7AEE11BCD63F1 /* Copy types/internal Public Headers */ = { + 9245BD9ABEAA9E3E935536A60523A0D8 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 1794DE855E55D24F068D0A8E94A797C6 /* optional.h in Copy types/internal Public Headers */, - 2CBC1C33655592F1BBD914E54E685103 /* span.h in Copy types/internal Public Headers */, - 600574B4C77AB4ADFA750B786787E2A3 /* variant.h in Copy types/internal Public Headers */, + 478E5ECA26D2B1778BB0FA72BC0A5540 /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + C0D3141F580D47BA7D51839952BCD65C /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy types/internal Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 99334DC83CA7E85163531677D9C16E7C /* Copy random Public Headers */ = { + 92593D0516521A2FEEEA640145A494D2 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; dstSubfolderSpec = 16; files = ( - 5963C16DC31DBE234FD941B86C223919 /* bernoulli_distribution.h in Copy random Public Headers */, - 6064EA6730AAE848769BB22A5F7F255D /* beta_distribution.h in Copy random Public Headers */, - 2F274E42EA18EE3756CF65D2ABE5EA48 /* bit_gen_ref.h in Copy random Public Headers */, - 173AAA1EEF8FC9EB9C58431F907CB404 /* discrete_distribution.h in Copy random Public Headers */, - 6A12A718632AD7FE2F936E191C8CF248 /* distributions.h in Copy random Public Headers */, - 9FB9E06E34A2D377737C112ABBBCDBE9 /* exponential_distribution.h in Copy random Public Headers */, - EA073C2044E1FE88401031E1FDB0774F /* gaussian_distribution.h in Copy random Public Headers */, - 8B6832ED7D9D4BEEDA08F566B16F37D3 /* log_uniform_int_distribution.h in Copy random Public Headers */, - E98116C220B7838332943CF216A0DCBC /* poisson_distribution.h in Copy random Public Headers */, - A863B256C7D95248F2763DDB58F29824 /* random.h in Copy random Public Headers */, - DEB8D7575164ED22AD618FD9DFA6E731 /* seed_gen_exception.h in Copy random Public Headers */, - E308DC3CA68D8E6C16055A61DECF377D /* seed_sequences.h in Copy random Public Headers */, - 4F7A090D469138688E14C555460D5426 /* uniform_int_distribution.h in Copy random Public Headers */, - 385744DE4D5BB8015B9BB8FC5057BF4D /* uniform_real_distribution.h in Copy random Public Headers */, - 60A63E47A4BF82925C1B50C93A51E14A /* zipf_distribution.h in Copy random Public Headers */, + ADE259B570F57BDAD89359491B7679B4 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, ); - name = "Copy random Public Headers"; + name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 99410EFB1682EC4DBD124F8AE62E3CFF /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = { + 936C01A72FC6FECF095865A3B333E4EA /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/opencensus/proto/trace/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - E00EBB67128E82A18A0B098029EC2950 /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, - 21D6A024D6534DC9F2364AB988D79634 /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + E978A2D02CC7A55F7240CAB2B7C00873 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 1BEDCD13BED5DC0BC02DEBF2AE7DE35D /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + FB105B2DD11009D9A4FAB4BA2E0DD7D9 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + C711F3B952BA67700DF97908F5F6634A /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + A70908B4C3108567253CA06997A0AA4D /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 1C5B0DE724A7EEF3C0FDA3414F189440 /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + FAFE467ABD5955229D5ADF0246BADDB4 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 11980BF4D50B8896A0A380D5E840501B /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 6C673A73D8D66B5E83B5F6B6D6FCE085 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 93B76814D92A96E5E29B637C3126A14D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3"; + dstSubfolderSpec = 16; + files = ( + EFAF8B3B7BC75C6C1945DCE237EEAE5E /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + E21CE6FD473F7821C0BC4A8D7FE5268D /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9470A6DB4F5C21FAA1942301A715119A /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/cluster/v3"; + dstSubfolderSpec = 16; + files = ( + 0C595D8FBCD7A109D3A7DE6CD209DA3E /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + FDCBA07532B7CDAE81150B7E301A1AF3 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 99F5C761EE02E0370B6668394BE9B257 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 9EB14E99B6C41F4A9F94D8226492E1B9 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 1501372947F03140FCF7B5909A822FE4 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 52DB7984E6307A81CA5A0FFFAEB1A936 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 2A96F7F2BD61C84788B1D2898CEF3812 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + A27ADD47506A8A1AFD2589480CC7536B /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 954C1AE6E4B5782ECF91E31911844E3B /* Copy src/core/tsi/alts/crypt Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; + dstSubfolderSpec = 16; + files = ( + 73C9E5123FF01BD119BC93170E3A9FA3 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, + ); + name = "Copy src/core/tsi/alts/crypt Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 957CCEF256F873DDD8883D226E362162 /* Copy src/core/lib/resource_quota Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; + dstSubfolderSpec = 16; + files = ( + 589BC36E2AEB23DFC904E0C5907AEAE8 /* api.h in Copy src/core/lib/resource_quota Private Headers */, + 23C30E338553CC05DECA6F14D91297BE /* arena.h in Copy src/core/lib/resource_quota Private Headers */, + 354FACF254B04427E46FA4268096455C /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, + EE07F460230E2CE4486368A3A336617C /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, + 7E2140F4FB64B725885998AAF97630C3 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, + B8F805542CD2A6EE0BF05EF69361F955 /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, + 07F1D3F5C74799F7A4FA2E494F7B8D3F /* trace.h in Copy src/core/lib/resource_quota Private Headers */, + ); + name = "Copy src/core/lib/resource_quota Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 958CC5E2CF9B05666F1FDB4027510C3D /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/tracing/v3"; + dstSubfolderSpec = 16; + files = ( + 0B7522417EBE531FC84E78977B6540C0 /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + 16824969E3A80B82D41B74A7ED8EEF07 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9600760AF8B21E05F89B2D07EDEC0FC2 /* Copy src/core/load_balancing/ring_hash Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/ring_hash"; + dstSubfolderSpec = 16; + files = ( + 0CFBB0AA39CF8DC9F1932E9689C44F64 /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */, + ); + name = "Copy src/core/load_balancing/ring_hash Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 960AC943C439949CB5BC3C8254C13FC8 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/overload/v3"; + dstSubfolderSpec = 16; + files = ( + D80942D42ACE4529AFF20C866EF9447B /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + 50B44B45FB9681A23B1362A2C558C399 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 97E19642C2825466240764D6C2E1B250 /* Copy src/core/lib/compression Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; + dstSubfolderSpec = 16; + files = ( + E425B3488FEEF0766396219C5B8C0374 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, + AC41E906F505A908EFA3F92CCED71C88 /* message_compress.h in Copy src/core/lib/compression Private Headers */, + ); + name = "Copy src/core/lib/compression Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9874315657B3A855B2BED71CF61C7EA2 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3"; + dstSubfolderSpec = 16; + files = ( + D64AE53FC2B45625FEB89E5B4FC4400D /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + 3621BBBEEF72764259CCE9E3B11E6E49 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 98EF2EDC28BEF3855C34C2F2C1CE7B1A /* Copy src/core/resolver/fake Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/fake"; + dstSubfolderSpec = 16; + files = ( + 509A93D0CBAAB6A78B8E2D267988F23F /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */, + ); + name = "Copy src/core/resolver/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 99ABCF163723502BCF6003AD2349F4DC /* Copy crypto/fipsmodule/rsa Private Headers */ = { @@ -14815,18 +14908,57 @@ name = "Copy crypto/fipsmodule/rsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9A6021C1E2FB72544C6C7FD64A6A6673 /* Copy src/core/resolver/dns/event_engine Private Headers */ = { + 9A06676FFC6E78D9285F399BFB7C3609 /* Copy src/core/lib/slice Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; + dstSubfolderSpec = 16; + files = ( + 60F7C90F6227DC05DB18DD421ABDA245 /* b64.h in Copy src/core/lib/slice Private Headers */, + 9F1DF71BF529DE08DB767486ACDFC3B4 /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, + 41C1FBBC3DCCB1A7D4414FA1B12A1A85 /* slice.h in Copy src/core/lib/slice Private Headers */, + DA5D749BFAD868A92462B8CF60D54EDF /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, + 3CAD3F2D58FC3E3CDF688433CF8235A1 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, + 7DA1ED44F5023282DD067F3E12AFBFDB /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, + 8E3C04FF2125CFF60C068815D55BD3A7 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, + ); + name = "Copy src/core/lib/slice Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9A1E5B484D8C43E9AB0F4203D16487C5 /* Copy src/core/resolver/dns/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/event_engine"; dstSubfolderSpec = 16; files = ( - 6FC28754D98E1815315A81EB256BC42B /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */, - 4F3EAFBED233981D1B20A681D3B03103 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */, + 5614F3B0F121DA021B40C181AE995379 /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */, + B34BF2D478E8564522A950A30C96DBB2 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */, ); name = "Copy src/core/resolver/dns/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; + 9A242AD4512BF4244AE41D1F293887FC /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; + dstSubfolderSpec = 16; + files = ( + C9A74B64BBB8A8A045A8392EDBA0C2AF /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, + ); + name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9A6DE530ACA47749C89A9A5620A841B6 /* Copy src/core/ext/gcp Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/gcp"; + dstSubfolderSpec = 16; + files = ( + DBE1F73DD6D287A4794B44BE457505D3 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */, + ); + name = "Copy src/core/ext/gcp Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; 9ADFFA9AB603FFBB5BCF16A2C6792CD9 /* Copy crypto/x509 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -14839,76 +14971,35 @@ name = "Copy crypto/x509 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9AEA4FEA21790234199AB62A9C845B5F /* Copy src/core/client_channel Private Headers */ = { + 9C14A12F0162919FF338038308FBCB63 /* Copy src/core/lib/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/client_channel"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; dstSubfolderSpec = 16; files = ( - 27D081E200A036B116606E0F140B593E /* backend_metric.h in Copy src/core/client_channel Private Headers */, - D5E3B17E1CE60482F8AB611042449A8B /* backup_poller.h in Copy src/core/client_channel Private Headers */, - A49B6B8D513E7FDB566B3956DFCBAE6B /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */, - F43048AE7387DE50CA64E1319101D15F /* client_channel_factory.h in Copy src/core/client_channel Private Headers */, - 1100BAE344FCD8C476BEF4BA72C6E197 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */, - 2C2608759E73BEFD118F54E7A2B78321 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */, - BE8C1C3D86DC4ABADD1CF0808905B4F2 /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */, - 6E6E8EA37EF87F524BBCE3B7970E8B44 /* config_selector.h in Copy src/core/client_channel Private Headers */, - F3F0C87573DA47AD52F4CC210371A1CE /* connector.h in Copy src/core/client_channel Private Headers */, - CA1C5C9973CAE87B9D845E36635FBD92 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */, - 9D75CC5245593C16F2D95CBF581493C5 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */, - 8A8C0020A66F27F06086767AD8B8A341 /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */, - 3A760D1084AEC4C2E61439C9B1753A60 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */, - ED5D8384C3CBD0B3309C3729373773A5 /* retry_filter.h in Copy src/core/client_channel Private Headers */, - 74FBB0297FD4272672A7A207F8726524 /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */, - 7F3DB6330F3D2574A116806E229E03CA /* retry_service_config.h in Copy src/core/client_channel Private Headers */, - 423F4F174BE537AD3B6225E13C5CB6E1 /* retry_throttle.h in Copy src/core/client_channel Private Headers */, - A638959ACD632DA75915636943F585C7 /* subchannel.h in Copy src/core/client_channel Private Headers */, - BEF511934EF2446B6E8E4B201548884F /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */, - 917AB57CA299BD93BE0913EFF528BA3F /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */, - CDDE9162D7CA4C6C2CAA296BBDA0D747 /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */, + 674A167B4E232EAA332DAA8190D23FE0 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */, + 3B8ED1F0772B86D35291B8BF1FF4116F /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, + 79C47D572D2219D579E7CBA1A5B75033 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */, + 56975D1120A076ECB680FC88CCB16CED /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, + AFCDE284B472F95E947ACBE7168AD682 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, + A93CC072F5FA6C454DE128589D2F22AB /* forkable.h in Copy src/core/lib/event_engine Private Headers */, + 81561553CF3B31C7BCB1AD44C181D36D /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */, + F7A308041DC38B8151BA50FA17D43D3C /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, + DA070D2536A1249AD4F706DA086C1D7B /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */, + 85B1892103E84BAC9D0099CF209A8376 /* nameser.h in Copy src/core/lib/event_engine Private Headers */, + F8B5DB6EE4D2548F9CF6A7B6B5A0A426 /* poller.h in Copy src/core/lib/event_engine Private Headers */, + 8DBCBD96CDB283029950401B61E145AF /* posix.h in Copy src/core/lib/event_engine Private Headers */, + 899191C2279E7EB7DD08455431A3BD1B /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */, + BE9C7D7913A4694A934C1F75C34CD729 /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */, + 020B5EE539DBAA6B2B2ECB06907267B7 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */, + 4FFFEC56B9F1B068007A8D7E4CDC56F2 /* shim.h in Copy src/core/lib/event_engine Private Headers */, + 69D42851AD87827A775E89DE415CC151 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */, + 9C22713AC00AB636445ACB06DACCC59D /* thread_local.h in Copy src/core/lib/event_engine Private Headers */, + ED85C10BEA16D6287C844949754EFF41 /* time_util.h in Copy src/core/lib/event_engine Private Headers */, + 157F4321A5F0E054E8D1835B347519B9 /* trace.h in Copy src/core/lib/event_engine Private Headers */, + 8D0035A8AB0CBC85618C4E318EDE895F /* utils.h in Copy src/core/lib/event_engine Private Headers */, ); - name = "Copy src/core/client_channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9B6BDCB0446E9E066874C5DFF0BF0444 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - D5F816F9BD415916911102797DADA7D4 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9BCB3FBA5F73321B716B86F6E82B8008 /* Copy src/core/lib/security/credentials/external Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; - dstSubfolderSpec = 16; - files = ( - 2556E9D664D1BE67BABBD9219823ACD7 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 1E42F7425E350F0AF26BF66E6D6A9706 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - 3FBCE200BFDFEFD1ACEAFCA527FF55AA /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 71A61185504E9D7D2F40019164BA073E /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - A71B56A3C3B7A81666091A2C0B1BDEFE /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9BE2EE581D8753504D0D4051AABFC9DC /* Copy src/core/lib/debug Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; - dstSubfolderSpec = 16; - files = ( - AA6A63511ED707073C7160B380F51213 /* event_log.h in Copy src/core/lib/debug Private Headers */, - 8E03BC624D8B79BC958997A3C6B84E5D /* histogram_view.h in Copy src/core/lib/debug Private Headers */, - 9E754EB7BB0F05C8528E0CF09DA4FBC9 /* stats.h in Copy src/core/lib/debug Private Headers */, - 6349AD2FE08D8E78594D2076C51A525B /* stats_data.h in Copy src/core/lib/debug Private Headers */, - B68E3A9AC1FEE2D26CC03BFEE82198CC /* trace.h in Copy src/core/lib/debug Private Headers */, - ); - name = "Copy src/core/lib/debug Private Headers"; + name = "Copy src/core/lib/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 9C5F0BD930CA773405AE7E142BA49BA5 /* Copy crypto/err Private Headers */ = { @@ -14922,72 +15013,135 @@ name = "Copy crypto/err Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9CC1F8125B675760AEEDF6260E9E34DD /* Copy event_engine Public Headers */ = { + 9C92FECA49A161051C4B0793B7DC20C6 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/http/v3"; dstSubfolderSpec = 16; files = ( - E21798C3E71EFF923BEDF2632970D50C /* endpoint_config.h in Copy event_engine Public Headers */, - 3D44176F00E521CB2BE1A8FBBB860283 /* event_engine.h in Copy event_engine Public Headers */, - D897B66E82F080C88A2FF1C1241AD07F /* extensible.h in Copy event_engine Public Headers */, - D09056D829DBC24DAA1E0D329E69AC6C /* memory_allocator.h in Copy event_engine Public Headers */, - 745E00A339882E049DD9E80AC91DA121 /* memory_request.h in Copy event_engine Public Headers */, - D5A26F973C91C03C129367CDF3E7AE92 /* port.h in Copy event_engine Public Headers */, - 9BC8CCDC776D64C19315F3B951E80680 /* slice.h in Copy event_engine Public Headers */, - 15C1EF4B2CDDBE6CC63FCC4A9A2D4ADA /* slice_buffer.h in Copy event_engine Public Headers */, + 2E88EBE7798BAE795D25112B292E094A /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + F17E1BB0059F8857AE27C017AE727A24 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 602FE27E31903960178292BE20536982 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + DA22308EFF16619377447E35E74E07B9 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, ); - name = "Copy event_engine Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9CFD41D55C6E328351105FFBDB3FAE34 /* Copy src/core/lib/backoff Private Headers */ = { + 9D4E53A631A937D1A045D8F2D3169451 /* Copy third_party/upb/upb/port Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/port"; dstSubfolderSpec = 16; files = ( - 8BAFDC7953E057C482DD21EE8EFF636A /* backoff.h in Copy src/core/lib/backoff Private Headers */, - 4CF61CE6C2D25C8ABCF24B18C85FFB04 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */, + 39D287366D07D417F150B7EA9F0EA5BF /* atomic.h in Copy third_party/upb/upb/port Private Headers */, + 48C08CF5B77AC2A2E371A97082CEBC11 /* def.inc in Copy third_party/upb/upb/port Private Headers */, + C98E0B1A2731B07157D909FFDE815721 /* undef.inc in Copy third_party/upb/upb/port Private Headers */, + A8A4BC8F3458E0373B3949F0C8D7B0E5 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */, ); - name = "Copy src/core/lib/backoff Private Headers"; + name = "Copy third_party/upb/upb/port Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9D785B9B841282173B8091190A54895B /* Copy src/core/load_balancing/outlier_detection Private Headers */ = { + 9D62CB8C225C978B6E415929E61E959E /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/outlier_detection"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; dstSubfolderSpec = 16; files = ( - A0AFC8E7C4DE3C26F18A88CCCDF9B2F0 /* outlier_detection.h in Copy src/core/load_balancing/outlier_detection Private Headers */, + 6FA49816C09352E04A191597E5E1AEC1 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, ); - name = "Copy src/core/load_balancing/outlier_detection Private Headers"; + name = "Copy src/core/ext/transport/chttp2/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9E377CC0E917463EA1F726A79D7218C3 /* Copy . Public Headers */ = { + 9D79BCE8A0A34FD4E8CEF3F91D84E4D4 /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; dstSubfolderSpec = 16; files = ( - 4D116A2D0048579706E42148CB7B1265 /* alarm.h in Copy . Public Headers */, - 3CD87D07408873538955E4C9D018BBBC /* channel.h in Copy . Public Headers */, - 43F48A29EC253BFD6FC5229645C32AA7 /* client_context.h in Copy . Public Headers */, - 6F2DB8766211BFA8689320AA8DD8594E /* completion_queue.h in Copy . Public Headers */, - D88BED701798CC5FF84E743CB1FBDA07 /* create_channel.h in Copy . Public Headers */, - 4D9412AF7E802A0E9E7AB2521405EFA1 /* create_channel_binder.h in Copy . Public Headers */, - 12AF4A32FCA0749FAE629C7910104B62 /* create_channel_posix.h in Copy . Public Headers */, - 71D60F6EA828AB1C5808EB6A94AF0F72 /* grpcpp.h in Copy . Public Headers */, - 24C04C87B91A6C4217FD030BEBC0DB3A /* health_check_service_interface.h in Copy . Public Headers */, - F65EF1EDDD00400F6B704F86C495E9BF /* resource_quota.h in Copy . Public Headers */, - 4A0E9F271322A0CEAC2C44F666A602AD /* server.h in Copy . Public Headers */, - 04978E37693883F3E3EF448E3BADFACC /* server_builder.h in Copy . Public Headers */, - 41742EC00980B4D5D094FB081B2D8E2F /* server_context.h in Copy . Public Headers */, - 79EF34E68D93DE1B7A54AB3CCC988838 /* server_interface.h in Copy . Public Headers */, - 3129EEC9FC5AB45F65DD773ED42099AD /* server_posix.h in Copy . Public Headers */, - 25BC1CB027B538797A7A0F0D4F20B5F0 /* version_info.h in Copy . Public Headers */, - 778B56AF1A2C16B6EE34742F2D7192BB /* xds_server_builder.h in Copy . Public Headers */, + BABA643C7E026FF8F0117702AA9379F5 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, ); - name = "Copy . Public Headers"; + name = "Copy src/core/lib/security/security_connector/alts Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9DB0DC8BB8DF3BBB1F0BB5BA1B11B775 /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/metrics/v3"; + dstSubfolderSpec = 16; + files = ( + 720532A54853BF2550FC5F39CBFF6160 /* metrics_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 75081111FA06230E63875537E4F39430 /* metrics_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 1E36BA1574E811061A554F58F2EE0D86 /* stats.upb.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + F7B5ED5076188E1C4BAEE64835062074 /* stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9DCF7E2E12040C84769B9735DA6A308F /* Copy support Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; + dstSubfolderSpec = 16; + files = ( + 5355697FC25CCAF2A8AB78FBAA66BCCA /* async_stream.h in Copy support Public Headers */, + CDBB886E648845E47D7C6CEB1337AB77 /* async_unary_call.h in Copy support Public Headers */, + 960BA16F38846CE0D2A84149A4FC4D4D /* byte_buffer.h in Copy support Public Headers */, + 97D86EB7ED24913239B0B1C908B214B9 /* callback_common.h in Copy support Public Headers */, + D9E59D8FA5F9F9EFD3888605AE55B56B /* channel_arguments.h in Copy support Public Headers */, + 7D6EB043CB49099F48B1FE680EC7D1FD /* client_callback.h in Copy support Public Headers */, + 8F965FD4DDEBD5673FBD6A90938BD925 /* client_interceptor.h in Copy support Public Headers */, + F82477CF159E8A2A6C546C12F8CC0445 /* config.h in Copy support Public Headers */, + A4A0428F8EBFBC004EC6586165F6D534 /* interceptor.h in Copy support Public Headers */, + B0CE8561BF518C2EB7559100822F42FC /* message_allocator.h in Copy support Public Headers */, + 9E8338279E7C198B56F62B1AF3845E0A /* method_handler.h in Copy support Public Headers */, + 3DDAB080C3AC3ED1C1EEF80D23462173 /* proto_buffer_reader.h in Copy support Public Headers */, + 1EA8FD731621EA85D369740C0EA3E030 /* proto_buffer_writer.h in Copy support Public Headers */, + 5CFFECE411DB3709E3A3DD1D64C4FE71 /* server_callback.h in Copy support Public Headers */, + 3F205337CE82A3BC564647DE815FB8C0 /* server_interceptor.h in Copy support Public Headers */, + C7DEC6BEC5BB0E7085FE2A13704634A5 /* slice.h in Copy support Public Headers */, + 0392C16B16A67E9A668F8A5EFF6BA930 /* status.h in Copy support Public Headers */, + 59EB5494977F283AC814E228CA74610C /* status_code_enum.h in Copy support Public Headers */, + 3C1DF01E9116C0BBB92EE0AC7FD69BE9 /* string_ref.h in Copy support Public Headers */, + C83084401A2942F49B8A83B4FD103E86 /* stub_options.h in Copy support Public Headers */, + 8E1FAF599BF44863249CC7E45DE928B6 /* sync_stream.h in Copy support Public Headers */, + 24E56E3C0C018F3FD9A6C16DB8DEFAC3 /* time.h in Copy support Public Headers */, + E2EE408F0CEEEA59D46A2B43B21698C0 /* validate_service_config.h in Copy support Public Headers */, + ); + name = "Copy support Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9DF4CBDEF02B20FBB3FDB7104381C820 /* Copy container/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container/internal"; + dstSubfolderSpec = 16; + files = ( + 4205AFC0B6D84B502A4B5DC8681570B3 /* common.h in Copy container/internal Public Headers */, + B436634D49553E295B5F737CD65DF4AC /* common_policy_traits.h in Copy container/internal Public Headers */, + 855B1FF51278BAB21FDB3729FC13D3BA /* compressed_tuple.h in Copy container/internal Public Headers */, + 16FE29A860B2558B014C970EACB360F5 /* container_memory.h in Copy container/internal Public Headers */, + 47C072F25D148B65BBAB8EFEBE6774F7 /* hash_function_defaults.h in Copy container/internal Public Headers */, + 9115FA54F9C67C907C3B076CFE10B41F /* hash_policy_traits.h in Copy container/internal Public Headers */, + 5D4F741D14AAE2049C3CC278161BE289 /* hashtable_debug_hooks.h in Copy container/internal Public Headers */, + C37F0393F6DA00E194E30C263934E580 /* hashtablez_sampler.h in Copy container/internal Public Headers */, + 54834E47ED8751F80277FFB7368666EF /* inlined_vector.h in Copy container/internal Public Headers */, + 71A7FBB7FFC40648750EE0F12FA4EBFD /* layout.h in Copy container/internal Public Headers */, + DC99F5605C75715DB0BFB1047004F5DC /* raw_hash_map.h in Copy container/internal Public Headers */, + 7E7BD9729EEE53C6DDFFA03EA5427D90 /* raw_hash_set.h in Copy container/internal Public Headers */, + ); + name = "Copy container/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9E036874F5B429F62E119D673155B084 /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; + dstSubfolderSpec = 16; + files = ( + 5C0BA4AB6766A0408D22ADA4D860ED37 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + 682E1E54725007C5F836DCDCCD6FEB65 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + ); + name = "Copy src/core/ext/filters/server_config_selector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 9E4D8194063AA07D41B09A2B35B289CD /* Copy crypto/fipsmodule/sha Private Headers */ = { @@ -15001,38 +15155,59 @@ name = "Copy crypto/fipsmodule/sha Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9F089AC522613D3D8C174DFFB432E4BB /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = { + 9ECCE056A2DF5889E7616B34EDED958C /* Copy src/core/ext/transport/binder/server Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/load_stats/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/server"; dstSubfolderSpec = 16; files = ( - 58B06C5FD1C30BC813AAAD4DCFB68F64 /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, - 0B090A877C8BE36E0004A248E0D727A9 /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, + BEB479ECC340E6D0ADE938987CA7265A /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers"; + name = "Copy src/core/ext/transport/binder/server Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9F85BBF6962E1773156DB18BE23516AF /* Copy src/core/ext/filters/message_size Private Headers */ = { + 9ED614D3D5C259DB9FAB446489D45E4B /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - 6F12A205B4298284378B7E5C3B347E51 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, + 5C765D7F71E1830F82D46FD43CA7927A /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, + ADBE4B3261CF0759DAD2E67547705908 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/message_size Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9FB859C64A5BC0BE297158FEF8FC5C7B /* Copy hash Public Headers */ = { + 9FA40A8A896A0CCFE7E7C233218F5116 /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - 1E3F44ADBFF79E3CFA978FD25F03904D /* hash.h in Copy hash Public Headers */, + 25B40FC1DBFEEA1D5362CDA0B2F45B8A /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 13A0D72C45A2D3B2A92D35A02CB0A326 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 84A09355B559D3C6D527A5972AEDECFE /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 0FF95FDE16DF67C9DFCF0C208760F814 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 5B94755A891931D1C2E0137928FD5215 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + BEE189F4C1257DA242B99BC318BE9079 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 1E779D6178350C5A620001101E005592 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 280307BD31E614C03D3E018E8245E49A /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 85764BD97B106996D53512DD43F030F0 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 0348BAD7694A8366D0A2413CC7F3D491 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 53B3E38DEE720DDDA839D4E4853A3ED9 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + E20FEDF53FE7FA1D38DA915EAE887257 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 34686D3C01FC427E5454AF999AC2638F /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 5AC51561A43CC2BE489A5E0976519ADD /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 46ED73B481C67DFFDA0C043ECC7B44CD /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 6480D844DFC7A2431640CE779F2DE87D /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 3309CC906C5AC747EE0F7E75FACB6B2F /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + D06C3F6E31831C5668A4CF5E916A9F98 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + E450C6EFC01E963F795A625C046FF624 /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 1A0926341B299A92FE84D63F3E010FE8 /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 93F88B437D6CF8825CAF2B60F6C49BD8 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 28BBC7BDFDBF37C861DB42AAD6395332 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, ); - name = "Copy hash Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; 9FE59BDEE18408E45DBA67A3889AD19E /* Copy crypto/dsa Private Headers */ = { @@ -15046,45 +15221,6 @@ name = "Copy crypto/dsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - 9FEA59B99B34FF594E4D9D3DF7499B7E /* Copy src/core/resolver/dns/c_ares Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/c_ares"; - dstSubfolderSpec = 16; - files = ( - B728CF201051B0E0029DD854C55F2792 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */, - 08CFB6B54B84B7260BD269C87851CDF8 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */, - 8F4A91395F39EEF6D1B73CDD87972DDA /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */, - ); - name = "Copy src/core/resolver/dns/c_ares Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A0001289E7C8568AAA34BEBAC71ED9AC /* Copy src/core/ext/filters/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; - dstSubfolderSpec = 16; - files = ( - 699500C3524D126D536513189C48F496 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, - ); - name = "Copy src/core/ext/filters/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A04E080F29435AE3DD5FDE1BA4F3708C /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - 309F1BC43B8F3F2B5DAC902BB64A9C0F /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 22A1E65695CBC34385D32B5C11C42CE9 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 30D65FB709F8B7FE942505FC2F6FBC9C /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 939E0364B0B835DFE93C24A280B94136 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 9BE7B53FCA26082FDB6234224741D501 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; A0A1C672EE1343D40F4DE690BFA5E2AA /* Copy crypto/pool Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -15096,72 +15232,64 @@ name = "Copy crypto/pool Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A0AAC72AE601C75A688FD3596AB9329A /* Copy utility Public Headers */ = { + A0C96B08104C4C3B41DD629CA546DC85 /* Copy . Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/utility"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; dstSubfolderSpec = 16; files = ( - C0FE0A6563F9B787122DE43F8AFA291D /* utility.h in Copy utility Public Headers */, + CD50E0782FA29869F1EB3ABD1DD34D1E /* alarm.h in Copy . Public Headers */, + 39A1304CD002B09DC3FDBD82FC4CDC77 /* channel.h in Copy . Public Headers */, + 093EB2AD84875D082D9A73FB09702AC0 /* client_context.h in Copy . Public Headers */, + 820A7C534C4CFA796EE9651BC97C1F3D /* completion_queue.h in Copy . Public Headers */, + 924B22E65DF02D1A1F1D70FE8D062832 /* create_channel.h in Copy . Public Headers */, + AA85BAB31A49FDDA2D2E2F98F96F5092 /* create_channel_binder.h in Copy . Public Headers */, + 842149A1B3856E90B594611F9F11B29A /* create_channel_posix.h in Copy . Public Headers */, + 92D1450C7B36065E4B66117926DB2D75 /* grpcpp.h in Copy . Public Headers */, + 5309E43C2CFE29E1DC10DD85A27BE3AA /* health_check_service_interface.h in Copy . Public Headers */, + 9506AD210F8EA4BFC74FA917D8BD1589 /* resource_quota.h in Copy . Public Headers */, + 0559EE445F32DE2D9624BAD477FB4242 /* server.h in Copy . Public Headers */, + D41182FAAAE1FA5BA95DBD357DCE0942 /* server_builder.h in Copy . Public Headers */, + 26D9CE0822F1ADA6066CB4A7D0484525 /* server_context.h in Copy . Public Headers */, + 71B8702D7BF5659ED2374BB034D56EDE /* server_interface.h in Copy . Public Headers */, + F15EDCFA4FF4D89292FD1A7A7EF6AFD3 /* server_posix.h in Copy . Public Headers */, + 0DDADD0531F7B0F2974765595FA03E1E /* version_info.h in Copy . Public Headers */, + A5A74E680C6C2D30D46714CBCE0A3ED5 /* xds_server_builder.h in Copy . Public Headers */, ); - name = "Copy utility Public Headers"; + name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A0E8C855E2475629F96BA8DA3B280F8A /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { + A17BB2D7E7DFCB8C22E58E653F6F6503 /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 465D9E28267B58282A9BF9F2CD72FCD8 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - F7E47369892861C1953FFAF7C45E5843 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + EE95FCFB35640A53231762B90CD2C890 /* filter_state.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 103BD3ABBAB72D1CA577F021DE6A3F1D /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 68547F99222CA181ECDB95186DB92C10 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 123213A74A29A5A80F79AEBC5E96E6A2 /* node.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 1DE764E723DEC8CA18A64E7F8A4B9CBB /* number.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 2BEB0406389880CAA5A330D9C674CE90 /* path.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 8BA8BA906C562A884A9D635DDEF26512 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 9F302807251F58146638AAA44F7F7661 /* status_code_input.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + A83F258E9840A6087743AE5AE0037D7A /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 333B17A713193CC4DD42D369331C07E8 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 334A5C8D636527350D1F3E897A0F41C4 /* value.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A13DFAB277E4A899F28EE0B19E8A2028 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = { + A1870BBD247C6D02A79E641FE160BDB5 /* Copy algorithm Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/gcp"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/algorithm"; dstSubfolderSpec = 16; files = ( - D3D01C5B0D4276D94B99972A6E8376F0 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - A51A24C866CC8D6C904772D0F57C1DCD /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - DED1EA6206EDEA171FEB6A59762E5C48 /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - D2108B25D232CE912CA1BD35C319E948 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 03A6262E98FC948638E044B55436CA76 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 9BD8F5BD64616A9C9770897D42B3D022 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 1FC986C48AAF235DE2B7BC06F97B4007 /* algorithm.h in Copy algorithm Public Headers */, + DAD9FEC818082F028C7C82907BAE672C /* container.h in Copy algorithm Public Headers */, ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A14848E93722775519D41EC37A602BFE /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/health/v1"; - dstSubfolderSpec = 16; - files = ( - 0B9E6AD1350932CC1647FB60BDAB7D7A /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - 415F159E0066656A9E1294D3E2DF4FD0 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A2017932022FD12987D783077DF3CBEE /* Copy src/core/lib/resource_quota Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; - dstSubfolderSpec = 16; - files = ( - 1622C63E3997614A75D07DBC28E9BD32 /* api.h in Copy src/core/lib/resource_quota Private Headers */, - B37DECAF2FCF951B2C6784BA4F89BEC9 /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - CC0D1AFFCFFD011F72E12A3B644237C8 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - C87A5CD15FDC79660EE68583CA23751A /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, - 8BDF2EA4F4B60A7F7FC68969577879D3 /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - B5E6CAA9307D0F0DFB19BA0EC497CCEE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - F220916CF75E08F87A2CCA26CE30E1BB /* trace.h in Copy src/core/lib/resource_quota Private Headers */, - ); - name = "Copy src/core/lib/resource_quota Private Headers"; + name = "Copy algorithm Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; A210C03BFD00A2D59D91AD5F76BC0154 /* Copy crypto/chacha Private Headers */ = { @@ -15175,194 +15303,108 @@ name = "Copy crypto/chacha Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A234A301E7DA342F315D366324D3DF43 /* Copy impl/codegen Public Headers */ = { + A2C0ADDAA99C96AFEC3956764D714872 /* Copy src/core/lib/promise/detail Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; dstSubfolderSpec = 16; files = ( - 25DF4FF38E4E20BBA4F41E44B6DAFB4D /* atm.h in Copy impl/codegen Public Headers */, - DEAB3CED799DDE1BBD0C46BD6C7E2993 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */, - CF3A540523C9FB72250FF2DC7983B08C /* atm_gcc_sync.h in Copy impl/codegen Public Headers */, - FA69FBF74A68F9B42B91CA00B441C1EF /* atm_windows.h in Copy impl/codegen Public Headers */, - AA0752D003778B72AE3414FB937C41BC /* byte_buffer.h in Copy impl/codegen Public Headers */, - E648C6130606066326885CBFE4F814EE /* byte_buffer_reader.h in Copy impl/codegen Public Headers */, - 527C5ECE8E73483BD9C21C7082D1E606 /* compression_types.h in Copy impl/codegen Public Headers */, - 1618553B61B193EE38E7943B7FB4549E /* connectivity_state.h in Copy impl/codegen Public Headers */, - 25A06A8D3D1D14C31922676F7D6281DF /* fork.h in Copy impl/codegen Public Headers */, - 86C4A6F3A708516E0929FAB8812D5C38 /* gpr_types.h in Copy impl/codegen Public Headers */, - ED338CCC43E4322F269E1CEA47AF1AD4 /* grpc_types.h in Copy impl/codegen Public Headers */, - 061A4EF5E95AA10EA5C3D152B33EF269 /* log.h in Copy impl/codegen Public Headers */, - D18405F70819C83E0C517ED2E4B4DABC /* port_platform.h in Copy impl/codegen Public Headers */, - F8AD2D726664A1E6FBAC938277171294 /* propagation_bits.h in Copy impl/codegen Public Headers */, - 1F0DEA113482FD6E787987CEDBE6FFC6 /* slice.h in Copy impl/codegen Public Headers */, - 0DA4449CEA891A2DA3A2D0AC9F499828 /* status.h in Copy impl/codegen Public Headers */, - 8C1C4DD0881F46C00F26762ADC4689F6 /* sync.h in Copy impl/codegen Public Headers */, - B9CCC2AD10ACDC526E784D3EE3AB2127 /* sync_abseil.h in Copy impl/codegen Public Headers */, - 93A5119D06B480D164B736DD6FC4B210 /* sync_custom.h in Copy impl/codegen Public Headers */, - 61EA3A489EA32B98C550FE8B2920352F /* sync_generic.h in Copy impl/codegen Public Headers */, - 35381F9AB41D1BFD3379CDDE77F0F3D7 /* sync_posix.h in Copy impl/codegen Public Headers */, - 7D0293C3B13E41AFF9DDB808314A6EF7 /* sync_windows.h in Copy impl/codegen Public Headers */, + FC53A76452B5E0037B7ACBB113982E51 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, + B7A23CAB93E37120D50C735E2C750EAF /* join_state.h in Copy src/core/lib/promise/detail Private Headers */, + FDA891F8A5F1C1F366584FC4E7DF2E96 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, + 84FD1639B96221623C7A44E42FF8E466 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, + 4614D5B60ADE71CFC44BA7F5719A01D9 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */, + 17A553135700B1EB66B868CF00669B7D /* status.h in Copy src/core/lib/promise/detail Private Headers */, ); - name = "Copy impl/codegen Public Headers"; + name = "Copy src/core/lib/promise/detail Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A29F784E201CC8D12D4DA1D230E82301 /* Copy time/internal Public Headers */ = { + A31F36C372DDDC339D32E666935B7CC9 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - 2575F67A28CE854F97ED015A64FEBCE4 /* get_current_time_chrono.inc in Copy time/internal Public Headers */, - 6F8068A4DE11011C01CC4F55ECD81648 /* get_current_time_posix.inc in Copy time/internal Public Headers */, + E55D0CD5B76987874A20220E81A93A36 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 128F429F4D29C6168D9A51A4D6BEB6F0 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy time/internal Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A2FE1D0ACBF879B789C15F44B1BFFA79 /* Copy src/core/ext/filters/stateful_session Private Headers */ = { + A3D12FF56CE23B42E0D28766B363CB5E /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/stateful_session"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; dstSubfolderSpec = 16; files = ( - 018F0231103541A24137A60EDCD94D17 /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */, - 8ED734C847A7E04FACE4F9E36B9721A8 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */, + EAA5B28D55ADE914046487B284C10487 /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + 4D483F9AA9B229C1C389AF30809A0322 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, ); - name = "Copy src/core/ext/filters/stateful_session Private Headers"; + name = "Copy src/core/ext/filters/http/message_compress Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A32ABFFC8CC55DDB3CBA021A56EAFD2D /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { + A400ECBE894CCDB9EC73C07F2A81D2EB /* Copy src/core/load_balancing/weighted_round_robin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/weighted_round_robin"; dstSubfolderSpec = 16; files = ( - 39F8E886AA4C106327E49AE74B16598C /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, + 8082C0A9C34B22F37FF599F67413731E /* static_stride_scheduler.h in Copy src/core/load_balancing/weighted_round_robin Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/server Private Headers"; + name = "Copy src/core/load_balancing/weighted_round_robin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A342F2ECCF83C4B446593FFCD7EC6EB8 /* Copy types Public Headers */ = { + A44DEDEB19C14B6190358796FE86A0A3 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/core/v3"; dstSubfolderSpec = 16; files = ( - 3B6B2C5450E25687888E8D9C102D9F27 /* any.h in Copy types Public Headers */, - EE13162F30471659B679C4C2C8C8FFC1 /* bad_any_cast.h in Copy types Public Headers */, - A0F7EDD3EB760FD0C67114431CBFF44E /* bad_optional_access.h in Copy types Public Headers */, - AF96F8F7416853C3039A897FF6E2D475 /* bad_variant_access.h in Copy types Public Headers */, - E581986CEEEB21A0B65F66A044A544A0 /* compare.h in Copy types Public Headers */, - 67BAF6D3C6D5168D64717A0E8A0890C0 /* optional.h in Copy types Public Headers */, - BD118456D79ABE8510B124A4BC4C110A /* span.h in Copy types Public Headers */, - 19F594FFBADE97D9F585F37C67BF6CDB /* variant.h in Copy types Public Headers */, + 024BEBFCD8DD758F10EFDC126621FF26 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + CAFF993D2B736372BA576434756BCBF0 /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 0D58AB21CAD235F5E0389DE44A7A1B83 /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + BD6245E96244D0189AC947E6AE2ECF5F /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 17271DBD07A2527B7CD4F71EF77EDDC6 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + ABE04F001AE926E8576C0506CE166343 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 2112FC8C7ACFB29FE4DC7393C214CB5F /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + D1DC337E9A1C4ADE48E5B6E94FA5A544 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + AC64C8EEF05E64E8443F9F16C8939CEA /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + B82B48E06423997DA72BF6088940861A /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 8CE00E7C1C0DC75D38DB71E9E7EDE4B1 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + FFEE2C7D3C3B9516979B69BB2DD74422 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 3FF40F0936177EEAD2A93086A1365E82 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + DD5444D817F8855745172176E9BD4551 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 3570E2859BC0BDEFB49BEDEEE504B3C7 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + CC43CD4D4038B996C9D9831D43E13ACC /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, ); - name = "Copy types Public Headers"; + name = "Copy src/core/ext/upb-gen/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A34D0CC5328B14CC7A0013B84F4A41D3 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { + A502AA28DA996D1896AAF0D7F3B86DBF /* Copy third_party/upb/upb/base/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base/internal"; dstSubfolderSpec = 16; files = ( - 43449527C5440C707AAD1C104471B51D /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - FD9C7C903AC1225140DC9CA5443E613F /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 43230B254E73922921492EC15CED2964 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - CB14783FFFAF99E10B9CD3E1742BA7B0 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 2CA7DD9DE71B86A1C3ECE87116FAEDDE /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - EC1538721643C271C3344DD89C7F1FE2 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, + A7ED4282E46C252AF5A10F6A4C2B96F5 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */, ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; + name = "Copy third_party/upb/upb/base/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A3BE713286DC91F0F4959D57F22A3542 /* Copy src/core/load_balancing/grpclb Private Headers */ = { + A5F972F0667B0B90E3113A48F4B51596 /* Copy src/core/lib/promise/detail Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/grpclb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; dstSubfolderSpec = 16; files = ( - BBF41435E33CFB65AAD45B58621127D6 /* client_load_reporting_filter.h in Copy src/core/load_balancing/grpclb Private Headers */, - 566C9666918D1A36F75043F356F93F98 /* grpclb.h in Copy src/core/load_balancing/grpclb Private Headers */, - 568B68190EE80ABCD0221D180E70D975 /* grpclb_balancer_addresses.h in Copy src/core/load_balancing/grpclb Private Headers */, - 57AA55743C24244F9D25C25C423908E1 /* grpclb_client_stats.h in Copy src/core/load_balancing/grpclb Private Headers */, - 5CF7FDAE950F9D24FE9C8A85A544AABD /* load_balancer_api.h in Copy src/core/load_balancing/grpclb Private Headers */, + 6E6374C3D0D2A20E6722489CC73F1DA3 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, + 7CB7D52F2DC00FBEFC991C3D310C541D /* join_state.h in Copy src/core/lib/promise/detail Private Headers */, + 8B35F5FADB1138CF4ED6CE50E5788786 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, + B8C2C6F87146C13684597353F2DFB2F6 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, + 119B89EC6BA39C66F205B9FC6FD19B4A /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */, + 187FB55BBA7FD28BF59B1402EB8B1E8E /* status.h in Copy src/core/lib/promise/detail Private Headers */, ); - name = "Copy src/core/load_balancing/grpclb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A504E1D0099F7F4925FC4298DA6D95CC /* Copy crc/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/crc/internal"; - dstSubfolderSpec = 16; - files = ( - E04B4B97C3FCDAA9E4287E0C3E57C9DC /* cpu_detect.h in Copy crc/internal Public Headers */, - CFD73FBFD263932B9536F8B5028286CF /* crc.h in Copy crc/internal Public Headers */, - 16019B3346AB8D08DBBEB7201A938E23 /* crc32_x86_arm_combined_simd.h in Copy crc/internal Public Headers */, - 775B635E7BAA78B48810C11A56BEB1F9 /* crc32c.h in Copy crc/internal Public Headers */, - B0CB9D62F2720E5A9B3318C715A197DC /* crc32c_inline.h in Copy crc/internal Public Headers */, - 8C0E8C7BB6376ADFD68161C4C54C9E0C /* crc_cord_state.h in Copy crc/internal Public Headers */, - 51C6952C0FE49A25A4A2013485E6008C /* crc_internal.h in Copy crc/internal Public Headers */, - 6235C11D657E5A50D1E0CA310A7B167A /* crc_memcpy.h in Copy crc/internal Public Headers */, - E0C729875CCA84203BF7012324683948 /* non_temporal_arm_intrinsics.h in Copy crc/internal Public Headers */, - 22D4823F9DBD816E18C2BB82FFF3309A /* non_temporal_memcpy.h in Copy crc/internal Public Headers */, - ); - name = "Copy crc/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A523572C1EFA64507E310ED863BEDB64 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3"; - dstSubfolderSpec = 16; - files = ( - C3C1D4822951D3401F76577B06E7CC26 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - C37BB638FA15FA342B13DCAC07BED64A /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A58839F208D1334B5FBBAC9268AAC357 /* Copy time Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time"; - dstSubfolderSpec = 16; - files = ( - E7B3BAFC9332D4968824E73A5B28343E /* civil_time.h in Copy time Public Headers */, - 16D7BB2C85515030F3A73EC9330B6318 /* clock.h in Copy time Public Headers */, - 50693789EF7133FA6273240626DAF896 /* time.h in Copy time Public Headers */, - ); - name = "Copy time Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A5B98E728EC150112AD7A4D03D920DB6 /* Copy meta Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/meta"; - dstSubfolderSpec = 16; - files = ( - 54A66E05E654865165C318EDBDBC0EB6 /* type_traits.h in Copy meta Public Headers */, - ); - name = "Copy meta Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A6095AD38455F2D038EC40757B556181 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 591590E08EA4809D7BE6358AC447EBCC /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - B3BFB2865497B7F7FAE15C8C4E25A69A /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 7B6F093F96C00279236074C2D81810B4 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - F611822798980AE78D3C8C2197A9F731 /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - CC0C7ACAD5AF10B4ABD81C1563E8ED04 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 8041DF7889C334E2FDF48CC49482A607 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - BD94D214746222FF1D0C94E95B1E146F /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 708FFC9586094C149900B5DCCA27FF2F /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers"; + name = "Copy src/core/lib/promise/detail Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; A614DB6FD39DA79EDC37B93E30431578 /* Copy crypto Private Headers */ = { @@ -15377,19 +15419,43 @@ name = "Copy crypto Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A6806885D329E93230F95FCBB9A66D3A /* Copy src/core/lib/security/credentials/external Private Headers */ = { + A619BEBE352AE473D8AF5A87E0939F50 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; dstSubfolderSpec = 16; files = ( - D946EBA66BDEFA82FA0C331745A2966E /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - FB80575588E2BC3F4D541D948FC72F0F /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - DA639D3E03129E1489B9966F9AEDF3AF /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 671C1829B892F2017DA8587C8B926E89 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - AE730766449F5775687FD321D1C85F94 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, + 4C6BADCCC1F2AE148E614E88D8B1E1E1 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 205DEEFDD583544A4D8C9713283769DC /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + E6817F17671BD2CD14D868CB3541DC1E /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 2B4346EAC28D4797354CED18BEAD9984 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + 3DF8158DC3F43A4DF5558951DDF790F1 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; + name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + A66AE30EFBE9A44293E6A1E387A3CCF5 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/bootstrap/v3"; + dstSubfolderSpec = 16; + files = ( + 50EE5D7F76E88AD9C3519729015DDB2C /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + DDDA22AEF415656F715F790888D89B88 /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + A679CF3C2AA729B21B0904ADFD3A2B36 /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/common/matcher/v3"; + dstSubfolderSpec = 16; + files = ( + 8A8E881B960727986F670270B3872E98 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, + 45AB1E210D70A68E786219A2F3FDE902 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; A69BBA6F84A7E4A952B8816AB11D4E02 /* Copy crypto/fipsmodule/rand Private Headers */ = { @@ -15405,328 +15471,338 @@ name = "Copy crypto/fipsmodule/rand Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - A78A8452022E274A7405ABCE2ED9A983 /* Copy strings Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings"; - dstSubfolderSpec = 16; - files = ( - 5D1407E80F99F6E9F19A990753345C65 /* ascii.h in Copy strings Public Headers */, - D36FFB5D301CEC9255FFE6DDFBBC136A /* charconv.h in Copy strings Public Headers */, - 1054A416F24A5C0FD7627D993E5C0106 /* charset.h in Copy strings Public Headers */, - F15A682A06E0AFC578CCF590EFB70930 /* cord.h in Copy strings Public Headers */, - 6E74A1F7AD4179DCB3BC43C4715803B6 /* cord_analysis.h in Copy strings Public Headers */, - 8D426EFBD3E73E0F2647D1294FEC41B8 /* cord_buffer.h in Copy strings Public Headers */, - B77B7AC552444B660AF89FEEB23679A4 /* escaping.h in Copy strings Public Headers */, - CDDBAF43DE7F524CB4BE756646435BCE /* has_absl_stringify.h in Copy strings Public Headers */, - A2FC9037578FF9563C439BAA520C74C7 /* has_ostream_operator.h in Copy strings Public Headers */, - F8BD557EB8E1F51697B8BD7B68DB97FA /* match.h in Copy strings Public Headers */, - 5CAFB33C0385D13401A3C0165DBD2B31 /* numbers.h in Copy strings Public Headers */, - B7F9DFCB5F5CC18FA156AEC7C2A60A77 /* str_cat.h in Copy strings Public Headers */, - 401C68C84A6FBD3086BF6AB39705DD8B /* str_format.h in Copy strings Public Headers */, - A96464FAE8526FBD85E94C77BFA72C64 /* str_join.h in Copy strings Public Headers */, - B86A2A3BB876C98A2E909DE20F1EC5B6 /* str_replace.h in Copy strings Public Headers */, - 8B575618C599F909A3A70147B295B2DA /* str_split.h in Copy strings Public Headers */, - 407097A35C012B2F5FEB1B5C0DE7C812 /* string_view.h in Copy strings Public Headers */, - BF5E80D020F41464298D490004D622D2 /* strip.h in Copy strings Public Headers */, - CA3D52428D52205CCF2C3E1D5E9764D8 /* substitute.h in Copy strings Public Headers */, - ); - name = "Copy strings Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A7F5319FAA41BE19F372B4683684B09C /* Copy third_party/upb/upb/mini_descriptor Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor"; - dstSubfolderSpec = 16; - files = ( - 4C550E2EA71200A90501F79D4DD6970D /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - 4B35C5FF3BE83E43EF00CCCC14A6E361 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - 08E0D47766F88790EF7048747689405D /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, - ); - name = "Copy third_party/upb/upb/mini_descriptor Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A7FA8BE5BB7F0FCE878DFFE985DE9958 /* Copy third_party/upb/upb/message/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message/internal"; - dstSubfolderSpec = 16; - files = ( - 3B2459B1E573524C4CB49E0882E3E71E /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */, - 5F47869FB278CA493917EC30B142E612 /* array.h in Copy third_party/upb/upb/message/internal Private Headers */, - E5A98E5E79DAE72564F1EBD898626052 /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */, - 2C9347963D249562F9001F2F2E94DA63 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */, - FADCE9823463FB5DC957B0BED0A4F256 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */, - F167B0C0C7F2008219CCC40C36D34609 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */, - A73A4A68423F62F7E7FA68E1F4323A0B /* message.h in Copy third_party/upb/upb/message/internal Private Headers */, - 88ABAA75AB16332BDF7F6FD8FB97E7A8 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/message/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A883DCFA66814C2415A1A84F139EC5D9 /* Copy src/core/lib/event_engine/thread_pool Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thread_pool"; - dstSubfolderSpec = 16; - files = ( - 0DEDD26BBF74BAF53F9FA1E00885C365 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - 949D8236589A44359ED76F6377E64ECB /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - 960C81276004942ED11D250A024BE072 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, - ); - name = "Copy src/core/lib/event_engine/thread_pool Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AA446DBFC1B9794B0EFF4A7248B5477C /* Copy profiling/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/profiling/internal"; - dstSubfolderSpec = 16; - files = ( - 7E411DC8A0C94B9AAF853601D1247D14 /* exponential_biased.h in Copy profiling/internal Public Headers */, - F7015FC9999CA4DE016991A4DB401BC2 /* sample_recorder.h in Copy profiling/internal Public Headers */, - ); - name = "Copy profiling/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AAA1D14A3CAEAC0BFBEB83054A3D2C0C /* Copy src/core/lib/config Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; - dstSubfolderSpec = 16; - files = ( - F0C34AD33A5CBFB7E22EC8C6A38CB8CB /* config_vars.h in Copy src/core/lib/config Private Headers */, - 4A3CD911C2C740DF472CB3C091A5EBAD /* core_configuration.h in Copy src/core/lib/config Private Headers */, - 9611D9E7DC0DB70D95F5C24B156930BF /* load_config.h in Copy src/core/lib/config Private Headers */, - ); - name = "Copy src/core/lib/config Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AAAD6BA6B2CFB62F8213EB58792A7BC0 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; - dstSubfolderSpec = 16; - files = ( - 422A9ADCA63C76586061ACB6D091339B /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - B41A529CC6D2FFCFFE473F117F9BFA4D /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, - ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AAB242D7E1E8C7E39DF938EABC5F26EF /* Copy src/core/resolver/dns/native Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/native"; - dstSubfolderSpec = 16; - files = ( - 78F4E5AFDCBDCB87F94478772E6C9050 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */, - ); - name = "Copy src/core/resolver/dns/native Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AADC6A385FEB02AC057D9A56F68C3B51 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 415AAF8AB22DF4E226C098865DD2598B /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, - 064DAE9D80BD9A79A4005595DAF04E74 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ABBC5BDE4F2301EB09B849B01FA9F987 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = { + A6A1A5125DE7B32605A487E571924AA5 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor/internal"; dstSubfolderSpec = 16; files = ( - 0E7BD2CE0C6DAF35493638C4B527949F /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - B64F36DF78CFA68939955001B41994A3 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 387DF2542426C29C2FDB93E366703DE5 /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - F44AAEBCDF8C0D2D46BCCFE43C1A9E72 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 13D4C435BE4D9494F9643F5DCE138766 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - C1FAE7097FD7BE61D5E02D8E683C48A0 /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 0F3E95EA9AE43BBBFD1B57CF3B3FB41E /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + D6FB7942D70FE8FDA557EE41D8F4E382 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + C4E27B7D626A2119FC9CF1AC997DFAEA /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + B7A755E33F11B43866AFBD76C4BA2079 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + EDA7F21AA193156F466703ACEB4AE228 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 5EB49F5BE103D2254264130784777F1A /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, ); name = "Copy third_party/upb/upb/mini_descriptor/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AC64150CA72148A99C6C6A3CEE221EC7 /* Copy src/core/load_balancing Private Headers */ = { + A701C502523EE63A4BF2322ACF0692A3 /* Copy src/core/lib/event_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; dstSubfolderSpec = 16; files = ( - 554D545082C9A594AFEA380C4AF98DAE /* address_filtering.h in Copy src/core/load_balancing Private Headers */, - B714C789B4E94902014F03A4795611E7 /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */, - 9F963530668FE8E97B31C63901DF200C /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */, - BD761158CDB67408A1292D00AD0C4DA6 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */, - C43F9DFF7A9951E3F6CEDC7CF42AB0EB /* endpoint_list.h in Copy src/core/load_balancing Private Headers */, - 2A6FC44316EA8A9A6FC9FCA2D5A1B546 /* health_check_client.h in Copy src/core/load_balancing Private Headers */, - EE500487781FBC426104F645F8FAB0A6 /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */, - ADBB1F1389D7ECDA083B9EF585C64A1C /* lb_policy.h in Copy src/core/load_balancing Private Headers */, - EC32CE4FDB64B7364EA5F7D31DAF183A /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */, - 42075EAE7236067907F81C5232481C0E /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */, - 641BAB58170590E8691D51DB741A2AD3 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */, - 7C34FFD1F3213D525B0BEA31D4BA2AB1 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */, - 17A6A72315573DD7718D40D6FA6C2313 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */, - 21602B75E84715E700C1791EC6A73C1B /* subchannel_list.h in Copy src/core/load_balancing Private Headers */, + 5BBA3B9F4B4EDA3B7567C1B93332B28E /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */, + F4EA64FDF87EE42A844124EB559F6DDB /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, + 9800DCACD9544882C1FB598141493AA5 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */, + F4DD78C7D0884E75F7B67D37657F8A65 /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, + 3BE0401C7585E5DDDEFAC211C2AED79F /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, + 04EE787BEF3F1BDD62D4C67C022AAF60 /* forkable.h in Copy src/core/lib/event_engine Private Headers */, + 35C243CB2690618F461DB61EE3CCE242 /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */, + 3F54F6B19507762B409377F7C4940354 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, + 8A7885EB72C009553B37D8FA5EA4E46B /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */, + 27A8898A180ED5008CFCE2FE924982B2 /* nameser.h in Copy src/core/lib/event_engine Private Headers */, + DFE82F0BA5940205E7367D4579449443 /* poller.h in Copy src/core/lib/event_engine Private Headers */, + D98DC598DB4B4A407C0DE5AD24F4DA8D /* posix.h in Copy src/core/lib/event_engine Private Headers */, + 53C762DEE4DF4F9D7EF4BC85079B745C /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */, + 3563FD29EBF57635EC0E3C99115A87C8 /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */, + A1CBB5C8B3E4BE9EAB7C34D93288E2F8 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */, + 3F839512755F36B328C00E056B8910D7 /* shim.h in Copy src/core/lib/event_engine Private Headers */, + 9161CB456A731D64FF251F0AFE253052 /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */, + E8977A6B2FDABAAA8B1C2F841D757CE2 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */, + 1D75C48E6E72CBE503C85912A03D1DB0 /* time_util.h in Copy src/core/lib/event_engine Private Headers */, + 2F7E8E35E08A038F10A65DAD18E8FF1F /* trace.h in Copy src/core/lib/event_engine Private Headers */, + 01D731F1DAE8FB2C88DFAFB134B0B0CF /* utils.h in Copy src/core/lib/event_engine Private Headers */, ); - name = "Copy src/core/load_balancing Private Headers"; + name = "Copy src/core/lib/event_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AE50A7B5C2D76D83F54BFCAC965AF7F7 /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { + A76674C328EFF6357185CA52C8CDAE94 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; dstSubfolderSpec = 16; files = ( - AE3FE281F6015D82930E8B3AA0AA3A02 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, + 93AB29BE44DD01E1FC5C30FB898F184B /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, ); - name = "Copy src/core/lib/security/credentials/insecure Private Headers"; + name = "Copy src/core/lib/security/credentials/plugin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AEE7AB13743919B2447C76DA13C9763D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { + A79C14AB85D1307F15F33D5DC7B524BA /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 90ED2FC1BF8561BB1D594E26B9C7DD33 /* http_connection_manager.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 7BF55F8CF20AAA19AD71E86D85654E8C /* http_connection_manager.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + E0A81AB25C7FFB3ED51ABF0A5E047272 /* deprecation.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + 3B3D3C4E533F60A5E081332EC25EEA43 /* deprecation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + B18677A2A9DF1C7383EF7E743C0E1FC1 /* resource.upb.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + 73D02620878FEF3833FDF3A9092EFC0B /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AFE3826E2F35328402362472CD36598E /* Copy src/core/resolver/dns Private Headers */ = { + A7B654A0C7379AC631F5E9CF5ADB7F76 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/data/orca/v3"; dstSubfolderSpec = 16; files = ( - BDCEA379E91906E7A3C3A42C9E91FCA4 /* dns_resolver_plugin.h in Copy src/core/resolver/dns Private Headers */, + 93F5BBBEE5FDD57341D324531F342BEF /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + 079502396EE4B8454AC88E2A066BBA06 /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, ); - name = "Copy src/core/resolver/dns Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - AFFD1D5F629CED8AC206C5710C763257 /* Copy src/core/service_config Private Headers */ = { + A878AECCDC582AA04DFF1EC28138A705 /* Copy third_party/upb/upb/mini_table Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/service_config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table"; dstSubfolderSpec = 16; files = ( - 9FF0C46BD1E80A1A79BE4C1512D7B327 /* service_config.h in Copy src/core/service_config Private Headers */, - 88C8BDA855ECD4FA8AF041D8FE9600FD /* service_config_call_data.h in Copy src/core/service_config Private Headers */, - A8B9BCDC0101FEBF2274B8D7BCA04BCC /* service_config_impl.h in Copy src/core/service_config Private Headers */, - 6119CA59CC4AED7D8395995F28E4A9C1 /* service_config_parser.h in Copy src/core/service_config Private Headers */, + 2E4D57302A4D0232A07BBF7D3ABB99B7 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */, + 3EEC383BC368C98151A06A2534C548C4 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */, + 3322C35768F83C5A6CFFEBE9C89B0C14 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */, + 1E50613E45C14EE1C5571FBAE668F155 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */, + 910BA11F28A0A2360E5037D0D7DD19A0 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */, + A3D603EE80AB695F919E061B96D82799 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */, + CB61A0BE53342F90E7E809C3A798B517 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */, ); - name = "Copy src/core/service_config Private Headers"; + name = "Copy third_party/upb/upb/mini_table Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B03F1E126120FE11450CDC46D8547F2B /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { + A965EBD3EE5719740A689477B11ECD70 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; dstSubfolderSpec = 16; files = ( - 9AA22ABFBD5748DCF3FB8E81F1801CDC /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - C842A799F70C60183FDFD8AAF91224DE /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 1A892C4ACE1F7191C1C570A47E0AEFC5 /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - E471955BC92C6150D6E286AA9B44C18A /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - D439A05EECBD22EDD8C5D0B0CD8214C9 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, + B661DC34EEFB963D6A9390D4649BFB64 /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, + F207AA38CC517F3CC521E584FB301646 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; + name = "Copy src/core/tsi/ssl/session_cache Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B168CD8CD107F2D72DC2E09F1C286D8A /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { + A96FA445B8A6ECD2242592B0A71565B5 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/rpc"; dstSubfolderSpec = 16; files = ( - 3F1B10DFDEE57ADEE51E4FE9181E85B9 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 97CABFFEFF49D319570648FCE009C070 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9CE60DDD36B5F3ED740CFAC7F911D29A /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 278A52E52794982C79506DCB13CF0B20 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 3F9527E7CEBF7B8437977A21E1E11FCC /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D0997FAF78FA861138C358446A381D31 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 97A79B80B9E9BDA3E2CCDF14EC22F884 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 933F38076D296CE504F7DC309EF4EFAD /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1457CD912DAA1827CC7943DD4268C995 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9F1CB14D61EA47A5F669883FB20BCB16 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - AE29A8B01EF8681FE32004956E5A28A8 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 5B18E673DBE792CA1C973668B47FC7D7 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - DA37A492FA204B9BE277D32D3BD125B0 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F7BABA829BB47D112715E7770C7FA1DB /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 829E7E17A98F92E2D44E73AFF15FBB72 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 53A5E18D4ECE523B5430730FAD92DC19 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2BC381F9485D9726F4A4490DA1FC29EC /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 66E5C1567BF3E29E6380EAB63865F3D1 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 59044903D625B81DEA63B64875A191FF /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1F1078E8179B2E79A68213E3F9BF0CDE /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - AC0F6A9312083492BB4BBFABE732801C /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 6DBD568480A3A51BCEF8B0F03D9238CC /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 26731A058FB76BD5AA7D8BB390245CBE /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 016CF2DB322957C2EF5F47D239ACA2BD /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 7B9AC06030D556E03E97D1D98733FA46 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - BAB3CC7F56A337A64DBB2311DCAC979F /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 0C17E4FF14CF44C5CE6CE78559D8B78F /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 369195CEAA3C90811017E6E036C46E00 /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 0C7A73785F41E171C6497BC08908A1B0 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9F4CA14874FD5A7561FBB3CB92368E13 /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4E91C903E92150DD162A824A581F1850 /* status.upb.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, + 06C0E19AA9EE1FD4FC978D3F67FD94E6 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/google/rpc Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; + name = "Copy src/core/ext/upb-gen/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B22DEA72BAED37377F8D2642A749856D /* Copy . Public Headers */ = { + A9A7FA150E289ABC5B0E057342C6D5FC /* Copy src/core/ext/filters/deadline Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; dstSubfolderSpec = 16; files = ( - 52D7238CC058A0B67B704FD1C14A4FA6 /* byte_buffer.h in Copy . Public Headers */, - 245B7E84E9F84E50B91C29DCF99C07E5 /* byte_buffer_reader.h in Copy . Public Headers */, - 97D4C874ED84183FBF627F5B1A927EF3 /* census.h in Copy . Public Headers */, - 03AFA9D1A07552C4721B6C7E87E1AAD4 /* compression.h in Copy . Public Headers */, - 121DF2F36D81820BD1F5563D11E70D3A /* fork.h in Copy . Public Headers */, - 8260E695CEDCE177A341393E30DEE9DC /* grpc.h in Copy . Public Headers */, - 1EEB8082E86B3E1591D6119DBF468E5C /* grpc_audit_logging.h in Copy . Public Headers */, - FB1B414689C8FA700EEBC306F9A2DCA7 /* grpc_crl_provider.h in Copy . Public Headers */, - D532146FB9BB372A59EE9BCC829BFD4F /* grpc_posix.h in Copy . Public Headers */, - 767B73C9E76BE8852B2B6774FFB3869D /* grpc_security.h in Copy . Public Headers */, - 0D348927E1E50545AF80ABEB9A43F37E /* grpc_security_constants.h in Copy . Public Headers */, - A093ED32D270C170396A42E53B39E665 /* load_reporting.h in Copy . Public Headers */, - A873FF93530825E84E00E6035C0B6E5B /* slice.h in Copy . Public Headers */, - 994C311535F60D758DA5ED1C5AECAC36 /* slice_buffer.h in Copy . Public Headers */, - B6A4DE4F533EFA2C091D60A372A85585 /* status.h in Copy . Public Headers */, + DBD5EFA096E73FCB5CA22E2B54264F53 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, ); - name = "Copy . Public Headers"; + name = "Copy src/core/ext/filters/deadline Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B244D6247D8AAD28901AC13BAE33291E /* Copy src/core/tsi/alts/crypt Private Headers */ = { + A9EAC7E41C61BC7950EB1A82EE37F33D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3"; dstSubfolderSpec = 16; files = ( - 15002B55FF1FCD8037C61B369A5C6C8E /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, + E516D265E7A48180E5E396CA11B313F8 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + C9D2FCB0CADAD26172BD73D28A0A79F1 /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B29F3BBF079142319D9F06E80E2A269C /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */ = { + AA013EC410EB57DBC4EC90D98E365A89 /* Copy third_party/upb/upb/wire/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire/internal"; dstSubfolderSpec = 16; files = ( - 0B986CA50105B75871C9F80120DCD9B5 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, - 975B3C300C57BB6EA633C98EBB28B0F6 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + 837257D384FB3151902B55D2BB5A1EBB /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */, + 9E3C8CDB0CECEA4A65CA956FCD6D0713 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */, + 04944F72D20D328380E59DD09EA966B0 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers"; + name = "Copy third_party/upb/upb/wire/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AA1DB7C7B06F5CC89B33B541C3F120D5 /* Copy src/cpp/client Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/client"; + dstSubfolderSpec = 16; + files = ( + A7C5D86CB6A38BF92435DB78321AAF9E /* client_stats_interceptor.h in Copy src/cpp/client Private Headers */, + 3CBB86CF125C5BD14574F000A8A4FA5B /* create_channel_internal.h in Copy src/cpp/client Private Headers */, + AB79FFE8E2402D3E8BD40ADFE0874F74 /* secure_credentials.h in Copy src/cpp/client Private Headers */, + ); + name = "Copy src/cpp/client Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ABB17367EA7E0E5BF3EDBFA1103D20C6 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/matcher/v3"; + dstSubfolderSpec = 16; + files = ( + AC61B115135C0CC01F9D34B805829FCD /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 7E1C6072CC142ED0C3797586487C445B /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 7BD57496EEA20B0C22A0372A50A4CEA8 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 9CA85C6D6859F40A7A8B265EEE04B5AE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 71613517E630D5107E84682631C92662 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 25C976ABEA04BD95827240C608339A21 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 36FB86BB065DCB1AA06D7835F5E4EDEF /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 95DA62F41EA41DC72729E462F765FDDA /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AC139E1599419EE9909C96D64B5378C8 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; + dstSubfolderSpec = 16; + files = ( + B5738DDDAAA6B100103399AB17E9B58D /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, + C9B778F96DD57893E7F991BB7F5CD0D5 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 5273D236CE775C4C07B99B6E9715806A /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 508C7CF29E47ABB7DD10C5D3829CAA2B /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, + AFCF95DC6DC1F14F0A44A9741F49AF03 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + CB703FFF61FC79A08B6D8B9E8EDF10AB /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 7F64454A8303253CDDECD710425B362E /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/tls Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AC4EA86D1A2F8DAB4F097E65454A1E63 /* Copy src/core/lib/security/credentials/local Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; + dstSubfolderSpec = 16; + files = ( + 835CAE82032D252267B40102CF69D1DE /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/local Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AC643B92D1C5D794791CCF9F220617DA /* Copy third_party/utf8_range Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/utf8_range"; + dstSubfolderSpec = 16; + files = ( + 5DB81AED3388EBF1060A03456CF12AC5 /* utf8_range.h in Copy third_party/utf8_range Private Headers */, + ); + name = "Copy third_party/utf8_range Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ACB40B4064FFF13E918EB831C76D09CA /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/admin/v3"; + dstSubfolderSpec = 16; + files = ( + 538E1AD10A6036354BFF05688FB9ACA3 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 9DA57C0648ADBD9EA4B4D3A9CE26E87A /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 3E6805937A22D30B6E892C27DDC5C46E /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + F92D28AAD66ED6F1C8796655E26004C2 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 530A3507F0982478F4A40C37638C4D15 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 5E5BF9E5DF7096C8D324DD589365537C /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 008BC76D4640C373B4ED31EAE52A05D2 /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 72F030516CB5AE05055CCD601FBBA20B /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + F1FAF6D0428D82B99EEDA9BD8841007C /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 9BBD95034C8195B0D9183E1902F196A4 /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + C0AC11509F7802C1BD699224FE08318A /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 7F8CC213DBB0F846566F1D8019A2C07F /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + EC675FFE08D3FC47D18236AED27C97C9 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 48B06FDB9B4166B255EE027381455446 /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 2E34326EF434E7FD3509BA0460C39DC3 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 2A8B8B797FCBB0C7554385BF27CBB99C /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 545659B9593CC74B8AEC0DC660670474 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + AF40A954A64F5E419912D25AAFC37131 /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 4E66D62842712244D1A530255C6B704C /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + A11493DF9A6DF7CEADBB3BB121534974 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 8FFEEA2A67E9CB4AE094FC07F4B7598C /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + EBB6C82E12F6D8303C09164924EF1304 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AD99E555E5DC1EBA2915334C2989ABFC /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; + dstSubfolderSpec = 16; + files = ( + EBF87B859B1D4CFE53CB6D5CA3D47349 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/tls Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + ADF1D7EA6D8FD3DF4DA289AEBEAEFA81 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api/expr/v1alpha1"; + dstSubfolderSpec = 16; + files = ( + CF3DB48FDC89D75147637C19C89321EE /* checked.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + B06F891B27ABF32659F161E190D14B9B /* checked.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + FC500CC0D4B1BDAFD1F7B257D40B60E9 /* syntax.upb.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + 3B7D39CC1A855F9D35E19DE03E51E824 /* syntax.upb_minitable.h in Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + AFA1ADE649BE309129FDE0FF8D185B9D /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/lookup/v1"; + dstSubfolderSpec = 16; + files = ( + 8CF150F9BBACDA8524F13F8F0740A6E5 /* rls.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + 5F562CD4FC27EC0C39FC27173D9DA089 /* rls.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + 9E9DF931F47033C04FFF1352E2AEAE2E /* rls_config.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + A1ACF23809DC5B0F576270E6E2460C5B /* rls_config.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + B132AB81CD249482AC4AF9A8DFE57CB4 /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/trace/v3"; + dstSubfolderSpec = 16; + files = ( + 4BB1D17D70901258FB5C7B847D0781BA /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 3787CCD2DE4EB56A9838B044EE249A41 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 7551ECAFF6163945420721313CF8974E /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 4AE16C80243B084CD02F9B245C83C7C4 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 831D92F2476C640E032971733C998110 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 7BFA14FDAC88B7DDAA6728918B2D3586 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 9A071AD8E0EB7B2DC97AD8AE0E4D3BE5 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + CE6B57EA9A9FF0CF7BE45D341DC2B38F /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + BB0D7ACE5EF413E9258A925C4E2EF6AD /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + D23942E57486C5A5E3F2C431DA065528 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 9B057379E97AF6179B7C26D4554DA909 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 1EEE20F9D06D98C869A9BD17FB00A2E5 /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 928CADC3BF883712382D13A1D983D1A7 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 9B603B89C4D1B16758AD285B9BEE9DC9 /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 6AEA99EE7603AE241841E19D466F0C91 /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 1EDF69AB9711C47B01F953254605240A /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + E54C3AA0C6927AC14F6E95A7B74CC509 /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 09CB3F542C83C197389369114DDCB81B /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + EAD5A60BC340496F618AA0AAA2E888F6 /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + DA87809BB6E9976AC7C93F01E3A7E20B /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + D2212C3126F05ECA9BE8D006B2EAD1F2 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 8B331CB680B11E47B85004A39D40722D /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; B2FFAE2EB095F0D50A5EDC52EC4AD323 /* Copy crypto/hrss Private Headers */ = { @@ -15740,30 +15816,43 @@ name = "Copy crypto/hrss Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B3C2DE9C61EBCB0A201D43ECEC5C3237 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = { + B34733BD6EF4A94374EB2A842F050617 /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/core/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; dstSubfolderSpec = 16; files = ( - 3D2C933DB934CC1FCE43CB061F5D75D7 /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - FB9B2FB77C39E5B5483D27A485D596CD /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 10996434F94B440636B96CB558031001 /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 9795F4BD0D1BCBBB9EFCAB7E9F0C4372 /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 92625942D9AB4920EE664AF8DB2ED232 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - CD01D8101B65185098B81CBB68D5F6B8 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - DE0315D8EE63A1DF8042766CA3961723 /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - A9CA5CF8607DD5D3CA8AA7BC40B74EE4 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 95E41EC37CE721E534D0AC7092EB8E04 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - BC2A1FED698A214EE596DE236156DD01 /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 79C8B46907CE544E5820BBFE17198C04 /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 90CA10ACD6B539B46162C2CA2D22C63B /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 335830133406A10A174852E5BF6C3182 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 8D7D9607C407F1BF02B3C92F14C68FF6 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - C183B72C20D0B95AD9B012AA7FB74488 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 824BEE15AD97F29456E0EC1CAE594201 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 69EAA07DECC9D32DB8C40EBC6D927E0F /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/core/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials/ssl Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + B3AA1DACF4E21A20BC2A539455A7E7B1 /* Copy third_party/upb/upb/mini_table/internal Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table/internal"; + dstSubfolderSpec = 16; + files = ( + 24C082FC3F96FECBE4370F1A78487AF5 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 89AD56E34226C3B7A07710AC4B66FFDD /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 1CD378DDF01F71466788D5CE713403F5 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 4914D5140A0DC55A536D49B59FF30C49 /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + DA83FB5C0DD14AA6AFFD12611F82A537 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 79674A05F4638761EF38B08C9873A038 /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + ); + name = "Copy third_party/upb/upb/mini_table/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + B4044576CD0296998D64E09C98E1DAF3 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; + dstSubfolderSpec = 16; + files = ( + F063B2BFDBA92B686059E205866ED7C0 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, + 042048315392E6B8AC4FAC5A399955A8 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, + ); + name = "Copy src/core/lib/security/certificate_provider Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; B435D4070EC0B2F55D7B761D22237D15 /* Copy crypto/keccak Private Headers */ = { @@ -15777,542 +15866,335 @@ name = "Copy crypto/keccak Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B44F22E861C676DC59989023683845C2 /* Copy third_party/upb/upb/message/internal Private Headers */ = { + B461E7D024F09A3371A85D23A2DC771E /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; dstSubfolderSpec = 16; files = ( - AC2139CFA726CC23872B8656E4ECDEBF /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */, - 7FECD220986E1EC7EC682B410CB088B5 /* array.h in Copy third_party/upb/upb/message/internal Private Headers */, - 3E64728E32DD411CCB1F6955B98569CC /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */, - 20B74921CBCEFFFF4A821AA345967157 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */, - F466B92A588703FC199D02A893291BCC /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */, - 1527CEB42D86AE7F03B5296B869A2907 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */, - 27CFFCB3BED258AC3F3E09E3963CC0BB /* message.h in Copy third_party/upb/upb/message/internal Private Headers */, - 84C72B24431D1D644B31B5657E16F78A /* types.h in Copy third_party/upb/upb/message/internal Private Headers */, + E4226E8223C4F4475D90E4D7067295EB /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, ); - name = "Copy third_party/upb/upb/message/internal Private Headers"; + name = "Copy src/core/lib/security/credentials/google_default Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B4A06F057DDB80DD03E4B84874F11393 /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { + B4AA20D9FDBCBE42DAD0765DF6BCE280 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/gcp"; dstSubfolderSpec = 16; files = ( - 336A62BAD5F8760B4A49C43606428870 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, + 82097F9E1BFB0D93A10943F2B72A2923 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + BCAA4B095B2009CAD40DD10AC52B3EC3 /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 448EE2FEA8C3E5C79FF9046F01EC285D /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 5C02D3D16625AB58A18AAA22FB27C955 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + E7408485B58643962A6BE9EA2F798CF7 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 60691D4496F88694DFF187D0470534CA /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, ); - name = "Copy src/core/tsi/ssl/key_logging Private Headers"; + name = "Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B4C70DE80BEBE768971FB0FDA48C9831 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */ = { + B4F553CB360879086750FFDEB4E76845 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr/event_engine_shims"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3"; dstSubfolderSpec = 16; files = ( - 9D0E45C7CD8C2E823566CB55EA5D7A56 /* closure.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - 5414F589E21A33FD2511A299BB66B3B8 /* endpoint.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - 8C474224D42DF7D59722CEE06E6451AC /* tcp_client.h in Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + B2DF56C3CBE665D9FD9DCF11B0ACA142 /* stateful_session.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, ); - name = "Copy src/core/lib/iomgr/event_engine_shims Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B4CD5DCAC46A94944E826D200ECE7238 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */ = { + B51061D0B51609F6701AFCC268678FCE /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/annotations"; dstSubfolderSpec = 16; files = ( - 5E67437B614216D300933B178BDDA506 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - ACAE71056A1CFE4181C456678EC12249 /* domain.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 065481E3E0532325E59EC899C5051BD1 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 3B3807E6B654FC690919C2586B2522DE /* ip.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 5773847280D548BDE9FF56A929D15E1F /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 60ADD1CEC29A42F50E469D1FCC84A047 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - A3AF659BFF8027D222BFE2E4165F0070 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - 3F54A21ABB2B8BC228689D3E0DE91F3D /* string.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 156B6B8A6D1153E022FA5EAD56F4590A /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 4EF6E9C567BBD9B33C57B6D2778AAE3F /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B5A67E3DB2018254F10EA78B0DEEBCEC /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { + B5C8AD37DAE8BFBEFF377BED94BBC8D0 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/cluster/v3"; dstSubfolderSpec = 16; files = ( - 3E93D15D2F36CB40350837FE514CC77C /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, + D70ABEDC40824C812154D06AD9DB0854 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 881BDF08C6FB4F709D7FB2827A3E3EB5 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 018016B954153A643445D90CD6D1A67A /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 580F14F14127B35E65623E83F2A948C6 /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 4FE6F1AC42D7834DD37AB8F2D82A8BD8 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + B0D4EC8BF9F5ADB5617E287D3F7271B3 /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 3876BDC11900430EBA35A1BC29A0D211 /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 2A40D249E11FF5B2DD65EF6D66297763 /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B67333D915FCAE3AC66CAB1F71484ACE /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */ = { + B5D362064F80A2D79A5BE7D9086E24FE /* Copy third_party/upb/upb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; dstSubfolderSpec = 16; files = ( - 6DA65595C190DF5F2DD59D0A3F4CA9A1 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, - E1A312AC37773BF5027930882B03AE70 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + 62E2EBE10AB8AE5BD98CC28056C57248 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers"; + name = "Copy third_party/upb/upb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B75056C50A2FEE80736B8ED82BAC5DAD /* Copy src/core/load_balancing/xds Private Headers */ = { + B6C02F75529288FAFFAB15871BF991FB /* Copy third_party/upb/upb/message Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message"; dstSubfolderSpec = 16; files = ( - E33A088266DC92FCE8AC08AD9D09885E /* xds_channel_args.h in Copy src/core/load_balancing/xds Private Headers */, - 7FFE6B717B50248007207489BAA185E4 /* xds_override_host.h in Copy src/core/load_balancing/xds Private Headers */, + 5E7EAF434C7AFEB40FCFCF805C11DF63 /* accessors.h in Copy third_party/upb/upb/message Private Headers */, + CB386C6EFA7C169DDDFAEC11AB0D97CB /* array.h in Copy third_party/upb/upb/message Private Headers */, + E847B6236BAFCF7CFD11FC73C9F680F2 /* map.h in Copy third_party/upb/upb/message Private Headers */, + BE54125E870242E160FB4971B1945AF9 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */, + 1AA6724F499578513AD3F797088BA4D5 /* message.h in Copy third_party/upb/upb/message Private Headers */, + 9328F575B8F3A17D047DD5F8B0368944 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */, + 9E7A2BAAB5FC027C4BC8336E9341D7FC /* types.h in Copy third_party/upb/upb/message Private Headers */, + 0F44C428D7092654690B9A028A46197C /* value.h in Copy third_party/upb/upb/message Private Headers */, ); - name = "Copy src/core/load_balancing/xds Private Headers"; + name = "Copy third_party/upb/upb/message Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B78071D36646B3D331FBF5F83987075D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + B7C75F421FF87A517FBF8E61706B3BB2 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/tap/v3"; dstSubfolderSpec = 16; files = ( - 466BB46B8191BC0759833D604EB72954 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - BAC93664FCF9AC752E050A06B76E4B5F /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + CC7C5690FF7883E2A4229AC2BF5327E7 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B7D21E74FB3D601732005AEE1258284E /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = { + B874664DC8659C4FECE5F1E5929A3B37 /* Copy src/core/lib/security/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/data/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; dstSubfolderSpec = 16; files = ( - 9936DC8D7D5E55D975C6B27B26F17357 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, - 45C10E05E2765C796698B82EBE21ED35 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + 852A1DC33F0BDD17D75AAFA6C5C4E050 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, + DE696C93848919C7BE02D777579F8878 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, + 1BE4A25BDD5530FBB23E43B9AFBD120D /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, + 12F65625965C8A6CCDCB0DAADC7CE6D3 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers"; + name = "Copy src/core/lib/security/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B82CBE4A6F6A0458DE509D030938D98E /* Copy src/core/lib/event_engine/extensions Private Headers */ = { + B8B102337D08DFDA85F79A304157B8C8 /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/extensions"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; dstSubfolderSpec = 16; files = ( - 0E8B96A4C889664DB9A9B3EF3C7C45C5 /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */, - F56FADD6F104CE257EACDA921BFAE612 /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */, + EFEFDA454DE861E53300F92C5B1697EF /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, + 947E4176DA3C46A91E8516CC05B6D7E9 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, ); - name = "Copy src/core/lib/event_engine/extensions Private Headers"; + name = "Copy src/core/ext/filters/server_config_selector Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - B82FE003690D5EEB1D57B72E7E6B8178 /* Copy support Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; - dstSubfolderSpec = 16; - files = ( - 8F7C7AB1FB32E6D0D2548240BDD6D5F5 /* alloc.h in Copy support Public Headers */, - 648429F8EDAA7ECBB18F977862DD2D2F /* atm.h in Copy support Public Headers */, - AD43A45FB3D89F4E00816DD9ECEF8026 /* atm_gcc_atomic.h in Copy support Public Headers */, - 312175239F81A9997A484B2A5AAFBA91 /* atm_gcc_sync.h in Copy support Public Headers */, - ADD698B3B6673A8E9E9F6AB9272BCD15 /* atm_windows.h in Copy support Public Headers */, - 1C7220EE0C17A3EE35600B8C32D85625 /* cpu.h in Copy support Public Headers */, - DEAD8652AC64F1E083B588DB56D9DA4B /* json.h in Copy support Public Headers */, - 18EDB652F03A41D5E2C32E08677459CF /* log.h in Copy support Public Headers */, - 026976179C399D31409735EF1D05A22B /* log_windows.h in Copy support Public Headers */, - 3886C9E35F01EE1829A997C2B4B4C16D /* port_platform.h in Copy support Public Headers */, - 69665E5ED5E92A65705394357C9365A5 /* string_util.h in Copy support Public Headers */, - 05048D1378EF25F0E358D59C0DE663F9 /* sync.h in Copy support Public Headers */, - 3401F10FD79A2574587A7046AB4C5FE5 /* sync_abseil.h in Copy support Public Headers */, - 825C32FA04622C863CDD04431EC52677 /* sync_custom.h in Copy support Public Headers */, - 78164C4FFB9EA9E132AE0D94B259D93D /* sync_generic.h in Copy support Public Headers */, - 71E1C251E9C34DF0D88B2A17B64BC5C8 /* sync_posix.h in Copy support Public Headers */, - 7FDC6A3221B49AC050A1951A1A861CBA /* sync_windows.h in Copy support Public Headers */, - 63C1C175A8EC335AF8734D0CEFC2139B /* thd_id.h in Copy support Public Headers */, - 7BA20117C59903595D87482B58EAD1A2 /* time.h in Copy support Public Headers */, - FE6F3435686212CD265BE4E162BA7972 /* workaround_list.h in Copy support Public Headers */, - ); - name = "Copy support Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B88BEED5748EF26A9B139E67F5BB887D /* Copy crc Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/crc"; - dstSubfolderSpec = 16; - files = ( - C7BB7D2960EDCB639F144FBA9CACCBA4 /* crc32c.h in Copy crc Public Headers */, - ); - name = "Copy crc Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B8948083FC531CF933845C2A04C06CB1 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - 5790B0683910A4A8CACA84671B2782D4 /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - C90D100775F2D33DE978A473A3688DD2 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B8AD2FC811391C76EB1D85FF3DB02C11 /* Copy third_party/upb/upb/wire/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire/internal"; - dstSubfolderSpec = 16; - files = ( - 247E4B7828EEBD6168B1DE17A57A8903 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */, - 965B7A4CC06D7B41CB566E9D305B1D16 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */, - 086946272E89985B38D131BFEB1E716D /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/wire/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B91B9B508D773711B4F03605E9D55DA7 /* Copy src/core/lib/compression Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; - dstSubfolderSpec = 16; - files = ( - 9F86268FAC69FEA2314112490FFF315D /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - A2BC57BD7969C19BB52F4D361C9F79A2 /* message_compress.h in Copy src/core/lib/compression Private Headers */, - ); - name = "Copy src/core/lib/compression Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B93D35FD0FBD49742FB01025773A57E4 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - 3E2EAAB983CB4795E45FDEFE91B2F65C /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B96AE49EC812F7D64712CD3A5D279025 /* Copy src/core/ext/filters/http/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; - dstSubfolderSpec = 16; - files = ( - FB478068154459F46571F09192AAB875 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, - ); - name = "Copy src/core/ext/filters/http/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B9B34914BBB23748E20CF9B295074C21 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api"; - dstSubfolderSpec = 16; - files = ( - 850E51F379A3D72C58232C8773533B38 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - DA12B88D860C43E5920A6FF199712ADB /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - BBFDE5C6F131349C9457E58F796781B1 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BA151B7213ACA214269A5965168CAF18 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/tracing/v3"; - dstSubfolderSpec = 16; - files = ( - 2FEE4FA5A72176514E08A2E8E0062501 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BA52A71F084A43F6662B93079D1C3C00 /* Copy base/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base/internal"; - dstSubfolderSpec = 16; - files = ( - C505FD7DB8C512769A9779CA55CA5FBC /* atomic_hook.h in Copy base/internal Public Headers */, - D59A77AAF8C7430BA51FDEF464F79C70 /* cycleclock.h in Copy base/internal Public Headers */, - 1FBB19178239469BDBF93CF77703428B /* cycleclock_config.h in Copy base/internal Public Headers */, - C33CFA3B69012FC452DEF02C4959481E /* direct_mmap.h in Copy base/internal Public Headers */, - 61C8AED89DAC2F52A90FCE6D261D2F83 /* dynamic_annotations.h in Copy base/internal Public Headers */, - 582C810814FF9E3068703086481AD6CC /* endian.h in Copy base/internal Public Headers */, - E0C7D136BB15A33C07EBE54DD7DADDF5 /* errno_saver.h in Copy base/internal Public Headers */, - 05A1C840FEDBCF62463A64E18A727C52 /* fast_type_id.h in Copy base/internal Public Headers */, - 9097186B3C48CFAC5A90FAF0CCBE0768 /* hide_ptr.h in Copy base/internal Public Headers */, - 57877B59EDD56C365493361B48581E0F /* identity.h in Copy base/internal Public Headers */, - 161D2BD777F0B59DA2E9E6AA00D5B052 /* inline_variable.h in Copy base/internal Public Headers */, - 7B6486FBDC50EC22DE4C515C8DFF9049 /* invoke.h in Copy base/internal Public Headers */, - B2F1470E2E4DA95B1423B0A704E96A8D /* low_level_alloc.h in Copy base/internal Public Headers */, - 74A16C100FFB517CCDB6E83B2376625C /* low_level_scheduling.h in Copy base/internal Public Headers */, - CF9646F16A26E66FD01D12A65C0FA2FD /* nullability_impl.h in Copy base/internal Public Headers */, - 9B17BAFD2C767F88B53C9F4E11C05C8B /* per_thread_tls.h in Copy base/internal Public Headers */, - 7C5852599E9C7BD6CE4547BE17D8ECED /* pretty_function.h in Copy base/internal Public Headers */, - 2EC96CB1701A8A7D5CEE9A05A77C0F15 /* raw_logging.h in Copy base/internal Public Headers */, - 55C0BA87F4B3D3DF3EC25ADA786EA2D4 /* scheduling_mode.h in Copy base/internal Public Headers */, - 32FA02243C8FB96D79D90D2B65EC21BD /* spinlock.h in Copy base/internal Public Headers */, - 8C9C01FB8851AAF8B2E265F3BA85A504 /* spinlock_akaros.inc in Copy base/internal Public Headers */, - F34687A72734E1F0C3423BBCE84E7D48 /* spinlock_linux.inc in Copy base/internal Public Headers */, - 2C5327E3227F06E8786A384B4326F562 /* spinlock_posix.inc in Copy base/internal Public Headers */, - 70B787CD3F5685622DCC1904E10812C5 /* spinlock_wait.h in Copy base/internal Public Headers */, - 1445288AEBB06484A1C4C8E861DB9762 /* spinlock_win32.inc in Copy base/internal Public Headers */, - 84638AF7EDC00A3BD646DEBD92C34B0D /* strerror.h in Copy base/internal Public Headers */, - 1EC179425EDEC6762151D41DBC8C2B0E /* sysinfo.h in Copy base/internal Public Headers */, - 7912863EC658500FFE726E8D595F201B /* thread_identity.h in Copy base/internal Public Headers */, - B7CE284A652846F6E35E562C1F69E79F /* throw_delegate.h in Copy base/internal Public Headers */, - ABE544899F93493139FF03328E324915 /* tsan_mutex_interface.h in Copy base/internal Public Headers */, - 5EFFDA625BABDF50DAFC04D136D08EE8 /* unaligned_access.h in Copy base/internal Public Headers */, - 3CFF1A54A4AEAE3AF0C2C161D7389658 /* unscaledcycleclock.h in Copy base/internal Public Headers */, - 7E66EA291CD4A1D77116CCCCBEEF396E /* unscaledcycleclock_config.h in Copy base/internal Public Headers */, - ); - name = "Copy base/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BA8116DDBF51CF267877E4686DB5160B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 4BC45EB79D1A1ACEA20EBAE51D8A4E93 /* fault.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - FF1116A0969F5F733D35903EEDDC1452 /* fault.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BAF53461E2E6939B2FFA43BE3841CB47 /* Copy third_party/upb/upb/reflection Private Headers */ = { + B8BBDB9F9C7BCDB8496F81521933599F /* Copy third_party/upb/upb/reflection Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection"; dstSubfolderSpec = 16; files = ( - 13C5029AF1B2C9854D1D1808DC80324F /* common.h in Copy third_party/upb/upb/reflection Private Headers */, - ECC80BD5EA583FBA5FFFFB72FDD2C265 /* def.h in Copy third_party/upb/upb/reflection Private Headers */, - B52CF163F6AAC2C593E03E3A4F1121B8 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */, - 271510231309DA97DFEE4640E5C5B70C /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */, - EA792EF728F84BDECADB372AB349A390 /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */, - 95FCE2B29E0C9B0328D8DACADD42D566 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 25DC35E1A2522115C32EC66A5AC008A8 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, - A48CC0D9500D517CA68CE8F0C7AEFCE7 /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 036119507E4A36748852E81D24CB8380 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */, - 1C4972A468577D6E91E3FD1B5634F80E /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */, - F492777FB48764BF1E54A6B2D744D2A5 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 282C55F291031E0252F5EA40B9C2F61F /* message.h in Copy third_party/upb/upb/reflection Private Headers */, - 04F22D5B1230561F13A1FC40A6685AA2 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */, - AAE9A52B088A429FF948F188057DDB3B /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 04D614A5EC8F85FC142F6AC0D6B633B7 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, - 9BEC4934EEB31BA8F91D87D784E24D31 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */, - BCEBD80A089DC387AD05E7F68FB6FD4F /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 6122BDC7AEBD7E6FD7B21516AA8A1B65 /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 5F07EF35E9C3DBF83105E9FCEB85FBB8 /* common.h in Copy third_party/upb/upb/reflection Private Headers */, + 091DE5B0A53D36DEE4A793EF67EDAF15 /* def.h in Copy third_party/upb/upb/reflection Private Headers */, + F825C82F3D7CF8684F95BE8DE4CA35E1 /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */, + 1ACDB4011C694CE2575F62AC836579B3 /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */, + 73ED00EC495AAC920A92CC3051E1E52B /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */, + EDCE62055AAFE74152AE76DA5508BF74 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 74B9CA4C45F37A963358DFD14F1E8609 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, + 94D9E18209E6C23182A177854CDC4C7C /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 713AA5EA3CED25BB8111748D2F1BF989 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */, + BD9796305EBA7C98326627D727945C92 /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 3D144E3959A611FD5E1BE20A123EED00 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 70B44FFEEB984C0F214BF117A535FD69 /* message.h in Copy third_party/upb/upb/reflection Private Headers */, + 634697B19A04D78CE1EE0ADABC861BB1 /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */, + BA74037CA5193C09F680E8A16D371C66 /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 23A0EA808C942D3145619581B5F761E7 /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, + 38089D73E80F7143EC9905F93E8B6E61 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 6D25BBF23A765D27E9913B40D6E7BB1F /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */, + 22B8E1EF0D84A9B13712D40FBEFC4DFD /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */, ); name = "Copy third_party/upb/upb/reflection Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BC65A6103719DB27352F25D7BB5BA033 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { + B9C37F4465A225B46ED0954E762F626A /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor/internal"; dstSubfolderSpec = 16; files = ( - 003E34ED94331AAEA817A1925D0DCE24 /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - 8DDA4E634ECD30D6AB97FAEA7BC6F253 /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + CF6827743AD6AB8C839FC82ECD71507F /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + FF81A9FEA35E37FA8F82CCF086DCD17F /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + EBE3C01BA4F72013461CB34E5F7EDB4F /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 22609BEF0945A6D85D664B9DE9E4D53B /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 5B44787097707E7F57958C7916B4B2D8 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + D7A67FB7FF713265D0ED9E3E88EB1DCD /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; + name = "Copy third_party/upb/upb/mini_descriptor/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BCA686103D3F591D9984C527C0C2035C /* Copy src/core/lib/debug Private Headers */ = { + B9DF941D1ABAD5F47E8DE1170705EEB6 /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - FDB27B1664C50B69B30E5A94AACA1D77 /* event_log.h in Copy src/core/lib/debug Private Headers */, - 0CCFD4F0CE3D61214C5C45DC35D56330 /* histogram_view.h in Copy src/core/lib/debug Private Headers */, - 98867103E6161B23325D9E81E9F87ECD /* stats.h in Copy src/core/lib/debug Private Headers */, - CF0EA6C7934BEE254E6C505AAFFFAE97 /* stats_data.h in Copy src/core/lib/debug Private Headers */, - 34D67B0887D244DA8DF6F9E1B9D2B91A /* trace.h in Copy src/core/lib/debug Private Headers */, + AB6662E4D0040D170C05B87C45E6075F /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 6A2ADF64092F56E83F082868B407EB47 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + CB1DE7B8649F8A1079529EA7EC2DA0A8 /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + FBFE5E5955A39698879A60E04866EC20 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + AB2EF0FFDA92A03B584A9DCE83A5183A /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 965A0A3C6D4E7BD537ECAC973DC9E928 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 89B39377E5537230AED98D5C7A1DA0DC /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 77E19DBDA8A7F4024EF107C5E1172EA6 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + FC986457819C409AAABDC526F8A9AB8C /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + B4AD9618FAC477F921A5721F916263AE /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + C199A6335917F0E0A583A1931D26054C /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 40312919EC4CC904B00FEC2D2E2DE3D8 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + C31FA07BE42BA47D22D55DA1E103C017 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 94FCE435D163873CC972C33C242FBAC4 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 9EFA0ECB8EDEDB0CD5498EA8BF8B4E45 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + B1173FEFA2DF64B764C8CD27CDA3C2B4 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 4A83F89A9F41DE8E431A5243C997FDAD /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/lib/debug Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BCF42A86C8806BC286531CCEA32C0CA0 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = { + BA604063DEDFC95E76FDEB82D382F55B /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/metrics/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/rpc"; dstSubfolderSpec = 16; files = ( - FE44281B1A774AFE3ABCC111C3C85028 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, - 69E9C72B6C2A5CD104E4B7ED23840750 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, + 895A5F019CC729F77D17B009D4F26B6D /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/google/rpc Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BD778689AC3130A2208C22695926B915 /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = { + BB0C0E424468D8C9B63261300F3CC10A /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/service/orca/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/trace/v3"; dstSubfolderSpec = 16; files = ( - 1FC09F9C8BB04861B2FB4E510D142D0C /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, - 88A7FBC26E9E01E48B71854C6F85993D /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + 4195C302FB4BC54B5CF3A4F9942254C5 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 62FD6D3ABE275140AE8FEE72B0FDE3D6 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + CEC433F46A54FF669F25D7F95E2823F9 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 515CB184CEEA1BD0C900E32D90217048 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 5E7FABDAD3C15FE0D7465C088D3DE3A8 /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + AE0504C56804726A279DC5303ABF46CA /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + B8371FA9FFE52D852E8FFA54846F6C2E /* service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 540B8DD053BB7766B10AC5195BF813B2 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 622F26395B805466BEF4DE7CFC2FC6B4 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 908DE13B5255467EF8F0CA76C0278C07 /* xray.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + D490B625FE2C14302407D1CA3E6EAF91 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BDD20A485058222CC5D9A8EF98D1B856 /* Copy src/core/ext/gcp Private Headers */ = { + BB2A899C21716F8DF2660C140D5A657C /* Copy src/core/lib/security/util Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/gcp"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; dstSubfolderSpec = 16; files = ( - 1AA8897DD6B4733626CD654F6DF34C89 /* metadata_query.h in Copy src/core/ext/gcp Private Headers */, + A43ED9852E50FFFC2210D8C1C434D0CE /* json_util.h in Copy src/core/lib/security/util Private Headers */, ); - name = "Copy src/core/ext/gcp Private Headers"; + name = "Copy src/core/lib/security/util Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BE2DD7AA57F2EC07F3A5B68EFEBD09F8 /* Copy third_party/upb/upb/hash Private Headers */ = { + BBC5253605BC9C2670EE39AB88413A52 /* Copy third_party/zlib Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/zlib"; dstSubfolderSpec = 16; files = ( - 111E6465573C596FE39C928CBA85E293 /* common.h in Copy third_party/upb/upb/hash Private Headers */, - 8E8AF3518D30959427E4E57B004A5DD3 /* int_table.h in Copy third_party/upb/upb/hash Private Headers */, - 8847D547A43B97FBCBFA2DF6D429F60E /* str_table.h in Copy third_party/upb/upb/hash Private Headers */, + 5C3FCFE4313091A3C0736BF549187D6A /* crc32.h in Copy third_party/zlib Private Headers */, + 61823D5D4EEDEBEFD925335F02ECB10A /* deflate.h in Copy third_party/zlib Private Headers */, + EDF4B116EDA39BBF6B560F7F4AE71F1C /* gzguts.h in Copy third_party/zlib Private Headers */, + B7201D8766DF8A7A634EB77D6B797268 /* inffast.h in Copy third_party/zlib Private Headers */, + 79ADEBC6A33FEFD372B58D0ACDD9DBF6 /* inffixed.h in Copy third_party/zlib Private Headers */, + 6A6D39876919BAB828C9CD9ED48422A6 /* inflate.h in Copy third_party/zlib Private Headers */, + 93F4456BCD0B4B0136CA3A31AC98BCED /* inftrees.h in Copy third_party/zlib Private Headers */, + C2BE5C18C440B95F0F0CF911005C2908 /* trees.h in Copy third_party/zlib Private Headers */, + 0BDB54ACE6FB97A33ADEBE7C72C2B627 /* zconf.h in Copy third_party/zlib Private Headers */, + C360038DD317E80763408F80C14CD30A /* zlib.h in Copy third_party/zlib Private Headers */, + BB9402FB33447B64E87AEF14FDA93FDB /* zutil.h in Copy third_party/zlib Private Headers */, ); - name = "Copy third_party/upb/upb/hash Private Headers"; + name = "Copy third_party/zlib Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BE3FCBD28B6F3A2173F3389798AA6493 /* Copy src/core/lib/event_engine Private Headers */ = { + BD03BBD428F7FEE58E2C2AC4F00529A1 /* Copy impl Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; dstSubfolderSpec = 16; files = ( - 4DF7E112E01F36A717E5F3954C86A843 /* ares_resolver.h in Copy src/core/lib/event_engine Private Headers */, - D218F600517E3A18A690C2FFC0F7C117 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - C742B75B5EA94316CE48656DF38784D5 /* common_closures.h in Copy src/core/lib/event_engine Private Headers */, - 0307F4C353DD521457E1F46087A43264 /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, - 809DF8FFA30AD566F09640F3EC4D451C /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - 316886636F93D0FB1466392DEDEC1B22 /* forkable.h in Copy src/core/lib/event_engine Private Headers */, - BB965F504A935D3DD571D39A4CBF6E2D /* grpc_polled_fd.h in Copy src/core/lib/event_engine Private Headers */, - A18E5243500E11D840C7E36EC3D2E715 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, - 5A86876AC7E0B97A2769E91281BD3666 /* memory_allocator_factory.h in Copy src/core/lib/event_engine Private Headers */, - C07C60F45CB24500B677EE1A98DDA7E8 /* nameser.h in Copy src/core/lib/event_engine Private Headers */, - 83EF8A27C1926CC83D8051BFC6025DD5 /* poller.h in Copy src/core/lib/event_engine Private Headers */, - 955B03303424DEADD89DB45DA6B029B2 /* posix.h in Copy src/core/lib/event_engine Private Headers */, - F898EB915CD1687E0702C50BBE2F1687 /* query_extensions.h in Copy src/core/lib/event_engine Private Headers */, - D88B3757A445E177CD5AE64D9B08903E /* ref_counted_dns_resolver_interface.h in Copy src/core/lib/event_engine Private Headers */, - 3788E7F9B4152B1C81C2B5D5DF33E1E3 /* resolved_address_internal.h in Copy src/core/lib/event_engine Private Headers */, - CC8CB061A4FDED7AB419B59B3386CBEA /* shim.h in Copy src/core/lib/event_engine Private Headers */, - 967BD34372DB95B414B7CD4C474E5D8D /* tcp_socket_utils.h in Copy src/core/lib/event_engine Private Headers */, - B54660BFAB0C5EE1D8ABD640C088C855 /* thread_local.h in Copy src/core/lib/event_engine Private Headers */, - DED9E51C498F24C7343DFAAFD2CBFED7 /* time_util.h in Copy src/core/lib/event_engine Private Headers */, - 0DA6941C935527AC4B798C2372FC114D /* trace.h in Copy src/core/lib/event_engine Private Headers */, - 38349FA8222EAF2C8C5C0BDFB648E7F0 /* utils.h in Copy src/core/lib/event_engine Private Headers */, + 7AC9E9C61F38EDBF66619317E871A269 /* call.h in Copy impl Public Headers */, + E9EFDA007A3EF83BC8DA29CD932EC823 /* channel_arg_names.h in Copy impl Public Headers */, + 14C01164AB8E48351602799E98A51828 /* compression_types.h in Copy impl Public Headers */, + 0D03E01CDFB84C3B37705FF50E45AC5D /* connectivity_state.h in Copy impl Public Headers */, + 65943D286403099D5A70ABCC1635FC0B /* grpc_types.h in Copy impl Public Headers */, + EB7544A400F27AB46EBD38B055B6A3C1 /* propagation_bits.h in Copy impl Public Headers */, + EDC051B02200767851ACC6907D9CD9A5 /* slice_type.h in Copy impl Public Headers */, ); - name = "Copy src/core/lib/event_engine Private Headers"; + name = "Copy impl Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BE4E38884C6DE4A12CAB16B709E7783F /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */ = { + BDE3204CDA0ADEA24D10F4C7F5DB9DF1 /* Copy src/core/tsi/alts/crypt Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/trace/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; dstSubfolderSpec = 16; files = ( - 1F5C44876B9464D2116BF11BC579E11C /* datadog.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 64FA33F9A8C481A0E018AD27996F5842 /* datadog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 99DECBF7AF445655A3E90B02CFC352C3 /* dynamic_ot.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 64738E87D75DDFFC6E98FBDBFCBD17C1 /* dynamic_ot.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - DFD0B75DACB8079631740712E45ED192 /* http_tracer.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 52375851D69DD888475BEEE59D0B2961 /* http_tracer.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 0DD084A39741332350ACCC9419D1D088 /* lightstep.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - FC2D9D31DE16A9C8CDFF30486D453DC5 /* lightstep.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 0F4ACF7EB5130C35F5E9DB582DDA3680 /* opencensus.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 8171C3206632C743625F349123086459 /* opencensus.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 8783A1A21BA5BB5EA45FE6DA1972CBB5 /* opentelemetry.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 2B941C8D048E40492D8E30A7349EDB5E /* opentelemetry.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - CDE053DE1C4B599F2391C4BF1F618BE1 /* service.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 152FFB988E4A0B0F69E4E53B8F4F5B6E /* service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 4096B62DB765DF0D6FB6FC2358A409FF /* skywalking.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 373703B3A22E9211E778E4566044A1C5 /* skywalking.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 33EC7DAE9A50A876FA806942E55981A8 /* trace.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 8DB506418E626354248128589EDD15C4 /* trace.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 84F748A9650CE09F03F85039402CA97B /* xray.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 98BB76A9FE519E783C2B858A5C0EE49E /* xray.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - D604B0611D882AE9AB87B56DEB035FD9 /* zipkin.upb.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - 0B38EBA94547EDD20C1859164107DC01 /* zipkin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 67A995DB1D77E17C260F7E21D3D3B02F /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers"; + name = "Copy src/core/tsi/alts/crypt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFA4D590B2B23BBFF107CA10F0DE2492 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = { + BDE9E89B43AFDB1A355511FE73122BB5 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/accesslog/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3"; dstSubfolderSpec = 16; files = ( - 4FB28DD8E131D2F9F3114DA5318EF1AE /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, - 95D97708AE4C18D71AD2A174335CEC73 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + 3DF56527A3A796ECB5B6C42869A795E0 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFD20C5D8B6DB9C48B04C64B160E77F3 /* Copy src/core/ext/upb-gen/google/api Private Headers */ = { + BEC19138F5D53E62E2330370216A8329 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3"; dstSubfolderSpec = 16; files = ( - 531DC3A9AA7B8F4F23997825B36BD8BA /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 2D7C480964FF82CC8F440A773F8D92BE /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 7BED46D4494263C36A4680E095A9F4FA /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 2615B4575DBB25E0E6D189E351E0DA11 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 4115469E897554592D5DDCA4856D95ED /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 854E091090A49FDE5FA6BAF3D4B49032 /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + CB2DBFDB05652BB2C8B19FD032C37A47 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/google/api Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - BFDFDE804DC8DBD2DFDC56EFC594B86A /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = { + C0C8103DD590A9C1738059067E25A044 /* Copy src/core/ext/upb-gen/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/validate"; dstSubfolderSpec = 16; files = ( - 2BF529043C7561CDF567CE5436E0FEAC /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 7BD155D5AEA0BB1859875A8CAF00F8B9 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 09150EFB0749D6C19AD377808A6E4EC2 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 2170072B677E3717A59A47920737C52B /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 980BF87F2510F73C5D24A9E725C24C18 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 1F3CBD04025BD3EFC4F5CF5647D12B20 /* validate.upb.h in Copy src/core/ext/upb-gen/validate Private Headers */, + CD65CDC8CE3756AF7D670F6ABC6259FB /* validate.upb_minitable.h in Copy src/core/ext/upb-gen/validate Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C0972939AEF9F912696D858AF6ABF03F /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - 4A7B5819B2B5CE2439600B4130C364D4 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - E298FA684F46D61E1C914C6F50C1B446 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 63DBC12EBEBA267B8A68CA9AD663BB62 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 749EF1FF7D2A51157784818FFB7EB944 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 70E5D2D91C006101450DB29662A26A48 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 9FE8C24DC28C859595528B7779FFC22F /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 52534288D9BF3F9E19E26B5334A0BAB6 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 528E89A39DF668749E4A02C54A6F9924 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 04E0A1311F491C306F5BECD4D99FB652 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/validate Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; C0D7FED5AFA44B7B4D43916EB17EE0C9 /* Copy crypto/fipsmodule/md5 Private Headers */ = { @@ -16326,15 +16208,61 @@ name = "Copy crypto/fipsmodule/md5 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C1BF979CCAC11264660052A999AD2AFB /* Copy third_party/xxhash Private Headers */ = { + C1138D46FA2CB84C027B70900FC9D002 /* Copy src/core/lib/event_engine/cf_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/cf_engine"; dstSubfolderSpec = 16; files = ( - 01F62CEEA6BF319533DB91855D4ED93C /* xxhash.h in Copy third_party/xxhash Private Headers */, + DA61B78BE645DB7351DD708616728F1B /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + 30586D0218C2F0B8F07A5A4846418D86 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + 7E7A02971AC402483E742AB53940A6DF /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + BA3F7FEEFDA20D48A6F1938F935096F3 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, ); - name = "Copy third_party/xxhash Private Headers"; + name = "Copy src/core/lib/event_engine/cf_engine Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + C17A77C9D449CD4300F73008F05E4D99 /* Copy src/core/lib/event_engine/windows Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; + dstSubfolderSpec = 16; + files = ( + 6514727661319FF83EF43E7758637A5E /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */, + 8C19E1906471FA4DA2B4AF6DF73BC76B /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, + 4E1737BBD14961ED5EF5546556B7CB02 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */, + D5A70070DD997EF4068FA93740C13FE3 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, + 50131FE7B4B9B7AD6FA0B24D07EE8EDE /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */, + 02165B8B4D756A781B608741B3DA7904 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, + 08F89805705317E692BB0E4D053FBB88 /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */, + ); + name = "Copy src/core/lib/event_engine/windows Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + C1E21AFD579B0AB5C30A12DDC295AE6F /* Copy base Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base"; + dstSubfolderSpec = 16; + files = ( + D1486DC28B3CD7A9059FCBE3F1BF57BA /* attributes.h in Copy base Public Headers */, + 6CCDAEDFE8AB0312ED357366D4E66389 /* call_once.h in Copy base Public Headers */, + B5F637FAEE4F5FCC0E0BF15D9B67A053 /* casts.h in Copy base Public Headers */, + 9D1A014C8A4239AB1A6E0A382D67F3FE /* config.h in Copy base Public Headers */, + 15796D6B8D02C3BF53C0FACF61A2E12F /* const_init.h in Copy base Public Headers */, + F01AFA71EFCAE732F8F91D5CAA865060 /* dynamic_annotations.h in Copy base Public Headers */, + 6581274A3008A001BB5EF4F121BFDB4E /* log_severity.h in Copy base Public Headers */, + 826BBA0502B91F8997E4BC18E0098E44 /* macros.h in Copy base Public Headers */, + 3748B4D19F95BEDC3289564262EAF41E /* no_destructor.h in Copy base Public Headers */, + B23C5660A0E1D83A2C810CA2CE5633E2 /* nullability.h in Copy base Public Headers */, + F3F19151D4782ACCD1C753583BCE3ECD /* optimization.h in Copy base Public Headers */, + A8F6A9CB3703D099325A131DAEB97FFD /* options.h in Copy base Public Headers */, + D044E6172832325260E85D8B5698DD82 /* policy_checks.h in Copy base Public Headers */, + 8E71B6771F4DCED52ED927E9D3B5CC31 /* port.h in Copy base Public Headers */, + D87DEAAD7BFFFF2E1880BF97BEFBA9C1 /* prefetch.h in Copy base Public Headers */, + 42EE39C48875C28CAC9F47B080A01467 /* thread_annotations.h in Copy base Public Headers */, + ); + name = "Copy base Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; C1EF008A56AF7F3C16ED03F67DD3E3D9 /* Copy crypto/ec_extra Private Headers */ = { @@ -16348,6 +16276,18 @@ name = "Copy crypto/ec_extra Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; + C206C51552FB08D415335FA012A0447B /* Copy src/core/resolver/dns/event_engine Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/event_engine"; + dstSubfolderSpec = 16; + files = ( + B8FB27501DE68D7FB33D060A2C5889AB /* event_engine_client_channel_resolver.h in Copy src/core/resolver/dns/event_engine Private Headers */, + C65E793730E9A7A7074BE361A5AC1613 /* service_config_helper.h in Copy src/core/resolver/dns/event_engine Private Headers */, + ); + name = "Copy src/core/resolver/dns/event_engine Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; C23598D9527B643C954BED7CFAB5F478 /* Copy crypto/fipsmodule Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -16359,180 +16299,178 @@ name = "Copy crypto/fipsmodule Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C259B43063F1800370831966CDA75C47 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = { + C2506DED9702F7C7604236E14655AA76 /* Copy src/core/lib/debug Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/overload/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; dstSubfolderSpec = 16; files = ( - 95175845A7B00BF94032992A74EBAC0D /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, - 6802375FB6A5A33CC1FBE7639A306D8D /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + 4549A79B3891220A9D70150AC2905B3B /* event_log.h in Copy src/core/lib/debug Private Headers */, + 953607B2878E30DB74D17951A0E9F7CD /* histogram_view.h in Copy src/core/lib/debug Private Headers */, + 1FCEB26B11AA8A671B059FBC491A6489 /* stats.h in Copy src/core/lib/debug Private Headers */, + 181A85FC3BFB50D0E5A222722421351C /* stats_data.h in Copy src/core/lib/debug Private Headers */, + 3E1D11B05D654B8D7434B0D622E2DD46 /* trace.h in Copy src/core/lib/debug Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers"; + name = "Copy src/core/lib/debug Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C333DA38029A299A2FC19AF27CE56DBC /* Copy third_party/utf8_range Private Headers */ = { + C2D544706BDF45AB08D047562EEE5C4F /* Copy third_party/upb/upb/lex Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/utf8_range"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/lex"; dstSubfolderSpec = 16; files = ( - 9BF4B42137151B88F8F99958E0AA0C47 /* utf8_range.h in Copy third_party/utf8_range Private Headers */, + 7A40B2017C90254FED941B4339BAD288 /* atoi.h in Copy third_party/upb/upb/lex Private Headers */, + D326D5C7841BCD373A43CD15E3193DB0 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */, + BD435B143B356ED26F6B96637556EB58 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */, + 577603A0C17F07A29FCF3E21DA3F02F9 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */, ); - name = "Copy third_party/utf8_range Private Headers"; + name = "Copy third_party/upb/upb/lex Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C44C91BA3500C7214E3FCD4FC6485044 /* Copy functional Public Headers */ = { + C31102CE3E81F0CF7DB002ABD3C9EE80 /* Copy strings Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings"; dstSubfolderSpec = 16; files = ( - EFF2E7D47A45F5641CFB63A02570E159 /* any_invocable.h in Copy functional Public Headers */, - 6A86BABD8F6DFE5F454FD76CB7D07BD6 /* bind_front.h in Copy functional Public Headers */, - 65B3A59021A3DECF6D717B2624A3A7E2 /* function_ref.h in Copy functional Public Headers */, + 3145F6D4FBEDF7660297E8A315DBB2C1 /* ascii.h in Copy strings Public Headers */, + 48492E8E41A4107396678E6E11CCD2FC /* charconv.h in Copy strings Public Headers */, + 62471C5C6ED58A413BAEC6CF91EE6FB6 /* charset.h in Copy strings Public Headers */, + C9CD89F4F0B3D235614AE5C5B53E0A4C /* cord.h in Copy strings Public Headers */, + F1DF542480605A267C35384BEAF36E52 /* cord_analysis.h in Copy strings Public Headers */, + C432E97B3C517E480A453CB1AA9BAB78 /* cord_buffer.h in Copy strings Public Headers */, + B2F6A714CD6F3D2FD5DE5C095E0D9921 /* escaping.h in Copy strings Public Headers */, + 6D5EAF91DA353D77FFF443C197205586 /* has_absl_stringify.h in Copy strings Public Headers */, + 236E6FE79E96A3059A23B8DE03FBA00D /* has_ostream_operator.h in Copy strings Public Headers */, + C8B46771B8C7D220F544F34790AAE7BE /* match.h in Copy strings Public Headers */, + 27C3E6130E88B5D8CA34AFADD944930D /* numbers.h in Copy strings Public Headers */, + 260C34D2936224874E77A6F996A082B1 /* str_cat.h in Copy strings Public Headers */, + 4CE67C1BDEB98C14070DB808BC01B750 /* str_format.h in Copy strings Public Headers */, + EC18F76153607084668F99E478DB9AA6 /* str_join.h in Copy strings Public Headers */, + C4D34B05C9A0DAB136748DADD7DECE9D /* str_replace.h in Copy strings Public Headers */, + 87ECF8205FD14E1904AE0EA1593E08CB /* str_split.h in Copy strings Public Headers */, + FFA6142CA6ADA75A44D724ED175A8164 /* string_view.h in Copy strings Public Headers */, + CF81E1F0843E57AC830F82B7D82615C6 /* strip.h in Copy strings Public Headers */, + FD47A5198D1796F1F14584DD17CFF494 /* substitute.h in Copy strings Public Headers */, ); - name = "Copy functional Public Headers"; + name = "Copy strings Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C4C70E7B4BA17396CD7A91EC56A5BB33 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */ = { + C338318802B120CA01FEFDAE63E65124 /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/udpa/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/type/metadata/v3"; dstSubfolderSpec = 16; files = ( - 3125DA9905C4A9D8473CC0E990AC56AC /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 6B139269F11693A42769CABB3B3BAB1B /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 0CAC66AD8753443813F38B471902A344 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - A07DD7864F5385BDDEE06320233248AC /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 267A0BE8DF832CE31B538FC135B99F1F /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 89FAD1F482B8073F73EC27BCD1FC539A /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C5B20BF64D83076C1B665A06DDC0139F /* Copy container/internal Public Headers */ = { + C3857752E3D243BDF78E2617D307E7FE /* Copy src/core/lib/security/credentials/iam Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; dstSubfolderSpec = 16; files = ( - 410EEDBBE9049794067D6A118ABBFF83 /* common.h in Copy container/internal Public Headers */, - 6D4118C98C64CA988E7859FD64834290 /* common_policy_traits.h in Copy container/internal Public Headers */, - EAF1E5F9D1E256992E909A5F538BC3F3 /* compressed_tuple.h in Copy container/internal Public Headers */, - 596A33A421D69CB12AF5BAFE174E1589 /* container_memory.h in Copy container/internal Public Headers */, - 86241CE78A81C59C7BF40DF20C218496 /* hash_function_defaults.h in Copy container/internal Public Headers */, - 3D3A20D4A6D478143D1078D1FA348C37 /* hash_policy_traits.h in Copy container/internal Public Headers */, - 3F8248549B5DE007A2183809D9B2B94A /* hashtable_debug_hooks.h in Copy container/internal Public Headers */, - 9F22F25C03DAB7B84975E24E3687189F /* hashtablez_sampler.h in Copy container/internal Public Headers */, - 70D93D05ED36D1A57E0F4410B47BBCC2 /* inlined_vector.h in Copy container/internal Public Headers */, - 24DE27B2F65DEEAFC9BEF447C97A4EA6 /* layout.h in Copy container/internal Public Headers */, - 15AF15D16BB52C5C768450723FF525C0 /* raw_hash_map.h in Copy container/internal Public Headers */, - 668C2A2B82162613C63BCC55989A7F5E /* raw_hash_set.h in Copy container/internal Public Headers */, + C1F1471F1BA7233D1F12C3EDFA116995 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, ); - name = "Copy container/internal Public Headers"; + name = "Copy src/core/lib/security/credentials/iam Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C6C1D6ABC8E0DD834BA14B40F0DEE339 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */ = { + C455FDA6FD9F5E783A46DCD80AE042C1 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor/internal"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/accesslog/v3"; dstSubfolderSpec = 16; files = ( - 23DD92D5718AE2DF037BBC8C992BC9EB /* base92.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 5A31FE6FE36D9CF793172B92C810CC40 /* decoder.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 6B4B65F00601897A7AB08818EF211AED /* encode.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 15CC2227B7396F232E711D5B29768F07 /* encode.hpp in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 4F2416003743B03EA3D44F450A174B00 /* modifiers.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - F29484830D6B33465EEDFD2DF9F47C8F /* wire_constants.h in Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 73E7152DB24C4083A6F6B74C361F7C22 /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + 8ED55209132EF0BAA17EAEC3FF716778 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/mini_descriptor/internal Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C85648DA190870B51917E263B1267136 /* Copy src/core/lib/security/context Private Headers */ = { + C57247247F4D1952D86F180C32AA7116 /* Copy impl/codegen/security Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen/security"; dstSubfolderSpec = 16; files = ( - BE74EB97A803AF132CD214F8A5522E89 /* security_context.h in Copy src/core/lib/security/context Private Headers */, + FB9DE99F04D8CBA72F6FAD2213FD9AA1 /* auth_context.h in Copy impl/codegen/security Public Headers */, ); - name = "Copy src/core/lib/security/context Private Headers"; + name = "Copy impl/codegen/security Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C870CD1E7EECEE2B455CC9B004468BEF /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */ = { + C5E9CBBFE3B5E32F6E08D37BB4D0CD5B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/rbac/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3"; dstSubfolderSpec = 16; files = ( - BEF176B90C98484183E7079768E13EA4 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, + 16DA8DB247EF4FAA2F8766A2AA783052 /* router.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + 66C62860AEFEA7E9FF45F82E2A1425E6 /* router.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C8AA663322DBDBFECF979264ED50DC6E /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */ = { + C610FE5C1C4D0212490D57D13E5E60CB /* Copy third_party/upb/upb/mini_table/internal Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/service/orca/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table/internal"; dstSubfolderSpec = 16; files = ( - 332A8489E6065E518ABF0225C86C8D05 /* orca.upb.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, - D464E218C5A174AFF74E24C10BA6502B /* orca.upb_minitable.h in Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + 7598333752A0CBF583B3DFF00696C9C6 /* enum.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 26CBBB3223825E4DE183499881B632FD /* extension.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 3613D3E5458BCD5796BD3182DFEA8983 /* field.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 92D2FBD143FBB1227F1E588D5865961B /* file.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + 1652243B30782DDEB625382FDE1858D4 /* message.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, + FCFD01EEFBA51D2B2CCC543AB6EDBFAD /* sub.h in Copy third_party/upb/upb/mini_table/internal Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers"; + name = "Copy third_party/upb/upb/mini_table/internal Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C97ADB548F5BF56BC739BA3207D3310F /* Copy src/core/resolver/xds Private Headers */ = { + C84F30038AE69506E05613E0ADCAFD4A /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/xds"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/route/v3"; dstSubfolderSpec = 16; files = ( - 8FF5B005E4947C0161BC57B2B2AA15FA /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */, - 0A03AD4542C2E0461A20FA6C81FAADA5 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */, - 26565714677BE1F2050840FB81A0D864 /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */, + 50C65A66307C67BCCE827B9BBE406D48 /* route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 976B95FFCAF9938F641B6A12ACB95A40 /* route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 88B704524EE929022B08D3F6F46692B4 /* route_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + BB8D0731BAD0472AE06A0E2C3FA18B1C /* route_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 11DF5E5F3516E30B2A1B2849E362990F /* scoped_route.upb.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 23BD3AA9D34562F612C761DD1BA5CB67 /* scoped_route.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, ); - name = "Copy src/core/resolver/xds Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - C99EA8A357EEA0BB133EED778786140C /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */ = { + C9C85C5157D7DAC3F5518C4149B165A0 /* Copy src/core/lib/channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/metadata/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; dstSubfolderSpec = 16; files = ( - CE37A515731B107E136DF3867F9D6551 /* metadata.upb.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, - F9516462EEBF34F749BCA37116BD2295 /* metadata.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, + AF3432DAE4E3F679A6DD10E1546044AB /* call_finalization.h in Copy src/core/lib/channel Private Headers */, + 36608900D097FBBF80CC83EDEB99F540 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, + 5839BB8C787BAFD716E87B50A3687638 /* channel_args.h in Copy src/core/lib/channel Private Headers */, + 73375A3AC149D5B083567A5AA9636675 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, + 95394A74EA437EDB7C95B19D0D98B7E8 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, + 1413AD049CD7DFA9207691E7146F9219 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, + 07437F8E9101146CE09736532E30F618 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, + 1F96DA8A2187CACB84F2DCF5BE5D73A2 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, + 449A43E43242FE4BB5FFA945B1402ADE /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */, + BD68E1E5C172CF074494C4CD8BDCD8F3 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, + 08AB54FAC68CA99DF3FA55433C22B469 /* channelz.h in Copy src/core/lib/channel Private Headers */, + F73C9B272EF85D5F2C0EF3B307C65946 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, + 45C020E1945F0BD78B4637755BFDEECF /* connected_channel.h in Copy src/core/lib/channel Private Headers */, + 9F273FFEDE1C55709E1D75425DB26623 /* context.h in Copy src/core/lib/channel Private Headers */, + A50E8A3705F50F74FDDB3E398D753BD1 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, + 5B74D0157445C081496D2CACB750011D /* status_util.h in Copy src/core/lib/channel Private Headers */, + CD8ABE771C3BC137822517B960390F50 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CA72391CD109DF10D43F8B8E63DDC371 /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - 15B3DBB1468FC5600BA61CE824E239FA /* trace_config.upb.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, - 3AB255A7FAB547F9CD69A06E61AA9AAD /* trace_config.upb_minitable.h in Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CA7D844BBBB265D002AD13CFFAF4E1BC /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; - dstSubfolderSpec = 16; - files = ( - 664104C81CA632FCC72DC74D0074B19C /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 93CE38582BD34D743CB2E1A2E104FFE8 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 2FE6E607663F2E60B8BF683179004125 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - F5BD44255AF2C460458AB08ACCD7F4E2 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 2D2EFF3E357302C8D2D3C3282DD219AD /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 8030E74EBC3D7E4C69D6C45283A85F59 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; + name = "Copy src/core/lib/channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; CAFE6F3E2514E985BE68AEEB1B02C493 /* Copy crypto/trust_token Private Headers */ = { @@ -16546,382 +16484,422 @@ name = "Copy crypto/trust_token Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - CB7EDD7750624F8E07EFD28E7502EB05 /* Copy src/core/lib/security/credentials/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; - dstSubfolderSpec = 16; - files = ( - FDBA095AA0E7938FC02498D174299504 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 0E65806CB68E1E17E86F026E761C2766 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 698444098624557D6E66DE64851DF468 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CB998882D873A0890969D3468A4CA7CE /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 3B6B4598C45435A47A1EB54D1637DFA4 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CBB9E74D9D5E64F208BAC5E081623A38 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/metrics/v3"; - dstSubfolderSpec = 16; - files = ( - 0478A57D701C998236EEC0C9CBD8EC71 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, - 5EE6A6D7809CF031D17E269113DB5697 /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CBD38A4198D884B1F75FE5A11E6AAFA6 /* Copy src/core/lib/security/credentials Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; - dstSubfolderSpec = 16; - files = ( - 8CEC81E822D1F31FB8168DA82960E275 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, - 1E0F80EFDF9199270EA47FEA64A1CDEE /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, - 82399E9FC3861327493342A2E777F29A /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, - ); - name = "Copy src/core/lib/security/credentials Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CCB410F7660CC04BEDA42AD58495D94E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3"; - dstSubfolderSpec = 16; - files = ( - 32F6BB649C9025712FA2A4D3FB92754A /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - 4A6B423D95127FFE1C2B1757E4087B81 /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CCD5FBA85E6D293D6205587F78D03E83 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/gcp"; - dstSubfolderSpec = 16; - files = ( - FFE61E597C496F2502E1E5ECB783D3C6 /* altscontext.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 7EE32478AC602C9E0F437AEE5BD4602C /* altscontext.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - B99019EF88A4AECD2D332F76BEB3C3EE /* handshaker.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 49242F64BDCFCE40BD35C809E94ABB34 /* handshaker.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - E3981F43DB708BE29F36FDF4551E5040 /* transport_security_common.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 4DA727B8547CF770A1FE4CD21EFCF018 /* transport_security_common.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CCE792CFBD235B8839105112679D5173 /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; - dstSubfolderSpec = 16; - files = ( - 6D82CAD7CD7781D58B2E319DA7DD4CDB /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - EF0DABC326AA469F61ABBF87C69B8FD8 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CE0D59C8639B0CCE0AFDBCDC21C7384B /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - F5661A5D43368FCBA968A02938255FC5 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CE84CA8ACFE7D4156E0F6E1383B3EF01 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; - dstSubfolderSpec = 16; - files = ( - ECA38A254254C77F831CF84D3721E437 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CECEBC74917A6181EA303723980F3B49 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - E1C90E297C505C2B91F090F4E25C926D /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CEFCC88691FA09C038ECF5046142BB5B /* Copy third_party/upb/upb/wire/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire/internal"; - dstSubfolderSpec = 16; - files = ( - 0A1B7AFEA699552A35EF3709490F7451 /* constants.h in Copy third_party/upb/upb/wire/internal Private Headers */, - 82A8508EB652015B7AE733895AAD85A4 /* decode.h in Copy third_party/upb/upb/wire/internal Private Headers */, - 71983504E2C940B396286AF11B21E6B4 /* swap.h in Copy third_party/upb/upb/wire/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/wire/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CF1E2215596CB0C7EF2CE2DB689AB252 /* Copy src/core/lib/json Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; - dstSubfolderSpec = 16; - files = ( - 66392C7DD3AC15A55B78B81E35E70DA6 /* json.h in Copy src/core/lib/json Private Headers */, - CA473D645A2A45FE70BA0A5ED30B4CD1 /* json_args.h in Copy src/core/lib/json Private Headers */, - E8A7C2F4BE5B0CB63B4B09367AA9BFCE /* json_channel_args.h in Copy src/core/lib/json Private Headers */, - E5A74DA9FE3DC5718682F4950E6E055E /* json_object_loader.h in Copy src/core/lib/json Private Headers */, - 806E5B181DA26C8BAD9141A9139D715F /* json_reader.h in Copy src/core/lib/json Private Headers */, - 0BB160EBD04E17DFD77453783CA887FE /* json_util.h in Copy src/core/lib/json Private Headers */, - 6464382825CCBB1400B0E8E3DDB73AEC /* json_writer.h in Copy src/core/lib/json Private Headers */, - ); - name = "Copy src/core/lib/json Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D0141AF4B477E0455B455173BE0BF6EC /* Copy status/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status/internal"; - dstSubfolderSpec = 16; - files = ( - 16EB7344F9F95BBA65B8C99E37689E67 /* status_internal.h in Copy status/internal Public Headers */, - E1F8EF6027D0EA64932B26B7A1F489EC /* statusor_internal.h in Copy status/internal Public Headers */, - ); - name = "Copy status/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D0B7AB3F7C36F9E54B4A30187897A9C4 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/tap/v3"; - dstSubfolderSpec = 16; - files = ( - 0F7106B12088CCCA35210ED7E02C5074 /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D16761904416523813C2F4BA9B9DBFD8 /* Copy src/core/ext/transport/inproc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; - dstSubfolderSpec = 16; - files = ( - 1009A6A0CF6CBBCA89AEFF69FDF102EA /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - 563E142DAFE329071FE12B1B4CE20E4D /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - ); - name = "Copy src/core/ext/transport/inproc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D1A0938F654E0DE43901640902602A1A /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3"; - dstSubfolderSpec = 16; - files = ( - 8801B39FE0AC3E6DEC5272E530E28332 /* client_side_weighted_round_robin.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - 6B7ADDC665536BF1D68B7EF62546C938 /* client_side_weighted_round_robin.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D1F3464493BA147C3D0008D763E8ADCB /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 0346E7C06FF9D8E0135C41A588CD262E /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D20DFF32E542155F243CA122E0A31F5A /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - 85E5D8BF84FB83B890714ABB37C9E7E4 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, - F32990AD05C9E67438A35BCF206A95D9 /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D221C547C99B3B76926E0572483FE34E /* Copy debugging/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging/internal"; - dstSubfolderSpec = 16; - files = ( - 14DB2B832EA82CBA22AAA9A8CA09082C /* address_is_readable.h in Copy debugging/internal Public Headers */, - 2943418702E91493568273E466B7404E /* demangle.h in Copy debugging/internal Public Headers */, - FA91664A124A025801466E1B4505137F /* elf_mem_image.h in Copy debugging/internal Public Headers */, - FC26990F8ABE8EEF1275FC3C441A7F2F /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */, - 7E1D83B012A71E89E9BDCC2813416080 /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */, - 575B8002787BC0BBD78042AF1AD7AB04 /* stacktrace_config.h in Copy debugging/internal Public Headers */, - 62D2989459A26B9CE5EA8EC15266661E /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */, - 302B9AAE4CB4F22D41F7776AA1908009 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */, - E9F7F8E01C966F3336BF721507A49BA0 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */, - 54BADDC5EDADA78EF62ECF3EBA1EC8A7 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */, - 3A33A97DB890E732CE4A39EAC6B9EF03 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */, - DD2C1E7435A0872B13AB7681DED9CEF4 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */, - FE2402B628B37B850479CB7361913A1B /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */, - C93FAF1E934FB1C6B0CEBA5234102AAE /* symbolize.h in Copy debugging/internal Public Headers */, - F67AEE38DB8147041C013ED3B7BDDF27 /* vdso_support.h in Copy debugging/internal Public Headers */, - ); - name = "Copy debugging/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D24F3F442AB5C4AE25994AA85726A48D /* Copy src/core/lib/channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; - dstSubfolderSpec = 16; - files = ( - 01D723B3D529FDACF8ED70DCA2081478 /* call_finalization.h in Copy src/core/lib/channel Private Headers */, - 32FF99222065B576A2AB5B586A60A939 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - 135F51757516F8861034F158F89B905B /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 3381673DE783D280232433DC6043F356 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - 7929C213B619BE7DB985B07D7CD37890 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, - E534B988133220DCBD28F3BBB9BBAD17 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - F842C8756E41C297B72D7F16B14EB0B5 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - 5431312D0E2B7DE51A7D6D66B2BED8F7 /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, - C8BEB2C87DCEE86F3C0DE6837FF021D4 /* channel_stack_trace.h in Copy src/core/lib/channel Private Headers */, - 64B3ECB02246635CB50A901E7F3F15D3 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - FEE67DE1452C4FC5D1A9BA0D93BC50F4 /* channelz.h in Copy src/core/lib/channel Private Headers */, - 7A16FF380C2CFDA6F686AD592F25E906 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - 717A0C3D6F0CED3E81727D0BF19D463A /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - 5D82EDB31E7A9F8DA2BEA2CD37BADA21 /* context.h in Copy src/core/lib/channel Private Headers */, - 326941C448ADF2D312D8E093F090B618 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, - 0A03E24603BD5287E7932C8BEE73AADF /* status_util.h in Copy src/core/lib/channel Private Headers */, - 72188D37044F2CE345BCC8F759550EC0 /* tcp_tracer.h in Copy src/core/lib/channel Private Headers */, - ); - name = "Copy src/core/lib/channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D4151DC5C7FA358BB4AE07173B811DF9 /* Copy src/core/lib/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; - dstSubfolderSpec = 16; - files = ( - A6D7EB7214F1138072017C6A3C1CDD1A /* format_request.h in Copy src/core/lib/http Private Headers */, - 5C6A734FF3CD15C5778D94BB6A143BB8 /* httpcli.h in Copy src/core/lib/http Private Headers */, - 5761B3CCE10A205E9F0C0459073B71FE /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, - 04FF529433DD17D1BFC3A9BBE8ABC633 /* parser.h in Copy src/core/lib/http Private Headers */, - ); - name = "Copy src/core/lib/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D4E93F27DAC109E93345C3DD5000E8DE /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/v3"; - dstSubfolderSpec = 16; - files = ( - 9EB61E41A01921B45D4A8F62C476B8F7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 8C1C74BBD42BF900D6EE7501D5F970CD /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 4F8FC590325D685E555D844BE06DBFE3 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 11A8D11BA9A226C7E55396E439A9B72E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 7ABA3E21B700F798250E8F62861A0FBA /* typed_struct.upb.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - 3FAC695F698BCAD17E3052463CB17234 /* typed_struct.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D543E274F21671755FB96C045EBF3DDD /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - C75D3DB822925CF275EC59730F2B9C09 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 3BC24E3DFB3A8338E0D9EF754E16D27B /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 43B92C7F06C519AB6250273538470B90 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 6E80E51EEC3BFA50FA77B7E75E2774DC /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 1489AEE008A3A28AFFEC87CA16ABB502 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - AA59ACB772C3B577151BB2923912EB67 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 9AB44BB715030FE3FA1842D27E3C3815 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - 60605EC0CB921D536815F8049AFE0454 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D59FA37F7A0B5819ABE418A1603EB8D9 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; - dstSubfolderSpec = 16; - files = ( - AFC65B4B54BEBFAE9A16FB6AAF4F6DF0 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D6251A062177715160671482B304D4F6 /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { + CB022D1441C632B4005619C706710B39 /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; dstSubfolderSpec = 16; files = ( - 20020EA10B8F2390579FE3584E5EC92F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, + 7BAE05DA39FA8549FFF3C869312C4A9A /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, ); name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D6454BD64835C423D2862B390EF6444E /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = { + CB80094D081571DEA674C3B28EF1861A /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; dstSubfolderSpec = 16; files = ( - F26980EF3ED0CEC0F0B7E5564B406CC6 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, - C8A865981B283B8BF2302F82BF539339 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 2C8BAFEA6582CB282FF78201A5B8DD05 /* compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, + 0DBC714DDB6A4848CA9CB4C46ED6A3E1 /* legacy_compression_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers"; + name = "Copy src/core/ext/filters/http/message_compress Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D6B0DFB324B15A13377E86E256728CD5 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */ = { + CBE7D956DD367C2257FE3DC8AFB3E1A3 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3"; dstSubfolderSpec = 16; files = ( - 8794C757FE147BC344A9BB79AED4A5CC /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, + A4F47D7EDC0C0E26105B9B0B002EE0DE /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D6DC461A7F8B17AEC1403E9FA06F5472 /* Copy third_party/upb/upb Private Headers */ = { + CC028AD70BB6E00A1DBCA50458216F6F /* Copy third_party/upb/upb/message Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message"; dstSubfolderSpec = 16; files = ( - DEC363362F99BAC79813B73975F56861 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */, + 9FC654303B78123F8E795E0E53210A9E /* accessors.h in Copy third_party/upb/upb/message Private Headers */, + EC0F4F00E79BD0A9ABE8B98C7E91B1E1 /* array.h in Copy third_party/upb/upb/message Private Headers */, + 682CB8725DB9FE945B817BB3533A4DB6 /* map.h in Copy third_party/upb/upb/message Private Headers */, + 3A654AE3365D775FFA7666D8F19715E0 /* map_gencode_util.h in Copy third_party/upb/upb/message Private Headers */, + 64A0897E42100342518F49FDFC5F1786 /* message.h in Copy third_party/upb/upb/message Private Headers */, + 0F7E3F31797B004A4E848BAD29AAF6E4 /* tagged_ptr.h in Copy third_party/upb/upb/message Private Headers */, + 8585DC1A3D43E50B66EB8E4175BA8C3B /* types.h in Copy third_party/upb/upb/message Private Headers */, + 4EC9A272F134A7A89188EBD574260D6F /* value.h in Copy third_party/upb/upb/message Private Headers */, ); - name = "Copy third_party/upb/upb Private Headers"; + name = "Copy third_party/upb/upb/message Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CC7D0CA484C269FA4E1CA9FAE9006EF9 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/v3"; + dstSubfolderSpec = 16; + files = ( + E3A1664A361174EA380FBB7191758937 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + DC3092DE7AC6844BE52F2C8C44919E29 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 04C19D8F9452F2CD4F47916F1E6A03B4 /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 08C58625A91FA3DEE5C0A45ADA511CFF /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + B567637377A68042138D94459BAA875E /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + E7FB43287498251A56142EEA060BBDE7 /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 92352A78A99B4B0311E9447603C396D3 /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + C46F08D4CC9FA1C4B19734053FFB2B91 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 6C7B3045A358DDC4EEF29C3F41D05BF0 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 6DC5FDAE8C6859475D4BA96C3D3898FE /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + F220A17EE619186D8187BE329A6607E6 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 297140BAA3612A24E41CEC1954167E58 /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 83542C0094C6CC2A3EABC7720AD5A6AE /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + FA85B9FD40EAB7E9ECBACF95EB1B0CEF /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 0B331A84CC7A19AC11D2EC87086F4EC3 /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + CC8CBF2B853D3A5E175DC126DA9B2C0F /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + B6B909B0E159F54752E800DBDF2D1F51 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 9907603FB14A714CA22A1FA9C994BB65 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CD7C8AE2BFECEC9AAA47A4492C22204D /* Copy src/core/lib/security/credentials/composite Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; + dstSubfolderSpec = 16; + files = ( + E66EF9CB04CC1DAA3F2F9F45ED340A1E /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/composite Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CDBF13FB505F2704638D7837BB5A7DC7 /* Copy src/core/resolver Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver"; + dstSubfolderSpec = 16; + files = ( + 15EB19EE83DA455ECB02878F9D3DF8BC /* endpoint_addresses.h in Copy src/core/resolver Private Headers */, + 3A8692434FF9F9FED3FB4AFBBE439E1A /* polling_resolver.h in Copy src/core/resolver Private Headers */, + 701A22D519B51F5E69CBA471F0D0B632 /* resolver.h in Copy src/core/resolver Private Headers */, + FBF25CD196CC093E777F7CEBFA2DAF9B /* resolver_factory.h in Copy src/core/resolver Private Headers */, + F7606100756C084F4F981D21D3717D4B /* resolver_registry.h in Copy src/core/resolver Private Headers */, + 4BF3C8C9CEDDAF2135B073A0520DE9A9 /* server_address.h in Copy src/core/resolver Private Headers */, + ); + name = "Copy src/core/resolver Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CEA06B0CF4C22C057B8D8C0D40773216 /* Copy event_engine/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine/internal"; + dstSubfolderSpec = 16; + files = ( + E39EDB92D21A791D5D1E240DE83508DE /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */, + 930973AF883ED0542D574463EF920946 /* slice_cast.h in Copy event_engine/internal Public Headers */, + ); + name = "Copy event_engine/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CEE10CFB236BC306E9F80520995D6CB6 /* Copy src/core/lib/config Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; + dstSubfolderSpec = 16; + files = ( + B70EE0EA3F559937B1034C830628D5EA /* config_vars.h in Copy src/core/lib/config Private Headers */, + 1A3DF8A8E42DDA9B8B5F553D0405A2C2 /* core_configuration.h in Copy src/core/lib/config Private Headers */, + 51FB1B5EB9632CFF986FA285C1E5FDD0 /* load_config.h in Copy src/core/lib/config Private Headers */, + ); + name = "Copy src/core/lib/config Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CF8826E55BECABDDBAF629DB5F2F0256 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3"; + dstSubfolderSpec = 16; + files = ( + 54AB8CAFE968B2218D9CB8A0A13C8418 /* router.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CFBE13BE110392EC66B1ABC956ABFFF4 /* Copy src/core/lib/event_engine/thread_pool Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thread_pool"; + dstSubfolderSpec = 16; + files = ( + 78EB1773B4CCDAD3D344FFFA8DBE4CA5 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + CFB2AB140A34B047CE70B5904324E387 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + 1C4E71B71A80C2C38AE538A6B1522DF2 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + ); + name = "Copy src/core/lib/event_engine/thread_pool Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + CFEC8EC0F97005941C704774DEFBFA8D /* Copy src/core/ext/filters/stateful_session Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/stateful_session"; + dstSubfolderSpec = 16; + files = ( + E686C5955C5C33E495A5A3CD41430C8F /* stateful_session_filter.h in Copy src/core/ext/filters/stateful_session Private Headers */, + E7D6CF65770B43E33611E2867FE5BD96 /* stateful_session_service_config_parser.h in Copy src/core/ext/filters/stateful_session Private Headers */, + ); + name = "Copy src/core/ext/filters/stateful_session Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D044D80115095A770CB94779D06E3964 /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; + dstSubfolderSpec = 16; + files = ( + 058C1A1129939F196F9CA975FDF4A564 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/fake Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D057CC037D551B4337FCB2B01FA63708 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; + dstSubfolderSpec = 16; + files = ( + 1385E5A48826D6A0A89E1F62BC545C5F /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, + D1D2B396309645D96DFC89BC0F814ADD /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + B227C8DF5426F45C818643B124F3480B /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 4DDF4EC8BF6F41C42E7E59352244F800 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 09D2C1FA29ED6D264D8474BED59C0620 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, + 11BB1F55976F802F5B2401FF1D44B55E /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, + A8B6C16F8D33236A10CC8F6FF060000C /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/tls Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D06B53054CF727D86F5BD1D032CD0CCB /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/api"; + dstSubfolderSpec = 16; + files = ( + 827BBE2968C054BE75AD10DA9264B27D /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + 2127ADB30837B2ABDCBBD88D9986E522 /* http.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + 038A0536EC2A8794B047319D012436B5 /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/google/api Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D10842E863BA988BC16E3820ADCB1054 /* Copy random Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random"; + dstSubfolderSpec = 16; + files = ( + F535CE19BC44E39E7557CDDBB15964DB /* bernoulli_distribution.h in Copy random Public Headers */, + 53D2840469095A14B4558CB62C6643C4 /* beta_distribution.h in Copy random Public Headers */, + 1EB3E79A159BC0EE9CF3BDD262DD3B1A /* bit_gen_ref.h in Copy random Public Headers */, + C357E1F44CC6994F67BB855F4DF17361 /* discrete_distribution.h in Copy random Public Headers */, + 65E25D5856489E7DF118324236F7E352 /* distributions.h in Copy random Public Headers */, + 7C9299542589676F2BB22FDDD518DAD5 /* exponential_distribution.h in Copy random Public Headers */, + 049780564C38BFF81A635329068FBB3C /* gaussian_distribution.h in Copy random Public Headers */, + 59E3AE802011EE80270360A72B59E363 /* log_uniform_int_distribution.h in Copy random Public Headers */, + E60410A6349CE6EF7AB25D7B580CD41B /* poisson_distribution.h in Copy random Public Headers */, + DB98437C76B792B65975F4E4BEC1DC6E /* random.h in Copy random Public Headers */, + 01BBC1EDC34D1CB09571514EE3C00322 /* seed_gen_exception.h in Copy random Public Headers */, + EA4AAB7ED79ECED0ABB8153D623F06AC /* seed_sequences.h in Copy random Public Headers */, + 6F93D75268BF3C7979FADF333FFDB400 /* uniform_int_distribution.h in Copy random Public Headers */, + EA69F7A2463CDBFC69CEDD79238E5F0C /* uniform_real_distribution.h in Copy random Public Headers */, + E02C1654C2591901464B2649F63575E4 /* zipf_distribution.h in Copy random Public Headers */, + ); + name = "Copy random Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D11B972BA5DE969A8E71BFB016FB7052 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; + dstSubfolderSpec = 16; + files = ( + 8B3920DDF86B96629E868A78FFC880D1 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D1580093E6AE29C54FD304AAE0610302 /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; + dstSubfolderSpec = 16; + files = ( + 668E557415951989292E7405EBF33CD7 /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, + ); + name = "Copy src/core/lib/security/security_connector/fake Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D17963760D070FF9F677DD14604C52D3 /* Copy src/core/ext/transport/inproc Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; + dstSubfolderSpec = 16; + files = ( + 56024C5D64DFA80004F252AEFDA8ACB5 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, + F8BCF41AE0EBBA8AD17DCFD948CBB71C /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, + ); + name = "Copy src/core/ext/transport/inproc Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D198D9496D507E3696F4D5ED0814B641 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/data/orca/v3"; + dstSubfolderSpec = 16; + files = ( + D798A7A64E83EA542F8344493E9268C3 /* orca_load_report.upb.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + A4EED4C8F9AE60E5AEE503B9A5383EFC /* orca_load_report.upb_minitable.h in Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D387B8B8E9535781479E258048DA1115 /* Copy numeric Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric"; + dstSubfolderSpec = 16; + files = ( + 5B51C3BB820E7FEED50CFEAFAFC4A2CE /* bits.h in Copy numeric Public Headers */, + DEE74A967CE39DB87629FACF14C2DD3E /* int128.h in Copy numeric Public Headers */, + 4553EB1E55A340130249B866EFB59B61 /* int128_have_intrinsic.inc in Copy numeric Public Headers */, + A160D9C0740CF7F49C9DDCC59FFCEC47 /* int128_no_intrinsic.inc in Copy numeric Public Headers */, + ); + name = "Copy numeric Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D3B8E377B4722448D678873C310BD94A /* Copy third_party/upb/upb/message/internal Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message/internal"; + dstSubfolderSpec = 16; + files = ( + F1E9855DBDA03E619F191D7CA685A5E7 /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */, + CAA42C0E1C6330B5152170A39D1B00EF /* array.h in Copy third_party/upb/upb/message/internal Private Headers */, + B7CAC94793D355C73CF18F6FD080713A /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */, + 5BE010B227E70048E2B642E65E411106 /* map.h in Copy third_party/upb/upb/message/internal Private Headers */, + 62557E542D4A3210DF57611CA29E3C21 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */, + EE2D1226845A237F3A71C137B486705D /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */, + 06E00124E1D055B2CD2D3CAF1ABDF5CE /* message.h in Copy third_party/upb/upb/message/internal Private Headers */, + 3799DE1349A44840EE978BE74514F1A3 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */, + ); + name = "Copy third_party/upb/upb/message/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D4648DD01E50653F6C15D9032DFEAD88 /* Copy src/cpp/common Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/common"; + dstSubfolderSpec = 16; + files = ( + BBE2FACBA567E4B6FD4BE81DC88241B9 /* secure_auth_context.h in Copy src/cpp/common Private Headers */, + ); + name = "Copy src/cpp/common Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D471A0719B8AF8D2B8C2294A2542AD5D /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/discovery/v3"; + dstSubfolderSpec = 16; + files = ( + BEFEABD5D191CAE39C310F456437F5B6 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + 1A91D457AEFF8B736E6ED7973E39E527 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D49FB17346629468833843E048AD2BCD /* Copy src/core/resolver/fake Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/fake"; + dstSubfolderSpec = 16; + files = ( + 306670CE55DB4644BE30962502F8CCC1 /* fake_resolver.h in Copy src/core/resolver/fake Private Headers */, + ); + name = "Copy src/core/resolver/fake Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D57D0C95214210BF008DF0BE59688BDF /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3"; + dstSubfolderSpec = 16; + files = ( + 408924008C77C6E183ED9638CB722F35 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 35BF7E5853F656AFE45084170B9940EA /* common.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 873DB29F920DFEE90A44CAB12590977D /* secret.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 72E70270358187D6D00DDB32F8E445C2 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ACF833D3841F45F6B2C1F55F3A159D73 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D58D8814263CB0CBFB787F9C89798792 /* Copy src/core/lib/event_engine/cf_engine Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/cf_engine"; + dstSubfolderSpec = 16; + files = ( + 09D350EBAD82FD31CE6E9FA2F5C6825F /* cf_engine.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + 2657BDDC14CFAF76B4F33AC6FFAF2F91 /* cfstream_endpoint.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + C00EF37FAE5AF2F30EA2309701E0A202 /* cftype_unique_ref.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + B4FBA466B9DDA1E54223CE87304C8612 /* dns_service_resolver.h in Copy src/core/lib/event_engine/cf_engine Private Headers */, + ); + name = "Copy src/core/lib/event_engine/cf_engine Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D627623F25F639C11C341EC04D90C56E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3"; + dstSubfolderSpec = 16; + files = ( + E0947AD487A9E3ACAA4557CA5383B8EC /* ring_hash.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + DA4103B14D7A7A68F5A1601615D8E8C7 /* ring_hash.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D628CE8419D6E9BD9652C3C1E2E8E949 /* Copy third_party/upb/upb/message/internal Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/message/internal"; + dstSubfolderSpec = 16; + files = ( + 2D88F2FB94B03C0CF0D3BA78391BAACB /* accessors.h in Copy third_party/upb/upb/message/internal Private Headers */, + DC881022079767309F7688EC9A826E0C /* array.h in Copy third_party/upb/upb/message/internal Private Headers */, + 8EAB6C7105CD1DBA80C63ED8B92B5F75 /* extension.h in Copy third_party/upb/upb/message/internal Private Headers */, + F85EE54AA63B4DB217B90DE75810148F /* map.h in Copy third_party/upb/upb/message/internal Private Headers */, + 08140C9391766D6D3CFDB9F821050DD6 /* map_entry.h in Copy third_party/upb/upb/message/internal Private Headers */, + 52F8BDB96D742C90ECE2579CE6DE4F40 /* map_sorter.h in Copy third_party/upb/upb/message/internal Private Headers */, + 3A9E0D5F2709E94A45B958E9F6D1B82C /* message.h in Copy third_party/upb/upb/message/internal Private Headers */, + 6EAFF07B1CB314E901A133516A0FA1C6 /* types.h in Copy third_party/upb/upb/message/internal Private Headers */, + ); + name = "Copy third_party/upb/upb/message/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D6A16C710CAD3CB8BDE381C04477D5BD /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3"; + dstSubfolderSpec = 16; + files = ( + 99F66A05D20920E2CAA92DC75D00AB0B /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + 005FEAAF5365749BB0EB62296A33A8C6 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + C80CCCB69D6CFA00D10224FBBB16F9B6 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; D77E4FE44371203AD4776B85BA8D5972 /* Copy crypto/poly1305 Private Headers */ = { @@ -16935,181 +16913,185 @@ name = "Copy crypto/poly1305 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D7A73752191013D40D82127C492B05B4 /* Copy third_party/upb/upb/base Private Headers */ = { + D781955A751F13C459EA5B2BAFA4D455 /* Copy third_party/upb/upb/mini_descriptor Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_descriptor"; dstSubfolderSpec = 16; files = ( - B48BDFB759BD2E9BFD1776EF040DF47A /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */, - 02FDB7782F7A468643D6DE28A53773F1 /* status.h in Copy third_party/upb/upb/base Private Headers */, - 93A229FFC266764EB5F0458AC9BFD11D /* status.hpp in Copy third_party/upb/upb/base Private Headers */, - B70A9F4BE297694FCE1F7A3FB8B1C452 /* string_view.h in Copy third_party/upb/upb/base Private Headers */, + D82E4496900961A11C19CD5264C9A1D6 /* build_enum.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, + 5DF3D4F78C2E5F85AC0B4DB9EB1D7446 /* decode.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, + 9B637AFEF94C990C12A8F986B080770E /* link.h in Copy third_party/upb/upb/mini_descriptor Private Headers */, ); - name = "Copy third_party/upb/upb/base Private Headers"; + name = "Copy third_party/upb/upb/mini_descriptor Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D7C20DB56C30F6475BCAF00332272089 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + D827E16A8F445329AE063DF4E97B3DED /* Copy third_party/upb/upb/wire Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/wire"; dstSubfolderSpec = 16; files = ( - F305C1F62CE8B63D5E74BA1BA594C067 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - FF79596B88C5E6AB0E997CAAD2DE9E5F /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 8CCEC4077484808D89CE1781BE044CBA /* decode.h in Copy third_party/upb/upb/wire Private Headers */, + EF525B03CFFFBE92FEF43EB456E9BA21 /* decode_fast.h in Copy third_party/upb/upb/wire Private Headers */, + 3E8A22CD5B1D1365B20EC84AB97018A6 /* encode.h in Copy third_party/upb/upb/wire Private Headers */, + 263E2B66E424CFF1ECC6D95383059332 /* eps_copy_input_stream.h in Copy third_party/upb/upb/wire Private Headers */, + 9DCB92F3FD53E745BE644320BA650960 /* reader.h in Copy third_party/upb/upb/wire Private Headers */, + B0EEFE97E4A4F223722F802942394086 /* types.h in Copy third_party/upb/upb/wire Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; + name = "Copy third_party/upb/upb/wire Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D7F0B1B10F254BE9C6AB624BCED45CE9 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */ = { + D838CC8C23F825C2FE009AFC5CF66D64 /* Copy src/core/ext/transport/binder/wire_format Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/route/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/wire_format"; dstSubfolderSpec = 16; files = ( - 0509D36A31CC72479167596EDAC7A4E8 /* route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - EFAF0894F977D4EC66275276BF5FF90F /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - 08A59B590266870BE736B0E6B374AA1D /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + D05697D8F9530ABFC7716E547A88BC91 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 4F39E8BCAA6DFACB7D1B0B11FFC4C953 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 3A154BFC5778205691825D1CFCF10BBF /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 4DC276B1F4972533EF79AA628A2995CF /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 3651A0957BF03D31F630433B7E53D8E8 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 358CF58912087C78BB9CF90F312ED9F2 /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, + 2FAEFFD6D0DA7322E8C956A211692F64 /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers"; + name = "Copy src/core/ext/transport/binder/wire_format Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D86F7822705D326E81E83DB106584A4E /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { + D87DDFEE0C85C98BF4C8221251752E70 /* Copy time/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal"; dstSubfolderSpec = 16; files = ( - 0A90910DB968EFC4DAF02A1ADE880C21 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 4A50A3939D99757401D2EF121DCBF3E1 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 95CC696A3B7B8D1C887EE627EAB0C00E /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 5EA3895C736495625C739657F4A46F25 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - EF9E163DA7C8C5DD1F7916A7EAE790EB /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 1D39966371A6017450411761D48D7E38 /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + 1647C7A1713D07728504F783E7A5C60D /* get_current_time_chrono.inc in Copy time/internal Public Headers */, + C24876D4EC5313909FDADCC20D3B12C9 /* get_current_time_posix.inc in Copy time/internal Public Headers */, ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; + name = "Copy time/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D94ECB57D8DBB4E07589D8CE4A5C4931 /* Copy src/cpp/server Private Headers */ = { + D8AA6207965EA7BF2609A6F75003E8FE /* Copy src/core/load_balancing Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing"; dstSubfolderSpec = 16; files = ( - C584AB0F825942E710CC5EA6B1545533 /* backend_metric_recorder.h in Copy src/cpp/server Private Headers */, - 5F8F957BECBEDA3F5D551758C40B248F /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */, - ED9138354FE5D19CE8A2F7812F8BFAFA /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */, - FF2C3A489CA6C963FCB90C7D8AB2DA63 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */, - 921742EC3822D783F6EFA250C361273E /* thread_pool_interface.h in Copy src/cpp/server Private Headers */, + 4764A27160B49158371A8CB946F42173 /* address_filtering.h in Copy src/core/load_balancing Private Headers */, + D8C18BCD509215F1E5408FC39756132E /* backend_metric_data.h in Copy src/core/load_balancing Private Headers */, + 6CCC3BB4C0FA1F745B3D4980DFEA0D1B /* child_policy_handler.h in Copy src/core/load_balancing Private Headers */, + 391B34424CC42B65DBFA4A6AEDF0BBC2 /* delegating_helper.h in Copy src/core/load_balancing Private Headers */, + 07632C13FAC1E647EF34FC2E469119A5 /* endpoint_list.h in Copy src/core/load_balancing Private Headers */, + 19FEFD73D6B6299C613D74EE39B9DA09 /* health_check_client.h in Copy src/core/load_balancing Private Headers */, + 4B45C5BA8274EA4995740FC7FFDEE4AE /* health_check_client_internal.h in Copy src/core/load_balancing Private Headers */, + BBE1F78BF5D5E779BD2929FC4DC5C863 /* lb_policy.h in Copy src/core/load_balancing Private Headers */, + 3876E91C01A4E39C28D074F6A3EB7558 /* lb_policy_factory.h in Copy src/core/load_balancing Private Headers */, + F67D0D12A0BE0553095993547459F6C8 /* lb_policy_registry.h in Copy src/core/load_balancing Private Headers */, + 765B93F41A6076A88B07ED3B45F71E97 /* oob_backend_metric.h in Copy src/core/load_balancing Private Headers */, + 9E4A6AEDC2844604CB53FF49E90AF6F4 /* oob_backend_metric_internal.h in Copy src/core/load_balancing Private Headers */, + 8C24DF620A4228B396D5A0CF0AC09214 /* subchannel_interface.h in Copy src/core/load_balancing Private Headers */, + 2906F0F48AE2E1EFF2EE24935A782423 /* subchannel_list.h in Copy src/core/load_balancing Private Headers */, ); - name = "Copy src/cpp/server Private Headers"; + name = "Copy src/core/load_balancing Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - D983D6A87B9403C5120B5FFF5D2ACC9B /* Copy impl Public Headers */ = { + D8F462C988C6AD8FC15DD8D0774134C9 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/metrics/v3"; dstSubfolderSpec = 16; files = ( - B821B2FC4D19F9608C3FD8C9C395A0B8 /* call.h in Copy impl Public Headers */, - DF6A7695813189A6BF371F38396845A1 /* call_hook.h in Copy impl Public Headers */, - F05A9C4CC730532C9CE30F4646E7B663 /* call_op_set.h in Copy impl Public Headers */, - 787413DDCFBD1CBCF4D62926F90617E3 /* call_op_set_interface.h in Copy impl Public Headers */, - 42D3848BDBF8F13167CB5FB9D1E9C5CD /* channel_argument_option.h in Copy impl Public Headers */, - 7C387D89D7D9965A91148A107ECCEAC8 /* channel_interface.h in Copy impl Public Headers */, - 0DE9560FC6EABDB115A02A9E47D90D76 /* client_unary_call.h in Copy impl Public Headers */, - 2396B27AA8948B3A640CF2A00B4C542A /* completion_queue_tag.h in Copy impl Public Headers */, - E7B1470CE91F1462BF9F680E1408B61E /* create_auth_context.h in Copy impl Public Headers */, - 06329EAC9D0DFEC44E69A970464B059B /* delegating_channel.h in Copy impl Public Headers */, - DED59065D5BF7D5320871DB5FB79B1B7 /* grpc_library.h in Copy impl Public Headers */, - B78B792CEC944EA4B0395E4E146CBAD5 /* intercepted_channel.h in Copy impl Public Headers */, - 8E5E60416A0FFCD5164E64365659E6C7 /* interceptor_common.h in Copy impl Public Headers */, - FFBA395BEDCA5AD7E87AF781887501F6 /* metadata_map.h in Copy impl Public Headers */, - A51C32DC6890A82FD96AF789C29CC58C /* method_handler_impl.h in Copy impl Public Headers */, - C2BB7EDD253F88E92CB0C544ECF39807 /* proto_utils.h in Copy impl Public Headers */, - 879423E230AB7AE04F04DA8F82D27910 /* rpc_method.h in Copy impl Public Headers */, - AEBCF751C3E336F2092E1DB97790D9D4 /* rpc_service_method.h in Copy impl Public Headers */, - 159554DEC14E78BB6EF57D29996D340B /* serialization_traits.h in Copy impl Public Headers */, - 74114E59E4A988D94B9B110A4307BB11 /* server_builder_option.h in Copy impl Public Headers */, - 4CDC6D9AE1B8C777D585E1F270C7553E /* server_builder_plugin.h in Copy impl Public Headers */, - 432FA24618463FB2FC5FC2FDE16E2970 /* server_callback_handlers.h in Copy impl Public Headers */, - E5FC5532403C490B6CA17B9177429D98 /* server_initializer.h in Copy impl Public Headers */, - 774EEF9B898C2C0E31A71C2E5FD47BB8 /* service_type.h in Copy impl Public Headers */, - ECDD5EB3729390235A6D4F0A5A658AC9 /* status.h in Copy impl Public Headers */, - 7F74E8A928F4EF8CC77B93532355C731 /* sync.h in Copy impl Public Headers */, + 6C69C7D9A0AAAF548CC65B77055F63EF /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, + D79ED82C4336C8538B2A382705CC7AEB /* stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, ); - name = "Copy impl Public Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DA4CC49D0D22132874EB466C13816AA6 /* Copy impl/codegen Public Headers */ = { + D8FEC079274A5A04F0527B1FA8D8D017 /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/tracing/v3"; dstSubfolderSpec = 16; files = ( - 736D8241067606819DD3D935568AA50A /* async_generic_service.h in Copy impl/codegen Public Headers */, - 87724D4994CEB01CA3F2529249FA534E /* async_stream.h in Copy impl/codegen Public Headers */, - D17A42549994FB1231F34CCB8429F55E /* async_unary_call.h in Copy impl/codegen Public Headers */, - 46FA833AF784311C97FDBEAEDB318AB9 /* byte_buffer.h in Copy impl/codegen Public Headers */, - 8F7E8611D0EEB54D363C5D6B9E05B2F9 /* call.h in Copy impl/codegen Public Headers */, - 6838D32FA41FD2ACD47527CF451F892D /* call_hook.h in Copy impl/codegen Public Headers */, - 101B98A337DD374E19FBCEE05F506F68 /* call_op_set.h in Copy impl/codegen Public Headers */, - 100FB000AC58D17636C07D08B33C6D11 /* call_op_set_interface.h in Copy impl/codegen Public Headers */, - 019809FB7B5635F95741712C1C9DE917 /* callback_common.h in Copy impl/codegen Public Headers */, - 15D605EAC041462F27EBD70D75C38432 /* channel_interface.h in Copy impl/codegen Public Headers */, - 78B7641DF59DFD519F2EDECCC1ED3DDC /* client_callback.h in Copy impl/codegen Public Headers */, - 58D41B1C12E2B3CA325906FAE87F6570 /* client_context.h in Copy impl/codegen Public Headers */, - AF2FD6DFC2D8DAD8C30B1248BA0EC2B5 /* client_interceptor.h in Copy impl/codegen Public Headers */, - 56E3505AEE10E784168DB9BA575C5436 /* client_unary_call.h in Copy impl/codegen Public Headers */, - 80F8FA975C421058EBD11D80E350EB7A /* completion_queue.h in Copy impl/codegen Public Headers */, - 75F233B700F618C3CF3B367B9A8371CC /* completion_queue_tag.h in Copy impl/codegen Public Headers */, - A32547F27A5287C476C690E7E944C059 /* config.h in Copy impl/codegen Public Headers */, - 6F1884071AD69D33BB127036224CEABD /* create_auth_context.h in Copy impl/codegen Public Headers */, - 27C2540C0A52E88AB04E80744885BB01 /* delegating_channel.h in Copy impl/codegen Public Headers */, - 43E707752358CDD150062AE0574D7BCD /* intercepted_channel.h in Copy impl/codegen Public Headers */, - F1050F3F4A522BB60AEDF8E7F8A294FB /* interceptor.h in Copy impl/codegen Public Headers */, - FB68A98D4743E7C2B08C4D725A908FD7 /* interceptor_common.h in Copy impl/codegen Public Headers */, - A15507DAA8B1C533691077DA04C54733 /* message_allocator.h in Copy impl/codegen Public Headers */, - 045E4E98862A07659572ACB4EC80A15E /* metadata_map.h in Copy impl/codegen Public Headers */, - EFCA281FBBF45BDAAFE8F3ED6BC40C96 /* method_handler.h in Copy impl/codegen Public Headers */, - 848F90F6EE891F70B9D416F11D0B1BC6 /* method_handler_impl.h in Copy impl/codegen Public Headers */, - CD0BBFAF1F6F7B953448A1F5FF90C3A0 /* rpc_method.h in Copy impl/codegen Public Headers */, - F3DA13595924BA220E04B2679B61C05C /* rpc_service_method.h in Copy impl/codegen Public Headers */, - EE6054D93A1E01137E5452FF6499981D /* serialization_traits.h in Copy impl/codegen Public Headers */, - EC4FC4DF09474A5334CA75AAE7D1F245 /* server_callback.h in Copy impl/codegen Public Headers */, - B0ABD7650C9E975B5B187A794554CFD4 /* server_callback_handlers.h in Copy impl/codegen Public Headers */, - F836C92983DF858B0F79B636BDED212E /* server_context.h in Copy impl/codegen Public Headers */, - 25E868E70E487ACD0CC86A7BF4CBF2E3 /* server_interceptor.h in Copy impl/codegen Public Headers */, - 52196599E38E73EDB0A405B95FA5FA51 /* server_interface.h in Copy impl/codegen Public Headers */, - CAA62B8A6DA3635CD8C3F4955778B4EA /* service_type.h in Copy impl/codegen Public Headers */, - 32993EF6CC7D9D75CFA12D79A60EAB12 /* slice.h in Copy impl/codegen Public Headers */, - CB12521832A758A82213132502F6E388 /* status.h in Copy impl/codegen Public Headers */, - F12764A4E16BDAA95900BA62C08EFE58 /* status_code_enum.h in Copy impl/codegen Public Headers */, - B4D8CFF5FDB6A9F2E1F83DC171B7890F /* string_ref.h in Copy impl/codegen Public Headers */, - 4C08542614EADDD00687B54429870637 /* stub_options.h in Copy impl/codegen Public Headers */, - 49BE8700C443D509F07FD5025F1D6238 /* sync.h in Copy impl/codegen Public Headers */, - 3D5EFF677D571C39E7FF307AAFF80D70 /* sync_stream.h in Copy impl/codegen Public Headers */, - 218EE54A6F4076AEA9135A1375A6AFA4 /* time.h in Copy impl/codegen Public Headers */, + B678F39B0B12439010938D9E241A1A30 /* custom_tag.upb.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + 314181F6D9D971898BB14B89DED30273 /* custom_tag.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, ); - name = "Copy impl/codegen Public Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DA75FDA839AD8D47ABD46F3421ADBEC4 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */ = { + D93EB1AA128D47938CEEC5A571093A67 /* Copy third_party/upb/upb/mini_table Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/cluster/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table"; dstSubfolderSpec = 16; files = ( - 10F76BFBBD9CD61BAC7628E7D3BA88D3 /* circuit_breaker.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 0224A1BAC719AE6E4F6B470B78D4B153 /* circuit_breaker.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - A6557DF1D9BE8EF8F36488BBA813BAD5 /* cluster.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 01A655E662EF799AFB4B2CDE15F4F31D /* cluster.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - 9A1AC58D28B5D48699A62869B4E66260 /* filter.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - CFA9860100B5BDB01755904BA5B656CF /* filter.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - E8CBB7E42BC81BB669ED81672A17C15B /* outlier_detection.upb.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - B02FC803D89FF5CCBD3B12C1D56D3110 /* outlier_detection.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 76667FB40887351392BF210C0AA30F27 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */, + 5C5494839F5BAF113B6B99A72E890B02 /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */, + F8234A1DB2285719AE403177B859E5B5 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */, + 7A6AA6CDD6989B934E6029F0B9805222 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */, + C01CF56675AF560EDBA30C1CEB7BDD43 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */, + 9813A09B6374F56E3209D5E942AD46C1 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */, + 7420374B9B47CC2289C2637E041165D4 /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers"; + name = "Copy third_party/upb/upb/mini_table Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D9DA1D8A85C18634AFC6710B36DF3FC8 /* Copy src/cpp/server/health Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server/health"; + dstSubfolderSpec = 16; + files = ( + FF0BD42A7C463E5100F277BEE9DFC9C8 /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */, + ); + name = "Copy src/cpp/server/health Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D9ECC42311B3819C3FD4348A35813915 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3"; + dstSubfolderSpec = 16; + files = ( + 8E0561C220640CC2335A6F07EC66C497 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 4449797E39BB5EEE488A8A031057D315 /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + AB3BCBF25EC5CCB70E833AF7A19FA825 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 6A18A9B2081000CA16875A4B0E39219E /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 0690F91FAF47B862822F90202BF81015 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 975E38EAF0C7D7E30EAEBD758A3F59C1 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 99D34DDEAFFEBAA4208F4CB4DBAB4CB5 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + E7B2DC09FF1F9B3601FFE9F59EB70C9F /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 1973A73DB1DC4E755BFE3AA70BA4F62F /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + A70298746D75C68FE5067BB7762D098B /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + D9FA9F26F37487D10A02F5F180651349 /* Copy src/core/lib/security/transport Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; + dstSubfolderSpec = 16; + files = ( + AE756201176BCB44A5BF398476B37F4B /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, + C9056F054961EFF78B1576A7CD8EAF6A /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, + 336AB9573A7A4D65BE7C45C293484374 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, + 69185BFA6983695383E321F26177C719 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, + ); + name = "Copy src/core/lib/security/transport Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + DAC6AFA75B16662B9B544072FD90978E /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; + dstSubfolderSpec = 16; + files = ( + CF6405A2BA8B7AA5AD3C7BD253CF84DB /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 9CA8F7781938F818AD129D0E4A7191D6 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 26C92B06640A77FD70D42BF3A4D0E6A0 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/jwt Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; DB1B9D24AA69D7A957958C23C5B89459 /* Copy crypto/bio Private Headers */ = { @@ -17123,215 +17105,457 @@ name = "Copy crypto/bio Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DB6A75CC9E557D3677733B6E799E3CC9 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */ = { + DB4424AB3D6D76C9366E3B4A7E50E919 /* Copy third_party/upb/upb/base Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/status/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base"; dstSubfolderSpec = 16; files = ( - 5760FF7194F2C4FBF8553F584497B3A6 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, + 42BE23A1B7DCDEEF9E1D450C4D13EA91 /* descriptor_constants.h in Copy third_party/upb/upb/base Private Headers */, + 6A8B05A0628DA5D8B8352AC8EB472B2D /* status.h in Copy third_party/upb/upb/base Private Headers */, + ACE8ED7BA2ACDBCC5670D89285A83C2A /* status.hpp in Copy third_party/upb/upb/base Private Headers */, + 343E7358127A41D6B429A4A601AE1664 /* string_view.h in Copy third_party/upb/upb/base Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers"; + name = "Copy third_party/upb/upb/base Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DBF3A8A93DD990C70BCD52B282D8C87E /* Copy src/core/lib/event_engine/windows Private Headers */ = { + DC1986BA4AB7D09A57CB43A8D7460808 /* Copy src/core/lib/security/credentials/fake Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; dstSubfolderSpec = 16; files = ( - 9E645079EAA71E60923571B223843E36 /* grpc_polled_fd_windows.h in Copy src/core/lib/event_engine/windows Private Headers */, - 5E2D89CDCD327834D5856ED20828B32A /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, - DDAD4A7DF7DBB838D8A4BDAEAB861C04 /* native_windows_dns_resolver.h in Copy src/core/lib/event_engine/windows Private Headers */, - C4020B707E976AF3FD1BAF4076AE94D9 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, - CB917C6CDB39DAB24FD6D8170444DC0B /* windows_endpoint.h in Copy src/core/lib/event_engine/windows Private Headers */, - F378B7475713E1DBCC5902C54CF150F9 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, - 0BA2C94DFD12F3E1B56B18C355B099ED /* windows_listener.h in Copy src/core/lib/event_engine/windows Private Headers */, + 612CB13F802D5DDE3E95F7DCB70E100F /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, ); - name = "Copy src/core/lib/event_engine/windows Private Headers"; + name = "Copy src/core/lib/security/credentials/fake Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DFA3902A1916C93B8CDA380467E43ED4 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = { + DC1DF2FD1FCAF1567F6640565E4C21E4 /* Copy utility Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/utility"; dstSubfolderSpec = 16; files = ( - DFAF68BF2F49B3491CD53ACC9CD9AA86 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 7162CF0F41A9E90FCBAA8E93B0D067E8 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 1B4780DA3CE74571392387848CBE3B3F /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 8F7EA3B085CB6F470C5B3CBA870F7C90 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 9CB7359E49A00F5080CB11DD385BC3CA /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - A8E8538FD1E15A68F8FB2793C501208E /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 916E7086B8E8791901152F32223C541B /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 7D5939A4FE18A107479AE63E3EFB8E76 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 106D407E18381E3E5147F46C8CEAA7A2 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 816ADC8A51B25E9EFEFC7E25129F5BE5 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 87FD32EEAA4F7AF6B75EBCCAEFE8F761 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 0B6EB7F88A2678EC2D5434948D126F9D /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 6B96A34DB8F3C89EF1D480122F89EA11 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - BB93AD1274F330605C4F5B08E450F788 /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - BC42DACCB213D1E60461F489B8984FCA /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 96E5A131D4E8520DC263CA64219F3DDE /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 90146604E5F42F8F42175F28045A56D4 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 3ADF6FEF52FD51E0B4648A4469702766 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + EA14C4DC30D86FF428337265EE17CA18 /* utility.h in Copy utility Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers"; + name = "Copy utility Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - DFA4EAF43A3B246FECA9147A4FBA86A2 /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */ = { + DCBD88653D1C19EFA71BF81705DF357A /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/annotations"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/src/proto/grpc/health/v1"; dstSubfolderSpec = 16; files = ( - B9BA98FF29807C2FC642E8BD0749599A /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, - 61FAAB2FDD6FA1D456B9D712D594B699 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 21F42F2C2DD268014B23FAA8CCDBEFF0 /* health.upb.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, + 5430C701F979F7E78A1B719113747296 /* health.upb_minitable.h in Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers"; + name = "Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E061D049D36B1FE95AC6B2BB82844EFB /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */ = { + DCFC7C70F645175C39228B690D9ABBBD /* Copy src/core/resolver/dns/native Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/native"; dstSubfolderSpec = 16; files = ( - 86C27151A62C8A359F126BA6E6CA1C3C /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, + 9E88E77078DE9986A860E00DE87A72F1 /* dns_resolver.h in Copy src/core/resolver/dns/native Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers"; + name = "Copy src/core/resolver/dns/native Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E0C305DCD3FFC955C7F25952D346F887 /* Copy src/core/load_balancing/pick_first Private Headers */ = { + DDA9FE22D91BBA0B945AC2F540789C41 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/pick_first"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3"; dstSubfolderSpec = 16; files = ( - EB6F9050F965A58792954F57311600C7 /* pick_first.h in Copy src/core/load_balancing/pick_first Private Headers */, + A42ED65A6C3AEE32D8221036E114FBB6 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + B29D0F0A4C29FB01F737AEA9FF8035BA /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, ); - name = "Copy src/core/load_balancing/pick_first Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E11321575BAEE0CD0A5D8AED4AC9D108 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */ = { + DE3B69ED17D72D456DF9F1A3344A3CA0 /* Copy src/core/ext/filters/rbac Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/http/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; dstSubfolderSpec = 16; files = ( - 37A4CBE3EEF9BFD0AFD01E841510AB57 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - CD850D7D0E1384ECC834643BEF381291 /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - AE9FD8DD44A9864FF8B9D2528D2298C7 /* path_transformation.upb.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - DE0F216DE21F005BCF65FA5FB48801E0 /* path_transformation.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 81FA1BD60D6E896BABE89F155431BCE3 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, + E76F68F68355838E034D21C80EE3B37F /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers"; + name = "Copy src/core/ext/filters/rbac Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E2058206712CADAF0F2C117CBE436662 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */ = { + DEB44BAF5C2C79107CBC9E458E97266F /* Copy status Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status"; dstSubfolderSpec = 16; files = ( - 72BFD0A50FEF1F66A487F13D2C4E6B72 /* stateful_session.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - EB111007D8149696053725B204645EAD /* stateful_session.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + 497100039CE6BB0748266F6A81BFA7B3 /* status.h in Copy status Public Headers */, + 59823DA88132CB7222447ABE5A7DC574 /* status_payload_printer.h in Copy status Public Headers */, + B8D57E6D3DB7DA42DD5FE817355EDE43 /* statusor.h in Copy status Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers"; + name = "Copy status Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E2C43B6A5D3324955870542D1C4C7111 /* Copy src/core/ext/transport/binder/transport Private Headers */ = { + DEC917F4C85BB267A19922B9F3C2BCAB /* Copy src/core/tsi/alts/handshaker Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; dstSubfolderSpec = 16; files = ( - 05CEEFDB2BE25021AD491738078BDB06 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */, - 7B5DAB447DE2E177C4944D2B4C9EE9FA /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */, + 7FC1272944A785684A5AB411C3B0D96F /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 7E797D861424A8D3A58D1FC2A6C5D916 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 42389EF5D20FCECD0D50117152E8BABD /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 73F2E40293A413F71DABB2E9463375B5 /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, + A6C698BC0BC09AB7D27F95A95DAF5E50 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, + 6CBDE943BB72592D8770058B14080F00 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, ); - name = "Copy src/core/ext/transport/binder/transport Private Headers"; + name = "Copy src/core/tsi/alts/handshaker Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E3277EBD93BE1A8CA24E02E1820BC2F3 /* Copy third_party/upb/upb/reflection Private Headers */ = { + DEDCEC3507A4B442ED8666BF57295942 /* Copy src/core/lib/iomgr Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; dstSubfolderSpec = 16; files = ( - D7C70373FCACE2453A934660AD6BFE9B /* common.h in Copy third_party/upb/upb/reflection Private Headers */, - 21230A10506D9392CD7C417A3D19D326 /* def.h in Copy third_party/upb/upb/reflection Private Headers */, - C506EAB6BB3F3BB83E1EAA80B12C838A /* def.hpp in Copy third_party/upb/upb/reflection Private Headers */, - 3965291BE78DD134045C7D8ED21CA6AA /* def_pool.h in Copy third_party/upb/upb/reflection Private Headers */, - 700DAE2407B3295EAE6956B1C4C7EE5D /* def_type.h in Copy third_party/upb/upb/reflection Private Headers */, - CE8D59747646EDA900A304622DE2F559 /* enum_def.h in Copy third_party/upb/upb/reflection Private Headers */, - FF6E4D7C223B8C98E600CB0808890F24 /* enum_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, - D72816B17B3EC02926F2FB69F3C24C7C /* enum_value_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 2FA9079292332784AEB6AEB2562AE2A7 /* extension_range.h in Copy third_party/upb/upb/reflection Private Headers */, - 5696C8D66505101C7B3A02AD41C2E6DD /* field_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 7D90F6EF44D7E15DFAA3898AA93CB588 /* file_def.h in Copy third_party/upb/upb/reflection Private Headers */, - A821C9ED776649D46C8740B2F57B9231 /* message.h in Copy third_party/upb/upb/reflection Private Headers */, - 2695643611DF52EF19FA35608AA06B3D /* message.hpp in Copy third_party/upb/upb/reflection Private Headers */, - C961A7118D9A7F48881B08962F48245E /* message_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 3418EE893D4BABBAC57334E186E0B1DF /* message_reserved_range.h in Copy third_party/upb/upb/reflection Private Headers */, - 06F4A6B4066F80D65D52AA95816D2123 /* method_def.h in Copy third_party/upb/upb/reflection Private Headers */, - F5CB0217AB7E2CA0B8045438E59A6794 /* oneof_def.h in Copy third_party/upb/upb/reflection Private Headers */, - 1DDFBCBBEFB503C8C36D53F080E8D26E /* service_def.h in Copy third_party/upb/upb/reflection Private Headers */, + F06E56C818D79AE848141036AEBBFA0B /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, + D514BE8E136FC282D5ADB7584CDF6EFB /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, + 147C6A5E4CD38B0EB4026F596FFE8FB5 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, + 8688F62CFFF570079D26D54D860AE54C /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, + 58EBB0733711FC6948A21D03F6F339C4 /* closure.h in Copy src/core/lib/iomgr Private Headers */, + 1CFE5E21A8DE73AF01E10626702E8CE9 /* combiner.h in Copy src/core/lib/iomgr Private Headers */, + 4A19CAB3C54B62473B9BE36FAF0AB322 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, + 45FB2F47F6510E095E4B62071E4EAD3E /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, + EBDE20B45CC58E4EBCD527948D24041C /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + 3193100BAD0502502622388813301939 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, + 34338FDDFB178AFF0CAFF9D2145E4C19 /* error.h in Copy src/core/lib/iomgr Private Headers */, + 72BD7FB370EAB03F91A93B8A1E984D5E /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, + FD1A9DCA7D4A8434571AB76D7783EF2C /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, + 67ADB4E289B8BCB04DA92C816B9D8542 /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, + AA4A779FE1B88C8BA8FC3251D3314B07 /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, + 52C512DE268FE575B02EF5968B3A297B /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, + B4913D44F65E2CC63E8A0DA35E41EAB8 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, + 0CA899739BAF8E24E8F092A0DF280F8A /* executor.h in Copy src/core/lib/iomgr Private Headers */, + 390A196E48C05E4BB781503ECF81942F /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, + 865DCDC6FDE6AAA849DF58B64B2FE0B8 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, + 0D54FC60350A60AC1B62957A91123D19 /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, + 13977A85B6F237016AF4664A8F57A092 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, + E96BC97C144849B69C42399C9ECE35B3 /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, + 2BB1E3F4BD56A5A60EADDB5DC7658B4E /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, + ED1445193C0F3B085E8B0ADB2F541595 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, + 55D58FC51D13D17107EA3C57E26A8A96 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, + 30BE01C9DF3478CC1343E79AC3C28D73 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, + 10687B094637A4C4BFD5D214D8158A37 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, + 63A91DF5BC87EBDB900BBAB2B983B00B /* pollset.h in Copy src/core/lib/iomgr Private Headers */, + FD567741E1C93B7E12C3D63280BEF778 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, + D37F01F86CA8321891F471EC200F066A /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, + FD0E089E4E5730226901F7161C77C769 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, + C20106E50A750121A563A5831904263B /* port.h in Copy src/core/lib/iomgr Private Headers */, + 6A6AB1BCE17CB2FF9E2EC88837842905 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, + EBAE0DE64410DC1FE05D4653ED4D48FB /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, + A9FFC4B91AE04286DBC7422D2FE9BF3A /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, + 27D48E5E077F1D0A41338667B72D416F /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, + 3771D95018C8293EE0F40538C912737B /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, + 2EE36F21AB07F976CCB8EF0DA7A65FB7 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, + 592F3D68F185798371133242AB73ED96 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, + 18EA73F5E25D9D81BFF83A728DBD2047 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, + 04479D0B9D4F20AEC74A31B4B1031BEB /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, + 1B24A816D6764EB7DD9E2655B3D77320 /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, + 50F569F94ABF4CF4160E166CB5685A79 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, + 0FFC68AFD169D6F6B26E1C71857308A9 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, + FE8BFBF4925A3725CF79B5FAFD923265 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + 82F13409AC7CBA00A01B1F6762AF367F /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, + 2673C8261AAABAA94A24565970CFC139 /* systemd_utils.h in Copy src/core/lib/iomgr Private Headers */, + 34D5DA12F5F0E860409FF21D08D82C04 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, + 857971FDBD272972BBB4C1AD975BA79B /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, + 6122798036F7AF6223660BF43DE47540 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, + 1FC37124D79811AB4705326E5520F2E1 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, + 3D1B3AA254E8F800F6A4D5E15549D3AE /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, + 3ED22EEC1536CA53BE6D5894CD840830 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, + B71E7F7302E40B755B5435E87F3A9CC1 /* timer.h in Copy src/core/lib/iomgr Private Headers */, + 3DA9F5579C437ACB7AE5C5158A4273BF /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, + 02AA535FCF19BC5F5E0F0A2480AB1E2C /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, + CB42BDA1C3831B84CD49DF633E672860 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, + 0E96887D647D05C7415A13E1F1E5F3CD /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, + EBC47D723B27C511CBD4BCCED4C5B1AB /* vsock.h in Copy src/core/lib/iomgr Private Headers */, + A22F443A728156D5CFC401FFE97329E7 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, + 1E5314F69802E72776795CFCFB2BFA32 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, ); - name = "Copy third_party/upb/upb/reflection Private Headers"; + name = "Copy src/core/lib/iomgr Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E3820D028720F4D6401059A419801FAC /* Copy src/core/lib/matchers Private Headers */ = { + DF5F680EF042208750FEC461AAEB4E75 /* Copy base/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base/internal"; dstSubfolderSpec = 16; files = ( - 4B508EE4E211412DD57D89C80AE23586 /* matchers.h in Copy src/core/lib/matchers Private Headers */, + C9854A53B7CB7C26A407719B2D2F4D94 /* atomic_hook.h in Copy base/internal Public Headers */, + CCAAB07D0D1BD9BC21B339FE143536AA /* cycleclock.h in Copy base/internal Public Headers */, + F15E7D1AB3FDA08E1D3CACDAE2FB5D05 /* cycleclock_config.h in Copy base/internal Public Headers */, + 30EEB91D3D044C4C4886D3088209D2A5 /* direct_mmap.h in Copy base/internal Public Headers */, + 21A08AC5CEA9865C8150E9B286A13F4F /* dynamic_annotations.h in Copy base/internal Public Headers */, + F8F882BEB0D078805474039C154E48AE /* endian.h in Copy base/internal Public Headers */, + EE48E60778FBE7E3DA42FED5C555847C /* errno_saver.h in Copy base/internal Public Headers */, + 2F3ED2D8884EFCE8E3479239DCF9B17C /* fast_type_id.h in Copy base/internal Public Headers */, + 0B7632BD75D6E35DCB7F385391FD9D3A /* hide_ptr.h in Copy base/internal Public Headers */, + 023D59ECC43AD6C6858FB2412288CA81 /* identity.h in Copy base/internal Public Headers */, + 9890ED7999ADC24A609282EA86E46BF4 /* inline_variable.h in Copy base/internal Public Headers */, + 55E932D349D566F2A595286FBCF51E78 /* invoke.h in Copy base/internal Public Headers */, + CE2D5355A2F252064E6F80F857F2B7DE /* low_level_alloc.h in Copy base/internal Public Headers */, + 795985374B15304DE859F49C25719299 /* low_level_scheduling.h in Copy base/internal Public Headers */, + 9BF9805240D9E84662E62B44B412D1DB /* nullability_impl.h in Copy base/internal Public Headers */, + 4F59A8C81527379B0A32988875AB93D2 /* per_thread_tls.h in Copy base/internal Public Headers */, + A787A508415F883F42D78DFAE1122299 /* pretty_function.h in Copy base/internal Public Headers */, + F8CB7D4332FE6F5E4483B99A474BC5DB /* raw_logging.h in Copy base/internal Public Headers */, + 92B7F65E7538C0CDAA812D49AE9B6178 /* scheduling_mode.h in Copy base/internal Public Headers */, + 6F2CE36882C3C3597D1807F2C6A4B815 /* spinlock.h in Copy base/internal Public Headers */, + F17187B25E693D7D8620AC26B602F829 /* spinlock_akaros.inc in Copy base/internal Public Headers */, + 20DE264E594FAF51C1D7669CBFF69152 /* spinlock_linux.inc in Copy base/internal Public Headers */, + 51785F4EFF94B7E5DBFEF1B0C2217172 /* spinlock_posix.inc in Copy base/internal Public Headers */, + 555185A45F1E8D195E902AEFA917377F /* spinlock_wait.h in Copy base/internal Public Headers */, + 4916E62665B53992F0BF20283F46EFD9 /* spinlock_win32.inc in Copy base/internal Public Headers */, + 7B64EE797D49F42D981AEA995B40CE62 /* strerror.h in Copy base/internal Public Headers */, + 39410ACF41C49D6F93D45BE72664C6A4 /* sysinfo.h in Copy base/internal Public Headers */, + 69E7F30A05D3246F52CA471DDCB8DFE3 /* thread_identity.h in Copy base/internal Public Headers */, + 8C051867F985B56AF29D61B846D6DE7C /* throw_delegate.h in Copy base/internal Public Headers */, + E9D26A4152D88AF33FEE9DFAAE7B4AF7 /* tsan_mutex_interface.h in Copy base/internal Public Headers */, + 189B1E7119295CC6BBDE3E44385E3E2C /* unaligned_access.h in Copy base/internal Public Headers */, + 85777F33D1D3C573C16FCDD985174C88 /* unscaledcycleclock.h in Copy base/internal Public Headers */, + 37FDF2DBDF0512D849DEA4CFE3EE02AF /* unscaledcycleclock_config.h in Copy base/internal Public Headers */, ); - name = "Copy src/core/lib/matchers Private Headers"; + name = "Copy base/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E3B9EE77BA16149B693CAA822107C209 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = { + DF7EED9151547C5F30AFCEFB5B798BC8 /* Copy src/core/ext/filters/channel_idle Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; dstSubfolderSpec = 16; files = ( - 1BC5E87CEBCA3EEE92F25A4E7AAA87F9 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 06F854CD43DF662A8F11DAD925CFAB23 /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - C2ED44E9F49ED562A772FC72F481B463 /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 637FE915C347647E92241C90036B0B26 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - B2B83176410ADB66FF8A1EB857E8F1A9 /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 39BEC041FB56F837DCBB8B74FFCAD696 /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - A98DA288A28BDFED67524D446DCAF06E /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 44E8788623647E591B863A599D5ED7F3 /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 652AA695D28E2A299D6B5E9025E54819 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 185A27F46AFE5A28A349F43B79496629 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - C0602D4922DFE9512B623C7AC8224443 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 75FD6CF90E0C08F8E28908AE97BE227B /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 855DCA3E6CB44A8BF880E8A0757B7FCE /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - D25C9A0E8B103A302E9F092EA149F0F4 /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - CE4E1F5AB39D0F1B4FAAD48FA533B7EA /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - A86A76D31BABDE79F34348CF0F3B2727 /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 1E3672189EFE58388818A30B711BA8E2 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 3BF95E7CB17AC04ADEC5EBF321ADDDF3 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + AB0A62EE3700DF1F7058ADF310F6B29E /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, + 13C7BC06841E47E3596B735AE9F8050C /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, + 0624FE78FB0292D326F2A17DC8A4ED98 /* legacy_channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers"; + name = "Copy src/core/ext/filters/channel_idle Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E49D15DFE9B46C8A9E36016D3DB18057 /* Copy src/core/ext/upb-gen/google/api Private Headers */ = { + E04D3B5D2C0312862BB19C3E0CC287BA /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/api"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - E0129526CFDF3FD2D34C6CB479684462 /* annotations.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - B90114112C58AD538B8942BFA6A0631B /* annotations.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - 7C6E4ED9138900C8598A86B46E3E039A /* http.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - BE2B02A3639B444C4ED9F944EFC42A32 /* http.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - C0F93EC821B15433357C984535DDCCD6 /* httpbody.upb.h in Copy src/core/ext/upb-gen/google/api Private Headers */, - EB04F6C37AC4B664CAE99708D0FA1FA7 /* httpbody.upb_minitable.h in Copy src/core/ext/upb-gen/google/api Private Headers */, + 332D6C69883559EACAE63E3E5B9821A6 /* address.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 8B9C5F091F46D8A48971A0990C011B8F /* address.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0B3CDC50F3BD608299303E2B8452E67D /* backoff.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + F82816FD20AD1E4039D78DEA1C689833 /* backoff.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + EAAFD21E84EDF17BFBCF673E4EBEE002 /* base.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 703AEED40955826AD72443FA6C9327D5 /* base.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + ADB4F1BBD9820105E1E75553C565CF7D /* config_source.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + D2B8FAEDC9AAAFD0BEDB22C37C3AFFF0 /* config_source.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 87125BAA0A329ADF13BDE6606AE6F82C /* event_service_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6EF183FAE361E8A9FDB9F0818A061497 /* event_service_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + DEB4772EA7AF4635233A84E1AFC0056C /* extension.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 5F8A7B1C1A32CC07556F3A315B4D3B0E /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 01B8BA41E6D2C8192C8C31E67EA6E053 /* grpc_method_list.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + C8DCE88A723CE2CA2A9F18CD47259B8B /* grpc_method_list.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 06C7972D27CA019703A288FAD2A3D16A /* grpc_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 6E016838F67EB4C31D768BC83BA99BC7 /* grpc_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + E0AE2D19B5EA6530FFC723DB70824A43 /* health_check.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + C2DEA17C646EFF9F8D99DB540F5EEAFA /* health_check.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 7EBA167973FDF17CB547E1D5658C51F6 /* http_service.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + C5F5F60D0DF6057BC57EE3C372C98C70 /* http_service.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 55825CA61713E007BC0842776047D3B0 /* http_uri.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 474E54D00E9ECC0743D0D587136AA700 /* http_uri.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + B17C7940F4A8ECF29CE43FEA77EF3F13 /* protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 0558A86DEAF0FB7C39FD1BA91A1F401F /* protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + EE6F2B4CBBA0EB3C548AEE6D180675D3 /* proxy_protocol.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 77C13B9B43EC6182A9A687AB0EAB5C3C /* proxy_protocol.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + AF106B590DE466D32B3EAADF8D1FAEA0 /* resolver.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 251EDFB4844769238E94510FD81750BC /* resolver.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + EDE674E85357A9D920C70C22DD764B19 /* socket_option.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 706AE72A5C6ACEC09A4516A0504D9494 /* socket_option.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 95B8DF31BACEC7EC3A65BB5960B7A0D9 /* substitution_format_string.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 33262699D921BEEA324CF9600A35914D /* substitution_format_string.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + F87B32F9581F37FE3B5543E04CFA5D89 /* udp_socket_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 132B918B404DCE0A5562B1D8567B3421 /* udp_socket_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/google/api Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E0703A0E7B0591D423940C597ADDC9B4 /* Copy third_party/upb/upb/reflection/internal Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/reflection/internal"; + dstSubfolderSpec = 16; + files = ( + 41695E6E89D3FBACBD6FDE409C34D5AA /* def_builder.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + A5FD821812F5A33C55DDEA5593E3979A /* def_pool.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + F480192EE0763790AECCDE65DFA8A943 /* desc_state.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + ABA32AC6ACE25C3C7E1E41EEE01429D8 /* enum_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 351496473C1555BEDD861F199E9EED6C /* enum_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 50B09F8B58A290CA204F493AB163360A /* enum_value_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 4FAFEF148DEC1194D9C798326EE74373 /* extension_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 8395122B72FDE24032774373A6B6998F /* field_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + DD0A9A129123AD591C9F08EB262CA8B7 /* file_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + B155BDCEAF3F34466279C4D10FF82538 /* message_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + ED992F4EB61E87F4CE30EE22F55108B3 /* message_reserved_range.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + B376F91AFD3D36F7EE4B55B8DB23DC94 /* method_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 6934CA159FC54374A36AF1D62EE76AA3 /* oneof_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 5D6BBEECF35F873949249741EA93A2FD /* service_def.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + 36F1EF0623BE2E0F041663D9340DDE01 /* strdup2.h in Copy third_party/upb/upb/reflection/internal Private Headers */, + ); + name = "Copy third_party/upb/upb/reflection/internal Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E0871124E485B6F5EFD90861F590966D /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; + dstSubfolderSpec = 16; + files = ( + F09D533639284FCD5F750CAD60653FF2 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, + ); + name = "Copy src/core/tsi/ssl/key_logging Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E097DEF768611DA3BDDD7E76DA07748D /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/admin/v3"; + dstSubfolderSpec = 16; + files = ( + 44D5499CEE574119C7510C4D7E8169B8 /* certs.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 01ED828AFEFFE48A94A0068C0E59DD40 /* certs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 88428B34B72B9F575970577BCE5B445F /* clusters.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 415D701CB8D6C2A064AEBF1006E3E183 /* clusters.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 13D78D23FA99209E48245FA8C817D068 /* config_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + F4A1FB1575AD0D4753CC3AC302E72746 /* config_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + AC001ECC5C4C60456ACF8721019EFA7F /* config_dump_shared.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 095D41875FE257A71D15CCC9C4A9D016 /* config_dump_shared.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + E5F94D39C5B2D8769F9C448A18929A62 /* init_dump.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 0BE01BC9117BD5CAA293F34F3237BA49 /* init_dump.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + C3F9DB01F33AB9EE1E570C03B1EF43A3 /* listeners.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 4EBC9AED17FAD7818AD13F9F16F3D77E /* listeners.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 20DF894DB9D3E9C9BDEBE0631729CD65 /* memory.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 9A5C340C4D7CCF5EFAA09A3E43E7700A /* memory.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 8845D5B69D2D529519EFF7E018CDCEC5 /* metrics.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + D335E8A4C1848833EFB797E63BFDBB59 /* metrics.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + C2D66E21F0F3770AA7DE425E1D0F1C54 /* mutex_stats.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + DF72DC2EC1C2823AC68BFB931DCC45DC /* mutex_stats.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + BD054639F75EE105D6C7AFC2AA5287DA /* server_info.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + C78E0AF10A85895AB6A695B6FDA1C082 /* server_info.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + E9787E3F4828BAD6D79D1CFC515149E8 /* tap.upb.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 29B551CFC4A36268A175FF26C46B2973 /* tap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E0D7FC972A8E42068E73DD7FEE875B3D /* Copy src/core/lib/compression Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; + dstSubfolderSpec = 16; + files = ( + 576AD874BFE6DA3201FE2C9A1338BEC0 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, + 1D654E46772CA44DD0DA71E0E2588121 /* message_compress.h in Copy src/core/lib/compression Private Headers */, + ); + name = "Copy src/core/lib/compression Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E1315F59C0AB67ABD97F016587D70E03 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/accesslog/v3"; + dstSubfolderSpec = 16; + files = ( + 2431A30F32CC0608ED76849DCECB3E4E /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + F4E7BAE5DB323B8D555C4ED654576E80 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E14B0E9BF51D2BC464A02D064A873C8E /* Copy src/core/ext/upbdefs-gen/validate Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/validate"; + dstSubfolderSpec = 16; + files = ( + BB65CC0220E32B3919C254BDF2CBBAA9 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/validate Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E17650FB5CBF670F71362E4BD0C9159B /* Copy src/core/ext/filters/http Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; + dstSubfolderSpec = 16; + files = ( + 73F57F03E31580D264ADAA164C330C07 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, + ); + name = "Copy src/core/ext/filters/http Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E184FB095B615AAB3EC9ABF107623D9D /* Copy profiling/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/profiling/internal"; + dstSubfolderSpec = 16; + files = ( + 36D46BD1E83EBCC244C62382416B5BEB /* exponential_biased.h in Copy profiling/internal Public Headers */, + 2D5B64E2D673608AAACECBE4301204B2 /* sample_recorder.h in Copy profiling/internal Public Headers */, + ); + name = "Copy profiling/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E1ECB1E8AB90F5E3A34F5FD6A95C1C0D /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/tap/v3"; + dstSubfolderSpec = 16; + files = ( + C8FB972E45EF5E43B55F90F21249FB7D /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + BD2A25ED8F6AB78D78940962364258F0 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E38547DCAEA50A14A218C42572D78375 /* Copy src/core/lib/security/authorization Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; + dstSubfolderSpec = 16; + files = ( + FE5F5B70425AE56D795567E821E9BB22 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */, + 7FFD5BB23232DF8E6637E2BA18D3A6AA /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + 09B986196DFB3541489F31927D5A6017 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, + F6CDC60C37BA951DFAF4159589BA8AE4 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, + 5F2724047A84C075F7A23C03C50CA994 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, + 4533BC69B1119B6D959B94872817ACBB /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, + 114D57B2E839EA146D8725573D5E9913 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, + 840CD955ED6B8CC07404EB610C022A2B /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, + 7903A4517291510C111E82805F6874CF /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */, + ); + name = "Copy src/core/lib/security/authorization Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E495AE60065916E458312439D112DCF3 /* Copy src/core/lib/handshaker Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; + dstSubfolderSpec = 16; + files = ( + 02E27EC6E96B13A20E7F1CD2B423143C /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, + A71E5ED978BB83EDDB63F40B9A325D6E /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, + ); + name = "Copy src/core/lib/handshaker Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; E4A6F57DBDD6AAE7583E6C6028C8BC15 /* Copy crypto/pkcs7 Private Headers */ = { @@ -17345,15 +17569,16 @@ name = "Copy crypto/pkcs7 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E5243E4E8CEFE28C36A15E99C295F5E9 /* Copy third_party/upb/upb/text Private Headers */ = { + E4E63E418F886E65D13585C889E5789C /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/text"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/rbac/v3"; dstSubfolderSpec = 16; files = ( - 7FEDD0635588F34FEF5072AF2436D72B /* encode.h in Copy third_party/upb/upb/text Private Headers */, + AB08FA05C79A14C8493600CED6FA413B /* rbac.upb.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, + 4A3FC2E50FB6199091B4FEB7685F3B55 /* rbac.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/text Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; E5612EDC24383A08CA3ACEB86CA0D4B1 /* Copy crypto/cipher_extra Private Headers */ = { @@ -17367,6 +17592,52 @@ name = "Copy crypto/cipher_extra Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; + E57CD14332F977973C3362376B89CC32 /* Copy debugging/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging/internal"; + dstSubfolderSpec = 16; + files = ( + 1E9947873417D6CE164F40BE0445DA39 /* address_is_readable.h in Copy debugging/internal Public Headers */, + 9A607CDC062B3FC49CF8905EA2B992B4 /* demangle.h in Copy debugging/internal Public Headers */, + 17CC2EB7742C73F69897850B83F28B8A /* elf_mem_image.h in Copy debugging/internal Public Headers */, + D36170501A09762629A03251E87D639F /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */, + 5374AED5DFE22C8AA4089D30D1271A7F /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */, + 4F7239DD73EFA8CED892633580A8B310 /* stacktrace_config.h in Copy debugging/internal Public Headers */, + 1751B17FB8606F7169DD7850BD6046FB /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */, + C3F741BCDC5B2D2081F4204CAB1B142B /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */, + AA953166DBC4F404EE28AB740D3D7AB8 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */, + E92BF27E3954E6C5ADC1A7885EC24130 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */, + 5DBBC59475BFF1FC7A9D946463EEA9E0 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */, + 91E4C50D13DA0375C84ED15B06A2ABF9 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */, + 28D15ADECF416AD68272B6BE47B6F831 /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */, + 17F60E7C6DDC3080C7DB438C0504B6DB /* symbolize.h in Copy debugging/internal Public Headers */, + F0BD849D5F3707BE7EDC1C747E44A3F1 /* vdso_support.h in Copy debugging/internal Public Headers */, + ); + name = "Copy debugging/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E5A950B41C1601157F30DBE20C7E95B1 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/admin/v3"; + dstSubfolderSpec = 16; + files = ( + A1320544AE4C422B8FA1AABCDC75D287 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 020FAC62704BF1909A1FBC7F4E3096E3 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 957F7D9333D34901575C6983B6111C7E /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 528B23C3D625A1E13238B0B68609DF30 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + C2C383274DBF2F21E21E114BD61D593D /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 39BE1AB81BB8640EE76202C5FA85499D /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 003C3DA0B08C9529D9A1CB207B46B2B9 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + B12C09F9B7AF77D262E358588C1BCA71 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + CC80DC335F8C020A73D971E1325B98C0 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 05D7D773A449D507DAEA011D4555CE58 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 971DE9783009EC15180355FCED2DAF0A /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; E5C79202B83BCE4259A0DAAEB15868A3 /* Copy crypto/fipsmodule/ecdsa Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -17378,16 +17649,43 @@ name = "Copy crypto/fipsmodule/ecdsa Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E66B0B3FA486B7AE87544F761EB1B4D4 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { + E616DB5575B87970A9854470D7484A34 /* Copy src/core/lib/backoff Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; dstSubfolderSpec = 16; files = ( - 1B4B79D24ED915040FB8DB0FE0761EDD /* wrr_locality.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - 5B12608CF87E814ED9C7E95EE4AB23DE /* wrr_locality.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + BE253AC3DB8700C2D882543D22FDCA17 /* backoff.h in Copy src/core/lib/backoff Private Headers */, + F397D465C7C7BD9A489FF9B18E5275F9 /* random_early_detection.h in Copy src/core/lib/backoff Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; + name = "Copy src/core/lib/backoff Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E634FDB73CAFEC2FA176CB34D4DC8526 /* Copy src/core/lib/event_engine/thread_pool Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thread_pool"; + dstSubfolderSpec = 16; + files = ( + 12000916B41F9DCF1D19ADB3BCE2D129 /* thread_count.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + BF8E7A76DA2DE9317452E18249EAD3B7 /* thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + 160D4175EAE130F3AB4AFADF2BB3DA45 /* work_stealing_thread_pool.h in Copy src/core/lib/event_engine/thread_pool Private Headers */, + ); + name = "Copy src/core/lib/event_engine/thread_pool Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E65FB9974B9A6F8BCEFCE7C6541F741E /* Copy src/core/service_config Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/service_config"; + dstSubfolderSpec = 16; + files = ( + C1A9CAD6D2910AC0AF7D81192CBC2B06 /* service_config.h in Copy src/core/service_config Private Headers */, + 5210356C283FE60F6B49EE0AE5364B8C /* service_config_call_data.h in Copy src/core/service_config Private Headers */, + 558C760A12E2C1AF6E054FC82DDAFBB1 /* service_config_impl.h in Copy src/core/service_config Private Headers */, + CD881416BCA532E82847C1C98AB2AC86 /* service_config_parser.h in Copy src/core/service_config Private Headers */, + ); + name = "Copy src/core/service_config Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; E6877EB309C3226BF434979BC7A37043 /* Copy third_party/fiat Private Headers */ = { @@ -17407,27 +17705,69 @@ name = "Copy third_party/fiat Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E68A9181CE9B4139E0CF9B1B597F082D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */ = { + E737221DBD1F259424527D7525C3539F /* Copy src/core/client_channel Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/client_channel"; dstSubfolderSpec = 16; files = ( - 72782BC47AAFCC036445510E4EB8043E /* pick_first.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, - 661F272A47F819FA76F48BCD755D7FC1 /* pick_first.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + A29120585E5F0F90F6667AE5440653EB /* backend_metric.h in Copy src/core/client_channel Private Headers */, + 2B172AF96397CA19243786DA3198E065 /* backup_poller.h in Copy src/core/client_channel Private Headers */, + 9A6A865FAC809E5AEA1F6FC9D55585ED /* client_channel_channelz.h in Copy src/core/client_channel Private Headers */, + 070D65BCBA1E45C774A8EC7FA7D4EED0 /* client_channel_factory.h in Copy src/core/client_channel Private Headers */, + 1D74D6D4633438EA73CFAEB6CA02CD29 /* client_channel_filter.h in Copy src/core/client_channel Private Headers */, + 4AEBFEAE4562683AD7B5A4E2E985A6D3 /* client_channel_internal.h in Copy src/core/client_channel Private Headers */, + 4340C69A8CBD4C6CA06E613F8E97782B /* client_channel_service_config.h in Copy src/core/client_channel Private Headers */, + 78370EC3ED8670C04DF77334A144B968 /* config_selector.h in Copy src/core/client_channel Private Headers */, + EFFB0B13ADA58158E1EDD713E01ABB5E /* connector.h in Copy src/core/client_channel Private Headers */, + 651A62AE500FE45E8E44BF04AFE8DFD5 /* dynamic_filters.h in Copy src/core/client_channel Private Headers */, + 8E8E9302149F9F8F7FBDEC33CB2DD459 /* global_subchannel_pool.h in Copy src/core/client_channel Private Headers */, + 7817FE4DFD06F710BE1D2B50837D79BA /* http_proxy_mapper.h in Copy src/core/client_channel Private Headers */, + 938B5B67DAB1050BF55F6126322E5566 /* local_subchannel_pool.h in Copy src/core/client_channel Private Headers */, + DE3F93BD6AC802B49E055E05A53358AD /* retry_filter.h in Copy src/core/client_channel Private Headers */, + 1073DD5826F66DB7DE4D0D07AF3101CF /* retry_filter_legacy_call_data.h in Copy src/core/client_channel Private Headers */, + FF749681F8B47C71DB9CFA627072AA43 /* retry_service_config.h in Copy src/core/client_channel Private Headers */, + D0A5E031A15B221B4D9F5B5F3F798A19 /* retry_throttle.h in Copy src/core/client_channel Private Headers */, + 54CB3EC8DAD2F07249EB73DB865F0EFF /* subchannel.h in Copy src/core/client_channel Private Headers */, + E61D19276BF3AFBFA31564B9A7EBA54F /* subchannel_interface_internal.h in Copy src/core/client_channel Private Headers */, + 7A93E553421CA08BA2E5733C61FE1D2E /* subchannel_pool_interface.h in Copy src/core/client_channel Private Headers */, + D55661F639BD37A04ABFF0C8F1AAC46D /* subchannel_stream_client.h in Copy src/core/client_channel Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers"; + name = "Copy src/core/client_channel Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E6A6F7B290F24732E8FE14508C9D389A /* Copy src/core/ext/filters/http/client Private Headers */ = { + E76DCF2F778D5D5469169DDAC227FF15 /* Copy src/core/ext/upbdefs-gen/validate Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/validate"; dstSubfolderSpec = 16; files = ( - 5F0C0D2579C7A6B07B70BE22B30EE521 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, + 2DE559A96A99DB759C148B86BEC819AA /* validate.upbdefs.h in Copy src/core/ext/upbdefs-gen/validate Private Headers */, ); - name = "Copy src/core/ext/filters/http/client Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/validate Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E77AA7ADA241A103A961376E9C67BA9F /* Copy src/core/lib/address_utils Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; + dstSubfolderSpec = 16; + files = ( + 7DE71836151E973EC385BE4C0C89EDE0 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, + E45D0D73F458CFD2B9A8F508F4774F76 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, + ); + name = "Copy src/core/lib/address_utils Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + E7DB3C0A690163E27CF3B399C555B91A /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3"; + dstSubfolderSpec = 16; + files = ( + 877593368DF125C1EACB0B675AE9F4E9 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; E7F2003EB233BF50371FCB7BF92C8747 /* Copy crypto/conf Private Headers */ = { @@ -17442,257 +17782,98 @@ name = "Copy crypto/conf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E8DC96FBC92B5AEC98084DE05212E62B /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { + E9AD52041E0EDAF82375737C61C6FC99 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; dstSubfolderSpec = 16; files = ( - FFF50DF3E6BFDAF54A0602694D70641D /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - B2EE6737F00D057A428C376CCDCAEDDC /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 222240CCDCA301E79D765ED1BEF10F99 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, + 49E5709BE053449A33AC2F99601E3B82 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; + name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E8F803B7A48EA1CA3DB5DF00DAC1C736 /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { + EA2FDE34153E7C5733E12F7BDFD15C17 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; + dstSubfolderSpec = 16; + files = ( + FF35741814DC34877A7DCFA079F8D1D7 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EA9EF05169909B7A1692F711A602F23A /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; dstSubfolderSpec = 16; files = ( - 4DC80BBA2A3333DCE428D3D32C14F744 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 0AC2FA0ACE11481602F5ABA7C23EB9EF /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 983CCB5F61E10952527C4078300E5D83 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B7FC68E518154C96C050C34042832FE7 /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 57BCBC0612E6865363EBF8716030BA96 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2AA175F1AAA676B9231D494DA1C2640A /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 306DB7BC06A49C19261FF823E3E936AB /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1F606975A28CAA36DFA230BCCD1CA297 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A93D856C85C56412CB4EC619B4DF1CFC /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B0B9E53AF20A6D29868D49EC517BBDAC /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 6E41190E0A056E5637CC4CE2CC36CF29 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A92F0584E814A556EF751502C75A1427 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 712E1FB4EB355A4F5BDB769E5D26245E /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - C2A77856508457E0A0859F0F47EC7EAD /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 99F720B05DBC53FDFDC3C38A05A64D80 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 76E5E5B361EBE0DC23D717A45B7BAF41 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D5F4938733CCC7308CCA90B416B38741 /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - E87FE2A6B818EAC4BA1CC896D2990502 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - FCC2EAC4A43B60E3FF7CAE719F4D4B0E /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 14446F55E3D2C53AF012A735D48E26A6 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9C14078CCF2E5C7580601C270FD987E5 /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 997972E0F23AA90A4D87B9C9FC569293 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 4B53CFE52DF06570F54E748EA6107406 /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 82288CA8DDA0CB1F9CBE9F6D0D108E64 /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 8190342358AA8A268F8934BF488CFE94 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - BCDAF8BDF5BFE6B771C071FC9858FE61 /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D8644FC9B3B35B0C02D6B0F94E81BA89 /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 66FE379772B8FEC0E2B02F52F65FDA1A /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - C803E5E817FD2EC57F00181A42B75164 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2424BCB37450490B04699369DBD3632B /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E8A4CCEDD0EE053B6B5AA082AA55A0FD /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + DA2C3C5C85337C1EF993E67E75683E44 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + FE4FC78E126C8EE56359D200FD0B5999 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 4ABB5967C1036585B4D7C5403F85C79A /* context_list_entry.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B6581D977DC808F06BD48EFFA5344F08 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 78D5C7349B2865BDAEFB83B3FF76237C /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + CFBE53A76FC84D0E4DF6EBF76F7066E8 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + EB2F95AD63901BA3B804A9EEB176FF90 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + A51333F10698D512149BA88EC746E180 /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + CFA4DFCB369427D6B65B02C2A6BAB095 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + B121CEB56C5ADA5EFF3BA5EA6447EEA0 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + AC2FC14A215F0F4BD20AC05EA6E0DEF0 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 8FCCDD965DEB9A4405F405B929651695 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 11300FD8C2A56A680E9206E0F8D9BE5D /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 296141A2CA83C75C14B31D316CD7C480 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 0C6B70797E08032B5F5303A66E08C7BD /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E1A7B147EFA33225A70A6713734E8D32 /* hpack_parse_result.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + A9B1DE6A4C0DA855EFE2CF2EA760E313 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 191292255AEFE70E89824A9F9F9054C5 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 3E9605E4D10CFACF8F1B7C3CA0183068 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + A74E8DBC8466BF40E3292146EBF39384 /* http_trace.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + BD310CDB08A977CFB7413406E21DAEA2 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 7281EC6A9D430D07720C3ED56E627B0B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 77781B68D0A9F86FAFD023CFA379728A /* legacy_frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + DA03625820A2648C7F935A3BE2C23E47 /* max_concurrent_streams_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + CA86460341747EE436C71AA5F457B4DF /* ping_abuse_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 19CDE950E3DF6B639D081E92D93406BF /* ping_callbacks.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + DA0FF58B13810DADCB27E1B6F9B2CC6F /* ping_rate_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + E3692053027786A9D0A34A7A84290FD6 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, + 8C95520206FBE0FB04B32012010066A6 /* write_size_policy.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, ); name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - E999990BDADAB16EF3DF501E020B5E92 /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */ = { + EBA30C5C2E865DFFA5656ABE88A17E58 /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/tap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; dstSubfolderSpec = 16; files = ( - E86C80F3CA705867892DC280D06432F0 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, - 0FCF048AD4F76ED2427CA9A8EF4A1E51 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + 4826C490E7C793C74E2C6FD680F256D1 /* ev_epoll1_linux.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 006C38C4FD951851760C1727AD61C98D /* ev_poll_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 6166D95597C71B782835B7B6918B820B /* event_poller.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 06F65D83AD4E0F7AF868BF9AD938C268 /* event_poller_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + F5A5C480109B633EEB202AE9712CA354 /* grpc_polled_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 3346FDB92B462FEB8CF38645F04EBCDC /* internal_errqueue.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 1DB1D380C60AAF13D33023A1FFF8C2AC /* lockfree_event.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + CD32415070228CA7B29509CF45A440BB /* native_posix_dns_resolver.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 34E9FA047348AEE66E5476ED55CEC655 /* posix_endpoint.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 039530918363A7A6A8C38645D447F67C /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 5B9D9C89CDA1BEAABF9B2C839019B3D1 /* posix_engine_closure.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 9C56BDF06739DF703CDD51BC51715553 /* posix_engine_listener.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 3E0F3DD95AB4B7EA769C85482F4CB6B7 /* posix_engine_listener_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + E62E1A2975EBB8E7E7FDB0A7300D2D62 /* tcp_socket_utils.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 9E227E22742B8C1B818C61299BF7F8B7 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + F8F53B56057DFC0B8FF5FF1C495B71A0 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 70BC0D677FAD591646762C7463F779DA /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 73B5163A382F3018C59B5857907E9EB3 /* traced_buffer_list.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + C1434B55EC861D73777ACD75BE697095 /* wakeup_fd_eventfd.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 1CAF832B649C0C8F250D31B134F658AC /* wakeup_fd_pipe.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 57B810C27CC41262A9D6B55927EFA7B4 /* wakeup_fd_posix.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, + 9E27167C0473F6BF18F71C38EE2F67E9 /* wakeup_fd_posix_default.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E9DD5E09D6556BD75B4D9EBB8849CADA /* Copy src/core/ext/transport/binder/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/server"; - dstSubfolderSpec = 16; - files = ( - 5E7D986ED0E48FB87AFADDC543BB1F45 /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EA125C4EBFDDD74591BF8618AAB00633 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/admin/v3"; - dstSubfolderSpec = 16; - files = ( - AFEB367C85E87D45BD4597E110A0C751 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 680290768CCE8B4E3C21D66E2AC2920B /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - A60BE6A054D48FDE4BABE77D51810242 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - AAD37993A0F3F84681DFAC6C62611510 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 5AFA2656C92A761E04877C3AFE777233 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - E9539E7119201592EF3F44711ED0A9D9 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 519FA5847955D62FF605C0F40DC6CD5F /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 4C33B03E009A9E42A01F9EF1B7DCBAC0 /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - FB5C0B0447A43551852BDBAD77034D76 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 9BD68BBA2AA1858C17F38FF11F88D76E /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - D46E93C603BB1C8BC1BC29AF29E256D8 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EA1E4FF313AADCC41CC63D83923CF1B9 /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/thready_event_engine"; - dstSubfolderSpec = 16; - files = ( - 8293F89B383F9507C7A5F87B66482603 /* thready_event_engine.h in Copy src/core/lib/event_engine/thready_event_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine/thready_event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EA4A495DF4AE56B995F6DD0FD29AF332 /* Copy src/core/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver"; - dstSubfolderSpec = 16; - files = ( - B6644F5E2909478CE7875586FEB07FBF /* endpoint_addresses.h in Copy src/core/resolver Private Headers */, - E53016226885A41CE4E55DA74F664655 /* polling_resolver.h in Copy src/core/resolver Private Headers */, - 944E519A0A8DBA5F4ADC6D492B585C45 /* resolver.h in Copy src/core/resolver Private Headers */, - 42070AAFD6A89E40F5D8E842BA018730 /* resolver_factory.h in Copy src/core/resolver Private Headers */, - 466083CB44F8A6E3BEA55788F8045AA1 /* resolver_registry.h in Copy src/core/resolver Private Headers */, - 721C2A8E93838BA5CA83B5F85DFE5071 /* server_address.h in Copy src/core/resolver Private Headers */, - ); - name = "Copy src/core/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EABBD4AC958E3AA43AB6085ECF46B21E /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - C19362BDBB29BAE76C1F022314F45E9B /* overload.upb.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, - F644AE7E4E0D1180C847CD956EF10334 /* overload.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EB1F3DD3FD56EE8E67D21E1C9467A220 /* Copy src/core/lib/promise/detail Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; - dstSubfolderSpec = 16; - files = ( - 706A6ED91971FDA85E7EA16BDE4DDDB2 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - 0FBFDDEE8698093432598B62CAFE031D /* join_state.h in Copy src/core/lib/promise/detail Private Headers */, - E06BC90DD3177D29406C0648004B5655 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - FA00EDFF599477E81EFBEA5ADF3A5CAD /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - D7D96A881BB0882FECB5EC17D9CA1312 /* seq_state.h in Copy src/core/lib/promise/detail Private Headers */, - CD904F6A5F7F627DB734186145E1B4F2 /* status.h in Copy src/core/lib/promise/detail Private Headers */, - ); - name = "Copy src/core/lib/promise/detail Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EBC7996F2D090BEC684BE6AF4047A2AA /* Copy src/core/ext/transport/inproc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; - dstSubfolderSpec = 16; - files = ( - B6D8A19A94F1E5A3EB7C5CE166150A62 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - 146A55B6F5BEA75B4F47C2524E57E16E /* legacy_inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - ); - name = "Copy src/core/ext/transport/inproc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EBE57C19B45E0B8DB8F0B0A110EBB47E /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 17DD269D05F91254D5189EDEF0B4CFAD /* lrs.upb.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, - DACAE350B03DD1DA7D537EC0AA9B44BA /* lrs.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EBEC44EA518D0C813715EF600C4FA55B /* Copy src/core/lib/security/credentials/composite Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; - dstSubfolderSpec = 16; - files = ( - F49327BE7840801A35CD47CA5DDABF5A /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EBF05A4DED02C08C824B4BC48F9C5A0E /* Copy flags Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/flags"; - dstSubfolderSpec = 16; - files = ( - 63A4C02C6F3A62F3C8E2767466F751CC /* commandlineflag.h in Copy flags Public Headers */, - 44F432BB940F2004C26F45101A6BAB2A /* config.h in Copy flags Public Headers */, - 781C1EEA9EB5CFB0524B0F4869C192D0 /* declare.h in Copy flags Public Headers */, - 1E3884B5690E6A497B0E8184392E8B42 /* flag.h in Copy flags Public Headers */, - 505B1D379CCE42B3C0ED92EF1153BCBA /* marshalling.h in Copy flags Public Headers */, - B453080BC70B0DB8E93A4FC267ABEFEF /* reflection.h in Copy flags Public Headers */, - C2090F40B718681309AF80026352FE18 /* usage_config.h in Copy flags Public Headers */, - ); - name = "Copy flags Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EC18A005E61A01A4750BE5F7DA96D4EE /* Copy src/core/ext/transport/binder/wire_format Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/wire_format"; - dstSubfolderSpec = 16; - files = ( - 902EB724DE92A2FA5F813392C0B85227 /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - CB59752ECE517708B49D67D34CC0126B /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - DF2A19DA75C5B9247993E8250F0ED93A /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 20E6EE0A8CD6A67D61CC1C81D3F61C72 /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 7D05C5B2F0DE9C6D5680C35771E399ED /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 40B778C7911877781951C23C7563C64C /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 4E760CA55E0FCF373975FF7D0EC044E8 /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/wire_format Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EC7BE8DCE851039FF03E1EE0E82A6976 /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/data/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - 393727B5775C1498AA31A1CE093D9A6D /* accesslog.upb.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, - 556B5F59B6D68E5EC6461749E91D8A62 /* accesslog.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ECBD1D6E0C81642C2AEA2BAAF26DCF71 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - 89E7ABD03E3DC3A1FC341497A5F87891 /* cert.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - CDEA4AB49679205ABBC44650BF825479 /* cert.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - E9C933569818173C0E7B9355F55F6504 /* common.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C130972BCAB991BD04397A73E344F4C2 /* common.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 98F0803CA8AFF043E3B762FEC75D4905 /* secret.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 71059FDC05932ADA4DC41774C38A4991 /* secret.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 74D1DFC5B57F2268377A7A56093CF279 /* tls.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 7142C160EAB6E69DE6716F11D1F97072 /* tls.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 173F57A392AAB8C0F16C1A7DE1BE63BC /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - DF321E099BA3BCE8AAC59416AFB9E727 /* tls_spiffe_validator_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers"; + name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; ECC12BFC8B1CA9E3E8D5BF1E8742803E /* Copy . Private Headers */ = { @@ -17706,67 +17887,150 @@ name = "Copy . Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - EDEDD922F037981FA951F2F8A355C268 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */ = { + EE03F43BD5E2798ED946574DDAA7F48E /* Copy src/core/resolver/dns/c_ares Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/dns/c_ares"; dstSubfolderSpec = 16; files = ( - 122A286C7A7541F3CDF88871C09D7835 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, + 0B96C56A1F927BB85233BA1A7AB916A7 /* dns_resolver_ares.h in Copy src/core/resolver/dns/c_ares Private Headers */, + 26EF6C9811CEB9DA06B9DF258752D076 /* grpc_ares_ev_driver.h in Copy src/core/resolver/dns/c_ares Private Headers */, + E9EA5D6C04A2BF07D19417C45E7040AD /* grpc_ares_wrapper.h in Copy src/core/resolver/dns/c_ares Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers"; + name = "Copy src/core/resolver/dns/c_ares Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - EEBA8DAFC9051B7C8C9F3802C957A61C /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = { + EE24E6B7A262204C7CEC9016E0214FE1 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/udpa/annotations"; dstSubfolderSpec = 16; files = ( - 3BA9D176365476DD0C2F2F300F256D89 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - D5C10A4FE015A4CEDED939911FE9940F /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 3FDD53DFBAF6E7896297212ADAE1C610 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 2EE2C0E08CC658CF4CE15F80542B31EE /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - C4E5042A2648F3B058909A4F87E0CABA /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + D6414D3342828588635DE5972F2EB388 /* migrate.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + FB72B14ABECC1C1C4E6268758BEE303D /* migrate.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + D35DCFF6922DC2481A472159A87E5D33 /* security.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + F32A2F70A1C6AC3632F77317DC65FE63 /* security.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + E51F596980C6183B241BD05834B5D6F8 /* sensitive.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + BE019F0AFFC9556DE6A48B700BA9561E /* sensitive.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + D0EC99764698BE72E328CE1809D3A237 /* status.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 6F73AD669C387D78434BAAC2A081FD49 /* status.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + F613431FA84B35BB6DC01F470553D0FA /* versioning.upb.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 37765D734B863874037C2EE182FED5D3 /* versioning.upb_minitable.h in Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/udpa/annotations Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - EEEB80A105C7EDF2D6429D656C82103B /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */ = { + EE29B6A7ED7A62D9FBCC6AE8CD399EDB /* Copy src/core/lib/uri Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; dstSubfolderSpec = 16; files = ( - 76C0F0C52C62D134EBA71501F4D37068 /* any.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 5146B6C7338D364F686314F671D5135A /* any.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - FF21C2026E00F295A8F792A577E32809 /* descriptor.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - D4E03BE6A56027B616BE425D6E7AC1DE /* descriptor.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 159C03FB9C13C36014EDA03D30C9FABA /* duration.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 4DC4F69FF48AD7963DE9D60B755E4905 /* duration.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 9BF7A0EC50B15699FB40C2A46AC73D52 /* empty.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 52F0D6809EBB87E6F230622C82923925 /* empty.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - BEBB284CE23E125F6A624E4F87A185D1 /* struct.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - C9830052F5A1CC095DCB05A5DF44E22B /* struct.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - FDA7D8DCB647C8B1F6BD087D9B380684 /* timestamp.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 1BB7C5EA66E6AAA26605E25EBAF5D6AD /* timestamp.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - E51A412D15F5B55A4A24D936A363370F /* wrappers.upb.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 2D2FF96FCF12FAC01A690A74AEA143ED /* wrappers.upb_minitable.h in Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + A5C2D7BCD2441BC15949089B45D53C2A /* uri_parser.h in Copy src/core/lib/uri Private Headers */, ); - name = "Copy src/core/ext/upb-gen/google/protobuf Private Headers"; + name = "Copy src/core/lib/uri Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F0C9FEE8084711FA72A6FCB68DBA2EDD /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = { + EE7C9034E8C09A724FFAFC5E50516407 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/matcher/v3"; dstSubfolderSpec = 16; files = ( - 02BC2CF9F6763D29C799E79B5E23F6FE /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - B442391D774AFCD83543AF5EBCAEF6DE /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - 92076D63065F03CA330F6EC466035AF9 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + B3F159EA7AC7EBB55B097C54CE84AAB8 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + FE8E1726CDCD0615C1AC11FEAD250225 /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 154A5E0B2131E37F198F3CB290B859DB /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 5784400BDADEFF1B37CB0936C81970B3 /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 602183A7C879C91190D2387240BE4C0C /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 6F9387E70C1FD3A53A6BAC0E0822C4AC /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + DF200C900A40261E9E773A4A0051F5DE /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + B6DC4490C7B03AF08751014AB16417DC /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + C19D3B03D4C1CBC0B25B9C0A4A31C43A /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 2FDFF4497797921B53915908DAF5132B /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + C1376627F9BE65EB146B4879156DD7D8 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + AFFC508BCC1847D019AAF43F4FD8C2F0 /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 666FAF41D14854280223C83A71291953 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 9AD57780191C75F7C568557143CDB0A5 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + D2B72FF26F57B7C93FC475EBD97963CA /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 6BBBBB9176A4CE6F3A126D465C1E70FE /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EE863590793B598BB8941C5D8ECDC59D /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; + dstSubfolderSpec = 16; + files = ( + E3B621CA3E994835E0C11B59D2F8BF8A /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, + ); + name = "Copy src/core/ext/transport/chttp2/server Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EEB3BC2DDDDBE0C45FB633A03C8C2511 /* Copy third_party/upb/upb/lex Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/lex"; + dstSubfolderSpec = 16; + files = ( + 65B17276A405E72A43AF6E70CD30FF1C /* atoi.h in Copy third_party/upb/upb/lex Private Headers */, + F3FC8C705D9A7E38F782E97357531492 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */, + 0699A7884F92A2E23DA3B478DE6DFB4F /* strtod.h in Copy third_party/upb/upb/lex Private Headers */, + 705490E3063F2C2659AAF9F5090BE8D0 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */, + ); + name = "Copy third_party/upb/upb/lex Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EEF89F02EB000C6C08273FE51E6E1B11 /* Copy time Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time"; + dstSubfolderSpec = 16; + files = ( + 91D4BC3D18D93BFC9AB553A9A59B67A5 /* civil_time.h in Copy time Public Headers */, + D79EF78F98CF5C900645E80FFBB20069 /* clock.h in Copy time Public Headers */, + 9623689FBCF6B9C21357A7FD6847B30C /* time.h in Copy time Public Headers */, + ); + name = "Copy time Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EF3558BFD9DF5B1D328331530FFC4796 /* Copy src/core/resolver/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/resolver/xds"; + dstSubfolderSpec = 16; + files = ( + 082C44B1274C020FB43D34900A2FB6A4 /* xds_dependency_manager.h in Copy src/core/resolver/xds Private Headers */, + 8FC332747DAD109B0406B498A2D6F2B9 /* xds_resolver_attributes.h in Copy src/core/resolver/xds Private Headers */, + E88E9E59E767EAF1E7AF1AA5601361E6 /* xds_resolver_trace.h in Copy src/core/resolver/xds Private Headers */, + ); + name = "Copy src/core/resolver/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + EF4C7513A90BB146AB17475DAA80ECB0 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; + dstSubfolderSpec = 16; + files = ( + E021AAB6218B92732F47F62C9D5FD3FA /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, + ); + name = "Copy src/core/lib/security/credentials/xds Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F02F7F284B301CBEA7839C60429E8E14 /* Copy src/core/lib/http Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; + dstSubfolderSpec = 16; + files = ( + C5D522307266C998BF3E7E4400F913F3 /* format_request.h in Copy src/core/lib/http Private Headers */, + B673CFE107CCD6171A6ABE9507064063 /* httpcli.h in Copy src/core/lib/http Private Headers */, + C948385115C9EF6D2B5B8CECF8EBB00B /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, + E8D90209D183F62AFE2B1393B752968E /* parser.h in Copy src/core/lib/http Private Headers */, + ); + name = "Copy src/core/lib/http Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; F1043B1050280795D126E566E22EFE3A /* Copy crypto/pkcs8 Private Headers */ = { @@ -17780,405 +18044,358 @@ name = "Copy crypto/pkcs8 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F112D2A4B32673A82BB08590135365B6 /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */ = { + F124FA4599F19A1A61B11E20A78E7211 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/type/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/discovery/v3"; dstSubfolderSpec = 16; files = ( - 1C2EFF56A61D368C4FA4627E5D65EFE8 /* cel.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - BD97F4D5BD488A125B0498A8E47F7A06 /* range.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - 0A6055BB2A9E4E220D6D76306844DAB7 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + F6A22CD4F255C0D6A85E60BA4CEE14D4 /* ads.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 2FB8F23421CD87D878F52066E64A3C59 /* ads.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + D16529F5FB9414D4333B8780A94DC3F6 /* discovery.upb.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + F9B22D28557BDA316522E0D6DC5781DD /* discovery.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F12343EFCA1F87F3A805E5F026C00765 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = { + F1846F36B6484A2F59F35D6B7125BA07 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/protobuf"; dstSubfolderSpec = 16; files = ( - 202DAC943DCDD73CB7912CAB4D28C7DB /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 25708537C3AA4C63F4FD80C917439C70 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 35B597B32D8C54E6D422729B3C1FCCD1 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 08AD46B13F0281EAE20167282FC70288 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - A96BC98E0CE2D92AB20743AD82D6D80B /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 202B1A29167E0BC2E7B129EBAF303C7F /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 64A40D93AFDEB1CA8BF300EE703E72B1 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + D4CA94F4376F53492F4D84BF373E8F7A /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 2BFF421E7413C31B3F0FC63927713A01 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 4311710F044E090A72712AF946AE2D6B /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + E05C0367CCCC43DFECA2F752EC8DF472 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + B0125D327C40A1971986AB72540780BB /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 36FDFE84427FB65053293297F187B2A0 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 1A20CC9401DC0AB2DE0E366EE3404414 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, ); name = "Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F136C65BE58AAEFB610FB9B03BBCD371 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + F1AF2FD6B106454F53585A752C8D2FEB /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; dstSubfolderSpec = 16; files = ( - B1F04A4790E9AEDA878A1A25B1A18BBB /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + 1BACAD09AC3BA34429D6E700872E1FCC /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/lib/security/security_connector/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F13CE40558615441341A125E41CAC980 /* Copy src/core/load_balancing/ring_hash Private Headers */ = { + F1B43A95CA780D165D903AE147D4376C /* Copy src/core/ext/filters/http/client Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/load_balancing/ring_hash"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; dstSubfolderSpec = 16; files = ( - FBB3350E50A8302FD1A13BA38655AE2D /* ring_hash.h in Copy src/core/load_balancing/ring_hash Private Headers */, + BA3D09C44A49C2D1AAB7BF850EEA69AC /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, ); - name = "Copy src/core/load_balancing/ring_hash Private Headers"; + name = "Copy src/core/ext/filters/http/client Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F1501EE504FBED6DAE0C6EAB52A041DB /* Copy base Public Headers */ = { + F1E38C0C5275E03C44DD0F19AE8E8CD9 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; dstSubfolderSpec = 16; files = ( - F362CA5E39B84CB446232CB4027F122D /* attributes.h in Copy base Public Headers */, - 3D41F07396C636494628E3AA56F0B897 /* call_once.h in Copy base Public Headers */, - 86A07FF337328E0105D6E3655DB4AB3E /* casts.h in Copy base Public Headers */, - 6013663249D230D6CAB15E40C9F91753 /* config.h in Copy base Public Headers */, - 533311C5E8DD6F831D0913338E4A58FC /* const_init.h in Copy base Public Headers */, - D5589AE61AD7439EC0D511E6E3F29865 /* dynamic_annotations.h in Copy base Public Headers */, - 181CE8EE955E5122E87307A6CBA9F1FA /* log_severity.h in Copy base Public Headers */, - B6C3910990EDC794D94BA586781902F7 /* macros.h in Copy base Public Headers */, - B6281A333E082A55D27B3BDB29C279B4 /* no_destructor.h in Copy base Public Headers */, - ED273F2842FD39305D313C2A98BEC448 /* nullability.h in Copy base Public Headers */, - 848E274439346777F90F20329F6353C7 /* optimization.h in Copy base Public Headers */, - 67DB0040A6CE2D4B7CC6F9F340ACE66C /* options.h in Copy base Public Headers */, - 26FF74E8F6C4B1C15EA6AD2854435FC9 /* policy_checks.h in Copy base Public Headers */, - 5838353E1174F59B4ED94783AB4937B5 /* port.h in Copy base Public Headers */, - C17AD17FDFB39AA51DBDE972675222C5 /* prefetch.h in Copy base Public Headers */, - CDB1D440FCD52149B74D8472179C867D /* thread_annotations.h in Copy base Public Headers */, + 4754FB1C26D1B7B4D7CAF3312A743826 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, ); - name = "Copy base Public Headers"; + name = "Copy src/core/lib/security/credentials/plugin Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F16DF5F06A99785FC438DCE2B0633916 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */ = { + F2B2C348F6B203A6D4EBD7EB4C224BCF /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/annotations/v3"; dstSubfolderSpec = 16; files = ( - 39170887C33EF362F874F384D87418F7 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + D2E6A28AC37053CC06F54D9E45410965 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 922B6E138A4EE83C51F8E29CFEA8F164 /* security.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 78EDB3BAA0D7F91B5808948009042F7A /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + CF75283D041DF5523E6B9250E80F6B15 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 813D5F5EE7B6BDEF019C7C9782BE00EF /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F1FE4E1E89CD819C1C1FD10C83E54330 /* Copy src/core/lib/config Private Headers */ = { + F35AA43CFAACEC67280920CBF1BB2E9C /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 7ABEB2FD0DBDBCEC23AD698B59A63144 /* config_vars.h in Copy src/core/lib/config Private Headers */, - 6FA250162E73EBC8CAD8372B8DE66EC7 /* core_configuration.h in Copy src/core/lib/config Private Headers */, - A16A58AD83EDCE2D323A351B72300B00 /* load_config.h in Copy src/core/lib/config Private Headers */, + 4506C5BFFC800CCCF7225D0B4F48AA10 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 9E946DE6F0AF99AC6DE2C236C054535E /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 3C64E855CCF6C4904AD57BA706FD1E67 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + F1945689E6DBC9F72A2C23C2FC79EE3A /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 85F01F773D9B9B8195B2127A21542809 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 03C5EBB18FD1CDDA2A9A6F9B99C16CA6 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + B513C5E630DB1B967332F87E3B77B69D /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 60A2FD658063D1B9F23BE9B8B00CBBF7 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + A280B0E3D4721ACE052587160B89FAD0 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 7680E38247F4D1F9680CC5EACD15601A /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/lib/config Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F2875B81DA041E9A308C06FFED637440 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */ = { + F39BABBF53E38440461DBD845B5DF5D4 /* Copy impl Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/admin/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; dstSubfolderSpec = 16; files = ( - 258B3D5CF10F47384CCE56DE5A9542C2 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - F45C710B3613E6C9EA6E47FA29D572F1 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 42DB65AD4F0B59750EFF9D07FFC35E73 /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - BD163B40C7EE5F11034DCEE469FAC113 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - BD111E93AB05CCA7A1F6968E56326B67 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 83A5AAA96606CE29EB1922F88D28FD15 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - F323B47D83CADB79E3666E1A3A858DF9 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - BAB513CF94929272FDF38C1426848C5D /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - D1569C927EFF84ADC596E805F0247301 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - B24D933F6436EB6E06814C4BC9298DCE /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - E72829726A4FA46C2B3DB65466935055 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 348528E163AEFF09197D0A6ADA696105 /* call.h in Copy impl Public Headers */, + DB62EF73726295AE69C2893B92216B2B /* call_hook.h in Copy impl Public Headers */, + C3DF8A712A269622179DAFF24671BC41 /* call_op_set.h in Copy impl Public Headers */, + 9F57D781C30226392FA2B7700A8003B5 /* call_op_set_interface.h in Copy impl Public Headers */, + 4D99F5D547C21ACB19ECB6E951E27A9B /* channel_argument_option.h in Copy impl Public Headers */, + FFBB1549908EF3168BE907B46F966639 /* channel_interface.h in Copy impl Public Headers */, + AFE472E5EF4220C7494731BC352667AA /* client_unary_call.h in Copy impl Public Headers */, + FE0EA13506CC9ABC5579DFAD9136F31D /* completion_queue_tag.h in Copy impl Public Headers */, + 789F7C364F669322AA3084C138A579E0 /* create_auth_context.h in Copy impl Public Headers */, + E3E2245903FFEC899D0FAC8E6A602101 /* delegating_channel.h in Copy impl Public Headers */, + B7B4B3D6A6E99CF91C1CB30EBD1BD3E4 /* grpc_library.h in Copy impl Public Headers */, + 878F4F22CA7FCBA91791DF9F157A44CF /* intercepted_channel.h in Copy impl Public Headers */, + 66248555075F25E547D6F77CD2045697 /* interceptor_common.h in Copy impl Public Headers */, + 0A5560553924C2807B3AAFC5BABAE1E5 /* metadata_map.h in Copy impl Public Headers */, + 5A5B8FA6B4A195EB407C70E08EA4965F /* method_handler_impl.h in Copy impl Public Headers */, + 7245F66503B5A5D210326E36BC7D4450 /* proto_utils.h in Copy impl Public Headers */, + 16AF5A11851A3AEA571B24F6BABC6BCC /* rpc_method.h in Copy impl Public Headers */, + 7365AB484664F789DB4A603EFB3E1B2D /* rpc_service_method.h in Copy impl Public Headers */, + 589B83F81A5803A10D156C9608A2ABEE /* serialization_traits.h in Copy impl Public Headers */, + 861389DA038E1B456A95251DBDE9719A /* server_builder_option.h in Copy impl Public Headers */, + 2FB3230235024CC27BABCF3C4FDC3568 /* server_builder_plugin.h in Copy impl Public Headers */, + 51A20DE292DE4CC56CC9DE7D1ADF0000 /* server_callback_handlers.h in Copy impl Public Headers */, + 87DB652CE8E97300DA7E08EA23D2096B /* server_initializer.h in Copy impl Public Headers */, + CD9FB0C7C2C57DB698F7424C6ACFFE7F /* service_type.h in Copy impl Public Headers */, + DD130CA135293BD06DAD61F4C58F40C2 /* status.h in Copy impl Public Headers */, + 63749E6ACF8B0827874D0F51E0849DB7 /* sync.h in Copy impl Public Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers"; + name = "Copy impl Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F2E80200447D349301E0D99A847CCF8C /* Copy security Public Headers */ = { + F44826B69B5571AB8850AC150F1FEC66 /* Copy impl/codegen Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; + dstSubfolderSpec = 16; + files = ( + 28D4526B32993879EC71714DB5CBE900 /* atm.h in Copy impl/codegen Public Headers */, + D2024CA94C6DF488AFF9BBACC53E6599 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */, + FF9166DC8A777A75FF155170FDA4549A /* atm_gcc_sync.h in Copy impl/codegen Public Headers */, + 169FEAC2F51DA09C6F956E5412CE5D6D /* atm_windows.h in Copy impl/codegen Public Headers */, + C55A92EFB70AC127313274928D4002DE /* byte_buffer.h in Copy impl/codegen Public Headers */, + 00EEB63DB87B8ABB5EAD0518052D4A3B /* byte_buffer_reader.h in Copy impl/codegen Public Headers */, + DFCE9BE3851B1011632BE91C209D747D /* compression_types.h in Copy impl/codegen Public Headers */, + 12312F4BDF5D3E2B286171517E8F1604 /* connectivity_state.h in Copy impl/codegen Public Headers */, + B661F7D7923C32B664EC836B5FC6117B /* fork.h in Copy impl/codegen Public Headers */, + CE3CF671FF331060BC56D90DB42CC6B4 /* gpr_types.h in Copy impl/codegen Public Headers */, + A5A52FB58A17A97BACC90F4D4E36AC12 /* grpc_types.h in Copy impl/codegen Public Headers */, + 9803574C5AF4EDE2FB65B3BF25266697 /* log.h in Copy impl/codegen Public Headers */, + 13CE78C0231FFF0970F6D572AD5CCE71 /* port_platform.h in Copy impl/codegen Public Headers */, + ADE1AABCE8D8784E3B91E6883B65561A /* propagation_bits.h in Copy impl/codegen Public Headers */, + 1301D0F95AAD1662144009358CED8FB3 /* slice.h in Copy impl/codegen Public Headers */, + 9485B3A60EFB4E4995ED2219D3B123B6 /* status.h in Copy impl/codegen Public Headers */, + 138004E4AB959588FC99A95C14F2635D /* sync.h in Copy impl/codegen Public Headers */, + 83ED86C4F5599DBE5E514732C267C65B /* sync_abseil.h in Copy impl/codegen Public Headers */, + 6735EFA5FE61AFA4C1763D37622EF136 /* sync_custom.h in Copy impl/codegen Public Headers */, + 9E7DF2D4A6C8FB07730C6D59024EAF66 /* sync_generic.h in Copy impl/codegen Public Headers */, + BDF27460967743EA78410D773EBF59CC /* sync_posix.h in Copy impl/codegen Public Headers */, + D70E60C2644670927CD6475FCE3669ED /* sync_windows.h in Copy impl/codegen Public Headers */, + ); + name = "Copy impl/codegen Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F4C089F42112980025D67C09509BB3D3 /* Copy src/core/lib/event_engine/work_queue Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/work_queue"; + dstSubfolderSpec = 16; + files = ( + 9FC63AA21DA5DD2AFFD3A43332D84C99 /* basic_work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, + 4A54D48D14F4E3084E0EC819ACCD314E /* work_queue.h in Copy src/core/lib/event_engine/work_queue Private Headers */, + ); + name = "Copy src/core/lib/event_engine/work_queue Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F4FC82DA99FEB71C3C0A9FD87038DA32 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3"; + dstSubfolderSpec = 16; + files = ( + 2A23B06E4B28F92E1C70D2956A38C38D /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F5608E7A036AB70560F9DDE71308979D /* Copy src/core/service_config Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/service_config"; + dstSubfolderSpec = 16; + files = ( + BAEDCEF06965D21E4BC1B58B26555F89 /* service_config.h in Copy src/core/service_config Private Headers */, + 141AF82D6B95A6FA8B31AF3E9405729A /* service_config_call_data.h in Copy src/core/service_config Private Headers */, + 54303AA338A66A40FCDB030042A45970 /* service_config_impl.h in Copy src/core/service_config Private Headers */, + CC6742A61638EBDF8537342F8C3C5BD1 /* service_config_parser.h in Copy src/core/service_config Private Headers */, + ); + name = "Copy src/core/service_config Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F569DBC6D078BAC9C427D4D880352F5B /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/bootstrap/v3"; + dstSubfolderSpec = 16; + files = ( + 0443844DF8168E17C6662B7D303A3B50 /* bootstrap.upb.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + 66D32DFDD0D2F4238AEFF93E25FAF6DE /* bootstrap.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + ); + name = "Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F58CCBE2D51E4295EF586D2154C74DC3 /* Copy numeric/internal Public Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric/internal"; + dstSubfolderSpec = 16; + files = ( + 3411CE7EEE8AD69D35159CD953726B27 /* bits.h in Copy numeric/internal Public Headers */, + D1978BE22D6D401914217B7C51A3255A /* representation.h in Copy numeric/internal Public Headers */, + ); + name = "Copy numeric/internal Public Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + F5D186F600FDAFFF867F8DA2CA195A09 /* Copy security Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/security"; dstSubfolderSpec = 16; files = ( - BDBDC31CE91A4DF35B6046E63692EF36 /* audit_logging.h in Copy security Public Headers */, - A9036205C80C80E8FA706A64FF9968CE /* auth_context.h in Copy security Public Headers */, - 000B64EE4F9E29CE24C1A64FCDD9EE4D /* auth_metadata_processor.h in Copy security Public Headers */, - F325377D824BC3AB43F7B6F17182DA0B /* authorization_policy_provider.h in Copy security Public Headers */, - 3A7302DD180AECF4E7F42E81BDCBE4B0 /* binder_credentials.h in Copy security Public Headers */, - FE52B45DE2B80CD99566561AF2B51A0D /* binder_security_policy.h in Copy security Public Headers */, - 995CEE71C1E7FE1C0C54999571E4EBBD /* credentials.h in Copy security Public Headers */, - B449AE92B22F392A45A950A13020F326 /* server_credentials.h in Copy security Public Headers */, - 66DACC392FFE180EDC59F25D756948AE /* tls_certificate_provider.h in Copy security Public Headers */, - BDB0D366D50DC159FCEE369EC7A5292E /* tls_certificate_verifier.h in Copy security Public Headers */, - 48ADB1B0361243DC0C2A50DBA104D9E2 /* tls_credentials_options.h in Copy security Public Headers */, - FA09F9DBD1B29E6A2DC9E655888118A7 /* tls_crl_provider.h in Copy security Public Headers */, + 05EA4E2BDC16360F0EAD801D60685B95 /* audit_logging.h in Copy security Public Headers */, + 2EB23FB429C269D3CDCEA50B8570B568 /* auth_context.h in Copy security Public Headers */, + 66883FE784C04AE18CA6CD0241D857E4 /* auth_metadata_processor.h in Copy security Public Headers */, + DB878086A5D6BDEB780F6CFF7622B8E3 /* authorization_policy_provider.h in Copy security Public Headers */, + ECC25DD1F64D087C8F9E28BB857C60D9 /* binder_credentials.h in Copy security Public Headers */, + 0C6A5FE0DE0F463D4C7088F763F706F1 /* binder_security_policy.h in Copy security Public Headers */, + 2C2FCF35126792F29273CB2121011136 /* credentials.h in Copy security Public Headers */, + 94B98734783CBC182C424A1949C390E4 /* server_credentials.h in Copy security Public Headers */, + BBEE97BE0431D62855C0353C491A6147 /* tls_certificate_provider.h in Copy security Public Headers */, + 699F7019CB9A246BC5D0055314BE1F81 /* tls_certificate_verifier.h in Copy security Public Headers */, + 09CE9226CB5B6182B40CA539BCB3EDAC /* tls_credentials_options.h in Copy security Public Headers */, + 57F6A0981308DF1DC6D1294D252EF326 /* tls_crl_provider.h in Copy security Public Headers */, ); name = "Copy security Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F34B525F42616E5E9714C94BA03ED71D /* Copy src/core/lib/security/credentials/tls Private Headers */ = { + F6C8F07C3EC06BCB4EDB42C879EF97D3 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; dstSubfolderSpec = 16; files = ( - 43F77F5FF1684FA8B07FFE7E8A3B9DF2 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 28B85876FF653E46C5E711F231B08F46 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 2174FAE7C1E88A26807A188B220A932C /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - A02BAC5C966A2A5E3B6B53138E61BD09 /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 569957CDA8C960C0F03552B119B67954 /* grpc_tls_crl_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 51790AE929D394B64F5B388593082014 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - B83878AB09B79191750552E4963BA193 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, + CF50FE0F4D621D1E459A637AE7C58751 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, + 1584EBA8B7B83F0074E7FCB69FFFD59F /* fault_injection_service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; + name = "Copy src/core/ext/filters/fault_injection Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F3CCCEE4C82B0A59305470A35518CEE2 /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { + F73C4F17FBB2D50E1F4F20329FED68BE /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/core/v3"; dstSubfolderSpec = 16; files = ( - 1CC2944199C66DE2B410E49FCAB2F54D /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, + 21E0936AE14A3EA31D028EE9E4AEEC26 /* address.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 4934BE64DC219221CB01E37B1D0CE523 /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 75638DD4D2E95C990E4C55E9AA49628E /* base.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 5E9B6AF47C8D78235046ACB1F062FE97 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 89ECB15CA2B972FAB1285352C3A1FF7F /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 1001B7684D336A8B932ADE02C676CD32 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 063CC0EAC49BAF6DA56DDC6A519DB9E6 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + F9AC3F31BF98AB2EC580677CEB4C5136 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 698568785DBC9A9658686001D243F78D /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + A78B01D49ECA67E4A1A1FF5EEE45E00E /* http_service.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 626E04631DB9B5ED5494180DEDEA9003 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 2B92BB87E5EBC2E28906F75A47679198 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 4D25869F144AE911B5AE68EAE92F24FC /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 59F2DDD445FBDC65C1C89FE6B1B7D7C6 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + A2D9CF6186B575854579EFB89321BD67 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + DF03FF1E79A58031FA0BE92436773B22 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 0B36D609C9CEFD3CD676C8A21F312B1D /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F3DE41FCBD8DB3F065080DA515956390 /* Copy third_party/upb/upb/lex Private Headers */ = { + F74962D3C9376211326821BF1F7D28FA /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/lex"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3"; dstSubfolderSpec = 16; files = ( - 8978F26CDB8422E0EE7A56C9F9EADA0B /* atoi.h in Copy third_party/upb/upb/lex Private Headers */, - C5C191B2C1F891FBD28E8EF093C13D26 /* round_trip.h in Copy third_party/upb/upb/lex Private Headers */, - C6217C67FF68BA5F6A65AA08E2443FE1 /* strtod.h in Copy third_party/upb/upb/lex Private Headers */, - 85A64C43C5BC7F8678E7EF53C49E72E3 /* unicode.h in Copy third_party/upb/upb/lex Private Headers */, + A91A000185F0DDD56F6700DA17176D62 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, ); - name = "Copy third_party/upb/upb/lex Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F57AE9800F8F16AE4EE593785CACAC58 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */ = { + F857F7833132B3D604CA9F51E30626BE /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/protobuf"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/config/listener/v3"; dstSubfolderSpec = 16; files = ( - 6D1264DAFFE84D382B6CE64C64CCD76E /* any.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 8326BBFEE264053CB32A4271065EDF1D /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 905F11ACFF215493904B44536E2D356B /* duration.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - DA414827D4A97DF705BDCF4D171BCDE9 /* empty.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 95A25B95CE2F33DCA5D0E221A119B36C /* struct.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 9E92BD5528D6AFCFC7566A39F1E133E6 /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 1008D232E830B45FF7A7C7C8808F8C15 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + 46AA9A779C3EE91D5992FB4A1AB88F08 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + D03878FAC854F7DE29111BA672DD81DA /* listener.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 2C78863D425EEAD07D279C6FED1A8A49 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 6F37AD90FA8A4779D5C6A66340BBB1C6 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + CD3DB9F9F0946657AD054F3F324A501D /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers"; + name = "Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F58A80CA6ECD180E4097061E9309E74D /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */ = { + F93855B6332061E15312883DF0A1F1FB /* Copy third_party/utf8_range Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/google/rpc"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/utf8_range"; dstSubfolderSpec = 16; files = ( - BCBAC4EEFBBDBE100E4514E222C74580 /* status.upbdefs.h in Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, + 9C6BBB4DBE13F80C68AA1C5073A1B6E7 /* utf8_range.h in Copy third_party/utf8_range Private Headers */, ); - name = "Copy src/core/ext/upbdefs-gen/google/rpc Private Headers"; + name = "Copy third_party/utf8_range Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F614F92A75B6D71CDCC4E314B97CA4F9 /* Copy src/core/lib/security/credentials/fake Private Headers */ = { + F9F09EEC60C74832D8E5F65ED0ADE125 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/type/v3"; dstSubfolderSpec = 16; files = ( - CB781DFCD3B3AD4B9145E0E8855CDBB8 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, + 84F6684E2F2A655FEB9750D17A9DBDB2 /* hash_policy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 702B5D984CDE75105D90BD2ECDA46A6F /* hash_policy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 2F43B90C205CF8A9856B10445BF2AB3C /* http.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 307A27B733F452CC392F6809DC63FA2A /* http.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 80A77071369EA156E0C95E75493EC594 /* http_status.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 2A42B37EE022622708B0F1C3112ED29F /* http_status.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 75E70D56F8B49FD2B143D09D4FCBAF1A /* percent.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + AD5058ACA2A1FFADA584FAEA17BA4E7B /* percent.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 58FBCC985B36CD4CF206DBE3BBB19AE9 /* range.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + D4AF3EACBF056546DAB743E593EDE52E /* range.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + A6BFAD202B7EF04C581E002159DAA16C /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 09BC5C178FC697E4E6F7AB4536C2DA47 /* ratelimit_strategy.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 0E49100617CFB405D81525D7989CA5F8 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + B9193C7FDBED772F13553B0C6BFEDB6F /* ratelimit_unit.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 18C137B323A1969D55FA48E4190E5A03 /* semantic_version.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 948EEF68AB392ABF96EC226895F2F0D1 /* semantic_version.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 407B3B9851CA6AEBAC4DB45942A483D5 /* token_bucket.upb.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 8E52B7D9274928391E70E2753452CFA8 /* token_bucket.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F6C2B7467F49F1FE5A28EAB5FDB900EA /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - CD24782BF754BCAE3E1BAB1FA264AFA8 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - 92FFD1932BF19F80CE0B9A673550F152 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F6E6B128CBD4371A18E756B2D03D404A /* Copy src/core/lib/event_engine/extensions Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/extensions"; - dstSubfolderSpec = 16; - files = ( - 5A48325287A89CE8CDEFF0C02E021AE3 /* can_track_errors.h in Copy src/core/lib/event_engine/extensions Private Headers */, - 3A05889D2FEC6FEDCD92CD5B9576D65C /* supports_fd.h in Copy src/core/lib/event_engine/extensions Private Headers */, - ); - name = "Copy src/core/lib/event_engine/extensions Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F6FC44C39B777028CE587B72B51D15B8 /* Copy support Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; - dstSubfolderSpec = 16; - files = ( - C805FFC04F01E8D62785423FA2DE1E5A /* async_stream.h in Copy support Public Headers */, - F78367477D10985C4660B58197B09696 /* async_unary_call.h in Copy support Public Headers */, - D4CB0F94C2730BB639CBCC32567C6645 /* byte_buffer.h in Copy support Public Headers */, - FE100F11A2F7E54EE3198EEC817B50B2 /* callback_common.h in Copy support Public Headers */, - DD9E8852B89C24A93D67CA271347DDD6 /* channel_arguments.h in Copy support Public Headers */, - 1A087FBFA883DF4966BB50337E7A2F91 /* client_callback.h in Copy support Public Headers */, - 90E8F3463C97A9E060CA9281449D8FA3 /* client_interceptor.h in Copy support Public Headers */, - E7DE1B0232769592BD0351CE8F5AB5AC /* config.h in Copy support Public Headers */, - FA26274ED95D9C22E22769FFFD88CA98 /* interceptor.h in Copy support Public Headers */, - BD98B1B345BADBF08B955D492393C650 /* message_allocator.h in Copy support Public Headers */, - A93F2AE470D0FBE11B312E79A3D287E3 /* method_handler.h in Copy support Public Headers */, - 3210A9DE563AEB989C0D9DA0EA77E867 /* proto_buffer_reader.h in Copy support Public Headers */, - 59E5B521B152016AB7BB6784143E7E09 /* proto_buffer_writer.h in Copy support Public Headers */, - 6B158ECF849438E061AFDC4062538094 /* server_callback.h in Copy support Public Headers */, - 7BAD1895C49141CCBF21BE03F00C320D /* server_interceptor.h in Copy support Public Headers */, - A7C0C1F5049C3B6FC80659727C3FFE25 /* slice.h in Copy support Public Headers */, - BE3AB960AE51C3728F505C8EB2202735 /* status.h in Copy support Public Headers */, - 0E78BE371FE9E17FD9D542B4525F10D4 /* status_code_enum.h in Copy support Public Headers */, - EC37F02872DEF2FC8ABC90F51EDEDF3B /* string_ref.h in Copy support Public Headers */, - FD707620D3C6214B036B8B6002BE082D /* stub_options.h in Copy support Public Headers */, - 0D1CB715C31295E23C9654B99CADDF65 /* sync_stream.h in Copy support Public Headers */, - 81C4CD9E5788CDE8CA40AA25893D3141 /* time.h in Copy support Public Headers */, - A87FC00E91DB2715BA8A63D3662BCA60 /* validate_service_config.h in Copy support Public Headers */, - ); - name = "Copy support Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F7B56449BC8E84DFA359BEEBFCD10B7A /* Copy src/core/ext/filters/backend_metrics Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/backend_metrics"; - dstSubfolderSpec = 16; - files = ( - 8365F73854E309EDA3E1C5B3FFBFFE0E /* backend_metric_filter.h in Copy src/core/ext/filters/backend_metrics Private Headers */, - 7EE77208079C2BA79C81518CAD414271 /* backend_metric_provider.h in Copy src/core/ext/filters/backend_metrics Private Headers */, - ); - name = "Copy src/core/ext/filters/backend_metrics Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F89DAACE59420B216387805403F79C95 /* Copy third_party/upb/upb/base/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/base/internal"; - dstSubfolderSpec = 16; - files = ( - 0DC73CB68767285A78085CD650119791 /* log2.h in Copy third_party/upb/upb/base/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/base/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F8A6DD265B65AAC2296D9FA319936B47 /* Copy third_party/re2/re2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/re2"; - dstSubfolderSpec = 16; - files = ( - F4DBAC28119DB50DE4A0884339D4C8C6 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */, - 45844144E5170BB6207C902B9E2A098A /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */, - C81789F1AC7C36EB45F59B09F73E4B15 /* pod_array.h in Copy third_party/re2/re2 Private Headers */, - AFD89073EA4504FACEAEF17F832BAF02 /* prefilter.h in Copy third_party/re2/re2 Private Headers */, - 6C50C539139C0290EB7870DBD27556A4 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */, - 9E7335FF7B3525F6163E983315638157 /* prog.h in Copy third_party/re2/re2 Private Headers */, - 92A328385240834AEDBA40D62019BC76 /* re2.h in Copy third_party/re2/re2 Private Headers */, - 9F10501D0331A04767AE5A32E7DEA553 /* regexp.h in Copy third_party/re2/re2 Private Headers */, - 809B20B4A1ABF96A09B353D23C06174E /* set.h in Copy third_party/re2/re2 Private Headers */, - C310033E2921BDB52A70763EFDF98618 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */, - 71EDD05E10D224FBB3029346A22187B0 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */, - 8327EC52DCAEBC4EB3C8FA75794300B0 /* stringpiece.h in Copy third_party/re2/re2 Private Headers */, - 4F70D36B5B6E82A152426B1247168C8F /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */, - 31CE77E4ECE6011083C3B8AB87EEE584 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */, - AD6CF325869825A1CC1A099F47017CE2 /* walker-inl.h in Copy third_party/re2/re2 Private Headers */, - ); - name = "Copy third_party/re2/re2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F8F17881B031E5B2A37E22F2D76DD770 /* Copy cleanup Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup"; - dstSubfolderSpec = 16; - files = ( - 2991E4063B8F9774744B1F21F96A1819 /* cleanup.h in Copy cleanup Public Headers */, - ); - name = "Copy cleanup Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F9183B1D949A751530EDF05B7A6B1C13 /* Copy third_party/upb/upb/mini_table Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/mini_table"; - dstSubfolderSpec = 16; - files = ( - 24EE79956A01D24F5DA184A9FECCEF24 /* enum.h in Copy third_party/upb/upb/mini_table Private Headers */, - B3C19393A007CAB29DF3E2E7CFCBAE4C /* extension.h in Copy third_party/upb/upb/mini_table Private Headers */, - 7E5D61C9407B37CC067D2322D4517841 /* extension_registry.h in Copy third_party/upb/upb/mini_table Private Headers */, - C1D7AF1AD15C08B1FCE91E86CF0731C2 /* field.h in Copy third_party/upb/upb/mini_table Private Headers */, - BC419920515B37D3C745FDE5E3F57748 /* file.h in Copy third_party/upb/upb/mini_table Private Headers */, - 8E227B48583518355D0F558A2B799817 /* message.h in Copy third_party/upb/upb/mini_table Private Headers */, - 19C4E712F5E55B442D2013C2A34EC0BA /* sub.h in Copy third_party/upb/upb/mini_table Private Headers */, - ); - name = "Copy third_party/upb/upb/mini_table Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F9713ACA4EF3890A5E78407BB4A20443 /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 0BCF899384943F4FF877A50FDBAB0669 /* matcher.upb.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - B2029B62C44F0C72ED201F518F70A388 /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F9C64EB4FFDE5842D99617AD58018532 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 6BB604F793635DAAC2A79D7F82C11334 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F9E0DAEFFE79F14059D95EE8480ED7AD /* Copy src/core/lib/security/authorization Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; - dstSubfolderSpec = 16; - files = ( - C5BC18637C20643A32DBC833EF032932 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */, - 579B3920CFB7B436E143AC29E3672069 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 306EFCE7D87276574648E39875367A12 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - 80DA9927D62E5C637F60D18309BF34B2 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - 72B32B0B366B69462FEB25BC044AC13C /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 68464150D3A7E20289188C2C99539A20 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, - 8CD51434B3E5C4D5F43F308575A8D775 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - CC2A09B41A774AEC2D907898C998C65E /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - 478A5A3538406A56118C32822FBB9D38 /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */, - ); - name = "Copy src/core/lib/security/authorization Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; F9F7AC5A2AD9C7696F6F689284D8FBB7 /* Copy . Public Headers */ = { @@ -18279,40 +18496,30 @@ name = "Copy . Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - F9F8F722144C6D03176F8F1157B976BF /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */ = { + F9FC839806B21AD2B7659949E8D169B8 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/service/status/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3"; dstSubfolderSpec = 16; files = ( - B7B105CB81989DBAE6FB960E3196C538 /* csds.upb.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, - C76D42F08F70CB01489E43DD5481E0E6 /* csds.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + 972DFAA09DAB9B6FFB9FF4FE7CE01446 /* http_protocol_options.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + 90406B91B9AAFB4D7290CDDDD5DEE761 /* http_protocol_options.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FA1D34E8DEFEB0FC4F892AED55E37FB0 /* Copy status Public Headers */ = { + F9FF2354A09559320B1DF5687A20E23A /* Copy synchronization Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization"; dstSubfolderSpec = 16; files = ( - 74DC5B40EC26EE96E4783285044E5D6D /* status.h in Copy status Public Headers */, - 896D739CE63FE96DBF2E888420C5DCA3 /* status_payload_printer.h in Copy status Public Headers */, - A1B84E49943581CE84B571C7EB6A1F49 /* statusor.h in Copy status Public Headers */, + 6F293FC61EA808083B22495B7D6CDE0C /* barrier.h in Copy synchronization Public Headers */, + B57FFADD0B10B163E2209DB91EA181D8 /* blocking_counter.h in Copy synchronization Public Headers */, + 40D8682C58601443C9B2086B3E29F6EF /* mutex.h in Copy synchronization Public Headers */, + B8DBDF692DD212E7AD4D89C7866BF04F /* notification.h in Copy synchronization Public Headers */, ); - name = "Copy status Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FA3B0E944CD41318581C9250839AACF2 /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; - dstSubfolderSpec = 16; - files = ( - B5438BC75F642883BB655919A858C3E8 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/insecure Private Headers"; + name = "Copy synchronization Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; FA4281613F0D41004AE1A93C397EEE93 /* Copy crypto/fipsmodule/tls Private Headers */ = { @@ -18326,6 +18533,20 @@ name = "Copy crypto/fipsmodule/tls Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; + FB0C40E3B211B13A4F4E685855BF8832 /* Copy third_party/upb/upb/port Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/port"; + dstSubfolderSpec = 16; + files = ( + 8F0AB4E6A2E240176CD0FCA4D4B6F3D6 /* atomic.h in Copy third_party/upb/upb/port Private Headers */, + CCCC08F57CD6792F1341C7F714133E10 /* def.inc in Copy third_party/upb/upb/port Private Headers */, + 56059664C86382C80ECEE7BE21D09CD2 /* undef.inc in Copy third_party/upb/upb/port Private Headers */, + 240649D3DD53CCE7AF824DBBE1700285 /* vsnprintf_compat.h in Copy third_party/upb/upb/port Private Headers */, + ); + name = "Copy third_party/upb/upb/port Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; FB0FC3B60C4AE52A5F202FB040436AD8 /* Copy crypto/lhash Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; @@ -18337,6379 +18558,6711 @@ name = "Copy crypto/lhash Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FB48259010FFB63B53F44C77C8E06788 /* Copy src/core/lib/security/authorization Private Headers */ = { + FB2CD24639EA363463593D944646E666 /* Copy types/internal Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types/internal"; dstSubfolderSpec = 16; files = ( - F89166B6B5BE809EBC23E64168D62391 /* audit_logging.h in Copy src/core/lib/security/authorization Private Headers */, - 45B8E7FEB8867FFDA205D67C359CBFB3 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 1130A854DAF744C8AB909BF70D6A097C /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - 1594A2147DBF640343BCF959DEC13D9D /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - 6F58C7915F25F92E640FA0D5B21CBAEF /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 44AB2F9C9A3B5832FF279F1B4023BC72 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, - 1D6D06570852377976EE4A66F0A976C2 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - C6311F869B925DA56D2E72295BAA60E7 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - B92D1766D1E6494BCCECD0EAB57736AD /* stdout_logger.h in Copy src/core/lib/security/authorization Private Headers */, + 2AE2E9AF27F0ADBE80895075C79AE38D /* optional.h in Copy types/internal Public Headers */, + 7D35FFFBAEC314DF7EB4B308FA7F000D /* span.h in Copy types/internal Public Headers */, + 1FEC15B9BDBC436E96BF8D6E3F6E3B31 /* variant.h in Copy types/internal Public Headers */, ); - name = "Copy src/core/lib/security/authorization Private Headers"; + name = "Copy types/internal Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FB819F1F324086FF201165642AB3519F /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */ = { + FB5E198AF7C7739BC68D9FCC168182F3 /* Copy src/core/lib/security/credentials Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/type/matcher/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; dstSubfolderSpec = 16; files = ( - 9C56D5C9058A447EFC1BB74F7FA488D7 /* cel.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - B4197C04CB3005E06C2ED8702D5E746F /* cel.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 7C0FE4E1DDB6D0CF1103BB33415A96E7 /* domain.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - A1FD0F6E84BCF4000EAC2328472AE724 /* domain.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 534EEE1F505544B29FA3997AE189FBC1 /* http_inputs.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - AB48F97645BE34461A847C59E63C4679 /* http_inputs.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 3D87C5561E005BD9A6708FFFC5BCB405 /* ip.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 6F1758BE926DCC9722EDA84FC0B65B46 /* ip.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 4BAECB624F94CA0C8AB2A43A9B482ED8 /* matcher.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 58785C34C915126C6C694896F2FAEDEE /* matcher.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 1A2122B027E9FBC180E720E75986C997 /* range.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - B62312E806F0EBA801D9A0780830469D /* range.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 3DD066C5672221D8A16926F723773905 /* regex.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 27DE7B33CE3A6746BFC717941F134FE7 /* regex.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - AE16B0DF12E063442E83B45230207161 /* string.upb.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 6F06ECD49CF9F0D2E19F3D6EBDEA95B9 /* string.upb_minitable.h in Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + A63361100ABD432BDE760F1CADB499EA /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, + 5EA5286EBE0C6BB6041340E1413CE47F /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, + 7B2AE64D61BB3EB141027FFD14DCFD51 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, ); - name = "Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers"; + name = "Copy src/core/lib/security/credentials Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FBF1CCC1E8539C84A2C02EF6B3625597 /* Copy src/core/lib/uri Private Headers */ = { + FBE6078417FFCC51D8102949468E77AB /* Copy src/core/lib/surface Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; dstSubfolderSpec = 16; files = ( - DF74A1F8BD56CF9DDC628BE09E4D5871 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, + E0CF8CF9ACF76B8F66BE2DB016EFEA56 /* api_trace.h in Copy src/core/lib/surface Private Headers */, + BB3BB8F524B77335AD1447AAD5BC1B3B /* builtins.h in Copy src/core/lib/surface Private Headers */, + D3C327398F6C0ED57E5D56268183C4B8 /* call.h in Copy src/core/lib/surface Private Headers */, + 8D0BBB64365935B01B7482897714D89B /* call_test_only.h in Copy src/core/lib/surface Private Headers */, + F9FD31BFEFA6E62AC4F0F8F3849A359C /* call_trace.h in Copy src/core/lib/surface Private Headers */, + 603814D33EFFC458F2D7BE1D76C998C4 /* channel.h in Copy src/core/lib/surface Private Headers */, + 6C7D23B9797D10DEC73E0EEE2F873849 /* channel_init.h in Copy src/core/lib/surface Private Headers */, + 4A009249969DE50515BE94AA4BF84CB4 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, + EF177BAD6E16C31DC35146F002F34FAA /* completion_queue.h in Copy src/core/lib/surface Private Headers */, + 5BF333A6EA49FE67C8734B3984A951D7 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, + 5299C9DA054B26D5DA83329988AB95FE /* event_string.h in Copy src/core/lib/surface Private Headers */, + 8FA9D73647CB51F552E39E8708C9E19F /* init.h in Copy src/core/lib/surface Private Headers */, + 30861A48035A287D964976D52BAD2F81 /* init_internally.h in Copy src/core/lib/surface Private Headers */, + D60F8B2042E1DF2423ABD1B1313D1D45 /* lame_client.h in Copy src/core/lib/surface Private Headers */, + C5287A1284A3E0310D84C1A79139183C /* server.h in Copy src/core/lib/surface Private Headers */, + 1E9515F12115495D3AE758418F2C7131 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, + F44F63C52B00A17F8E27B58C2523B853 /* wait_for_cq_end_op.h in Copy src/core/lib/surface Private Headers */, ); - name = "Copy src/core/lib/uri Private Headers"; + name = "Copy src/core/lib/surface Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FBF32BBFBE3D7BE536784630E7774A66 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */ = { + FC31F160437FF6D071AE664474112404 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/config/listener/v3"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/xds/core/v3"; dstSubfolderSpec = 16; files = ( - F90AABF94CE57BC924D8BB30A0B73058 /* api_listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - A33CB95EEA80BDD025E9915BF32CE1EC /* api_listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 07D05FC26FF54782161F5390987DA4C1 /* listener.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 89A100D5A1E76ED48DC4C0D2D777987B /* listener.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - C197F97588F929C89A113A0D3DC0A1C0 /* listener_components.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - FF7316187C31A8B542641C31C103A0B7 /* listener_components.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 227DDCDB6B1323EB704AA5C7F3EA0FB8 /* quic_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - CE08123D164B466E983196AA6BCA7441 /* quic_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 5A0669EAF22846C4BBBF9359AEC4E7E6 /* udp_listener_config.upb.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 368257519BC59A5AFA5C7B00CC94FD45 /* udp_listener_config.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 548FA872C59C11BB3A8421ADFD1CE66E /* authority.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 67FF0E88752D508BCC03CF3C4AF83311 /* authority.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + F4EDC85A07AD02C57D79791ED6DF045A /* cidr.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + A0441213298158C053843771DDADCC12 /* cidr.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 24CD20736EF1904AA71F7C4C75796249 /* collection_entry.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 5A2C81D9BAB20C040A2801D8A0A3F6D7 /* collection_entry.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 583EAB1C2BCD8780ED73E720E29C1DCF /* context_params.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + FCEE40AAACA6120D638D13970FE26924 /* context_params.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 91C6DEBAD8A7E17D6D17C186AD94C492 /* extension.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + A02317D87C0E326E533CBDF225B796AF /* extension.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + F80E5323EA4AB3F58BA2CF59FEA4606C /* resource.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 2A1F1E0339928B1755DE220949A18B63 /* resource.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 16EC51F0200D055FF74FDED7A10684A4 /* resource_locator.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 80549C4330F8B68C8027B0251BEED0A1 /* resource_locator.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + 98A351EE8FDAF5E7233F23F640605640 /* resource_name.upb.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + CE348523838CE0AD1DB32D86327FB7F4 /* resource_name.upb_minitable.h in Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers"; + name = "Copy src/core/ext/upb-gen/xds/core/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FEC769224232EC210B5C101B5D1F8AD9 /* Copy third_party/upb/upb/json Private Headers */ = { + FC87485088728E07C5037FBF3AA5E3D8 /* Copy third_party/upb/upb Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/json"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; dstSubfolderSpec = 16; files = ( - C9349E20D05BF8F08E796B59DE546702 /* decode.h in Copy third_party/upb/upb/json Private Headers */, - C85B9B247A548CD0967333ED9ABFB49E /* encode.h in Copy third_party/upb/upb/json Private Headers */, + C3A5291A993F4C7617106DA2366C1FD6 /* generated_code_support.h in Copy third_party/upb/upb Private Headers */, ); - name = "Copy third_party/upb/upb/json Private Headers"; + name = "Copy third_party/upb/upb Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FEF0F411D103602807AC0F3A8D89E4DD /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */ = { + FD1996DF9D6134FD17A978D06B1011EF /* Copy event_engine Public Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3"; + dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine"; dstSubfolderSpec = 16; files = ( - 87CA5A65708E4E76A05393CE0B3AADC7 /* cookie.upb.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - 65A2FF1FEAF95BBFFE59CA930FD24ABF /* cookie.upb_minitable.h in Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + BB3FE724B3117993BF708E6A5F37DAE5 /* endpoint_config.h in Copy event_engine Public Headers */, + 46424E1119E060A84F75446279925263 /* event_engine.h in Copy event_engine Public Headers */, + BE75F43825AFD401B00282640B9943A8 /* extensible.h in Copy event_engine Public Headers */, + 6BD82D5E912B2E999443177C449AF18A /* memory_allocator.h in Copy event_engine Public Headers */, + 5A74E701B63BC2A025B285138E444856 /* memory_request.h in Copy event_engine Public Headers */, + 3C89B810A40BA66EB6087EDA5BC4E95F /* port.h in Copy event_engine Public Headers */, + A91C81BF8014A431D89D16219D4A6646 /* slice.h in Copy event_engine Public Headers */, + 148EFF134D7FFE3E9200B397676BF39A /* slice_buffer.h in Copy event_engine Public Headers */, ); - name = "Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers"; + name = "Copy event_engine Public Headers"; runOnlyForDeploymentPostprocessing = 0; }; - FFB2A9EFA88EA7E7DA3603F6FD9525FD /* Copy src/core/lib/security/transport Private Headers */ = { + FD38DB57A75021B4F8401E02CEBFB61A /* Copy src/core/lib/matchers Private Headers */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; dstSubfolderSpec = 16; files = ( - 51D4677868D8746EFEF089553BF275AE /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - 3AE70B034891B41CF5A6B0F16EB6E74A /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - DDEF0818899EF98A774B74DE4059B667 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - 273A71095817C45F9B8A1BF648497A62 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, + DAB4A4E84669769609239109870665E8 /* matchers.h in Copy src/core/lib/matchers Private Headers */, ); - name = "Copy src/core/lib/security/transport Private Headers"; + name = "Copy src/core/lib/matchers Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + FD7C48CD53591A371621978C4E48FCB1 /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/xds/core/v3"; + dstSubfolderSpec = 16; + files = ( + 222BB7A801DD7B621DCB9BF68D5C6E94 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + D2B254ADA4F7C02652B4F80EC2DDC1BA /* cidr.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + EE1F6B9B4F6714D25C66AFAB417E978D /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 6F9357291A2F4C95FFE129871AB9A370 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + BBC9B09E90343361F3DF46665CFFA020 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + F865E2BC9514491D76EAB430DFAA58EB /* resource.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 96E3F943070C80168D8FD2EB508ECCA5 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 1EC96964CA808679DBFCDF13E5112079 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + FF194D71361BA77F3D35366CEEBA4F82 /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; + dstSubfolderSpec = 16; + files = ( + 4D09DDD128091CFDF3E11E24782C2B60 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, + ); + name = "Copy src/core/tsi/ssl/key_logging Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + FF4E2626F202ADEBA1FC800A331AED7D /* Copy src/core/lib/gpr Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; + dstSubfolderSpec = 16; + files = ( + B143D4761E87F6C6D5284C3A5012C0D3 /* alloc.h in Copy src/core/lib/gpr Private Headers */, + 231BF8DD47F7FC82EF78EB6F299C23B1 /* log_internal.h in Copy src/core/lib/gpr Private Headers */, + 3DF2908D0FF997CFA0F2742B446EC09A /* spinlock.h in Copy src/core/lib/gpr Private Headers */, + 59F12A0B826A99F5E3BD7C98E23E7838 /* string.h in Copy src/core/lib/gpr Private Headers */, + E29DD4E77C2D506A21EC293E7703AB86 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, + F056C3FF9BBF3DDEBD60E46DDA069461 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, + 5817CC4731718683E9A1B949973E263E /* useful.h in Copy src/core/lib/gpr Private Headers */, + ); + name = "Copy src/core/lib/gpr Private Headers"; + runOnlyForDeploymentPostprocessing = 0; + }; + FFD4615377C1290107F1833D943CA622 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3"; + dstSubfolderSpec = 16; + files = ( + B8C0FE877055668DD05A91307E255140 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + ); + name = "Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 0003281FC4AD3163FCAE761DF5186672 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - 0006A7B06CB205C3AAE4F3203CC99B3A /* legacy_frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_frame.h; path = src/core/ext/transport/chttp2/transport/legacy_frame.h; sourceTree = ""; }; - 000A488243591DDD27E9466344E34382 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; - 0015B3A0C65E2E6A644C56E7BB547B98 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - 0016A656F1FE437D43D61C33598B7B12 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; - 0017E8C8CA197B4E10F9230416FDE1C8 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; - 002111222DD06B0B7E47C7219378342D /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - 0021800EE727D90A7B806CCBA93BF0EF /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/message/internal/extension.h; sourceTree = ""; }; - 0027965A5ED909BC90C7A69B02FDAC7C /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; - 0029552655B933124A357E9609E739FC /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; - 002C5F928CDDA95238B64EBD8E33FF9E /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; - 0063973BEBCBA43B519D5B381BBD53D1 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; - 00738290675AD91642CF06283DBB273B /* xds_http_stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_stateful_session_filter.h; path = src/core/ext/xds/xds_http_stateful_session_filter.h; sourceTree = ""; }; - 007A421B85B88BAF3521C5419ECB04A8 /* ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; sourceTree = ""; }; - 007BC64783B94A75CD502C83A750DBD0 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; - 008893870926896AD0E43D0CB385E0D6 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; - 009DAE8025EAAB30D8CBA122D9F375FF /* GDTCORMetrics+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORMetrics+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCORMetrics+GDTCCTSupport.h"; sourceTree = ""; }; - 00A3310EBEC3EB62D858EBC2873E6EC4 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; - 00A6C05A097586B3751554BD52F98A2E /* authority.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c"; sourceTree = ""; }; - 00BA2D12B4083EA3261EA23BB481BA57 /* fault_injection_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_service_config_parser.h; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h; sourceTree = ""; }; - 00BD37AB3537CA25C6FDE3AFE8F55BE9 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - 00CA6717C30CD4487F9BCB1353686864 /* round_trip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = round_trip.h; path = third_party/upb/upb/lex/round_trip.h; sourceTree = ""; }; - 00D100C64635E1199BECAEA4DB0E5D4D /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - 00D945935FE5B90BA76DB73D7BE0D12F /* http_protocol_options.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h"; sourceTree = ""; }; - 00F6F3F845FC155C25BE619DCC272B81 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; - 010C426291A1E320C563F1B943F64FB3 /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; - 010D96541603B8BA1EFB5683C3E33564 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; - 010E33038D703981BD9B1B3BA67113DE /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/load_balancing/grpclb/load_balancer_api.h; sourceTree = ""; }; - 011C7C1D1ADD0E700A761ED69A807509 /* cpu_aarch64_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_win.c; path = src/crypto/cpu_aarch64_win.c; sourceTree = ""; }; - 011D2D4DDCA3019C20F784784CCFA356 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; - 011F6445D8C9C16599733624A162557C /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; - 0124BC8BE353D158F45A38FDEB11B46C /* orca.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca.upb_minitable.c; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c"; sourceTree = ""; }; - 012782C2DDE1AE0F0AEE32FEFB6D72F0 /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; - 0133C914A92F7F71AD03098BFB501D40 /* p256_64_msvc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64_msvc.h; path = src/third_party/fiat/p256_64_msvc.h; sourceTree = ""; }; - 01380D2F77DD7D2F2BE0BBD347157878 /* log2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log2.h; path = third_party/upb/upb/base/internal/log2.h; sourceTree = ""; }; - 013D237986207FA9A0A124776BB201C5 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 0156D20A9A82BC34E1CFD7D2E8EC6588 /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; - 01716956170A187FC560D6D922059E04 /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; - 0179B77E575EC292242B73578555FD8F /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; - 017EF685DFAB85DE4F8134A70C1D1489 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; - 0186E1E0C8151BBDF067A8C403230824 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 019017D2D08ADEB3E38BA15C3D651A30 /* GDTCOREvent+GDTMetricsSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTMetricsSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCOREvent+GDTMetricsSupport.h"; sourceTree = ""; }; - 01A2DB61D1C769DA52F83C426022F933 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/support/atm_gcc_sync.h; sourceTree = ""; }; - 01A6B0FD8CE64F17F146CE210F16A4E2 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - 01A98D5E929E8B3A5C9EE23CDC83C6A8 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; - 01BCC4F202CAB2F52EB6DC0382E52928 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h"; sourceTree = ""; }; - 01C3432304325DEB517878A4783BAB48 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - 01C4D490D7EF8331D8A0056C11406A9D /* ratelimit_strategy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h"; sourceTree = ""; }; - 01CE3ED016EC661DEC52F44FD61481B4 /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; - 01D0F9CA543A89CA9EA719F1ABE27CA9 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; - 01D611C3949AE617996271EBA827FA2E /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; - 01E3D0F2F86E1F8A3A829780B2197E0F /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; - 01F752423C98FD2D6F7B535BBBA9391D /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; - 020B5791475B7825476834230ABF0C58 /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; - 02250B05FFE0D6443F1208F07198C570 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 02370FC173FD6565B97E06DE60DAF3A9 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h"; sourceTree = ""; }; - 023BD123D2CD2A4AF52AEF65C2CF0C02 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; - 023E932E9549394B6AA67327690E43E6 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - 023F2F0A584983F1FB42D36057D1B771 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; - 025ACDC5181D734BF7C462583C7A23E7 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; - 025DEDEAB299ED2B675319741AA9A1F7 /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; - 025E22E4B3B2BFB7690310EB8935BDDB /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_resolver.cc; path = src/core/resolver/fake/fake_resolver.cc; sourceTree = ""; }; - 02608A5BF2F4604CEA7B86FAA91B91B4 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 026F1699DB5C538D35F20AB275D2F3C4 /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; - 027B1B88C205B99CE4AED1298DFF63AA /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - 02817080FDF75AA4895B41A1D6A480A4 /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; - 028EED6897FFE902BCDC3FED0BAA1C8F /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 02974820FDAEE61436D133CABCA0EEE0 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; - 029903066773722AF0DEA2BC89F2F93C /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; - 02C4DC1A8F0BF0E8EDAD9815ED9DF0CE /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; - 02E8151877F9DB73322F11737CB5A700 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 02E85A34DA39F62B392F3B789B7B1178 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; - 02EC0058C7B90C486E26542577A691BD /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 02EFF969145AC82D79732D4CA8F322BF /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; - 0306FAA8F05CCCFC3303BB9A6F9EAC00 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 03095AD9BB5250002B15B7ECAE5F38CE /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; - 030BDA3682289CE9C7687AC97FDAFC1A /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; - 0326A1D3B2F48B97C7D37A4E06E2E1C8 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - 0329FEB953D7FB4396E13A125BEA521C /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - 032F1ABFE35C8B3EB4DEE347F01D044C /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h"; sourceTree = ""; }; - 033BB4355897EDA691AB20E14D08D38C /* zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zlib.h; path = third_party/zlib/zlib.h; sourceTree = ""; }; - 03405BE9BC3E546E06DA933435E5F566 /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; + 0006CC9E2CF8515771893CE1D06D31EE /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; + 000956196A82AA0369556ABF33024222 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; + 001A3B5F66D7AC2F2B95EFC3EE3AF352 /* sleep.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sleep.cc; path = src/core/lib/promise/sleep.cc; sourceTree = ""; }; + 0022DDA3BC8899CAE7D63D291D29ACD8 /* int_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int_table.h; path = third_party/upb/upb/hash/int_table.h; sourceTree = ""; }; + 0025C76190D38F69B9F1F9759E8B7D27 /* grpc_polled_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_posix.h; path = src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h; sourceTree = ""; }; + 002BB04CAEF8B7F80E5EA090FD142D3E /* opentelemetry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opentelemetry.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c"; sourceTree = ""; }; + 00310AC6F20D302C9B9DAB44066C7ECA /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; + 003BECB73D90E3395979D0E6EE0C35B2 /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; + 0046B41FFE88114B720B3B22DA4CF018 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + 00482468D86619E488D88595A7410EBA /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + 004AFF898D0CA15FD3960E4DA1D42375 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 00592B8AED1D500F58C5677BAA38DCFC /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; + 005B1C80C2CDA870B38AA4AD9B8CFEE9 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; + 005FDE1922FDD8B34861A4C31C4546BF /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; + 005FE4D9B986681227F71502C681B213 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; + 00674DD5986B440E93365029671828C1 /* retry_filter_legacy_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter_legacy_call_data.h; path = src/core/client_channel/retry_filter_legacy_call_data.h; sourceTree = ""; }; + 006E6B96209A305D938E0CB829359952 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; + 007694D0CFDE1D01C725290F18E3E409 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; + 0077D96CE804B14A016F2A03F4DB8549 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 00895E4BF0E7867ADD396F5259A9F84A /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/load_balancing/child_policy_handler.h; sourceTree = ""; }; + 00A3C5A76EB6325C1F532F998A4958F2 /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; + 00AE0F1DC5B63E68CD5E14986FFC4472 /* cel.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c"; sourceTree = ""; }; + 00BFFBC359DB1ECB1230197521CF30E1 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 00C6DBE4A6450FB757EE6300DF10AA42 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 00C811B9EA5F05DE91A47451E051F14C /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + 00D5CEC50C73631B9856263E676D38BC /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_averaged_stats.cc; path = src/core/lib/gprpp/time_averaged_stats.cc; sourceTree = ""; }; + 00E352FF302C82C28408AF2FE56EC007 /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; + 00EB164F4238132FEDEF0D06555EB964 /* aggregate_query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_query.cc; path = Firestore/core/src/api/aggregate_query.cc; sourceTree = ""; }; + 00EB35E20530F490FA760EC99A2BD029 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + 00F75B0EF0E2D6F28FE827F44748D332 /* trace.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c"; sourceTree = ""; }; + 01256A17DFE15106ED018349B47C0590 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; + 012D38CB2A5FC9FAED3FE3292D3636D3 /* atoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atoi.h; path = third_party/upb/upb/lex/atoi.h; sourceTree = ""; }; + 012E135EAA9A9065E801DC3DFBDDB5FE /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; + 013AEB81A3C4EBCF54456B01DB19C045 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; + 013C0432B9F5891BF96DDB534DDA117A /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; + 01408743DD0340653EA2728C3DA7D906 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; + 01498FA2FD594454D5030E277156B269 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; + 01538BADFD65BCCE219E5FDFCC037F73 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + 0155ED53E9E74444A44678AF7A2320A5 /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; + 01620ED71B38281B151FEE2227375F2F /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + 01643C1180429F77475F9F695D947283 /* grpc_tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_crl_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h; sourceTree = ""; }; + 017AD30D5CAD9D9D06D0713310C7D4AF /* deprecation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h"; sourceTree = ""; }; + 019260869EF5514FBED28E33E08D46D8 /* cordz_update_scope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_scope.h; path = absl/strings/internal/cordz_update_scope.h; sourceTree = ""; }; + 0196F4BA873F60C8C5AC8C068C39683E /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; + 019B9DEB107A26E165C810946CA6822B /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; + 01A572C71D6F801D0EBF42DC7FC47FB1 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 01A9BE12316C4C29BA8672F8359B1608 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + 01AB89E48B714BA03BBCF1BEA37A91AD /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; + 01AF09A8FB896E366C3E47B7975332F9 /* FBSDKGraphRequestMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestMetadata.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m; sourceTree = ""; }; + 01AF1682B2DAFDAAC83E6F51F5B5AA51 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + 01BB092B1776707616B61B1F34D67517 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + 01C724D095C5E266DF1C662E9B8095AB /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.m; sourceTree = ""; }; + 01C93277848769AA7C632270BD3C4CFA /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; + 01D629DEE5B32BF6678BA8614044ED20 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; + 01D98DABAEE772BB1DD63617B8FF027B /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; + 01DDA8A6943C8067A84D50B9057552D2 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.c"; sourceTree = ""; }; + 01E96EE88D41B9D2493EA6E50053E082 /* backoff.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h"; sourceTree = ""; }; + 01EF8B97C6D98C23F24FFEC0E9AE4545 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; + 01F8E5F9B3E9D3DA26996F2512ACE2F8 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; + 020448AA0C46D5C0FED4D3058B63FEBA /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; + 02050F8A5B1FECB8C7425B690B1D40AF /* trace_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb_minitable.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h"; sourceTree = ""; }; + 020517DAB22EEF1D0699B006880D4DE6 /* wakeup_fd_eventfd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_eventfd.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h; sourceTree = ""; }; + 0208C59A70EBB18CA7DC9899AAA4A72F /* quic_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h"; sourceTree = ""; }; + 021A132FA201AF8F9268BF36DE1F3233 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + 02258EF222115499C277B1971A0B69B7 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; + 023343C108EDAB199DCF48A0AEB0AF50 /* filter_state.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter_state.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c"; sourceTree = ""; }; + 02361B4228FF40FF56250802343DC604 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; + 0239B1E5AD6AAF7BF606794B925165F8 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; + 0263B42CCA540350E59269B3B57811C9 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; + 02738C2B122708C51A2F952DC328B847 /* httpbody.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = httpbody.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c"; sourceTree = ""; }; + 0276C2723AA5063CCADC3B1F6F7B29ED /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_serializer.cc; path = src/core/lib/gprpp/work_serializer.cc; sourceTree = ""; }; + 028144572E10FF8F19F3FD7C1332C38A /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + 0283FCC4C773FA788D60D169870CACD7 /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; + 02937A039F30BCE44E8E569187168F07 /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; + 0295369CB1CFCD3AF9EAB9369E0F8F9E /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; + 029766ADC0C555367A2B56FE9BABC37A /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; + 029A68A22F958AC46BD2D39C84C90396 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 029F37116C52C4E894959CDD22F340A1 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; + 02B95F6F6F19ACC00DBA2A8CC706B573 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h"; sourceTree = ""; }; + 02C8209D4562FBC365055D8F12D056FD /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = ""; }; + 02D4BB88156BCA543178C396802206BE /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; + 02D9136B2BAD3886D7C81C724C8CD75B /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/windows/sync.cc; sourceTree = ""; }; + 02F6CEB75F1848E486F241A2C543461A /* syntax.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c"; sourceTree = ""; }; + 02FE8A83ADB85709686C9870C6F677EB /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + 030297E84877EC3BCB685E4625582A99 /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; + 0320469249B1965E9E9F66AA4C004273 /* FirebaseAppCheckInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-umbrella.h"; sourceTree = ""; }; + 032CA1D87CF17D180672A991E4DCD552 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + 033538E686E47C1736A82727B02A28B3 /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; + 03398E0505A3C705A1DEF3DAA4DCF3DC /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 033E5BFC09045F1B45F5F72E9BF5E825 /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; + 033ED0F81A0728CD7FACB7FBF8F817DC /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; 03417063D7390AD042E1D760D319086D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 034BFBB087CC0155EC63BEDDEF3277AD /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; - 035B82AB08DA681C610923EBEBE78CC8 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; - 035E72673CDE20631151671BA55C298C /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; - 036E2A7210471EA9E915A5B49B245A69 /* polling_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_resolver.cc; path = src/core/resolver/polling_resolver.cc; sourceTree = ""; }; - 0371E084AFF469696B44928C6AF9F9F1 /* udp_socket_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h"; sourceTree = ""; }; - 0373CD8B488CFE88CB7138ADDDDDB854 /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; - 037560DA9B716322257A967D709CFA07 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; - 03759A44F8CEFE31CF54223696BE6198 /* write_size_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_size_policy.h; path = src/core/ext/transport/chttp2/transport/write_size_policy.h; sourceTree = ""; }; - 0376F7E599F4EA51E22B731E0D6D6F9D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 03834C961CBF10B3851B6FAD129AE156 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; - 039083BDAE39BD9483DEEF0E8FFADD48 /* TZProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZProgressView.h; path = TZImagePickerController/TZImagePickerController/TZProgressView.h; sourceTree = ""; }; - 039D4098E75E2A19E0BB4FE38175452D /* protocol.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c"; sourceTree = ""; }; - 03B4880EB0DC9B8C191BA7136EB85707 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h"; sourceTree = ""; }; - 03B66B3517357581B81A15659D79A15D /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - 03B8270A4870CFADF5AC4DE4E1278F28 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; - 03B8831EC85E9585A64BC115197123C0 /* FirebaseAppCheckInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-umbrella.h"; sourceTree = ""; }; - 03B98F20E5478D679A5C838AE3B998E8 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; - 03BF3F01FF5DBD90BECA74BCE3828EF9 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; - 03CF1A18028DFF3B011091047B8A3443 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - 03D2374B34A1A33F62E2B32152BAC396 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h"; sourceTree = ""; }; - 03DD25ADC357D23E546296B96C9DCBD5 /* tap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tap.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c"; sourceTree = ""; }; - 03E1A8D1015F1D230AB24D97F3796642 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 03E464C4BDC67A4C1FAFE1A83F72358C /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; - 03ECCAEA46AAD5C1DFB47D795572681C /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/promise/trace.h; sourceTree = ""; }; - 03F490FFF2550649C51BFF44840003AD /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; - 03F64AACB0411B5654BE6801159074B1 /* FIRGetRecaptchaConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.m; sourceTree = ""; }; - 041089630D869A0ADFC1D1962FDB9275 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; - 0413254134D0F7CC1B14052ADB4F6520 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - 041D7B4C3F3B222CCBF641A87224B386 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/internal/map.h; sourceTree = ""; }; - 042D82265AC86988C1A0624990D1D6E8 /* RCARecaptchaClientProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaClientProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaClientProtocol.h; sourceTree = ""; }; - 0435DCCDAAE3BBD2C5A9250CFF2AF618 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/resolver/resolver.h; sourceTree = ""; }; - 043AC1612D3A652A5CA624D92A734885 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 043FE77117A8723FEEF1C562E4296120 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; - 0440D1A49980199B182DF9ADBCDB8F11 /* FirebaseRemoteConfigInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseRemoteConfigInterop-Info.plist"; sourceTree = ""; }; - 04445866C0C23656E74337105D2B8B4C /* zipkin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h"; sourceTree = ""; }; - 044AB2672741D6C2FCA20CC8B63B696C /* wait_for_cq_end_op.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wait_for_cq_end_op.h; path = src/core/lib/surface/wait_for_cq_end_op.h; sourceTree = ""; }; - 045519DF52B0019A1AEB991E05EF09A9 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; - 045E821EB3F90C611F67D329933C5B2A /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; - 045FFF6B223D3FFB613B878D9F0A1B8E /* uncompr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = third_party/zlib/uncompr.c; sourceTree = ""; }; - 0465D1FE918E89C7FCCC85087D9C16A0 /* crc_cord_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_cord_state.h; path = absl/crc/internal/crc_cord_state.h; sourceTree = ""; }; - 0478AEC8FF31FC553417B47811316164 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 0481076B0511164B79A8E896ACD737A7 /* server_info.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h"; sourceTree = ""; }; - 049AF067CE61494C19FED162F2570C99 /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; - 049E32B76FA13134E08C57B6186A7F23 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; - 049E42F07C50A318EDB6F3727B48D740 /* env_windows_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_windows_test_helper.h; path = util/env_windows_test_helper.h; sourceTree = ""; }; - 04A03878E825793A63DF52566B5E4192 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c"; sourceTree = ""; }; - 04A1DD31D05F56D425D12B17F770FBB4 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; - 04AC091E6CD9D9FBA25E0B5AB087B1D6 /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; - 04BCC64CF54934754EB03A40D5313DE5 /* opentelemetry.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opentelemetry.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c"; sourceTree = ""; }; - 04CD2FC99565433E7FCA33BB2E0D9315 /* fault.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c"; sourceTree = ""; }; - 04CD4160703BA01D769DEA69A4238F1A /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 04D3CEC0C3833B25E88A3C7A0B0970CD /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h"; sourceTree = ""; }; - 04D3DAAA2F2EF4E43656F7542558DE87 /* common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.c; path = third_party/upb/upb/hash/common.c; sourceTree = ""; }; - 04D5A68B8E670AFFAEF823444334C05E /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; - 04DBB9F1B05AFEBCBA403120A4F4DE43 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/rpc_service_method.h; sourceTree = ""; }; - 04E442AE9C9D320B25104EB8BF1124C5 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 04E48C9D154588720EE2F8FCC23FE73A /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; - 04E6A19DC49EEB947A6CB9068FFC1BCE /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; - 04E7F4D5B50F810E407AAB68AC4EB1E2 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; - 051703D9A626D5D3608CF7752766B09B /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; - 05210DB21890E691DC3488EE05B32C8C /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 052DBF58F4408C6C42362255CA08D4E3 /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; - 052DCF0F784245D1C018C5113D2830A0 /* ExplicitNull.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExplicitNull.swift; path = Firestore/Swift/Source/Codable/ExplicitNull.swift; sourceTree = ""; }; - 052EB6FF93A7BE89C30E265237EA3E88 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; - 0533021FA6A75717E25B49F1E1ECDCDE /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; - 053D6C95F1E7EB9818E79E2BD323E0A1 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; - 0549D9195420939D4A58DF0EB7611916 /* time_zone_if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_if.h; path = absl/time/internal/cctz/src/time_zone_if.h; sourceTree = ""; }; - 055C219E6C93736F6D04F8CDCE0A9D70 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h"; sourceTree = ""; }; - 0576077D5CF567B8A76E848449A409B9 /* fors.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fors.c; path = src/crypto/spx/fors.c; sourceTree = ""; }; - 0577A00D3B0F2F6F1C5BBD6B2769E181 /* for_each.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = for_each.h; path = src/core/lib/promise/for_each.h; sourceTree = ""; }; - 057AC81F3A4A3BC698221A8438A798E5 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; - 057B1493136BF2D604E1110272462085 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h"; sourceTree = ""; }; - 05803BF9362D41A26D5B1BA2A6B520B0 /* FIRTOTPMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 0582A0F8DD2672A4EDB376B7325392CD /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; - 0585B94CF1B21DD374B96ED7AF14D2C6 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 05915E53C7A97653CE4E640488BC1707 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 05A1949D89E9D3DE0FC77F6929238DE0 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; - 05A84E2D9BAE85816BBC401D95A61E3D /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/codegen/server_callback_handlers.h; sourceTree = ""; }; - 05B5C9AA1A7A2A8B382248FDF04CDBA9 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; - 05BABF2A88DE8AC6AD54C0809A1C3D69 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/load_balancing/lb_policy.h; sourceTree = ""; }; - 05BCC8B265475B2C73D19EE7FF29110F /* FIRAggregateQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuerySnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateQuerySnapshot.h; sourceTree = ""; }; - 05CE6B2C57F4449471263737EEA57FF5 /* default_health_check_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_health_check_service.h; path = src/cpp/server/health/default_health_check_service.h; sourceTree = ""; }; - 05D31CA8002EABF11F6706D2A32DF1E1 /* FirebaseCoreExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.release.xcconfig; sourceTree = ""; }; - 05E0EEF77540E831F98213A8C8776ED8 /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; - 05EC9D65819C536106DEA755BBE006F4 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - 0619052C91940B939D3D649168F21388 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; - 061E8ADA5B7705F451C5F11DF2805104 /* CollectionReference+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CollectionReference+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/CollectionReference+WriteEncodable.swift"; sourceTree = ""; }; - 0621A4A5CCDAF62288BA5D7C16F59692 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; - 06348E15D4F46326849FA9DBACF1ABEA /* down_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = down_cast.h; path = src/core/lib/gprpp/down_cast.h; sourceTree = ""; }; - 0644C393372B0B7C2B0564E776267B05 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - 064ADADF8BF25B35C62A1D77F32C3DFC /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/accessors.h; sourceTree = ""; }; - 064D20A05CEDCA68D14CDF541766C3AB /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/internal/enum_value_def.h; sourceTree = ""; }; - 065B01A9B04DD800AFB4BAA6B31C2DB6 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 065E113B01BDD5D963E7CB9CF1C72C7E /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - 065F346BC1B1578431F4E47528F3269A /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - 06665ABF2501B60F035805072F63C283 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - 066B725709D49D7394CE004D0D7610D9 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - 06739CBB50807283709553E114355905 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; + 035291BA73213963231668DE147522A2 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; + 0355BC986A49EF068ACBDCF7C5170EF7 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + 0355F30C25FD222A86D09F896FDCA48F /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; + 03612F402550043CF94C3EE7A25AC810 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + 0363B16BD4835DECBF3FF29B1470D8D2 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; + 037F9A302B800B48929412CDD34D5911 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; + 0386BDE6749892E1242A2620F8C64A5D /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; + 038B646373F731F3D8E353E9D5728443 /* array.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = array.c; path = third_party/upb/upb/message/array.c; sourceTree = ""; }; + 038C134CFCEB9E54F6B15AF1C3370A1B /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; + 0398C48D3A0C48734E31C33CD52381EB /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; + 03A0A4F932CBF895E5F38122222C06D7 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h"; sourceTree = ""; }; + 03ABA9EC989C3E20C86A4ACA08B1970D /* try_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_join.h; path = src/core/lib/promise/try_join.h; sourceTree = ""; }; + 03B2A56D288CC6C14F95292DBF052DB4 /* hash_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy_traits.h; path = absl/container/internal/hash_policy_traits.h; sourceTree = ""; }; + 03BC9B7A63117165EDC779CE94330EC5 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + 03BF655FF1A10B7578E130FAA7C94ABA /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; + 03C35B88F6B933A85AADA9F88A26BEC2 /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; + 03D2ECB2ED698DF05BAF4E1F12847303 /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; + 03D920ED0C01A38F179F78451B8F51DF /* native_posix_dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = native_posix_dns_resolver.cc; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc; sourceTree = ""; }; + 03DDF4AD7E884E9DF913954C391B4771 /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; + 03E2119BCAA129178399A8FB98338DE4 /* cidr.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cidr.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c"; sourceTree = ""; }; + 03E55CA4B817CA18A3582661A230E111 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; + 03E5709C312886A58EBA75B096D9C077 /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; + 03E82C036F33D6338E07756855797090 /* time_zone_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_impl.h; path = absl/time/internal/cctz/src/time_zone_impl.h; sourceTree = ""; }; + 03F97215454A794F48BC5C2AD0F11EA4 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/internal/decode.h; sourceTree = ""; }; + 04002EA57154400FF38D51BA31B47E59 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; + 040F15ADA2E252656E99022DEAAD73A4 /* external_privacy_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = external_privacy_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.c; sourceTree = ""; }; + 0418CF0B29D8613D5BC5631C6B27B747 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; + 0427C763D1D8E38F7D239BA72B39D41D /* naive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = naive.c; path = third_party/utf8_range/naive.c; sourceTree = ""; }; + 042DEAFAEA06E04F444CBC0D33478866 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; + 0432C18E76864F5A4842908742EB4FE2 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; + 0441646E8D0642BE5A01B59FC499B739 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; + 045E577B58D9C87ACDA7F76AC26C7141 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 0462BAED6CD71EF7BC99875A9BEA0B76 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 0464D37DF3B8C8A481761B5CFCC0DF27 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + 0471D53FF96324489068C78C856EE029 /* message_reserved_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message_reserved_range.c; path = third_party/upb/upb/reflection/message_reserved_range.c; sourceTree = ""; }; + 047E39653777BAD6280C4E477449330C /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; + 047F2F26E95C554D810EE3F9CF42D0AA /* FirebaseSharedSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSharedSwift.debug.xcconfig; sourceTree = ""; }; + 048B1F37E83B5174132241746A8DD66B /* atoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atoi.h; path = third_party/upb/upb/lex/atoi.h; sourceTree = ""; }; + 04B85B8443697BEAF6D83F83BB3E2452 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 04D939AD0410E9099C2721A7E91012C3 /* call_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_trace.h; path = src/core/lib/surface/call_trace.h; sourceTree = ""; }; + 04EB8D7EE3469785716847C14233F7AF /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + 04FEFCA4CFAB7D3F7DCD90E9AB0083C3 /* bit_gen_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_gen_ref.h; path = absl/random/bit_gen_ref.h; sourceTree = ""; }; + 0500046B7A27D1B44C32989A4C0037A2 /* Promise+Always.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Always.swift"; path = "Sources/Promises/Promise+Always.swift"; sourceTree = ""; }; + 0505EAD2BA4ACEBE33B4AC7E5D82AA8A /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + 050CD972311952918418441366D615E1 /* GDTCORProductData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORProductData.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORProductData.m; sourceTree = ""; }; + 0510791D2E6ACE818657EC1890F0F139 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + 05166F81F7E9EFC2033F0CD3931F9198 /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; + 0523A85023174A02094D17A29C3BCD44 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 052909F0A2A4216848B164105741F34D /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gprpp/time.cc; sourceTree = ""; }; + 0531A33B3B23DBEF2AE9DB7E908FC467 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; + 05331F5E509EBAC1D6AB831CB125A2BF /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h"; sourceTree = ""; }; + 0535A4EFAC37570F1D9B7FB0B33E12DC /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; + 053AA5743AC199496A1EE13B5EE109B5 /* gRPC-C++.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-C++.modulemap"; sourceTree = ""; }; + 05451409179446083ABC5CC3DC413BC7 /* def_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_type.h; path = third_party/upb/upb/reflection/def_type.h; sourceTree = ""; }; + 05477409508E44C5B959B552733BC2D5 /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; + 05506C165AF6C06A76BE57297557C485 /* per_cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = per_cpu.cc; path = src/core/lib/gprpp/per_cpu.cc; sourceTree = ""; }; + 05570F0E6B3C3BBB4BE19290F16841FE /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; + 05625DA5F6551E56754387F4F2CB0DEB /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + 056AF6F68B647CCC2B7805F5279B6FDF /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; + 0587F394DA6E391A1350F3E1DCCB8953 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; + 05977AC6E52E035F9ED2B314C8FF883C /* nullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nullability.h; path = absl/base/nullability.h; sourceTree = ""; }; + 05B0F7E2DA4C7622645BFDBAA35B652B /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + 05CBAADF08EE8BD24859209020CD240B /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 05DB355DC0EACEBF6A0B5C8D69360763 /* skywalking.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h"; sourceTree = ""; }; + 05E1D45D02EE58165D838A5CC7A9DFED /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 05E5FB4DC841A67F6A3D9C80C36F0274 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/internal/message_def.h; sourceTree = ""; }; + 05E85BFE2F21D4CADE2AD0B0CA5CAA82 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; + 0604B132AFC4A12F5562F7D4AD1973EB /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; + 060F1E0932ADC5763EF50B3376B161C9 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 0617EA5C43725E8D28A19CBA7C318E9A /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; + 063508C7752D5D13233D1226AC187D6E /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; + 0651C77BA218874C7481F8EBB3F687A9 /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; + 065AE978F3ACF0CB44B9FC14E6F42A31 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; + 06602D6D76E7F3FFB99CBB0078CCBF5A /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; 067CED0F0662BBE6DC889AEC6DAB3049 /* PromisesSwift-Promises_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "PromisesSwift-Promises_Privacy"; path = Promises_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 06A2D633336C2E54D4060FE908E7D62A /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; - 06AA23034785E6CDDDC1E0E5643C1862 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; - 06DE69DE44B0C05AC4E70D6305682C63 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 06E5B63A21E6704711E1BCA3F717D5DA /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker.cc; path = src/core/lib/transport/handshaker.cc; sourceTree = ""; }; - 06E65987F807334755555B25BD4EC745 /* client_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_internal.h; path = src/core/client_channel/client_channel_internal.h; sourceTree = ""; }; + 067E2ACDB4257B1B27A2D55D75889127 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; + 068B69023234BE327E96B99C3642CC81 /* SettingsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsProvider.swift; path = FirebaseSessions/Sources/Settings/SettingsProvider.swift; sourceTree = ""; }; + 06937BDE8B1B06D2BB6716C2EFDBB615 /* config_vars.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_vars.cc; path = src/core/lib/config/config_vars.cc; sourceTree = ""; }; + 06C8F0598D0475A94D728371FC615AAE /* FBSDKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInternalUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h; sourceTree = ""; }; + 06CE5903887DCF4D065D3BD0BF8ED80B /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; + 06DCF0387213F42D0948FC358218A985 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; + 06E1E7A8758CC35A01D3EB098391B50D /* http_protocol_options.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_protocol_options.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c"; sourceTree = ""; }; + 06F1369331930A2E229506708BFF751B /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; + 06FA486FFC91C406BBE365C1B9A6D2CA /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 07037E4FB8345A70E266E4E994D2781A /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.h"; sourceTree = ""; }; - 070D8B1747941A0FFAF2B5A8716370A5 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; - 07309D413B3E56407FA20F78F0F8EA71 /* dns_service_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_service_resolver.h; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.h; sourceTree = ""; }; - 0738D0D2DBF3FAFE8976B7BB9CC9D7F3 /* event_engine_client_channel_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_client_channel_resolver.h; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h; sourceTree = ""; }; - 073AB6A5CBB88F9CEC48170726D08C45 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; - 073D096CDA61B89AD8AAD8D84F4CA3D3 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; - 0740CC3E1AE2275F7CECFB9577719DA8 /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; - 07426490B7BE7D6C59755D7500902C41 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - 074EBF9B48B90B902C3F91229E1487F4 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; - 0755369CDE638A834DFC086DC45C700C /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; - 075FF71C687B5A4A53929A5031DAA050 /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/internal/enum_def.h; sourceTree = ""; }; - 076AB9DD52FFDDE8EB5A30CE89B48312 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; - 07835A921FFE99D04E58046C46F9A8B4 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; - 078A49138A0CD01ABE0B9F5A7D6B219E /* tap.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tap.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c"; sourceTree = ""; }; - 07B169853212973D75D5F97B86EBAA82 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - 07B3C24BA4CA8EEDBC51363F35675023 /* posix_engine_closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_closure.h; path = src/core/lib/event_engine/posix_engine/posix_engine_closure.h; sourceTree = ""; }; - 07B73C93D2279D380D3DA65191463A6F /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 07D4FF87953A26155279B4F7AF654BD6 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/impl/codegen/byte_buffer_reader.h; sourceTree = ""; }; - 07E7F3F3C504F7C27F38FFCF5A2A19A4 /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; - 07ED0F57F9E8EDB2E1C5911E26C1B8CF /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; - 07F072C3939DA3D426229A7DAFED4AAD /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; - 07F0A8AEABDD6FE95D6609A0FE847B48 /* udp_socket_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c"; sourceTree = ""; }; - 07F805C0ABC384F5AAB22C45F2A964D9 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 080EA6A47C9E27149530F39654EBC700 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/status.h; sourceTree = ""; }; - 0815C0ED962673D91E67C5AB9242C394 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/internal/enum_reserved_range.h; sourceTree = ""; }; - 0863F11F2B67BC00FEE850B989465C69 /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_purp.c; path = src/crypto/x509/v3_purp.c; sourceTree = ""; }; - 0865506B4A627A56FC227E85D966FBB1 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h"; sourceTree = ""; }; - 086DB6599BB162ABD38B5AEB95882764 /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; - 087801A5A9FE6072B50ED7A36EB6AE22 /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/internal/cleanup.h; sourceTree = ""; }; - 08826C4F17DBFC87C91473CD784B7C3B /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 088A255CE2DA1845596A10B881EC420C /* quic_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h"; sourceTree = ""; }; - 08963ADDE2AE3E2235C5A6607F406B90 /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; - 0898ED168E15D876AA016D35B9DFCA50 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 0899E2B58A674DAB56775D7694EF648C /* windows_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_listener.cc; path = src/core/lib/event_engine/windows/windows_listener.cc; sourceTree = ""; }; - 08BBBCDDB9393F9A5A5A3D189CEADC6C /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; - 08CE8E4B2CDF664E40FF245F34E0F716 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/kyber/internal.h; sourceTree = ""; }; - 08D388313978ED744D2E082958155869 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; - 08EBDA96DA369EE4103C68DBD8044A6E /* datadog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = datadog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c"; sourceTree = ""; }; - 08F0E0151DF9EFE4B81FCE1D9EE79EDD /* crc32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = third_party/zlib/crc32.c; sourceTree = ""; }; - 08F3621B950AAC05296727D2E63A0421 /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; - 090070DE996700C15DD7A9F5C306DEB2 /* per_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_cpu.h; path = src/core/lib/gprpp/per_cpu.h; sourceTree = ""; }; - 09076119632E1F3EB44F770C1DE4B9E2 /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/mini_table/extension_registry.h; sourceTree = ""; }; - 090CA4031B145C1D83FEF73AD0555C8D /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/client_channel/client_channel_channelz.h; sourceTree = ""; }; - 0910C9806A29211A8C1FA34E81BE12C3 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - 09111C960BD8C656DCF0997BE54C4353 /* endpoint_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_addresses.cc; path = src/core/resolver/endpoint_addresses.cc; sourceTree = ""; }; - 09153E8FFDCAB6274B1D2960BFAD25CE /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 09290E19AD8F9772405B032024D0B3C4 /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; - 092B924C655848B8AA5D32684C6C8321 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - 092CC3884043312D31D0F05C405B5D9B /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; - 092E015167A24CDA42213D5D1B463670 /* http_inputs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c"; sourceTree = ""; }; - 0938113CE70DC568EF7EC2A1460F7F98 /* http_uri.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c"; sourceTree = ""; }; - 09554B85B9BB9D3E4261E19A129ABA3B /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/client_channel/client_channel_factory.h; sourceTree = ""; }; - 0974B9D3EE9FD734B09C2A860E0F254B /* cidr.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cidr.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c"; sourceTree = ""; }; - 097DE915BBF1F98C914752D5920787B5 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - 098A0466AE3CD02755A5192B77DAB049 /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; - 098FFED98E690B7546A0AF161BD0A22A /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; - 099131BD6205EAB615A7671BE69045B9 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - 0995C5461F807FD7AC19145E9C1EDEF4 /* health_check_service_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_interface.h; path = include/grpcpp/health_check_service_interface.h; sourceTree = ""; }; - 099C0CEF08F297B3B967D9734AB19B3E /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/internal/cctz/include/cctz/civil_time.h; sourceTree = ""; }; - 099EA6D04599E19AAEF023AB727D3742 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; - 09A33826993A8F0420791CAFED89F4D0 /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; - 09B4E05541A4B39A93A39F97AADEC37D /* xds_override_host.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_override_host.cc; path = src/core/load_balancing/xds/xds_override_host.cc; sourceTree = ""; }; - 09D06D8382E762E2FA2876E6673AA5DD /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; - 09D2B47132EA5C267C300B0D90A7ACEB /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 09D9CC526173F5397422CB9D38B3E587 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; - 09EB730AC1BB16B0F347CFC41AD002D0 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; - 09EC93B3118B646302646BC6388A9F50 /* csds.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c"; sourceTree = ""; }; - 09F77B2DA4578E3D0D1AD8DA96029498 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; - 0A0B09C9C37C26D07E52119AB0197BC6 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 0A0F2D53BF2F92DE065DD815132EBE70 /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; - 0A1734B428DA8697D9A6C357B6164640 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 0A21AAA39C08633C2B854A9EC7106209 /* GDTCORMetrics+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORMetrics+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCORMetrics+GDTCCTSupport.m"; sourceTree = ""; }; - 0A28CB94C97989FDF3BA0C40138DF2E0 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; - 0A28D2B916BA8AC8431B477AFC512016 /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; - 0A302CA7B9A93072BD4474F5DE7123DE /* asm_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asm_base.h; path = src/include/openssl/asm_base.h; sourceTree = ""; }; - 0A313E554C8B7485851EB29B888EB20B /* commandlineflag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = commandlineflag.h; path = absl/flags/commandlineflag.h; sourceTree = ""; }; - 0A45E7885F645D15E7CF66CB98F47A59 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/grpc_types.h; sourceTree = ""; }; - 0A49B647A86D134EEB1FCA9AF1631FEC /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; - 0A945D5068838E5C564A9B49C219160F /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c"; sourceTree = ""; }; + 06FEA7FF178B8A88A11095A696441C2D /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + 06FEC60298DBD1A785613DDA33DE7B3F /* outlier_detection.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h"; sourceTree = ""; }; + 070628F21807BAB5446552D283A4F7B1 /* work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_queue.h; path = src/core/lib/event_engine/work_queue/work_queue.h; sourceTree = ""; }; + 0713D64C32AD22D2722656705DD4EE01 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; + 0723FBD4F83EF23F034975DA33E622F8 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + 074BB85F1C026260893779BB1306B2DE /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; + 07555685F0F689CF9D6A521B07BFD0D4 /* FIRAggregateQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateQuerySnapshot.mm; path = Firestore/Source/API/FIRAggregateQuerySnapshot.mm; sourceTree = ""; }; + 0779AEEA30863D75CC71DAEC44268D9B /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; + 0789C305D51FD5C85B9C65FB22FD91F2 /* checked.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c"; sourceTree = ""; }; + 078CB796672DFBD04616D55CA789A85A /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; + 078F18065CABDA1A78A7730B77EFB1F0 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; + 0791D00DA8FC3CA38195C68CFA9B0CC1 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + 079397EBA607A7C9F53492A82CD84A96 /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; + 0794FEBD91DC001E0AA8F89BD705EBF2 /* zipkin.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zipkin.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c"; sourceTree = ""; }; + 0794FFCC969E0426DD962A1B5076EA8E /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + 07A85BBC3AE927B528663D13A61D4C28 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; + 07B7366190E38E5731583EA2A6827B83 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; + 07C2BB980E434B24FA826BF6F0B948E9 /* FBSDKUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m; sourceTree = ""; }; + 07C36295792D3376E1E4E0591C0074A1 /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; + 07CB0EB5C4DC5A866277758CFBD1D6B7 /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; + 07CE4927E072C662D8C319089EB8F036 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/event_engine/posix_engine/lockfree_event.cc; sourceTree = ""; }; + 07D9BC018F4D3360D51D4E6E36462B22 /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; + 07EA3A15DD453FCBFFB9644E4331982B /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; + 07F3B0C67215BDB68FB0B6E83EF50AE5 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; + 07F3BEABB27B04FE0AE8E6A78645D122 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; + 07FCC7C7077CA637A86C17F5DC2566AB /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; + 0800843B7A8785A7F9098C9B4A959661 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/internal/map.h; sourceTree = ""; }; + 080A7A2AAFDAD17F9461570C72A8DE11 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; + 080C629D6C8C0F92790F6FCF487AE8E4 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; + 081E3D4DF4D923D6DFD96CD8F8CB1483 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; + 082019FAB27788E9C338BAD586E5376A /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + 082EAD88AFC803A5FAE724DBD5765836 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/internal/map.h; sourceTree = ""; }; + 0856618FBDD58D2CACDA39CFBD2D757F /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_file.cc; path = src/core/lib/gprpp/load_file.cc; sourceTree = ""; }; + 08643D34DA6B1A86CAE146CC3D02F275 /* external_prequest_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = external_prequest_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.c; sourceTree = ""; }; + 086A5A66D13D5AE795682BC53BAF5023 /* Timestamp+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Timestamp+Codable.swift"; path = "Firestore/Swift/Source/Codable/Timestamp+Codable.swift"; sourceTree = ""; }; + 086BC6C9F34775812AB3D49FA2AA2128 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + 0870200BAF1C908521FAAAB1394E5974 /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; + 087410A4248949425C73EB52A05B3F99 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + 0875BA74D2CC070F84F572325C9D606D /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; + 0882CA30A1CD1E9A42D384100A42E482 /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/service_config/service_config_impl.h; sourceTree = ""; }; + 08871EFA2D40B413423BC40507011315 /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; + 0888094FB07C9B4FF7A281BA611D8EC5 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + 08978A04CA1B8CC0C90F4CA36A596A14 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; + 08A5874ABBEA879E35596C057661A097 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 08C29E7B06DAD03611A9B5551FE64F57 /* FBSDKDeviceUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDeviceUtilities.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.h; sourceTree = ""; }; + 08D64B85345F2804481139E4A30B70DE /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; + 08D9602C0EC12C594ED9982B5DFDC241 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + 08DBBFAF8A8B580E237407FC34F323F9 /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; + 08E2BFE18FA1334EEF31D049B919F49B /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + 08F1646845685321FB671FDDBA053271 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; + 08F4AAA7ACF0C3E894733732CC69F28C /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + 0916786A4A00DBE3CD88942D6B1BD9E3 /* xds_server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_builder.cc; path = src/cpp/server/xds_server_builder.cc; sourceTree = ""; }; + 0932867096C96EA736F1FD493CCDBE20 /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; + 093C286BA529C3B2D206C3305F3176E7 /* client_channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_filter.h; path = src/core/client_channel/client_channel_filter.h; sourceTree = ""; }; + 09404067048E95D78F1CF6F0DB77810B /* rbac.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c"; sourceTree = ""; }; + 0945D6920CB844DAE0B3CE5380CE625B /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 094C62316873FC622AA5632EF5EF1C33 /* FIRCLSNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNotificationManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.m; sourceTree = ""; }; + 096BB01ABB896814D52C6F5BC83130BA /* FBSDKBridgeAPIProtocolWebV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m; sourceTree = ""; }; + 09733CFBCE6B0C53A6BC20CB2F08BB61 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + 098F61988714CCF7A406E19E34651607 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; + 0990C0AAB5D5A87B9297E4CDDD4BFA74 /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; + 099F6BC1C79B0EF25DBF8F7DE2D03C0C /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; + 09A6A35572805CD3C1AC86BF8DBBA663 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + 09B222784EA4356E4D90C9D3A744E201 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; + 09BD709C9D89BADE736CD13E38E9B202 /* program_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = program_name.h; path = absl/flags/internal/program_name.h; sourceTree = ""; }; + 09C6C3C2B82B1D3BB5527F2DE5CF7E69 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/types.h; sourceTree = ""; }; + 09C8B65737B083563A8EB47277DDC3A0 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; + 09CEAC7A12A566870596376A41EB9BA1 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + 09D2EF6010861F943A00AE4A3CA29EDF /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; + 09DA971D368C899A08884B7857A9F4BD /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; + 09DC7FD0B3181D76D3FBF8B3F33AFC21 /* stateful_session.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h"; sourceTree = ""; }; + 09F346D33E1CF722141FAD88CD734490 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; + 0A0C77B3BC55CFBEDB43C42E609E998A /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; + 0A1FA172CE9C96E7B42215E937C519C1 /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; + 0A26E80EE65EB95E6CE963FD13B682D6 /* status_code_input.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h"; sourceTree = ""; }; + 0A3082970023B67755D1F6335C9F89F6 /* FBSDKAppLinkUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.m; sourceTree = ""; }; + 0A3751278E236B50A94718C8C9E6A2C6 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; + 0A38E4E4386BE64FAA131A603EA677F4 /* grpc_polled_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_posix.h; path = src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h; sourceTree = ""; }; + 0A40DF2D241257CAC8755B4C90B1A3C9 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; + 0A43566E430A5E0FC3DF8FA3A66A0E75 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; + 0A527C888D027A7779DE0C03669E1A28 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; + 0A6261A2A7FD7344535AF743BD099A7E /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; + 0A647CA763FFA2B34F759A02B5489C29 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + 0A732F06ACE72B8D272FF4447BE8C003 /* FBSDKWebDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialog.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h; sourceTree = ""; }; + 0A852FC925D37F3688616E3948059B96 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 0A8546B4FF71CD2FB24AEF5EF3D857A1 /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; + 0A8D35CC0DAA5C5FF621AB2E9E2DA94A /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; + 0A8F6FDDECDB9D3A3F599F72F483A816 /* cord_rep_consume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_consume.h; path = absl/strings/internal/cord_rep_consume.h; sourceTree = ""; }; 0A9F46A999C47653013D3AD854352507 /* leveldb-library */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "leveldb-library"; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0AA008321352369CD72CB38BD9B2F615 /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; - 0ACBAE3969A3D1702571ECB0997BBDD3 /* cordz_update_tracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_tracker.h; path = absl/strings/internal/cordz_update_tracker.h; sourceTree = ""; }; - 0ACE7D7EE5380B0CE7E7A4145AE9F835 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/internal/message.h; sourceTree = ""; }; - 0AD4F04D238507DFF08B7B8D55C90495 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; - 0ADA180427FB7D5383013AD295C67B29 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; - 0ADAA5E1DB8979E4E6CA66F67FA5522E /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 0ADAC606EFAC8D5E37E9F4E04EF9B9E6 /* client_side_weighted_round_robin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h"; sourceTree = ""; }; - 0ADE2BC0622143B625017F10281E650D /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - 0AE0DE861DF52CAF2D542DA106A58B2B /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 0AE27C04E5F166C6FAF19E2EED81FCEE /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; - 0AE2B3B268D379DA5B4901FFDFECFF98 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 0AEA2570C6BC58EE3356FF9BF456CCD3 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/event_engine_shims/tcp_client.h; sourceTree = ""; }; - 0AEB47476D6739933706D19F54B13B14 /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; - 0AF0E66BBD1E346CABB54F502EBDAF0D /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; - 0AF7CF301381F42935D77DF371945126 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; + 0AC24528FFFFD76AA1DAB8B44063A318 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + 0AC2856287BA14533C0D09246BE5E13C /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 0AD9A6056D90271F56DD318B0D00DA04 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_impl.cc; path = src/core/load_balancing/xds/xds_cluster_impl.cc; sourceTree = ""; }; + 0AF566D5DDB62353754EAD6540E30104 /* FBSDKSettings+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKSettings+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h"; sourceTree = ""; }; 0AF8E4BAA80F7C57136E678EB8812869 /* Pods-SwiftProject-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftProject-acknowledgements.markdown"; sourceTree = ""; }; - 0AF987CCE5DF3B9E77B95A2CC9F8190A /* status_code_input.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h"; sourceTree = ""; }; - 0B001E53E4565B9763550A130311C6FE /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 0B119840CC46079B9BA98201563EBE9A /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; - 0B1397FDEB9E99FC0145AC9B5F9D9A6F /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; - 0B24A607DDF42AA6CA67CC881C27CCB8 /* ip.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h"; sourceTree = ""; }; - 0B2A3E1DE6A6C6484290A0143D13B0CC /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.h; sourceTree = ""; }; - 0B2D06608DAB75BCC9E7327208BF82C8 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/linux/log.cc; sourceTree = ""; }; - 0B2FEDD07D606A83E9F4989AFF5D7AF5 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 0B313D9447AEDA32DF3046A1B58B70DD /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; - 0B352AC3FE796521C810E9BAC8E3D72A /* stateful_session_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stateful_session_filter.cc; path = src/core/ext/filters/stateful_session/stateful_session_filter.cc; sourceTree = ""; }; - 0B3560D7B9BD5D649FC5A38540D2B355 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; - 0B38BEED8453B3D1D6CD513591741ECE /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; - 0B3A5211D60DAEF9CF488FB14FFEBE98 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 0B3D7D42BF26F1735C773557890D19E1 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 0B3DD7C7E54915E343500C840A02357B /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-gen/google/api/annotations.upb.h"; sourceTree = ""; }; - 0B42087EE8D983859D449C4459473459 /* xds_dependency_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_dependency_manager.h; path = src/core/resolver/xds/xds_dependency_manager.h; sourceTree = ""; }; - 0B4216FAB27FDA8EE029FC7B688C1E78 /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 0B4623E4C9A818AE076636BC7A739BC3 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; - 0B49D5BF2689AA79CCA11197251F02A7 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; - 0B55289F2CF8DECFA78C7DC277C6037A /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; - 0B620670449037DA21DF772D39887CCD /* ip.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ip.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c"; sourceTree = ""; }; - 0B6367F69FF137D0BA2B9596DB19F65F /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 0B64D6CCF053B26FC0F13B47C3D90D6E /* trace_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb_minitable.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h"; sourceTree = ""; }; - 0B66DD403FC65637B4E716868ACB1AB6 /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; - 0B6D0DFF352114DC0B0C28ACF2CDBDE9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; - 0B7117987C3863B46F851DDF3338A549 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 0B77EE8EC537CF92368A0C8259F4AB14 /* FIRGetRecaptchaConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.m; sourceTree = ""; }; - 0B7BE4B4857772FA18756795751DC047 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; - 0B7BE8566AC11DF6D7B38EFA8F00727E /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; - 0B898F81F9210A5FA081080224D4CF62 /* create_channel_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_binder.h; path = include/grpcpp/create_channel_binder.h; sourceTree = ""; }; - 0B8CE1529C4456333FB8B36FD579A836 /* resource_name.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c"; sourceTree = ""; }; - 0B9F2C90A1C8D2544885FCDDD5A9E983 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; - 0BB865A089A34BB2888E578607D9E23A /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; - 0BD7E9F7E3A6FC2AA6B99DB0E82F1235 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; - 0BD80AECE2768DD33F95C107DDCA7735 /* http_inputs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c"; sourceTree = ""; }; - 0BD950FAD8F0D263C2C406F9D6C33F19 /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; - 0BE6B6E7F74397D01C1B8FC6011863D7 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/service_def.h; sourceTree = ""; }; - 0BE9B05DBD8A4539A515176D6B1A5D2D /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - 0BF87E2A124B4C02629642779542A621 /* http_protocol_options.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h"; sourceTree = ""; }; - 0BFD21C400BB819BE1699D2771B54F29 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/internal/message.h; sourceTree = ""; }; - 0C0838D32D479807FC6AD1C9657D95E4 /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; - 0C188F1FC7F893BE29E808705979B0DA /* FIRSnapshotListenOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotListenOptions.mm; path = Firestore/Source/API/FIRSnapshotListenOptions.mm; sourceTree = ""; }; - 0C18A68E03D4AA4475A83A3BCC97E6AC /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; - 0C291FC84528379E7852C6C24EBA3DF7 /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; - 0C2E1019859884E9A90C5D1E1A9830BF /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; - 0C361D814E63B6CBD81262A11CCB1AE4 /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; - 0C3F31D792AE9EF1B188F5AA953C0129 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - 0C52B5ED240BFB3FE8155AE49EBD634F /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; - 0C6C3A93D680AB8D69959687EE085AFB /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; - 0C70A263737E1A59BDFB3C1017878AD7 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; - 0C746E015A41906E90F5B10E1C429FD9 /* BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; - 0C7F7733291D4F627015FB23CBDB6C9A /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; - 0C9A8A063C81EBBBB51D08FE446233DE /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; - 0CA0F55FF86A7BF6B3BF76BA41D52D20 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; - 0CBA11C0248442186E1BAEFE620031E8 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 0CBCBFFFC18F4E16AC2E307D6120E66A /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - 0CC1BF7B078CCD5684AFE755A76E6E9F /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; - 0CC565DA76B1E24393702467C8724253 /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; - 0CD42756D0076D1756688126CD04DB49 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; - 0CE394902CF7DE17D6A106550A137727 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 0CE9BC90653F3F4444B32114B5B447DD /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; - 0CEEB958A67B6C896ADC0152A69919BA /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; - 0CF79A388D5035E2FCC4AB44D22F5538 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoEditedPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZVideoEditedPreviewController.m; sourceTree = ""; }; - 0D05DD544BF5B2E3C73B877612718667 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; - 0D066023D2E48D2DBF2EF91F6A75BF5D /* stl_type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_type_traits.h; path = absl/strings/internal/stl_type_traits.h; sourceTree = ""; }; - 0D096C76DEA842A5178132ED27BB4C66 /* spx_util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spx_util.c; path = src/crypto/spx/spx_util.c; sourceTree = ""; }; - 0D13550205E15058E4DE74180B3B2D10 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; - 0D181C7F23811FCF1C5442D013333797 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; - 0D217E30D783D35B10140D8E05326AE9 /* traced_buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = traced_buffer_list.cc; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.cc; sourceTree = ""; }; - 0D489ECA0805BF5012D5FEA74519D8BD /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; - 0D4D232A2968EEE702024D4C23948F5B /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/load_balancing/child_policy_handler.h; sourceTree = ""; }; - 0D4F5FD51C35F382DBA3015D89439EB1 /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hkdf.c; path = src/crypto/fipsmodule/hkdf/hkdf.c; sourceTree = ""; }; - 0D54507454E4AB8DA1C5F04257DF4D29 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; - 0D5C0E1F300C98339255F16D2691C5E8 /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; - 0D6A34CD13FC3C3E265C0BBF9EA901EA /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - 0D774D80C3335CD24F30437981A52216 /* str_split_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split_internal.h; path = absl/strings/internal/str_split_internal.h; sourceTree = ""; }; - 0D7D576FB8333691D612AE6C44301383 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 0D872153303F70A539B3141A65F809EB /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - 0D8DDC6ADDE85529A704DCE0D09B78B7 /* domain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = domain.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c"; sourceTree = ""; }; - 0D929B74670417117816775AE3D5FED0 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; - 0D9B35337F1B89D45318593502C37E42 /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; - 0D9F2B8A4E863C351E9BE537D8D1248C /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; - 0DA67406F8B702773925514F4A8C57D4 /* transport_security_common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h"; sourceTree = ""; }; - 0DC4A124958BCEDBCFCD645B12861244 /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; - 0DE606DF9650A210E082386156CD77DE /* base.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c"; sourceTree = ""; }; - 0DF67E4AE127859CF553A38A70492371 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 0E27B39B4166399076D7A0E6EEF6BBE8 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; - 0E3E70BCE8675834C96B69DFEDB90FDB /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; - 0E4567D5E4DBFECB694CD4210682E4DD /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; - 0E4583F2C88D06EE6A22441FDDEC55EE /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb.h"; sourceTree = ""; }; - 0E574C58E4F00B56C54201264F16613D /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; - 0E6243618FC9FA43A543AA048CD82599 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; - 0E6EB9757ECA09D6BE4334A772838830 /* socket_option.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c"; sourceTree = ""; }; - 0E72B29F1F832B0D659B4B5FD1C74931 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; - 0E93D3531328F505831C0E03413691DF /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; - 0E9957E7F6B48425ECF537BFC69F290A /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; - 0EB9CA7A8931FB99B91B6DFAD92945D9 /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; - 0EBA2B9F4F74265B03863B0C37A82E89 /* dns_resolver_ares.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_ares.h; path = src/core/resolver/dns/c_ares/dns_resolver_ares.h; sourceTree = ""; }; - 0EC606A342A15B28747379F2203F7F63 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 0ED1044B5302231CCA6BAF17446E983E /* FIRCLSMetricKitManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMetricKitManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.m; sourceTree = ""; }; - 0ED24819D3FB222CF74E0E36CA78DB30 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; - 0EE1AE95FD0C137A7D3EC108C64356A6 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 0EF0183ABC76B3DFAE0C0FBC525D8D63 /* http_tracer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h"; sourceTree = ""; }; - 0F1E23138C1A71278D613E56741F6BB1 /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; - 0F1F29CB20CD9B566E2986860C0324B5 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; - 0F333B33159592FDEF1F70E36E6EF046 /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; - 0F46733F958B8B39D38ACCC7EC2EC6B0 /* xds_resolver_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver_trace.cc; path = src/core/resolver/xds/xds_resolver_trace.cc; sourceTree = ""; }; - 0F523359C41E1C07D6179CC4E8BB7A24 /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; - 0F6A42A75B68E6E98CBFF5A4F7910F40 /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; - 0F75CA164232BCBFBE691D719C844C71 /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; - 0F77051EAFE649737E970C9B94FD25A9 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - 0F79E989E9A0D03C4BB9C2E4F21DEE8E /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - 0F98D6FAA3EC9E475EFC468D2FBD92F9 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; - 0FA06F8A3FD7D84E0072502B013B5BC4 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 0FA6EA95FF44E5D9A68FD8F1697549BF /* pick_first.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pick_first.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c"; sourceTree = ""; }; - 0FA7519495428D68EC4F1B92ADD4D282 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/windows/log.cc; sourceTree = ""; }; - 0FA959C1913C798B5586AE5184120F76 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; - 0FAB60A59725870433FF8E96CADA4BA4 /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; - 0FABEC692EDFA2ED841001DCCE3D73F5 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; - 0FAF35A0F7ACB65698F2BCECC8606366 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 0FB1FD9E212279AB3586C3F95DDD79D8 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; - 0FB6C5FBE2A9DB288ACF02B4F674777F /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; - 0FC6F9D9D23B71934FA25CE865E0B398 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - 0FC768C834722F0E5BD1BEEB6AAD4048 /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; - 0FCFD4B40596A911A42BBCFAE924D5C4 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; - 0FD0A0DCF8D27B542EC7486900DDE3AB /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; - 0FDC1232A2D98993DFD0908A337C8618 /* stateful_session.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h"; sourceTree = ""; }; - 0FE4641BF4344C84E8ED7B4EC587B38D /* xds_health_status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_health_status.h; path = src/core/ext/xds/xds_health_status.h; sourceTree = ""; }; - 0FEB9101EAC44FFBCE4F59F48B1BFF34 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/resolver/resolver_factory.h; sourceTree = ""; }; - 0FF8BDC798418893DD108CFEBCFB9FB6 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; - 100022F75B7CE259D3DF2518920E1133 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - 100594D887CEFD33F8497D35AD1F7095 /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; - 100E819F57446283DA2902C234B9B5F5 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; - 101479E2ECE319C568F741D16D6621AB /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - 101757169B31195CC466EA9AC900B4DA /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; - 101A67AFBAA99A5626FFE6E69F491C95 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 1023F15393C24C162D81295DAFCEC79D /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 10393B6C69B9D3EA52075E94574EF86E /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; - 104923947A2F0862D3AE3029F8995CC6 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; - 1056B0418B7716ED8930702D39AC56F2 /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_filters.cc; path = src/core/client_channel/dynamic_filters.cc; sourceTree = ""; }; - 105A4DAB33F487045ACE6D834A5A73F4 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; - 105DB998E777092AE75D0378C60FF747 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 106AF318A52081DC5AF3426EDBC022EE /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - 1088A96FA2026B7A2E492D18AB5CE10F /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - 1092CCBADED9F1381639D4CA0F8DF203 /* curve25519_64_adx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64_adx.h; path = src/third_party/fiat/curve25519_64_adx.h; sourceTree = ""; }; - 109A85439F51F56834D8F41DD599332A /* posix_engine_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.h; sourceTree = ""; }; - 10A6CAAE1A2B8DADC9FF51F6FA44F56A /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; - 10B177ED0E555FD5E96EB59C8AF09685 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - 10BC9CBD2D974C970CCF9EEB674C6621 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 10C5F5161ACB4A1A67563B7F629C0BD3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 10D6DFE5835AEF491ABE20DFD7E5043F /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; - 10F2260ABEFDC55F02F7C7DE3A622929 /* token_bucket.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = token_bucket.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c"; sourceTree = ""; }; - 10F8DAB13CE3C5A3C5CC3C2E67BA876D /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; - 11000792191C163AACE3D6FEF1D5409E /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; - 111FB7A06FC40B80A398D08F4225ED85 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - 1120696D43B3ABE7671A077E39486C4F /* retry_filter_legacy_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter_legacy_call_data.h; path = src/core/client_channel/retry_filter_legacy_call_data.h; sourceTree = ""; }; - 112E8D59287846D2D045996244F98F00 /* message_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message_def.c; path = third_party/upb/upb/reflection/message_def.c; sourceTree = ""; }; - 113EAD460563D7BF492D20F34ADD6A4F /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; - 114CA7DC135987BBED7D35D169CF295C /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; - 11628222CA65B5A9B66312991892892C /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; - 1173D073CA7A8B25548500878CB9F98B /* vsock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsock.h; path = src/core/lib/iomgr/vsock.h; sourceTree = ""; }; - 118CAE82C2AA524CCA0D737BB8A3E5BD /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/client_channel/retry_service_config.h; sourceTree = ""; }; - 11A3E6FDA466ED1263CC76825612963E /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; - 11B1649E2296FBED0FA6DC432EE5ECED /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; - 11B5BAE8A47EEC1A5FA1255BEB0A6095 /* endpoint_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c"; sourceTree = ""; }; - 11B89B6FB3D51204C9D6C4FF1EA5EFC4 /* sem_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sem_waiter.h; path = absl/synchronization/internal/sem_waiter.h; sourceTree = ""; }; - 11C165064FE5BCF50FB33BE7A9AD15CE /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; - 11CB9A41AF61BF16424BBB49CF6088D2 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; - 11D884C5571A3355708F36E38B7001CE /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; - 11DC1D4A743AD64095781E01AB63C969 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; - 11EC6DD53D771CF3D99C9ED1E4E0BEA1 /* base92.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base92.h; path = third_party/upb/upb/mini_descriptor/internal/base92.h; sourceTree = ""; }; - 11F129EEA5B95F1089E22724A844120E /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; - 120F43501F7BFDEDB977C4B4E09EDCA0 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 12269A09350B211D1D4ACB44062055C5 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - 1232E14C1DA296B1CD500BB8DE10CB3B /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; - 123E43608EE4BE7216BE06D62F4286BE /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; - 1243035B194E2ACABC9418D979EFDEA0 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - 1243B069E9AF35E0597E947D50C7BD3B /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; - 124DA91942EC9EDED9C0E35980E7D45D /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; - 1254238D650F1DFC2070AAE152983E0F /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h"; sourceTree = ""; }; - 1272E348F9989322B0AB5CF2D3118F58 /* health.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h"; sourceTree = ""; }; - 127CD2C8CD55BFF848053AAFEFAC293E /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; - 1284348E0CEC03C1422D58F7BA2B7769 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; - 128460CA611D9E3076AA2B9EA1183A43 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FirebaseCrashlytics.h; sourceTree = ""; }; - 12925203A80D75968B81E4348237931A /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - 12A96A7A5F39BA73F934F9A4AC086BDD /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; - 12BB5FAED5500705BF3C0B81985A0170 /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; - 12C35711351F8AA1E6F10B6B53BEA400 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 12D31495032003E349AA7A8542626E7D /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; - 12DAABAF4A6BA8C7B3202093E04F4BB9 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; - 12DB919E4D466E111F24A3D9EF9E6F96 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 12E91E422946C0FCF267D3EE67345EE4 /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; - 12F42287787F17374CCDD6B4BFA0EAD7 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 12F6B7C45410CCE61F9538B3CDB22A16 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 134840C7D0D0603AAEAA49C588652098 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; - 134CB4CDAA98768B33C5872A9E382FC5 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; - 1362F7BB2A665F6B18960BC249A46CA9 /* endpoint.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c"; sourceTree = ""; }; - 1368D545D017CFF0877FB7C2A4E61046 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; - 1370B72B38F87CDBD732E9B537B8D924 /* version_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_info.h; path = include/grpcpp/version_info.h; sourceTree = ""; }; - 1380AA16327674A6052213645AD3F597 /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; - 138D056671F7E47D9307578D174AF8D9 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; - 13A3B15F514200A0C3103B20DBDDEFAA /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 13B2086CC068F04B86888304FFD8C8D2 /* modifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modifiers.h; path = third_party/upb/upb/mini_descriptor/internal/modifiers.h; sourceTree = ""; }; - 13BF653CA99AF258533B810C145002EF /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + 0B357348F71BB96D036787B0CA9A7C6E /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h"; sourceTree = ""; }; + 0B3CD1916A62698F42E599AADD2B6420 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/event_engine/time_util.cc; sourceTree = ""; }; + 0B416B424358ADF3EC14EF8DAD967FF3 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; + 0B41FCAF938923D43BD3A18D4EAA8F04 /* FBSDKCodelessIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCodelessIndexer.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.h; sourceTree = ""; }; + 0B4256026AE661461F8FCE4EC3AC452A /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + 0B4A31B54E889A01506F338FB81CC418 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; + 0B4BA63EED2066F4ADEB613BAD04F451 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h"; sourceTree = ""; }; + 0B5616DB7BEC0209E168191F37232509 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; + 0B68FF2A3EE2D5DB49BF440A2B652756 /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/internal/enum.h; sourceTree = ""; }; + 0B78CC3D88493EFE53F69EE7580A9AD3 /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + 0B7C89F9AB4FFDC74F0A16AD96EA8944 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; + 0B95EEBA957689BB36B8763199751CC8 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; + 0BA1E67A1A91B66894158D743FB96ABA /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; + 0BB1FA18A73BB796461DC97E8B339262 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 0BB91C4A10711E66692E483AB45ACFC2 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; + 0BBA631369950E57896D456AD4A5063D /* wait_for_cq_end_op.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wait_for_cq_end_op.h; path = src/core/lib/surface/wait_for_cq_end_op.h; sourceTree = ""; }; + 0BC3128D17F79518C0A5A402E04E1505 /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; + 0BC9772CF41467F7EAAD3F200EDD61D6 /* FBSDKApplicationDelegate+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKApplicationDelegate+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h"; sourceTree = ""; }; + 0BCBCEC5C35BAFD39E4B214DEE6AA053 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; + 0BD2AE59D6BF823B584232A6C61B6B21 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + 0BD3406AC63C6D10A900373C56543E0D /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_load_reporting_filter.cc; path = src/core/load_balancing/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; + 0BF145C39D60187BF9ED0E515B896E63 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; + 0BF3A557EECAF2C677B99BC48F6ACEBA /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; + 0BFC564CFBC92108450742085B686B61 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; + 0C00735DA9F93773B0AD015A5AEED079 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; + 0C01B76116B510E6C490BBFE5C04C821 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; + 0C099D1AB937AA8514F2A9D8FFAC0DB9 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + 0C0B9C58AA139C58848CED034BA6E70F /* FBSDKTestUsersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTestUsersManager.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m; sourceTree = ""; }; + 0C10F4CDDB413D39ADF8735627DBA040 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; + 0C1717B1A0762C628B47EF08AD76905D /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; + 0C29DE4074E45FAF3B5AB542F47D685C /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 0C34EA1D81D6DE38C6958049B259E303 /* binder_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_connector.h; path = src/core/ext/transport/binder/client/binder_connector.h; sourceTree = ""; }; + 0C41FC07D0D3680BC098353E9DE13FF6 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; + 0C49BA4BB057EC9D7DB05389C53D1989 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + 0C4D6DE797B2BF05AA19830747A36DD6 /* FBSDKServerConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfiguration+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h"; sourceTree = ""; }; + 0C4DE270129B2C26EB06A0F9B494EC8B /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/event_engine/resolved_address_internal.h; sourceTree = ""; }; + 0C50900FD7E10829D821A91ED3E138E1 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; + 0C52C6A72FEBC2234400F08A210758FD /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; + 0C52EBB77107C904928C6E232A8CF712 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h"; sourceTree = ""; }; + 0C5C2E71FF7D53BCE90ADD445D9C65BB /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; + 0C78E33D9A251E589F5E29C8A5A7F434 /* aggregation_result.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregation_result.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/aggregation_result.nanopb.cc; sourceTree = ""; }; + 0C8049BBEFC9A8504DDF1314F93E113B /* FacebookCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FacebookCore.modulemap; sourceTree = ""; }; + 0C866A4CC4234EA4DDC705F9D1BDEBAC /* cpu_intel.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_intel.c; path = src/crypto/cpu_intel.c; sourceTree = ""; }; + 0CA8718105C90B05F0517949C8D67307 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; + 0CAE1B99C47B446E437B4ECE4BAE9322 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; + 0CB09FF3E70764F8126931155D4CEAD9 /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; + 0CC3B3DEFEDE3CA46FAC99CC3D008836 /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; + 0CC5E51E7A7A4CD4B849A753885E9232 /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; + 0CD2CDA31DA917C318FAD3AFCFAD4BBA /* http_connection_manager.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h"; sourceTree = ""; }; + 0CDF271F589C13E41B536104E3B9238E /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; + 0CF4D720930238207C2311F547ECDDA7 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; + 0CF8CB945BD7CC1326CF34340A5FF143 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h"; sourceTree = ""; }; + 0CFE927F35A5C87FF61F1ABCA11163C9 /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; + 0CFF2B3163468687D581384FFFD48556 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine_shims/endpoint.h; sourceTree = ""; }; + 0CFF749DB4528B80CF31FA89FF70CDD8 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; + 0D0216114A85FCABB47BF9B606F49ACE /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; + 0D07B9955C7F3AE46172CF3D70965509 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; + 0D22FDB0C0023582240F12DDA0593E4B /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; + 0D2E8ECF7FFEE574225C040DCE0A5674 /* waiter_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter_base.h; path = absl/synchronization/internal/waiter_base.h; sourceTree = ""; }; + 0D4A893484B3AD0B33F9B1CE93E6AAAD /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; + 0D4DABD733F73E62877959F7BE5000C2 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; + 0D585D0EAD8841546ABF0FEFEA074697 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509/ext_dat.h; sourceTree = ""; }; + 0D5AFE3F4CCD7E2F5A2800C7B37D9064 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; + 0D5CA94BA106765187BA86131B3EEDE4 /* http_inputs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c"; sourceTree = ""; }; + 0D6CAB970C9DC37128721F86BB1B9563 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; + 0D7F3939B262DEA091AC55CC78E885BF /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; + 0D893D71B01D389D520E3D9B84C5CCC2 /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; + 0D93AE3E59D5D107E22F0CB1D0717136 /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; + 0D9756B83E5ECB19C3847A89C98EE2F8 /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool/thread_pool.h; sourceTree = ""; }; + 0DA3338F7D53A25F261A8E80DBEAA469 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; + 0DA5F7FD8E5596AFAF5318EF88E9AC72 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/client_channel/connector.h; sourceTree = ""; }; + 0DA86331CC1FAA82147BD250E452108E /* ios.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ios.c; path = src/crypto/rand_extra/ios.c; sourceTree = ""; }; + 0DB0FE973BA81AE5F85B7841EB3CC311 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h"; sourceTree = ""; }; + 0DB7202B179C24FD7524B351977B7318 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + 0DC91953CFF5EF58D7F5016A05B1D058 /* ExplicitNull.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExplicitNull.swift; path = Firestore/Swift/Source/Codable/ExplicitNull.swift; sourceTree = ""; }; + 0DD459C300317BA3965A38D000BCE2E8 /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; + 0DE0FD018447CBDEFF6E6B3A71FA5FBA /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; + 0DE9D0F3000E7273C3DF87C95C5BF979 /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; + 0DFE4ED0F81040108281D5127F4AF90C /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_pipe.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc; sourceTree = ""; }; + 0E0030BBFFA5934BD1BE7CD46D713AB0 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; + 0E10FF0A835D1B99FF5561E6F60FA33F /* FBSDKSmartDeviceDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSmartDeviceDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.h; sourceTree = ""; }; + 0E1611598938EB336369AA9EA8AB9C1F /* flag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = flag.cc; path = absl/flags/internal/flag.cc; sourceTree = ""; }; + 0E2663E5418B01B989DFED1D63445C0E /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = src/core/lib/transport/message.cc; sourceTree = ""; }; + 0E3199D3B88E8031FF5FE85F634895DF /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; + 0E31FA4A344C046C5CD400764D7715B7 /* number.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c"; sourceTree = ""; }; + 0E32844A89AA23B4FFD608C8EB51CC1D /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = third_party/upb/upb/lex/strtod.h; sourceTree = ""; }; + 0E3931ACD0B4A6217B458E3390D8FD14 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 0E395AA2226A7BDD9C91EF73D2D4FA29 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; + 0E3CCC92FBBF1845C38E35411C4FB340 /* crc_memcpy_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_memcpy_fallback.cc; path = absl/crc/internal/crc_memcpy_fallback.cc; sourceTree = ""; }; + 0E40BFA7922946911BEC25489A98C1B4 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; + 0E5548B5101F4F7803619F4600483219 /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h"; sourceTree = ""; }; + 0E5D66C8153A679B6AA9C2132E3018C0 /* ares_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ares_resolver.h; path = src/core/lib/event_engine/ares_resolver.h; sourceTree = ""; }; + 0E679960620D4A62D4A68C12757D7192 /* posix_engine_listener_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener_utils.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h; sourceTree = ""; }; + 0E7391A711BF5EE39FE9662D4D6E8385 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 0E7DC2695C770255A666E9C087CF20E0 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; + 0E9BDEF4930D2DD88F5310554C707810 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; + 0EA07D9F1927D34FFE020272294E640F /* enum_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_def.c; path = third_party/upb/upb/reflection/enum_def.c; sourceTree = ""; }; + 0EAF10CDF3F1143EA6CC4CA03ABD6AC8 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; + 0EB6D677DFCFB0550A7BCF43590B754C /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; + 0EBB0BA03043BED364A821F5FDA49F1C /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; + 0EC45B37CD9844D5B79D918083CEFA81 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; + 0EDDD75DE2095EF065CF21179DEEE57C /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; + 0EE042D45A52BDD76218D07D2D1E92EB /* ring_hash.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ring_hash.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c"; sourceTree = ""; }; + 0EE05ACD2ABE8DAD6F089116A3D5EB45 /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; + 0F00E229C8D966E7E8D72E079B505B8A /* posix_engine_closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_closure.h; path = src/core/lib/event_engine/posix_engine/posix_engine_closure.h; sourceTree = ""; }; + 0F025B14AA290ADF9F297FC8E9A87342 /* cookie.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c"; sourceTree = ""; }; + 0F09A7649D85B2D06EE1F22080019EE7 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; + 0F0D1D32CD1BE756C90D331095CC43DC /* legacy_inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_inproc_transport.cc; path = src/core/ext/transport/inproc/legacy_inproc_transport.cc; sourceTree = ""; }; + 0F115787DFB56D12775E614EA8B610A7 /* FirebaseCoreExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.release.xcconfig; sourceTree = ""; }; + 0F12E27AB1A78246C44D05127349E572 /* FirebaseSessions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSessions.release.xcconfig; sourceTree = ""; }; + 0F16FA970EA0602D07C67913753FC16B /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; + 0F215FE883635A12ABA63856C95AC034 /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; + 0F2AA7F598F51E25AE2913C4F2F3C100 /* windows_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_endpoint.h; path = src/core/lib/event_engine/windows/windows_endpoint.h; sourceTree = ""; }; + 0F3C2B4C0002A7745C68ABAE296BD410 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; + 0F42CD9B72A26EC7DFCE91DAFEE5F467 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + 0F450728216B10BD7F908C6F56EE37D0 /* strdup2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strdup2.h; path = third_party/upb/upb/reflection/internal/strdup2.h; sourceTree = ""; }; + 0F503304A40BA8FD30CBE48F3E360711 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/event_engine/posix_engine/internal_errqueue.h; sourceTree = ""; }; + 0F5E214925B612BF55D26D57161EC733 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; + 0F797F45D2C98D4B1C3D9ACB2889A07A /* CodableErrors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableErrors.swift; path = Firestore/Swift/Source/Codable/CodableErrors.swift; sourceTree = ""; }; + 0F7E164C552CE8C0736461BA6B3F0993 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/extension.h; sourceTree = ""; }; + 0F7EC3D67D7BC7E2DFA3DB674E04CE61 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h"; sourceTree = ""; }; + 0FA45BFDED6E375B5E976AD08E9C2851 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; + 0FBE015D20DB562567D4D68C7E968A05 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; + 0FC54031493F4049DE6E36710047E4A4 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; + 0FCD700738636B115CA0D7CF514F0ED3 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; + 0FDC749E0C27F8E60FA340E6075D096B /* http_inputs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c"; sourceTree = ""; }; + 0FF7C5A8949EAB89F02EBEF5A7AD2E9A /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; + 0FFBE7667C235F530A22443BEBE9C179 /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; + 0FFCC30F1E3483D75E191CD8CBDF551F /* if_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if_list.h; path = src/core/lib/gprpp/if_list.h; sourceTree = ""; }; + 0FFFBF4DD113DB1D896FB623D1E9641F /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; + 1006D76906D7639477E1059E37DD66FA /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; + 10134D4F6AC4272FA5FE052645E14679 /* pthread_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pthread_waiter.h; path = absl/synchronization/internal/pthread_waiter.h; sourceTree = ""; }; + 1016E6E1748E459E95FAB3CD0976C099 /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; + 1025EFA1A3EAF2EBD76BEC609F17AFE8 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = absl/crc/crc32c.cc; sourceTree = ""; }; + 1029805654EDC455D1FBA85737C1FCBB /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/resolver/resolver_registry.h; sourceTree = ""; }; + 102ECAEEBE642B8AC95EAF77B423593C /* seed_gen_exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_gen_exception.h; path = absl/random/seed_gen_exception.h; sourceTree = ""; }; + 102FBDCB199D7C551CEEAC518C5532BB /* strdup2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strdup2.h; path = third_party/upb/upb/reflection/internal/strdup2.h; sourceTree = ""; }; + 10353F3E64A8944D8776E8F14D7EFC94 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/codegen/call_op_set_interface.h; sourceTree = ""; }; + 10385F0BE97FDBD9CCEA5F03BE1196B1 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; + 103A16559839A4675EDCCF7E758E83F7 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; + 104F8040DF8D71855263CA6F905F6F68 /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; + 105588DC056AD6DBE5A6CE5C456822AC /* matcher.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c"; sourceTree = ""; }; + 10597EB799C4BB9EEAD093769504EEF6 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; + 10653ABEC46E494BC09C7ECC68ED4817 /* DocumentReference+ReadDecodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+ReadDecodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+ReadDecodable.swift"; sourceTree = ""; }; + 106C21C776EE495E25A1DE4839A82C8A /* domain.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h"; sourceTree = ""; }; + 10704CAE9DA45FA14433926FE1282797 /* FBSDKSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSettings.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m; sourceTree = ""; }; + 10730966B090146D7F323EE0072A5619 /* custom_tag.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h"; sourceTree = ""; }; + 1073C37B9043B745E4B6995922971EA7 /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; + 1076BC0E0EE46072E92D9C13A58B8BC0 /* filter_state.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h"; sourceTree = ""; }; + 107AA3A66F84B0DDFB40128582353EC0 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; + 107DA8B7EE6737AD27FF084AC1356A4D /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; + 1082CC9AD68CE7A582AE92688FFD4BBB /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 10A2E8AFEDF20CDB9C2B5F2E12A081F5 /* FIRCrashlyticsReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport_Private.h; path = Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h; sourceTree = ""; }; + 10B0F97002999878182339D58EF7A694 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; + 10B1F542D85CD3BB5C1F63CBA3ACC06E /* refcount.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount.c; path = src/crypto/refcount.c; sourceTree = ""; }; + 10B4FE73C174AF8519DA723520BB0C7D /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + 10C2D3F8662FAB3F53D075B5D324F23F /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; + 10C6B1753847694E523A0B03C7B3C502 /* zconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zconf.h; path = third_party/zlib/zconf.h; sourceTree = ""; }; + 10D327DB8433E7FB4822F2658AC38A4D /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; + 10E8A2D604EDB05298F1213F66AD5FB9 /* ads.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h"; sourceTree = ""; }; + 10EF5DCC84E169CD3E5CD443024AB085 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + 10F5CB28F507E40C702DB0C4BFCE7201 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + 1104196AE9CCB2369F8CC081552F16DC /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; + 111027A799574AB6A5BCB58103174848 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; + 1113D75D7EBF9099F244C81D614A910D /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + 1114FD6CAE60DEFEB48FB5DE4AE0EA07 /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/file_def.h; sourceTree = ""; }; + 1116FAF71FD18733CCF19F948320B3CA /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_windows.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; + 1117A23CA1FF731269ED88C74A473F22 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; + 1118363C6C663B93861E3284D1BD81E3 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; + 111B419DB5E28FF9227401FCE6A7E5B5 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/internal/field.h; sourceTree = ""; }; + 112A17AEF028DDB635F81BA938899BFC /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; + 113553C0E3D66203F7602B91A34640DF /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; + 11429266C24D4F7442171FFF8F9797EE /* service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c"; sourceTree = ""; }; + 115650BD79E89BFDAF948BB5868D896E /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; + 1170979C257561ED850C7CE2944683EB /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + 11819201010D1147632474698D5BBD12 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + 1189667F431D5502DE0BF277F42B3C29 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/include/openssl/time.h; sourceTree = ""; }; + 118D396E9DE65249ECBB61660ABE454E /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/port/vsnprintf_compat.h; sourceTree = ""; }; + 1198C7546D5116D707D7C794F9A95CE1 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; + 1199CF68F32B82A208261EA63BB036E0 /* client_channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_filter.h; path = src/core/client_channel/client_channel_filter.h; sourceTree = ""; }; + 119B4FCCD8EE3285F2F5C511CABFEF21 /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; + 11BA58EEE52FF5B8747329F5F9C28872 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 11C55FF47033A21639D06FE209A13FE9 /* work_stealing_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_stealing_thread_pool.h; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h; sourceTree = ""; }; + 11C7C71F95E6B821CA04414968253420 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; + 11C82A2E376BC4C3E4100995BBAB3D0C /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; + 11CA2CD28D5ACC35E48EA30E0D8417E8 /* type_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_list.h; path = src/core/lib/gprpp/type_list.h; sourceTree = ""; }; + 11DB285D8FD85F99DEEDA9939B773757 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; + 11DBA1DE72492D0D05D2223137C90D29 /* FBSDKAppLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLink.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.h; sourceTree = ""; }; + 11DD51C1560FFD7D31336C3DB255BBDD /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; + 11E4D7B494D18C1ACA770104A7938466 /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; + 11E6D1B94544B8B08BFC974A0567788E /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/windows/env.cc; sourceTree = ""; }; + 11F22F8272586020994D65177CFB77CB /* bootstrap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h"; sourceTree = ""; }; + 11F3FF5F059379AF76E34AAFD924EDB7 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = ""; }; + 1203AAB4E3333D73F665E0B7DE765432 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + 120443479FCD61F978A5F9CB35B55FCE /* FBSDKAppEventsStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsStateManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.h; sourceTree = ""; }; + 1208B6BD54DFE33FB3DE02491D887333 /* substitution_format_string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h"; sourceTree = ""; }; + 121156D254898F671AEAC684C1B1C129 /* cftype_unique_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cftype_unique_ref.h; path = src/core/lib/event_engine/cf_engine/cftype_unique_ref.h; sourceTree = ""; }; + 12283868D953D1562E52ACA8D346E5C5 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 123652FA8EA5508FD5114ED3FE9C1291 /* endpoint_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_list.h; path = src/core/load_balancing/endpoint_list.h; sourceTree = ""; }; + 1237E6591F27F309D3FDF3F8E51E228F /* GDTCOREventDropReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDropReason.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCOREventDropReason.h; sourceTree = ""; }; + 12412EFAC58F27FB985EC321972A031A /* FBSDKAddressFilterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAddressFilterManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.h; sourceTree = ""; }; + 125021A8DC96D47686D1CD93FBD42834 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 12578156D02A7156FB04142883FFE5DB /* posix_engine_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine_listener.cc; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.cc; sourceTree = ""; }; + 125E49F643B94A449EDC5B86F17FB570 /* directory_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = directory_reader.h; path = src/core/lib/gprpp/directory_reader.h; sourceTree = ""; }; + 12732F303050B0B504FF79F7D3BCD6F3 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; + 127FCA2E3D70906A08E57D19F8734B26 /* load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h"; sourceTree = ""; }; + 12989FA44145246DFF031F5A24247A30 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; + 129B70BA0C67AD68E9E6578D0D832E46 /* FIRGetRecaptchaConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.h; sourceTree = ""; }; + 129C50E2E57433177947028E411E96DB /* FIRSESNanoPBHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSESNanoPBHelpers.m; path = FirebaseSessions/SourcesObjC/NanoPB/FIRSESNanoPBHelpers.m; sourceTree = ""; }; + 129FEA86DE8A1C36D64C7B9EE68EDAEB /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; + 12A4936858FFE88656661FEB0251EC48 /* transport_security_common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h"; sourceTree = ""; }; + 12AA1DB0E6F9E9A4EFA094B2161926ED /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + 12AFD0B078EE930495202937FB70962E /* orca.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca.upb_minitable.c; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c"; sourceTree = ""; }; + 12AFF6F4310683561FC281C1B13A47B1 /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; + 12B1B11494793F2640FF04AAAA0E0C43 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/google/api/http.upb.h"; sourceTree = ""; }; + 12B2970BEBF325640623C0874E8456C7 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; + 12C8EC56D5400C79163F6293B691189C /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + 12CEBB24C5195A4EFE1CADF565A850D2 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; + 12D3BDF898B88EFCAA4873D165377A78 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; + 12D4C6E75C280E0358CFA3A59609FE06 /* call_final_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_final_info.cc; path = src/core/lib/transport/call_final_info.cc; sourceTree = ""; }; + 12E428052AC3D8C3773B2D305111E446 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; + 12EB5ABB89D9BA4EB4EA994F2E592997 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; + 12ECA852A2D5E38A1826E20097E1EFF2 /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; + 12FA76E16D2C2B018EBA32162FA7B5D8 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/internal/message.h; sourceTree = ""; }; + 12FBB370BD45FF1E5F744DACDCB7BD57 /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; + 12FE3EE3FB43582D2BC9933EC124BE8B /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; + 130080EE0A9CE3E3F79023DC4283960C /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; + 130D97DA099327DAC2E9C2C42FDBAAC5 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/client_channel/config_selector.h; sourceTree = ""; }; + 1338230FE496C62AEC78366B33871442 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; + 1346E888CDE5BB4C5F2B909B2C8400AB /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; + 135002FD6EF4CA25D3C47EF7CA14755E /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; + 1353F2D3E457B6889CAD01ADA9700210 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 135439107741CFFCE44F2B22A01D9416 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; + 135631D907C74EA4C8F05A8337A329F0 /* struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c"; sourceTree = ""; }; + 135F23549C9C46CAF62BBEFDE84EE03E /* simple_slice_based_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simple_slice_based_metadata.h; path = src/core/lib/transport/simple_slice_based_metadata.h; sourceTree = ""; }; + 13641FA1025CBF3411BB17F686ED09A3 /* init_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = init_dump.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c"; sourceTree = ""; }; + 1378A528AC2A6B2572E220216F53F9FB /* PromisesSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesSwift.debug.xcconfig; sourceTree = ""; }; + 137933DC1E48EB7C4C7255439EA795D0 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; + 13818B03813FE60230003909E49FB00F /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; + 1384468AB0D4FED3CA5DDC6E65BB288F /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; + 1387B28BD6CE7214901975BB0AD02F3F /* range2-neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "range2-neon.c"; path = "third_party/utf8_range/range2-neon.c"; sourceTree = ""; }; + 139135380FF57F861C147C30DD401861 /* per_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_cpu.h; path = src/core/lib/gprpp/per_cpu.h; sourceTree = ""; }; + 13915032D0B114E937BB5C725A0B9BD3 /* vsock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsock.h; path = src/core/lib/iomgr/vsock.h; sourceTree = ""; }; + 13C70CA75E842792F4BFD8145EFCF3FE /* duration.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c"; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseInstallations; path = FirebaseInstallations.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 13CE54A039B189E4CD0FFAE3FB8A115B /* encode.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = encode.hpp; path = third_party/upb/upb/mini_descriptor/internal/encode.hpp; sourceTree = ""; }; - 13DB2A62622C53DE32ADAA423884587D /* TZLocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZLocationManager.m; path = TZImagePickerController/Location/TZLocationManager.m; sourceTree = ""; }; - 13DB7BA6D3BA95A36CD94D9FD34871D7 /* xds_wrr_locality.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_wrr_locality.cc; path = src/core/load_balancing/xds/xds_wrr_locality.cc; sourceTree = ""; }; - 13F6C6F99480960F98A79420D93E305A /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; - 1404266CD277BC508150DCAEB1628617 /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; - 141D683E3C6700E7532C23EA0EB9CE21 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; - 141E890CF628660E7B697E482DEBD044 /* TZAuthLimitedFooterTipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAuthLimitedFooterTipView.h; path = TZImagePickerController/TZImagePickerController/TZAuthLimitedFooterTipView.h; sourceTree = ""; }; - 1422736621A715D11572E983043F33CA /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 143141C5A0DA3D3F533835FF6A1DBB2D /* cord_data_edge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_data_edge.h; path = absl/strings/internal/cord_data_edge.h; sourceTree = ""; }; - 143717EDEFF1DC176A514EFC7B01FFC6 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - 14468A2427543CDEF697D838BB82834F /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; - 144B08003C35F5A8986BEC04A49D11D5 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; - 146D2F8E15818A7347CD33C5CC9464E7 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; - 1471341DC06CF1315B8B2B8A86095713 /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/internal/extension_range.h; sourceTree = ""; }; - 1478307A13B4C5B4E96B233D177CEACB /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 14785BE7D14964A090C7361A39B3C002 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; - 147D66F02F1AFA4EE185ED711D8E6FC9 /* outlier_detection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = outlier_detection.cc; path = src/core/load_balancing/outlier_detection/outlier_detection.cc; sourceTree = ""; }; + 13CF8F05E1387C67750745330B689AB2 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + 13D137FB3AF6139D69165FC7696C5291 /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; + 13D2712B1470F76E1C899CDF59EE6B50 /* stateful_session_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_service_config_parser.h; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h; sourceTree = ""; }; + 13D8F2018CC1EDB205AFE2FA3CCF9691 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; + 13E27735B6BC41DD31AD37DB0B55EA4F /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 13E4E9057A089D15BA28F291DAA52CA3 /* inffast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = third_party/zlib/inffast.c; sourceTree = ""; }; + 13E7BE128FC039F0BB4960EB30357313 /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; + 13FB9BDA9787821621A20CFEB5EECBE6 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; + 14004F2581C899A434D2D47921BCAE9C /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; + 140B55EE0F08904AB9189D95F1919538 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; + 140CC9A59497434BCF997F46538DC343 /* syntax.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h"; sourceTree = ""; }; + 140E8876EDF24635777F700D1C8AA853 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + 141D3DA28A772A04C0B384CDE86011A7 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/mini_descriptor/decode.h; sourceTree = ""; }; + 14236A57326ACF9E8BB7E2B6F72E689D /* directory_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = directory_reader.h; path = src/core/lib/gprpp/directory_reader.h; sourceTree = ""; }; + 14257E05ED29C4ABDA4B37032AFDC0AE /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; + 142CBC664F8F0E630DD481326BBF2CE6 /* backend_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_recorder.h; path = src/cpp/server/backend_metric_recorder.h; sourceTree = ""; }; + 142E2EAC2659804680E6AE8E7DD97C3C /* BoringSSL-GRPC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-umbrella.h"; sourceTree = ""; }; + 14312E51E61FEB43A9F01997D694828B /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + 1452B3AB7962B019C9F9B8C6163EA327 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + 1453134ED8AEA83C94A16F53E9466927 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; + 145488D90013A209CCF1447464AED5B3 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; + 145DF62D59F52E6D5DF6E58FC9F0486C /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; + 145EBC93427268B41552DCC2B9D9F601 /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; + 1477EC38E8AA88E3258DD94A83F6C69E /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 147D3C14CBE7D53D3179F177D32658A6 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; + 1484482173EE1046BC9B62C2347008B2 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; + 1484D5569EECD86C427EE87510C04B06 /* FBSDKAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.h; sourceTree = ""; }; + 1489BDCFBA8B6D2BB058D882EC3A545C /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; + 148B7D7C596A0BF0AD38BC7472A8AD62 /* TZProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZProgressView.h; path = TZImagePickerController/TZImagePickerController/TZProgressView.h; sourceTree = ""; }; 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 148D3CDDBA3D6BDCFB7E34B5483BC29B /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - 149966A7E4C6ACA3278C0865A97201AB /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/internal/arena.h; sourceTree = ""; }; - 149A0529CDBD5AD07EE3F021D1457F64 /* int_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int_table.h; path = third_party/upb/upb/hash/int_table.h; sourceTree = ""; }; - 14A0064000565EF4278A230F64BA54C1 /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; - 14A6D76C8E0983848AC4F48D10FCBA0A /* ResourceBundle-grpc-gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-grpc-gRPC-Core-Info.plist"; sourceTree = ""; }; - 14A801A50CB75FC85B6EFED23C98A582 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 14B030B5028EF1FC4B9AD5A55D621BB2 /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; - 14B3CDC72ABBF386974A7952F8243DE6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; - 14B76ADBDF546741E875F54ED2D34D97 /* backoff.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c"; sourceTree = ""; }; - 14B82393F86944C1986FF334882CA313 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 14CB2AEA71555882C2A45FA512EE9237 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; - 14E451E0886F384C404155572A0F5768 /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; - 14FD740B10535F9B76E33D73E0614B5C /* outlier_detection.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h"; sourceTree = ""; }; - 150287BAB29B0926F1C38DB737A7507B /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 150AEF09EC2E4BAAC1E66667595DC00C /* TZImageRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageRequestOperation.m; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.m; sourceTree = ""; }; - 151ED2A36FED297211F26282B7E00257 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; - 151FA806C4E1198323EF9248429168F8 /* crc_memcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_memcpy.h; path = absl/crc/internal/crc_memcpy.h; sourceTree = ""; }; - 15275EDB4469AA6B9C24A03FF4BAD201 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; - 155960AAEC901EEDBBE13F17F3E570E4 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; - 1570612292ECFCB5B4B643636ED8F08A /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; - 15893123E7C43EEBE87529F431D7B93E /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 158B4C46D8FB1F0A3CD12B7EEEB92DB9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; - 158F249697755EE2B863125D2F7B2DC2 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; - 1592AADACC4BAC73E2F3912015195960 /* NanoPB+CustomStringConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NanoPB+CustomStringConvertible.swift"; path = "FirebaseSessions/Sources/Development/NanoPB+CustomStringConvertible.swift"; sourceTree = ""; }; - 159320A4725990DE64E734FB5005E364 /* compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_filter.h; path = src/core/ext/filters/http/message_compress/compression_filter.h; sourceTree = ""; }; - 159DFCD4BC0AE9634BBEE6F0BDB8B5F5 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; - 15B1D11CE981C028CF61D442C691D84A /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 1492C4A8F115A4F91913A29837BFE192 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; + 1497D86C7A7704B531593FAD84639BFD /* FirebaseRemoteConfigInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfigInterop.debug.xcconfig; sourceTree = ""; }; + 149E4F99EE6E5DE2883DC700F9E5FFE1 /* FIRCLSAnalyticsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAnalyticsManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.m; sourceTree = ""; }; + 14A2157D5EFC22C71086933C7C694B61 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; + 14AF35B8B79A4E6F7814F78C31091869 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/internal/cctz/include/cctz/civil_time.h; sourceTree = ""; }; + 14B0DFF095DB5D756F17BDA0E9B4B0BB /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; + 14B6ED1B79F54F73F8C4E816ECB749F0 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; + 14C192441EB045EC717B078632CF1E9C /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; + 14D8318AFC30BE39B836DD14432195C7 /* FBSDKBasicUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBasicUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.m; sourceTree = ""; }; + 14E78D0AC1F5AC1D382B64AB314D9CC8 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; + 14F497602FD4F2DDA1DA879D40A0BF79 /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; + 15090066D859CFA88D428ECF9C3C656D /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; + 150F8C7E54930C3B2291B393DD623289 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; + 1524006C14DDA5D14AB703813AFC364A /* api_listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h"; sourceTree = ""; }; + 1525996841248040C425788CD292A814 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; + 1529ABEE74C846504A7B8560C367E400 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + 152A46F68093B0715427462D404AF6EC /* TZImagePickerController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-umbrella.h"; sourceTree = ""; }; + 152BCD53FE551C101C2371294C33D3EB /* status_flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_flag.h; path = src/core/lib/promise/status_flag.h; sourceTree = ""; }; + 15309C7D0F24B69B549D5CC74B88D9C1 /* FBSDKMeasurementEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMeasurementEvent.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.m; sourceTree = ""; }; + 153AF31E727E6D1040F2D9DC4FD2ACAC /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_utl.c; path = src/crypto/x509/v3_utl.c; sourceTree = ""; }; + 153BD321F9CBB19BA1EA9A72848B0171 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + 15411061B17DAC2EC04206BBCC1953F3 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 155245A85B51AFCE57C67BF83814E82B /* GDTCORLogSourceMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLogSourceMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORLogSourceMetrics.h; sourceTree = ""; }; + 1552A4520AB3E274E867751B7F764B8F /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; + 15672815D3F2BA8104B1776CB619A1BB /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; + 1580331EF4E0960E888ED2DDA700AA16 /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; + 1582F26523126B4BF770463CAFFC8425 /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; + 159391DFFF381F80A94841EE3E66ACE3 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + 15B1A17325B3535A74A4B2426205B1A9 /* LLCycleScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLCycleScrollView-prefix.pch"; sourceTree = ""; }; 15B2AAC35D0FDBFDEB69A9FC675DC516 /* BoringSSL-GRPC-openssl_grpc */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "BoringSSL-GRPC-openssl_grpc"; path = openssl_grpc.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 15C1A487B00747A031A320769E29550D /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; - 15CD665576FA69EAD79674546734FA22 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; - 15EC208DC675464D9933B0FC4983524B /* getentropy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getentropy.c; path = src/crypto/rand_extra/getentropy.c; sourceTree = ""; }; - 15F27C3C371B2D0301725F8BC353B4A5 /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; - 15F8E8B4545CCF65CB978AD2BA66BE6B /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; - 15F9B8C328077042332A646021AE7AAC /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; - 15FA300653B268BC0F7518AC36750A30 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; - 15FC7276C5E33369C3345F28C8D05C00 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; - 1609B8F755C6EBC68129C8CC873F0F81 /* ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; sourceTree = ""; }; - 160F66FB41BBA059E1E094F4BC05B4D6 /* FirebaseSharedSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseSharedSwift-Info.plist"; sourceTree = ""; }; - 160FC5E28CC9C995F284163D93EB65FC /* crc32c_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c_inline.h; path = absl/crc/internal/crc32c_inline.h; sourceTree = ""; }; - 161D52F2794300431E6C677A995F9F35 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 16201745122473603DC1B63BBCA9729B /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - 162451E4934D48CC46DCD780F8C96DF5 /* syntax.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h"; sourceTree = ""; }; - 163BF052754DD3CF24C2D34AECC920FE /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - 16468FB3A02189A66B735CE5FB8B5924 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; - 166B23B917047B215C27F334B8970D13 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 16720CE4C62846DF6B4CC8AB56E52472 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; - 16777B6A8DAD11482EEB437A06ABAEEA /* trace_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb_minitable.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h"; sourceTree = ""; }; - 167DB6694918F3C0D5294165F693C692 /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; - 168366E867C48CA928E316C666CE9B12 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; - 169A2F9C680BE962FEE200B0CE82EE1E /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; - 16A95727CDADB70B77BE512454A59515 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; - 16C55C66D955EB8A867218F6EAF96DE8 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; - 16C792CC3C3F322ACED69A4B364DD29E /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; - 16D93BD857E744573C6ADE1B41EADD67 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; - 16E95CD7849EA3C68955762818BB771D /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; - 16EBE960F061427AC986A47CE6DE34DC /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; - 1703F7DCF5F3EDC2689BD2AC6ACC2EA8 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h"; sourceTree = ""; }; - 17100517A196018967E9CE077AFB57E2 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; - 173D4578EF7A0A55680C0D52973B54B2 /* FirebaseAppCheckInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAppCheckInterop-dummy.m"; sourceTree = ""; }; - 173D7471E32E8A1DAE8039631B61E55D /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; - 1746E78D4E8B316B6436E79E60A2A543 /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; - 174ACD16B7981F8C46CF7BAF95875B7B /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; - 1761D804B03BFA57B2E8B369FAC1994C /* inftrees.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = third_party/zlib/inftrees.h; sourceTree = ""; }; - 176B0012C0D28E080F3723E6076702F5 /* str_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_table.h; path = third_party/upb/upb/hash/str_table.h; sourceTree = ""; }; - 177AF513C4B5E6E524CDAD1A5F6F3421 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; - 178B343D57806114B0F6106B24FADC42 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; - 17903AD2FF7E068B69BF743878CFA717 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/event_engine/nameser.h; sourceTree = ""; }; - 1797F21634F70AC2464C57050CA5CF52 /* fors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fors.h; path = src/crypto/spx/fors.h; sourceTree = ""; }; - 17BBB1F477E2641A8D8583CB94431F61 /* DocumentID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocumentID.swift; path = Firestore/Swift/Source/Codable/DocumentID.swift; sourceTree = ""; }; - 17C53537E075447B7E8C863544D50C90 /* DeviceKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DeviceKit-Info.plist"; sourceTree = ""; }; - 17D8519F673E5109A6A32BCB13E26DEB /* RemoteConfigConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteConfigConstants.swift; path = FirebaseRemoteConfig/Interop/RemoteConfigConstants.swift; sourceTree = ""; }; - 17D8D342EA24DDBA9E0B28601C6A6DDC /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; - 17E68250FF58E0AEFA8FFBEC6B278B0B /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - 17F0AF175CD3D49B85BA9A63D35B64CD /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; - 180046154D14B8B3057977F5DC3829F3 /* unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode.h; path = third_party/upb/upb/lex/unicode.h; sourceTree = ""; }; - 18114A7F197EBE26F17421EE306B5731 /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; - 1814C779C3A60600013E67E58AC4240C /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/event_engine/slice.cc; sourceTree = ""; }; - 182B9B3439014993DF2CE3BFFE634019 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/load_balancing/lb_policy_factory.h; sourceTree = ""; }; - 1831CDC5BA0E5FBCAACAF59D5AAAE455 /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; - 18333D71ED8DD4C18EE70C484B7AE60E /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; - 183DC523ADF123FDC1D135AEE622BE7C /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; - 184D0F1D2CBBCE530C969D61C3148193 /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; - 18528EC0754A6AB121494C18B7CBB434 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 18554F1B945EAD7A802B62C4850174E3 /* ping_callbacks.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_callbacks.cc; path = src/core/ext/transport/chttp2/transport/ping_callbacks.cc; sourceTree = ""; }; - 185E5E41334B0B28D1168C0C6AF102A9 /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; - 1881928922A74D3CB71A794A862383A5 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 188348958A839C00E100BFDB7507BE09 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; - 189111CBE3328BFADA8C2412B97B36CF /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; - 18928BED288FA394FC04DFAE39E39803 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 1894C60BD67C777DB430A9CA9A2A07C5 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 18978FF38968EEFABF58EAC61697E51C /* trace.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c"; sourceTree = ""; }; - 189D9A8B34E46284B81135E8937DC22B /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; - 18A1ABB64D2A1C6361AD1E2CB5000B03 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 18B7CABA4E0D0C7731F233E86A1E082F /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; - 18B92839692D8C8573E34D97F502F83C /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; - 18C33E5A056F5C710CFD44B5FCABF472 /* http_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c"; sourceTree = ""; }; - 18CBB0C0A8857FFDD6C32E6247A35881 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h"; sourceTree = ""; }; - 18D17BCCAF3A1900DABC20D91215D153 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 18D224D211D0FF7384B344C86D1CC83F /* datadog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = datadog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c"; sourceTree = ""; }; - 18DFD175D21D04070131E2FBA2D1E4F4 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; - 18E4375517D5164BE1420280259F53B8 /* FirebaseSessions.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseSessions.modulemap; sourceTree = ""; }; - 18E5913122E6B3C6BCF0C1EA1BEFF459 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 18EC9D3BCD96DC361A7CA570D679683B /* resolver.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c"; sourceTree = ""; }; - 18EE827AF0F158269B882581735EAC4B /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = src/core/lib/security/authorization/audit_logging.h; sourceTree = ""; }; - 18FDFE3FCAE57B5A371A398792A524D2 /* cancel_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cancel_callback.h; path = src/core/lib/promise/cancel_callback.h; sourceTree = ""; }; - 190594A46C85E888181C800D9908D295 /* fault.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c"; sourceTree = ""; }; - 190C788D1A98C0060C56F7F820C389FD /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; + 15ED923827E689C870A1A22B788DBA4B /* Promise+Testing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Testing.swift"; path = "Sources/Promises/Promise+Testing.swift"; sourceTree = ""; }; + 15F3C3437BAF0C36C3543183A419F477 /* client_side_weighted_round_robin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h"; sourceTree = ""; }; + 15F67AF66A33960CC08FBA35FC75CF6D /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; + 15FB14B7AF54E87319A590EA4EBD4457 /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/port/vsnprintf_compat.h; sourceTree = ""; }; + 160BA88C2074D334E4D4CE2882CB2258 /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; + 161781877AE5D81BE0D06E3AE6F1E367 /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; + 163E45064245760574DA929EED89C31C /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; + 16400AF1EB01F50C2B1A4A9A0007007C /* xds_health_status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_health_status.h; path = src/core/ext/xds/xds_health_status.h; sourceTree = ""; }; + 16484B2F3250BFA3CEBD0C23056E8077 /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; + 164B9FA298A66A34CECEB7506DEB40AC /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/codegen/create_auth_context.h; sourceTree = ""; }; + 1666305AA6C2FE0D63F604D684364EB4 /* compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_filter.h; path = src/core/ext/filters/http/message_compress/compression_filter.h; sourceTree = ""; }; + 166ED16BB8F4F774A8DAF8AB097C5815 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; + 167885D157258352F18D9DCA0166D2D5 /* SessionGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionGenerator.swift; path = FirebaseSessions/Sources/SessionGenerator.swift; sourceTree = ""; }; + 167D26D26AD14700DD26C2294FC5ABA5 /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/load_balancing/backend_metric_data.h; sourceTree = ""; }; + 168067947F44683B21EA81EFEBF6B56B /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; + 16BBAD8193C97D725670D7EFFFBEE56A /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; + 16BBE4EC7B42E028D542E61D944DC319 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/arena.h; sourceTree = ""; }; + 16CC648A1226D874A1C167AA186E7087 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; + 16CE93017A59DC9BFE9399D013279D0E /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; + 16CEEE3175500D0303DB12DD81866EB9 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; + 16D1BCF1F01268CAFDC2246D77FE7A8B /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 16D27CC5C409DE47019673D43BCDBE5E /* wire_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_constants.h; path = third_party/upb/upb/mini_descriptor/internal/wire_constants.h; sourceTree = ""; }; + 16D583F498D5A8ACE0493107B23DDD28 /* call_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_metric_recorder.h; path = include/grpcpp/ext/call_metric_recorder.h; sourceTree = ""; }; + 16D728F4D6BAE301CFDDDAD773FCB26E /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/posix/cpu.cc; sourceTree = ""; }; + 16DE3CC4A28DAFE497E3E807E9B6BAEB /* FBSDKWebDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h; sourceTree = ""; }; + 16E1A4394AB8E3DA6180F6832DD50576 /* shim.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = shim.cc; path = src/core/lib/event_engine/shim.cc; sourceTree = ""; }; + 16F6973C71247B0DA38FE8264F97C7C3 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; + 16F6EC2CB099E30CDA49820E93000981 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h"; sourceTree = ""; }; + 16F860F616E4B46B2D43E12AA1681714 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h"; sourceTree = ""; }; + 16FD4E9BABB88FB97116EE4DBAE48451 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; + 16FDC49F110EFEA90429DCBC961921FA /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 170302E302D2B1DA9832C897C9257DDA /* time_zone_if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_if.h; path = absl/time/internal/cctz/src/time_zone_if.h; sourceTree = ""; }; + 170FD0D12532D746D56BC7A40DFD5D51 /* inffixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = third_party/zlib/inffixed.h; sourceTree = ""; }; + 17129F02609563CFC535C595CE38B66C /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/crypto/des/des.c; sourceTree = ""; }; + 171595DDC79506E9441EA1FE9DF1755A /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_resolver.cc; path = src/core/resolver/fake/fake_resolver.cc; sourceTree = ""; }; + 171C5777CEA8840DDD1CD999E5BC2C3B /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; + 172BDCC563E37F240A1E3043C15BA7F3 /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; + 172E380D54302D72B0735B57569D9A73 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h"; sourceTree = ""; }; + 1734C3DB32580FDD0FBA0D3DE38B1C98 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; + 17411B437FA23CD41856403FD256CE13 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; + 174E4B53B32E8EFF947F36DE237F492F /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; + 1750E2C7A58B85780ABAAE5C96887FD5 /* FBSDKAppLinkReturnToRefererController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkReturnToRefererController.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.h; sourceTree = ""; }; + 1752AD3C64885B6AA49EFCA1BD2150C5 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; + 1756AE8F4B226E1D44E8067CB7C545AC /* FBSDKBridgeAPIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h; sourceTree = ""; }; + 1756F094278124D0342AFC197188A8EC /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; + 175F457DC97277EF9BD809D6F97C9582 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; + 1762A355D2B5B014EBCEA3C7166B700D /* config_source.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c"; sourceTree = ""; }; + 1765FD614AF0A6D9555EC12580FFE46F /* FBSDKError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKError.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m; sourceTree = ""; }; + 176A5B0F66088EF526E7876B5D3CA5DB /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 176DFFF366D298A99313BB8787166AF9 /* descriptor.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c"; sourceTree = ""; }; + 1778B04E2F615EF40A067C0EF982D1FA /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; + 179A2C6C09B0E39EA94898C3940DFBA0 /* filter.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h"; sourceTree = ""; }; + 17A4705BB1F434F8F5FECD31F803658B /* orca_load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb_minitable.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h"; sourceTree = ""; }; + 17A9DD3AEDB200F1736DB2BF21C3F82A /* ping_rate_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_rate_policy.cc; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.cc; sourceTree = ""; }; + 17AE43853A64A4F6DBD620C86B683D95 /* ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; sourceTree = ""; }; + 17B35501BE0EC03AAA5DCE6EFF70528A /* scoped_route.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c"; sourceTree = ""; }; + 17B753FDB3145B344A3EC9768035ECF0 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/byte_buffer_reader.h; sourceTree = ""; }; + 17B7F45AFAAB484F0C05AFFAB757A079 /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; + 17BAF3C4A7F98749D7DB3B6764214D42 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; + 17C08E758376C88420230E29B0D2E0D0 /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; + 17D210328C7C59286770CF2CA6AFDC81 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; + 17D4F6AFF5F1D643DB99E5387B7EFFB1 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; + 17DA4656ABD065B24B858811D769722B /* stringify_sink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringify_sink.h; path = absl/strings/internal/stringify_sink.h; sourceTree = ""; }; + 17DED0052153ADA251B3E7CC29DCC487 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; + 17E35F82579065A021A5CF6DB45F2162 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + 17E8BB8D1A5875A5A9F8A0D5C04EF31C /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; + 17F09394BD4389868131A34962684B65 /* FBSDKAppLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLink.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLink.m; sourceTree = ""; }; + 17F1C7285BFFA6D517A273971D15669F /* DevEventConsoleLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DevEventConsoleLogger.swift; path = FirebaseSessions/Sources/Development/DevEventConsoleLogger.swift; sourceTree = ""; }; + 17F51CC21AF56E6EFFAE28975D182E5A /* FBSDKUserDataStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUserDataStore.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.m; sourceTree = ""; }; + 17FF6350E76680902491EA7683A56E1E /* LLCycleScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LLCycleScrollView.debug.xcconfig; sourceTree = ""; }; + 1803D3BF7F8EAB968D9E587E9ADBE8FE /* tap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h"; sourceTree = ""; }; + 180571B495B5E50846DA27DA0E89D33D /* windows_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_listener.h; path = src/core/lib/event_engine/windows/windows_listener.h; sourceTree = ""; }; + 180682A0DF066769F1128B8650E42D78 /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; + 1806B9EB3A00F5741FC539C8F806BB3D /* FIRTOTPMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorGenerator.m; sourceTree = ""; }; + 18146C7EB413A4F310202598CE889CB8 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; + 182A946FD610BD620CC361EDA602804F /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + 183B43AAC0AB983D035B82D6C82DDAF0 /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/internal/file_def.h; sourceTree = ""; }; + 183BA33C67A9589B181F92F5D58CEFE3 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + 1842D368371AB6CA79162185CAAD0926 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; + 185715842EA2EBE2FD01119CD782F3E4 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; + 1858829078C71EFB7377C11331713EAA /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/wire/decode_fast.h; sourceTree = ""; }; + 185E00D7AB958A3A2AF7EFC6A2DDB899 /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_balancer_addresses.cc; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; + 185E5CD7D0B6FFB91ED1D3C48AA9B7E5 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + 185EF3885299E84FDC0E27B2E3629D9B /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; + 185F402C6BC0DD91C9B9C49ACE22C4BA /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + 1861ED19FE028290B08076A7F8BF952A /* LLCycleScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LLCycleScrollView-dummy.m"; sourceTree = ""; }; + 1872C4BC867B4898EBB63176EFF738AE /* transport_stream_receiver_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver_impl.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.h; sourceTree = ""; }; + 187720D9E38560926BB4F0F3E7AECC65 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; + 1884EF97DADBD1A0D6439EFE42B6D483 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = table/format.cc; sourceTree = ""; }; + 18852AC03B7A2985EEC2441932668C80 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/decode.h; sourceTree = ""; }; + 1885890F43C2CB80F0D4F4A205EB302C /* authority.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h"; sourceTree = ""; }; + 1890EE4078EE277CBD86A044226DD869 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; + 1894CDE8AD4DE294E7F6A2D68FAE1C9A /* tcp_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_tracer.h; path = src/core/lib/channel/tcp_tracer.h; sourceTree = ""; }; + 1898B05547D6373D26BCAD112102CD73 /* filter_state.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h"; sourceTree = ""; }; + 18A472011BC6B27F81C11222DEA56232 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h"; sourceTree = ""; }; + 18A9856C7DF37F25EB09F3515901BD78 /* http_proxy_mapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_proxy_mapper.cc; path = src/core/client_channel/http_proxy_mapper.cc; sourceTree = ""; }; + 18AB774F1C1CE4ED9113526E5E44DAE4 /* thread_local.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_local.h; path = src/core/lib/event_engine/thread_local.h; sourceTree = ""; }; + 18BC9C6C924EF1C32451C6F1DAB6DA86 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + 18C24823550296D9E0312652A2019288 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + 18C352AC892D013D854079B659C70B65 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; + 18CDFEB353691C117CDEEC9FB9A9A80A /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h"; sourceTree = ""; }; + 18DED8D7ED4A5937C3F11C6703019587 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; + 18F746EDE905BBB20455DAFB7273D4E0 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; + 1900AE728AF76A5AE5AA5A013A31D4C2 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + 19030F91114CF0548D3952AB150AC4FA /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; + 19092B1F8DF66787A7B50E9739BEB065 /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; + 1909A8F01183EE5C8478F2BBCE739516 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; 190D7383CCEFD8AB3F8CB93098A3F214 /* DeviceKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DeviceKit; path = DeviceKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-C++"; path = grpcpp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 19116B1329713AFED9FE456BB1EE7678 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; - 19151CF500E0299DAF6B220F037E2CFB /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; - 1917D122177D6F841FB8D0D73A26A4FD /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; - 191F47AF36ACA071CBE778F4656CF72C /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 1926C167EF3E5E6C57B4CB8FF4B37595 /* service_config_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_helper.cc; path = src/core/resolver/dns/event_engine/service_config_helper.cc; sourceTree = ""; }; - 192FCDF2D7B68DEF8526DBACF7EE11E4 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - 19385E4216E0C9F1961295E3CE55E56A /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 1945339EF3FDC2B927BA64FBB010D60B /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; - 195C5805A597EA1F39A656AB33A145DB /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_load_reporting_filter.cc; path = src/core/load_balancing/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; - 196E301BA569EA301081B81CED1FDBF0 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb.h"; sourceTree = ""; }; - 1975375212597D88CEFD9713A6727491 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/internal/extension.h; sourceTree = ""; }; - 19877F7381A1D86A9F800366ADFCC60C /* accesslog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c"; sourceTree = ""; }; - 19964ABA08F6DF9471DA52962B44773F /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; - 199FFEB83D38BFB4884AE4998FB60B54 /* load_system_roots_supported.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_supported.cc; path = src/core/lib/security/security_connector/load_system_roots_supported.cc; sourceTree = ""; }; - 19A237AED07CC23A1F800A371068DF05 /* annotations.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.h"; sourceTree = ""; }; - 19A3646553FF38262A9D3D7BD25DD0D0 /* wrr_locality.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h"; sourceTree = ""; }; - 19B254C34025FC0096E42AEDF4B2FDDE /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h; sourceTree = ""; }; - 19BD5D0CE772AD041A5DF08A1A6B6B6C /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; - 19C13FF01C66F51825794CD24244F00A /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; - 19CB79C22B4AECE6F2557B22B50B4E5F /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; - 19CCD4B9BD83A311A541DF2B3B70C0B3 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 1A27511D0EA68B95BD35120214AC223F /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; - 1A2C3BE36FD990507C4DD6A448D3AF83 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 1A3219581A825E64D13ACFADBBF1D57A /* GDTCORStorageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageMetadata.m; sourceTree = ""; }; - 1A33A1E5D20B8477CB9A4F90A60936FE /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; - 1A46BB487CD517176F84857B23947E23 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; - 1A47D00AA45AFBCC540977B69D819BF3 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; - 1A5244514FA4AD1E1073E7156BDAD5A2 /* systemd_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = systemd_utils.cc; path = src/core/lib/iomgr/systemd_utils.cc; sourceTree = ""; }; - 1A750327C3915775D2CF5D70B32B179A /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/channel_interface.h; sourceTree = ""; }; - 1A7DEAF50E0F5B76706CE3B1C80FDB8F /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 1A8E0C951A89D999F1B9CFF6CB43679F /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; - 1A990163483384282CF8330CD84B4BF1 /* LLCycleScrollView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = LLCycleScrollView.bundle; path = Lib/LLCycleScrollView.bundle; sourceTree = ""; }; - 1AAB428CA4F461B94421099680BC390E /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 1AAE9BBA29F0990AE5B54803236B88F4 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - 1AAF216B717CCDDFC2F92F674F290AE4 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; - 1AAF3C4E0D0749D0383A88D986D7FF96 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/windows/string.cc; sourceTree = ""; }; - 1AB0EB84CBD217EFB3FA4FC0FC46F7F3 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 1ABD7573C3946D960B1487DBDA5C8B4B /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; - 1ABE55DD027D9C864A0C77523C75D100 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/codegen/rpc_service_method.h; sourceTree = ""; }; - 1AD6D74CC0CAC2970FE5115A8B880CCF /* FirebaseCrashlytics.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCrashlytics.modulemap; sourceTree = ""; }; - 1AD70F2563E3A929D07A390DE8C30F88 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 1ADAD8119E10A19BF3A1862FDA4956D4 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; - 1AE1312BA39545CA8C3996688F092335 /* Promise+Then.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Then.swift"; path = "Sources/Promises/Promise+Then.swift"; sourceTree = ""; }; - 1AF6FF89AF67E7D00FB7CBFB9D8AA7C8 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; - 1B0032C3FA623F5847F4392D6E616260 /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; - 1B056E69EFFDCC28572D20037C6EA66C /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; - 1B168568A13963E7033CCA8DE91A415B /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; - 1B18C74F4E539C78DB9E2CA0C7F93E9C /* cidr.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h"; sourceTree = ""; }; - 1B1FD2B477F2428D3CB77FA09DC50ACE /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 1B21CCA5C4CCE632749692B46258034E /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; - 1B49DBD18737256E93B6EEFBE33F630D /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; - 1B4C4B12A0E6E371A125A95CD7DCB66F /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; - 1B53910DDAB545C7A5371078CFAED74D /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; - 1B5EE1CEC0DD7D05828B8B7599E3784A /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 1B60005A52F1B8446899A22647C838AE /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel.cc; path = src/core/client_channel/subchannel.cc; sourceTree = ""; }; - 1B6994B246D2F56C17A880AC2E8CF1D9 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; - 1B69A2881C2F6934F6CE85BAE4029739 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h"; sourceTree = ""; }; - 1B744B4C1062998DD8ABF8A3D92C51F5 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; - 1B881114DC44A1D534B3516C18CD70E9 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 1B9C98371CB14C790755E51DC47624A8 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; - 1B9E8FE671FCA59B8901B97300BE99E7 /* aggregate_alias.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_alias.cc; path = Firestore/core/src/model/aggregate_alias.cc; sourceTree = ""; }; - 1BB6E91B5EDB4A51E08ECCAF1F20C1D1 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - 1BB7C4DDF888DA04384630EC6B298CE8 /* sessions.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sessions.nanopb.h; path = FirebaseSessions/SourcesObjC/Protogen/nanopb/sessions.nanopb.h; sourceTree = ""; }; - 1BCC80375CCDCD84BDC421B65D96B24F /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; - 1BCD02F979BBF262ABA4BA9831BF64AD /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/mini_descriptor/internal/encode.c; sourceTree = ""; }; - 1BCD73E31D5EA8A499E6D985F96CE1C6 /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; - 1BD64650E40114FD588FE9CA01AB5CFC /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; - 1BE3902B533722A230C98831CACB6E30 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; - 1BF8D2A6267FAB6975A3BD3DDF64A3B4 /* ndk_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ndk_binder.h; path = src/core/ext/transport/binder/utils/ndk_binder.h; sourceTree = ""; }; - 1C33B9770A48F21CDCA9C1D8AEF36187 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - 1C3532C0915881F25141D93FEE62E872 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; - 1C3C84C42F35141EF9F44A36330A1B15 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 1C497D99A2C1FF2CAAC2F3A1288386E7 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; - 1C4AF5F4C0BF2F4F1672EEF1539B1F06 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; - 1C4CF7D0BEDF032E294A57E4A442F24F /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - 1C697EF6BFF30BEE3207C1EBFDF2240C /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; - 1C6D197FE7A1BB437B4F2093B87A964F /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - 1C7162F2014886D43898DD8F2827D19B /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/event_engine/posix_engine/lockfree_event.h; sourceTree = ""; }; - 1C87E050192AE6D2B706422BE3552F48 /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; - 1C898B28E6D3D27E77CEEF2AB1FAEE92 /* validate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upb_minitable.c; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.c"; sourceTree = ""; }; - 1C8D38429829BACA4D495229633BD3C6 /* certs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = certs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c"; sourceTree = ""; }; - 1C94CD1FB6DE25CC228DD3FE2AAECF31 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; - 1C9DD45F99B83FF6849D42BC55DDD640 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; - 1CA020F5E2945FFA2616C2CA74D37AA8 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; - 1CA09EA6B15D2DD72C7B884763363939 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; - 1CA5FF935C4CD6686F0C0466E9ABA34A /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 1CAD035BB7E5694A0CD85AE16DF1F764 /* experiments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = experiments.cc; path = src/core/lib/experiments/experiments.cc; sourceTree = ""; }; - 1CAF9E402CD803B4201C79C9F7FC0C71 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; - 1CB4E32DF6322690B74A6C9780C71F24 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; - 1CBCF93ADA7EDF481206D23AD7F633DE /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - 1CBE4FD560A3863EF854BB10B60F7C5E /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.h"; sourceTree = ""; }; - 1CCAA9072A6DB57F64579C4EC44E2AB9 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 1CDBC2FE4BFC4F4F83B2D0F0AF1E2CC5 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb.h"; sourceTree = ""; }; - 1CE5AB2D00BC42F6F6314E060A612B2C /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h"; sourceTree = ""; }; - 1CEBA51A9404290E37F3D56BA27C74D0 /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; - 1CF6EB1D135BB3A8B681CE702D563732 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; - 1D0D935D04DF00A5192F04DA9A32AF06 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - 1D17D8551F558C301B8274B2C5F1FB85 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 1D1CF20DF1689CEB5FDC3EDEEF7604B9 /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; - 1D322CA7A3730629F60C75336531374C /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; - 1D3635215E857462276736978F4811F6 /* lrs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h"; sourceTree = ""; }; - 1D3ACC95F11E30093E5E8DFCC8AED40B /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h"; sourceTree = ""; }; - 1D4DE050DA6981D505D88154D5C78A4A /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c"; sourceTree = ""; }; - 1D5DA424035C4932813745B3F49A7C7F /* FIRRevokeTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.m; sourceTree = ""; }; - 1D67BECA8FA61CF80FD537EB9BB74337 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; - 1D682163456BC452FF97DCCC5882159B /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; - 1D7070E2C9FDBB1E8BFE04AA62A7DCCC /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 1D71EC6D6861D4D1352D7B48B9400E08 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/event_engine/posix_engine/timer_heap.cc; sourceTree = ""; }; - 1D72D9209BC861FBA09B6E42F157152A /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h"; sourceTree = ""; }; - 1D7B61AC6D6FE871BE30AC105747CFED /* hash_function_defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_function_defaults.h; path = absl/container/internal/hash_function_defaults.h; sourceTree = ""; }; - 1D89369F0B5FEE7E7A5255BD5E138653 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - 1D8B567A446427145E552DDE1987D6AE /* listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h"; sourceTree = ""; }; - 1D92AAA7DFE3B92B2C91F392283AF434 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 1DA47D780569DD5B8B60467DD4A769C6 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; - 1DAC3B66A3F3F6464FF427ED3E4078D7 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/resolver/resolver_registry.h; sourceTree = ""; }; - 1DB16D9C65443E00FFA55C9F9D91587A /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 1DBAD11703F8C6EF4501BBD89438CC22 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/client_unary_call.h; sourceTree = ""; }; - 1DC6F95EF8ACF3034E8F25950F339E85 /* civil_time_detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time_detail.h; path = absl/time/internal/cctz/include/cctz/civil_time_detail.h; sourceTree = ""; }; - 1DEA5C5CCF38F363C4D7B73CC005A20C /* config_dump_shared.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump_shared.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c"; sourceTree = ""; }; - 1DEDF40511D43CFC3335BD8322DC1A22 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 1DF5A39BFE01D0E2B26C6D43C962B164 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; - 1DFC7DA882CAC9DCE3C4CC4873962F71 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; - 1DFC967B3F8C93896DB2D3D61B769825 /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_windows.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; - 1E084C6DA92D309BF98F4FA13C8FF9F2 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; - 1E16406259ED5D15E5C142DD3CA90C6C /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; - 1E199C13AD39F2424E04DDD118FB98EB /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; - 1E19E28CB4D8F7BB8958CB5C21800C19 /* http_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h"; sourceTree = ""; }; - 1E23AFD25AF5704255A4ECE941ECD423 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 1E2BCFC74A7CEFADC76FD7EE93A455C9 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 1E32052DAEECD5CFEB0E47269D05BF40 /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; - 1E3EB439D3516FB855ECA8BFAE2BC7A8 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; - 1E460238BA3814C7507614732FF5323C /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/message.h; sourceTree = ""; }; - 1E5392809BAFE8E75DC203D2CA27C6D8 /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; - 1E630FEAEBD0381408C87772506593E2 /* client_channel_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_service_config.cc; path = src/core/client_channel/client_channel_service_config.cc; sourceTree = ""; }; - 1E6D2F486B1C48B847EA40F926C0968E /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; - 1E9593CD70FBBB63AFD89027623C650B /* Promise+Any.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Any.swift"; path = "Sources/Promises/Promise+Any.swift"; sourceTree = ""; }; - 1EB5433BD53C731953FB646EA95D88C9 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; - 1EC9A0A73AE1AB9A6FEE34A4933F7861 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckInterop.h; sourceTree = ""; }; - 1ECBC60D2F6B64EC1C5AD1E56FE49CBA /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; - 1ECECDD9DAC840149B493B0D420EFB35 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 1ED71A0C3595E6ACC8811991BA00F1D2 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; - 1EF205845579055CB80773EFFBD3EC04 /* work_stealing_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_stealing_thread_pool.cc; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc; sourceTree = ""; }; - 1EFB1734A535BCE10BE0F8A34D8A3331 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; - 1EFFC39A61E4EADF61BF8B75579481F1 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h"; sourceTree = ""; }; - 1F0175C739415B6FA900A91500625012 /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; - 1F06975170B0BE23C4349ACAC89752E2 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/wire/encode.h; sourceTree = ""; }; - 1F09BE586B29CA3D4D9A9B9E6AC6B394 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; - 1F0B753BB5AEB24805F940D15CAB07A0 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h"; sourceTree = ""; }; - 1F12158875D197C9FE823EA0623FA59A /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 1F134D0774043FDD7D28E86875B4F58E /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; - 1F1D48A2EA4A940A6C3CFF7D9C4B894E /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 1F2A6B5832808FED849EB6E8A5D8FEF3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 1F2F20F9190A3A1C78C0A31460C16EE5 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - 1F2FF53C8F35A3AC4E998129BDE7EF2B /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - 1F32B0202D7BA5E13B6F6CDB085F8978 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 1F375D3660D03697E2762A691FB90299 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/wire/encode.h; sourceTree = ""; }; - 1F4C87B65B3F8A832019B54D04A5B442 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; - 1F72F2990247B0AF4F58FC2CB1EB06BF /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; - 1F79E4CA2C72C286350814AC67719439 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 1F88A409A6669CA9BE5D820AF941419E /* waiter_base.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = waiter_base.cc; path = absl/synchronization/internal/waiter_base.cc; sourceTree = ""; }; - 1F895D9FBFDEB1AF2E3D7F4A7FD162B2 /* reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reader.h; path = third_party/upb/upb/wire/reader.h; sourceTree = ""; }; - 1F8E247C40A796B749428C291F8D7846 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; - 1FA17F033CE40AA35A1AADE2A3809091 /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; - 1FA727A5DF6400B1BD47F5FE98F9494D /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/service_def.h; sourceTree = ""; }; - 1FA938556A193AB982F813AE7FA26B1C /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; - 1FAC671866AE6A631EC03E96F185D55F /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 1FAEE9414C8DFA5DB1A4776C1FFAA006 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; - 1FC25FDC9C397785DE6842F9FFFAF2BE /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 1FCD6836A724AEECFC642EE795011CD4 /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; - 1FDD5A48964D68F9065ADEEEEB939551 /* FirebaseFirestoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestoreInternal-Info.plist"; sourceTree = ""; }; - 1FDF14D6B98E2FE2F144CB6F95541C56 /* rls_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h"; sourceTree = ""; }; - 1FE033E19FD7E8FA4D23D4AF9EF0A849 /* stateful_session_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_service_config_parser.h; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h; sourceTree = ""; }; - 1FE3467EC0A4F9934549FAFA50D5119A /* naive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = naive.c; path = third_party/utf8_range/naive.c; sourceTree = ""; }; - 1FE583B87EBE7D69646ABB37D7A157F3 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; - 1FEBB546464B83A5561581C760030843 /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; - 1FF0F1EE50F51DA485948BFB966440A0 /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backup_poller.cc; path = src/core/client_channel/backup_poller.cc; sourceTree = ""; }; - 2002D045553D0BAC597D9C1CA5907FA9 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 2003E6F47C25608319AB8631B76C1FF9 /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; - 2004423D2DC64E98F68C93452AB1969E /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; - 2007CCC3F13365C4BDDD7CF8C2650714 /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; - 20122F08C97E7973EF2D680E77646A03 /* domain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h"; sourceTree = ""; }; - 201771171C873F0F6CC83141C0ED2BEF /* zone_info_source.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zone_info_source.h; path = absl/time/internal/cctz/include/cctz/zone_info_source.h; sourceTree = ""; }; - 201E1D5C24DF63BEE55739B6E2BF65AC /* per_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_cpu.h; path = src/core/lib/gprpp/per_cpu.h; sourceTree = ""; }; - 201F56EDF90D11A4B2F59B68B686A5D4 /* windows_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_engine.cc; path = src/core/lib/event_engine/windows/windows_engine.cc; sourceTree = ""; }; - 2024F968E8DE2C54DCC25FFA52FE9C83 /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; - 2039A4990EECCEFCE53AAD3041692D71 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; - 204863ACC4A557F50611957FA468CAAE /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/field_def.h; sourceTree = ""; }; - 2049B8C4F1747E3F69D27F3B117169C0 /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; - 204A5B18A09FF3F1CFCECBD61653A8D9 /* cfstream_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_endpoint.h; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.h; sourceTree = ""; }; - 205EA916162E0B4F104BC6C082A22FEC /* ResourceBundle-grpcpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-grpcpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 2065E053CB75A9F06D891B887FADF0C8 /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; - 2067E088339101CF22739D1621D0AEB7 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; - 206F54EAA2B8A938FDDD394F9BDEC87B /* simple_slice_based_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simple_slice_based_metadata.h; path = src/core/lib/transport/simple_slice_based_metadata.h; sourceTree = ""; }; - 2071A2E83CAE3AD6BC5124A665CDEB85 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - 207FAC59107DB1FB56E4AAF2F1BAC7A8 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - 20816FB41B5E2C0E9C61DC5C8E4FE4DC /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; - 2084478FE25E4A5CDF71B8BAC7966243 /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; - 208ED97C6A6A5F2C67C7736EC4B8A7DA /* route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h"; sourceTree = ""; }; - 20961AE346FD5140550E27BE9C3BAF2B /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; - 2096E2C313DC827C2B844A82B97A97EB /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 20ABB2EEF3A7AFDE2B5599A25A4342C8 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - 20BFA869D8C9227B8F2A124484BFB3C3 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 20C03FA7839059434B41EC36123D4977 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - 20CC57A6199C1F3F58318928A2B6F949 /* SettingsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsProvider.swift; path = FirebaseSessions/Sources/Settings/SettingsProvider.swift; sourceTree = ""; }; - 20D04045F3509BB99DC4CD860B11E8A1 /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/linux/env.cc; sourceTree = ""; }; - 20D092D9E58465768DE9A5794E297098 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/gprpp/load_file.h; sourceTree = ""; }; - 20DAB0D10357AC0467943847FCA16B69 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/client_channel/retry_filter.h; sourceTree = ""; }; - 20DCB78FD795C212CFFD62FCA5E4C8E0 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; - 2120944D48FFFE005EE3978F14F8E591 /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; - 212B866DF19AF07C5012C56326CBAC46 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; - 212D6E06A3EDC133FA15680D33AAB2B8 /* FieldValue+Encodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FieldValue+Encodable.swift"; path = "Firestore/Swift/Source/Codable/FieldValue+Encodable.swift"; sourceTree = ""; }; - 213616686A2B08697F40C67C3974E4E2 /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; - 215B5819E6BA14A6E0CC1F70205C64B8 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; - 216048025598D65E95D1D18FC8575401 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; - 216518456E8A882E5358AFE0C6AA1062 /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/load_balancing/oob_backend_metric.h; sourceTree = ""; }; - 2166B37D6904F10140F80A9B98CA92F2 /* link.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = link.h; path = third_party/upb/upb/mini_descriptor/link.h; sourceTree = ""; }; - 21794A2B7EC727BD450EF42B2F9A166D /* FirebaseRemoteConfigInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseRemoteConfigInterop-umbrella.h"; sourceTree = ""; }; - 21816F12823835230ED25751E5B3CAF6 /* memory.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h"; sourceTree = ""; }; - 21828441A5527BD7A226F5A07C5E5DC4 /* resolved_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolved_address.cc; path = src/core/lib/event_engine/resolved_address.cc; sourceTree = ""; }; - 218B693F0E08C29105F812352729567E /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; - 218E5F564264978AB14947774F6CAE92 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; - 219D19559EE5E46EE8DEB2B1213EF276 /* listener_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h"; sourceTree = ""; }; - 21A295181F786E99B850D5B7D0913ACC /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; - 21AFA0901CF5DFD241413068F140FDDE /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 21B16EEECC2F6B21902F34A2AE4A2D3A /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; - 21C41D45EEF249B5290C2A95953B636D /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; - 21C766D3E580001116CF0670803D6302 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; - 21CCD26320401BC5D647DF80CC3264C5 /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; - 21D241936E3D8C37A7A1808E4AC56341 /* Transaction+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Transaction+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/Transaction+WriteEncodable.swift"; sourceTree = ""; }; - 21D4C6A220C3652A75FFC8117764B13C /* cluster.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c"; sourceTree = ""; }; - 21D84C26C58981D3681C74CC2201F346 /* http_uri.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h"; sourceTree = ""; }; - 21EC4AAE364E8BB58DB35C1EF5900911 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; - 21F4952CA411CCFA0607E147F1719BC0 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; - 220AED87ABF8C858FCF68FDF7EFD8E51 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - 22123E72E91C952F1F45CE87E9BBAB92 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; - 2229063406D3E4938AD53425558AC568 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = include/grpc/support/json.h; sourceTree = ""; }; - 222B5361B20C3CC2F2DC81CB9DBDAEF2 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; - 2235EB1743BB1FBE4FE529BA44151F4B /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 223BF053A32707A6F84F0650343ACC52 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 224F6B97D216A04E4B96C6D3EC4C450F /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; - 22549076D453F951EB86648210E200D3 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; - 225A8B69D67E408B3FB2F67D6BF4D416 /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; - 225FD5981B0B130B8F4DCF775AA76327 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - 226917686FE46B844530C10023AEFF0A /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 227CF7CCE8B62C981AB709CD41F7DFDD /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; - 2282AF84D17C15826DDAA3D0CEBB7FBC /* registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = registry.h; path = absl/flags/internal/registry.h; sourceTree = ""; }; - 2285CC684E259ED8843E937053F54C0F /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - 228857644EF34E6CFFDCDFE81FEC9F6D /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; - 2292EEACA8793DD77748E660A3A4F942 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_pool_interface.cc; path = src/core/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; - 22ABDCCA5BD111EE349FD36AF8470271 /* FirebaseCoreExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-umbrella.h"; sourceTree = ""; }; - 22B08782CD44D5915482CEC485490C8C /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; - 22BE5B8C964AF111A103A6CD1C0645DB /* max_concurrent_streams_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_concurrent_streams_policy.h; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h; sourceTree = ""; }; - 22C6B4E7E2B46974DE058592B1DFA0EF /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; - 22CED4A49793020F0F866C96976D428E /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 22D292C6288097A769A535E4E8BCA2C6 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h"; sourceTree = ""; }; - 22D4B40646A44E8219D17F2743CAFDF0 /* PromisesSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesSwift-umbrella.h"; sourceTree = ""; }; - 22D52111DA1EA4E3D38377E42D5E505F /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; - 22D67E0684451C583C54316187006449 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 22DA1B34299944DC24BE5C4C7C844A27 /* flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flag.h; path = absl/flags/internal/flag.h; sourceTree = ""; }; - 22DB72CB33E68909BEAD45075FA43F36 /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; + 191642D4B6183DE551CEA161CD1457CB /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 191FBD7FDC9E956904AFF0A1E42B50CE /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 192098F692168C8F5E8AF4C587D02D85 /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = src/core/lib/security/authorization/audit_logging.h; sourceTree = ""; }; + 192142F996E718186E0CF65EA111A3E7 /* value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.h; path = third_party/upb/upb/message/value.h; sourceTree = ""; }; + 19239848BBB58FE9D5235C2288C8FB59 /* FBSDKGateKeeperManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGateKeeperManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.m; sourceTree = ""; }; + 19291C6D5B8A6E42686156C56B21C330 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; + 19347175537611B3F126017E2F7195DA /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + 1941830DA1FC42C13902C54592089B05 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; + 19437EBEAA186FA348CF59405FC8D6E6 /* sessions.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sessions.nanopb.h; path = FirebaseSessions/SourcesObjC/Protogen/nanopb/sessions.nanopb.h; sourceTree = ""; }; + 194A0ACA11B689587025CB43E6793A9E /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + 194CFE26D529ACB725C0E46591A2E464 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; + 194E78EA270B0C18BAE95B7769388747 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + 194FE357D19680F0443375602453A1E6 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; + 1951EA0017420B74D4D7088EB45DB400 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; + 1956E516F9F8D7A6EC0C4C793CB2AC3E /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; + 195EC0FF6FF60CB384EBC8CD10DF7A09 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/service_config/service_config_call_data.h; sourceTree = ""; }; + 19613E298D37A60E97F9644EEEC5B219 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; + 196F5A88E6FC55CAB2A46410A6342ACF /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 197EF74DCC6C10F0370AA72AE730DDBA /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; + 1987A908DFBA7A903CA9CF06E9BBF924 /* address_is_readable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_is_readable.h; path = absl/debugging/internal/address_is_readable.h; sourceTree = ""; }; + 1992FACDA91EB918F83842032D03A9DE /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 1997154079AFC39ACD5285CC1EC645D0 /* metadata_query.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_query.h; path = src/core/ext/gcp/metadata_query.h; sourceTree = ""; }; + 19A30A71E653F61106C72FFEA12F1C5D /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; + 19C972FBBE070C268C4A9C24FBFF0C53 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; + 19CFE919F1407BAD9EE0B18001E8A8B3 /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; + 19E26A4B169F49DC1D739FBF65C47B31 /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; + 1A00B39B81932371A65D921F3564445C /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 1A06280367B42F0171CAD217D096DD81 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + 1A06C44CCE2BE7B37A26CDC854D0B216 /* connection_id_generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connection_id_generator.h; path = src/core/ext/transport/binder/client/connection_id_generator.h; sourceTree = ""; }; + 1A0744CFD929C3DF13B6C2A2A1E88BA3 /* validation_errors.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validation_errors.cc; path = src/core/lib/gprpp/validation_errors.cc; sourceTree = ""; }; + 1A115225F337AF96B45227130D76530A /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = ""; }; + 1A120536B1713C47E76AE899FCEAE204 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + 1A395AC2773900746CFAAF0AE57A0DF5 /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; + 1A702392A775E9ACB0A9F430868D17E7 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; + 1A73A94AD93901D93169DEC72F8803C1 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + 1A74FAC2C44A62DADF73D55AFB0D0DBC /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + 1A7A1B9A0081C7B9420637EFE10023FC /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; + 1A7B5781356A79E787A4AA6F8C68B0AA /* xds_http_stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_stateful_session_filter.h; path = src/core/ext/xds/xds_http_stateful_session_filter.h; sourceTree = ""; }; + 1A82FB96F0B12346E5A7609A66363180 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 1A8BBCA1E000496CDB79FB4C11664F8F /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_balancer_api.cc; path = src/core/load_balancing/grpclb/load_balancer_api.cc; sourceTree = ""; }; + 1A8EEF2A96629191931384C824A92A9C /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = util/env.cc; sourceTree = ""; }; + 1A92B67678D7CC5B14C124DC2EC2E41D /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 1A94DC94B39988227912E1F7A39E37E7 /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; + 1A963C250CEF0B2E1D59C8B588A1744C /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; + 1AA48D5F53F48C9670D5122BC174C914 /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; + 1AA53FA5458D1AE881439E1DD978EA34 /* path.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h"; sourceTree = ""; }; + 1AA80624C2D95E2684D7E68D7B1F9473 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; + 1AB41D141FAD4E821D5F919C8610FC31 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + 1AC533A5CBB2C1B2034F83CEF8A41BBF /* FIRTOTPSecret.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPSecret.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret.m; sourceTree = ""; }; + 1AC590D6555F74E3212073F770AB4D2C /* method_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = method_def.c; path = third_party/upb/upb/reflection/method_def.c; sourceTree = ""; }; + 1ACB47929D6C807581C15A374A681F4B /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; + 1ACDCA1C46D56E00091B90CD18C77C6E /* sockaddr_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_utils_posix.cc; path = src/core/lib/iomgr/sockaddr_utils_posix.cc; sourceTree = ""; }; + 1ADA24C25CF60AC5D8F637A76BC24AB3 /* typed_struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c"; sourceTree = ""; }; + 1AE03E8EA204BE367F2011C36E20DD94 /* GDTCORMetricsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsMetadata.h; sourceTree = ""; }; + 1AF726A5892D240793F6BDA24F29ABBE /* path_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_util.h; path = absl/flags/internal/path_util.h; sourceTree = ""; }; + 1AF99D8BBA21C896B36862DF8B450479 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epoll1_linux.cc; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc; sourceTree = ""; }; + 1AFA38D1DA9058AD4E147861083714FB /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + 1B03BB8C2CAF5BA748E66A9D04F0454D /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/support/atm_gcc_atomic.h; sourceTree = ""; }; + 1B21383EEF5A69A5FD7C600345DC1BCD /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; + 1B21D7AB9EE6B278804019932EBBB11A /* grpc_plugin_registry_extra.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_plugin_registry_extra.cc; path = src/core/plugin_registry/grpc_plugin_registry_extra.cc; sourceTree = ""; }; + 1B24E7D93B6BFE288247A94ADBDD44D9 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 1B29158980D8C9A6A071331A30608E4E /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_connect_handshaker.cc; path = src/core/lib/transport/http_connect_handshaker.cc; sourceTree = ""; }; + 1B3CE82251C0B5EE1C23C6E03B1C6B68 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/resolver/resolver.h; sourceTree = ""; }; + 1B49A16FA40368185279B4A2C310276A /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; + 1B54A56E1A6F5307790E8D1349C98530 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 1B5B0726260B2425D3A67F5D5D43235B /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; + 1B5E42570E13EF4F4520D7BFEA50142D /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + 1B61C9A08380AF73479306F79B91A346 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; + 1B6229344D07E0B9A93C615C8CF36868 /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; + 1B62BC5FF158B701AF207DD2EBBD4D51 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; + 1B67A0B06607E185F277467D822D23DE /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 1B67A89B9951B300C1D2101C6EE5A5AC /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; + 1B6BE6CA658589AF89F36C72C51141C3 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; + 1B8115FC500A961DF058A1A26F8F277E /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; + 1B8D4C0C0163A5B5F355648B6ACB31EE /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; + 1B9788E1CB40144BC50DAC2585CF6B04 /* FIRRevokeTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.m; sourceTree = ""; }; + 1BBA3847783FF4CAC219B51B42714CA1 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/client_channel/retry_throttle.h; sourceTree = ""; }; + 1BC917CB766CDE80D16B16CF3FD4935A /* mutex_stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mutex_stats.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c"; sourceTree = ""; }; + 1BD59D1A348ADB712E502154818F2DD1 /* FBSDKWebDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialog.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m; sourceTree = ""; }; + 1BD5EE8DE3620713C1F4C1871FEAABAE /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; + 1BD6758C550CCD9EAA0C101F6C267B37 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 1BED69B94D1E935BAD0BAD6D683FDCD3 /* call_tracer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_tracer.cc; path = src/core/lib/channel/call_tracer.cc; sourceTree = ""; }; + 1BF1F3448142C79BEB23431CA2B8702D /* FBSDKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKColor.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m; sourceTree = ""; }; + 1BF5D50B764C908E949BE1DCBA1CC04C /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; + 1C0216D9D247B32F4D6E42E52D9C5589 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/promise/trace.cc; sourceTree = ""; }; + 1C234FE469BEFFA259C3F4E08AE20C16 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; + 1C2ACC1088FF89C844BC8F833A38A2A6 /* posix_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_endpoint.h; path = src/core/lib/event_engine/posix_engine/posix_endpoint.h; sourceTree = ""; }; + 1C363C241109FD1290B7F146ECABD8C3 /* flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flag.h; path = absl/flags/flag.h; sourceTree = ""; }; + 1C36572BAA189CD8738FA6D5BD6FABDF /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; + 1C3E605B69E4A54238AFB9986C831654 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; + 1C401A15D2BA2363836269FA8FDC7B72 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akey.c; path = src/crypto/x509/v3_akey.c; sourceTree = ""; }; + 1C456C11C88B04763CCBB4B3AAFCDA44 /* address.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c"; sourceTree = ""; }; + 1C460D8F2FC2299D6B46C6844DBEF179 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; + 1C4C710B0BAED0C7BD1EB589E68C17E0 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageRequestOperation.h; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.h; sourceTree = ""; }; + 1C68A2DAFE27B53B89DAF433F1FDD1BF /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; + 1C8B1CBAF5ECE7EC364857EBFF52DF9C /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; + 1C943ABB0DF12A8B2FFFEE206C2A75AE /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; + 1CAE7237F1A69F67F571A94040BA0948 /* FIRAuthRecaptchaVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRecaptchaVerifier.m; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.m; sourceTree = ""; }; + 1CBA5D57AB712C13D9CA5F76DA5D37FF /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; + 1CCC10C5453F1D9595853DF751BCBFCD /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; + 1CDA8B1069F2B43E2F349F87C59B8055 /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; + 1CDBD8917E2F8A1BD7EA98055520B21B /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; + 1CDC8B058FB2673D569F17DD83CB9769 /* rls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h"; sourceTree = ""; }; + 1CDFB6898EE0877961169F16257454EF /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/service_config/service_config_parser.h; sourceTree = ""; }; + 1CE032DF9BD8ECED04AE75E1A0D58B0E /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; + 1CF2685CAEC151D34C43B1950454F2EE /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; + 1D009CA44950D513B66D135FA67320A4 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 1D08F9290C6DB2CD6EB87F66E519642A /* log_uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_uniform_int_distribution.h; path = absl/random/log_uniform_int_distribution.h; sourceTree = ""; }; + 1D099B1AF0149F7AD323150066615F6B /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; + 1D0A1F7A146A7CF6492B9ED25FE567DE /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; + 1D0F2A4ED30FEBE73CE78A7CD6E2B585 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; + 1D1D47F38A6DB71573DE26B09029BDFD /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; + 1D3404E050FC33C005D9DB27C770417F /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 1D3A60920392196DBCD52DB016FA2A07 /* map_sorter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_sorter.h; path = third_party/upb/upb/message/internal/map_sorter.h; sourceTree = ""; }; + 1D6376E62F11DBBD7D6A3C58A26999BE /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/enum_value_def.h; sourceTree = ""; }; + 1D6ABF958215FE0925BB590632770A18 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; + 1D7480901E295BF8DD5DC11FE2107F87 /* DeviceKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DeviceKit-dummy.m"; sourceTree = ""; }; + 1D7B3F4FF6E614ECAA8E05123AD560DC /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; + 1D7B4C36A19D6997CA0B58D5BB2EFB85 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 1D7BCF0920BA72807BACCFBC594DFE99 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; + 1D7D18194489388681DF933D43B27019 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; + 1D7F13FE06EE1BB4A451428F674FA6CF /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + 1D8667A5FDDA75125E10C518554AF39C /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; + 1D87D55D6EBEA2002DA12F598F3E82F8 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; + 1D928CC44FDA4A45C83C941EB05E1AE6 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + 1DA00B5A93C441E52D37658266D6E941 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; + 1DB88558ECB82826BBBFFBAC4259B232 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_selector.cc; path = src/core/client_channel/config_selector.cc; sourceTree = ""; }; + 1DBAC3B2D57D0DBADFE407359745086A /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; + 1DBC681CC0E30A623DD0F37A635F3205 /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; + 1DC54E2199C6CD6450C8866E126A91C7 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.h; sourceTree = ""; }; + 1DCC6A0C6704846636ADEC64C251A200 /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; + 1DCEF48D8B279114F23E33CC3FB6E0CF /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; + 1DD7435F93C31C210C33802638A1F276 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; + 1DDBA6D2D13B28B729444B0AC3BA07A9 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; + 1DE2CF6AFB1BFEF3D8FCF0DB30F1E3C1 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; + 1DF28AD96A549E01E602FC42429D25BF /* any.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h"; sourceTree = ""; }; + 1DF61FA96F7F3A4606D9C93D4911C5B6 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; + 1DFC2A8277DBF3201CF7309BB6EE45A5 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; + 1E052C7ACA7A6848D29E42764B8483BE /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/codegen/method_handler_impl.h; sourceTree = ""; }; + 1E0CE423C48362EDEB29706762F89093 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + 1E13D4ABB420F21C6DBB4B4C25D90523 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; + 1E156260024F9D8DDDF2F601C10C4163 /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; + 1E1C5F20BF79D8BE481D942A80090366 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; + 1E457795B706C2278F774E6D3D6DDF95 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; + 1E5532AE10BFEFE103F4595E0A58B2EE /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/message_def.h; sourceTree = ""; }; + 1E6A3919878B89DD3E4BDFD4EF7BF0D4 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; + 1E73D43E844FFC6A8E10EA99DAF4C996 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + 1E84BA4DC8ED02735CFC127345C08E68 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; + 1E89FA969C4CBC802392349403AF83FB /* TZLocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZLocationManager.m; path = TZImagePickerController/Location/TZLocationManager.m; sourceTree = ""; }; + 1E8E4D8537EECF2F30BC31228212F91C /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; + 1E93441E4D05780CAF8B0BE189FA7954 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; + 1EA7A69A64E92C39A6707BFD38EEF88A /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 1EAB71909135DC786AD39D82569C92EB /* http_protocol_options.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h"; sourceTree = ""; }; + 1EB42D0E4B3AA5FA04F1FB0B270FF678 /* tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_crl_provider.h; path = include/grpcpp/security/tls_crl_provider.h; sourceTree = ""; }; + 1EB9F88E9743029D9F84B1FB49BB5846 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + 1EBF0AEA85DF190171C15DE6717E446D /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; + 1EE9D287043E11F521F958CD1AA4DB6D /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; + 1EF2268638E8C9447D18B7409B3E6282 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; + 1EF796253C0E5671769584E70B3AF9EC /* resource_locator.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c"; sourceTree = ""; }; + 1EFC13F262D3B56F9BC1C8FD70F9A218 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; + 1F04FFFC30B97B0FAC7FC1C9BC9512F8 /* FIRCLSRolloutsPersistenceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRolloutsPersistenceManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSRolloutsPersistenceManager.m; sourceTree = ""; }; + 1F07C38C90BCD4AA184FF712117FD11B /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/event_engine/trace.cc; sourceTree = ""; }; + 1F0AFEDDE1DD5552D02B875A773C0DB6 /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; + 1F0C7DF062789407CA949CE6E368A1D1 /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; + 1F0DED6B727834B5F0083666C4C8E71E /* datadog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h"; sourceTree = ""; }; + 1F25789324E3443DCA930B7F0646835E /* wrr_locality.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrr_locality.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c"; sourceTree = ""; }; + 1F3A4510DC32A0DF3CD82A111999EF8C /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/internal/decode.h; sourceTree = ""; }; + 1F3AAEF3028CD86197DD3FB4C41B2D43 /* non_temporal_arm_intrinsics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = non_temporal_arm_intrinsics.h; path = absl/crc/internal/non_temporal_arm_intrinsics.h; sourceTree = ""; }; + 1F46B02ECE16E4813203D0665ABF48D7 /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; + 1F6EC31C322647A6081213C3D0C74467 /* server_info.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h"; sourceTree = ""; }; + 1F785FAE0FF3A81CD14B7CBE43785DB7 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/load_balancing/xds/xds_channel_args.h; sourceTree = ""; }; + 1F864F9429D394273D384E8A45B6D14A /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; + 1FA3B175AA29D012C76A20A49DB6D38F /* sem_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sem_waiter.cc; path = absl/synchronization/internal/sem_waiter.cc; sourceTree = ""; }; + 1FA4B148C5D6B5D5D8D7030E45F7DBA0 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/load_balancing/subchannel_interface.h; sourceTree = ""; }; + 1FBFA5581BCEB2880164A123D3E935CA /* all_ok.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_ok.h; path = src/core/lib/promise/all_ok.h; sourceTree = ""; }; + 1FC033FE6AD1ACC7E1D07F9C74515CD6 /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; + 1FCB852C33805C0E801438B1B8CA21C3 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; + 1FD3305C939ED2B4CB98368D7C3CDA86 /* endpoint_binder_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_binder_pool.h; path = src/core/ext/transport/binder/client/endpoint_binder_pool.h; sourceTree = ""; }; + 1FD422F656B01D24AF2B1DBBAAF4AF71 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; + 1FD47565DF241542F4C6E81F71E9053A /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; + 1FD6239FFC3610F799C3EE49AAA8DF68 /* FirebaseCoreExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-prefix.pch"; sourceTree = ""; }; + 1FE6A7ED47D45D7204612AB32BF54871 /* strtod.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strtod.c; path = third_party/upb/upb/lex/strtod.c; sourceTree = ""; }; + 1FEF6C5C0EC3CD8B9B64D52A1D7FA398 /* FBSDKBridgeAPIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIResponse.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h; sourceTree = ""; }; + 1FF785AD622F0A3DF65D916157DDDAC7 /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + 20030FDC2427B4CCA5A5F79CBF972A24 /* simple_slice_based_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simple_slice_based_metadata.h; path = src/core/lib/transport/simple_slice_based_metadata.h; sourceTree = ""; }; + 2007EEDC44C5FC2FAC588A2337B897F2 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; + 2011920F5DF13A7BCA0EE1BB972113DE /* dns_service_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_service_resolver.h; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.h; sourceTree = ""; }; + 201725757ADE87734AA381E6BE6DB1BF /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; + 201FFA3AB38347A583ECDEFBA0A02A34 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; + 2021D21D17BF908BE79D1181E1489612 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 2044367157951ED94395EAAB25976BE1 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/connectivity_state.h; sourceTree = ""; }; + 205B5C43E95D747C7122152BE7D7E864 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; + 205C6605654D3B7CD1E2336CAB4E0FA8 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; + 205E39A569C9F6C3DC1F357C3FC1919B /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; + 206F283281F979D4C9857BC2255DE56D /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; + 207BDECAC3031BAAA39BFC8BE0245039 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; + 2089B445061FAFBC48BACA58CE38AB05 /* skywalking.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h"; sourceTree = ""; }; + 20996B14CC23F87BAF4A1E8C12FFF96C /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; + 20B4742108D9C12DA4DFD7F41E04EC01 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + 20C20E72C597C0BB8CEC8911F32B1D73 /* event_service_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h"; sourceTree = ""; }; + 20C44B5DB5247C04D4F75145D6FAB0BE /* SessionStartEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionStartEvent.swift; path = FirebaseSessions/Sources/SessionStartEvent.swift; sourceTree = ""; }; + 20CEF42A154F4FA1A7A1EFBDC8432794 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_windows.cc; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; + 20CF832A472627DC724BD4EB8388E119 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + 20DB3B1BBA877184F8BAA1AD8C4343DF /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/event_engine/slice_buffer.cc; sourceTree = ""; }; + 20DC7031E2D4F673D776E3FF494E7A3B /* xds_audit_logger_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_audit_logger_registry.h; path = src/core/ext/xds/xds_audit_logger_registry.h; sourceTree = ""; }; + 20FBDAFEAD17C83E15D56981FFFB3E1F /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + 20FC1382E7C1687E007099EA3E2663FE /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; + 211B8A2B9BA047B29DF59DD429C87B06 /* cluster.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c"; sourceTree = ""; }; + 211CE059666A5CFECAB2119A938BD9BD /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; + 2122203842423B61F95BA75F4B280B52 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; + 2128B3DE5C5D7E3C9836F68E31F9EDBD /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; + 212A4E78CB9B5A5BA548266334DCD4C0 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 2131F06BECBDDAA96B8A5A3D6671BD33 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + 2140B802B8BAF0FC94230A85BFF1F3A3 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/json/encode.h; sourceTree = ""; }; + 214489387A8C4FE6211FD5491DA282FF /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/json/encode.h; sourceTree = ""; }; + 2148460F5F4CE0A58BC22AD2C9418DC2 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; + 214DF793F610AC81F5D6EE5685FFC265 /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; + 215254EAC6327543B4CBCE2583DB6653 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; + 215BFB8F1B4D5D9C8D972BA8D02D8B83 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; + 216EA4CCC5458D9AB95EE0447DD1DCA9 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; + 217C799CBEBBB002374699D31C1A0F05 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; + 217D1534936EBE2333CC1F6775AE73D5 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 2198097276D40B5BF254F9EBE40E2426 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/client_channel/client_channel_factory.h; sourceTree = ""; }; + 219FBD0B136655138196B9B2243D8004 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; + 21B99FD1122A6F331E38DD9D015F9DAD /* clusters.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h"; sourceTree = ""; }; + 21C177AE554AA8308A5F61EF1D55DDC0 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + 21C4B2108DA657E892FD8F68220EADE4 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; + 21DA9AEB440109A8267F925632308C64 /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/internal/def_pool.h; sourceTree = ""; }; + 21E265D554D9D8B10AC30E6920780272 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + 21E3AC0F0811A594B317809B27587C22 /* QueryPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QueryPredicate.swift; path = Firestore/Swift/Source/PropertyWrapper/QueryPredicate.swift; sourceTree = ""; }; + 21E7B6FD62C956EA884D6937CA84D188 /* ndk_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ndk_binder.h; path = src/core/ext/transport/binder/utils/ndk_binder.h; sourceTree = ""; }; + 21EA216FB5BA5115914AF4F0523C66F2 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + 22145A7E97FB26B795471101E9F0A9D6 /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; + 222D926C235F83FB2D998089AABB5570 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; + 2236B3C70A0C88FE42642987F6390A15 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 224007AA924454E24C4258AA2A678D20 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; + 225D2499F6826586005F4EB275BBC6CE /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + 225FF9A3CF2E85308B488605BD96D4EC /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/propagation_bits.h; sourceTree = ""; }; + 227878292F7BA06CD24EC451AACC7ACE /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; + 227F52B69264CCB37E594C8E1E6EEF13 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; + 22B77D837BB3FE9DBD50F2FA8C015F3B /* ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; sourceTree = ""; }; + 22BF8BE9E5930035355F54EF5E97840C /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h"; sourceTree = ""; }; + 22CF508AE5784C459CF7BC9F8BAE2B1C /* FBSDKKeychainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStore.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h; sourceTree = ""; }; + 22D393C0A3214E77DA69325BAE006BB1 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; + 22DC611BBC9189D72D43BAC4AC5C4F58 /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; + 22DF82491B841D933B2238A233D4B353 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; 22ED314CBA3D71BACBA14482531A295E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 22F7DA58E1E9C8EE542F6D2E4B6A40F8 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - 230D3A293F1E7BA490605CBB81C7D32B /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 232586A2B599A8F8BA5C0B9E60CDCA30 /* rls_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h"; sourceTree = ""; }; - 23284CEB679C8A8F97D340960EF4D968 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; - 23290E311FC66A357367C44883F62C3B /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - 23304D6E7EC45891E214F943BA03BFB7 /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_plugin.cc; path = src/core/client_channel/client_channel_plugin.cc; sourceTree = ""; }; - 2337DDD1408F4EFB2A5757171E9F429F /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; - 234BD209DB3E806E9FB98CE8E2BCC39D /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; - 234CCB12474FE1E2EF8608788AED770A /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; - 2359CE57FB3A76C331360B404B212E72 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 235BE8323E4A0454A229CE2E0DE9D888 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 2369399578915B80F309468253215033 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_integrity_only_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc; sourceTree = ""; }; - 2371CB7E74F417F4DACB4143810FE9E6 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/impl/codegen/atm_gcc_atomic.h; sourceTree = ""; }; - 23792007C36234A6105C3ADCADC74389 /* semantic_version.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c"; sourceTree = ""; }; - 237A8D91217B7626D61CBBEA8972FF66 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; - 237B1E5F67235E102DE7CA3435F12A40 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/client_channel/connector.h; sourceTree = ""; }; - 237D543D700C734F4B71B28BD2F757B0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Firestore/Source/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 23815C7C118EF39286F46E14E56C948C /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; - 2382AD08504589A424FC98C8E7B57DAF /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 23833A4BF9BF6742757DD734773129DE /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; - 23898CB1023773DB2F9DEA4E0FC3FD45 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; - 239592782B3463FB9BF7DDF8EB4DBAE4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 2396142431D680935936F6A3D40E2498 /* tagged_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tagged_ptr.h; path = third_party/upb/upb/message/tagged_ptr.h; sourceTree = ""; }; - 239BA181F4C8D5AA23540E60EAF62F2C /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; - 239CCC345AFD04C9139D45F9BA75B1E9 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; - 23AB3EB4DF0474D85B420E506E85DCB2 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 23B2ED42716C5826248C1BF99C8A647A /* constexpr_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constexpr_parser.h; path = absl/strings/internal/str_format/constexpr_parser.h; sourceTree = ""; }; - 23B9C9E655A6F1B9FC5C563338D93C64 /* enum_value_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_value_def.c; path = third_party/upb/upb/reflection/enum_value_def.c; sourceTree = ""; }; - 23CD5AE985A157AA7563840D63B2151A /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 23DCA865EC9B6BA254118E99B227C0CE /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb.h"; sourceTree = ""; }; - 23DF3E873FE9096B47A98D9EF27A4DFE /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; - 23E306AC17CA04FC2B1ABC7FFCC26E28 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - 23E706CEC3C2B6B9521054CB3C2EB582 /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; - 2402BB02DA98386C3D9824022509CA70 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; - 240F86B5C21EAD499FF490D257D4A0F5 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; - 242884B0F378096627EEF734C684A1B8 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 2430350EB4D22C4E96B0E574909CF5FF /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; - 24332D51B5024AD7171FB9A93FD65416 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; - 243461F9270DB6FA509BBCCEBBE43BF2 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; - 2451C17659EBFFDC3771CE8CE3BE0FA7 /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; - 2459A7E3F9EEC7FBF0ACB8471C245DB5 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-gen/validate/validate.upb.h"; sourceTree = ""; }; - 245D595BCA2FDE6C28A36FBED6C420BF /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; - 246A516642BE55F7657074E2706D2D46 /* event_engine_client_channel_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine_client_channel_resolver.cc; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc; sourceTree = ""; }; - 247ADBC68E3C7E99AACA63B2A6DCF1C7 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 247C7969DF54268FC551FB856C748966 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; - 2481A3CB14D0436BBED2326A9AE07492 /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; - 248A1223D340B73A00D4C8B02ACB1589 /* shim.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = shim.cc; path = src/core/lib/event_engine/shim.cc; sourceTree = ""; }; - 24ABE8702AB439FC3B8B3ED3DC1B08A8 /* event_log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_log.cc; path = src/core/lib/debug/event_log.cc; sourceTree = ""; }; - 24AD98ABA935C1301785802C1305A91E /* FIRCLSRolloutsPersistenceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRolloutsPersistenceManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSRolloutsPersistenceManager.m; sourceTree = ""; }; - 24ADA36D08A5C45E95969103490DD536 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 24B6E5818C166239635FC98720FB405D /* FIRGetRecaptchaConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.h; sourceTree = ""; }; - 24BBC365ECACCB912F74D9C0BD9CC451 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; - 24CAD4B815321D1D6E7F123D31BEDB31 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 24CEFD5C3D93624DC58F79552DF2E9D8 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; - 24CF4BBB8569FA57BF6103DFD65FF6A6 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - 24E6A0B0AF09A63F0339124A717F22D7 /* number.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c"; sourceTree = ""; }; - 24ECEA693EF9B3340975CF965BB0E60B /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; - 24F0D6E9C7745B8565D13EBE4F134A26 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 24F33B0171E520B5580814C4932C4E44 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; - 2500FA362F5732800FFDBAF5654AEAA8 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; - 2503E871F153EADC4B02D39E0499D7B5 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; - 250668636682C7AD0180D1A23ED9AF95 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; - 25092DA6BA8FF7A07D398DC734419046 /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; - 250B1ECEC0805673DD6FFF1A6F1CA917 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; - 251E472B65D83C09BB5FC0E294DAB1AF /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; - 2527209A6AAE2CA0E149E347D521BF0A /* atoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atoi.h; path = third_party/upb/upb/lex/atoi.h; sourceTree = ""; }; - 2531740A4BC02C5CACBBABEE9ACE0ED1 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - 2534A0F9CC1A29AACEE4F97AA19DD6DA /* non_temporal_arm_intrinsics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = non_temporal_arm_intrinsics.h; path = absl/crc/internal/non_temporal_arm_intrinsics.h; sourceTree = ""; }; - 2537E5E92E0F5C5E451C35E57FA32630 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 253BAFBE1F4E02AC866FF34802C20DA5 /* listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h"; sourceTree = ""; }; - 253DFF0200F4DA1DE21A28BE1B2A98B9 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 254416F4A171AD0E2EBAB05988A8DAF2 /* percent.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c"; sourceTree = ""; }; - 2552CB02B0573E980CCAED11A00631C7 /* GeoPoint+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "GeoPoint+Codable.swift"; path = "Firestore/Swift/Source/Codable/GeoPoint+Codable.swift"; sourceTree = ""; }; - 257BE1B66ADC943B4A1736813D053E25 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; - 25979D057FA4EC6A2D5168EF38543EA3 /* Promise+Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Delay.swift"; path = "Sources/Promises/Promise+Delay.swift"; sourceTree = ""; }; - 25A169F6AB894BF9BDB7E2A82D2DB15A /* dynamic_ot.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dynamic_ot.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c"; sourceTree = ""; }; - 25B4898CED8A9CD6591A55083D76E905 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; - 25B599CD8BAF7CA8FEBBF1C63E72F526 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/internal/map.h; sourceTree = ""; }; - 25BEEDBD97ED202DB6B60D1D95C326C5 /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; - 25C2927BA1354FE1C8613B4B04621BC6 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; - 25D2405EB455E7BBC31E6C61866F5D1D /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; - 25DE4717CD896D11903E71B9340DD714 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 25F40E84B58EBA6B651C8571EC9E620D /* value.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h"; sourceTree = ""; }; - 2601A94CCA2B27C2ED1B7813D960A432 /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; - 260206AA12B46A154D59BBC01F2E6054 /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; - 260F084485A6993326594889EEBD9D49 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; - 26112CD5FD64DCFB2013B39A956FA0FE /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - 261BE7324BC8DC968AB5C3D8B03DB128 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/resolver/resolver.h; sourceTree = ""; }; - 2630243A8CC9E5A439C11474299EB0D5 /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; - 263D637C42A0FF6B25083C4576D4EAEF /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; - 263FF972B1AC579DA706252E41529D20 /* pick_first.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h"; sourceTree = ""; }; - 2640B377DA7DE018132FA20FD17280FE /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; - 26445F19C29D86B8E3042E0C087C0C6C /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/internal/extension_range.h; sourceTree = ""; }; - 2655D87DAF5D286F57BF1BA162891B7E /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 2666D9209A88E682621EAB951B276637 /* FIRAggregateQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuerySnapshot.h; sourceTree = ""; }; - 266BF18C0697433B015646C062BBB528 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 2674071F8CEF25C7C9395B07678334AF /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; - 268819332727BD1238553D6E7065A3D1 /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; - 268FFD29C3249411894B8E18737CC0AE /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; + 230237AEB9E8A036D7EB7EA6C7F7E4AB /* FBSDKGraphErrorRecoveryProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphErrorRecoveryProcessor.m; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.m; sourceTree = ""; }; + 230D1FBC6290C24C371335308E7E7D0D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Source/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 231E225200B7B4B26138CDAC2C61E4D0 /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; + 231E95ED7A7D133B95FA30376DA15239 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; + 23250ADA5F9EB710B7CD348021E79039 /* FBSDKEventInferencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKEventInferencer.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.h; sourceTree = ""; }; + 232AEEB6317B506F20D656FCA0BFD451 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; + 232C5E1CF71E50596D42DD1063B283D9 /* GDTCORMetricsMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsMetadata.m; sourceTree = ""; }; + 235377E76B4457683AFA38A389E6F749 /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy.cc; path = src/core/load_balancing/lb_policy.cc; sourceTree = ""; }; + 2367C0D3BD03677AF1EC946A274C315C /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; + 236FB7EB10F94BB2CEB88002F4527717 /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h"; sourceTree = ""; }; + 23804509902986CEFDB91AFD781C78C8 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/windows/string.cc; sourceTree = ""; }; + 23A6BCCDC264AEEE575D9AA2CF782861 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; + 23B7FB1B950E018BE7E3892BF92F41C1 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; + 23D7C0AE5202ADD84CCCDBD457B89525 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; + 23D876A34BB0DFD137C31D265904E278 /* RecaptchaInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecaptchaInterop.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RecaptchaInterop.h; sourceTree = ""; }; + 23F0C96C918E5623CB766879A976C97E /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; + 23F9499DC636B7B1CFD05CA2FF61664F /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + 2408342D6767DD28091DA74A6CE45626 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; + 24095270D50CB4758E5CCEC708790AFF /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; + 241691EDF60D9751A366790636BAD2EF /* GDTCORMetricsController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsController.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsController.h; sourceTree = ""; }; + 2418F79BDB6EE34D085A48DCB8AAE117 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; + 244AF837F9EF539D4C2C9D7C4F13ED6E /* socket_option.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h"; sourceTree = ""; }; + 244C2DCB44C7ED74A6D79D6E1B39B667 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; + 24621DD9A17A7F8E30C4935BCBF39CF8 /* FBSDKAppEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEvents.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m; sourceTree = ""; }; + 246F6671BC5A3A2A10A20B8C3661A4F3 /* http.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.c"; sourceTree = ""; }; + 247CA156307BEB2C50B3BB8F2EB8B684 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; + 24888C84654435A63580C70C5D13D401 /* FBSDKIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h; sourceTree = ""; }; + 24941496D3F6690F5F235B5B38BB4AC6 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + 249E287FAB0F46B28FFC6867B9839237 /* cpu_aarch64_fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_fuchsia.c; path = src/crypto/cpu_aarch64_fuchsia.c; sourceTree = ""; }; + 24A12EE70C116D228988B6A39183EC56 /* http_protocol_options.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h"; sourceTree = ""; }; + 24C7ED2D5293534E5D6A8B5A97DA13F7 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; + 24CF2B4ED8A869471F3121A72CAA9743 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + 24D1A10803A28B542746264B524A254B /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + 24D70C4281F8E4EAAB910713E7701F51 /* FIRCLSSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.m; sourceTree = ""; }; + 24E73BA5F00AB6FA5A13594F037B9987 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; + 24ED490BBDB3EF87E368A1D4628AB724 /* call_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_factory.h; path = src/core/lib/transport/call_factory.h; sourceTree = ""; }; + 24F28278A4EED2FBD42F19836C59CE20 /* FBSDKServerConfigurationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfigurationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m; sourceTree = ""; }; + 24F7FDCEFBA540A7C52ABF77C8EE2173 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/interceptor_common.h; sourceTree = ""; }; + 2511425BEC4B0C0562EE3442736DF0FD /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; + 25179981FB82751FDB366929E3A6432A /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; + 25183848DFBBDAA930D5E9D697DD3D7B /* FBSDKProfilePictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfilePictureView.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h; sourceTree = ""; }; + 251AE40A16A13CF687EB53C404B66D42 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + 2526A0755B587983DC01295E004D89F4 /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; + 253703E063B31569D55BA645D0422450 /* GDTCORMetrics+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORMetrics+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCORMetrics+GDTCCTSupport.m"; sourceTree = ""; }; + 25399ED3D1081E879F215104C645929C /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; + 253CE005A486D7E19C85B8129CA56F62 /* oob_backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = oob_backend_metric.cc; path = src/core/load_balancing/oob_backend_metric.cc; sourceTree = ""; }; + 254B6D343F93465B60BCEAC705BCE475 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; + 25522D96D5737823661316D97A1E9583 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; + 2552FD3FA3B260A34E3D219CD2C11A5E /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/mini_table/extension_registry.h; sourceTree = ""; }; + 257AEBFA1368B4BDC71BAB1A10C9DEF2 /* max_concurrent_streams_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_concurrent_streams_policy.h; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h; sourceTree = ""; }; + 25824EFCD08834AA57E13B1F5184D143 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; + 2583491FCED8BBC24A84867A231B41C8 /* backoff.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h"; sourceTree = ""; }; + 2587432C96D6FE76BC57FB8BE589DA31 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; + 2587AA1480BF27141052B195D3B8F132 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; + 2595CCE0E8CD280C523468F5995341B9 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; + 259619E65278F792518A1BF9928AB7F9 /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/closure.cc; sourceTree = ""; }; + 259C417450F3DBC3A8E102BABD97477D /* log2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log2.h; path = third_party/upb/upb/base/internal/log2.h; sourceTree = ""; }; + 25A0CC7B0DA2FCAD4A30D40A1D253478 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; + 25A77749ED273757006ABCF4DC8EA562 /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/internal/enum_value_def.h; sourceTree = ""; }; + 25A8B125A2F8046B660DD1E97D252BC4 /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; + 25DAB1482A21EDB7671405398CEDB0B2 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; + 25EE0232291A3B7C8EED05CD35B3E2DD /* config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config.cc; path = src/core/lib/experiments/config.cc; sourceTree = ""; }; + 25EF42CC879A8DB45244E342DC9985BB /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 25F10C4FDEB0EF65CCC8CF029CC34D08 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; + 25F439FB85B24117162638A4C1214C40 /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; + 261826F32722C791F8387B85CDDBB7D7 /* x509v3_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3_errors.h; path = src/include/openssl/x509v3_errors.h; sourceTree = ""; }; + 26188589D07D58FB4860C6A3F2B68A30 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = third_party/upb/upb/lex/strtod.h; sourceTree = ""; }; + 261B4780EF6E4D6A906535C21DD2D7F7 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; + 2620D4DE0C9CF49860162F5BE574AE77 /* sequence_lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sequence_lock.h; path = absl/flags/internal/sequence_lock.h; sourceTree = ""; }; + 262735ED2CE526B9BAC4692EA627D33A /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c"; sourceTree = ""; }; + 263360264DC59A62C04DA19737111C61 /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; + 263B8B7740B7E5849F3E89704F1F8657 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; + 26549A418DA5BE6D60312BA024008FB0 /* extension.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c"; sourceTree = ""; }; + 265646EF2B71CD269C23336D2EB19B4E /* proxy_protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h"; sourceTree = ""; }; + 265E101E8B76E3926DF5FE29F44AFE0D /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; + 2662A3F533F68D3EE2DD0B2E6C300235 /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; + 26845FAE7A655CD4D2B32868BA96C49D /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel.cc; path = src/core/client_channel/subchannel.cc; sourceTree = ""; }; 269852A45F2D14A51C4AAA201B3AC38A /* Pods-SwiftProject-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftProject-acknowledgements.plist"; sourceTree = ""; }; - 269BC6FB2B0635713C50EAEC2BA4B6C7 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; - 26A811E7DE142B4CD43D1FFDA48EE073 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 26AFEB2655239EF468BCE05E557CC711 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; - 26B29E40967E63BE8A3A7BC91217A296 /* cord_rep_btree_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_reader.h; path = absl/strings/internal/cord_rep_btree_reader.h; sourceTree = ""; }; - 26CF7F052AECAC91833DAC832BC6CFAE /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; - 26E2E9702B18C6BBD974A398283644CE /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; - 26E3F3EB921C216CA24BD2F75154336C /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; - 26E76354B7AFD89714ADC59668184B4D /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; - 26EA1B370BB9E95CAF8CF7285D0F757C /* low_level_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_hash.h; path = absl/hash/internal/low_level_hash.h; sourceTree = ""; }; - 26EC7CED9F796EE81542C27ED042CFA3 /* static_stride_scheduler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = static_stride_scheduler.cc; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc; sourceTree = ""; }; - 271AE5000ED7591DDAD46E197FE4C244 /* Timestamp+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Timestamp+Codable.swift"; path = "Firestore/Swift/Source/Codable/Timestamp+Codable.swift"; sourceTree = ""; }; - 27440127393E1B7504D4EA25A96A6BDB /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; - 2746078F65ED43B29B3285B802CBC5E3 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoEditedPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZVideoEditedPreviewController.h; sourceTree = ""; }; - 275FEDB9C39EEC8333E7EF0A4746E923 /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = ""; }; - 2770AC4D301B970BDFDC46136F81D919 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 2771AF84D9D9D7D70E7CC5F4C14F8686 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; - 278CECD1275E331C9E7020B720B32454 /* inftrees.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = third_party/zlib/inftrees.c; sourceTree = ""; }; - 27927E7E0F16B228559681A2AA205959 /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; - 27934D15963FBE1407EA577498E6F92E /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; - 2798F8C0005C7684EFA41A9A04C43C8A /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; - 279C8FF40365FCEFC9B80F6D5D15EC6B /* seed_gen_exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_gen_exception.h; path = absl/random/seed_gen_exception.h; sourceTree = ""; }; - 27AB040E47F1BDD7128345EF020BA2F3 /* trace.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h"; sourceTree = ""; }; - 27B02BF9D9C2B97021E950C35D5A1452 /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; - 27B25E05894166E331C5E2DBE9AF3A0F /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; - 27BCC071053C4324552FC55199407F88 /* wrappers.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h"; sourceTree = ""; }; - 27BD1676EC6CA693FF0928DA27D8D1B4 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = third_party/upb/upb/lex/strtod.h; sourceTree = ""; }; - 27CF1D81A68D47EDF6B1829E38115047 /* tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_crl_provider.h; path = include/grpcpp/security/tls_crl_provider.h; sourceTree = ""; }; - 27D03EB17485CE1EFD77549564C067D6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Extension/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 27D6555784EBBAB6FBF29431A2809B19 /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = util/env.cc; sourceTree = ""; }; - 27DC4268F61F4102756E55A57BB88B57 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 27F13B615C240933AE43DF59AF26FC6F /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/load_balancing/oob_backend_metric.h; sourceTree = ""; }; - 280A08541D398152A40E2342E751F5E9 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/field.h; sourceTree = ""; }; - 281C309785243050DE503FC0FC24DD18 /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; - 282CA64FE46A8D2AC36F6CA8CCFAC0CB /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; - 2846F2E93AE609D758CC907B71A803A4 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; - 284CD913B42BC19548BBF62F11D9FD8C /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; - 28511D4E249249B60B14CF898F9A05CA /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; - 28571AA2AA642796D6FC33142DFF24AF /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 287021EDC0CF4F492B41420A86A816E3 /* logic_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logic_utils.cc; path = Firestore/core/src/util/logic_utils.cc; sourceTree = ""; }; - 2873799BF644C9E9D973318A968F161C /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/service_config/service_config_parser.cc; sourceTree = ""; }; - 28751429FA611076D22E64EE85E1E71E /* struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c"; sourceTree = ""; }; - 2878D381A0EF54A671A6F57C2B8C0E58 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; - 2879443C41707A87E253975E1FD349E1 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; - 287AD85075CFCF55BDB46BADC732EA73 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - 2886C70DF5B59B998B6C5C6B5B47A7A4 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 289275905D7AC8A0F06F01CB001CBB0C /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h"; sourceTree = ""; }; - 28A19E40BF715C1D2F2C59E09C2BFB16 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 28B5885FB07A214CD54E7DD22A020EAC /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; - 28BF5288BC2283BF5920988A13A1C16A /* status_flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_flag.h; path = src/core/lib/promise/status_flag.h; sourceTree = ""; }; - 28C07DAFA4FD518B918366F940486CAD /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = ""; }; + 26B0E02FDA828E28B699C541108F890B /* call_final_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_final_info.h; path = src/core/lib/transport/call_final_info.h; sourceTree = ""; }; + 26B82E110E2968CF39A4040E577F7644 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + 26D5FA53A481E9A24C18F63149ACD8E1 /* fault_injection_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_service_config_parser.h; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h; sourceTree = ""; }; + 26D7918E08478D81148F308E5F17DFE8 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; + 26DA371F40F3E59D10F746648D1DEE34 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 26DEC2B02BC3762D865EAB809C66DFF3 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; + 26EAD1953CAD91C9F04826789FEFCD45 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_channelz.cc; path = src/core/client_channel/client_channel_channelz.cc; sourceTree = ""; }; + 26F9E8E32A5CC7000F5E11CF7CB13549 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; + 26FB4DC14BD60FFF27F46CFA4536DA97 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + 27089548B4EA5E4926A5F3360072B0CA /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; + 270B5A3BCD4C98C8AACBDE291E99DC22 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/Promises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 2723AECC152D767AF1FC7492D962AB0C /* load_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_config.cc; path = src/core/lib/config/load_config.cc; sourceTree = ""; }; + 2731AAC2CC2EA541FAD92E1FBB7263E4 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-gen/google/api/annotations.upb.h"; sourceTree = ""; }; + 2741A6698E076D08E0AD89EA55CB42D0 /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; + 27424F528CF49E896027B1052A747258 /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; + 275217AB5148412A8F3F75BC6D8A1F10 /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; + 2764FE21A86807A1E9A53531B8FDEA6B /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; + 27653A18DDE5238E8C1A7E7669622ABC /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; + 276CB116F836ABD3AC78767239857D3A /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + 276F5530AA467761484346DEFDBB8970 /* init_dump.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = init_dump.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c"; sourceTree = ""; }; + 276F785FAC03A397E512DC4BF9B71249 /* batch_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = batch_builder.cc; path = src/core/lib/transport/batch_builder.cc; sourceTree = ""; }; + 2776DAB9971409C50379D26483AD7804 /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cds.cc; path = src/core/load_balancing/xds/cds.cc; sourceTree = ""; }; + 278688C89F40F2C14D2ABB4FDC1EDB95 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; + 27913A040EB93EC3C26E75323DF67A2F /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h"; sourceTree = ""; }; + 2796959A2FEE489EE004CDD8C6484D62 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + 279F6EDFFEC9604A1418C731977A3CD4 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + 27A8595117323D275B71D221EBF06CAE /* wire_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader.h; path = src/core/ext/transport/binder/wire_format/wire_reader.h; sourceTree = ""; }; + 27BFFDC723D955E6F1BCD09F4992A679 /* FBSDKDeviceRequestsHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDeviceRequestsHelper.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.m; sourceTree = ""; }; + 27D32F185DA3E34CAD789C0271812273 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; + 27DB3747274F7ED6DEF007024176E823 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; + 27E03352CB121E5B0A3755572C817ED2 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + 27EEB3BC6EF6816719DF7AC8820AEB5B /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + 2812A649AD4598A91470EF3816E9DA55 /* FBSDKCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m; sourceTree = ""; }; + 2815B6447A5A0D71A50B82116E229AC5 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; + 28270FA4B1F90288064B7E65BC15DE10 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + 2827DCE479256B69B94919A8CBF62277 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; + 283514F0FD818F620F214A6249936785 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoPlayerController.h; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.h; sourceTree = ""; }; + 28365A34EEA0E45D3CC79B53D470E11F /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; + 283C228C6601C0F7264092AF42AAA4BE /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; + 2841AEF52E29FA3509917881FAAF0B39 /* FacebookCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FacebookCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2862922363918110F425169EA55856F5 /* FBSDKURL_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURL_Internal.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKURL_Internal.h; sourceTree = ""; }; + 286F5B56B89634F5CE73BC95E2C83EBE /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/internal/service_def.h; sourceTree = ""; }; + 2875F9F7CE4B6512D9DCBCECC1EC51C2 /* retry_filter_legacy_call_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter_legacy_call_data.cc; path = src/core/client_channel/retry_filter_legacy_call_data.cc; sourceTree = ""; }; + 28771946362C3B96D1CFB4C158ABBDDA /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + 287E08D975BEBFF671560DC81287AEC2 /* constexpr_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constexpr_parser.h; path = absl/strings/internal/str_format/constexpr_parser.h; sourceTree = ""; }; + 288736EDAA926B1680188A6454F0C93A /* supports_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = supports_fd.h; path = src/core/lib/event_engine/extensions/supports_fd.h; sourceTree = ""; }; + 2887DDBDAA1872FD907CA6F28B82EEF7 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 289DDD66A0FB7A851AF7125BFF451F07 /* FirebaseSharedSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSharedSwift.release.xcconfig; sourceTree = ""; }; + 289FFC48E65C33597D6ABF494EDCFA79 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/support/callback_common.h; sourceTree = ""; }; + 28ADEDC3C90F6EDA4A43E13A3F89967E /* status_payload_printer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_payload_printer.h; path = absl/status/status_payload_printer.h; sourceTree = ""; }; + 28B5FC53837E0B6E5CE60F64EF677812 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; + 28B6946D20F608276879EFC491621446 /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; + 28B98D0ADD0CC303AB45F3087399ADBF /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; + 28BE1F0CF532B39FA6C69197748C4F96 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + 28C24E25182134441240B9036ED65EEB /* message.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = message.hpp; path = third_party/upb/upb/reflection/message.hpp; sourceTree = ""; }; + 28CA4DD4A5655DBE4A3E411889B4C0C9 /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; + 28D579249F0AD5F15C879A3FFEC86FC2 /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; + 28D839A017151BC0D2419367CC75621A /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; + 28D9E5ED7DB6A7A8B207AA331F16332E /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; + 28E28725FCD17190A48271CDD87EFA96 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + 28EDBEC54F6BB9F122AE4783A16CEC75 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; 28F341633BC96126DD3A7030F0B54124 /* gRPC-C++-grpcpp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "gRPC-C++-grpcpp"; path = grpcpp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2910749493940BFA09C87A267F956EB3 /* zconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zconf.h; path = third_party/zlib/zconf.h; sourceTree = ""; }; - 2912EBCB628EB9E74F2E065039411C1B /* external_prequest_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_prequest_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.h; sourceTree = ""; }; - 2915223D9C09EF627C69E48C0C18C18F /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; - 291F872F1DCBBCBB75FC043CD38B8969 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; - 29228061DD9E6CEF381246A4CEEA0248 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; - 292970E634E0626F74B5D0010565F94F /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; - 292C6DDE5F230FACEFBB507C7142BF7D /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; - 2935829DAB36688549F2CD13DDA31D19 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; - 29363D599C02CBF0551C45AFC5425C2C /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - 293A9C684DB4416A7B66B15A7D848572 /* config_source.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h"; sourceTree = ""; }; - 293AA3E22649FFE1F7A6B3E94EF36BEB /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; - 29477639FFAF4893AF46978826A8EC06 /* usage_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = usage_config.cc; path = absl/flags/usage_config.cc; sourceTree = ""; }; - 294C88E9926D3DB5BF67EDC29F365B30 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 2959CCE459D1D600FC0BE513087C1FA2 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/internal/sub.h; sourceTree = ""; }; - 295B98A6A813F5792654CB2387ADD67E /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; - 2968823C884FCD339F7738A40BDBBFBF /* FIRPersistentCacheIndexManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRPersistentCacheIndexManager.mm; path = Firestore/Source/API/FIRPersistentCacheIndexManager.mm; sourceTree = ""; }; - 296ECCF5CF73F4BD97E8D045D16BD9C4 /* certs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h"; sourceTree = ""; }; - 29A2A73A55E578D3D4FB89CA27144ECB /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; - 29B5C3AB40E68733A78598DE88A3B3A4 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; - 29C4C5AEAC858E80F025422D7FF087B6 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; - 29C7F8112BADAE0F74CCE5464D10AD14 /* work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_queue.h; path = src/core/lib/event_engine/work_queue/work_queue.h; sourceTree = ""; }; - 29D1BAE83E3EB59550D6DD6AD27162F9 /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; - 29E069717BB5872E9E6C1530BF09EF4A /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; - 29E43CEB87BCD334FA1878279B8463EE /* FIRAggregateQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateQuerySnapshot.mm; path = Firestore/Source/API/FIRAggregateQuerySnapshot.mm; sourceTree = ""; }; - 2A0451392DB375C419D4B7598730FE18 /* cord_rep_crc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_crc.h; path = absl/strings/internal/cord_rep_crc.h; sourceTree = ""; }; - 2A0546CE06DA56AE6AF7E70ACB0E2CFA /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; - 2A4A0167FF5678A293E93A01658A28B7 /* cycleclock_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock_config.h; path = absl/base/internal/cycleclock_config.h; sourceTree = ""; }; - 2A59475094330130E8016092B3DD5606 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; - 2A614AE73ED85F1962EE8762770F904D /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; - 2A81AD8E6BB5E0BB3AE8ED551ECD23E4 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - 2A8EEE0EDFD3F779B2C02D5E13A04344 /* cidr.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h"; sourceTree = ""; }; - 2AAAA6B30B2C693F6B35BED9862DCFE7 /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; - 2ABB363B7FB4B893620F044B3173138C /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/posix/sync.cc; sourceTree = ""; }; - 2AC61CA84AFC512C54FCDB446D5B1D5A /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/propagation_bits.h; sourceTree = ""; }; - 2AC8672AAF1E85FF166E8FD52D1D4776 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 2AC9CF5ADEF3646F11121258357436A4 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; - 2ADF4FFF4159C231B7B79C3445CEC495 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; - 2AE0D1430EC983E9BE4082BC9614CA4C /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 2AEC214A8DAE62F2FC2613742504C98C /* load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h"; sourceTree = ""; }; - 2AEF1ADD34C178FD349D5ACEDBE937A1 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; - 2AFA03F02AB27507DBFC5017477FD8C0 /* endpoint_binder_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_binder_pool.h; path = src/core/ext/transport/binder/client/endpoint_binder_pool.h; sourceTree = ""; }; - 2AFBF4E49E7FE6E87EE84576980EDB28 /* httpbody.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h"; sourceTree = ""; }; - 2AFE525F7A32BDC4E48C5E5B86508750 /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; - 2AFF478FBC96E6CB85524B5FC5308999 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; - 2B0079CDA7191A303A972E7D87FA4FAB /* api_listener.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c"; sourceTree = ""; }; - 2B00A45DB09EB334EC29B2593AAB728C /* token_bucket.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h"; sourceTree = ""; }; - 2B18E2BBEC9D8353063AE3E181D1775F /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; - 2B2560E65CA816C50E92F03E5BC09355 /* api_listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h"; sourceTree = ""; }; - 2B3FA302F3DD424D298733BD56E9A43E /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/event_engine_shims/tcp_client.cc; sourceTree = ""; }; - 2B6A95E86938C3CCE0E01448BA9A8C5A /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; - 2B70BA71C266A60599ACF7FE7CE259E8 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 2B77BFCFDDC106EE46D8B77A228756CC /* wrappers.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h"; sourceTree = ""; }; - 2B874719A4AC4E9B0252D10625E06841 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 2BA4D6CC59095F6546A05043BBAA10DF /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; - 2BC759B4F1E6F8A666C72B2E0A462C18 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 2BC8FE01BEF4277D5A3C7B65B70A1768 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 2BD9EA1FD2FFEABB7AB03FD37E506B9E /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 2BE1B60A5208D4DD16C550B6D1E5F34A /* http_protocol_options.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_protocol_options.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c"; sourceTree = ""; }; - 2BE8897428991EBBCC81ED2D2ACFB0BF /* xds_bootstrap_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap_grpc.cc; path = src/core/ext/xds/xds_bootstrap_grpc.cc; sourceTree = ""; }; - 2BEBBB9D2B980BF47E00221740634DC8 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - 2BEF65A1FA5ED0E47C890BDD1BC0D9EE /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/def_pool.h; sourceTree = ""; }; - 2BF27C76EABE04A85BE8054973EB9457 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; - 2BFACF01D5166A3A9790299D15C9BFFB /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 2BFC12448776047F1419B137DF2AC10E /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; - 2C0C2F1B6913A8897B21C5466D637B8E /* ip.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h"; sourceTree = ""; }; - 2C189C161B98E5D16854F9A731F4C2C7 /* float_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = float_conversion.h; path = absl/strings/internal/str_format/float_conversion.h; sourceTree = ""; }; - 2C22955271F4C8B2AAA4921E3DA45805 /* binder_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_server.h; path = src/core/ext/transport/binder/server/binder_server.h; sourceTree = ""; }; - 2C2E79D2447D3E41A83EA9023DA308FF /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; - 2C2F1F11EF69B9822D9AE92BA14EF26D /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; - 2C417A51FD4DE174B5F8991B6B3D9051 /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_posix.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; - 2C5C4CFFC15DCE8D3F57FD3B61AD2292 /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; - 2C778AD51111C1E7C10AD4DF76BC6E1C /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 2C8229CE6D281DA6692CADA64A104538 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 2C8CC9BA18BB542AEF33EAEE7DC98712 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 2CA85C4866CCE1BF1EA1440E70E77D55 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h"; sourceTree = ""; }; - 2CBF786A43D1B5120AF704E3DF28ED53 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - 2CBF8B4190451FE8304731CE7391A226 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; - 2CD518FAD48EAD343479F308A13691E3 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; - 2CD8954C3E6FE49DE37C55BD19781CB1 /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; - 2CE0FF7E077B725803EBA156FE40D621 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; - 2D03FD014597C7BA5F39F49685A09A85 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; - 2D0A93E77401A6228CED871DC2078A53 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; - 2D0D4710F284F032766A53AF4B65CED9 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 2D13457CA04E90674E1B6F4785D601DA /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; - 2D3076A778DE881543328D424F6F6C6C /* common_closures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_closures.h; path = src/core/lib/event_engine/common_closures.h; sourceTree = ""; }; - 2D3FB752C505A13CD022D2C5A2073834 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; - 2D44E6BEB97300A04116B4901D6B6834 /* server_info.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = server_info.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c"; sourceTree = ""; }; - 2D48BA93BEFC4E37A08929EDE2CFE899 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; - 2D4E8BDA85C75A0D44E7BAC6019838D5 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 2D537565ED91F073EDA2DAECC19D5956 /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/def_pool.h; sourceTree = ""; }; - 2D56EBBF5CC50E29BBAF0FBC3A9E5DCB /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 2D5A00B158EF5AAE2C6A0A5AB6360224 /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; - 2D5D84AD79A6230C543A2B0D6D96237F /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; - 2D6073E521570552A997C9479C28FA3A /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; - 2D620783C913F848C4D00FE9C5DB7E3C /* FirebaseSharedSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSharedSwift.debug.xcconfig; sourceTree = ""; }; - 2D65384221304E2240E4FA7778BD2338 /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/load_balancing/outlier_detection/outlier_detection.h; sourceTree = ""; }; - 2D690A943685D4B89E1A13D032667498 /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 2D6E567CF496435AF4B15DAC78365736 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; - 2D95451703CCC1510B7B508DB982B0AD /* usage_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = usage_config.h; path = absl/flags/usage_config.h; sourceTree = ""; }; - 2D9789E81452F605CE8FCB636B947075 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; - 2D987FA0DAAA553094A376CA23458520 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/internal/array.h; sourceTree = ""; }; - 2D9D3035F6E68814016A62851B40BEA1 /* RecaptchaInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.release.xcconfig; sourceTree = ""; }; - 2DA336E705E4C8A048DAEB1CDE1E8FE3 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; - 2DA3CAC28C0AD1A22C32066CB4FABC6C /* DeviceKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DeviceKit-prefix.pch"; sourceTree = ""; }; - 2DA5D9A66210D7C3F5F3EEBB207EAEE1 /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; - 2DBB0D09678A6F9312762C7AA0562F21 /* common_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_policy_traits.h; path = absl/container/internal/common_policy_traits.h; sourceTree = ""; }; - 2DBE7C9F5F5ECBE292BC53CA6862FB05 /* flat_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_set.h; path = absl/container/flat_hash_set.h; sourceTree = ""; }; - 2DC0BEEE9D4672F2AE335D5E479F7305 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - 2DC51F02CDB3827326A44E8CDF019A45 /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; - 2DCA1035CB7BDE8347288177BD192B7F /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; - 2DCC2EEC2D2618B33C5C6BFF1501E553 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 2DCC435190FE9F526FE1E60D27335788 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; - 2DD177B5D14DC4078D6D223F85FFDD48 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - 2DE3E536B49A29DA027E22F5D1F2D138 /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; - 2DFE95BDD3A75E2E0EF5D6539EB93633 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; - 2E0B7CA02DFBFA6DB00559DD9459B08E /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; - 2E2350E916317001563C2D794AC716FE /* FirebaseFirestoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestoreInternal-dummy.m"; sourceTree = ""; }; - 2E261B98D045BFD5AAAB667058D574A7 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 2E2AF5E4C96BDE980500043DBC965029 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 2E2B154AA2719F04F9E03EC5B14260DC /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; - 2E3A4FCF7A011FCEEEE73D2278052322 /* zipkin.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zipkin.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c"; sourceTree = ""; }; - 2E4717B22701E5176D2540877A70CB81 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 2E641F7BD50A16E01014256EF886A5CC /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; - 2EA71B7B69AE32082F0CFF468E7DDA34 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 2EB08833A61D7CABB80975291060B03B /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_client_stats.cc; path = src/core/load_balancing/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; - 2EB94397DCC85940A68B65CAAB2EFF6F /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; - 2EC06E81214C73BC3E44BCFAC98678B2 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - 2EC9FAEE89E7A615BFFC0A9EA3255C70 /* query_extensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = query_extensions.h; path = src/core/lib/event_engine/query_extensions.h; sourceTree = ""; }; - 2EDB2B5408726AEEBAE0A77A2048A56D /* udp_listener_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h"; sourceTree = ""; }; - 2EDED170EDEDF8EE718D4A4BBAEF0702 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - 2EE4715C098DCE82B91A29BC82BD497F /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; - 2F1A988482557E7576BD616498D76A62 /* Promise+Retry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Retry.swift"; path = "Sources/Promises/Promise+Retry.swift"; sourceTree = ""; }; - 2F26278F2A13D9F0BD26B30FE2069B7D /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; - 2F313D31660106ED75D753131C795BCD /* refcount.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = refcount.c; path = src/crypto/refcount.c; sourceTree = ""; }; - 2F38D9D4941C715808FD6A2B5759FBD3 /* oneof_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oneof_def.c; path = third_party/upb/upb/reflection/oneof_def.c; sourceTree = ""; }; - 2F51B6E80CCB08F68BE055BAD3CBA575 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/types.h; sourceTree = ""; }; - 2F532C5F1DE023FC07C442B4020E193D /* address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.h; path = src/crypto/spx/address.h; sourceTree = ""; }; - 2F58168BECA982741D45FA26DF8ED64F /* dynamic_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_thread_pool.h; path = src/cpp/server/dynamic_thread_pool.h; sourceTree = ""; }; - 2F938F65EFE5A3CD3965B2534461E05E /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; - 2F961FF3A9FE42273D2AB0CDE2D478EF /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; - 2FA84BFA8B69DCC6127FC229FCE4C676 /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/enum.h; sourceTree = ""; }; - 2FADB208437E1336125EF17A26FE37CC /* x509v3_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3_errors.h; path = src/include/openssl/x509v3_errors.h; sourceTree = ""; }; - 2FBB8C0129580F16C2F6AB16D79E5434 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/mini_descriptor/internal/encode.h; sourceTree = ""; }; - 2FC07F214D911DD1AA222F292C584BEA /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; - 2FD0BAD52987948A01F3D9271138399E /* NetworkInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkInfo.swift; path = FirebaseSessions/Sources/NetworkInfo.swift; sourceTree = ""; }; - 2FD96C35BE308639A1D88F4EFBB63ED4 /* deflate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = third_party/zlib/deflate.h; sourceTree = ""; }; - 2FDEE5DDBDA7912AB5387FDA4271BB86 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; - 2FE0E919955E2B82AFB8CB63D76D43BE /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 2FE14327E64A00A939E6BDAAD1159AD5 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 2FFCE82F95B7D25A8CFE76C42FB60706 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; - 30048C805431D4F8D839DEB8A7E07302 /* cord_analysis.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_analysis.cc; path = absl/strings/cord_analysis.cc; sourceTree = ""; }; - 300955CA4E742DBE537D82AC315DAE2B /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 300C8EE52299C9DA0A18E47981EBA8DD /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h"; sourceTree = ""; }; - 3012845835BB46D2FE3D62C6186836E5 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 3015CCA3E486912FD0066220E4064D9D /* metrics_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c"; sourceTree = ""; }; - 30221A4E36E3CA0FD8D0754D5E01D350 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; - 3028B86698D2E73380CF642C444F68D5 /* client_side_weighted_round_robin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h"; sourceTree = ""; }; - 303508E6BBFA12534A2964D513D41E8B /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_throttle.cc; path = src/core/client_channel/retry_throttle.cc; sourceTree = ""; }; - 303F477FD1498538A8EC65C42549D9F3 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 3044137CE44488A15F008CCABC6DFCA0 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 3048EEF3925C8EC3331D51C085A6D1B3 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - 304CE192CDAC5CCB479A5C1DA82A159B /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; - 305A998C95A7D3441B4B4EF9EB6D9AD4 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_crld.c; path = src/crypto/x509/v3_crld.c; sourceTree = ""; }; - 305E05AC4BA4B3B5D2EDB20072C2B8C2 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - 3068BDB4BD8DF7BCE6EF98FCEBDAE95C /* GDTCOREvent+GDTMetricsSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTMetricsSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTMetricsSupport.m"; sourceTree = ""; }; - 307E88D360C866329865734A99EF433E /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 307EACDCF4CA3C5C4D7ED7000886969A /* message_reserved_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message_reserved_range.c; path = third_party/upb/upb/reflection/message_reserved_range.c; sourceTree = ""; }; - 30883ACB3BDF437DFD716D9482BD9AF4 /* cel.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c"; sourceTree = ""; }; - 308E1F439F3A55103A6C5FA9547F8565 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - 30A18A850F820A1602693AB1B0701D64 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; - 30AA2D3189C89E25B6C053D2A22E204C /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; - 30B4CD7C67E3C223657DBB6C5404445E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; - 30B81DC0D3FE6B11CAF6453402694803 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 30BE30EEF12306F0A5DEFE5AF66AFB17 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 30C49196FC6DD4C4C3C54902409FBE4C /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 30C4D29006DDA87A721D6B139B88D96C /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; - 30CA2E709541EEFB1916BCCD36431182 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/reflection/common.h; sourceTree = ""; }; - 30D175B829F44DC6D701EB975987E85B /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; - 30DC697FDA9F9AD419D6386096D4AA6E /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - 30EA548B6BDF330CC26B59E726325DF6 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; - 30EAB430BD33A00130609AB844A804BA /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; - 30EC2D99909FF69C253823578062D319 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; - 30FF8152BDB140F99184C4A21CC60368 /* enum_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_def.c; path = third_party/upb/upb/reflection/enum_def.c; sourceTree = ""; }; - 31009C402EA97D28DCA984F64FEF86A7 /* rbac.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c"; sourceTree = ""; }; - 310E4A228602FB184F9F75A762DEE768 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 3110B31D5A3DBAB888115B58C6220F48 /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h"; sourceTree = ""; }; - 311B2F0020CB8374F54C219B9BDA3F95 /* config_dump.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c"; sourceTree = ""; }; - 311DE58A245FE497704D084D2EC99514 /* json_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_channel_args.h; path = src/core/lib/json/json_channel_args.h; sourceTree = ""; }; - 3127D690DD4CED5561D22FE1C78E2CCC /* TZImagePickerController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.release.xcconfig; sourceTree = ""; }; - 31323D1E69B1CCE4640BB54F66B782F7 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 313D152B52C193B3486E8BD7D7C8F449 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_channel_arg_filter.cc; path = src/core/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; - 314CC0A5D31E2C89747242FDE8E4C7D9 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - 31545E1B646163E49C4D59902E6D1C7F /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; - 3155C8551CCEB67F27E2A259A276C7C2 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - 31651C337DDB5256B4F100ABFCDA9714 /* cfstream_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_endpoint.h; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.h; sourceTree = ""; }; - 316825C21B3507471F180F05301DF02A /* skywalking.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h"; sourceTree = ""; }; - 316A7163A7B4C17BAF25890EBB45E625 /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; - 316B3FCAAE0B3AF1BFB4FAA62A1B067F /* client_side_weighted_round_robin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h"; sourceTree = ""; }; - 316D99FD3A62BA99245F115D6582C569 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_int.c; path = src/crypto/x509/v3_int.c; sourceTree = ""; }; - 31885698473ED9423529AEE84D137AFE /* metadata.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c"; sourceTree = ""; }; - 31953C8C6D07AB196DBB3C9B336B1641 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; - 319C9A4FA4B28FE78C7617331F891726 /* spx_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spx_util.h; path = src/crypto/spx/spx_util.h; sourceTree = ""; }; - 31AD04EB140A67DF02B22AFA4848538C /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - 31BD454A2BAA1C264F35CC1FCE8B2CB2 /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; - 31C399604159E4055004553B0562F24E /* health_check_client_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client_internal.h; path = src/core/load_balancing/health_check_client_internal.h; sourceTree = ""; }; - 31CD10E7FF58DA289449568C540590CD /* channel_stack_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_trace.h; path = src/core/lib/channel/channel_stack_trace.h; sourceTree = ""; }; - 31DA78A2B0770421731710E0720376B6 /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; - 31DD511EA4F209439E9E6C990100DBD6 /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; - 31EDA159A4BA81F8E67E48ADE614A417 /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; - 31F88885CE5E4D417BE72EFBEB512AD1 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; - 3207D56A7852BE37898F775FF3D8A1C6 /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; - 320814AEB4C3B9E4465BE1D7F91A278A /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; - 32116F7AE9C9FB401D3C67428751ACE5 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 32164C5AFEF2A2C273B83CE0C5258484 /* inflate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = third_party/zlib/inflate.c; sourceTree = ""; }; - 3217112B6747670F99C1C88A0A7D6A2F /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; + 28F362C72EBC35A29BEF0D09F9848663 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; + 28FE4C74AC402ED8E3468FA8ED75D1BD /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; + 28FFE6A7897EBF10FE6B9DFE8E7F6CC9 /* cord_rep_crc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_crc.h; path = absl/strings/internal/cord_rep_crc.h; sourceTree = ""; }; + 29034CAEDF2C2CE919132BD8E5EE10BC /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; + 2904812DC5EF1C1AF04C496F861F966D /* TZImagePickerController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.release.xcconfig; sourceTree = ""; }; + 291F07D2091AF9A26BDF8960F87A4B12 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; + 2925C6D352AA7956C7A6D72C76810E7E /* FBSDKWebDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m; sourceTree = ""; }; + 2942A465403889B09A1170673A09ADD8 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/load_balancing/address_filtering.h; sourceTree = ""; }; + 29566837C83908AE768AAAD4FE657905 /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + 29579D714E026D8997FFC4D40EEBA57C /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; + 295CF3E8963DD339EE09672614292DE5 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; + 295F295ABF08248C16E6F599785BBDEF /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; sourceTree = ""; }; + 2968B3D2606A4252FB9F52CB0AB10D55 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; + 296B5518BE12B5ADF27F76FFC05BA766 /* handshaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h"; sourceTree = ""; }; + 2970514DD2919DECDCA90B1C8789BC54 /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; + 29841A8849154F1617DFDEDBC689BF2A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; + 298B908EEA0FF83F0FE8220EFF0511EC /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; + 298CB60C7BB49F02A90F373054C75B34 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; + 2997D63FA71F474C0007E72BAC71BB87 /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; + 299D0F1D46B025B710BEF2C355C25A34 /* ip.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h"; sourceTree = ""; }; + 29A187FC1F72803EFEF1BD9477FBCEAC /* descriptor.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h"; sourceTree = ""; }; + 29A819CF87CF5950B4EE9F7B5FF18D13 /* xds_audit_logger_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_audit_logger_registry.h; path = src/core/ext/xds/xds_audit_logger_registry.h; sourceTree = ""; }; + 29ACFD3F2349F8B2424D25A435F895CE /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; + 29AFB371BB2DB579C041A99173C17F36 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/delegating_channel.h; sourceTree = ""; }; + 29AFE3E2D3B9CCBE7DC0E6A4E606E9F9 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h"; sourceTree = ""; }; + 29B09A01FB20EF9EAD2ED087B30BA1FF /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; + 29DEA62D0B15E42714B497A2EDFE9473 /* FBSDKLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogger.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h; sourceTree = ""; }; + 29DF28E6C626CCF25581197481D18B63 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + 29F8402476359A9E6AF5AC8AB97C8FB1 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; + 29FC1EE4F0C528DFD60CC6187F3072B4 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode_fast.c; path = third_party/upb/upb/wire/decode_fast.c; sourceTree = ""; }; + 29FEF5A146E61B5122404456B38232B1 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; + 2A0770AB5A24D73285D395CB3757D183 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; + 2A1268AE50259C1C0BBFEB021891900F /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + 2A2ABE3DA04C2A17D00060FC25E547C1 /* cel.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c"; sourceTree = ""; }; + 2A2ED0D8F1A0BEB049DEAC9E1E6EFFA6 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/event_engine/slice.cc; sourceTree = ""; }; + 2A4308D3321286B78AFF80AF76255705 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; + 2A48A4C5DFEFAF5FCD9BCA7A0AF9C143 /* FIRRevokeTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.h; sourceTree = ""; }; + 2A567752FB8434D67135D1D54C014B25 /* iostream_state_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iostream_state_saver.h; path = absl/random/internal/iostream_state_saver.h; sourceTree = ""; }; + 2A5F2D23C39D8ECF783244317E257876 /* channel_argument_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_argument_option.h; path = include/grpcpp/impl/channel_argument_option.h; sourceTree = ""; }; + 2A6B1512856BAEBD8F259304C7C93E8B /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/client_channel/subchannel.h; sourceTree = ""; }; + 2A6C400984391DA1AB803D642BD6DB1C /* LLFilledPageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLFilledPageControl.swift; path = Lib/LLCycleScrollView/LLFilledPageControl.swift; sourceTree = ""; }; + 2A6F1DADD0D28E1532E5C3EA32770BA1 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; + 2A8E62165648A776A47061DF9D50C2FA /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; + 2A8F132C3AD49230F66401D44471C4B5 /* http_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c"; sourceTree = ""; }; + 2A9ABAA5A49EAEB6636D9D2448408FAE /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; + 2A9F278D6A2FC11D4A581F2BEB68852E /* forkable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = forkable.cc; path = src/core/lib/event_engine/forkable.cc; sourceTree = ""; }; + 2AA3350E3FB3EC259E0BCA89E288768B /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; + 2AB650BE9BA281C830536AD2E57696D0 /* versioning.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c"; sourceTree = ""; }; + 2ABC480E29C3099D28952E7696ED0E25 /* LLCycleScrollView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LLCycleScrollView-Info.plist"; sourceTree = ""; }; + 2ACCA4D163683462B02DB247F219349F /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; + 2ADDA0196093A9E1D564A3DCEADB0FCC /* FBSDKViewHierarchy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewHierarchy.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.h; sourceTree = ""; }; + 2AFA4753FDE8056931FF5F57F93040D7 /* service_indicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_indicator.h; path = src/include/openssl/service_indicator.h; sourceTree = ""; }; + 2AFF296C082A4CF56DD53C651A83C625 /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h"; sourceTree = ""; }; + 2B0B4B7EE79A838DD24C017201A24F20 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; + 2B0DC75A4400BB6A302B81DA52DA82B3 /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; + 2B17FC9378E2E251026632CF6641BE95 /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; + 2B19DAC980CA3C6F8B5F8C0A37A915EF /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; + 2B2308941650B80F684250C20004EC49 /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = src/core/lib/event_engine/posix.h; sourceTree = ""; }; + 2B2E3115B4E2A2564B87FDAEBB5B44A7 /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.h"; sourceTree = ""; }; + 2B33D71A8C953DE5E9E366F5DBBCB2A7 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; + 2B3B5562203FB2FF7D5109920BEBE21D /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; + 2B3BB603EAB95077AC40720EB6D92B33 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; + 2B46F7EA5C5868573CBC8FA2DCE24F96 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; + 2B518FEDCE311627101C7640552EA1FF /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; + 2B565F4DAB9AE09AC14AF6C453B10559 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; + 2B5ACF116C491094DD3C21DA1B84A404 /* kdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdf.h; path = src/include/openssl/kdf.h; sourceTree = ""; }; + 2B5B398089790AB1A284603FDAC4C858 /* lightstep.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h"; sourceTree = ""; }; + 2B7CCEDCC195347F2A9BFA3AE3959CEF /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + 2B89EA296D0AE3F39289DB07C264B703 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; + 2B99FCDE13B9F55305ACF7365AD04D42 /* secret.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h"; sourceTree = ""; }; + 2BA6239857B0A12A4270BEE0BA28AF35 /* directory_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = directory_reader.cc; path = src/core/lib/gprpp/windows/directory_reader.cc; sourceTree = ""; }; + 2BA846C2C36C1433291010EC06C6108B /* init_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h"; sourceTree = ""; }; + 2BB1557692C4A90FADF74753E7B06A13 /* can_track_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = can_track_errors.h; path = src/core/lib/event_engine/extensions/can_track_errors.h; sourceTree = ""; }; + 2BB905ACC2214F1FFF82A2E7511F3674 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseAuth/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 2BC3BCCCFA2EB9C772F102EEF87BCC27 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 2BD0C93C6C1E85756E35232CE2947857 /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; + 2BD23DFE2AEFD50B6D959CE1BD1A0C40 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; + 2BDADBD37B7404218955FEE2BEB828BB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; + 2BE8A5DC9820DB08DB5B5476233BDB9B /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; + 2BF8E6E83426025C6771927041586D54 /* stateful_session.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stateful_session.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c"; sourceTree = ""; }; + 2BFD2FA2C70D682E460F1AD3595FCF5B /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 2C036C2C095EFD1A8506958A35F28140 /* wrappers.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c"; sourceTree = ""; }; + 2C04E528FA54897997FE521CC0C14B36 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; + 2C1E97BC95C47DB17745578984EF547C /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; + 2C219278E4D46CD2C4A339E624FA66CC /* FIRAggregateSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateSource.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateSource.h; sourceTree = ""; }; + 2C2C3907AA9C4ABE4C7E7B13E9AF0391 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; + 2C33176FB9C1A7C9A8A6BF2DE047FE75 /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; + 2C46C382856B92934F6E85C840401D62 /* registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = registry.h; path = absl/flags/internal/registry.h; sourceTree = ""; }; + 2C4AC86673661A5F81849D1542D3BCED /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; + 2C5CC640F4DAE6313D01436FE142F980 /* file_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file_def.c; path = third_party/upb/upb/reflection/file_def.c; sourceTree = ""; }; + 2C67C6382BB3C316B3F63A3160525212 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + 2C70496B35248C50F4B19995E345F84B /* channel_creds_registry_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_creds_registry_init.cc; path = src/core/lib/security/credentials/channel_creds_registry_init.cc; sourceTree = ""; }; + 2C78A35EB73BBC00A3B5F21F3DA3AEAD /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; + 2C7C8D087C070C01A79C3F159215418E /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; + 2C7D778A315C7A80CBD4A10D28ADEEDB /* crc_cord_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_cord_state.h; path = absl/crc/internal/crc_cord_state.h; sourceTree = ""; }; + 2C8256867FB1BC4F55EBB140CD1CB48E /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; + 2C8AEFA1D9937659CA0E31E830B332CC /* marshalling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = marshalling.h; path = absl/flags/marshalling.h; sourceTree = ""; }; + 2C8E53D6C9CB192C3AC4392BF7630B29 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/load_balancing/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 2C951F0880846B96A088CA60B509BEE2 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + 2CA3B9A39D5D2C3EF6A4AEB2354DA837 /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; + 2CA776AF049F6EACF1482F28458CC4B2 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; + 2CAAC53FC06F4E00762D668F67F21CE5 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; + 2CAE82C7FDCDD69813807B422B87DFC7 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; + 2CB19E8B324D4A9AC0C50FDBF24701BC /* composite_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = composite_filter.cc; path = Firestore/core/src/core/composite_filter.cc; sourceTree = ""; }; + 2CBC548C76E7632065C5CFAEF3C9F8C1 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + 2CBC8426187E184653238E496DDDE9A0 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/event_engine/posix_engine/lockfree_event.h; sourceTree = ""; }; + 2CBD9B612978860EDDBB8B3D852FCEB9 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; + 2CE06A7CF4CB950DA3D7D4944777FB9D /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; + 2D03B104CAECFE3CC6C03672748B965E /* dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver.h; path = src/core/resolver/dns/native/dns_resolver.h; sourceTree = ""; }; + 2D0F2D764AA5077258330DA869B8014E /* lightstep.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lightstep.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c"; sourceTree = ""; }; + 2D111DB5C9CA3578B97E59DE41191D2D /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + 2D17A57D1F8D771CD39B024700DBEBC6 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; + 2D1A34C3DAF6E0E27E2EFEEE2BD8DDC2 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; + 2D2CC1BCCD2C25BBC8EB9668848D84CF /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; + 2D3069ABF94F8F70F3A77F0E5FC1EA11 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; + 2D3383727292C4D552095ECAF59DC513 /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; + 2D394E544D23761F3E61C7884752180E /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; + 2D398958A26A10F74828EB941DACFC46 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; + 2D3C36CF56C53B293DC7CEF1A639052A /* status_code_input.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h"; sourceTree = ""; }; + 2D3F1D8F0B845691C77231FDD7CDD075 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; + 2D4080BFE55F8B4717FC73E1EE3067F1 /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; + 2D4708CEE78D92EC2FDFCF78B704F2C6 /* GDTCORStorageMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorageMetadata.h; sourceTree = ""; }; + 2D4D60F3E51DBA83A0D8E272C9F2887E /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; + 2D565150ADB81184135811542EB3B9CB /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/enum.h; sourceTree = ""; }; + 2D5BB0A437F68942DB1A2CE047F403C4 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; + 2D5D54178E89B0511FFC1F39D3C1FA1F /* rls_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h"; sourceTree = ""; }; + 2D5DDEC8FEF41B97B5F1328ADF9815C8 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; + 2D614CB4FC6F9F91B02D8D33B1306F70 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; + 2D894C1A02B516E940D5CC22F6D43402 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + 2DA00C41526613AA2CBFCCEFD0302A5F /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 2DA6FB2B8B4315AD56C09D2059C002B5 /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_resolver.cc; path = src/core/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; + 2DB359275885C2F5481B5B83C85405BF /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + 2DB89100600F1F85ACC29FFCF69EF675 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = options.cc; path = util/options.cc; sourceTree = ""; }; + 2DBC8CE3D14BFA92773EBD98FF62E684 /* cluster.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c"; sourceTree = ""; }; + 2DBD9F5E8F62A3CB601AB7F46C29403B /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + 2DC06E2A53CFB248899359032C5C89FA /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; + 2DC33BCC453265C8F25AED441418D737 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; + 2DD04C9E722428287419E41DAF747562 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + 2DD30A09D30D3F6CA3651985C55F02FD /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = ""; }; + 2DE580BD399B992A5FB8CCB74A9E6EB9 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; + 2DE7F8F562E088B20D3BA91D0EF4E7EB /* custom_tag.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c"; sourceTree = ""; }; + 2DEDC591E662F0258EA9B87C6A2AB437 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; + 2E0EE347DC630CAF1EDF839508945ABD /* futex_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = futex_waiter.cc; path = absl/synchronization/internal/futex_waiter.cc; sourceTree = ""; }; + 2E113AAE69D07D11BDC99BA76E5606A3 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c"; sourceTree = ""; }; + 2E14CF4CAE503D64F537E71F22398969 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; + 2E1C687688E4179E43A8146A8A34F28D /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; + 2E1C8E546B7CCE5D647C794E37D3520E /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 2E2FEE4494AB0D04CB9567FDB69C9159 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; + 2E33B05535EF5E41EF088B81131A803F /* oneof_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oneof_def.c; path = third_party/upb/upb/reflection/oneof_def.c; sourceTree = ""; }; + 2E48CC40F0D729BCEBA764449017BA0A /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; + 2E5943F36583A255D418CF5866B930A6 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; + 2E61AAD13DABA426E29239DABF90F6B2 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; + 2E622A0A5DF921FBEF3A154910949346 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; + 2E6D4C850EAE68D3A49C30F698D422FE /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; + 2E7D87FC1DE3231935641D09E9FE9BD6 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; + 2E82BC98A2A059105831A3968FC4CFB7 /* grpc_polled_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd.h; path = src/core/lib/event_engine/grpc_polled_fd.h; sourceTree = ""; }; + 2E8596F9D4AFEE63CCFD6468AC2050F6 /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; + 2E8D6A512611345E23AE27EC4616DB8F /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/service_indicator/internal.h; sourceTree = ""; }; + 2E933F61D32F11C9A159406776458983 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; + 2E93BA82196D234E13353D0C4D3D818A /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; + 2E9700F77A28B6B36BB3F346952EE590 /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; + 2EAA92A9E6D3E215D0EAA17C69D691F0 /* hashtable_debug_hooks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtable_debug_hooks.h; path = absl/container/internal/hashtable_debug_hooks.h; sourceTree = ""; }; + 2EAE2FE83D15AC08E0EBC818EB951B0B /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + 2EBC2372B5450327DEC77868E0BA6DC1 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h"; sourceTree = ""; }; + 2EC2E2D2715DF67684E2D8E303FA363F /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; + 2ECE8978C91499FE21026D92FB52F5E2 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; + 2ECEDC6FF33D214F14F298E9CEC30513 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; + 2EDC644034251441E2B3BD0A0660E06F /* index_backfiller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_backfiller.cc; path = Firestore/core/src/local/index_backfiller.cc; sourceTree = ""; }; + 2EE74A62E9FD03F3DE202CEE0E33DBDB /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb.cc; path = src/core/load_balancing/grpclb/grpclb.cc; sourceTree = ""; }; + 2EF00CB4192726BB040721FCC8D9F3E6 /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; + 2EF95CCC8068449832D499F511F7ED22 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; + 2EFA91A1A4BF46C39B0B2CAFF5A1275E /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; + 2EFADDA3A669774EF989DAC7B2FED23C /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FirebaseCrashlytics.h; sourceTree = ""; }; + 2F00023777E9EC2DAA7520C165B3FBB5 /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; + 2F00CF3E29B787941D11FC32113D3CB1 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; + 2F06BED0F0DEB5FAA93ECB1106DAB55C /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; + 2F0CA737BA9E8CFCFDB82C38287ED4D6 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + 2F14490AC2054D988C8838AFF59866ED /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; + 2F1B438A3A2BCFC10FA2F781CE17EB63 /* any.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h"; sourceTree = ""; }; + 2F2181F62F9FF574B6A0A4F1122C798F /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; + 2F287DA867598B6EB8605EBA680DCB72 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; + 2F29A4111573F984F14996E8689D9AC3 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/status.h; sourceTree = ""; }; + 2F2CD8D5F8F668B9472EDEBEC5F04405 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; + 2F2D07C712CAABEC484B78C3D0E40384 /* overload.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c"; sourceTree = ""; }; + 2F2E7D87C520CCAC0EE364D5A2EB716C /* http_tracer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h"; sourceTree = ""; }; + 2F33A468B27C1C9A8A0C6933DC85991A /* FBSDKAddressInferencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAddressInferencer.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.h; sourceTree = ""; }; + 2F366FBEB70B8638D4BCEAC6B65715B4 /* WriteBatch+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WriteBatch+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/WriteBatch+WriteEncodable.swift"; sourceTree = ""; }; + 2F3822A9EA299776A89311FC4F9FE435 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; + 2F3BE0A0EF8B9990AFF4AE520E6CCA6F /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; + 2F3F1527B476C8B3DBA566706D4F7F03 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; + 2F441B1B89FA5B9419A3FD0BC200D724 /* ads.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c"; sourceTree = ""; }; + 2F4E33923E94D25415EF3B944AA2494E /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; + 2F4E527CAA573278E19F66F1370E5B20 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; + 2F4F5F489E05B33CBDCDB73853505ABF /* EventGDTLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventGDTLogger.swift; path = FirebaseSessions/Sources/EventGDTLogger.swift; sourceTree = ""; }; + 2F4FFA3C62BAF6B7AEC283BA73E15B9C /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h"; sourceTree = ""; }; + 2F52FC0CEDAD4DDCF2AE5FBADC6DCC7D /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + 2F623A622B9C721F2AEBA8FCBA6C3865 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 2F74B7BB8D6131A87CB8C8F768EC9271 /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; + 2F7783660F307BE07983FFFB05F6B15D /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; + 2F8CD9192364C8487BFA354E0273FD2C /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; + 2F990A5D8B9A16D1ED710BAB8A577917 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/internal/sub.h; sourceTree = ""; }; + 2F9B8186179A9E3C679C9F40DA5E3C9D /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 2FB89DFA94C92C5945280D7BA8EC909A /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; + 2FB9BAD7AF6EED027AD2A61AF467C186 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/client_channel/backup_poller.h; sourceTree = ""; }; + 2FBEB75F8C21E4E5A5E2C0FA3F065DBE /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; + 2FC69D6D750015A3CF4EDAA96DD18764 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; + 2FCD721004BF4F007647A2743B3F4C46 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; + 2FCF87AED2F007DC7FA5234B6F572599 /* undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = undef.inc; path = third_party/upb/upb/port/undef.inc; sourceTree = ""; }; + 2FDE16F66F99C642C66008536E4D14C8 /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; + 2FF1123B104AF2A8A98416EB07553190 /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; + 2FFC68CFCCDA85B0900B0FEB9FD1F04B /* FBSDKLogo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m; sourceTree = ""; }; + 3008E84395D02DED0F6D50DF8B780925 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 300A7826C574AE3B030BDC8CCBEE6AAB /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/codegen/server_callback_handlers.h; sourceTree = ""; }; + 3010184C3F5AE764360B4D368A66CEB3 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; + 301442C8DDB71CF4AE1F86FA76A5E0A9 /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; + 3020D2C76719B14AF34AB2BCB2910C92 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; + 3026180E0A83C41078F526B57BF0D13D /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; + 3026751E26E14B2C3EC78253F7DD84EE /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 30292A458B7E9F548EE21C42C00DB603 /* FBSDKURL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURL.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m; sourceTree = ""; }; + 3031066C94875208E9092FAC035F7A6B /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_genn.c; path = src/crypto/x509/v3_genn.c; sourceTree = ""; }; + 303CE32F97720D58075441B064BBD81E /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/service_config/service_config.h; sourceTree = ""; }; + 304AE726D484BA2928C1569B5617B493 /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; + 305BB6E1941264F132EC87D3F6883686 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + 306E898F40DC9AFE6F7FCFF9738180F9 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; + 30792D766F3434E8E096EEA8D1F63734 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h"; sourceTree = ""; }; + 3081E20333B21F91C74B8B9CC6E84A1C /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; + 30ACF2F0DADDD78DBEA9C6E83994E421 /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bitst.c; path = src/crypto/x509/v3_bitst.c; sourceTree = ""; }; + 30B9C6D19F51FE2489DE0CFA53BE20E4 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + 30CA87FC69D4CB26E9CAC0E31240A59C /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; + 30DBB78398400E7750F775F5D88D6528 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; + 30F312C6D2DF5153F2A698D42C2E5E8A /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + 30FC7A2C92E15320F6E7ADB7B3117AD0 /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; + 31020945E0A1F46FACA73EB08000473C /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; + 310913F10E858EF18868CF500699C9EC /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; + 312267514EB8F4C7FEA7345C8559C202 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; + 313C0F196450D3CA24761F6349B82782 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; + 3157A3A378F000EAC6165E92B2AE9359 /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; + 3157A47CD653D5C6555523F2C2383E03 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + 315AE2BA7BAFCBCD2EAA09292EBADC82 /* http_uri.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c"; sourceTree = ""; }; + 316EB68CAA0830A23AE5710DA4DEE90F /* FBSDKGraphRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.h; sourceTree = ""; }; + 317DB0A61B9DBAA6E7FE6B70FDEF67EA /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; + 318A8DB467EB98A104E34B57DB7C2AC3 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; + 319A9686A895CC8629E9E92A607A3932 /* version_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_info.h; path = include/grpcpp/version_info.h; sourceTree = ""; }; + 319B79CE8F4F063308E3019CC9C2ADCB /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_parser.cc; path = src/core/service_config/service_config_parser.cc; sourceTree = ""; }; + 31A09569652A8AC346A7D6ACE57498B4 /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; + 31A15B67B22B97248AB49364BF930150 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; + 31A4A3C97E2889BFF49C807A586C8550 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; + 31B730ED9AA33F3D1DFB8AFFCC2F0BA1 /* load_system_roots_supported.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_supported.cc; path = src/core/lib/security/security_connector/load_system_roots_supported.cc; sourceTree = ""; }; + 31BC0B59B3C2B32E10D575E7FD148942 /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; + 31D083D074DE7AE37E9170FD704875BF /* def_builder.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_builder.c; path = third_party/upb/upb/reflection/internal/def_builder.c; sourceTree = ""; }; + 31D71E4E66D4DF4E9388451C6DACA9B9 /* call_spine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_spine.cc; path = src/core/lib/transport/call_spine.cc; sourceTree = ""; }; + 31DC1715C8EEEB3B79CCB19549FF2867 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; + 31E62FD6717AADE964E8C23F04AE501B /* metadata.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c"; sourceTree = ""; }; + 31FC9A4FC1676CA61A92562A9C262DCB /* FBSDKApplicationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKApplicationDelegate.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m; sourceTree = ""; }; + 31FDB7CC9C08B5D9A312264DE7461F6D /* FBSDKProfilePictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfilePictureView.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m; sourceTree = ""; }; + 320774EAA7C99DD0152CD8CA9CB2EB0F /* Promise+Race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Race.swift"; path = "Sources/Promises/Promise+Race.swift"; sourceTree = ""; }; + 321C2871D36D0D72CFF711B8FB84C026 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 32220A163FE230655EDAC5298118BF23 /* FirebaseFirestoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestoreInternal-Info.plist"; sourceTree = ""; }; 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "nanopb-nanopb_Privacy"; path = nanopb_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 32342701343A3C06482D1D6C317965F3 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - 323E708C84FEC7FFCBBD6D05130AF9B9 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; - 323EBE9AC12186E4E0577AD20F12D0FC /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.h; sourceTree = ""; }; - 323FC9A426CCF9156C0EA1181A530B07 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/json/decode.h; sourceTree = ""; }; - 32699098C26F5F65BDA29400B643C9B2 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/message.h; sourceTree = ""; }; - 32869D974334B51884EAB22C6B79C705 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 328AAD5AC5A2AC6097932D27CE82EA20 /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; - 328EC8747FE93562C42508CAD7F80ADD /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; - 328F054AF56CD463F5B354FBDA1F7783 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; - 329130D62C4DC761A4BE6DCB77EEFEA7 /* deprecation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h"; sourceTree = ""; }; - 32947AF78BAF6898A12D50DCBCFBC211 /* wots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wots.h; path = src/crypto/spx/wots.h; sourceTree = ""; }; - 329BAE694E1A92F13AB8359AF0F3A4F4 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = src/core/lib/gprpp/strerror.h; sourceTree = ""; }; - 32ACF4C32A486D6DCB2ACA733E6CF816 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; - 32C67A6A631E1E9A7F6F78C395D9A509 /* DeviceKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DeviceKit.release.xcconfig; sourceTree = ""; }; - 32CD955C37FBF57D6059FFAAA85C0BAC /* ip.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h"; sourceTree = ""; }; - 32E2767AD8C86ED79FC4B993CA6F7D19 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; - 32E2B7B237541C5F2C5C54D3530FF9F6 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - 32E83E0FB1877602D9278D293DC318D5 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - 32ECCCA1F57EECEBD4FA168DBB5FAAD3 /* FIRAggregateField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateField.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateField.h; sourceTree = ""; }; - 32FF8DAAC8C433840DC1923D64F528B7 /* ads.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h"; sourceTree = ""; }; - 33017A7C42C6BEDE55F8F4D63AB64187 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; - 3312A694DAB2D927D1152BD59B1FF4B6 /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; - 3317DCDA44E4F425C6A3D5C032333133 /* decode_huff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = decode_huff.cc; path = src/core/ext/transport/chttp2/transport/decode_huff.cc; sourceTree = ""; }; - 33203F2348F3ACFD38A5FD16D9FF6B5A /* syntax.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c"; sourceTree = ""; }; - 332460371CBAA0001DC3EC8969806B00 /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; - 33472150593A741653E9C7075B46E328 /* proxy_protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h"; sourceTree = ""; }; + 32296E483F12B4C0B75B3DFDB1F7F29B /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; + 3244B6EE33DB1E5022BE2B321E2C34DA /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + 324780AE1726A5F92DB20061E237CF62 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 3248578D4FF57A9AE81327BDF7DC3F17 /* tap.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tap.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c"; sourceTree = ""; }; + 324927FF037FFCDAF54B3D564874DE2E /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.h; sourceTree = ""; }; + 3249D83376DB68858EB11310C25D2848 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; + 324F3E45A8AFE27F9B40F859E76618B3 /* ping_rate_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_rate_policy.h; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.h; sourceTree = ""; }; + 325ADA95E6704E058566B5A3DC3F62BA /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; + 325EF1482161ACB5BAB5EE840704EE22 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + 32676B0C10156AE2B44F62123826606B /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; + 326C80CE8EDA69946DC53BD62E9F9C7D /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + 327A16D23D15556F50569E28B07D4DB7 /* ratelimit_unit.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_unit.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c"; sourceTree = ""; }; + 328CCDEF924D516E84EC40458B4A740C /* http_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_trace.h; path = src/core/ext/transport/chttp2/transport/http_trace.h; sourceTree = ""; }; + 3297B7F8221794FEA367C4113283B083 /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_manager.cc; path = src/core/load_balancing/xds/xds_cluster_manager.cc; sourceTree = ""; }; + 32A8C4ED7F7D5C9743C6C359B8D258A0 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 32AB6545FE730611EDFF09FB4BE4D9A1 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; + 32B482B5050E0C871CF6D5E46CC4B3FC /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; + 32B554197B4676332C81742FB6707F9F /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h"; sourceTree = ""; }; + 32C773D61BCD20C2408EECF40EFDDE42 /* FBSDKBridgeAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPI.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m; sourceTree = ""; }; + 32C783B873ACD390F2779C6FB361427B /* wrappers.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h"; sourceTree = ""; }; + 32DDEDC785C4077848CE90656B5BFCF9 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; + 32DF46B42F5BDB98E8C7352F862B2617 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; + 32FAB22096D1C7A4B4E67189890D6E98 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/internal/accessors.h; sourceTree = ""; }; + 3300CA36BCF60CF1337FF190ED696758 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; + 3309249A31F1F80C8D7B86A739FAA322 /* elf_mem_image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = elf_mem_image.h; path = absl/debugging/internal/elf_mem_image.h; sourceTree = ""; }; + 3311683D2E79B7B3AE0EE67FEA35FAF2 /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; + 3317CAD51B5CDEC16A4C7738CFA0DF83 /* FBSDKBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBase64.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h; sourceTree = ""; }; + 331A31F5D6F88ED7AFD686A29A215A90 /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = ""; }; + 332A1FC2AD148CC5C0304EFBA8807FEA /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; + 332E7124D1DC4F6207690B6BBB52EC98 /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; + 3337B80321856929A0BF4BD1417A3116 /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 334BBB4D22B732FD76A0F0E2A7C851F0 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; - 334E09D644A26D6D3ED793E245B04B12 /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; - 3356F56CCB8112776C72B8CB5FC02265 /* semantic_version.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h"; sourceTree = ""; }; - 3367105CBF858FA11344940809B977E2 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; - 33780120FBAF137AEB1A05B0C30E0A4B /* TZAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetCell.h; path = TZImagePickerController/TZImagePickerController/TZAssetCell.h; sourceTree = ""; }; - 338AF7B3269FFA8E6D2E535054329AD9 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - 3392D35FCF998D30ADFE22B25FDCE0F5 /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; - 339785CA4353229D8940549F7D5F3859 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 3399446665F8D5AAE2C8F70307229976 /* number.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h"; sourceTree = ""; }; - 33A9E993269AE56C8A59CEBB6A005A14 /* load_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_config.h; path = src/core/lib/config/load_config.h; sourceTree = ""; }; - 33BBD6CAA2A320FE9E6FFCCBFA0589B4 /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; - 33C2CC761DC3F8763C2ACDB22C558F2F /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_resolver.cc; path = src/core/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; - 33CEB8D8E960CFABD80C78C61822B1F2 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; + 3361C1895AC215309195183D4E1D3DFB /* compression_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_filter.cc; path = src/core/ext/filters/http/message_compress/compression_filter.cc; sourceTree = ""; }; + 3374CDDCB22FFF8D7511049C55C72C40 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; + 338CBA7027FF9F66F50C6EBF7483AC7F /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; + 3391DFC9A9887592E1A03C67C5052991 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; + 33A2FFCCDE41FFCA9FD0D8059A7AD717 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 33C08343B1CC02F2421BA3F58A251EF1 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; + 33C55BE31C96F11847DB5D1B11B49EB4 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 33C76AF33796F016C01786FE4F22B506 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; 33D34D2210961B1CBFEC1D194B0AAB9F /* RecaptchaInterop */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RecaptchaInterop; path = RecaptchaInterop.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33E08E1B0BA7199D1ABBB5E96C14AF89 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - 33E32CE2E46FAFF3CC2C0FCE8C76F9E0 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 33E4F7E2523546253CD5054BE6ED22CB /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - 33F048915EDCFE89B4E37F58D2E07900 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; - 33F3A75CC6FD1EE992ABBCFCDD50F916 /* extension_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension_range.c; path = third_party/upb/upb/reflection/extension_range.c; sourceTree = ""; }; - 34028752B8769DC313F80DF0AE124C7C /* FIRCLSOnDemandModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSOnDemandModel_Private.h; sourceTree = ""; }; - 340C6C5BDCAABCC2624F2BB93AE5DB50 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; - 34100FD6875F6B0F22FF1F99DCA980EE /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; - 3418689C1A5F62805CC5E141BEAEBA54 /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; - 342EDC1497BFC2DAEA536D2DEF50B0D3 /* curve25519_64_adx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519_64_adx.c; path = src/crypto/curve25519/curve25519_64_adx.c; sourceTree = ""; }; - 34399B6F4297B786274A740C42112BF9 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - 345657A60FF0E53A2560D932ECB7150F /* crc_cord_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_cord_state.cc; path = absl/crc/internal/crc_cord_state.cc; sourceTree = ""; }; - 345749E9B085C56C0A5DFA4C6B09D370 /* posix_engine_closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_closure.h; path = src/core/lib/event_engine/posix_engine/posix_engine_closure.h; sourceTree = ""; }; - 3466C10A86BEE1BE4C84F4E33C80BFBC /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; - 346DDEEEF2F10DDF4EA0B42C6E345AE3 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/load_balancing/ring_hash/ring_hash.h; sourceTree = ""; }; - 346F43381C6DD95C937C07DA2A0F3DBD /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; - 346FD7B455ADD25A4567DF91C5082011 /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; - 34740217E7051F7BB8B1538D88D7D62B /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/extension_range.h; sourceTree = ""; }; - 347733DE9302F7F725613942AE441076 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 347DE80DE90F8C31649BFB026040A0F6 /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; - 34887DD7F0841ED43062C53A76C0AE87 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; - 3490402352A8F49AF999964E757FA378 /* bad_variant_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_variant_access.h; path = absl/types/bad_variant_access.h; sourceTree = ""; }; - 34B175795896525BD2D847752F383939 /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; - 34CE5C57249F7C5B6A0708B47AB0F04D /* skywalking.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = skywalking.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c"; sourceTree = ""; }; - 34D68A442D4B2643C3D7FE81A71BD769 /* ratelimit_strategy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_strategy.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c"; sourceTree = ""; }; - 34D9774C7E2703A06D7B9AFE6EFBDF2C /* flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flag.h; path = absl/flags/flag.h; sourceTree = ""; }; - 34DB006E2CFF708BD8173C3874A65A9B /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; - 34E8D749DA4ABDB6811420B471A05072 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 34EA5E6A5172430F2B625D5EB942D6EB /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 34F9E2C0A6B306707B24DF7BD4F5B319 /* eps_copy_input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eps_copy_input_stream.h; path = third_party/upb/upb/wire/eps_copy_input_stream.h; sourceTree = ""; }; - 35047C18448D0C2AD36936360AE82936 /* TZVideoCropController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoCropController.h; path = TZImagePickerController/TZImagePickerController/TZVideoCropController.h; sourceTree = ""; }; - 3506714A0619609E55545B209725CAEE /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 3508CDF38A29719B8A3E88DF722473F7 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - 350D01C3718DC2F00ED3C396DCF5645F /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; - 3513C10D08F2D3C36C9EE5FF330116E6 /* keccak.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = keccak.c; path = src/crypto/keccak/keccak.c; sourceTree = ""; }; - 351D2E7ED8EB097F332A0CCE950ABF29 /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; - 35781A79E80F6BBA410DE8627E634EF1 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 3579F694F6A1F78F99DF942C2572504C /* wire_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_writer.h; path = src/core/ext/transport/binder/wire_format/wire_writer.h; sourceTree = ""; }; - 35874B4D86FE75070E6F86018CFA2F16 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 3598BF1355655E8402A48B74A93A50EF /* FirebaseSessions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSessions.debug.xcconfig; sourceTree = ""; }; - 359C3370A5956F3140DB85F3ACFF6861 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; - 35A30276C2B4698BF8E3FAAEF17AA909 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; - 35AC1DB79CF82CDD122A857080C23A37 /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; - 35AD86F4109ECC5F1E5081BFEC51409F /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; - 35B06EFB3F9B3CB2557EC8CCDF6423EF /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 35BCD661B5C50704DA841EB440736BF6 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; - 35C63F1E14F8C3F5278E376D5B2E16B7 /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; - 35D20BA7954889E29E34FB1BD255D57D /* wire_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_constants.h; path = third_party/upb/upb/mini_descriptor/internal/wire_constants.h; sourceTree = ""; }; - 35E9D4F5BFF2AB945E446A0A37BD952F /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 35F717D02A2AC49B312AC948E773DC4A /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h"; sourceTree = ""; }; - 36028D163EA6A9DF9893EE590AF0D49C /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; - 360762E34447526C744C1CE22899908B /* wire_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader.h; path = src/core/ext/transport/binder/wire_format/wire_reader.h; sourceTree = ""; }; - 361796B9FAE16C7E8B7DDA1EB49B5C27 /* xds_server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_builder.cc; path = src/cpp/server/xds_server_builder.cc; sourceTree = ""; }; - 361821109C93AC2A89A45B5754A2E9F0 /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h"; sourceTree = ""; }; - 361F7680B677C6C76B1ACAB60B6C28BF /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; - 362346D8CB9F43A1EAB3C6D71B6CD0B3 /* utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cc; path = src/core/lib/event_engine/utils.cc; sourceTree = ""; }; - 362BA30D667214DAF68D035E51A65549 /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; - 3632EA6E31DFE932E64ECEA3CC717CF1 /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/extension_range.h; sourceTree = ""; }; - 364A7966B1A072744B356C9B60A2CCFB /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; - 364E8EC0C18F8905E64B32063CABC324 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; - 36512702B810FEE71980D68A88C72FE5 /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; - 3657E5765FE50ED544168062BAC9A9EC /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; - 367606410BDA2F06E2AB5F5F6E3A520D /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - 367A6741B8C65DACCA715860B6A6194F /* TZAssetModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetModel.m; path = TZImagePickerController/TZImagePickerController/TZAssetModel.m; sourceTree = ""; }; - 367AE3FFF3B5B73A808CD7356F9E7740 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 367D36B5B5F7A428F816FE68F34C06C6 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - 36A7955A1BDC65EC0B9461673F12D08F /* GTMSessionFetcherService+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMSessionFetcherService+Internal.h"; path = "Sources/Core/GTMSessionFetcherService+Internal.h"; sourceTree = ""; }; - 36B3523DAD298C5E99198BBBA1A5BB21 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 36B68C4FA4D179ADB04F78A4B1BB4484 /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; - 36C54B8EB55FB9FA272AA302C99D0A2A /* service_config_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_impl.cc; path = src/core/service_config/service_config_impl.cc; sourceTree = ""; }; - 36CC799104022BB5D4F40060E4C08FB0 /* event_service_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h"; sourceTree = ""; }; - 36D11B55B4DF32956F0120EC54D08DC6 /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; - 36DA093D6703A4A9C1E1BA05C46323AC /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; - 36DE5BD7F8F24AC476ED7D049B40A243 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; - 36E4AB9CD3F3979829C60C440268D678 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 33F5A7E4509EE584105C269C19B104BE /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 34002933EC0A8063F759DF5E36EAA1EA /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; + 3401891A7528095CFFA9331F9F7B6BA1 /* party.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = party.cc; path = src/core/lib/promise/party.cc; sourceTree = ""; }; + 3405AD789CA36E530A6C93510B207016 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; + 340A4613186CB32F1A1E2E02C43E7F1F /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + 3424E46387395C7A941BB0751515D80E /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/event_engine/slice.h; sourceTree = ""; }; + 3437DA35DD9669313C33C77B009709E8 /* event_poller_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller_posix_default.h; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.h; sourceTree = ""; }; + 344023CAD2B4DAAE09F010F3F36FE020 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; + 344283CE3E19CBF3C308327F87BDB6A1 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; + 344C70F1A4C13EE08CB5A21AB44585D7 /* TZImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TZImagePickerController-dummy.m"; sourceTree = ""; }; + 344C85D8677C71FD007EDB1BFA0309C6 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; + 344D64D05B45BFAF5EFE30AADF70DE97 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; + 345E82508038E32B12134D8F498C6399 /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic_filters.cc; path = src/core/client_channel/dynamic_filters.cc; sourceTree = ""; }; + 347913E7C969C13DAD1DCB8E3E9BBA4E /* adler32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = third_party/zlib/adler32.c; sourceTree = ""; }; + 348897630008E60693542001097803EF /* PromisesSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesSwift-dummy.m"; sourceTree = ""; }; + 3489B2E9E3175644C8EC1A7B26ECE77F /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; + 348D60671652BAFF17D678F29D7C20C8 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; + 34932E28AAAE26B834270DECA26CB21B /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; + 34A4AB9FD815B0446BDC5094B8AFFF47 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; + 34B84D0E19C320BA0CC94FE808D3A4ED /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; + 34BCAFE15056ADEFAD44D95547A94C99 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; + 34C79A36F5B7EF2349AECAF9B6972F10 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; + 34CD1108B745687FFF504EC40DDF8FDC /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; + 34D7119C95349CD0A60F24ECB2406792 /* listener_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h"; sourceTree = ""; }; + 34D9410D1A3AB9FEA26D5B43CFF171EB /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; + 34DE205920796B4220744C496A612E24 /* civil_time_detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time_detail.h; path = absl/time/internal/cctz/include/cctz/civil_time_detail.h; sourceTree = ""; }; + 34DE9C6DD82CB885FE2148C40512C266 /* percent.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c"; sourceTree = ""; }; + 34E8A94557578676BA0DB28AF029B44B /* domain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h"; sourceTree = ""; }; + 34EAAAAFD2A37F14EA04570FF5D80834 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; + 34F450EEA6A37787C36717E23C7A1397 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; + 34F676BA81CBEACECDAF577B0810072E /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c"; sourceTree = ""; }; + 34F7835F506D9D8437C74AC0CACFD4A3 /* udp_listener_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c"; sourceTree = ""; }; + 350392857660AA2A2A47AA423E7CE6E1 /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; + 351CB392135AEDE58C8A160BCA192ACA /* subchannel_stream_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_stream_client.cc; path = src/core/client_channel/subchannel_stream_client.cc; sourceTree = ""; }; + 351D3AD35DDDC576F8EE33EE1172E759 /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; + 3546E524A0014BD5105D9212D6BCE3B0 /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; + 3548459DEB91533E9830F85B9CA56C67 /* thash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thash.h; path = src/crypto/spx/thash.h; sourceTree = ""; }; + 355460D6B7E4E88DBBC17EABC8010598 /* FBSDKMonotonicTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMonotonicTime.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h; sourceTree = ""; }; + 355C7D9C7D7B178011B1BF68A9E73BE9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/Core/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 3565F7CFE0E71D05C56F46591346A6D4 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + 35823A369B7912130456F0BAF0F502E2 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; + 3588DE0A6B3AD6D1E962684D22F848FE /* event_poller_posix_default.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_poller_posix_default.cc; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc; sourceTree = ""; }; + 3589FAAE7179A07184CE1D7C9FE1B8AB /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; + 358F1C4AC16BB36538EB745268BA38C5 /* cancel_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cancel_callback.h; path = src/core/lib/promise/cancel_callback.h; sourceTree = ""; }; + 35928FF85E04A7BF3E30AE22CDD8E8FD /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; + 3593DE33DB7E0223EE05A5376210B69D /* discovery.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h"; sourceTree = ""; }; + 3594382C8CC8D8E0AA5C3E811DA4604B /* FBSDKCodelessPathComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCodelessPathComponent.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.m; sourceTree = ""; }; + 35C229DD89622C1D5A61DA2BAE936493 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; + 35C300EA0724A1F5733E769CB02EAB33 /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ncons.c; path = src/crypto/x509/v3_ncons.c; sourceTree = ""; }; + 35D7956846AFD0AFBA6D012B1FC43ACC /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; + 35E65CBCCFD1099D5937596B6CCF53F4 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/event_engine/posix_engine/internal_errqueue.h; sourceTree = ""; }; + 35EA6C8E9C0E95CCE50CACC31B0E358E /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; + 35F7E5549B387FF4D2F6749F2DA954CD /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; + 35F8C83F9B5FB9E056AC998C2ED301AB /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = src/core/lib/event_engine/shim.h; sourceTree = ""; }; + 35FF661D8BBFC27ED88E1CF4F314C2E1 /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; + 36010401C0AE2273ACF3A522425E54FA /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h"; sourceTree = ""; }; + 36132476F8BE0AD71C0F772961DB9E08 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; + 361754E81BCA51F7C0EC7CBD7ABC0C47 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; + 36412ED05FFE4DF5F6B43726E12F8155 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; + 365E314E3B65C84D3C0A2081E3D3E94A /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; + 36627B2BD2C3669D66EA9507975A8437 /* crc_non_temporal_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_non_temporal_memcpy.cc; path = absl/crc/internal/crc_non_temporal_memcpy.cc; sourceTree = ""; }; + 3662CDCB682DC39DA4C2EDE2CCB6B1CF /* http_status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h"; sourceTree = ""; }; + 3665F2F60E68BD0D6E45F284E3D1F952 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; + 3666B4E706919097D7906227C64A231F /* FIRCLSMetricKitManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMetricKitManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.m; sourceTree = ""; }; + 3668F71DE277B867F99FF1ADC3A2E3C5 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; + 366B569E9EEC2758871393493E82847C /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/call_hook.h; sourceTree = ""; }; + 367A03E236968DF5841D7B03B7EBCC1F /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; + 36809A12E5F78AD80D2330A7AB154EA9 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; + 368F2A04EFE284DCBBC4304CEB44558E /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; + 36A6B42EEC7C6B56E155F31B5715CDA6 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; + 36AFFE60E3761D7AC34D18C0E00642CE /* curve25519_64_adx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64_adx.h; path = src/third_party/fiat/curve25519_64_adx.h; sourceTree = ""; }; + 36BD09BE5F2EC42DA366D267955B60A8 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; + 36C1B56A2DD6A3008AE1378B48F74045 /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/internal/enum_value_def.h; sourceTree = ""; }; + 36C81E7078F291461BAB7F9520CB726C /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + 36CDA47DC2A34710C987A23287F1D05B /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; + 36D6A3CB32156B4288165D3EB988D1E6 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; + 36DB7F61CF9198C7B50155B1753A7D07 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; + 36DCA54E67F9E1320BD5834E81AAE031 /* unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode.h; path = third_party/upb/upb/lex/unicode.h; sourceTree = ""; }; + 36DD3ADEEFD9E33291312B9715336FCE /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; 36E72490B94BCA7F970CD02F35598A18 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Accelerate.framework; sourceTree = DEVELOPER_DIR; }; - 370463A978FC241F8F8C24616F55853A /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 370CBE331219ED27985EFC31651F4771 /* method_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = method_def.c; path = third_party/upb/upb/reflection/method_def.c; sourceTree = ""; }; - 37188B652ED376E32E94371F71535651 /* ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; - 37260653E33A1A23E5FA6554EDC20BC5 /* subchannel_stream_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_stream_client.cc; path = src/core/client_channel/subchannel_stream_client.cc; sourceTree = ""; }; - 372677D7A65A0511831962CB834AAD96 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; - 3746F4A09EDA218C1F7386D46BB30711 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; - 3778E964F6B91AE93B1D478654B776D2 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; - 37975AFE65765C6DAA35506A2E20D9D7 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + 371077972DC2E3FCE360EB44980716F3 /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; + 371607E68776D3706052B1D33CEAE9A1 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; + 3728F28739338409DD7761BFA46B1472 /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; + 37359C76E29736C274F9D7D62D92F619 /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; + 3736FE31042C781E7AD85DF3846686BB /* log_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_internal.h; path = src/core/lib/gpr/log_internal.h; sourceTree = ""; }; + 373DF2458DE3BF317317E3C5CF63513A /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; + 373FBE7AD81081C032BF4D71BDF83E80 /* rls.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c"; sourceTree = ""; }; + 3745C1EDB01E0992313B4E2E2725D057 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; + 374FFBA0BC66CDE87762F1656FF11B9E /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; + 375A54CD0A2392965560120AF5004586 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; + 375CA0EDABBDE880183065C124D34781 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = third_party/upb/upb/lex/unicode.c; sourceTree = ""; }; + 3771085AF8634D3C8F43661BDD4BAF69 /* fault_injection_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fault_injection_service_config_parser.cc; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc; sourceTree = ""; }; + 377AF364183169413C9BA5427A199CF4 /* hpack_parse_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parse_result.cc; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.cc; sourceTree = ""; }; + 3780076524DB6D617367B3872EC00C03 /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; + 379A4BC1F466FE894EEADF716010AEF5 /* xray.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = xray.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c"; sourceTree = ""; }; 379E5319BC6B4AE5613DFF7EEEAA6905 /* PromisesSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesSwift; path = Promises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 37AAD9BF600CC8454D9D5FADFCA2C00A /* domain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h"; sourceTree = ""; }; - 37AD959F2250AF4847A33FA53A1F3066 /* scoped_route.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c"; sourceTree = ""; }; - 37B135243A0E16B216C08EB4D3B05023 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 37B1F5C4F4D315D25F080986F4549F4E /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 37B6521E711FB954D237FCABFE225468 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/message/internal/extension.h; sourceTree = ""; }; - 37B9578314C15564A01FD21A8BAAA346 /* tap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h"; sourceTree = ""; }; - 37BD8E3F08E502A876ABE1D59738CB68 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; - 37C36A2EB5A02478D60CC424D10E45F5 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; - 37C6FCEB9CBECEFAC940899CF008BE3E /* filter.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h"; sourceTree = ""; }; - 37C75244C820AC8C899749EC66783964 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; - 37D28AAF6E29468528673914023B6F3C /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; - 37D626193C9858E62D6EF289C4B02EA1 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; - 37D936843959029F76FDA25AAE5EDDB5 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/client_channel/backup_poller.h; sourceTree = ""; }; - 37EEB5FFA86F40FDE6CC1AF7B3E591E7 /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; - 37F596706F8A11E4C268F73EB5B1E2BE /* collection_entry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h"; sourceTree = ""; }; - 3802A2990F2ED5B1593DC3DA11934C29 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; - 3803E9273AAA263DFEB83C3488D2CCE3 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/extension.h; sourceTree = ""; }; - 38070771B95D10D76CCE305B763CC9EE /* cord_rep_flat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_flat.h; path = absl/strings/internal/cord_rep_flat.h; sourceTree = ""; }; - 380EDC93700319F41F9E59502E68C059 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; sourceTree = ""; }; - 3815B53762042253851FA31294983926 /* strdup2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strdup2.c; path = third_party/upb/upb/reflection/internal/strdup2.c; sourceTree = ""; }; - 381AA3793BAD52EEABA59871059229E0 /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; - 38209C1FC2EF87EA43B2CE7BD2C5B387 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; - 383E4F563D7ACEDD5692B726601FC918 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/reflection/def.hpp; sourceTree = ""; }; - 38451210B32A429AF18C08E5E840DD0F /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; - 384685F623C7DB737B51601C49936276 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; - 3868B0DFF6C209038C7822C3E8F9B5BB /* config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config.cc; path = src/core/lib/experiments/config.cc; sourceTree = ""; }; - 3869F4838AD817E0363E585CA8E0A52D /* ads.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h"; sourceTree = ""; }; - 386BE81FE675E1BBFB4C3381D89E328D /* def_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_type.h; path = third_party/upb/upb/reflection/def_type.h; sourceTree = ""; }; - 386D30109FA2324EB056598B8DE7BE64 /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; - 3881E0475DAE22F55C1018E409196394 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 3883B0BD232B648327B92CC7A952AE17 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_client.cc; path = src/core/load_balancing/health_check_client.cc; sourceTree = ""; }; - 3887A3EFEACA3D434B84BDBFD2840333 /* service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h"; sourceTree = ""; }; - 389E05CEEC4EDFF85E37B4F77A8AE452 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; - 38A5D4A2139A36A00C217BDEB2A447CE /* xds_server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_server_builder.h; path = include/grpcpp/xds_server_builder.h; sourceTree = ""; }; - 38AB6E692EA5619283B58A8FA146ED42 /* tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_provider.h; path = include/grpcpp/security/tls_certificate_provider.h; sourceTree = ""; }; - 38AC8057E0552D610215BF9352B997F7 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 38AF30BF0506F8BE275D747FFBD6FEC0 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - 38C9F31EE58608016714822769049C89 /* LLCycleScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LLCycleScrollView.release.xcconfig; sourceTree = ""; }; - 38CA568AB123F0948CFECD5CFCDCE3EB /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/impl/codegen/async_generic_service.h; sourceTree = ""; }; - 38CD663E604F7EDA04C028885B02301C /* DevEventConsoleLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DevEventConsoleLogger.swift; path = FirebaseSessions/Sources/Development/DevEventConsoleLogger.swift; sourceTree = ""; }; - 38D4E52B8E98B3BC31A0CBC5F72984C6 /* http_status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_status.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c"; sourceTree = ""; }; - 38E0E963F0AD04D86E66D760FBFEF21F /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - 38E62FCF4C81944CB64D200947A6A633 /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; - 38EC6592AD614E17FD3C58B642119AF3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 38FA55C34B1B14CE770E10C129BD0012 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; - 38FEAE8BE5B32D8D32A423B67CD2C511 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - 3908DC8460D292BD47EADAC9C3006B02 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; - 3915E23109896CF59EBE9C6086D5C811 /* RecaptchaInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.debug.xcconfig; sourceTree = ""; }; - 392D877CC7FE85A0DB0B2FFD8F5FD276 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/include/openssl/time.h; sourceTree = ""; }; - 3932A5149BEFA38DFC3080E856357D62 /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c"; sourceTree = ""; }; - 39473D2D714EC61A5AF158C6C2FD9409 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; - 39530BECEB7DC82CEF4C49E1405472F6 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; - 395D0688CFC35F8AA5E7219C0FB71E82 /* flat_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_map.h; path = absl/container/flat_hash_map.h; sourceTree = ""; }; - 395E356F23859CDF9C6B8980C6E291B1 /* xds_dependency_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_dependency_manager.cc; path = src/core/resolver/xds/xds_dependency_manager.cc; sourceTree = ""; }; - 39711045BA516A440F17EA389C3F031B /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 3972F39724143066B743A4F253A6CEB4 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/sub.h; sourceTree = ""; }; - 3974B0FE7DE49148F07F0893DEAFB05C /* log_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_internal.h; path = src/core/lib/gpr/log_internal.h; sourceTree = ""; }; - 398A500983D8BF28501B1D46AA2DF897 /* handshaker.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = handshaker.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c"; sourceTree = ""; }; - 39967DF59374C522B5ACCE4ADF0D5B2B /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; - 39995D44F97EA9746E5346D6BF637910 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; - 39ABAA7B5E372A916B101CD3A6505235 /* xds_http_stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_stateful_session_filter.h; path = src/core/ext/xds/xds_http_stateful_session_filter.h; sourceTree = ""; }; - 39B804F2F64C3FBF1E577B2CF6E851AD /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; - 39DAC8169FEFB7642CA9242D4F5E4CE4 /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/internal/file_def.h; sourceTree = ""; }; - 39EF061F6CDE280B5D94572D010C8B50 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/event_engine/posix_engine/lockfree_event.cc; sourceTree = ""; }; - 39FB90DF969D1636D1D318AD291FC654 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - 39FC6D7D0A2F55571F827BA81DF0EFBC /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/internal/file.h; sourceTree = ""; }; - 3A0033434485F65359568B2F996C7C74 /* config_vars_non_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_vars_non_generated.cc; path = src/core/lib/config/config_vars_non_generated.cc; sourceTree = ""; }; - 3A07F4C291140D065D094F128C692B64 /* windows_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_endpoint.h; path = src/core/lib/event_engine/windows/windows_endpoint.h; sourceTree = ""; }; - 3A119D3CD79C2C5ED6A7120359D56CF5 /* crc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc.cc; path = absl/crc/internal/crc.cc; sourceTree = ""; }; - 3A13F4D60E2D6E3F48591294B14C9AC2 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; - 3A1B008C966022D983FE7169899C89A5 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 3A32C036DD3AD5A5D7A56C08C8FD12A2 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; - 3A3474E3553A9554F6108CFF45822426 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; - 3A39D0FCF3667494F40D2B9A13505DE2 /* metadata_compression_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_compression_traits.h; path = src/core/lib/transport/metadata_compression_traits.h; sourceTree = ""; }; - 3A3F6325BD5A04BCA518575952B2854B /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - 3A3FBCB7529A7BE0204C9C96A2F6742C /* env_posix_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_posix_test_helper.h; path = util/env_posix_test_helper.h; sourceTree = ""; }; - 3A500533A6A428C773DD4FBD896A8CE3 /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; - 3A55C25A2F00018CDF8DBED24A196F78 /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; - 3A59B82A2B65E875CD833821AB08A3B5 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; + 37ADBCF86DE59C9C4EDB8961E61F3851 /* FBSDKDialogConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDialogConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h; sourceTree = ""; }; + 37B6875A545037EC06E819D61DF01385 /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; + 37B6A4134ACB66A70999125E3077A320 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; + 37BFA75B5E3884FE2ADE7A8827CACF7C /* FirebaseCoreExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreExtension.modulemap; sourceTree = ""; }; + 37D562817A26369C5CF7D5169CA41274 /* overload.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h"; sourceTree = ""; }; + 37D6BC2B8CD41F450E9064B5214A36BA /* slice_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_cast.h; path = include/grpc/event_engine/internal/slice_cast.h; sourceTree = ""; }; + 37E39C37FE540F0BC80DB0ED1A234D30 /* domain.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = domain.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c"; sourceTree = ""; }; + 38105B2FE1979D77EC2CE121DAB6D7BF /* per_thread_sem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_sem.h; path = absl/synchronization/internal/per_thread_sem.h; sourceTree = ""; }; + 38149139E9DD67068F7DA31FC3162DB9 /* filter.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c"; sourceTree = ""; }; + 382ECE3666C1FB2A3CA2734C67DDD67F /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; + 382F4AD26D743D0AAE065966859C4CA7 /* http_protocol_options.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h"; sourceTree = ""; }; + 383367349D382C5493FD3C7C0AD8B0D7 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + 3839C8671F503EB6E49E49EC80D16612 /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; + 384D451514EAFAC60CC2AF32EA7B891A /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ocsp.c; path = src/crypto/x509/v3_ocsp.c; sourceTree = ""; }; + 3857955F9134BC2D339FBB5F039E8C8A /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; + 389182502744935374B7E508D6B63BE7 /* client_stats_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_stats_interceptor.h; path = src/cpp/client/client_stats_interceptor.h; sourceTree = ""; }; + 3898D90349B37CFA2F2BD513393E50F4 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + 38A12684275B9D5C7A26DBD8B166DA60 /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; + 38A3325E51E471CBE548D575B6B38921 /* flat_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_set.h; path = absl/container/flat_hash_set.h; sourceTree = ""; }; + 38A4F5D02B383FB0FDE19668EECDF132 /* custom_tag.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h"; sourceTree = ""; }; + 38B8C43DD2E11B41D1B130144F1310BE /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; + 38C25ABD5997A282A109A9B5A8B0078F /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; + 38D97748C114EE1EAD580528041B0700 /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; + 38E53FA9C157518D5D05304408113006 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 38E9274898F801A1412154454494B893 /* commandlineflag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = commandlineflag.h; path = absl/flags/commandlineflag.h; sourceTree = ""; }; + 38F207FC3FD2D79C58DAC1FEE38547A0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; + 3904B0C96D501803FD008EFE03257767 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; + 3906F842EFA94D806516F6AEA41F41FF /* metrics_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h"; sourceTree = ""; }; + 3909FCD58DD34A75D7644E315F321862 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 3912AEB95FF55EF1747D8254AA528082 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; + 39264091EF4205BF19AE80B40397CCA6 /* hpack_parse_result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parse_result.h; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.h; sourceTree = ""; }; + 3926DB44435F707EB750EBE109254986 /* reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reader.h; path = third_party/upb/upb/wire/reader.h; sourceTree = ""; }; + 3944A4518492637724B53BDE7BA70314 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; + 3948EAE03DB85DBAD79D229A5380402B /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + 3957FEE9AC3E3B3FBA6B7214A08E819D /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 3965192CAF7FA502E5ED1963E0D48D2A /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; + 39653BB49DC1A4449E117774A7318BE4 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; + 396A80262D736FCCD67791C9D4CBC245 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; + 396E22B3321418E2FC734FC896EEB426 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; + 39790BF71A05EEA06DF499F8CEDD82E7 /* scoped_route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h"; sourceTree = ""; }; + 397E3E80B4DCB029EE379CED61183092 /* ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; sourceTree = ""; }; + 39830D1953A20F4FC26084DBB810E0F1 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; + 399814B0D4DA3B134F4D98D4F6951D1C /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; + 399BBABC4F4F46AFAF404F21AE3B1E19 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; + 39A0E1224EAFA57D181005B00AEE9931 /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; + 39B8CF72AADBB85E061621EFD9D1865B /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; + 39C03034C5B485A72AD6FBC7A40A474E /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; + 39CE56B0E4F1BFE1E4DCEF2DEF311285 /* collection_entry.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c"; sourceTree = ""; }; + 39CF9E866E8EEBA6D631820D7C9BB67B /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; + 39D56CAF3393FAC9D5B03AD7DE38594F /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/internal/cleanup.h; sourceTree = ""; }; + 39D601C8F46E9D48D202B1E18F8491A3 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; + 39D68EE0BE06F0DA87C24ABC2CAC0395 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; + 39DC697C81245FAD4B35354B0A6CA87F /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; + 39EB86AEF9731B439AABBFBF55A960D4 /* grpc_polled_fd_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_windows.h; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.h; sourceTree = ""; }; + 3A0015218C914223BBE182DA9CBF2BA3 /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; + 3A0048F0ECA023F221D3C389A27F0DD7 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; + 3A1B26FC8EE42B3A5B64EBE778403CC2 /* grpc_security_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security_constants.h; path = include/grpc/grpc_security_constants.h; sourceTree = ""; }; + 3A2872619FB39761007FDBC92CEECD0E /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; + 3A2F74BF9348C375DAB7DAB986991112 /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; + 3A332BDF667A5BDC9C38990C4F2BB32C /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; 3A6314653B568326014FEB5B7B3E6ABB /* gRPC-Core-grpc */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "gRPC-Core-grpc"; path = grpc.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3A6B55996336A7AC996E0C3156387F60 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 3A898F1BB0CF85AEAFA807B83A1B3D23 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; - 3A90F6564ACC5E89392479A3C202E476 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 3A99E80DED3AC3D1D646903CFD4F8EA2 /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; - 3A9A2D4F9C5B4408CFBED9A06D23B714 /* altscontext.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h"; sourceTree = ""; }; - 3AA9456118AC11E10C746FC88554D3C5 /* futex_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = futex_waiter.cc; path = absl/synchronization/internal/futex_waiter.cc; sourceTree = ""; }; - 3AA980A0F3FBDFE330FF4F91FAA847C5 /* stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_filter.h; path = src/core/ext/filters/stateful_session/stateful_session_filter.h; sourceTree = ""; }; - 3AAE2B42E5377F40BDCC9B3D9C7085D0 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; - 3AB1E1C8030FABADA78FFF89A78BC3B2 /* tls_spiffe_validator_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h"; sourceTree = ""; }; - 3ABF602B2A68B996C51A4697A74D1400 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.h; sourceTree = ""; }; - 3ADEFF0CFA386AC8409480B8BAD8E5DF /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 3AF70D0C44F3344550673BAE9CDCA15F /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; - 3AF919A82997DF797FACF68705F575BD /* range2-neon.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "range2-neon.c"; path = "third_party/utf8_range/range2-neon.c"; sourceTree = ""; }; - 3B0147D1FB689C7312D31478C9616CDB /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; - 3B1B976FB0540F9F4001D2CFC90DAF0A /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; - 3B22B7DF0D5AF1D416FA7A9FC727B55B /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 3B2C19B0C9E2152EE98E4557CE89A30B /* kyber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kyber.h; path = src/include/openssl/kyber.h; sourceTree = ""; }; - 3B33CAE0F4284E64DFFD59B568CB2280 /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/internal/def_pool.h; sourceTree = ""; }; - 3B35CC8ED7EFC19F4222AAD9512F1D89 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 3B44C29FE4F618FF80E25ECCDA04C55F /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; - 3B4A419F7760008A17F3AC6369A4B37D /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 3B4EEEE47D6E58C6B6311CB9425BEE0C /* FirebaseAppCheckInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.debug.xcconfig; sourceTree = ""; }; - 3B4F1716FB66EC3723096784C15FD1CC /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; - 3B51F661AF78FD96392F98C1446FD0D4 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/json/decode.c; sourceTree = ""; }; - 3B53810B3C59B350FB1DBA82D45689E0 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; - 3B77EAC49D41342387ED46193ECB8225 /* has_absl_stringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_absl_stringify.h; path = absl/strings/internal/has_absl_stringify.h; sourceTree = ""; }; - 3B7BE00CA778E215D245166FF7B02280 /* descriptor_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor_constants.h; path = third_party/upb/upb/base/descriptor_constants.h; sourceTree = ""; }; - 3B88AB72E3A96481D3F8EBC9588518A0 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 3BAF28F9D19453E51E0AAD259D94395C /* SettingsCacheClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsCacheClient.swift; path = FirebaseSessions/Sources/Settings/SettingsCacheClient.swift; sourceTree = ""; }; - 3BBAFF46B591784557A85FCC9C11EE24 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; - 3BD882540628B9FD13CF7B92737AEAAD /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; - 3BFB62737011197EA9E860C6844830CB /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; - 3C2F1D3D0A294FA03143FE156C012DC7 /* config_source.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c"; sourceTree = ""; }; - 3C3CDB91F03FB87B2C8199310168F77C /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; - 3C4BE3A28EEF0B84B90F17E229F0C32F /* SessionsSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsSettings.swift; path = FirebaseSessions/Sources/Settings/SessionsSettings.swift; sourceTree = ""; }; - 3C53F2BE338B4F6E2A28992FA0A33D47 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; - 3C5683B41085C4D0B22E83F9E63B37DB /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 3C612522CFDA41E333893542F344A585 /* stateful_session.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stateful_session.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c"; sourceTree = ""; }; - 3C728E3020B06F6CAB3DB3FAD0BF906D /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; - 3C73D4EB83AA820E77D60039B96FAB13 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; - 3C76D397E4A03B06F0C1A97BF2DA6CE7 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = third_party/upb/upb/mem/alloc.h; sourceTree = ""; }; - 3C83F796AF28C7F7C323F519C848A50F /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - 3C85BEC84820E0EF2F58B68255A7CB1A /* thread_count.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_count.h; path = src/core/lib/event_engine/thread_pool/thread_count.h; sourceTree = ""; }; - 3C8B216EDED742F3F88E10F39EDF0FAC /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - 3C92618D674FE6EDEFB36E41C8C84393 /* sessions.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sessions.nanopb.c; path = FirebaseSessions/SourcesObjC/Protogen/nanopb/sessions.nanopb.c; sourceTree = ""; }; - 3CA8B309063C41A6F071437C07EAB935 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 3CA967BF479E9A39BB40F0D6A7CA8BBD /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; - 3CB1CE92EABBB76C21D2DB0C2A01806B /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; + 3A65B879700505BDD2FF378859447FCB /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/internal/extension.h; sourceTree = ""; }; + 3A719634F8520A6CCCED470DC9E45B3D /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; + 3A85CEB4C05814663B7BD46E9EB42C59 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/client_channel/retry_filter.h; sourceTree = ""; }; + 3A8CDC84BB5BF4C1195646477C9980CB /* client_channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_filter.cc; path = src/core/client_channel/client_channel_filter.cc; sourceTree = ""; }; + 3AA2A83FA6E2761A77F0EDE4C71E9193 /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; + 3AAA8AC4022773E98F3C2F74C9385CD0 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 3AABAB210B72304C565898A24ACF525B /* cpu_aarch64_openbsd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_openbsd.c; path = src/crypto/cpu_aarch64_openbsd.c; sourceTree = ""; }; + 3ABDFA3F13CD993F7BF2C5502407559B /* FIRCLSContextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContextManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSContextManager.m; sourceTree = ""; }; + 3ABE0D3B8C5C7881E6322671DD0A547F /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; + 3ABEF1EF46F0F821B07D19D13DD1D920 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; + 3AC3D4F575386A941488816EAB2BCE51 /* ads.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h"; sourceTree = ""; }; + 3ACB0FE6CF9691F32E0DB06FF439683E /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; + 3AD555EB8BE7918273A7E282BA85C8C8 /* swap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = swap.h; path = third_party/upb/upb/wire/internal/swap.h; sourceTree = ""; }; + 3AD9DF81E14F838D3B91441C8340FFD3 /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; + 3AE580411ACF731463E060B3FE637B09 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; + 3AE61B5E040A7E8BA7F76DCCD21ECD4B /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; + 3AEAE35DEA9EEA2262364F6421E98C0E /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; + 3AFEEEB454E540DCFED1CF0FC5BF5B55 /* grpc_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_server_authz_filter.cc; path = src/core/lib/security/authorization/grpc_server_authz_filter.cc; sourceTree = ""; }; + 3B07963187E849B3600BEF1128D2AC94 /* damerau_levenshtein_distance.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = damerau_levenshtein_distance.cc; path = absl/strings/internal/damerau_levenshtein_distance.cc; sourceTree = ""; }; + 3B0C7D0190B8797837E0C8831DB0AEB6 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; + 3B13BBEDA99083ECC9C8FEE5B18A67AB /* bootstrap.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c"; sourceTree = ""; }; + 3B171CDDDA4D319049ED3C4ADA35D2F2 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + 3B29410B439ECC404ACDDB43D0FD91D7 /* sensitive.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c"; sourceTree = ""; }; + 3B318E8553FC5E06FA3466A5A17F5341 /* TZImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImagePickerController.m; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.m; sourceTree = ""; }; + 3B445ECFD1BFF6B38095C04E8DB34855 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; + 3B683E664655E1BF43947BB8087A6D61 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; + 3B694B555CDFFA0B09218276FFBAA7A5 /* call_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_factory.h; path = src/core/lib/transport/call_factory.h; sourceTree = ""; }; + 3B6B5D6445F1519AE04AD6D054FE74F4 /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h"; sourceTree = ""; }; + 3B759622C8FAD450C21CC3594DDFC44C /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; + 3B7D024FF8444ADA7AF2E7DD190F43A5 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + 3BAD0DC8E09418ADF6ED87C529C3E36D /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + 3BC064DC4BFC7D2F9CA501B4CA6C8879 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; + 3BF14A0EF71A0E192691B9D0E517D5BE /* authority.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h"; sourceTree = ""; }; + 3BFBC8F9EF32E2BB4CCD9F03F66D3D46 /* extension.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c"; sourceTree = ""; }; + 3C280B12AD6BC81C90232BE66A251F12 /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_enum.c; path = src/crypto/x509/v3_enum.c; sourceTree = ""; }; + 3C30E325D7D1C222524474D3C30A820F /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; + 3C3E7142CD954B54BC22EB820E15E3A7 /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; + 3C431D839AD7742298DD978313465FD0 /* GDTCORStorageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageMetadata.m; sourceTree = ""; }; + 3C59496157383A4BCCBC878983B7E4B5 /* rls_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h"; sourceTree = ""; }; + 3C59DAAC08C67E96BAA761780E7F843E /* FBSDKAccessTokenCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCache.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h; sourceTree = ""; }; + 3C59EB1034149C9E184B2E02082DC021 /* status.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = status.hpp; path = third_party/upb/upb/base/status.hpp; sourceTree = ""; }; + 3C65593B21F80FAB8F750AB936D521BD /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; + 3C6EB9F6FCA0069BBA39F2F5D3180666 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h"; sourceTree = ""; }; + 3C803AC6ADA0D2567F45EF2F3ADF7DEB /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = ""; }; + 3C88803F3C5C7257B5A224A77C3F78EA /* SwiftHeaderWorkaround.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftHeaderWorkaround.swift; path = Firestore/Swift/Source/SwiftHeaderWorkaround.swift; sourceTree = ""; }; + 3C8C90159C7930C87DD175A97B82A3DB /* event_engine_client_channel_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine_client_channel_resolver.cc; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc; sourceTree = ""; }; + 3C9637CD1641A6C72173350632E1040D /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 3C9A7ECCB97423F9FE82976867609E4F /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 3C9BD439F7B917ECE19DE84F2F7CE84B /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; + 3CAFC7942485836905B6004A161A454B /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; 3CB3BCF1390F1406B03BC8DB4735D727 /* FirebaseRemoteConfigInterop */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseRemoteConfigInterop; path = FirebaseRemoteConfigInterop.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CB47A69428318DE9AE6D0A0348B58F6 /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; - 3CBFB900B3B6F14E9FAB0220A31FDEF4 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; - 3CC568764A308FBC6B04C43F97D87A28 /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; - 3CCCF8E339BF233DB476ED5C959C2F60 /* channel_stack_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_trace.cc; path = src/core/lib/channel/channel_stack_trace.cc; sourceTree = ""; }; - 3CD472CF83DEDA02082B07F074B36AFE /* write_size_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_size_policy.h; path = src/core/ext/transport/chttp2/transport/write_size_policy.h; sourceTree = ""; }; - 3CF963187214685F8C9991A1E5193EC1 /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/create_auth_context.h; sourceTree = ""; }; - 3CF9E09E45EF0EEB933A9418AC60E75D /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; - 3CFAE8526A4FD727D2A163741F2280BC /* init_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h"; sourceTree = ""; }; - 3D15D76F44B65CC832B5F860493C8EC4 /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; - 3D329B59D0D28AF155D25932347CA14F /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - 3D344AC57E3106A35A73E1DA0DBCF8F0 /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; - 3D3650A7B18E2F5B9AFFD40A7E9BA5D1 /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; - 3D44480D057B5634DDDC7A39CB431A49 /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; - 3D5F9296C14DBFF81B04B16BA70F8103 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 3D649FFCF03ECFBF68AA1171E0DA7ADD /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; - 3D6701255A45809DBF8E82CE47CA4556 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/decode.h; sourceTree = ""; }; - 3D683222EADB3B805254E0924BA18FBE /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; - 3D6B7165F77657104D413B7FF0FCA729 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; - 3D705033E1B400512C16EA03A9DF234A /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/client_channel/dynamic_filters.h; sourceTree = ""; }; - 3D859B5A062AB1920F2AA5ABB9CBD8D1 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; - 3D88A946CE98588A2FF205D3B7AB9C71 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; - 3D8AD2384C418F2E9E55B0C2D2248AC2 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; - 3D8E1F8A2C966F41AE032156EEB5DB54 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 3D8F48A6370E38861A5C59956CEFD838 /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; - 3D9DE63503ABE59FCAC655FDC6BDC0AF /* ring_hash.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h"; sourceTree = ""; }; - 3DBAD5AFC4A76AFC05BD7D93B1BF3170 /* channel_arg_names.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arg_names.h; path = include/grpc/impl/channel_arg_names.h; sourceTree = ""; }; - 3DC4D9FD58BA649EE553536251C67B09 /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/port/vsnprintf_compat.h; sourceTree = ""; }; - 3DC903F20740CBA07F98BC4ADC32CCAD /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker_registry.cc; path = src/core/lib/transport/handshaker_registry.cc; sourceTree = ""; }; - 3DCD7A1028A76EE50F9CC6BD09AC6EC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; - 3DD32FAEB205E316EE3B385ED08A02D9 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 3DE2D1C0683BBE926F7B838AC5F2E317 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; - 3DE57794754EE12AD59F794DE148DBB1 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; - 3DF4C34D1CB8CD3A607AFA203B19CA09 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/array.h; sourceTree = ""; }; - 3DF9BFEBA9E5D2514AA367CFFB5827F9 /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 3E01528A26913878A1635A06928823C0 /* cord_rep_btree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree.h; path = absl/strings/internal/cord_rep_btree.h; sourceTree = ""; }; - 3E07A4D74882F5BD7632C96974F11E1C /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; - 3E12FC7E509D46B477EA12EA8C9139F4 /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; - 3E1C09ED086985A19DF20EA4DF4F7811 /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; - 3E3921E27C2155E2C8A671AACADF422D /* clusters.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h"; sourceTree = ""; }; - 3E4914DC8FE81CCF2E89562BF3AA1B71 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - 3E4A358E82619F552C4DD27A89130AFE /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; - 3E78A66CE047D30527C3E4263485269F /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; - 3E8FB091A06DC2F35A85EC3338451D94 /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesccm.c; path = src/crypto/fipsmodule/cipher/e_aesccm.c; sourceTree = ""; }; - 3E9BE5EF4602CFC61BA2B88FB195AAF2 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; - 3E9D61FF3949EACE0949F8423B9FA1D4 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 3E9FFE7D102D24362D1C68CC364EF739 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 3EA20938B4C213BD14C852ECA3F187B5 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; - 3EB8E9489AB4CAC23FCC5179F97020B5 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; - 3EBCECA327301271EDBD88D65C28DA0F /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; - 3EC4080430345470D3B6E6FA7C983BE8 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; - 3EC4881F792C2EBE4260A55BB8870705 /* ratelimit_unit.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_unit.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c"; sourceTree = ""; }; - 3ECB73502594CBE06B38D68AFA4E3D77 /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; - 3ED67E4A77BD0818CEB7184A8E69E913 /* declare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = declare.h; path = absl/flags/declare.h; sourceTree = ""; }; - 3EE36ACCCE06FF0BC26E61410EC28144 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/support/async_unary_call.h; sourceTree = ""; }; - 3EF4CE324CA94D4CEE91EDE60D36ECFB /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 3EF7B924804E8138987B5F66EB337B66 /* endpoint_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h"; sourceTree = ""; }; - 3EF83F4110E5DA8CA98E271EFB759CB5 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; - 3EFF90C108636B555C6205470D5323C5 /* scoped_route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h"; sourceTree = ""; }; - 3F02AAC8A8312352AEAAC544EF34AAF3 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/hash/common.h; sourceTree = ""; }; + 3CBEF518D7F0AB66AA94559E99061458 /* json_object_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_object_loader.cc; path = src/core/lib/json/json_object_loader.cc; sourceTree = ""; }; + 3CC07488FEB091385E7EA098BFFD9521 /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/extension_range.h; sourceTree = ""; }; + 3CEA13A1ADD4D1FC82BE4BB150864583 /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; + 3CFC874BF57537F54CBB4DEAC1BCBC4F /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h"; sourceTree = ""; }; + 3D02C2B23E2AC89C724545E86CC79355 /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; + 3D10BBC84FE4B5FEA1720A2D5B55C4C6 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; + 3D321208A0545171E6E7520FEF3E7D40 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + 3D41C4B9560799AA91CBC955AE2C9D2E /* FBSDKApplicationObserving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationObserving.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationObserving.h; sourceTree = ""; }; + 3D43B611DF2A1F8E1D94A3DF73AB3CB6 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; + 3D567DCE6E9C1C89A9563BC972C7B849 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; + 3D5BB56DB26C4CE0A8387C17D3270E4A /* FirebaseRemoteConfigInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfigInterop.release.xcconfig; sourceTree = ""; }; + 3D8E09FE794D42D2C542C46EBEB04337 /* cidr.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h"; sourceTree = ""; }; + 3D8F7A49BF99FCC523C3DE1273212402 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; + 3DA0A0FA50A59591DFDC771CD4FD50BE /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; + 3DC01C3375DF8E9CCD6B3FC32FB4531F /* work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_queue.h; path = src/core/lib/event_engine/work_queue/work_queue.h; sourceTree = ""; }; + 3DC1258048E5FEDB446CD6B0F8257C25 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; + 3DC4A878ACF4B44D21F27BA8C538CED6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = GoogleDataTransport/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 3DD33EF671355E4D225ECED020327AEE /* validate_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_service_config.h; path = include/grpcpp/support/validate_service_config.h; sourceTree = ""; }; + 3DDC6ABE53DB28411CA690AC5904024E /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; + 3DDD1FD47C6A485AE38021D1BB7BCCA5 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; + 3DF3B87F8ACCF6869074996DC13CBECF /* time_zone_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_posix.h; path = absl/time/internal/cctz/src/time_zone_posix.h; sourceTree = ""; }; + 3DFBF6B26F36AD4465F8D1DDFEEE1F7B /* FBSDKDeviceRequestsHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDeviceRequestsHelper.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h; sourceTree = ""; }; + 3DFC6E47ED1A72A40E134902F2FDE9E2 /* builtin_curves.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtin_curves.h; path = src/crypto/fipsmodule/ec/builtin_curves.h; sourceTree = ""; }; + 3E0130BCACA7BC76A58902A8C97DBF8B /* thread_count.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_count.cc; path = src/core/lib/event_engine/thread_pool/thread_count.cc; sourceTree = ""; }; + 3E024C808727C5291D48EA0F6FE16865 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h"; sourceTree = ""; }; + 3E07CFC431278BB0FAC2D8FDAD0E7278 /* wakeup_fd_posix_default.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_posix_default.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc; sourceTree = ""; }; + 3E080AA12FA691892A60477FDD9C4383 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + 3E0C2B5B87812829628BB6C3E0A86A46 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + 3E138A656226C5FEBBC365BC3BFACE80 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; + 3E2491CEE808522A722F6127329A321A /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/client_channel/dynamic_filters.h; sourceTree = ""; }; + 3E42701F635480077E799571518383E1 /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; + 3E46B2A9232778A61EC47A19083EA212 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; + 3E71389BAD5C8D8506D9637EB95D02F5 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; + 3E801959856AB6805D8D9056831C3231 /* slice_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_type.h; path = include/grpc/impl/slice_type.h; sourceTree = ""; }; + 3E9B1600C2846E75D41B2DC4D6E1E190 /* FBSDKBridgeAPIProtocolType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolType.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h; sourceTree = ""; }; + 3EA9A18ECFE0031CE52D0DA9083D23C4 /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; + 3EABFBC9CC0613CBBE7BE764DFAA815A /* orca.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb_minitable.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h"; sourceTree = ""; }; + 3EB1FFC7728756BFEB9232A17BD17337 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; + 3EC2DFF1B50C5B3AD6B3ADDCC78AF85F /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; + 3ECE5855CF44828C86E788F985AC7217 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + 3ED481E813ECB0A8DB0FA0274C0C5B4F /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; + 3EE08784F701589EFD28E5951611563D /* quic_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h"; sourceTree = ""; }; + 3EE638B8185757188F516270A19622A2 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/sub.h; sourceTree = ""; }; + 3EF32F44C5915F51A017BA30D638EB8E /* traced_buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traced_buffer_list.h; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.h; sourceTree = ""; }; + 3EF5A1ED977BFE96D8D2D55B2FE64162 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; + 3F04AFA7840553D8D0F69DE7B579A373 /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; + 3F04F413CFF2C63257AA42D87BBA8EF8 /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; + 3F1DE39448CB794C50ED28AA351406A1 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 3F1E2F3A7634A730F5AC3D41FD89688E /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "PromisesObjC-FBLPromises_Privacy"; path = FBLPromises_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F295BB9CE1CC20543E81986D7E000D9 /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; - 3F488C77C85C1FC19FA2EB67E4AB1CFB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; - 3F4B36AAE3221597532D7CFFA8E2B860 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; - 3F4D62F36BE5FB76B3E249A5DABB5A80 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 3F50E6A5149A61E80576C6DA9726ADC7 /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; - 3F531A6D2AF79F2DF20A587C0ED54AD2 /* QueryPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QueryPredicate.swift; path = Firestore/Swift/Source/PropertyWrapper/QueryPredicate.swift; sourceTree = ""; }; - 3F5652719CDA46E014B9D5F7D5FE95D2 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; - 3F63BF407685F3E26B3810890154A130 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - 3F63F8F026478B0D6CC88861FE70F74E /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; - 3F6C93D1F9F3C7E59293F1C83332E319 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 3F7B79FF6039EF2E8F913007C8531966 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 3FB4ADE843B527126F630AEB1414FC30 /* validate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb_minitable.h; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.h"; sourceTree = ""; }; - 3FC61F6AE0FCAC70A0C2BC1045673A0C /* has_absl_stringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_absl_stringify.h; path = absl/strings/has_absl_stringify.h; sourceTree = ""; }; - 3FCC3F04109CB34B00001FFB2EF099E9 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - 3FE1724D7C7C160F2819A6A7A2341574 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; - 3FEB031226EF2F1E7BC5D97603E23DD8 /* http_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h"; sourceTree = ""; }; - 3FF94CDD8D99E94C616357087375F0A6 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; - 3FF9C09A86715BC07D4E7BBE3F222098 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_extku.c; path = src/crypto/x509/v3_extku.c; sourceTree = ""; }; - 3FFF12F485358EF78BF62B812C3DD392 /* http_tracer.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c"; sourceTree = ""; }; - 40027A3D23A2145C79DC4116FBFA9FDD /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; - 400E4758FA88E5BD8FF8C6FD0B82365F /* client_stats_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_stats_interceptor.cc; path = src/cpp/client/client_stats_interceptor.cc; sourceTree = ""; }; - 4014E525FCCB6986B9286C01182028E5 /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; - 40207359C0D668DBC250FDAE44DF152E /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 4030A6830C258FE9DD1C53F38247DAB9 /* context_params.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c"; sourceTree = ""; }; - 403D8D64A43E4E5C1CD0F19CFDD6AA05 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 404F39AD5C3233120802788A0312B689 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; - 406348FB675B6A7087B3E0556D1751F7 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - 40651F5EC5DA11535C6A08248D9B1E53 /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; - 4078692B36DF6209FD5E89DA4065ED56 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 40842C5ABF3BEE0E81B1D2911603415C /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; - 4087678779DACC960EFC316481CE6A42 /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; - 4087803685CDB7440B339D1372134AFB /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; - 408F897A312B2EA58C707C7974AE173C /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; - 40C031C3E2F46104A17E11CDEBD9727E /* FirebaseFirestoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestoreInternal.modulemap; sourceTree = ""; }; - 40CF5C96AF8C7B21946BCA7107A72C3C /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; - 40E3EDEA4551A74281832A6BA525C702 /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; - 410B61C24139671163C90E2B00699737 /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; - 411AFA1497B46ACEE745FF3B7EB0A50D /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; - 4121E920551736B0DA268F56A8BB7A91 /* security.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c"; sourceTree = ""; }; - 41271D39CC964BFC4A6A6394F67473B8 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - 41358C1067631AD0BC59473CCB052A2D /* mutex_stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mutex_stats.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c"; sourceTree = ""; }; - 414E17B83AC5B77FFDF389B4AC674C65 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; - 414FF90AF25776506F81767606359F6D /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; - 416D757DB3A6C784775D66646C54DAB4 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 4174064B37FD5F2E7BC6604177BDE1E0 /* delegating_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_helper.h; path = src/core/load_balancing/delegating_helper.h; sourceTree = ""; }; - 4178DCD3EC50E000A1B804894CC21FA7 /* any.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c"; sourceTree = ""; }; - 418897D38DC6B97964B32A387860BBA2 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - 4190C111896418697CA40682B4383BA9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; - 41A5DA42917F4F10ADC61953D2B03336 /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; - 41A9FE09D99E42D1A346F2A85C6B1AFB /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 41B4C2551DD7DE706587B2CE363EA503 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/service_indicator/internal.h; sourceTree = ""; }; - 41C9EAE5A8B15C985867C5CA8DE120EC /* timestamp.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h"; sourceTree = ""; }; - 41D3484ED8A82B07C2FEF3B16FBEAB48 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/types.h; sourceTree = ""; }; - 41DCD5B7AB2FAA1E3A763966CC7446FD /* semantic_version.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h"; sourceTree = ""; }; - 41E737F66E81A8D15066E83F63119152 /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; - 41EB6B8E02C955B877026B1DAC80C801 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 41EE0819785CB1355E739542A02076E1 /* arena.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = arena.c; path = third_party/upb/upb/mem/arena.c; sourceTree = ""; }; - 41F9033A6DBE1456C4181CA7F9F7B6ED /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; - 41FC1BCDCCC3B3167652E3070572705F /* http_status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h"; sourceTree = ""; }; - 4203C03091C6FFD45F1E3C71E50198DD /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 420C4DFAE6857E6CACA60EF5C8946BCC /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; - 421DFB724BA851670481A5B8DDE66E47 /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_target.cc; path = src/core/load_balancing/weighted_target/weighted_target.cc; sourceTree = ""; }; - 422050A9B8FC3DD6BBC1071002702FCD /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; - 4225AF88179A809C375073DF245102FB /* target.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = target.h; path = src/include/openssl/target.h; sourceTree = ""; }; - 422BC350A7A010136889D10AA799CAA7 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 42317275C7C3EC6E4F3B15A961DBFD3F /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - 423389BF9F3873D6A8D1DAB8AC107CC3 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; - 42367AC2928ADD73C3CB304E7A3C340C /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/closure.cc; sourceTree = ""; }; - 42496CD02F67640B1C66ECB00B5EB3D2 /* SessionStartEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionStartEvent.swift; path = FirebaseSessions/Sources/SessionStartEvent.swift; sourceTree = ""; }; - 4253748157F0B01577CAC8A47A9F6181 /* non_temporal_memcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = non_temporal_memcpy.h; path = absl/crc/internal/non_temporal_memcpy.h; sourceTree = ""; }; - 4254059D146289C1FAA0284CC41EFCA7 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 4261C8607B9122675FB72A04F6DBF319 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 426BA6E36457F08D42BB306DD1A29A6D /* work_stealing_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_stealing_thread_pool.h; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h; sourceTree = ""; }; - 42716016493C37BCACA2F7CC5BB85A29 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/method_handler_impl.h; sourceTree = ""; }; - 427E7DA65B0D898F87326EE4DEED68E6 /* csds.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h"; sourceTree = ""; }; - 428F3279F4C2BF2A12EE49C61FDF5A49 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 429E57C5FAFF1A8A7078A12812786436 /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; - 42AB9916BD6536B23EACA9E4939AF1E1 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/message.h; sourceTree = ""; }; - 42AD8675CDEC57DFA0DC4E045E884EE5 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/delegating_channel.h; sourceTree = ""; }; - 42CF1A50523AF025EE8B6510F5A35551 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 42D73BBC4D30CD0C0FE9D7280FDD579A /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; - 42D964BDF3B165670AF17B1BC27F3B0F /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; - 43027D8D94E7408A1D780805CD9CCFF8 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; - 4308C383E379367BC41410AD2C702E72 /* ratelimit_unit.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h"; sourceTree = ""; }; - 4314E2133E06E05721C34D2DE6F8DE3F /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/reflection/message.h; sourceTree = ""; }; - 431ED3E3ED2FFCFA021ED46167BC5AC7 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; - 4333C78F79817D0EFAFA3C5B290B757C /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/tcp_socket_utils.h; sourceTree = ""; }; - 43365096C48052D39836B32B8911833B /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 43453326E869146CE7498B6AF2F665AB /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 43465AAF82A4693D3BE68D179EA59698 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - 4348B363AA6783618F03462C598D8FAF /* proxy_protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h"; sourceTree = ""; }; - 434C448B78C138F9BE8EF3228534AC83 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 4350220E42E1C777E39D127161265A6A /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; - 4357BBDA12B131BDB106290BFEA3B9E4 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; - 43620B128524F892B1530D555D265C71 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - 43641668F8FD7CCF7679515CB03BB5B8 /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; - 436D524C2E39C8B15D9E5C17424E4F9E /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 4381FF76160861B8837B6EAF8D846F5D /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 4394A73813C217AE431572BC314816F9 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/mini_table/internal/message.c; sourceTree = ""; }; - 439A96E738E2C1A9A3CE7E126671962B /* FIRSESNanoPBHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSESNanoPBHelpers.h; path = FirebaseSessions/SourcesObjC/NanoPB/FIRSESNanoPBHelpers.h; sourceTree = ""; }; - 43AB4D6FB2B61A604701FFED774CC24E /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; - 43AE7DB7D5AB9477FBD3ED31C866BD41 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 3F3A787A0D452103D9A7AF5DCB876E51 /* health_check_service_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_interface.h; path = include/grpcpp/health_check_service_interface.h; sourceTree = ""; }; + 3F4526EBF9D8C1B1E7ADFE6CB53E4EB5 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; + 3F5062670A66696A9B7B5CC25A2AAC16 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + 3F7AEDE035ABDA429AA2ECE7B25E8FAC /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + 3F8317FA9C5A6FEB8DBAD6EF0064017D /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h"; sourceTree = ""; }; + 3F8659D487EBFDB976DA9ABDA10B2EBF /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + 3F8DD3293C3F43BEC5B8B620D2E2E678 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; + 3F8EA34A163AD81A59A41958C171CA5A /* LLCycleScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LLCycleScrollView.release.xcconfig; sourceTree = ""; }; + 3F924A74D76F29D1496C24221FF0109E /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; + 3F94EFA2198F4B5A2A2107FAA10C496F /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; + 3F9EE5FB6A75BAF47431EE5D3C45158D /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; + 3FA2890982E1AF9F125BBA8E265F4C76 /* interceptor_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_list.h; path = src/core/lib/promise/interceptor_list.h; sourceTree = ""; }; + 3FB0BD8DD0BBA4DA59E13633C81537BD /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; + 3FC29ECECF6A1F84DA5A14A7CC25CB20 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; + 3FD4B529F53521CDAF833EBBCC3E898E /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; + 3FE2D54F232656A85140CBD7A9A4F3D8 /* collection_entry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h"; sourceTree = ""; }; + 3FF794A10B30E2505AE2128C0144BB8E /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; + 3FFB88C6F9320DF64A735CD4A27CA32D /* Promise+Wrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Wrap.swift"; path = "Sources/Promises/Promise+Wrap.swift"; sourceTree = ""; }; + 4001F548202B6DA2B0E116EFCA781C79 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; + 400CB3556B9BCCCAB0C82DB5F6A34E2F /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; + 401F07B66BE397BC40F5F28FEC6D0EDA /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; + 401FE22CB247B28C9FEBC9C2A8DD823E /* SettingsDownloadClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsDownloadClient.swift; path = FirebaseSessions/Sources/Settings/SettingsDownloadClient.swift; sourceTree = ""; }; + 402F18CE4608FF4A99A8D95FE0ADF32A /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; + 4031E3A7FDB0DFE95508A132581BEB66 /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; + 403999396BB5C23DD24CB938827E40C6 /* http_status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_status.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c"; sourceTree = ""; }; + 403D8D41C7A33C698716C3B96EB2CACC /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + 404296028BD0409F9BE60821F5C79623 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/base/status.h; sourceTree = ""; }; + 404EE3170E64678A070C8808A5A11A9A /* health_check.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h"; sourceTree = ""; }; + 404EF5EA2D5685B8B3668AF57EA55851 /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; + 4073F45F433A75DB075AB959A7EA949B /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = ""; }; + 407F73546E4C9F8AC7411D802E81F638 /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; + 408E4D64A1C3BE4CB228F8F7AD414577 /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; + 408F2D068E8D6B05A1BAA6FE6E1841D9 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; + 408FA9241665959073B5923231510E57 /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; + 40ADEA93C8581D4C61659B1C9DF10631 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; + 40AFE03FB91CC3DADDCF9CC4F6887644 /* crc32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = third_party/zlib/crc32.c; sourceTree = ""; }; + 40B91BBA543BCCA0F62106599C98FACE /* weighted_round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_round_robin.cc; path = src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc; sourceTree = ""; }; + 40BCF6BB9833101314194D3ED53AFC39 /* metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = src/core/lib/transport/metadata.h; sourceTree = ""; }; + 40C88EC663FF8B23A7640F2854BBE8C2 /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; + 40D3B36E15DB4C9E32512B9F62506703 /* dns_service_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_service_resolver.cc; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.cc; sourceTree = ""; }; + 40D98C36989E256519A289FC2CF7DBDE /* FBSDKBridgeAPIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIResponse.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m; sourceTree = ""; }; + 40E55321BF9E92214DE391FDE54C9472 /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; + 40E98F4C41A7CD2009B6BBF84A8E2B38 /* Promise+Retry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Retry.swift"; path = "Sources/Promises/Promise+Retry.swift"; sourceTree = ""; }; + 40EFD834DBC3F9F29E735265E09298A2 /* listeners.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h"; sourceTree = ""; }; + 410CE5ADBCC274FF38C8BC4A445653D4 /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; + 4110C783316723021A0DBD4FA52893A2 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + 4111E1E2FBCD43CBBA2ACC5B4953E68F /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; + 411919061A39FDE6F643C6CD9F58C8F2 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; + 411D55F3EBC6EA58E7F05DE9F6511568 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; + 41307BE757B22092B55AAD4982C3141D /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/load_balancing/lb_policy.h; sourceTree = ""; }; + 41566A93184D41C4B6618F78A566CF5F /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + 4159CD378B07B500BB26724A9649F928 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + 417C87EA0DE3A70CA359F579A2E57281 /* token_bucket.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h"; sourceTree = ""; }; + 418758104DF39D19296C60B0B654B587 /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; + 418791A362A4C145F3F02EE5F58AEAE8 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; + 4190D3A80247409629C5ADC935DFD8EE /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h"; sourceTree = ""; }; + 419687CB1B8F58C0128C822F2401F8B2 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; + 41A1F3B0E50072AF92CE6FA179977569 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + 41A212B47A780E54A02B2B08361FD976 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; + 41B48C21E8A9E450122A3BA573AFCA5A /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + 41B9F4CAFF01F1C56AD22E88DB5A6EB7 /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; + 41C3D81936C0BA32E9A2252C2D0DB8A1 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; + 41C4CFFCAF63AF40C522F2E26F474D2C /* TZImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImagePickerController.h; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.h; sourceTree = ""; }; + 41D56D1BDB3A1489A2DE34459F231417 /* FIRCLSMetricKitManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMetricKitManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.h; sourceTree = ""; }; + 41DBED7C53913C72269396A8DE1EFEB5 /* FBSDKMonotonicTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMonotonicTime.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m; sourceTree = ""; }; + 41DF421AAFFBFC9EFA1FA204157FB0FD /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; + 41DF4785F2424E1202C50256C9EA43B9 /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; + 41F3BE7A0EBA838BD5FE55C16E4C918B /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; + 41F3F4AADCF059985FA5D1D6D9E7FB21 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; + 41FEBBF2D4596E7DF8F3087764FC44B9 /* router.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h"; sourceTree = ""; }; + 4210FF2774BA13285DC607DD5F7025C1 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + 4213328F44E2B658E9C950B8FFFC5BFC /* resource_name.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c"; sourceTree = ""; }; + 422007526CC47B38FC560E95FED3D4EA /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; + 423638DDE960D12E2157F9DE196F03A7 /* FBSDKAppLinkReturnToRefererView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkReturnToRefererView.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.h; sourceTree = ""; }; + 423B462BF76BAE2ECFFC13E9236F1A3C /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; + 42408F144924BDB439A0BAF526B54ADB /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + 4243509E14B58BBB1D1355A2DEDC385E /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; + 42479477DB3C48F6561B7F96EFB1EF8E /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; + 42552E1FDBE02EC901E1D21058204E56 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/load_balancing/lb_policy_factory.h; sourceTree = ""; }; + 4259EB1F7F04C1A8EFD6A66D11311F3D /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 4262B0A964A866EE9A698A6A52A300A1 /* ref_counted_dns_resolver_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_dns_resolver_interface.h; path = src/core/lib/event_engine/ref_counted_dns_resolver_interface.h; sourceTree = ""; }; + 42658366039B6D6C516B4FFA5D742E2E /* FBSDKModelUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKModelUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.h; sourceTree = ""; }; + 426C11C02F24907B2CF9D9B94D0D8D5A /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + 426F320C5FB7A54ED3CEE870C57F903E /* trusty.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trusty.c; path = src/crypto/rand_extra/trusty.c; sourceTree = ""; }; + 4273EE544A82FC13F1A09DC66D885FAA /* protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h"; sourceTree = ""; }; + 4275754F39FFF62E222024E9709CBDBE /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; + 42784E889CCC1972319510D487A4552C /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; + 427892DB8181A71853160F1EFA74B7A4 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; + 428264C34AB09708C9E16D39160F516C /* stateful_session_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stateful_session_service_config_parser.cc; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc; sourceTree = ""; }; + 428774272E46A4FE2E881987AB2BC032 /* binder_auto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_auto_utils.h; path = src/core/ext/transport/binder/utils/binder_auto_utils.h; sourceTree = ""; }; + 42878177EF1B43B31C03F485AA375B8A /* FBSDKConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKConstants.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m; sourceTree = ""; }; + 428A9F49DA6A31740D8EC1B93D371B96 /* ip.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h"; sourceTree = ""; }; + 429D43C99E146AE79A5FBBA54676BC57 /* def_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_builder.h; path = third_party/upb/upb/reflection/internal/def_builder.h; sourceTree = ""; }; + 42A24C746835DB48F2D086A4DABC4967 /* grpc_tls_certificate_match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_match.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc; sourceTree = ""; }; + 42A7BD509DB669554785042138614EF6 /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; + 42AF463251D6E48B2FCB0A0537DEA684 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; + 42B05BFDD9A09349D1E080C2BD36E01E /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; + 42CE55AE505F681AF1AC5E327B6689F8 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; + 42D31A6D42386A8B38EAB70FE4DA55FB /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; + 42D42F19709E981385C5C67466DFEF8F /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; + 42D5A7D67D3AF87D7C1DCD0B6097449A /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; + 42DE4ABC706200D2B8533C8D08215191 /* FBSDKTriStateBOOL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTriStateBOOL.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h; sourceTree = ""; }; + 42E23200D3FA272EC1A8497FB0352394 /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; + 42ECE98A8AEF56A40B7533233FBD69A5 /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; + 42F00B779BE4131064537A7AA063A959 /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; + 42F177E6B423248CB2F8CBA6A3670698 /* FirebaseSessions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseSessions.swift; path = FirebaseSessions/Sources/FirebaseSessions.swift; sourceTree = ""; }; + 42F35FE91DBA2F29FF8E9A9BF11FFC4C /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/internal/extension_range.h; sourceTree = ""; }; + 430B809D104C159A84D2687EB355C365 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 432475180743CCD196C48EC6A578380A /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; + 4338B4E11C3FF4FAF9B1410938684C75 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + 433DE30F2B52D4869A9BB7BC82F7F896 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/client_channel/client_channel_channelz.h; sourceTree = ""; }; + 434F3B48CE807859FDE920B8429707A4 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + 434FC5BCA3776D4C8FE2416C48938107 /* ssl_transport_security_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security_utils.h; path = src/core/tsi/ssl_transport_security_utils.h; sourceTree = ""; }; + 435B26E13F90F44DCA5F4B6F78FBD705 /* cord_rep_flat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_flat.h; path = absl/strings/internal/cord_rep_flat.h; sourceTree = ""; }; + 4368E93AB60D22FFF172147A0F16AF1C /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; + 436EC4B6C0FDB8B459D9B220FBD03700 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 4374B35CFB1098543AA3E3F3ADDBE8BE /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; + 437FA33E380A0CB7F855C5A3BFC7F789 /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; + 4392D20B3776720206267B344D4CB69C /* compliance.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = compliance.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.c; sourceTree = ""; }; + 4394B23F6ECC4593E1D5C46011EE5F25 /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; + 43AA3CA09441ABBC51D73CAAA97106D1 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/message/internal/extension.h; sourceTree = ""; }; + 43AE5CE95145FD657DDA9D7565829A79 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + 43B01CDCCCABFCD19655EE996C004F95 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAuth; path = FirebaseAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 43B3FDD2870268D0E4C22D2782B75790 /* cookie.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c"; sourceTree = ""; }; - 43B79C59D1CEC53ACB9B3E5ABD119423 /* windows_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_endpoint.h; path = src/core/lib/event_engine/windows/windows_endpoint.h; sourceTree = ""; }; - 43C4F85BEC42EE626891348BD0BEF690 /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; - 43CB6F558A14CCAE690A45C498CECFC2 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 43CD1752C2761A8AAD9EE766CA978089 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/generic/async_generic_service.h; sourceTree = ""; }; - 43D787E52F867D44C4B1F83691D348E0 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; - 43D8217AE5D4896A5B2130A2A69D2C7C /* timestamp.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c"; sourceTree = ""; }; - 43D8282DCD09D8FC58C61C2DBB43BF2F /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 43DFBC4F50D23FB23B4E85B33D1AB548 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 43F73EDF1EB8E3DF1F4C94CEEF9C4832 /* event_service_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c"; sourceTree = ""; }; - 43F76492E1B7571AAB0C628F9AC6A9ED /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; - 440DE3E38291C3198B325B410DE8E11C /* status_flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_flag.h; path = src/core/lib/promise/status_flag.h; sourceTree = ""; }; - 4418B9D0D230AAFBF7B49560468EE438 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; - 4426D007C0D82457D06C2D39FCA79630 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 4438EF6185365E9F0BF79A1E7166B47B /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; - 4442F3FC3F394F063DFC75DC062FBC48 /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/internal/def_pool.h; sourceTree = ""; }; - 444B335966749FB38726138EBA40D15D /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/file_def.h; sourceTree = ""; }; - 444F9E86E85072103EF6C6FCF575B273 /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 446EA1510AF119F37BD5A034AAFF96C1 /* call_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_factory.cc; path = src/core/lib/transport/call_factory.cc; sourceTree = ""; }; - 44946B9C254C2E04C87F4E96EEBD71C5 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/codegen/completion_queue_tag.h; sourceTree = ""; }; - 4496A35C2BD0510FCF3C465587E5E9EF /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; - 44A16214B3F2615E0BD65AD632713FB2 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = absl/flags/reflection.h; sourceTree = ""; }; - 44A22B8687CAC4414D8B8F467C0973D3 /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; - 44A5F6E7EE610DB4C5FA26DABD263AE7 /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; - 44B4DFB39DB20C371098EFA2F3F46654 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h"; sourceTree = ""; }; - 44BDD25932F1FB318A5891275D79DA21 /* client_channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_filter.h; path = src/core/client_channel/client_channel_filter.h; sourceTree = ""; }; - 44BDFBD2B8DA089A244FEABE101B601B /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; - 44C2949859712A62B5BA7E1212AD5108 /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; - 44D0E511281BA138F8BEDACF48081A96 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 44DB17DFFA784892A79E3BBF03FDFD14 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine_shims/closure.h; sourceTree = ""; }; + 43C18F4A6D1329EAB2C3B04AF433EDBD /* LLViewExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLViewExtensions.swift; path = Lib/LLCycleScrollView/LLViewExtensions.swift; sourceTree = ""; }; + 43E37BA335BBE13DA9DC0988A29C8605 /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; + 43FC0E4858604005F1F84D28FB8711B1 /* backend_metric_recorder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric_recorder.cc; path = src/cpp/server/backend_metric_recorder.cc; sourceTree = ""; }; + 43FF56C7B76276422F3A359C14722A01 /* FIRGetRecaptchaConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.h; sourceTree = ""; }; + 4413ED5BF53F70F00170E0C03E98C7D7 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; + 443163E2E2B9BEA49C2671A5AD0EBBF9 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + 443645381757C021133F1F8C3E4EB449 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_eventfd.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc; sourceTree = ""; }; + 4444C56DC5190B3A9CD9F2E1D1480559 /* FIRCLSContextInitData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContextInitData.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSContextInitData.h; sourceTree = ""; }; + 444BC53C6275DC70121DDB72B4D4378E /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; + 44518A9E00C4BE213AB9A43D27CF4591 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; + 445A0D1E50C1903C8F08FB08B378D6C4 /* mutex_stats.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mutex_stats.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c"; sourceTree = ""; }; + 4466D9D382B38282ABEFB8E930070182 /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; + 446C7046C55520ED8CE80B159A908FD1 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 44776998A0C99978A9FD74C471B48BC6 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver.cc; path = src/core/resolver/xds/xds_resolver.cc; sourceTree = ""; }; + 447850E949DF45791A5BDD2035DFE439 /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; + 447AC4FB70CFDFA0076B806AD6DA6219 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; + 447B321D5D636755C973D81B6ADA45D9 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; + 447C23445A13E81B49A2419C87B4C559 /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; + 448F32A96E625110CCEA9E5E234EBC8A /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; + 44930D38DB7B08058DF865A8E20BD20E /* systemd_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = systemd_utils.cc; path = src/core/lib/iomgr/systemd_utils.cc; sourceTree = ""; }; + 44954A5B4CA22F70EC7758D5E68A7569 /* keccak.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = keccak.c; path = src/crypto/keccak/keccak.c; sourceTree = ""; }; + 449707A1E0860C076EF471B917783258 /* EncodedRolloutAssignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncodedRolloutAssignment.swift; path = Crashlytics/Crashlytics/Rollouts/EncodedRolloutAssignment.swift; sourceTree = ""; }; + 449BCEFEBBB55A94C42C67FBDD6A0162 /* FacebookCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FacebookCore.debug.xcconfig; sourceTree = ""; }; + 449FE1ABCECBD5E5FAD246CE75E060A7 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; + 44A18EB0282FC9E3CC25B5DDB3E2B579 /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; + 44A2A376DC339E1E89949C89FE48CCE3 /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; + 44A949AF1F8C0267EE9107C970D41CFD /* FBSDKGraphRequestDataAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestDataAttachment.h; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.h; sourceTree = ""; }; + 44AC6457C721DA445D18556884A2E015 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; + 44D187E4B832B2448E9BE0BBB1849F5A /* FIRCLSLaunchMarkerModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLaunchMarkerModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.m; sourceTree = ""; }; + 44D98D64C9DAD8533F024DC4218FD9A5 /* decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decoder.h; path = third_party/upb/upb/mini_descriptor/internal/decoder.h; sourceTree = ""; }; 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleUtilities-GoogleUtilities_Privacy"; path = GoogleUtilities_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 44F42E3C3DA6B2CBD0C16D1D12436DCC /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - 45001CB3820EEBF5AC7D7D67995EBB61 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 4501A21085F3380C3FD637B2A42A3153 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseAppCheck/Interop/dummy.m; sourceTree = ""; }; - 450469BC00269B6B311D8568C8160385 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 4505B75B6C55DAF259B99853357D4134 /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; - 4508903E0CD8E90E2456C0B0B11F2E3C /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 451D2078F9E634EAD58436F1A55BDAC9 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 451D79DE50BA4E891CB3530A5AE55229 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - 451F7D8A95D2AC2488A13DEA96B29516 /* LLCycleScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LLCycleScrollView.debug.xcconfig; sourceTree = ""; }; - 4525F2D904F878C2A6D1F9B9F8F97597 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; - 45315DC3273AB37EC84B1367CDCE4437 /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - 4547E7D9F448F858FD16D15DCAFC8247 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; - 454D4B6605350A2DB408FC660ED45646 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 45532B655A2E523B0ED9112BCF0E60C0 /* cidr.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb.h"; sourceTree = ""; }; - 4560CA607C7FA62D10093B638BF2B591 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; - 456224646C705846CBE832F3A42F39B7 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 4564DCFA45EB5FBD4572E21D76D3A663 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; - 456D1CB604855339A9E5EFCAD1937FC2 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; - 459D14BB70C18A3BA6EF148556B57EB7 /* listeners.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listeners.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c"; sourceTree = ""; }; - 459EC7C60D6E976732F9A37FE0ADA085 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - 45A6C9670B67969A187F6C51F7D8811F /* p_hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_hkdf.c; path = src/crypto/evp/p_hkdf.c; sourceTree = ""; }; - 45BEBB6AA9731FA724230DED5D41072E /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; - 45C94F2D0AAE59A33296B359229E7A83 /* health.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c"; sourceTree = ""; }; - 45CAA698758924DF994C9611EFD21890 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 45D0AA0A076A5C9B6DF7E3F99E3F0BD1 /* def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = def.inc; path = third_party/upb/upb/port/def.inc; sourceTree = ""; }; - 45E355D4EA881EEA6DC29552D2FDE4A3 /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; - 45EAA12ECEB4647B29DE35F4F15A61CF /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; - 45ED87289D5947B8407F6D0FFC49BF29 /* clusters.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = clusters.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c"; sourceTree = ""; }; - 45EDDED85395A7191744049707819A50 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; - 45EF5FDCBD21BEAFFC5381F26C50FD3B /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 45FE720D8C554BB3A4101EE294E32628 /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; - 4600163DBD97382A659745D8AD32196D /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; - 4617B55E761BA582B923AAE6FD99A1EE /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; - 4637AFA665C7A04A54C0CF891D59527D /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; - 463D5268620A83520CC5579393DC7D59 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = third_party/upb/upb/lex/unicode.c; sourceTree = ""; }; - 465ABBC7A794041A8BCA697471C590CF /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/reflection/def.h; sourceTree = ""; }; - 465D0A78400008BC50ABBD8A5A3E1768 /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; - 4668CBE38C4B8D4B2B38B7FDC108B964 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - 4698299241EE4976CC1FF0B153CE6E29 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - 46A5DA72F06B8E51E5DE4ACDED3F979B /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; - 46AC3E7DAB8E40DAF78E1D885D8773B5 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; - 46ACFFAA029F46AB6F26C261B652E396 /* xds_override_host.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_override_host.h; path = src/core/load_balancing/xds/xds_override_host.h; sourceTree = ""; }; - 46B6E5743008445CF6B683722EA5C6EB /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; - 46BA8B4C028211C3E13C528E6810B434 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 46C91AFE3A0DC40BEBE2F0D7BEA18359 /* vsock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsock.h; path = src/core/lib/iomgr/vsock.h; sourceTree = ""; }; - 46D0A15FF2E154B8654AA395C1AA5F56 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 46D309A7EA3B1E8D1E0F08D35398E061 /* listeners.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h"; sourceTree = ""; }; - 46DACB750B5D843F239A2DBEAF07BB98 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 46DD463B0BC80D4F26519A8DB70BCA05 /* ares_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ares_resolver.h; path = src/core/lib/event_engine/ares_resolver.h; sourceTree = ""; }; - 46E554B333448DE7671B85C7270F8D15 /* metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata.cc; path = src/core/lib/transport/metadata.cc; sourceTree = ""; }; - 46ED79D34CC05037DAA8EF31B35FB3C6 /* tsan_mutex_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsan_mutex_interface.h; path = absl/base/internal/tsan_mutex_interface.h; sourceTree = ""; }; - 46F0EE1F6E9CC614324D5C3FFCC08996 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - 46F475FD122BECEBE760063C517AD588 /* TZImageCropManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageCropManager.m; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.m; sourceTree = ""; }; - 46F9CFDC969A9A34291CE5F39A34C4AE /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - 46FD8984516BB2DB3B892617BD469491 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/internal/message.h; sourceTree = ""; }; - 470BA302E4B80C1032BDE9CC0EF3436C /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; - 470EEF3E84292489A1CCAAA0D79A35BB /* address.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.c; path = src/crypto/spx/address.c; sourceTree = ""; }; - 471813ED1736D58049F8B203826F26E6 /* ssl_transport_security_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security_utils.h; path = src/core/tsi/ssl_transport_security_utils.h; sourceTree = ""; }; - 471878165A1D90D55201DBE951BFA535 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; - 47341C9255AD26C6852632351A81EAF9 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 473BF06FC9D94C0D3F80FACA43EF44D6 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 4745A3C2FA02F0F6CEDA05AC7A7682EC /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - 474C987110ACF513F3140F266DB234D4 /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; - 474E3E5A01E52F11CCD11C03F5DB4411 /* udp_socket_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h"; sourceTree = ""; }; - 475759045F39CC973CC54DED35DAF5FD /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - 476680B32A51B2F34A384D90C2D71C8A /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; - 476E123DFE3164535E4EB3F69923AA3E /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/posix/env.cc; sourceTree = ""; }; - 476E95AF619D3E76128B98DF3BDBDAD3 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - 479446E9C7183634DC97228A6679EAEF /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 47A1682AE2D5E8825FA853BFA90C0A9C /* FIRAuthRecaptchaVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRecaptchaVerifier.h; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.h; sourceTree = ""; }; - 47A971A0C5A1B06F98A524150CCA4D43 /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; - 47B0F93AAC170D867FD8DEE2708C242D /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 47B5E02C02A93695B48B2BF9DEC9B871 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - 47B7B411D780DF93A0F1A5FA18232851 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; - 47B804916692B6CFE6B6B4F1506A16C9 /* cpu_aarch64_openbsd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_openbsd.c; path = src/crypto/cpu_aarch64_openbsd.c; sourceTree = ""; }; + 44E68A4A4C005F5022A743CA4CD53B89 /* FBSDKModelManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKModelManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.m; sourceTree = ""; }; + 44E8E2DC3F467CB0F8FFF905151E4F36 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; + 44EB743ABBA8EFBEF0B6D11E1C176CA4 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/json/encode.c; sourceTree = ""; }; + 44F5B928B18375C336AB7A3C626635E7 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 44F626D46E97CFC859A6FF390DE4DC07 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; + 44F8C0EEA6D1B7470473BF58D5BD0127 /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; + 44FA8E88A17C45BA9D7BFCC874485CF5 /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; + 44FDD8CE72EE70AA6EFB414936F128F2 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; + 44FFE02DE60CBF733A6439E8427C93AE /* low_level_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_hash.h; path = absl/hash/internal/low_level_hash.h; sourceTree = ""; }; + 4502DF4229C79FF44246F77437D0FCB2 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 450451951FC2AC58BF47B481D6A744B0 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + 450847204EEFA331B43F9EB3920E84EF /* health_check_client_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client_internal.h; path = src/core/load_balancing/health_check_client_internal.h; sourceTree = ""; }; + 450E96E9F34BBBD81C7991926456785F /* ref_counted_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ref_counted_string.cc; path = src/core/lib/gprpp/ref_counted_string.cc; sourceTree = ""; }; + 4520E173FC472302EFB3A246B870A1F4 /* FBSDKAppEventsDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsDeviceInfo.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.h; sourceTree = ""; }; + 452117578F797051AC83C4C96B442A39 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + 453006F12E23B60355ED7997AD90CA97 /* FBSDKAppLinkResolving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolving.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolving.h; sourceTree = ""; }; + 45361B2BF4ECA4F437559E3BE2EA6082 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; + 4538912B20944B48796040C9FEF402A9 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; + 45413384C16166D352DDF50174914FE2 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; + 45504586DB648020C757B47EE1A87B9C /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + 455057A8FD941C3E723C4FD8C0EBCC2E /* prioritized_race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prioritized_race.h; path = src/core/lib/promise/prioritized_race.h; sourceTree = ""; }; + 455BF997F6DF3C264201A04E53593FE6 /* cftype_unique_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cftype_unique_ref.h; path = src/core/lib/event_engine/cf_engine/cftype_unique_ref.h; sourceTree = ""; }; + 456552763A7B86583A34F897D0BE142D /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; + 4570D7BEF446629739CDAF9DBFE4C8E4 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 457AB4E2347A73977DB84A45DC127DEE /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/wire/encode.h; sourceTree = ""; }; + 459039F3D054422980F608D97F558E2F /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + 45AA9F56498859B9E2D88FB705B92F54 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + 45B5A006A021613FFCD0288C5FE838F2 /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; + 45B83692BA5D228FF1AEA2670B59DD34 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c"; sourceTree = ""; }; + 45C2E02193AC9CB8DEACBECE0E446FC2 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; + 45C748D23C4AE21CA75CD64E57FF083F /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; + 45D0347A2321CD0BE176A91A4611C191 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; + 45D8439742E1A4F1F3312A23DF2B9BFE /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/sub.h; sourceTree = ""; }; + 45EF2E143A14563D31D106DADF9F3482 /* socket_option.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c"; sourceTree = ""; }; + 45F68D46CC150FEC4E05939BEAB64A43 /* resolved_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolved_address.cc; path = src/core/lib/event_engine/resolved_address.cc; sourceTree = ""; }; + 45FF6BA90322898C15ADE3C518672A04 /* http_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h"; sourceTree = ""; }; + 45FFCAC397DB0F74F647277B5B515B0B /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + 46122BFEC9C2EBFCD7C6A1E3EAFA50A4 /* FBSDKCoreKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-prefix.pch"; sourceTree = ""; }; + 46183FEA8FF83CD38CCACC4A09CB37C9 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; + 462253E31CCCD5A680503825B07A4A99 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + 462BFA9BD4AAC20B74D100C51E871B96 /* udp_socket_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h"; sourceTree = ""; }; + 4647A20C327B2BC18460420ED1BCB0F3 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; + 4652054FD4B388FF6C93ECA471B1D019 /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; + 4664215E639748BA74AE002C790D2345 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; + 46651ED3A21E9AD366A829124EE96C16 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; + 4673A8BC268A80AA65FBE1AB1121976D /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; + 467BCE892AAD63B00197B319BCD60E54 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 46829D1B1885FD727984670EC73B3DC2 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; + 468461C78912993F93DA5214AB956DB5 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; + 4685FB7AE275E625031BCEAAA75B91E3 /* str_split_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split_internal.h; path = absl/strings/internal/str_split_internal.h; sourceTree = ""; }; + 46883749FFC48C657703764895069431 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPickerController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.h; sourceTree = ""; }; + 46975123C6FAC8940EE24B461A74B04A /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h"; sourceTree = ""; }; + 469AB61AF50D7C519A81A70FCE4D0824 /* tcp_socket_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_socket_utils.cc; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc; sourceTree = ""; }; + 46A57A5811C7967BBB2E51CFF6F101F8 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; + 46AD19559DE72E3F65BBF3D2D7492095 /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; + 46B1CB1472BFC9190D21F24EA730A9B4 /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; + 46CAFF67493F14358E6CCA24A5D3FB16 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TZImagePickerController.bundle; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle; sourceTree = ""; }; + 46CCD863ED9DD807612737C12052EF16 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; + 46DDC59131AF4570E3645F57AE45F701 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; + 46E90299520FCE0FBE71255D28F9276B /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/client_channel/backend_metric.h; sourceTree = ""; }; + 46F65140EDF246F99A41DAA9643FC884 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; + 46FEF5F8DE6AE73866CA82E709C88EDC /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; + 4701E21A29FF1F7AE072CADD260EF173 /* rls_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c"; sourceTree = ""; }; + 47022611B1A165400CBF4AF68107E9EE /* FBSDKAddressFilterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAddressFilterManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressFilterManager.m; sourceTree = ""; }; + 470E68EA343CB2F510BCBC6B8A1FA27A /* query_extensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = query_extensions.h; path = src/core/lib/event_engine/query_extensions.h; sourceTree = ""; }; + 4762C854BA9BEBE4ACA5BBDC14093855 /* FIRCLSExistingReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.h; sourceTree = ""; }; + 476764B4D812387E9250442D5AFC6C9B /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; + 476E9FC75CE82108A5076276301F21A8 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; + 4773C4DF14D64173DE9E69E8C9AD3B86 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; + 4784FC6D66230BE89996DEFECDE1B032 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; + 4787484CFD0DD668E9B2FB61AEEC0D35 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; + 47886FAA106CC5546707EEA12F421E20 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; + 478A82331DD40A74E8459B036C24E695 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; + 478AAB730F5636516F60FFEC4D893353 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 478E44E81EDCB010AA2439B13812E073 /* FIRCLSManagerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSManagerData.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.m; sourceTree = ""; }; + 479D166F33C9BD63E1AEADE736775B15 /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; + 47A5D68EB54B2EDF8AC45CC1B6D1595B /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/linux/env.cc; sourceTree = ""; }; + 47AE1B4EE32BBCE2D93FC26E9E617B02 /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; + 47B9913383CBE472E71F347E0B3866F6 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 47BB3CC775CF268F825F0841DCCE1FD4 /* posix_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_endpoint.cc; path = src/core/lib/event_engine/posix_engine/posix_endpoint.cc; sourceTree = ""; }; + 47C080CC52714ABC160A5C7BA747F7CE /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseInstallations-FirebaseInstallations_Privacy"; path = FirebaseInstallations_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 47C96961DA4B81BB8359CFB479053B33 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - 47CBFFA617A23D4E2EF3C96A5CDF1BB1 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; - 47CD7BF3E22A1E0605846860AEBABFAD /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 47E1F1920D3F54CD145216BAF2213031 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/impl/codegen/atm_gcc_sync.h; sourceTree = ""; }; - 47F80AD5385F3B91700ACE5F70886148 /* descriptor_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor_constants.h; path = third_party/upb/upb/base/descriptor_constants.h; sourceTree = ""; }; - 480AAA3EF2BAFFEDD689085135D33469 /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; - 480F5224DFBF86913665D6E13339AC0C /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; - 4834CBAD43BF97074A15661406C7B591 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; - 483801BC67853449A59C94FC58F717B3 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; - 4851092C6D1B6739A428685EC946BA4E /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h"; sourceTree = ""; }; - 4853C854E918EA9741958B5159B723AE /* metadata_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_batch.cc; path = src/core/lib/transport/metadata_batch.cc; sourceTree = ""; }; - 485672D460099702E12EB1CE47919B4E /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.h"; sourceTree = ""; }; - 4858467CEDBE2B1316B0CAAFB5A3A04A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; - 4859F854E973BCDD9FFB2CE1D3AD7E69 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; - 485BF2666AE10AD0282B1DF9C8577B85 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/mini_descriptor/decode.h; sourceTree = ""; }; - 485F7973D1BD72F32A19A3D38784AFE0 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; - 4863CAD719A4359A2ADC342E14049B0E /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; - 486D2A79FEB47CCC342E8091647A5D80 /* grpc_tls_crl_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_crl_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc; sourceTree = ""; }; - 486E58D52C505317D9DA124B0982D88F /* empty.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h"; sourceTree = ""; }; - 4881A7D2577D907EA8E4A60CCE2AB58E /* TimestampEncodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimestampEncodingStrategy.swift; path = Firestore/Swift/Source/Codable/TimestampEncodingStrategy.swift; sourceTree = ""; }; - 489C92B2E08D3A15EA672024C0F6CD96 /* stats.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c"; sourceTree = ""; }; - 48A4E381CF9AC187A27618384EDDC74B /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 48B2390656BCBCADF144D787121DF157 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 48C557AF7BF1CB5D2176A95EF700918D /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 48C5B2306E604A0F7919AA7891A85B08 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; - 48C836880CF27D45A8507DB4670CEC6D /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; - 48D3752C7C2CDF9E853AB021F901A377 /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; - 48E030CA1DBBB8F76F7250B9547A537B /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; - 48E137B3CB080CB819FAD89342C90B43 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 48EB8CC18BED98A0ADD5D29587DC432E /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 49049DFD3C7B63E7C58E8AB879FD4E0C /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; - 490B2FDB05E67CB2EB79CE9B31FCB501 /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; - 490DD9278EBE747AC1EC28949C858C77 /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; - 490F97E2E2107410F7EF11E85061BECC /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; - 491ACE41D3FCF43024B6A01EB4D87312 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; - 491B5FEBED90992741A4E6B7EC0FB706 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; - 4924926305DFEFB1B0ED02E63DC991F0 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - 4937660C7C4175EB86B4768C14D3A42F /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; - 4950A37AC301CE860C4F3C38D1411E4D /* time_zone_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_impl.h; path = absl/time/internal/cctz/src/time_zone_impl.h; sourceTree = ""; }; - 496106E16AE4ABF2DBFA6D45F1DB0DA2 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; - 496283B2EF59B4B9464A8E8BFEF3E931 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; - 49684D1C7B6FD283CABFCC688839AD70 /* client_side_weighted_round_robin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h"; sourceTree = ""; }; - 497ACF4E1ED7F22EF93E88A828356EA3 /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; - 4993B2073990B4B0C8D7EE28D87D4CB5 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 49944F8B9DA9B718503EFB179F01819F /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; - 4998E9C6B005849519D17619CF5DA05E /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 499F47899CE9F652A96C724966ACD1B6 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; - 49A3AC4534F22DD112DBC7FEA096D37B /* path.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h"; sourceTree = ""; }; - 49B5DA74628EC3FD7545D519E736DD45 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; - 49B87887879EFCF251D94665C64D1458 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c"; sourceTree = ""; }; - 49C0709331C653B6BA0FCE3DF39ABBEA /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 49C5DAC0E6990A9B6DB03260F874B1E9 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; - 49EEC00375A0ACAF728161A752BAAF08 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - 49F18358069A6A6246DF67D3A886C73C /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 49F68603B305495ECAD879EAF317031F /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; - 49FB62B2036B8C387D2FFF0B70857263 /* seq_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq_state.h; path = src/core/lib/promise/detail/seq_state.h; sourceTree = ""; }; - 49FFFB1F48FB5414361D7103A3B727F2 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; - 4A1B0E9CA16046304FB65868E799435E /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; - 4A22A805FF4AF82D235126A70C79152D /* call_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_filters.h; path = src/core/lib/transport/call_filters.h; sourceTree = ""; }; - 4A2C4DFC73D50AF20C975AE0D0A449BC /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 4A3BD250065FC38900E68B2A6D8370C9 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 4A47CE4523EA1C6CB3AC7141BA0E9D11 /* health_check.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h"; sourceTree = ""; }; - 4A6417B4349EC7A7B291484968C152F1 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; - 4A6F1AC05068C1227393DAB9D214FFD7 /* orca.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb_minitable.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h"; sourceTree = ""; }; - 4A710F23FFA1903844BB84E7C104D208 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; - 4A7C64939D0AC67DF4ACF4009701520E /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - 4A7EC175EC99AC0F37B86B996DAE8C53 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; - 4A8AAF2AF9AE3C15B23A7AA4D368C2B5 /* party.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/core/lib/promise/party.h; sourceTree = ""; }; - 4A92BD167D0B2C03AD81789D1D39BC59 /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rls.cc; path = src/core/load_balancing/rls/rls.cc; sourceTree = ""; }; - 4A939104FE03B00E960F1067FEA3003D /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 4AB1A9989F4A627C9862D8377C333D70 /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; - 4AC202D88911FCBCDC1BC4409E331705 /* ip.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ip.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c"; sourceTree = ""; }; - 4ACAE8B5B22B0AB176B0E34438F40DC7 /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; - 4AD4A7C8AD5D0DF53E3763DAF1C546F8 /* base.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h"; sourceTree = ""; }; - 4ADB22C0931B25DB83C5F1429ECBBD2F /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - 4AEA57D88B45735EF573349CCD5D291D /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 4AEBD7AAB2048BD5EBFD6FBB922B93B8 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; - 4AF237783057F58C665756F0F9FB75DF /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; - 4AF4FEEC4DC2584C3B804DCFEA40153B /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/service_config/service_config.h; sourceTree = ""; }; - 4B191E4358B6A64E620A24D36020B975 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; - 4B20A89A0FBEA678ACDEE2D5F5CCD901 /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; - 4B276B96134FF03D1DA506D13CC612A0 /* event_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_log.h; path = src/core/lib/debug/event_log.h; sourceTree = ""; }; - 4B3E3CCB86C9341E6317CF79D27633B3 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - 4B6446551CB28B6CE354E94294B0D6F5 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; - 4B77B11683510E8116965F762A5EFF50 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/load_balancing/xds/xds_channel_args.h; sourceTree = ""; }; - 4B9129B66AE5ED3CDDF6CF9D6808EB2D /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; - 4B925C2844CBC00A92ECD42B66FCFBCB /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; - 4B9661FE21A0BC387ECC1283919AF96F /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; - 4B9913FAC52B2B88456FE46D043E83AB /* spx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spx.c; path = src/crypto/spx/spx.c; sourceTree = ""; }; - 4BA5A8003A4E0C064BD5C6B922CFC49C /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; - 4BA62110E09A9C639BAF7A0252EA9016 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; - 4BA89EC8E54AB0BC2B88D805A3E27C0B /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; - 4BB441DC8CD27B25007EF8319C9F17DE /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; - 4BB8F11689CC32F34D2631A80E7D9D1F /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRStackFrame.h; sourceTree = ""; }; - 4BBD474D5EE322968E2AF8A2C3F31C2E /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; - 4BBD4A50E111FC5E6E3D281EF9EC89EB /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; - 4BC96290F440688833A9AAE504097BB1 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/extension.h; sourceTree = ""; }; - 4BDEE03624F3ABFE3C4699D9D991C403 /* opencensus.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h"; sourceTree = ""; }; - 4BE264681665B427608BA6D3B5D79431 /* validate_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_service_config.h; path = include/grpcpp/support/validate_service_config.h; sourceTree = ""; }; - 4BE57F722B50DC848DA9C5227F5630DF /* http_tracer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h"; sourceTree = ""; }; - 4BE648E53F9A55AF9339B9985EC4CDFA /* call_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_factory.h; path = src/core/lib/transport/call_factory.h; sourceTree = ""; }; - 4BE8E737CFB4101CFEA57DD622DFECDA /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h"; sourceTree = ""; }; - 4BF30C01D679DB1B8BBA97D64EB7BE4D /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 4BF66AEE3106F8E7A69BF444AD8E78F5 /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; - 4BFC8237077EBCE1518505C28091387A /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; - 4C089D4B63E169C18D44E051C1A1B031 /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; - 4C0DAE092F849F06F45E365405C46DAB /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; - 4C1801D23257F3C9A9BB507EBCDAEFA7 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c"; sourceTree = ""; }; - 4C2771D3EAF2D4B3AEAF6CC7CDA7D865 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; - 4C4015A7BB0B93EC75030A4422C6853D /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; - 4C45B26F7BF05BF5BD9234088FBD3591 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/enum_reserved_range.h; sourceTree = ""; }; - 4C4BB4654BB09D877B222867D2415D84 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - 4C5096D01F9CFAA812ED9834E0E64070 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; - 4C51E3F4040187E0C7A8F4815FADBAD6 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; - 4C5C54AC33E2E1780B73178C289492D3 /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_prn.c; path = src/crypto/x509/v3_prn.c; sourceTree = ""; }; - 4C5E2024C729565E7BC4D7A871F51439 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - 4C65656A249406025017EA4A3EAC896D /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; - 4C6661CE2D12B5215016EAC749E6652A /* oob_backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = oob_backend_metric.cc; path = src/core/load_balancing/oob_backend_metric.cc; sourceTree = ""; }; - 4C6D02958D37D28CB2CDB697812150F3 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 4C6EAE0B00B431105BCE7283261B3F8E /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; - 4C6EBB8B07D7A731761BDFCFCBC9946F /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; - 4C6F33FC580EA4E6E5EA0B0105A30A77 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; - 4C941B7124304D06FBF53B4DCE656DAF /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; - 4C9C9F5BE805D2A5A498D7B39270CA8F /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; - 4CA38410825375D61AFC7D9F5A3E2BB1 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; - 4CA7BA7E8F0F29BE1AE69E857AC9D92F /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; - 4CB3AF1AE538FA86AED41AC853B3E331 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 4CB6F14CE9DF7B51111A2E82040C151F /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/service_config/service_config_call_data.h; sourceTree = ""; }; - 4CBD292B2234BBBECBFA4CD682E66B32 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; - 4CF2AA64FC7D27F5301816B28DED7E36 /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; - 4CFA4E39C49D79D5B3C58E9877272EBA /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; - 4D016C4023C67F6BCE08A5B98D81D2B5 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/internal/arena.h; sourceTree = ""; }; - 4D04BF7D5899CC58607D375D880CFE1A /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - 4D07CC1319D77DC16ABDDFE289FDF0CF /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; - 4D0B9B2FE37F43B4F25A2BECF4735F07 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; - 4D0CCA4108F253C616C787A9B4036374 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - 4D1C774E829B4E4F5135E765B9B0F3AD /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/event_engine_shims/closure.cc; sourceTree = ""; }; - 4D1FE712602E3AAF9B54D6A9177CA687 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 4D272A39D9AAC4EC10B8D127CC46B028 /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; - 4D295F7867F51E55DA55C2D87FE2BE29 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - 4D35B3942BCB336E3EB7DFC3682F915B /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; - 4D45536AE1248C1A4F9042A55CE4F059 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; - 4D5CE350FBF2DBC0CF8CCC1C5B63474E /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; - 4D6004D8110BEA118866B42303DC2FE3 /* quic_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c"; sourceTree = ""; }; - 4D639BADFF8903D3D345D283B3A4BBE5 /* checked.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h"; sourceTree = ""; }; - 4DA6BFD0FC1A06826DDEA320EC829AF2 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; + 47CDD622E24ED6E5DCC3731FCE0BF2A2 /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; + 47FF43C2A312C4743C70F1EB9FCEE51E /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; + 48076FF8289782301B2AAA7BD8C369D5 /* RecaptchaInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RecaptchaInterop-Info.plist"; sourceTree = ""; }; + 48077CF5CE7A9FC0070ADF71B4BC8E82 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; + 4807B0A0E23BB4EE2C1F181A2A95DECD /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; + 48111F1C5F1E4F7F728A9C4FEADACEA0 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; + 4817F1C2BDAEC2BA268BE15E7ECDD811 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; + 483D50E47A79FE49116AEFF08D439CEE /* FBSDKContainerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKContainerViewController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m; sourceTree = ""; }; + 4856881141E4AC66B7320B785D9126FC /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/mini_descriptor/internal/encode.h; sourceTree = ""; }; + 485837A641A25188F5AC97BC38BAE09D /* cel.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c"; sourceTree = ""; }; + 485E3A964059997D52122C04D2E4BA02 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; + 486E952847461D5718996978CCC95C84 /* FBSDKErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m; sourceTree = ""; }; + 4876A17D75CCCF9DAEB76E537AA92413 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 487DFAD84AC26540007CE2AFCE8926D5 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; + 488BC6D217889A41FE8BAFCC866C6D13 /* FBSDKURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLSessionTask.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.m; sourceTree = ""; }; + 48AA1BF41970302A79F0E2AD81F5D195 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; + 48C351AA2DC47946B943DA8209501DDF /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; + 48CD85A5DB5F5A7B0262FB9C5F025884 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; + 48D1C7EA2FCD37DE5A3E3E89148F4AA0 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + 48D74CF56D91A2B240038CF5F3471ACB /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; + 48E7B61C7EC0E0DA55736BDB920AED26 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/load_balancing/health_check_client.h; sourceTree = ""; }; + 48E89A501E903C80A214542DDC55A99B /* stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat.cc; path = src/core/lib/gprpp/posix/stat.cc; sourceTree = ""; }; + 48E9A7F0A2A73A5FF8383925E15E5F8E /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; + 48EF2CE2B033F062B6C14141AB1B36EB /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; + 48F2957244BBA0D0E75C513E7506E12E /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + 48F7B72F0B2533CFE9FD7C0AD0E29BF4 /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; + 49055526D146A01261E569E1911488A5 /* FIRAggregateQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateQuery.mm; path = Firestore/Source/API/FIRAggregateQuery.mm; sourceTree = ""; }; + 490CA83E20BC07CFD033FCBDED88C97F /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; + 490F6E4646BA6F79A747CAFF0AA51868 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; + 4913E406D40E24AA85F83DF81C8BF0E6 /* cidr.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h"; sourceTree = ""; }; + 491D942187ED57661D907390F2485E9E /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; + 492455E16CF8AF9E7DBD4E8148FC327B /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 492AE202311C951686C79B6DA98768E3 /* circuit_breaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h"; sourceTree = ""; }; + 4937E03E67B6D30E02653E5B5BCE30A8 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; + 493C0C3997F9218C31FA181A5CF0F535 /* FBSDKCoreKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKCoreKit-dummy.m"; sourceTree = ""; }; + 494095CB78A4739E53D514CCEB45F6F6 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; + 494E8342AEDE0972E737B5B0DD3605A0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Firestore/Swift/Source/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 495B76804346EB8A6E105E46388A856F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Extension/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 497A6A8A0D40DBE3AE112FC35762D523 /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; + 49874FC55B89FD7E98FD7431723111F5 /* json_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_channel_args.h; path = src/core/lib/json/json_channel_args.h; sourceTree = ""; }; + 49902276A606843554D993EBF875D2B6 /* grpc_polled_fd_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_windows.h; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.h; sourceTree = ""; }; + 499819590C0ED0C3E4C44C914DE1556A /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; + 499B4E6838BDB69C7A9A55059CEAFDCD /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; + 49B0971160DAF94BAAA38BB7152A5323 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; + 49B2AE01B221780AB8E3C4E73288CD22 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; + 49B4A6368FFE1F1946D1C3BAB4C5EE62 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 49BE36662EFACD6B8A340BD8D1C118EB /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; + 49C998CF25CD5395B71A28D2FBAC3A90 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; + 49CC4435CEF6E673E70E4ECDBC86ACD3 /* work_stealing_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_stealing_thread_pool.cc; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc; sourceTree = ""; }; + 49CE35023DBCD9DA96CBC5D3806449B9 /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; + 49DF6616812018C5951D9BE110B107E5 /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_client_stats.cc; path = src/core/load_balancing/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; + 49E7F7C214A9B6C080449612EE3E5697 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 4A1345A4AB4E8E1AF8F9A70C2AF05745 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 4A209FD2FCA4DA9650A61B9C9552B5BD /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; + 4A3033BB424AE4E6B17ACEFE3E3015B1 /* metrics.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c"; sourceTree = ""; }; + 4A4C6651B6992B2804BD53C93409D66C /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; + 4A64E2EAD57C355DB2C9447B676EAF2F /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; + 4A64EA68C8FA938C01F6D920F2321D53 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + 4A7339F5D4CE983891F11B49A9DACCEB /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; + 4A7C52667A1EFE88C651F7A9CD3DD9CB /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; + 4A7E16B36B13378F14361142A950D83F /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; + 4A975E7AED809A982FB0C550A67B5DBE /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; + 4A999A9EDA79338B4950A2411D18CA83 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 4AA4D3A6D5A7CE76510A43B0092C11BC /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; + 4AA52B38BB105E4A9BB0CFFAC44106EF /* LLCycleScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLCycleScrollView.swift; path = Lib/LLCycleScrollView/LLCycleScrollView.swift; sourceTree = ""; }; + 4AA554F14CD6842A5EB7FA2394D44745 /* FIRCLSNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNotificationManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.h; sourceTree = ""; }; + 4AAA612AFACF86597A9400DC08C72909 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; + 4AB319120E1714357859FD50AB4BD9A6 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; + 4AB75F34EB5CE44C6D7A3E3B5FDCD811 /* traced_buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = traced_buffer_list.cc; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.cc; sourceTree = ""; }; + 4ABCA2FE62A1ED99A46BDFAAC599A16B /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; + 4ADC134AFC91AFAB4941FD245C8A1CE8 /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; + 4AE51C6386065DA7D79DA3191A7513BB /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; + 4AEFB63B5203F8DBA00EC1862447F22E /* thready_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thready_event_engine.h; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.h; sourceTree = ""; }; + 4AFFB29860F852EA35ACF3318485B163 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + 4B0049E2BC91BC77ADE4ECEE26A8E253 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; + 4B0A11252FB9702070E354D82D2858DA /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; + 4B1B32B050393368F02F7E8C65D2B91B /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + 4B34F7B6144F5676E6A32FD824277179 /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; + 4B44099CD9D055E52391887E48BF8C76 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; + 4B4EFCAF13EB229900B38E7815576DC8 /* semantic_version.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c"; sourceTree = ""; }; + 4B6160B1F08F3348D3AA86632D4D3073 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; + 4B62D4057E5597CC6168D2559253F0E2 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; + 4B681F99BAA7227C03D826DBE4D2E51B /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; + 4B7F50F1C6CBDCDD125B734C4CC46426 /* GDTCORLogSourceMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLogSourceMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLogSourceMetrics.m; sourceTree = ""; }; + 4B8111CE81F817512080D61B72FEACC7 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; + 4B822548E0DD1429E6250389D2B1500B /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; + 4B86EB4B55DDE9313D4E932683603033 /* http_status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_status.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c"; sourceTree = ""; }; + 4B87213D75CFB6AC5F2DA6C8F5566F14 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; + 4B9058BC2E451D27CCD36FE5E4596AED /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; + 4B9367272D6CCC0F66E4930ACA2611CC /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; + 4B9484CB5ADC48D27FEF042EC18049A0 /* custom_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_metadata.h; path = src/core/lib/transport/custom_metadata.h; sourceTree = ""; }; + 4BC7C297262391D5A3D70811E9A39B1E /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 4BCDED523C7F97116A8B76E5B4248167 /* FBSDKRestrictiveDataFilterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKRestrictiveDataFilterManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.m; sourceTree = ""; }; + 4BE9151E461F9E7F90D3DC3515E30AEE /* ResourceBundle-grpcpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-grpcpp-gRPC-C++-Info.plist"; sourceTree = ""; }; + 4BEE90CDB82099D2DFFCF9344714F6F9 /* outlier_detection.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h"; sourceTree = ""; }; + 4C08CD14F186878A5DCA809188A153D9 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; + 4C0DB927606EDAF4963832D6788DAE8B /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; + 4C158FFC0625160CD8EB0D52A1063121 /* FIRCLSContextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContextManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSContextManager.h; sourceTree = ""; }; + 4C27F0C0AFA49CF78885A1C9F0516450 /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + 4C3B76B146875B3D30724F236C83C4C9 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/resolver/resolver_registry.h; sourceTree = ""; }; + 4C40F809A1586D89D9661523C488CF19 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; + 4C501701EC8AC193E12905BE390F338C /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; + 4C6D96D35F12C99529F8F080C42B9B56 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; + 4C7C91C465D8F1AFAEED9EDA3454A11D /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; + 4C8678D653544D1A79D205F57BE206C3 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = src/core/lib/gprpp/strerror.h; sourceTree = ""; }; + 4C938784E8012452027F838F5037F512 /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; + 4CA8BB1A2FFEFFD3A1938C110C1D474D /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; + 4CAEF4EC7C93486445750D0511730C69 /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; + 4CB4B6FB4024D158878A99A6FB8BC1F7 /* FIRTOTPMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + 4CB60477420A4307F225D670CC0417C6 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/load_balancing/health_check_client.h; sourceTree = ""; }; + 4CB6E5ECBAC719DCEA50552C67AB1B9E /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 4CBBF27E44E1C5821D6584C8F1EE2D52 /* GeoPoint+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "GeoPoint+Codable.swift"; path = "Firestore/Swift/Source/Codable/GeoPoint+Codable.swift"; sourceTree = ""; }; + 4CC45F071D39AD07CE265B892ED3F124 /* FBSDKDeviceViewControllerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDeviceViewControllerBase.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.h; sourceTree = ""; }; + 4CC50802D31B2B59376AC168311293E4 /* config_dump_shared.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump_shared.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c"; sourceTree = ""; }; + 4CD1AF9252AED454D6E48E24DEBBA3C6 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; + 4CD2C81E03B9FD7EA603878DA8D46A81 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + 4CD410E6433804F3F8764712893961F6 /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; + 4CD641701F99B8793587E3EF169BBBE4 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 4CDE00C1BAC83873179DFED479FC6090 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + 4CEA4E38A42FEE69927359777E9069E5 /* call_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_filters.h; path = src/core/lib/transport/call_filters.h; sourceTree = ""; }; + 4D04C579CB55488461426BAC5DE08222 /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; + 4D0F6CFB5379FB5DF2F276B45C6ADD86 /* http_proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy_mapper.h; path = src/core/client_channel/http_proxy_mapper.h; sourceTree = ""; }; + 4D1F6D8A69E5930254ED23773B18A5E9 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; + 4D20265072A1FD6E8339F59CAD76479D /* quic_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c"; sourceTree = ""; }; + 4D231913482767BD403643DD44A073DF /* TZAssetModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetModel.m; path = TZImagePickerController/TZImagePickerController/TZAssetModel.m; sourceTree = ""; }; + 4D33271352F246F58E08211CF184EA68 /* FBSDKAccessTokenExpirer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenExpirer.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.m; sourceTree = ""; }; + 4D33FE4754AEF6E7A9B2F9D475FAF6CF /* metadata_query.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_query.h; path = src/core/ext/gcp/metadata_query.h; sourceTree = ""; }; + 4D543D895C8FA7E8B72363A93139508B /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; + 4D5BEE1ABCFBAAF35D3DC9C385E37A46 /* call_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_trace.h; path = src/core/lib/surface/call_trace.h; sourceTree = ""; }; + 4D6A86A243A7CB1AAA545CF7EDFF6799 /* xds_server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_server_builder.h; path = include/grpcpp/xds_server_builder.h; sourceTree = ""; }; + 4D7FB9A89A3B2FE62EB2D3DEB8CCCE2A /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; + 4D8C9751C0A5D94150C568FBE073DBFF /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + 4D963ED9744ABD410CB5519C2B240FBE /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; + 4DA62ED86363AEEDEC469716F339B147 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; + 4DA68D9B0DB82112759D5288634D6808 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; + 4DA6F60C69A714EB58A8BB0A6323AAEF /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; + 4DAB4F2AC03D5532E9F8A7B097F902EC /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; path = FirebaseCoreInternal_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4DC75E418CCB893F39C675CF35AB7334 /* grpc_method_list.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_method_list.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c"; sourceTree = ""; }; - 4DCA765B443B3F5AFEB516E95C3ED608 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; - 4DD0B7726C4CDB8FF0A2899DB2A58E0A /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; - 4DEA4516A4EA4A1477F8EB12DD551489 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; - 4DEDAE9AFD60EB7DB462287E8F119522 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; - 4DF0F98F78C27F56733F6D5BCEBEF9C3 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; - 4DF6B2C84FD61DF47D14510E7307107D /* collection_entry.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c"; sourceTree = ""; }; - 4E03DAF2B7031999C6C11E871A572302 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/intercepted_channel.h; sourceTree = ""; }; - 4E123084C42A818352D17C6AA63744EB /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - 4E278354E9BCE50B464C824ED5DA39E6 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; - 4E37A80801D984601B35C6E618E040A8 /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; - 4E3D2F29B22AEB5A76BE66421D2D7EDB /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; - 4E42650DEADE076682C32B824585E662 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 4E53EEB8701A551222C0713F956847E9 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; - 4E5832E18E37644CA18F098D22227E35 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 4E5DDE18FAA26019917E88723404C95D /* http_inputs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c"; sourceTree = ""; }; - 4E7943963A1ABB6BD689631EEBB9FB49 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/internal/message_def.h; sourceTree = ""; }; - 4E7C822600722688B84CF7FC39488BC4 /* tls_spiffe_validator_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_spiffe_validator_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c"; sourceTree = ""; }; - 4E8DB2B91B24B61F1D5DCF8179D6D2F7 /* ratelimit_strategy.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_strategy.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c"; sourceTree = ""; }; - 4E9569D5E7E10743A42EBF3430103A19 /* FIRLocalCacheSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLocalCacheSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLocalCacheSettings.h; sourceTree = ""; }; - 4EB5209F888B627878D7145378B13FA4 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/message/message.c; sourceTree = ""; }; - 4EC1F6AAAB906C1F20A113D2C2F95195 /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/message_reserved_range.h; sourceTree = ""; }; - 4ECE443419F016DBEBEE6773E3CD4711 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 4EDAFAB13A996BE75B259AE48D861E65 /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; - 4EDF2389C92719DA48C4DBB3AC7A7B60 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; - 4EE15FCDF6A6A6FDA5241F5A7DD153C7 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/resolver/resolver_factory.h; sourceTree = ""; }; - 4EE884A2D11F77E08541760530B948C9 /* status_code_input.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h"; sourceTree = ""; }; - 4EE96FD0498A01DD7579040C3A43B8FF /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; - 4F032CDA691A85CCBEC57CB83A6B6691 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - 4F0702C55C3328F13C3152C0EBBF72C9 /* FIRCrashlyticsReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport_Private.h; path = Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h; sourceTree = ""; }; - 4F211A00CAC7C70D092D7F944EE710AD /* LLCycleScrollView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LLCycleScrollView-Info.plist"; sourceTree = ""; }; - 4F2564F1B9C94BC047A4D43F38CF6100 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; - 4F2C3E6E52A04136909458121624FCE2 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; - 4F32C66AE2EB7344060053B74A6560F6 /* client_side_weighted_round_robin.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = client_side_weighted_round_robin.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c"; sourceTree = ""; }; - 4F4087257919B714B8A742838EDA6B6F /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 4F4808E726E7B9346CD51257A2C1A03F /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 4F498B9F986381F36753D0C8D81A3A6E /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; - 4F4B00689331B9502A8C60EA5FE3BD3A /* dynamic_ot.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h"; sourceTree = ""; }; - 4F598569041AEBFB5F3F199DD53B0FA7 /* zutil.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = third_party/zlib/zutil.c; sourceTree = ""; }; - 4F62ACE71082FF74FE7C369D7388D790 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - 4F6E8BA159864A5693FD54D42CC8E870 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; - 4F6EF8F9C34530DD51238567230EE00B /* http_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h"; sourceTree = ""; }; - 4F766E58FDCC504A2097302AA586150C /* http.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c"; sourceTree = ""; }; - 4F8AF5FAB3F44583218E890679BD51FE /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; - 4F989FF9E30DCA94E3A2BEA65CB38D10 /* call_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_filters.cc; path = src/core/lib/transport/call_filters.cc; sourceTree = ""; }; - 4F9DD31D44C2F344EFF104D1620863F2 /* dns_service_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_service_resolver.h; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.h; sourceTree = ""; }; - 4FA2B92D97F1F33BC52E0E89110C7831 /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; - 4FB0146BD56619D704B4F7979C3E4E7A /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 4FB3611C6AECD849B708AA4A24218427 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPickerController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.h; sourceTree = ""; }; - 4FB4F563C5945BCD2F47AF757E8E7EA7 /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/call_op_set.h; sourceTree = ""; }; - 4FD516CF5067DDC0AF15ECEE6AFEA453 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter.cc; path = src/core/client_channel/retry_filter.cc; sourceTree = ""; }; - 4FDACF0023C9EF6DFD958F982B224E45 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; - 4FF7150805B91C2AE32ABCC7781745DF /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; - 500135B33B6EBC21AA5A4C225EAACCDA /* status_code_input.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h"; sourceTree = ""; }; - 501E5DDCD16727063BBFDF3F0573E1FA /* opentelemetry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h"; sourceTree = ""; }; - 5027D4AEFFCD2F16BC54ED48D70435E4 /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; - 50282F52ABB75D1B3EFA4E1D1C3A912C /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; - 50299275AFC008EE750C97AD84718888 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 502DA3927CC2E63179BA8FD452C9BA7D /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; - 503311B2A37E31A2005E398D03B65D22 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; - 503585B4D45920D0AA6450D21D30C1B1 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - 5036C3D346CFC7DFD965B73EF67F173E /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 504544840BF8634866E9C200F8FEDFDF /* filter_state.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h"; sourceTree = ""; }; - 5050C1CD27ABD99282E8E6CDF286B384 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; - 505BCD1BF7D4B69DF22FC71DBC8C1B81 /* join_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = join_state.h; path = src/core/lib/promise/detail/join_state.h; sourceTree = ""; }; - 506CB2C616E2B4BF8AB6B0117E061814 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; - 5089E56C920D72572AE1E6BDD4DBC418 /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; - 50915976216DB1C7C3CB58E21FB94AEC /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - 50AC7A49F182CEDE4D3169A0D57E9A70 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - 50B7F551549B2AEF68F94901ED208ED3 /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h"; sourceTree = ""; }; - 50D518189286E1FD58EB792D61DC5A29 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - 50E384BCD87C52A3AF382E08977303AF /* cert.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c"; sourceTree = ""; }; - 50E49093A510D0041B0A06FB8A8FC057 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; - 50ECEF85ADEBA779271C9F06A6FB65FC /* PromisesSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesSwift-Info.plist"; sourceTree = ""; }; - 50F984302C1C4B1F46BB2BF36C917D1B /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/text/encode.c; sourceTree = ""; }; - 510A582E5F246F26A1E4389151F2EFCD /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/load_balancing/address_filtering.h; sourceTree = ""; }; - 511C5D0A3891A67D4232826B9379CFAE /* channel_argument_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_argument_option.h; path = include/grpcpp/impl/channel_argument_option.h; sourceTree = ""; }; - 51232F20B595F88D4BD4776D6FB62CB1 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - 5125A58DCD2E83F8110EE714E7B78CD4 /* ios.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ios.c; path = src/crypto/rand_extra/ios.c; sourceTree = ""; }; - 512F42E55992DD16E9623E28016F124A /* message.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = message.hpp; path = third_party/upb/upb/reflection/message.hpp; sourceTree = ""; }; - 512F6AC9AADD5C74CAE3871E51BE880F /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; - 5134B1B88BDEB109823283A02A1A6E6A /* TZImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImagePickerController.h; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.h; sourceTree = ""; }; - 514BA40D662C3702D90428853968AF71 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; + 4DB79697E5B67A2916F313E89F8189EB /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; + 4DDE341C0C662CFB3708633EB5FEAA81 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; + 4DE315B69E902BD979D5F06BC5325350 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; + 4DE3A38BDC0D642CB4ED88CFC3989C95 /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; + 4DEC9A5151B78AA62DA14042AFA2C28C /* FirebaseRemoteConfigInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseRemoteConfigInterop-umbrella.h"; sourceTree = ""; }; + 4DF0981D0F5CBE6B7A4360761E803A54 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; + 4E0AB15A985C35E160FDF938FDF69AA4 /* filter_state.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h"; sourceTree = ""; }; + 4E1181B2672C0F9A807EF37D11553C82 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; + 4E1972B35C0A57367E0B2C3FBD2B38B7 /* base.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h"; sourceTree = ""; }; + 4E1A8C0A1C5B6A3F07F66F206C16E03A /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; + 4E2C6E177D6275B34FBB0F0BE84D7317 /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/client_channel/subchannel_stream_client.h; sourceTree = ""; }; + 4E4BE8BC41F4476684B1DE2D6F2F8009 /* TZImageCropManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageCropManager.h; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.h; sourceTree = ""; }; + 4E5131C6E1B125D30614E979C06A7254 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; + 4E587C1DFAD28A30788CEE5D3165E6A9 /* SVProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SVProgressHUD.modulemap; sourceTree = ""; }; + 4E606CEFB9482E44C8AE609EB58A52E6 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; + 4E6280440ADAD91FDD792772C960CD37 /* delegating_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_helper.h; path = src/core/load_balancing/delegating_helper.h; sourceTree = ""; }; + 4E6A7B9663D35B5F9DC678735C6C6759 /* pick_first.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.h; path = src/core/load_balancing/pick_first/pick_first.h; sourceTree = ""; }; + 4E6D4E878299E6CFC3B1126C19168C30 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; + 4E7B4253EBB52E74F4BB8EA50C5B331F /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/oneof_def.h; sourceTree = ""; }; + 4E7B9FCE0825B18D9EAD202E9996E6A3 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_lib.c; path = src/crypto/x509/v3_lib.c; sourceTree = ""; }; + 4E8032EE9764D543857B371F7C921BF0 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb.h"; sourceTree = ""; }; + 4E87D2EA3E527FADB02190981A1FED40 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; + 4E8AB8E3D4784DFD475CB9F09D5A47A8 /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; + 4E8FB1C7CEF32EF7D9EA7B132B03EB3B /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; + 4E9470AF73E5F7D6C2FAC601C27776D2 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; + 4EAC9702E2E5E90DEB21FFBDCE056E94 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/event_engine/posix_engine/lockfree_event.h; sourceTree = ""; }; + 4EB22D8479953C385023C703888B32AD /* tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_provider.h; path = include/grpcpp/security/tls_certificate_provider.h; sourceTree = ""; }; + 4ECCA78ED2CC122767954859A8C42C3F /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + 4ECF0A062391796E90C6039670E91775 /* httpbody.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h"; sourceTree = ""; }; + 4EDA9B7D9F16AFBD1CF298836055A27A /* tchar.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tchar.cc; path = src/core/lib/gprpp/tchar.cc; sourceTree = ""; }; + 4EDF784ED19CD2F1FFA3336BBD46F6DC /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; + 4EE098047451E178B2AB5C2720E7FF13 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; + 4EE2670E0253A5848E1DD9F89E4845DB /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + 4F0C0868CCACA33F1674DD39032B0EED /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; + 4F0E2FBD7854B6C6460B447EEB1895C3 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; + 4F1A38176E08F6CF3FB3620966222F89 /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; + 4F1DEAC912ACB167FB15EBB4092BF981 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; + 4F1F08A65453217952415D6521325BA2 /* descriptor.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h"; sourceTree = ""; }; + 4F212B33FFAE46FFEA6C2785B14C5BE2 /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; + 4F29BF183188D7CCC149C8756AD87FD6 /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; + 4F319EC7880A470F3792BDF2326734CC /* default_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_event_engine.cc; path = src/core/lib/event_engine/default_event_engine.cc; sourceTree = ""; }; + 4F3F3A5762BF14E5A65EFA548C9ECEC1 /* clusters.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = clusters.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c"; sourceTree = ""; }; + 4F49004C3DDC45814CED7279F7B40EEB /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 4F49888031BAF02647713384C7C775C1 /* wakeup_fd_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix_default.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h; sourceTree = ""; }; + 4F4C14D6A7D9885AC8341A69B2FC7F91 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; + 4F4EB2233817F2EE47938DA25009F16F /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; + 4F57F4D11AF9F1CAD8962A6008D2D9CA /* FBSDKAccessTokenCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCache.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m; sourceTree = ""; }; + 4F63BF61B52D2BA66E8FE087AD036C2D /* certs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = certs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c"; sourceTree = ""; }; + 4F71C51ACFE53D69EA7829C3D019A242 /* usage_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = usage_config.h; path = absl/flags/usage_config.h; sourceTree = ""; }; + 4F776F8ACA978A8B16D808AC7202EBA8 /* FBSDKEventDeactivationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKEventDeactivationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.h; sourceTree = ""; }; + 4F836057B7AF4BFD807A780C7A50B4C3 /* dynamic_ot.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dynamic_ot.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c"; sourceTree = ""; }; + 4F86BC76BED8786E5BDD23013B218A03 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; + 4F89288C3BB926DAC350E0B256B42721 /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; + 4F8F163C8FEA26E7D4A21BFA2C061874 /* def_pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_pool.c; path = third_party/upb/upb/reflection/def_pool.c; sourceTree = ""; }; + 4F98E1C7D032CB225DF2F711D7FB6C85 /* DeviceKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DeviceKit-Info.plist"; sourceTree = ""; }; + 4F9BD488AA18A32470D5D6F8B023473F /* proto_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_reader.h; path = include/grpcpp/support/proto_buffer_reader.h; sourceTree = ""; }; + 4F9D94AF926B2C4CADEF20F2771CA5F7 /* service_config_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_helper.cc; path = src/core/resolver/dns/event_engine/service_config_helper.cc; sourceTree = ""; }; + 4FA9CAA64C36C87294B3D5C229A43003 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; + 4FBBF0CF4012FC71E2BF3C0B5999235E /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; + 4FC3D6C2D94C86343A9E8BAB1BB9BC08 /* FBSDKMaleSilhouetteIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMaleSilhouetteIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m; sourceTree = ""; }; + 4FD1DA5F1D05E410CFB288FEECD96651 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 4FD702A719100E8F9BF233A691EFDBCF /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = src/core/lib/gpr/windows/string_util.cc; sourceTree = ""; }; + 4FD86A089E21337606208E40FC22DCE4 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; + 4FD9664D80F0FCD8485FB5AFAB29BC22 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; + 4FDC3A82ADCC8D010A0225D02B019356 /* RolloutAssignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RolloutAssignment.swift; path = FirebaseRemoteConfig/Interop/RolloutAssignment.swift; sourceTree = ""; }; + 4FE731A116FE8E73A50285F64908EB84 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; + 4FE9A70EC114D58D8AB03A0789E2C97A /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; + 4FF4BD99E51C5098F1630AA5FEA1E608 /* resolver.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h"; sourceTree = ""; }; + 4FF5FE0FBAE0BB3881E5C221049533DC /* posix_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine.cc; path = src/core/lib/event_engine/posix_engine/posix_engine.cc; sourceTree = ""; }; + 4FF6F02EF9C2D7105F1C2AAF3A7144FC /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; + 4FFF2329F4927600B649F3D57BCB8CB7 /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; + 5001D2C44EEDD6CD5C7F2C326D7E9BD7 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; + 500373D32C105A54483ACA56A30C93BA /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + 500470F19C96815DAC95C93796976B04 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/internal/arena.h; sourceTree = ""; }; + 50207B1AC6FF363D1511735DE5774CD1 /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; + 50215C4C8CD371F7C8D658A5F74BA300 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; + 502292E681C5DAB555208DEC24177B97 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; + 50232EB8A6D9F84D8FA37AD78F863823 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; + 502650DFEC52E056D1416D88160A67F3 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = src/core/lib/gprpp/strerror.h; sourceTree = ""; }; + 502D05B50A0C8C96B3B32370BA7BA6CF /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; + 5037F71EF23728843040C3FA9CA8C0FF /* FBSDKError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKError.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h; sourceTree = ""; }; + 50486440168DEAA1EC9DA1F0E5A3C3C5 /* AccessToken.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccessToken.swift; path = Sources/Core/AccessToken.swift; sourceTree = ""; }; + 504BED23A97D35659ACA2A9957C15030 /* cfstream_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_endpoint.h; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.h; sourceTree = ""; }; + 50583497E0194A147FB0D1CCB20F6AA3 /* posix_engine_listener_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine_listener_utils.cc; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc; sourceTree = ""; }; + 5059D6447B84E257B72DF9A03B61C509 /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; + 5059E103EDAD3D2B42329F78BA6F3DBF /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; + 505F2C19D0EE4A3524AA460499EE6087 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; + 50667FBC0DAD0AABAB2E72CB1E9ADC98 /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; + 506738232EDB1D4F7E9F1709853F4A9C /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 5069AD7AB69C45B374C635383E23F0C4 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; + 5072C5F688602208282762A2A01E9610 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; + 507CF2153BB9786B5F44235B08E8DE72 /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; + 50815940A06E0E6359EBCCE5F1A4F400 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; + 50842DB27AFA83E490BFC118B1161CF9 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; + 5085E25245EECD9BF35418053995D3A4 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; + 5086762C06A68DB3D1A7785F4421A359 /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; + 5086BE4A9AD459EB294B2490D0D22974 /* batch_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = batch_builder.h; path = src/core/lib/transport/batch_builder.h; sourceTree = ""; }; + 50A88051E1C14B1F2B486B67F2143855 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; + 50B16419FC037644021689FB88AE78D3 /* memory.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h"; sourceTree = ""; }; + 50D3857706DCA54687F2BC977FF8A8ED /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; + 50DCA6FC262C39588D2BE53A5258C7D1 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; + 50E8BC343D6E247A2B945CDEF31F418C /* duration.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h"; sourceTree = ""; }; + 50EB003993E8806E79731EEB8DBE9E12 /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; + 50F4D13BFA38BABFA51066F774598572 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 50F9E9ED8085C07C7D207AE16D465D6C /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; + 50FDFAE03796BDE08C017541D73AA903 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 5109D4E409488FBF3C57A788252286D9 /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; + 511522BC25D03D38597636D86A086183 /* inftrees.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = third_party/zlib/inftrees.h; sourceTree = ""; }; + 511C159DF4F6A0239DE6331ABF01FAA3 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + 511D4D3CA962140E858FDADA7E49B402 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + 51293494C0D0906946E12897FFAF2209 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; + 512C05769C9F338D0905BBBCF23F25C0 /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; + 512D2D6C99942DBC504CD2FA0EB1B3E0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + 513C512CD471536FD5B59EF7FBC7022D /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; + 513CC3040FAB2DBEE976571BA8F79114 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; + 5145F16F5CD8F58082AD141DB2D717E6 /* hash_policy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_policy.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c"; sourceTree = ""; }; 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "BoringSSL-GRPC"; path = openssl_grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 518562F7B0AAB615BC5E2CDDA5944150 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; - 518AAC019D56B05B910D626E6E5382DC /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + 515283E9D95A7CC03044FC14C20E5EF6 /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; + 5164EDCAD404099E478AEDD48452B0CA /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb.h"; sourceTree = ""; }; + 516561CFB2EB3E21D014A8CC90BADE8B /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + 516ED4CE611F3440F990E6B6EE5DEF73 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; + 51740CE8DB059C14863C90CD6C5FBCFA /* crc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc.cc; path = absl/crc/internal/crc.cc; sourceTree = ""; }; + 5175F40F3CEF7F906FD6AC0124E886AA /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; + 5176A1ABC323558D63DA0E41EFD544CF /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/support/async_unary_call.h; sourceTree = ""; }; + 518278901D33EBCACA9BD1AE461A8BDB /* has_absl_stringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_absl_stringify.h; path = absl/strings/internal/has_absl_stringify.h; sourceTree = ""; }; + 5184861EFD67FE5F9BBB50C2013DCFAF /* sensitive.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c"; sourceTree = ""; }; 519172F62353C84795D05BA8A499936B /* FirebaseSharedSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseSharedSwift; path = FirebaseSharedSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 519D5A3BD8208FD5ADDA4658FFFC3C08 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; - 51B25656BE42ECBE2876CFB1FAD04915 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 51BDE107BBD7B8866BE54D2E45D671C1 /* substitution_format_string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h"; sourceTree = ""; }; - 51CC75871E2D81C3671959942E99A088 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - 51D60FF42970D095DD2F85609E969176 /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; - 51DAE8DA6C1625B178443E8B726DB7D4 /* hashtable_debug_hooks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtable_debug_hooks.h; path = absl/container/internal/hashtable_debug_hooks.h; sourceTree = ""; }; - 51DB119CB658797BA2A2327D1317896F /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; - 51DEC29333BEC95E8FA992C1D49D7955 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - 51EA9C09FA84EF47631ED397C6C5EE92 /* certs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h"; sourceTree = ""; }; - 51ECB29329819D15F8A4E58187D0C770 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 520B358953A032D1F3D829B452983FD8 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; - 5212F7529C3BDD858981C6100388EDA6 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - 523B1168418A40F254E68E8EB0DB380D /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 523DF9DE0AC5FDBD77D7C992E9094BCA /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; - 5250C243D467FCF26BCD9437C66D4B67 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - 525B843E2307084D8AD49AB7D9829353 /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; - 525D7E3D3D4DB52EE7E26852A33EB3D1 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - 5263ADB27433D6B94FE44493C4FE4C50 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 526A1E2B361D232DB8112E67236A10CB /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - 527A01354EC384FC75B1F585B2CB2E53 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 528C92DEDD1A070B225A259281572E82 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; - 528D3F1DE63EFD50B50BC884B78114AD /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 528DCF32D6BFA6C44CF67FCD70C31AA8 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - 5294276CB064C84551F162E43A41F4EE /* event_poller_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller_posix_default.h; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.h; sourceTree = ""; }; - 529935E520698C3988525AE65713612A /* grpc_polled_fd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_polled_fd_windows.cc; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc; sourceTree = ""; }; - 529F18E50990155F5D243C404A412698 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - 52A8B91E9A9704653E4581A22F5EEE85 /* posix_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = posix_time.c; path = src/crypto/asn1/posix_time.c; sourceTree = ""; }; - 52B3336DA156ED730A3F20B6EB785FFD /* base92.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base92.h; path = third_party/upb/upb/mini_descriptor/internal/base92.h; sourceTree = ""; }; - 52BAB80BA1942EAAB99F48DAFB6B648B /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; - 52D614D0800ECCBE32CAE34C0DBB1237 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - 52DD13592D3A85ECFDC4A1634BC439D4 /* Promise+Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Reduce.swift"; path = "Sources/Promises/Promise+Reduce.swift"; sourceTree = ""; }; - 52DEAC978A50674DEE3C92CC23EC1061 /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; - 52F61BEEE0A8C8DAE414A6E35EF80857 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - 52F846B3D74E05B8F3DCC2E16C724A1B /* init_internally.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init_internally.cc; path = src/core/lib/surface/init_internally.cc; sourceTree = ""; }; - 53022787AA4C2FA7717396CF30C3B88B /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; - 53034201F24E6A988FDD967C2C4AFA23 /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; - 5310CF377D9D5D2913BC997DDCB9CE26 /* traced_buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traced_buffer_list.h; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.h; sourceTree = ""; }; - 532C1CB41082AFE90005245EB3A046F8 /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; - 532E40D999034326EEE1D11FA9FDB0D5 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; - 5331D0BCD321C46E1DA411F7513EBFE5 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; - 533696DEC7311E02C6554207E7C4B004 /* deflate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = third_party/zlib/deflate.c; sourceTree = ""; }; - 53375033FDEE85182F93C3A94FFF3B11 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 533A3F058CD229E527B926D584E2DC4F /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; - 5343C656109836C813F7B091CE5D356D /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - 53507921216FE8096734A59E6A8B1C92 /* grpc_polled_fd_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_windows.h; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.h; sourceTree = ""; }; - 53578E65D8BE193DE833F42DF7D02F7B /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; - 5366735C4B1E27870DBC3B7C162609E0 /* rls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h"; sourceTree = ""; }; - 538BA6CBD7B74E20E5D8966F58C9964A /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; - 538F677A536A37E99B376E463558C7C5 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_posix.cc; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; - 5391036A71F41C55B3D7D7D23ED317EE /* ssl_key_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_key_logging.cc; path = src/core/tsi/ssl/key_logging/ssl_key_logging.cc; sourceTree = ""; }; - 539B8E307FA7C2ABE77EA5847180BDEE /* crc_memcpy_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_memcpy_fallback.cc; path = absl/crc/internal/crc_memcpy_fallback.cc; sourceTree = ""; }; - 53A1ADBE10DADAFD5B375F80BCF5E7FC /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - 53A469B173E26F2068C5D90E1A9CB894 /* query_extensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = query_extensions.h; path = src/core/lib/event_engine/query_extensions.h; sourceTree = ""; }; - 53A5CB24F2F06925103751C58D89CA08 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; - 53B488456A8B81B35D2F6A39FAD1DFB4 /* cert.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h"; sourceTree = ""; }; - 53C88549AB8CE91EF5CA53B07D0FEFE1 /* resource.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c"; sourceTree = ""; }; - 53CFBCE5F3AB47FF5CA432FE4158D673 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; - 540B41F89BAFA3F34B2C71EB167A0035 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; - 540CFC326E8518F744DF9A930D017993 /* hpack_parse_result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parse_result.h; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.h; sourceTree = ""; }; - 540DCF70744C6D2A6E204EF01013B3F6 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; - 5416FA1236D1C74288FF095DDD742F31 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 54339C93391DF8A108489A6B187E60E2 /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; - 543CCFF0298B46D95E0DD348E8647127 /* FIRCLSAnalyticsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAnalyticsManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.h; sourceTree = ""; }; - 54585CE9BE7A298EE5149E399CDB1A01 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; - 5462061FE5EFDAAC24ACAC12EAF8A33C /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; - 5466BD215FF585DD731B89616F3BEA11 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; - 547438022665FCC189D6BA5B78E5293B /* weighted_round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_round_robin.cc; path = src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc; sourceTree = ""; }; - 54751C93D2109661693F6700D3F4CD01 /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; - 54824719B82A4E204CEFCA107F5FF9F4 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; - 54A2561A106348D7495F55FD8427147D /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; - 54ACADFF14DA3F6D10CFACA4E9E72928 /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; - 54BA46A5AF3A0568F7A5DFEEB324A896 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; - 54BB13DBE33C8F03A2D6A77D705E3F8D /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 54C6B58E7F23D33E2466C8648C7A1274 /* quic_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h"; sourceTree = ""; }; - 54C7647DD168FC57C53936ED70088F58 /* thready_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thready_event_engine.h; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.h; sourceTree = ""; }; - 54CC412E0B97C216DB86D2B27938F4E0 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; - 54EC04B63006A940542A3047AAE353C5 /* bootstrap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h"; sourceTree = ""; }; - 54F1C0EF3D7A4B42B5E4B7CD1EE18077 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 54F6D782C4787A708D1AA3C1246C4BDB /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; - 550CCBFBD6EBE331F60E57A4B6A6208B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/rsa_extra/internal.h; sourceTree = ""; }; - 551EDF3F3D789F3E316B36ADE9E5B347 /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h"; sourceTree = ""; }; - 5544AF018A2DD522242C31180BE4B939 /* httpbody.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = httpbody.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c"; sourceTree = ""; }; - 555596575EA2254EC48D22553D6BAF88 /* pthread_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pthread_waiter.h; path = absl/synchronization/internal/pthread_waiter.h; sourceTree = ""; }; - 5556A6E2EC4BED747653E4452746BF9D /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; - 5568523A097E5FE06BBEE7AB62A2D765 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; - 557D475DDAED8EF223AB94D084C7FADE /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 5591C970A21C35065752357275F57136 /* eps_copy_input_stream.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eps_copy_input_stream.c; path = third_party/upb/upb/wire/eps_copy_input_stream.c; sourceTree = ""; }; - 5596F0A7024710ED725B78416F0E9F57 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; - 559991CA990EB074C0243DDDC0A5ECED /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; - 55AD3D8BF86B511E65C5F2EC554CF98E /* audit_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = audit_logging.cc; path = src/core/lib/security/authorization/audit_logging.cc; sourceTree = ""; }; - 55B062C0B572C3A7FBD165823C635FC6 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; - 55B1CCF88112DB34F9F954F1DC4E9486 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; - 55BB65AECDCDF60BEAA79A0ED3098D6F /* atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic.h; path = third_party/upb/upb/port/atomic.h; sourceTree = ""; }; - 55C37B4EF62AD0E82093212661B674D0 /* typed_struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = typed_struct.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c"; sourceTree = ""; }; - 55C7F4F35FB4941747E688ED651E6E1D /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; - 55CCB9E660AC8B3C5FF7AA4519064AB3 /* context_list_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list_entry.h; path = src/core/ext/transport/chttp2/transport/context_list_entry.h; sourceTree = ""; }; - 55D14F7D0A29BB1778024B6D03EAFEEA /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 55E41D9BC4029B7E9564595B1C82EC8A /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; - 55EE6AB6B08E44479884261FA747F226 /* resolver.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h"; sourceTree = ""; }; - 55F0AF43F3C29A7F4E66C9E55940BFC9 /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/internal/message_reserved_range.h; sourceTree = ""; }; - 5601741ECAB00B6C03B9D59B2A5698D9 /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; - 561A0FE594F50BDD07EDBBA070F4BC88 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; - 5623B06A4EDC26221E89232A0D8FB8F5 /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; - 5626CFE4ADC6597C66E656BEF9F5FAE9 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; - 56302989F1DD11B6551B6072B8ACEB9D /* FIRTOTPSecret.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPSecret.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret.m; sourceTree = ""; }; - 5632E72CC99A204206E3F97354316083 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/load_balancing/lb_policy_registry.h; sourceTree = ""; }; - 565537A4A2A3F4A4FFDA1782252A4AE9 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; - 565D70687AD84A382FE6AA9F4BCF2556 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; - 5668D87FD2CA35000702133C451D94BC /* FirebaseCoreExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-prefix.pch"; sourceTree = ""; }; - 566A1EE22B77DB78AB6118992654FACE /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; - 566E061C760340727B26B39F959288FE /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; - 56996C5AB7D74CFE4000D5E1C437FE25 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; - 56A41FB9A7377324D60C9C8DF86A9B39 /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; - 56ADE3FF187A833809DC4420918D65D9 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; - 56B7819AFB790A83695C868F08C8452B /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_selector.cc; path = src/core/client_channel/config_selector.cc; sourceTree = ""; }; - 56C038BF541D68E7AD6944A1E241A8D1 /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; - 56DC3A306CD654D2458FAB8662A5781B /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 56ED09848C607A06A17723386D5755EA /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; - 56FFB5EB474A61D5275EC6FC48FFDB6F /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; - 5707429E42CC2CFBDCF9AA279B357896 /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; - 57083297018B63A2C5AE41736F7E8E4D /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = ""; }; - 570EC0D0F4BD3CFAC3DEDCDEB8628070 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; - 570F331B44FA6E758365496D81FA2181 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; - 57219C864CE0804FA7C4156138A9556A /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; - 57252850DF54CE59A2755F65FE9EDD5A /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; - 5729E892537BA2CE6983AD959EB4C155 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; - 5733D582CF05AB54CF9AFA14F7771F99 /* json_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_reader.h; path = src/core/lib/json/json_reader.h; sourceTree = ""; }; - 5733F22FE7F4718DAFF4CCB387A20F83 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; - 5734A5DD2A229D91C597741F0BBEDCB9 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; - 574214F3459A7E8A880943D00E67E245 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; - 5753EE82D1E97FC7C2596EAEC019955B /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - 576625AFAAC0213ACAA8763C73C2B58F /* def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = def.inc; path = third_party/upb/upb/port/def.inc; sourceTree = ""; }; - 5766F85E2369E849405B65FD367F03FB /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = src/core/lib/transport/message.cc; sourceTree = ""; }; - 576A7D10356546E725923C67071AE0D6 /* call_size_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_size_estimator.h; path = src/core/lib/transport/call_size_estimator.h; sourceTree = ""; }; - 576B73EAC7D5EFBADD55DD0574146E92 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; - 576CB3570463E97DD5EA01039D58C44A /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; - 577984CAD9413088B9BB4E8390E7EFA2 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - 5779A7B15292AC6D90EC25EE2D9DFE2F /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; - 577CD40953505E5E5F586A51673AE54A /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 578EA63E41A969FA1BE9EECDD3E5CAA0 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; - 5796E2084EE002FF5A07646A2FC164EB /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 57ADE961A9D3C60F438B92C935ED87F7 /* directory_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = directory_reader.h; path = src/core/lib/gprpp/directory_reader.h; sourceTree = ""; }; - 57CC8161E59ED5D03D64912E9103408D /* flag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = flag.cc; path = absl/flags/internal/flag.cc; sourceTree = ""; }; - 57DCD7A5C33CBE505720A257C349D55F /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; - 580D971E48192439E30ED565CD3E7BA7 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 580ECD3FD8803E638B099FBCE627FACC /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 5815FAD03F2E911F058529FEF856262B /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; - 5823AAD291779E478D23EE4ED14755E7 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - 582986E84C5875E53FECDF2ECFC18C8E /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; - 5836E877B7E157B4F298AB138C9894FE /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 5839E5AF227C100E3C429EEB10DF36AF /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 583FBDFFD2FFB7D4AE6248B0EA06429B /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; - 5845B2B48720F4D59DC841FEBAED9434 /* tls_spiffe_validator_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h"; sourceTree = ""; }; - 5848DBC72136B098AF0634F7894771C4 /* status_code_input.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h"; sourceTree = ""; }; - 5873407F88D71B260806D22E3B94DF42 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; + 51A6784E63EF08435CEDD0CFC392A574 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; + 51D0C5EEAF5078C5E405295D4EFE58B0 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; + 51DC9C58B7EE5E8055B9DED375592C3B /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 520A3E57A8DDB1B6E1233938C38D023C /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + 520EFBC681C9447002B60293A375AE11 /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; + 5218AE30A803CD2EE66B4A63C42E10AB /* xds_dependency_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_dependency_manager.h; path = src/core/resolver/xds/xds_dependency_manager.h; sourceTree = ""; }; + 523078B9DCDA3E7BC8AB1F60FE032068 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; + 52446B53C1125C2A9A76B588D69A051C /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; + 524A554BC29FBBD5138B67A3BC80F473 /* encode.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = encode.hpp; path = third_party/upb/upb/mini_descriptor/internal/encode.hpp; sourceTree = ""; }; + 5253F699D559ACADAC2FAC9C13D86CB1 /* base92.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base92.c; path = third_party/upb/upb/mini_descriptor/internal/base92.c; sourceTree = ""; }; + 5255348D483C3A8B784CA6E21A52C971 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + 525BAC7321476491912693FC99DB9421 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseFirestoreInternal/dummy.m; sourceTree = ""; }; + 5260CB27F328410DC320448C4263A7FB /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; + 526242049CACB0687720FA5509AE945E /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewCell.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.h; sourceTree = ""; }; + 526BEF78120CB1D8826A6C65E510FDCC /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb.h"; sourceTree = ""; }; + 5277A88F40377DE52A4322D18007D983 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; + 527C7153FD9B0737F3C45E979DB9CB71 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; + 528351337315E599B2016AD9F8946F61 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; + 529077C05F357636EFDDFC43C0D5BC09 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter.cc; path = src/core/client_channel/retry_filter.cc; sourceTree = ""; }; + 529CF8A99A71C972A7A5DD5320EC1054 /* FirebaseCrashlytics.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCrashlytics.modulemap; sourceTree = ""; }; + 52A02ECFF0680B90008EC3DE845339FF /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; + 52B22D5089DAE6FDDDC3E87BB24B580E /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; + 52B569BF23ACD1A8B6C517C65E18B591 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; + 52B66D61138FF668B2B12CDFB7028ED7 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + 52CCE954484CDC6C0EAB2EE51842DE93 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; + 52CCEB29F37E5EAA32C4774C50895B7D /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/client_channel/retry_service_config.h; sourceTree = ""; }; + 52D73DC74E170B5058C851BE12BDE03F /* RolloutsStateSubscriber.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RolloutsStateSubscriber.swift; path = FirebaseRemoteConfig/Interop/RolloutsStateSubscriber.swift; sourceTree = ""; }; + 52D953790E86615615FAC6EC45A1DA60 /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; + 52E031A728FC0EFC1BD71A918550BF0C /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; + 52E096E3DFB8D70D13F87AFD208715DB /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; + 52E5F7068C118824F0263ED7C1667D43 /* call_size_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_size_estimator.cc; path = src/core/lib/transport/call_size_estimator.cc; sourceTree = ""; }; + 52E8F060F9A87BE426D7AABDD93989C2 /* errno.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = errno.c; path = src/crypto/bio/errno.c; sourceTree = ""; }; + 52F80C095FFA06BD703CF7E2F18CCBB1 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; + 52FCC1031C8044D42D8B24B0F69E09C0 /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h"; sourceTree = ""; }; + 530698D5E17F7527617C8036FB48FE28 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; + 530A58E9328CDD6ECEF8A944F3AF1EB0 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; + 532EBF1E89FD48FD89B1F40D80306B39 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; + 53310C2EC8A6D9CA3447F652FCE8E5B4 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; + 5338D96B0E004E9A4DBB28E3EBE0DDF1 /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; + 53391FE07595791884F33673633B210C /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; + 533BBC14EE849CFFDD15D746DA87EC3D /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; + 534F5BD6E93D5166281FAC383473608A /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; + 5355BD7231CDC743BC861A50BF89F889 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/impl/codegen/atm_gcc_atomic.h; sourceTree = ""; }; + 5373EE0020E7501BBA3B01D7D4FD4E22 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + 5380F303636DF88FD22AC18F7B56FDA3 /* thread_local.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_local.h; path = src/core/lib/event_engine/thread_local.h; sourceTree = ""; }; + 5383432FC28EB2BE9915C3B5A1C093B3 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; + 53868A64EEB9C294A151445CCA7670FA /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; + 538B140C5121F157D97EC84E6A98A4DD /* endpoint_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_addresses.h; path = src/core/resolver/endpoint_addresses.h; sourceTree = ""; }; + 53A8956A652AB39D50EE983FDCA3E169 /* FBSDKDeviceViewControllerBase+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKDeviceViewControllerBase+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceViewControllerBase+Internal.h"; sourceTree = ""; }; + 53BA17D77F312BA72D108D43EA8683E0 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 53DDA9667F6D2A374AB645A9A86C8313 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; + 53E42C24678E5DC78F76D25277137192 /* wire_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_constants.h; path = third_party/upb/upb/mini_descriptor/internal/wire_constants.h; sourceTree = ""; }; + 53ECB87D5AA85271922BAFBF449FFCE9 /* batch_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = batch_builder.h; path = src/core/lib/transport/batch_builder.h; sourceTree = ""; }; + 540E4924012F3566A249813CA324C195 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; + 5414A8BF7832E136CECEA07B175A1160 /* FBSDKModelUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKModelUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelUtility.m; sourceTree = ""; }; + 54175CA9F046F766F33AAE32287D1100 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; + 5422B66B4C27265280D267EBED53A5BF /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; + 542E3DA2273C43DE803AB874A5B81F1B /* cord_analysis.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_analysis.cc; path = absl/strings/cord_analysis.cc; sourceTree = ""; }; + 543760E2E2C263D0180B21A29CC31C36 /* FBSDKLibAnalyzer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLibAnalyzer.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.h; sourceTree = ""; }; + 5444954D98BECFA8C37024AE6E44CDF9 /* crc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc.h; path = absl/crc/internal/crc.h; sourceTree = ""; }; + 544634A5F6179F52CB7027E0CC112921 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; + 54491C6FDBF1DABA3F3AAE902692F139 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; + 54662C6612FA321A53EE49B4955C7240 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; + 5466E3A8BC8214B4740BE37EA71E42C2 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; + 5475554C2C1E6BA7753376886994405A /* UIView+TZLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+TZLayout.m"; path = "TZImagePickerController/TZImagePickerController/UIView+TZLayout.m"; sourceTree = ""; }; + 548453F7D0C3D2CF89A4139403611799 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; + 5489B99BD81FC0861591486FF9F50927 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + 5491274C1AD334EA7FDD43C95333B8A6 /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; + 54938FD7E1E99E34C685EA5143983EE9 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + 5497A1D0C3D2AE8A855412840F6BB742 /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; + 54B06B56C3FD936658BAFE009CA5195C /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 54B2C819F3D8865783D2A7D0CE0E238C /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; + 54B5F26EB09671A59AE0CA0D2C97CEAE /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; + 54BA903750C35B4D8AA4F2039032C826 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; + 54C5CCCB26A45478A066DBACA3A5A4D9 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; + 54CA7C7E4B3D7D5FBC0C839823DDDD1A /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; + 54D16E1BEF81AFE301868B6FF1DF414E /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; + 54DB95353CC2C222FB6CEE674F479B2A /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + 54E2DC980E75F2923C1722FB78E1F33D /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = include/grpc/support/json.h; sourceTree = ""; }; + 54E488EB2A4B341F5CD2DE2725EFDACC /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/client_channel/backup_poller.h; sourceTree = ""; }; + 54E5DBE4C86A8077220295010033D540 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; + 54E9973A6E5267B33DDD097E09E49D28 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + 54F506A8A197B588F9FDA209A3C7F8FE /* config_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h"; sourceTree = ""; }; + 550EE72EB6E29ED1DADC277A0C4A840D /* resource.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c"; sourceTree = ""; }; + 551E89DE5FB4ABAF45B2D3EE044F9E2C /* prefetch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefetch.h; path = absl/base/prefetch.h; sourceTree = ""; }; + 55205050371CD68706B1B6B1D1E619EA /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; + 552483454A7C0BCBB592A4ECBD4B649A /* status.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = status.hpp; path = third_party/upb/upb/base/status.hpp; sourceTree = ""; }; + 552A17D16F809A9728E6F8B2ED8CB379 /* thread_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool_interface.h; path = src/cpp/server/thread_pool_interface.h; sourceTree = ""; }; + 55343926148DBEB8AEB562C0BEFDD33E /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; + 553B765B7513AD3292A4A093214CE07E /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; + 553F15DD3F87A0220A3B6CF03FA2BBCB /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; + 5544712BFB30DB344E74DF0AD26E5F79 /* curve25519_64_msvc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64_msvc.h; path = src/third_party/fiat/curve25519_64_msvc.h; sourceTree = ""; }; + 555B4DD5A6E09921A4DFBDD853D74E87 /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; + 555DDE7D65893B9E14D0C0CF4059A571 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + 5562F261F5287F1E5E46A48CF8D2B604 /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; + 55720247EA3F571FF8A9D8E803A6B07F /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/field_def.h; sourceTree = ""; }; + 557E751BCC79D245BF2EC29AE9E93752 /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; + 558852DB9B02D89322F08131A3B5E5E2 /* round_trip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = round_trip.h; path = third_party/upb/upb/lex/round_trip.h; sourceTree = ""; }; + 5588F96F20FF174B05FD3FFA7754ED80 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; + 558C340C0CCBF82A1B11E949EB579FBC /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; + 558E725563D49CA45A5D54353F9343A6 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; + 5599BC18EAA61CEFEFD8EC4C52B87CE9 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; + 55A468266C4532B888704DBD2E64DA30 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; + 55A51924BFE814104EFC0B7426E92747 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; + 55C340A73F5F0377413CB36B87E8C3D8 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; + 55C598169F32D3E91A4FEE43EC23624F /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h"; sourceTree = ""; }; + 55CEDA7E0E064C9299B2163EAB53682D /* FIRCLSOnDemandModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnDemandModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.m; sourceTree = ""; }; + 55D5846EDE96432F5F2162863310C860 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; + 55DB979A2E0026DE32DAC1B2CE468345 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; + 55EDC0C0E750FF653D279F2AF4F191DE /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + 55F38CA58DE8AB962922BE08F09473FD /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + 55F47059D9C63BD280BB0A13BA13E7A8 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 55F537134BF82AA569A90E9B62098B08 /* TZAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetCell.m; path = TZImagePickerController/TZImagePickerController/TZAssetCell.m; sourceTree = ""; }; + 55F94942325BE95B0FC29FB6CB08A177 /* _FBSDKTemporaryErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKTemporaryErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m; sourceTree = ""; }; + 55FD0B5B8A38EB86EEB51F03B419ADD5 /* FBSDKURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURL.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h; sourceTree = ""; }; + 56016860527DB7D8EE3260C7DFA9491C /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/message_reserved_range.h; sourceTree = ""; }; + 56043DE0399EB604E11155C2F0F61DA1 /* FBProfilePictureView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FBProfilePictureView.swift; path = Sources/Core/FBProfilePictureView.swift; sourceTree = ""; }; + 5608CC922CBD3CFB46EB94105C81BB35 /* FBSDKMeasurementEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMeasurementEventListener.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.m; sourceTree = ""; }; + 5627D503EF6EF8C50544924E1023A850 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/event_engine_shims/tcp_client.h; sourceTree = ""; }; + 56346665750C24E794DD9FFAAF3AE9A5 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; + 5637B380FB18D5C693E2BC56F3A74FA8 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; + 5644A4B2A4C9D551C24EC149A991E9CD /* TZImageRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageRequestOperation.m; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.m; sourceTree = ""; }; + 56470AB90F2B6FF6463FE57FD3CE2523 /* stateful_session.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h"; sourceTree = ""; }; + 565BD22CDDAD6CE141CE14AB40FE7B00 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + 5662021301FC278F4C282E98961024CF /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; + 5668765F0A105516631C5004209A1F24 /* FBSDKAudioResourceLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAudioResourceLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h; sourceTree = ""; }; + 566F146444ECBA39329D1A18389913B3 /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; + 567D9EECEF72D3388131CA1F59326D5C /* FirebaseAppCheckInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAppCheckInterop-dummy.m"; sourceTree = ""; }; + 56803A5BD4C3E16F5A674D9E5FB32880 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcons.c; path = src/crypto/x509/v3_pcons.c; sourceTree = ""; }; + 5693645DD78D589838510602CB836F79 /* LLImagePageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLImagePageControl.swift; path = Lib/LLCycleScrollView/LLImagePageControl.swift; sourceTree = ""; }; + 56944B690777C66F98867328B5614E0C /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; + 569935E2CF18756CE4508CBF382F6575 /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; + 56A0DC106C8D053A2F267C3CD2A8F6BB /* matcher.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c"; sourceTree = ""; }; + 56C59A5B6FAF23C1A814C0F25C434DA4 /* utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cc; path = src/core/lib/event_engine/utils.cc; sourceTree = ""; }; + 56C793A7743C3F389A54C3FC2DB4EEE4 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; + 56CFC9E674EC4E1507581F19EEE1AB97 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/impl/codegen/atm_gcc_sync.h; sourceTree = ""; }; + 56D1B9696F1DAFBEB3D98CC490B48673 /* server_builder_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_plugin.h; path = include/grpcpp/impl/server_builder_plugin.h; sourceTree = ""; }; + 56D9B16960DD4CCABE3F02A06F8B5087 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 56DA0C22AB965309C8B9C7F3D1387EEB /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/wire/encode.c; sourceTree = ""; }; + 56DC4C9562BBA7B51E97840ADFD0CA2C /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; + 56EBC3AF7647E02281CF6A9FAB890855 /* FBSDKCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h; sourceTree = ""; }; + 56F1E183ED9D8BB5C2547DD13F9CADDD /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; + 56F5748467AF9ED6E8EDCD362E7C0743 /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/internal/def_pool.h; sourceTree = ""; }; + 56FBD1DD6F955865E4B9A69785F27326 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseCore/Extension/dummy.m; sourceTree = ""; }; + 571064C5F4F628AF16339B1522DE4543 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; + 571525DFCE50AC009B4FC6AA02105D71 /* FBSDKGraphRequest+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequest+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h"; sourceTree = ""; }; + 57160234AAAFBFA002DF77963E6BD74D /* FIRAggregateField.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateField.mm; path = Firestore/Source/API/FIRAggregateField.mm; sourceTree = ""; }; + 571FA01481C452247E5020B939B68446 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + 57203342CB48650AB92B962F1626897E /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + 57246B50EF0C2CB83408723291860DC9 /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; + 572585B0F7B0C23ADA0FBB6BCB13474F /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; + 57358FC81AD350B751CEB3D16D6C0368 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; + 573932E3B3862583E51D2EC2A332F43A /* fors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fors.h; path = src/crypto/spx/fors.h; sourceTree = ""; }; + 573D9A4901E2FCFE2F80FE964B74808C /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + 5743B5D7807C704357315DF22101F6C2 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; + 57508E798AE201B71545D4D978DB91A5 /* event_engine_client_channel_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_client_channel_resolver.h; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h; sourceTree = ""; }; + 575A1E10C03402EAD2F496F76803C2BA /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; + 575C9A0A492D0380697F2DA52405F64E /* windows_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_endpoint.h; path = src/core/lib/event_engine/windows/windows_endpoint.h; sourceTree = ""; }; + 5763458D9776D252E75CA6F203722D2F /* extensible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extensible.h; path = include/grpc/event_engine/extensible.h; sourceTree = ""; }; + 57640E43E0D37843AF4DDAADFB28A441 /* FBSDKBridgeAPIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m; sourceTree = ""; }; + 5771443423FA363EB9D2298AAC5E4642 /* cidr.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h"; sourceTree = ""; }; + 5788D3BA0B307F728027B1E82D1F7F32 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/event_engine/posix_engine/timer.cc; sourceTree = ""; }; + 578C14EDDEE1C63B5F45A9839C592C36 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; + 5793011D448618CCC36D470FB7DB5B47 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; + 57978688775ACC7EF64DA13B100A43BC /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; + 57AAA22325B0CC57DF34FE43E96591AB /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; + 57AF3F1EE2DBA786257727ACEE99E057 /* FBSDKAppLinkNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkNavigation.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.m; sourceTree = ""; }; + 57B06644B6731D11257AE4BFF125B918 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; + 57C9C9F376F43FB60F30D6DCF4D03A3E /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; + 57CC1572DCEB939C2F3F52272001C69A /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; + 57F4CEECD51D672FE8DF50FA3D08375F /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; + 58019019C02E1CCCD55C30ECF4B2BF20 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; + 58097BA075B64006BADF4CD9DC79BD60 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + 580C129ADAC94F281C01BE2931C2F6DD /* altscontext.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = altscontext.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c"; sourceTree = ""; }; + 580D6802C74BCA849523E8BD1F870A5C /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; + 581DE77256B6F527DBFD30D1C2367043 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + 58216706BE15EC4819B2FC248899463A /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; + 5827D54E48155DB5164D23980D1654F6 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/internal/message.h; sourceTree = ""; }; + 582D323078C09A4789E99E0BBD671DD6 /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; + 58334F70531732D3213A914017084378 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoEditedPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZVideoEditedPreviewController.h; sourceTree = ""; }; + 58346AF408FED4FB13D306374A150883 /* cordz_update_tracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_tracker.h; path = absl/strings/internal/cordz_update_tracker.h; sourceTree = ""; }; + 58393D95E1AE61E50604C90F280E60A7 /* grpc_method_list.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_method_list.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c"; sourceTree = ""; }; + 585241FE4AD5B773407AA98D69CB7E22 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; + 585E063B6E1941B1F4289876A91F7F6D /* udp_socket_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h"; sourceTree = ""; }; + 5869F39D7933B6A1BF1929154CC9053A /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; + 5874326F9C80DDF29398998EB13AE58D /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; 5882D8A8351A45DC4DBDB5B8475DF15F /* Pods-SwiftProject.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SwiftProject.modulemap"; sourceTree = ""; }; - 5888E6984CA7E97FD8D4A960427015AD /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; - 58A585B4BB8333BA259CC81151327B37 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 58D80CB2A5AD66E6C453C525B0BC459B /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/internal/file_def.h; sourceTree = ""; }; - 58ED0090FBA5948F913DB3757FB9E8B2 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = c.cc; path = db/c.cc; sourceTree = ""; }; - 58FBAA4FE8E6281D16D1C5E888DD2EB5 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 5902E6E3D69B0F17E693AFDB9A700519 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 5911A5C81FD240DC9358C8DE7EF00F47 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; - 5929E7AACC00D2B84ACA8998EB1EDE86 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; - 593DCFCD42CCD39D230AB33B63B17DFD /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; - 594409D0BB19CE2A81906EE173054D5F /* xds_resolver_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_trace.h; path = src/core/resolver/xds/xds_resolver_trace.h; sourceTree = ""; }; - 5946CC9409641098A46E5EF5CABFDBD1 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; - 595080F20CDB04B235603107793953CC /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; - 5951B33FE16FEF2ED16DCD119CE5E7BE /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; - 59530CAD4BFDB839F35613F57574899D /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; - 59567B37CDD79AFCD4D50D261B592FC1 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 596871A81894B7D0E061C4DFFC09A7B0 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 596911898B1116E1F806F4BF24DC0E28 /* FIRCLSManagerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSManagerData.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.m; sourceTree = ""; }; - 5969A657C0C6A2740BEA36FC1FD5EDB0 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; - 596C294122411236161F77158BDB0F88 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - 5971D827D010310EEAF0F8AE350D4358 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 597347D12C9600922168CF804E260736 /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; - 59750EBA3E648663EAE993A404A55761 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; - 59821C8E6E0741D882F9D96BC5C89AFC /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h"; sourceTree = ""; }; - 59849FA3745D828423CB41709EE8B651 /* hash_policy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h"; sourceTree = ""; }; - 59A2781712A1280D98ADDD945970933F /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; - 59A6C62E4F5C2935449E8951719EEE72 /* md5.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = md5.cc; path = Firestore/core/src/util/md5.cc; sourceTree = ""; }; - 59AC23C57BCB53BA1410CEED39301DB0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Firestore/Swift/Source/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 59B46DB14F43E64D95DED2C93E82E6B2 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; - 59C594EB03B8FBDB303CCF2FEF28C6B5 /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; - 59C95133CF1C88F7BFBED72DEE24A265 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; - 59E1DE391ACC93A1EEDDF5FCE2C005A2 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; - 59E525D8B736394E67AB1BCBB9C6A133 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/mini_descriptor/decode.h; sourceTree = ""; }; - 59ED0E489755338469587750C00329E8 /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/port/vsnprintf_compat.h; sourceTree = ""; }; - 59FA8D900B943C1678E75DAB6C9BCD58 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 5A07975C595DE74393B9FD318D9A6C07 /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; - 5A2DFC0E2BD9E9010DB70F09AE5301A1 /* client_stats_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_stats_interceptor.h; path = src/cpp/client/client_stats_interceptor.h; sourceTree = ""; }; - 5A3779D7D2CE20041DD8AF3514FD9F5C /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digestsign.c; path = src/crypto/fipsmodule/digestsign/digestsign.c; sourceTree = ""; }; - 5A3CFB979B4D0F488E3FDB38D0839482 /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; - 5A42E1B69D317C6C4FCFF9B5F6A2B35D /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - 5A44D1EB2AB7E778D3E0B3C5CAD12690 /* typed_struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h"; sourceTree = ""; }; - 5A454413DB81E07F483281EDE658198D /* circuit_breaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h"; sourceTree = ""; }; - 5A49A42A540EC414DCB10E2C0C660C43 /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; - 5A51083FA8BD487C3182E5EA8151D926 /* link.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = link.h; path = third_party/upb/upb/mini_descriptor/link.h; sourceTree = ""; }; - 5A624FCE13EA7FCC3BFBA0B88575B757 /* deprecation.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c"; sourceTree = ""; }; - 5A8A5F72E6596B167AFFC27CCFAB8385 /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; - 5A9D9C44F74EC2A54FF3311AF5EDAE1D /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 5AB6AD22546F169278FE5FFA595A284D /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; - 5ACFBFCAB763A1A8B6DA1B3A3AFB83F0 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/internal/method_def.h; sourceTree = ""; }; - 5AF0383E1A98B7BEF1F038440B7C8E84 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; - 5AF7E1EB74C8873C1898828FE4F7AA38 /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; - 5AFDA4F2656B3C6EC2B87DF8BB5C4BEA /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; - 5B09556B502F7609ED5C4F3327286FFB /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - 5B16C75FB519B32BF42EC5C0EE71100B /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - 5B18ED09E4AEE80B5A47CE1E5A390E8A /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; - 5B386EB39ECA224E535492F7164C080D /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 5B421109535ED3EDB1A347D271165752 /* FIRCrashlyticsReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlyticsReport.m; path = Crashlytics/Crashlytics/FIRCrashlyticsReport.m; sourceTree = ""; }; - 5B48B6FC002C5B887CAB482AA5547AFF /* ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; sourceTree = ""; }; - 5B6785212FECFF4C33286F2F1FF23C8C /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; - 5B695CAC684C1B5CC64B48441F75F88E /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; - 5B6A47A03BCFD80CB548AB1C2F8E7320 /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; - 5B6CB0E818E041DB3BC09D037AA5FFC3 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - 5B6DEE53045506C21D1A54BFEC09B706 /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; - 5B758D739C0D97A5B9D9DA0629D850F6 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = third_party/upb/upb/base/string_view.h; sourceTree = ""; }; - 5B75ECC7FAFC088BE5A0E6054D265545 /* create_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_internal.h; path = src/cpp/client/create_channel_internal.h; sourceTree = ""; }; - 5B872DD3311C5AC58CD0011AA6BF1473 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; - 5B89FA24CB3A8004D9DD8742541B18E2 /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb_balancer_addresses.cc; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; - 5B95126D1C097DB1144AA079B89C5475 /* metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = src/core/lib/transport/metadata.h; sourceTree = ""; }; - 5BB0F80A673450756ABA948BCC48CAD8 /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; - 5BB32A2A8BFB2B42ACCC7721D821A35A /* outlier_detection.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h"; sourceTree = ""; }; - 5BB389B6F723FEE0D0E430BF7F466913 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; - 5BBB28C4A306ADE2AF12FA5490ACB0E8 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 5BC4225C95354197AD862933C96ECEC7 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; - 5BC66CF966D99CA528BC6FEE02BAB9C1 /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; - 5BDEF9741323B89C97E039291A13B36C /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; - 5BE82615689DD552F4520E2C4722B799 /* protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h"; sourceTree = ""; }; - 5C0456A89B9CC6612F39E0D43AA78F19 /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; - 5C07CFCBE60D402638219D8CD0350339 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 5C0A6B12C872298674E68931C00B91E0 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h"; sourceTree = ""; }; - 5C0CB34C524F08BA1A10BACBE8407F61 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; - 5C354A7C6C83A549B636BC98126B4E02 /* http_protocol_options.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h"; sourceTree = ""; }; - 5C35C2AA702A2DF483E0F26B2F1D36C3 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 5C39D82CA92FDE9ACF5AEDE91070E1E8 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; - 5C3AD1A4A5A3AF2CB48C16F61B21809B /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 5C3B3B608D843A67CA8C9835B7F42939 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; - 5C3E859D389F59E1DF1C9FFE8548EEC2 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; - 5C4032A0582A980AD142BC240AEB87AA /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; - 5C432973545BA04932F464AB412340AB /* memory.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = memory.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c"; sourceTree = ""; }; - 5C4A1837600C04A36125715A60AFA8AD /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 5C51E625BC473B8DA10CC51CBD322840 /* SVProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SVProgressHUD.modulemap; sourceTree = ""; }; + 5893991E37307B26AF05049149BFADF1 /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; + 5894F923B5293DE0FF8BFD1268989217 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + 58A13EBAC3D482F85719757063B2DEE3 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + 58A77C550850A1EAAB2942773EBA1C72 /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; + 58AABC8B9F958F9087656A1FF73E3E94 /* ctrdrbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ctrdrbg.h; path = src/include/openssl/ctrdrbg.h; sourceTree = ""; }; + 58C47ED3DED3D0222E68A9C3BD78F3BA /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; + 58E9686C6725D8EDD3F973B36B7AE209 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; + 58F578A89C374B1A4A774186FF899545 /* log_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_internal.h; path = src/core/lib/gpr/log_internal.h; sourceTree = ""; }; + 58FCF156E709CB29F0CD5181ABA44EAB /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; + 590732B53874CAB5CEC27E7C38BEACFC /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; + 590F0B35EB65F958953AB7DAEF990AA6 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/accessors.h; sourceTree = ""; }; + 591E98414487104867469928992804A0 /* FBSDKDeviceButton+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKDeviceButton+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceButton+Internal.h"; sourceTree = ""; }; + 5921C4D158563EE664FB42CAFB866723 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; + 5928FFF79984ECB96858F2A90E2E4381 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 593A7B77D1E256219EEB019E6E03359E /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; + 5944D50D48A5B70C2EC5D4F4860B1753 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; + 595B255BDB35907B155E4B1F1B6CABAD /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/iphone/cpu.cc; sourceTree = ""; }; + 596B14C1C4C0E14A78F387CDCAC0C597 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; + 5982A7D8DA22E687F9A9E691A079444C /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; + 59860DA3CFF3383A7658F8229347EEB7 /* windows_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_listener.h; path = src/core/lib/event_engine/windows/windows_listener.h; sourceTree = ""; }; + 5993762CD361C4B69D3C4D4BE26EB5FE /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; + 59955A570092BE4D0115184D91CC8DBA /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; + 599D06CC1A53D98F2C28D927A9EB424A /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; + 59A9D93CA6C1501391B4F4BEF8FAF995 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/completion_queue_tag.h; sourceTree = ""; }; + 59C6E4FA46DE45706A2D9D3DB3C3BC56 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; + 59D80C74C5BFC4A0886B100A39112288 /* FBSDKViewHierarchyMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewHierarchyMacros.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchyMacros.h; sourceTree = ""; }; + 59DCDC71C05CC12DFE2840ADF8B4976F /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/internal/oneof_def.h; sourceTree = ""; }; + 59EE8E0B7A526304CE2C0719C37B4A93 /* FBSDKDeviceDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDeviceDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.h; sourceTree = ""; }; + 5A07D96300BE8A595516F70D7A5BF9C6 /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; + 5A0A3886093BB721C7A73A3EAE6053D9 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; + 5A0B210E5D7498AFC73473C794A8037D /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; + 5A4DFB39B29A23990C8F77BFFA2D0F25 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + 5A513F78FCB0003B74D0D1DC98FF0F8C /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; + 5A51A787A976AA6CE1B3CBDA2A509E2A /* FacebookCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FacebookCore-umbrella.h"; sourceTree = ""; }; + 5A57E04E920D068D5329324B5814C7C7 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; + 5A683EE8010E00087E35291E8F4C27C5 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; + 5A696AB6B1A228A4EFA94DD6215C8F1A /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; + 5A714E396256E4F85E297C2AD2C3EC60 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; + 5A7D849431BDCF0B0F6E5B07B7BACF54 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 5A7F4CE0A73B2AF9AE87509AA7B9BEC4 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; + 5A8F67A3624734AFC3F0750D214BFCA9 /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h"; sourceTree = ""; }; + 5A916C4B617E1023880A9630F5180614 /* FirebaseSharedSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseSharedSwift-dummy.m"; sourceTree = ""; }; + 5AA9049F6464A13F299F017372C06A2E /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + 5AB429247778E8FDB8334D46FE8B94EC /* external_connection_acceptor_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_connection_acceptor_impl.h; path = src/cpp/server/external_connection_acceptor_impl.h; sourceTree = ""; }; + 5AB766F7583BB70EDA331C62ED3483A3 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; + 5ABD51339BF1DC50726EB326B71563BF /* http_protocol_options.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h"; sourceTree = ""; }; + 5AD1FCB773A846665CA5A8C9E4F3168B /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; + 5AE9E3E78472EF7D62E82DB8C9DCA00E /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + 5AF91C7B403888FAB0393D25726032C7 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; + 5AFCB4462BA45D27EFEB434938710185 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; + 5B0A3712F7495C4BF6CA8193562A1FC4 /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; + 5B12F16CC2967047916D46A8F0016938 /* salted_seed_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = salted_seed_seq.h; path = absl/random/internal/salted_seed_seq.h; sourceTree = ""; }; + 5B1F08C8DC8B94D03D824CF4D027F5B4 /* secure_server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_server_credentials.h; path = src/cpp/server/secure_server_credentials.h; sourceTree = ""; }; + 5B2E99F1280B86FB133A0236C86EFDD6 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/message.h; sourceTree = ""; }; + 5B55C369C7709CC1F831C89FFEFF05EE /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; + 5B60863863CB78879DFBD2A491B95D72 /* FBSDKLibAnalyzer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLibAnalyzer.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKLibAnalyzer.m; sourceTree = ""; }; + 5B6DAA1DF10A58BBEA902F944D61F179 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; + 5B714BECFBD25E26B2DC245F0084CC8C /* damerau_levenshtein_distance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = damerau_levenshtein_distance.h; path = absl/strings/internal/damerau_levenshtein_distance.h; sourceTree = ""; }; + 5B801C584BF4505CD18763E9B31C4A7D /* memory_allocator_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_factory.h; path = src/core/lib/event_engine/memory_allocator_factory.h; sourceTree = ""; }; + 5B8A9F1C5886E702F3B6BA1D66F3B0C2 /* FBSDKCoreKit+Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FBSDKCoreKit+Typealiases.swift"; path = "Sources/Core/FBSDKCoreKit+Typealiases.swift"; sourceTree = ""; }; + 5B976C54F4EA61F6F9656579E35CD681 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; + 5BA07169A088B333584848676CE1711F /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/wire/types.h; sourceTree = ""; }; + 5BAE2649EEA8485A3D0106597CA2BF0E /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; + 5BC6488A46D3965C5E13ACBCD4A7A548 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; + 5C058EBA148CD89D7D088770FEC7BDD8 /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; + 5C1320D11E28563CD14B966A491E5F67 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; + 5C15B8BA590898C1AC0C99BD032AB277 /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; + 5C18E7C0E11862D0DE6F443724525B37 /* dynamic_ot.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h"; sourceTree = ""; }; + 5C2B7D642975DC60F7441AE8927A8889 /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; + 5C31B6983B2CE32CCD4DD27B90EA6147 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; + 5C387C0B8971637E486EB77C8D5A88DA /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; 5C52D0E64DBB5DED9D0BEBE827411381 /* Pods-SwiftProject-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftProject-frameworks.sh"; sourceTree = ""; }; - 5C6357C4C2B37828068602F6AC47F45A /* TimestampDecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimestampDecodingStrategy.swift; path = Firestore/Swift/Source/Codable/TimestampDecodingStrategy.swift; sourceTree = ""; }; - 5C6AB6FB7B3C41DB504B47F4D5B03269 /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; - 5C6CFE7FF67C34A127FE34AC261BD95D /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 5C709546DBBCB67F9E90D1BE42AE0F1B /* endpoint_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_addresses.h; path = src/core/resolver/endpoint_addresses.h; sourceTree = ""; }; - 5C7540704BA93D813D8B965BDC100796 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 5C77170995484A7AA1D513B6276055D7 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; - 5C86CDB25A18E55541582F14CB36CB4E /* FIRAggregateQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuery.h; sourceTree = ""; }; - 5CA2704741A71019D0A6D7F54A2FC42F /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; - 5CA395612C1F557C35C77655C65AE4EE /* index_backfiller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_backfiller.cc; path = Firestore/core/src/local/index_backfiller.cc; sourceTree = ""; }; - 5CB24C115534668BCCF5169FD46967B3 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; - 5CB6330933658E520FD011074E2CB805 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; - 5CBD2614C103A2C8149F82E7CE1CD1A2 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/event_engine_shims/tcp_client.h; sourceTree = ""; }; - 5CE88DA66541FBB708C55C91912017C7 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 5CEA228F4110DD21C04E562F66E3D6A9 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; - 5CFF8BB6D7AA4C25E2996995B5C9C26F /* opencensus.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opencensus.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c"; sourceTree = ""; }; - 5D0891A5579B7D278F33AF0528A217F7 /* desc_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = desc_state.h; path = third_party/upb/upb/reflection/internal/desc_state.h; sourceTree = ""; }; - 5D260EBBE32646BD3D02735A04DEED34 /* cftype_unique_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cftype_unique_ref.h; path = src/core/lib/event_engine/cf_engine/cftype_unique_ref.h; sourceTree = ""; }; - 5D2B80DA056FD147D2E84186E4DEB324 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = src/core/lib/transport/message.h; sourceTree = ""; }; - 5D2F4C74E09A733BA0D4D7CD3C19E5A5 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; - 5D4309668E6EA95D4453AC4CB14786E7 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; - 5D4DF1294FE5F8209C0412AF55888DA6 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; - 5D5D0D43B9F8F7C85786F87F0AD66472 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; + 5C55C3BE3C5252E886759596C422F5A0 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/json/decode.h; sourceTree = ""; }; + 5C579BACE8AF8075A91896659D825A7D /* FBSDKFeatureExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKFeatureExtractor.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.m; sourceTree = ""; }; + 5C6B95836A732CED86B229E4C8BA7904 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + 5C7552AC5AD5C8D20FEF479C82551B4C /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; + 5C8203C214C73CD19DDFD77218D3DD6B /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.c"; sourceTree = ""; }; + 5C869930C53A23E4A0ADA5E1B7F38AC8 /* FBSDKEventBinding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKEventBinding.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.m; sourceTree = ""; }; + 5C8C411AA4ADDA75CAF1EC4EA5E3A8DA /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 5C99B8FCBBAFB5EED3F747FAD657206B /* backend_metric_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_filter.h; path = src/core/ext/filters/backend_metrics/backend_metric_filter.h; sourceTree = ""; }; + 5C9B59308171410F6DF75E5C80CBE123 /* xds_dependency_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_dependency_manager.cc; path = src/core/resolver/xds/xds_dependency_manager.cc; sourceTree = ""; }; + 5CB5FD01B9B33505A22D5A182D71C3BF /* event_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller.h; path = src/core/lib/event_engine/posix_engine/event_poller.h; sourceTree = ""; }; + 5CB6BE008040FBB8075B1DB1E2C2ED43 /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; + 5CBAAD301C85759B9D710241CC6397BA /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; + 5CC9ED54F7B5C65311C45CFEB3801B0E /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; + 5CE1152DA7C2F322D2B7FE91C5F7605B /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; + 5CE76A2A732CEB0EF74ED7EDC59F909F /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; + 5CF00A4188DE53577A61CC938A32EB0D /* external_privacy_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_privacy_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.h; sourceTree = ""; }; + 5CF66FD8466567A90787CBA62F1DEAE4 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; + 5CFB1FEBA27292328DC7C087D5AEB6C2 /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; + 5CFC76EEAE50418DE21A4264AFB29292 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/event_engine/resolved_address_internal.h; sourceTree = ""; }; + 5D08996078D790CCDB10094649822F44 /* FBSDKMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMath.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h; sourceTree = ""; }; + 5D14A62BED940F6BB6AAECB58052F9B4 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; + 5D17D84DB9BCEFCF79D67A795D262010 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + 5D220BE80C523D5DEF90C7DE07E907A2 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + 5D4574F0B1FA0F95533C414DD443364A /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; + 5D4CBA6B6FAB805AC62E53ED590A1DA6 /* non_temporal_memcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = non_temporal_memcpy.h; path = absl/crc/internal/non_temporal_memcpy.h; sourceTree = ""; }; + 5D648319250A4425DF19B80E55390453 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/event_engine_shims/tcp_client.cc; sourceTree = ""; }; + 5D676635E7FEF597FE9B9A9E12F8CAB1 /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; + 5D75E03CEE98624D352F8DFC1722B2E6 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; + 5D774BCF91E8AB89573309FCC930084C /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D7A8C59A4DC7A737979F96E533C1C4C /* server_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_metric_recorder.h; path = include/grpcpp/ext/server_metric_recorder.h; sourceTree = ""; }; - 5D896804604C19D34B9F0904945A881D /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - 5D9DC4917F302A535FA08E0745B0396B /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 5DA76C7E90EE8192B2BAB73402D26528 /* resource.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c"; sourceTree = ""; }; - 5DC61A4F806212307CA56E889BABBB6C /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 5DCEB4D9E7890B536E9189ABCCF8F6F5 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - 5DD69A21784C4ED429F86EA763023B04 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - 5DDD441CBC2F65EBD6B417A61899F5DD /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; - 5DE6F936F16D4AF7CC505AEA81DDB0DD /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; - 5DF1A28AF14A42BA52BFBB2C03A5876A /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 5DF66492744F0F71B3BB61A61D5DED6D /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; - 5E04F8EEF517DE7BC6D2258C490C49CA /* xds_resolver_attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_attributes.h; path = src/core/resolver/xds/xds_resolver_attributes.h; sourceTree = ""; }; - 5E08493A3F0510873B09A764F56F88A3 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; - 5E0BAE6145CA19ECCBB6E1975F52A0EA /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; - 5E1225E020AB532A64E4B8B03C455B42 /* FirestoreQueryObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirestoreQueryObservable.swift; path = Firestore/Swift/Source/PropertyWrapper/FirestoreQueryObservable.swift; sourceTree = ""; }; - 5E2DCB8637E8981241E03FD4A05F22E4 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - 5E3ED2F1F4DDDC268CF16F2D83A0CBC8 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 5E402E8D5AE55F093E11356463F7201F /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; - 5E4A692DF5F1B0142847D7CFBFCEA85F /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; - 5E4CDCC60853F3F70A5FE8CD63F2B0D1 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; - 5E8691CDAB40B5E482CE40A0FDC7BD77 /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; - 5E8AE3E766BC7FECAF917A88C0932C50 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - 5E91BC802D2BAB27A3AAF7FB0A6A03F2 /* orca_load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb_minitable.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h"; sourceTree = ""; }; - 5EA70F6F9014AD7A5694C5C59F234C9F /* decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decoder.h; path = third_party/upb/upb/mini_descriptor/internal/decoder.h; sourceTree = ""; }; - 5EA821AE1EAADBDAD65B61A542269C61 /* external_connection_acceptor_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_connection_acceptor_impl.h; path = src/cpp/server/external_connection_acceptor_impl.h; sourceTree = ""; }; - 5EAEE78FE5778C8E624ABC71174E3ADA /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 5EB205E45ABFC8FCA0893D71413829A6 /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; - 5EB565228E55524530A3E2B5C10BBC03 /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; - 5EBF7B41CF364E6AD997BB065E26ADEC /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = child_policy_handler.cc; path = src/core/load_balancing/child_policy_handler.cc; sourceTree = ""; }; - 5EC2FE495A27F500B3C2D60C4C5A8DAD /* orca.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb_minitable.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h"; sourceTree = ""; }; - 5EC5143394310D99B0D1089752D504E9 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/load_balancing/xds/xds_channel_args.h; sourceTree = ""; }; - 5EC7B281E28F3D4D4E767A954D6E24A0 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 5ECDF5690996FF085A50116017EDBF8A /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 5ED2ACB72812D2F7EA26E66C4D15DFAC /* grpc_polled_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_posix.h; path = src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h; sourceTree = ""; }; - 5ED67CB8C5776AE230AC50697A8B757D /* FIRCLSNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNotificationManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.m; sourceTree = ""; }; - 5EE78E00A48E45BE3E887C3A1BFC7B31 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; - 5EF30BD9F4E25DE5215ADF076D6BFD68 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; - 5EF9FA164C8A3E3BB4B41BF98A983EAE /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; - 5F0151ABEFD0080529EC3943EFCA1892 /* marshalling.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = marshalling.cc; path = absl/flags/marshalling.cc; sourceTree = ""; }; - 5F0A6C5CD33B08BF32056A4C9033989F /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = idle_filter_state.cc; path = src/core/ext/filters/channel_idle/idle_filter_state.cc; sourceTree = ""; }; - 5F0B78A6341DD63C0C648949361B608A /* Promise+Always.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Always.swift"; path = "Sources/Promises/Promise+Always.swift"; sourceTree = ""; }; - 5F1D2B3DF29D47675BC05D834103E8B5 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; - 5F20C0FE94696902FBF412C309B1116F /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/wire/decode_fast.h; sourceTree = ""; }; - 5F266A62B4CCAE841526F9D9FC5008D0 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; - 5F4B94D643F2CE97E6D44E4BBDD5371B /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; - 5F4D45C2DA327E6AFE110B327575871C /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 5F50C047392518B8B092B160E596DE23 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 5F70CF4378670EE116F2C798E5C11E02 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; - 5F727E7D96BEE81828697D7EF1E5E2ED /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 5F745F145220173684C47AA36E1D7FE1 /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; - 5F7D8845B3F3A0B2CE11CF5D9BCEF933 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; - 5F7E761329028A673283FDBD342F61E4 /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; + 5D7D846CBF6345B119EA111B2BD07EB0 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; + 5D8AAB532E5D04BDAB9899CBCE1219A1 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + 5D93E49A18FFAABD27618C5A4C7BE1FC /* SessionsSubscriber.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsSubscriber.swift; path = FirebaseSessions/Sources/Public/SessionsSubscriber.swift; sourceTree = ""; }; + 5D9EC2ABAC7F787967D705769441D246 /* client_stats_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_stats_interceptor.cc; path = src/cpp/client/client_stats_interceptor.cc; sourceTree = ""; }; + 5DA34EBA38D8CB39DA76C73891947179 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; + 5DA927B038E93914554708340629B971 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; + 5DA99E45F3B83375C7671E4E270C4E4C /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; + 5DB89BDF996A8BEE0D9BFF17A7526E10 /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; + 5DB9DC7E5DE2D9C15677B61B36081821 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; + 5DC29A0EADA59DCC95AE95252EEA28B6 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; + 5DCA655961FCBD27CE5BB13A17EB3CB0 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/file.h; sourceTree = ""; }; + 5DCD5E981F393E29F7F963AEC8EB71FE /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + 5DD5C3331D8BF5A22A6FBAC02544BF6D /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; + 5DDB0C909B354268B49AB49D96DD81D6 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; + 5DF03E03E3C6A3784224F32A42A5E2F7 /* FIRTOTPMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorAssertion.h; sourceTree = ""; }; + 5DF1EC7E99456D6E8AB07BD3680D6FB5 /* aggregate_field.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_field.cc; path = Firestore/core/src/model/aggregate_field.cc; sourceTree = ""; }; + 5E048D4D8BF1CA55EBFA2F1844E77ED8 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; + 5E06DA993B985D9911D49AEBDE1C7803 /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; + 5E13F55783D3C677A889F2CE0921A955 /* metrics.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h"; sourceTree = ""; }; + 5E15CE2FF8155E20BC61F7C4D60BC746 /* FBSDKAccessTokenExpirer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenExpirer.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenExpirer.h; sourceTree = ""; }; + 5E185FD75CB4F7B4A14F314AC655A3AC /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; + 5E1D43E83F0B82354793EFEC4E99128E /* raw_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_map.h; path = absl/container/internal/raw_hash_map.h; sourceTree = ""; }; + 5E1E00FFEFA186438864117EFD0D465D /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; + 5E2BF305DE1AEF8E215BC94766E81A3F /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 5E3E8DEE9447E9A23B23D2961D02DA64 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; + 5E4162324708D7C29AC1C836012992EF /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; + 5E537BA85B518821A51C8EE0B80DAA04 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + 5E54A5A1E7A10EC95DD6D594A83347FB /* FirestoreQueryObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirestoreQueryObservable.swift; path = Firestore/Swift/Source/PropertyWrapper/FirestoreQueryObservable.swift; sourceTree = ""; }; + 5E6AB51A716CB8DF20E1E4F197C0872E /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/reflection/def.hpp; sourceTree = ""; }; + 5E6E3C4755BE0304C03AFE804909D0FF /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; + 5E7E9213F2DC30EF0DE2EB9B35CE8676 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; + 5E801B6BE843E295A1DC9F694F810C5F /* Dictionary+KeyValueMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dictionary+KeyValueMap.swift"; path = "Sources/Core/Dictionary+KeyValueMap.swift"; sourceTree = ""; }; + 5EC1838516B1279A5CE84D5C022605CB /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; + 5EC97FD894BF5332876B2CEFD05C3152 /* tls_spiffe_validator_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_spiffe_validator_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c"; sourceTree = ""; }; + 5ED75EC925A5B382E24CB10039B02F6A /* FacebookCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FacebookCore-dummy.m"; sourceTree = ""; }; + 5EF96E6F2B0079E25DBD2F17402A831D /* stateful_session.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h"; sourceTree = ""; }; + 5F0A163E604CE1F5817230C630F3C476 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; + 5F0D3DB78F9734C909EE2E8427663119 /* load_balancer.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_balancer.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c"; sourceTree = ""; }; + 5F16F5802C18EC430E4B23AE737CC81D /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; + 5F1BEBA0581353539EC63A75476C6D16 /* FBSDKCoreKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-umbrella.h"; sourceTree = ""; }; + 5F22A086E67EACD5F24F3BF603BF18A4 /* TZVideoCropController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoCropController.m; path = TZImagePickerController/TZImagePickerController/TZVideoCropController.m; sourceTree = ""; }; + 5F2C9C3D267917437B6F63A4BF25A2D3 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/internal/service_def.h; sourceTree = ""; }; + 5F40E81656B80460A7776F3356BE9AA1 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + 5F48DF8000394BC44A7DF3CDCE9E0513 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 5F6E6E170B5C8756B291CE2BEFCDCB3B /* cidr.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb.h"; sourceTree = ""; }; + 5F7DF0B3CF4C92D506DB86659DBDE57B /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + 5F8658D3EDBCDCC7BE820BD39A73D906 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = "src/objective-c/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 5F8A74D117FB747B2B906ABB8E065017 /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; 5F8C1626C73591959F16DB1CE2536F54 /* leveldb-library-leveldb_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "leveldb-library-leveldb_Privacy"; path = leveldb_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5F99E6B874D1AED47146BDE761F6DD05 /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; - 5F9CF494B0CDFBB51CF39A55ED96B444 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; - 5FB05209FB0876D8443218CAD509A28E /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; - 5FB6B8B48E203DEC26BE7C89AF1D3D09 /* SessionsSubscriber.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsSubscriber.swift; path = FirebaseSessions/Sources/Public/SessionsSubscriber.swift; sourceTree = ""; }; - 5FC6312697F519FFEF2FC4CB61C4E170 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h"; sourceTree = ""; }; - 5FD6633180B347C55CB0F7780E057C9D /* pick_first.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h"; sourceTree = ""; }; - 5FDB564A31EB7C47B792960600726595 /* socket_option.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h"; sourceTree = ""; }; - 5FEB4B9A51E044FD4F7EFA573DC5F309 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; - 5FECCB8B8D91DB8E570C495E3C4F5F3F /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 5FEDDE62CDC131622500059843FD14DC /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; - 5FF6E5DBDC9BA7D9917CC377DF7AFA27 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - 5FF923FC06911E02639FB20D305F613B /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; - 600106C9B6F709D937C5ED71C360C975 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/event_engine/posix_engine/internal_errqueue.cc; sourceTree = ""; }; - 60046A7DBFAF1D73778B7BABBBF8922E /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; - 601DE7515730221890349E111F5AE3B7 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; - 60287881BBE4121A2054A901FBAB46E0 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; - 6028D49BA587A99F3145FE74B5D57F20 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = ""; }; - 602CF9CD7C25796E7A77A8970E84234D /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; - 6040A2204CBC1B9C395C1007D0B5B6C9 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 604315A5D02AD41BA7F1430425A42CF0 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 6051FD2FF77E9F1BAA8B51A42B262B4B /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; - 605352223FF1E1E1D53817EB67E3BD36 /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - 606D406A1A0DA24861DFCF1F13B1D0C1 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; - 606E5C0F28DD7ECB2BBFDA894019FC9A /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 6073788E49560E9C1B89FC14B4D7A777 /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; - 6073F589F4AB9F8E838B08F601F147A6 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; - 607CAA4E0E074F78849083A01F106CA0 /* all_ok.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_ok.h; path = src/core/lib/promise/all_ok.h; sourceTree = ""; }; - 6093291C518985F63E4AA3711916B0E5 /* event_engine_client_channel_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_client_channel_resolver.h; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h; sourceTree = ""; }; - 60A27D38DD1FC1F6FEFCBA39AE178B2E /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - 60AF7DB8877A9A07173CFC052FAED10F /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; - 60C6CEEE6DF9836F38F7630D0EB4CF14 /* TZImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TZImagePickerController-Info.plist"; sourceTree = ""; }; - 60CE4E3DDC8196FE4E57A14A98BA5790 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/internal/types.h; sourceTree = ""; }; - 60DA65CB265106BBDB906AFA1A73D94F /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 60DEB18A8A0DE1F79AE3213BD6992BD7 /* compress.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = compress.c; path = third_party/zlib/compress.c; sourceTree = ""; }; - 60F03147BEC00D98B11B1F322C1D0267 /* matcher.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c"; sourceTree = ""; }; - 60F92842566CD35A1DD467F9D238C454 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; - 611417B46538CC08AA430251731B034D /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 6133C925EF08D7454F9C1B922B433E4A /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; - 613FF4777C0F1FF37222E3B289CBE116 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; - 6140C8A561EC38A79B440F5B9B948A24 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - 614A9A9E7CD54012A209A39BE6A07F21 /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; - 61527BDE29FF74826AC19B82E2C8CD57 /* cord_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_buffer.h; path = absl/strings/cord_buffer.h; sourceTree = ""; }; - 616920BBF6C40C6A9F8BDA0F528963D7 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = ""; }; - 6182C414863367FC11C18885E7D84F7B /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - 61904A4654D76DDE32175575588F8762 /* range2-sse.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "range2-sse.c"; path = "third_party/utf8_range/range2-sse.c"; sourceTree = ""; }; - 619B9DF9E6106E19FA7E35277E2BCB4B /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; - 619FB9E8EA788E351EA5252F0C11364B /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 61A4B3541ACEC716AE2DFA64CE5C9870 /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; - 61A4FDBA4505C67A79C8B355F0749E4F /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; - 61B40CFFCB77048DCA251A4A63CDE993 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; - 61B90F09D2D6C1AF2194F9080FDA213B /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 61C4AC591D69D2E09C4C841360833D46 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 61C62C974C85D924F1B4A1C89DB37A29 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 61C9BFABAA20D1ACAF19661DFCF633DF /* ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist"; sourceTree = ""; }; - 61CE11EBF6E62DA39B16CC51E534720E /* FIRFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFilter.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFilter.h; sourceTree = ""; }; - 61D28B29195C2DC046B398CF43CBE281 /* TZImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageManager.m; path = TZImagePickerController/TZImagePickerController/TZImageManager.m; sourceTree = ""; }; - 61D4739B8FB20C12274D8FF0F875E066 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - 61DDAD684FFE2985898FCE1352A625E9 /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; - 61EE94E22138D3DC0C4CC8DAE8ED601D /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; - 61F9C2EA78975EA9AC830198190F8766 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; - 61FB43B964EF9E69412ED3FC3F8066DD /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - 6202B7E805A58A385C51A390B6E2A3D6 /* duration.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c"; sourceTree = ""; }; - 620DAE10F967B7FB8673A1CB378B91D5 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; - 6215DDF82BAFEF494F492220E3E73174 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - 6228E297671D3959F401D866C1A52DE2 /* array.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = array.c; path = third_party/upb/upb/message/array.c; sourceTree = ""; }; - 6229DD42A5984CD8F71C568FB4B6C3CC /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h"; sourceTree = ""; }; - 62341EB4CCF010E229D49725D9CAC773 /* transport_stream_receiver_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver_impl.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.h; sourceTree = ""; }; - 6239A6DBDD0FEF592ABC7854D16220CE /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - 625531DF482D3C18F6D48AD15736FD00 /* damerau_levenshtein_distance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = damerau_levenshtein_distance.h; path = absl/strings/internal/damerau_levenshtein_distance.h; sourceTree = ""; }; - 6255881C8AB52F7E95294D7AD49A3F64 /* http_connection_manager.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h"; sourceTree = ""; }; - 6256A09623B56FC49FA62F1E81FBAE02 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; - 6266FF2445AD9D3DFEF35A0BAC49F605 /* load_report.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c"; sourceTree = ""; }; - 62709978DD2380AD6E7F3D77F46ED584 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - 6285C2A41D31E0D918DAB849DFE3C153 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; - 629901019E458BCAB5B79BC7E8A84525 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; - 629F6B649CD6F57074D0E091B657D868 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 62B1C80CC08BC5D5EFCA04BE552FD512 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 62B2C9A74DD0EC6272231753BE1D5251 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - 62B9610D9E06318A33473BAD3301973F /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; + 5F9AD0C399468DA572136CAE86892578 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; + 5FA55BE29677288223BA5CE8EAAC43AA /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 5FA6F82414A66921AE3EECE4A25C8A38 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 5FA94E8B3B981217CD4DB20E2B94FB26 /* FBSDKGraphRequestConnection+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequestConnection+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h"; sourceTree = ""; }; + 5FAA1876D6554BA39D6557E15D09A51E /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + 5FC1C0FBB95F095E35ADEDBE6B3F59C6 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h"; sourceTree = ""; }; + 5FC675347F72E3768CAC090F7422422E /* json_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_writer.h; path = src/core/lib/json/json_writer.h; sourceTree = ""; }; + 5FE57F6D36A483EAC9DD8B30B4DA8C60 /* datadog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = datadog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c"; sourceTree = ""; }; + 6002A089B676FF0363DF15FAFC7D4238 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; + 600555E1A9F6A501116ED2273BD9F3D0 /* lrs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h"; sourceTree = ""; }; + 600F2054D5E8D8D66BA21B29001A8384 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; + 6012519A575DDA6E63478A74D84DF19E /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + 60158504BFC0B01FBEBDCE0DCB6E5FA6 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; + 601B310BBE704A4D817534011F5DAD8E /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; + 605A35141343112AA0F57F0E3101A62F /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; + 605ED1DC6CDA24862AE0B6FE139CE3F4 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c"; sourceTree = ""; }; + 607B4AF2BE4453329C822E396D9A6238 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; + 607CAD914FFDC24FE69C89ADB3E32DAA /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; + 607F4F2D4AA478AD49A7FC6E0188C944 /* sem_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sem_waiter.h; path = absl/synchronization/internal/sem_waiter.h; sourceTree = ""; }; + 6080AC8AD01E181212D9A992AFC6CA5D /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; + 608BC2FC1C717F9AF90A00A3E358A376 /* FBSDKBridgeAPIProtocolNativeV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolNativeV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h; sourceTree = ""; }; + 60974EF69B1484582DF23C543F229C0C /* common_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_policy_traits.h; path = absl/container/internal/common_policy_traits.h; sourceTree = ""; }; + 609E2D3149EB320511AA33269BE71DCA /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; + 60A9AEC5B57ECB0B2431FD8ADBF5A7B2 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; + 60B2365C89C5F58FF0F2D567D0FDFC17 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; + 60B28B7C2A922FAC52CB6DF71CC5A87C /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; + 60C35F63AEE568540AF12D8FEAF55EC9 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; + 60C67170E34421F0AE4784672B5394B5 /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; + 60CCC2C0AA5FB1BA4538769CF2F5E425 /* client_channel_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_service_config.h; path = src/core/client_channel/client_channel_service_config.h; sourceTree = ""; }; + 60CF40161B6ED2F5CAC3E38CA16D9340 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; + 60DAA00871C602FB27AF93175F8C1562 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/message_def.h; sourceTree = ""; }; + 60E65D09E67894B9E15E6BC1E04D0C41 /* FBSDKKeychainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStore.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m; sourceTree = ""; }; + 60EFCF661D064BB8445C123F1015D367 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; + 6102E5558CCA9C1FD3EEF9263FAF8EE7 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; + 61068EE62F4F5779F4AC46C85624B64F /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; + 6107471E137FB2243B9F476F2085974D /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/internal/any_invocable.h; sourceTree = ""; }; + 611BBD02BEAAD597EF7F34199F28A9BE /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; + 612F8FD838894CB54EA46A6412215D41 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/load_balancing/lb_policy.h; sourceTree = ""; }; + 613046959DCA58309EB0473BB322467C /* endpoint_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_addresses.cc; path = src/core/resolver/endpoint_addresses.cc; sourceTree = ""; }; + 6154FA3F2333D41195377520E7B1CDCC /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + 615972DD6334820D3B955C387A3356D4 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 615FC705E5D23895E82A27841033549F /* work_stealing_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_stealing_thread_pool.h; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h; sourceTree = ""; }; + 61646348C0745F04BF0787A06EE05F5C /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; + 6168A362B627177D842CABBEECED7B91 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; + 617BB1D4AA36495D64B6086CB6B64622 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 6184AFCDA1596762F3A8B115D13C8CC1 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; + 61ACA193D0CD3933B5F777AA94310D59 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 61B2C9E079C8ED1F2F3804574668504A /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; + 61BBE48C52C2871E6EF80B86F79AD720 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + 61BC14572C5C7E2EBB3E546110AA634B /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/impl/codegen/byte_buffer_reader.h; sourceTree = ""; }; + 61BFED273CCA70F54B3AE8E24F99D3CB /* tls_spiffe_validator_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h"; sourceTree = ""; }; + 61CDA1BAD2B60A6E1F66320E0322580B /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; + 61CF6B95AE4ED4318ED1FD512B2FD37F /* FBSDKModalFormPresentationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKModalFormPresentationController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.h; sourceTree = ""; }; + 61CFEEF418991981FCDC62A1F8162E9E /* opentelemetry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h"; sourceTree = ""; }; + 61D10A5DCEC213563BCF20F44B0ECC44 /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; + 61E6DF771163DC27C8AC001A5E7B7106 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = "src/objective-c/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 61ED972A5F924F8C480CD39DE418C835 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + 620E4543468B31C599AC6E18395B8FEB /* dns_resolver_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_plugin.h; path = src/core/resolver/dns/dns_resolver_plugin.h; sourceTree = ""; }; + 620E795266DEF43F3E4C90ABFB02673A /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; + 623861018390DAEEAEFD684F49ED9AE4 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; + 623E924DDE859DBDBFF109692221DDC6 /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; + 624427A4D9203A45AE85C79CA188F9F4 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; + 625FB89E06D81C5B010554937BAC33FD /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; + 6274ED70EEE9C9449451D48E1033A5F1 /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; + 627AB393B9E6D561A6E2486604B4AE71 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; + 627BA41E2B8E5227A95EAEB8396A46E3 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; + 627F6A1FB0A264B491C706A18FEAA4AF /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; + 628347DD1268C3DB6DC9DB98B99D4A1F /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; + 62884A38AB75B5B2F9EE8A27AD4FFEEA /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; + 628990FFBE6803A20006509E343B32D8 /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; + 62969704850874537502F2CAA4205BAF /* listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h"; sourceTree = ""; }; + 62B0FAB3140BD22450BCDF604C5C1E40 /* call_spine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_spine.h; path = src/core/lib/transport/call_spine.h; sourceTree = ""; }; 62B963135E1B5D0D0871A62C8DC29B85 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy"; path = FirebaseFirestoreInternal_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 62BBC750A21E60EDD5F15CC56B207B48 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; - 62DC48D696D2621B19973B10E864FC27 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/Promises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 62DC57E253D3CC7846B19D2CE06C731F /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 62E2D099632FAB90CB4F5CF7B3F2B3ED /* tchar.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tchar.cc; path = src/core/lib/gprpp/tchar.cc; sourceTree = ""; }; - 62F125772CB89AD87B5AA63568FCE6B3 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; - 62F28224FD5D5627C9A6727494EE00CB /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb.h"; sourceTree = ""; }; - 62FB710546C7F9765D9525DD5879D3B5 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; - 6306652B6132A3A66A8EB204F1F0E596 /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; - 6306681AD6976A24015AA25D5CFD9665 /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 631D6D2E8CC414F7E1A409B79DFE4C51 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c"; sourceTree = ""; }; - 6320A74A93095A55032DC70BA94AB69A /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; - 632FF3B0CFB03A0E62EF4B22C7B0045F /* percent.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h"; sourceTree = ""; }; - 6335FB3851244149F4AAF35A8169A445 /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; - 634124EB01F71DB8F00C9A6CCC58D12F /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 6344580C1A3229490FE1242C755285DA /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 6348977877DD6A40971788DA03A70999 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - 634A0F6B29123750EE8AD30B9374EF29 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - 635AC529B7712677600C18664502966B /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - 635C6A0C4AB4FFBB705D73E30F673700 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 635EA521A6B2DF7F5E5FD79AC2F50061 /* authority.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h"; sourceTree = ""; }; - 6368BC1DAAE96CD0FFEF8B063DACFA8B /* FIRCrashlyticsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h; sourceTree = ""; }; - 636BE31955BC8052A67AF0703AAC1583 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; - 637CC0C421F0675015A89EACFD04D34A /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 6380DE7654F38F02FA7B0B8AFEAA1CCC /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 638E6C2530F9711459ACCD8BC4EDE2DD /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; - 63913EDA1D3499038EDF265D957F4C5A /* event_service_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h"; sourceTree = ""; }; - 63932561A7E4C89F350741C46B554F44 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 6397412FEBAB4F7B662F76397A7715A6 /* interceptor_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_list.h; path = src/core/lib/promise/interceptor_list.h; sourceTree = ""; }; - 639E5F7F52A28FACCD6F3DD561C45FCA /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; - 63A52662861A0697FF111D33DDD599C2 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; - 63BD8F89A85CA70583D00AACA6915C5D /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; - 63C7AC786FF69F22FC18B201B0FE4B89 /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; - 63E34B3A57657777EF8D9C88E5172EC3 /* listeners.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listeners.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c"; sourceTree = ""; }; - 63E7389081392986B9A983813C96642D /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - 63F190A66993AD73D3268314FF1D85F7 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - 63F1DC38BE377A1BA74F9DA125546E12 /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; - 64104CF882B6F7A79F0B8AA5D4C4F86E /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; - 64125B6FE4EA560CA7AE964C9EE54A3E /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; - 6413EC9272F72409AF37654B70F8A598 /* ping_rate_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_rate_policy.h; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.h; sourceTree = ""; }; - 64286176CB18734AE8DBA0165B0CEF76 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; - 644AAB1720281C6EBDF01BD7F37995DE /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; - 645096661119DC43F4E18A822A28BE1F /* win_socket.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = win_socket.cc; path = src/core/lib/event_engine/windows/win_socket.cc; sourceTree = ""; }; - 6454242E33ACEFA7663F3523F6830DD5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = GoogleDataTransport/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 646967285927192A134A69D1325DF14C /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; - 6476AD094CF47FF1203F8F29398CB510 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; - 647E7A084035ED55C68CC7AB24722687 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - 647F18AE81EB7B94400A3EE8335F499C /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; - 648B36C28EACDF5FC065805D01219987 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/load_balancing/health_check_client.h; sourceTree = ""; }; - 6493C8FB704DB851C08D93A635ED0B36 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; - 64ACB3B293C309E6791CF2E33B382D7D /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; - 64AF84D624602C92473930A69C87D64A /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 64B13B5FAB3C49579B12AC88B29E51BE /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; - 64B783F76935504F20E497D21A13C190 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/file.h; sourceTree = ""; }; - 64ED43DF3F74D112C447D90F78752B6F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; - 64F1FF7DEC5DC52570D921B211BCF3A3 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 64FB65EB344C6A961F74159F26002913 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; - 64FE3649CECC743D810E8024B1055EE9 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; - 650B32B278E98AA1EC0666EF2CF43C16 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; - 650DA916690E4CC1218F454C802C7080 /* ads.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c"; sourceTree = ""; }; - 65180895495218B189CAF4E8418A4439 /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; - 6521A1C2A21BBC9D6870DE4241035CE3 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; - 65259DFFC4BD1FED84641EBE8B273A7B /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; - 6535855645E49486FBC2521E4549870C /* FirebaseRemoteConfigValueDecoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseRemoteConfigValueDecoding.swift; path = FirebaseSharedSwift/Sources/FirebaseRemoteConfigValueDecoding.swift; sourceTree = ""; }; - 653BA8BE79F5F3572FB03321B39B1EB8 /* sem_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sem_waiter.cc; path = absl/synchronization/internal/sem_waiter.cc; sourceTree = ""; }; - 65570E28F822E53E33E78FCFF9AF541A /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; - 6557A6813AFBE429FE70F46B1CA7C10C /* grpc_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_server_authz_filter.cc; path = src/core/lib/security/authorization/grpc_server_authz_filter.cc; sourceTree = ""; }; - 655EAFF8532D772E7ED748CE96E0E0B2 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; - 65609BAA93B653F858D9CF6DCBE73140 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 656179D52489E747BDF2051E0A9D0953 /* secret.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c"; sourceTree = ""; }; - 656EE71DB3E18FFC0C1E4586C8B308CC /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; - 657E9BC62DBEC8239793BFE7B8C1494A /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/internal/oneof_def.h; sourceTree = ""; }; - 6582A7298915CC7AF0E476125466391E /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - 6589A626BEB5968C17BE62D6B5E3673E /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; - 659A55CEE1552846E03F599756DA98DE /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 65A8452A78738B167CBD5A6510005ABE /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 65C65A4E689D8CA790E90613AFE8D0EF /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; - 65D53BA40B7C7A6962999091978AD6D4 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 65D8EF522D6BC04C5DDE742D2132A4E5 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 65DE18467693B644C90E0788AD701BAC /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; - 65E296C35546758F758CCBAA65332961 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 65E702E998D967B906DC6303B431B98F /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; - 65EB719048A63DFDF9C2997248DFA076 /* posix_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_endpoint.cc; path = src/core/lib/event_engine/posix_engine/posix_endpoint.cc; sourceTree = ""; }; - 65F85343FAF6CDBC6EE038C03F1849C9 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; - 65FA4564650F8DB6CF4E4C0BCAED7587 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/client_channel/subchannel.h; sourceTree = ""; }; - 65FE0176570CCAE14AC5BC65795035B2 /* rls.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c"; sourceTree = ""; }; - 660A439AC461D0606BDD564A7CAEA488 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 662630BC209E2CCF71B2FE3E22BB4844 /* oob_backend_metric_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric_internal.h; path = src/core/load_balancing/oob_backend_metric_internal.h; sourceTree = ""; }; - 662FA06FF7AD9BF417AB6A1E7C406BD7 /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; - 662FB2CC3163AB40E59CE7DBDD660797 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; - 66399A79B9D1A60DDE5A3140218904C2 /* party.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = party.cc; path = src/core/lib/promise/party.cc; sourceTree = ""; }; - 66403CCFE9F8B97AEF3187E718BF6BF4 /* cidr.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h"; sourceTree = ""; }; - 665D83E73C3A63763C8E96898D7D3569 /* ip.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h"; sourceTree = ""; }; - 66629A6211AF7A808B848869CA44539B /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; - 666D51C7F3F97850D0AA6E1DA1DAF4E8 /* ServerTimestamp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTimestamp.swift; path = Firestore/Swift/Source/Codable/ServerTimestamp.swift; sourceTree = ""; }; - 667A66E6D5337C3A205A8A270F03F90C /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/resolver/polling_resolver.h; sourceTree = ""; }; - 667E1969FF83E644647830D04DBECB59 /* duration.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h"; sourceTree = ""; }; - 668C92575D4E6847B5462460C7686A8D /* FIRCLSContextInitData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContextInitData.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSContextInitData.m; sourceTree = ""; }; - 66924F27DC7368965E312F459D2F0CD2 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; - 6692D4742E3B3D8C6360F50603042D49 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 669BFC0BDC51A3E8373E62004EC6D077 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 66A11D7AB916FE02BAF0A2EB0938CADD /* pthread_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pthread_waiter.cc; path = absl/synchronization/internal/pthread_waiter.cc; sourceTree = ""; }; - 66B3CCFD6EA9D6583E7FB73904FA305B /* binder_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_stream.h; path = src/core/ext/transport/binder/transport/binder_stream.h; sourceTree = ""; }; - 66C633050ED284A82E1EACEF72B68595 /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; - 66D7A439EEF9452F5FFC26432FD4E2D1 /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; - 66DA1B457A25A7728C8BDCE8853C01C4 /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; - 66E0B51AE99AD63B6A13F50FDCDA456B /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 62C393A52914E9058D4B544148307A3C /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; + 62C99771727415A48B095F5BE2DC228A /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + 62D53CE2EDBD032BF0515C2B58D7A454 /* reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reader.h; path = third_party/upb/upb/wire/reader.h; sourceTree = ""; }; + 62D8819044C4B992CD227B30924B1B51 /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; + 62DC7C3ABC030CBE5373EDA4ACDCE74B /* xray.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h"; sourceTree = ""; }; + 62E25574A98D381FB10154A276B5DB4C /* query_extensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = query_extensions.h; path = src/core/lib/event_engine/query_extensions.h; sourceTree = ""; }; + 62EB7E95CF862DE42645EC6B40DECA19 /* tls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h"; sourceTree = ""; }; + 62FDC7DCB670393F72B4EF156F35EFD5 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; + 6303AD5813CD70C34FC91D432C974C4D /* FBSDKBridgeAPIRequest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKBridgeAPIRequest+Private.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h"; sourceTree = ""; }; + 6307A093D9BC18D408C2F093BBDF7DD0 /* periodic_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = periodic_update.cc; path = src/core/lib/resource_quota/periodic_update.cc; sourceTree = ""; }; + 630FED3E77F91B86D2085032CDB8E11B /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + 631240DFB4275FACD668160DDFE5A07A /* SettingsProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsProtocol.swift; path = FirebaseSessions/Sources/Settings/SettingsProtocol.swift; sourceTree = ""; }; + 631ADFA19DFE77DD7B07F808C827DAA3 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; + 631DA351AB80A15981E56CE059BA82F2 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; + 6346DF8941FD9F0A68679D980135E79C /* map_gencode_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_gencode_util.h; path = third_party/upb/upb/message/map_gencode_util.h; sourceTree = ""; }; + 635A98B640C9717F5943BC027861B8F5 /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + 6368608F57CD59C30A93E02757B0DD49 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; + 636DFA5F9CA88707469EBC5631F1BFBF /* FBSDKAppEventsUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.h; sourceTree = ""; }; + 636EFC315727A9EA1DCC5E55866C100A /* str_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_table.h; path = third_party/upb/upb/hash/str_table.h; sourceTree = ""; }; + 637AB0ECB7D5A6B75FE33C9E95192A17 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h"; sourceTree = ""; }; + 637B75ECA0A7B2AA18C3A93B7ECB46A1 /* promise_based_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = promise_based_filter.cc; path = src/core/lib/channel/promise_based_filter.cc; sourceTree = ""; }; + 638DA56CBB3390F1034287E2587DBBEF /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/service_config/service_config_parser.h; sourceTree = ""; }; + 63AF4DAB70CEE3D3B20696D44BD32666 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; + 63BFC186DEA98FD55F3087DD0A489F08 /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; + 63C2AE0E05CEEBBEA1004D68F9213B8B /* FBSDKBridgeAPIProtocolWebV2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV2.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m; sourceTree = ""; }; + 63C62673F54F5AF055DA34B78D9344FD /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; + 63D63AEC5776C2570F3BBA290131277B /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; + 63DDF73DAF675A124C2AFC3A219E0924 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; + 63E0DB13E8B06E3BAE9FF9943F86C7A1 /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; + 63E6229A9C9929DB5813B437E4FEBACF /* cpu_aarch64_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_win.c; path = src/crypto/cpu_aarch64_win.c; sourceTree = ""; }; + 63F9AC88D6FA822FE0FFE7AF3A98750A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 63FA57A6870A52F8F832B19518CDD628 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; + 64240D08B05B03EF0CAD692BEDE6C2E1 /* dns_service_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_service_resolver.h; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.h; sourceTree = ""; }; + 64297F14FEA7F92252CE55D1058E9966 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; + 64350494672465444512E258A2B05C79 /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; + 643C5A40526EF6C34E22B318CA88B199 /* tagged_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tagged_ptr.h; path = third_party/upb/upb/message/tagged_ptr.h; sourceTree = ""; }; + 6442569F1CCAECA8B217F4F002D25E7D /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; + 64478F3913F30524428E5DADD73A7F16 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + 644831F43F028842037642EF077DAE57 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; + 6456ED705962FD068F963C9F8FFB7B62 /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; + 64660AAB9124EFC5B216F7AAD48882DB /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; + 64823E725C4E674E267401AF506F605D /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; + 64A0617956E5DB39FF4CAD77B08865A1 /* xds_dependency_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_dependency_manager.h; path = src/core/resolver/xds/xds_dependency_manager.h; sourceTree = ""; }; + 64AD296D9545E32493227447CE012FA7 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; + 64B49B5F8E605A6F5C9BF8D67538ACEC /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; + 64B7D815BDC4F36A3022B71219FC2786 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; + 64BFB148EA77696C6DC32FEDB5F46BD9 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; + 64C28C547195A255E9BD46A4D02BE0B6 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_client.cc; path = src/core/load_balancing/health_check_client.cc; sourceTree = ""; }; + 64C6B874F166D4AD8D01E4971A2247DE /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 64E480B17940154F4D8AB853CA61DA4E /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; + 64EC1642A0DFED377462FFFCF1055E29 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 64ECC2C86396AC37E5725CE43F8FF58F /* FBSDKCrashObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrashObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.m; sourceTree = ""; }; + 64F0AA53F518BC52C6A0B4096E5E22EB /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + 6502A92FD63A4466D7A8460424CCFBA5 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; + 65053BB224BFF882072F0D5683226C15 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; + 650A66A4A5F6B90D18580AE3200202F1 /* time_zone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone.h; path = absl/time/internal/cctz/include/cctz/time_zone.h; sourceTree = ""; }; + 651295158DB48CF37B1047E9E2DB9A11 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; + 6514BA6F668FEA083195B8784D76FFC1 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/android/log.cc; sourceTree = ""; }; + 65218002F6F109C1180F1EC0BEED03F3 /* range2-sse.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "range2-sse.c"; path = "third_party/utf8_range/range2-sse.c"; sourceTree = ""; }; + 6525389FA7B80AEA234429F128D2F1E4 /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/codegen/call_op_set.h; sourceTree = ""; }; + 652CACA9E0A64E6B528566379CF8E573 /* FBSDKCoreKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.release.xcconfig; sourceTree = ""; }; + 654D29EB08AC980185607031023D13F7 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; + 65578CFAEE41A6BAA6EC03637FEA4090 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; + 655A2AB20C0CC9EAE7EC87DD4157D652 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; + 6566B5215F119EDE945A46D7ED9E35EC /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; + 6572FA404F3CA2E684C84C9921EF9AD8 /* native_windows_dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = native_windows_dns_resolver.cc; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.cc; sourceTree = ""; }; + 657A8DA1869821EED732DB9EF941A217 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; + 6585B17091334FEDA1A71C65012FDC1D /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; + 65971FC4027B4F130E79F906F7FADE54 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; + 65A71AD57C0B380BD0CA797F7C7EF625 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; + 65AC58A62F2B05589C10D869D2277EE6 /* TZImagePickerController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.debug.xcconfig; sourceTree = ""; }; + 65B3E3991DB0BAB4E8CD65AC2DC95321 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; + 65D2F094F227DB7BF0761DF0EF9C55FB /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; + 65D39BBA998417A5A39BB7006E95E7AD /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; + 65E5710FA4A909F203090C71AACADD20 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; + 65F8EC92EBE698D0685A3517103241D1 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; + 65FE6BBBEB45631A6F66F4723E600277 /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; + 65FF35098C7FE70C5BE7FED0F88AFBCE /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; + 662EB73880F51F07D408F80C66A7CA88 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; + 66337294DE335FBEAED1FE737C7BDFC3 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; + 6639F825B1F5D0EBA9E94470D661844D /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h"; sourceTree = ""; }; + 663F4FFE7C8BD9480AF2AE3AC32E899D /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; + 664E953178B529B64C5370B83B3B78DC /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; + 665276C405F7327EA6849B60337DDFA1 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + 66529EAF8FB7F3E56613959AFA0BF751 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; + 665B0409A3F57783061FBBC03E3452B7 /* node.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h"; sourceTree = ""; }; + 667611FB78083796E257A5DBC49F2EFE /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; + 66769FB5BE8D16E28148DE8AC9ED7FF1 /* def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = def.inc; path = third_party/upb/upb/port/def.inc; sourceTree = ""; }; + 6690A4D06E95E04C825C452F8C71C777 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; + 669194E09F32273FB836725EA5F5B987 /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; + 6696A6292A6E9FF46FF0AF03EDBEFDDF /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; + 669E4F1DA8F16D65F3316E252B4ADBDC /* FBSDKProfile+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKProfile+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h"; sourceTree = ""; }; + 66A548AA9E4E81B70AB65059750B0C6F /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; + 66AB27E7BD43720C7AB72368B5BA3368 /* route_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c"; sourceTree = ""; }; + 66AE8D2C115DF2AAE9DBDC7852852F8A /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; + 66B067F9AEEA02DE6405837B1BC19ED2 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + 66B71E49E501E2D2B94EE2C9416EC43E /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; + 66C7944E5A1BD4600D3395DE93C3440C /* per_cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_cpu.h; path = src/core/lib/gprpp/per_cpu.h; sourceTree = ""; }; + 66D1F8A00704CC37CD9592FB56C309FA /* FIRFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFilter.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFilter.h; sourceTree = ""; }; + 66D7B6F1C7EE001E330ECCACFA58715D /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; + 66E16185C8F4FAFA5EFC1025E0963961 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 66E76A1F4A63EBA535E6396DDC03A067 /* party.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/core/lib/promise/party.h; sourceTree = ""; }; + 66E9F527B7AB84718D3FF69A78F1BC4F /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; + 66F1D65AAFD39A05952F4349829ECDEC /* uncompr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = third_party/zlib/uncompr.c; sourceTree = ""; }; 66F375081A2D8BFA9FAA5DE589BB3469 /* LLCycleScrollView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LLCycleScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 66FF7A7F57ADD24DD445CC42E2F67FB1 /* posix_engine_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.h; sourceTree = ""; }; - 670387A0DB7884DD1F1B9AE7EF2B30F9 /* status.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = status.hpp; path = third_party/upb/upb/base/status.hpp; sourceTree = ""; }; - 6704AB21BEFC2E7EEAB65872C328BFC0 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h"; sourceTree = ""; }; - 670AF1EE8C59932255BDBD53BF84AD20 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/service_config/service_config.h; sourceTree = ""; }; - 6713B28A609A43A8215612174C7FA02A /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 673AB6A65EE5022F38625F73E938D499 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 67502D055648B87D6FDAE48DF59B6626 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 675D883ED4C6C2BE90C617F717C41EBD /* cord_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_buffer.cc; path = absl/strings/cord_buffer.cc; sourceTree = ""; }; - 677D68E7D070231927304F8F8D4EDBE1 /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; - 677DFB0EA22CBBEE9F273A67633D6AA6 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - 67945CFEA190F5F4CFF78E01CB46E9BB /* server_builder_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_plugin.h; path = include/grpcpp/impl/server_builder_plugin.h; sourceTree = ""; }; - 6794F0D329E77DC6DEB3C21DE5C54E34 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; - 67CAA00E44F05BDF090828F8771D41FC /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; - 67D23D1D7929FDBC289138987E008EAF /* http_proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy_mapper.h; path = src/core/client_channel/http_proxy_mapper.h; sourceTree = ""; }; - 67D2FF27C96584D2CCB0DAD4B246EFB8 /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb.h"; sourceTree = ""; }; - 67E61136A4439FB7808C8FB70EADCC29 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; - 67E7EB2202587F6BBBFD3D2EBCFD64C5 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 683A0C183C0C2EA20726AA0909E98A78 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; - 683C10571DC0B6A651BA359358B6AC89 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; - 6856A54FAD9D3F4BCFC2CF359E26868F /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 6858AFB173774F4ABF21FFC4B4719C06 /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; - 6859ED0C989D05ADD19BCEEE30B5F7D2 /* json_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_writer.h; path = src/core/lib/json/json_writer.h; sourceTree = ""; }; - 6878878DC17BCD7D6DFD41529C825171 /* posix_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine.cc; path = src/core/lib/event_engine/posix_engine/posix_engine.cc; sourceTree = ""; }; - 687F7FE1B0F72E08BAFF3DBC67D66902 /* has_ostream_operator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_ostream_operator.h; path = absl/strings/has_ostream_operator.h; sourceTree = ""; }; - 688CDD9CD61F8876BCF91E5F07BC25B6 /* http_protocol_options.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h"; sourceTree = ""; }; - 6897456D46E723A31B7DF44C4D84A63A /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; - 68977D4FEEFC97EA172DAC24E9ED3176 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; - 68AD82051389CB17BDC6491C12A9EF54 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 68B286313ED7612398CCE2C19EAF7E61 /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; - 68B6A63BC3D115EDFD3D88BAC89D449C /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 68B9EF12CD33D87E902EE7F8D2E0448D /* build_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = build_enum.c; path = third_party/upb/upb/mini_descriptor/build_enum.c; sourceTree = ""; }; - 68D3A7438C1992CF9EBED8A918145180 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; - 68D4401C6D7972CEAD895323626D3AC6 /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; - 68E3DFB89838DAE73699758C3A0C279D /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; - 68F6D9AF88B88F97CD21D89F93542452 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/mini_descriptor/internal/encode.h; sourceTree = ""; }; - 68F939F9B85C3E40044A7494ADD3C3FC /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; - 691D22AC448001496B1524FC8BC93F39 /* FirebaseSharedSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseSharedSwift.modulemap; sourceTree = ""; }; - 6937C7DECA5473FA57C1A8447406A2B0 /* cf_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cf_engine.h; path = src/core/lib/event_engine/cf_engine/cf_engine.h; sourceTree = ""; }; - 6940CBE161A77C4573609F2454399AFD /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; - 6940FFAFB8FAC0D845817FC511A8936B /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; - 6952E535AD069F00D60346953A66452D /* legacy_channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_channel_idle_filter.h; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h; sourceTree = ""; }; - 6958AC2208A1ACAC6084F525275F8FB9 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; - 695E473F6B0D1FB2DC6C9DE02821E657 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; - 696D844BC82B6058B8E138511BCE0905 /* udp_listener_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h"; sourceTree = ""; }; - 6985E67F9F9BAF9D848A6D8A9D53B6E1 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; - 698C24A418B8E139981FB8841DBABB10 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; - 6996903F79588E8D905E503F7584CEDD /* PromisesSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesSwift-prefix.pch"; sourceTree = ""; }; - 699D53B25E3969069B7BEF20E6E44A57 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; - 69A6516992D91E24D075E158A26CD7AE /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 69A75AC896640EF70FC738DC83558425 /* crc_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_internal.h; path = absl/crc/internal/crc_internal.h; sourceTree = ""; }; - 69AB852E3D17B45D16A9F0EF5532EFB4 /* iocp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp.cc; path = src/core/lib/event_engine/windows/iocp.cc; sourceTree = ""; }; - 69B86868A7026FF483181CC49E0181A6 /* external_privacy_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = external_privacy_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.c; sourceTree = ""; }; - 69B9F81F195DA892045916E3D81474CF /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; - 69BA31745D2678CE07F8008E875DB336 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - 69C236FD5DF2AD9D2FB6579150B0B093 /* cpu_intel.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_intel.c; path = src/crypto/cpu_intel.c; sourceTree = ""; }; - 69CA551AEF37B223791AAF40042F79F3 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; - 69D37BD89DADBC7004676D391DE9926D /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; - 69D7FE8266F812707BCD50A1B3DB7E72 /* p256-nistz.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p256-nistz.c"; path = "src/crypto/fipsmodule/ec/p256-nistz.c"; sourceTree = ""; }; - 69D8952A1C95830A85712A8B279C8B74 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_info.c; path = src/crypto/x509/v3_info.c; sourceTree = ""; }; - 69DF005007AEFE0CB841787D0698ADEC /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; - 69E7A00553447D75B5F53F06567D3621 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; - 69EA0F5CEACC77859D6DDD5BE313D641 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/google/rpc/status.upb.h"; sourceTree = ""; }; - 69F49DF1EBD03B840E5A1085F80AA7B6 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; - 69FE79B348ED5AAF5BBA866EA2471587 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - 6A07B8D83C5E3A5C349564E4991DEA86 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 6A0A33217505676AF2EEFD2EBD3A269A /* grpc_method_list.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h"; sourceTree = ""; }; - 6A0A3AA971A988B2A5E579A77EBCC7B9 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - 6A0B6B6AA3D49DB447DB60B3FB00A8A0 /* Promise+Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Catch.swift"; path = "Sources/Promises/Promise+Catch.swift"; sourceTree = ""; }; - 6A0ED6655C2A724627F62869A0B808B2 /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; - 6A123B6DA590C02C80D01356EF7E6333 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 6A1322C154D113DC4A53DAE550481BDC /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - 6A166EE537FFFAE11B8937BCCF9D1A28 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; - 6A23199FF92FAD05C08ECA8439DB1547 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; - 6A27DE79A1FE2BC407C2B749CA68EAAB /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; - 6A2D4E339BC4234B7A040AFAA8B0A758 /* p256-nistz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-nistz.h"; path = "src/crypto/fipsmodule/ec/p256-nistz.h"; sourceTree = ""; }; - 6A2F2AB0912C081E8C6EC4C6A43AED5E /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/oneof_def.h; sourceTree = ""; }; - 6A559BFA6F00F83BEBAC3C38D228CAA3 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = ""; }; - 6A55DCBAB50483536E64658B80939E74 /* fault_injection_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fault_injection_service_config_parser.cc; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc; sourceTree = ""; }; - 6A58FB6C09960C4D935CCEF0B9E1B2A3 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; - 6A60304B38388686F81E19A4389961C6 /* legacy_channel_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_channel_idle_filter.cc; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc; sourceTree = ""; }; - 6A6F1BBFB7546E0E5FCCF7F9C6BB00B1 /* bad_optional_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_optional_access.h; path = absl/types/bad_optional_access.h; sourceTree = ""; }; - 6A8251B09CAD5F1E9B8BE996128FA6DD /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; - 6A82E85213D75A1103046771B7FBB44B /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; - 6A83C7D6A3692DA7DBBDD4B358C8ACE5 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 6A9EA9BA889DBC17CE842E105EA1411C /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - 6AA5A505CA25303C185500F18742485F /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; - 6ABCCF58FD69D3EEE2105F35B53B7E6F /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - 6AC40C6760E8D5B065F91BF7EEA6F3C7 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 6AC47B95D3AEC68103499B0E04DEE8A0 /* build_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = build_enum.h; path = third_party/upb/upb/mini_descriptor/build_enum.h; sourceTree = ""; }; - 6AC68519952E33CB5E673538428790D5 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h"; sourceTree = ""; }; - 6AD40EF545F900894B267FC816D89EAF /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; - 6AD5DD5F94140ECAAB85DC0DFAE90E6C /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 6ADA7AE9FF75C014CA562848F342BF34 /* FirebaseSessions-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseSessions-umbrella.h"; sourceTree = ""; }; - 6AE965AC6C770CC4F199D482AC2F40E8 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/text/encode.h; sourceTree = ""; }; - 6AF15A908CF22468A1E074022E9FBD34 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - 6AF76BC7EA47FB3EC4BC8C3488952B00 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; - 6AFA0D1961AE2EB70970F29FE27ABAA8 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; - 6B069053CA9DBA3A7CD34322310B4B16 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; - 6B0E0E03CECFBBACBEA8BA51C4771FBF /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; - 6B0E603043D975207F4A424D7AFE88E3 /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; - 6B1221A87B06C40AC2F7C4FC41A4EE61 /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; - 6B23C7ED5A87F875967BDA21FBC7AA0D /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - 6B2EE59E0DDD8FA5EB89B5259E6F8B03 /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; - 6B30DAB5953B9CF5BE3DFC3A37831B06 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; - 6B31218045998E02E64F7E5AA3D5F22D /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; - 6B398161B737D2EE235E1306E858A3B1 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 6B3BCFDD6AB64B8F5BE9E9D57BA3927B /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; - 6B3DE30F51966541462222980CE1B4A0 /* grpc_polled_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd.h; path = src/core/lib/event_engine/grpc_polled_fd.h; sourceTree = ""; }; - 6B4A77F016715A7243403A4C77D95820 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 6B4B1721405C4AD0A3C5779AB4CD08FA /* nullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nullability.h; path = absl/base/nullability.h; sourceTree = ""; }; - 6B56ACEDE1FFC7DC50D87477D39B6CC1 /* private_handle_accessor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = private_handle_accessor.cc; path = absl/flags/internal/private_handle_accessor.cc; sourceTree = ""; }; - 6B5BD3BEC24B27CF14E15C25C99D0D2D /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 6B664C5392BE1DABD8D28D72E8CF4559 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; - 6B6ADD87208E9EABEDCD423DCD278AEA /* load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h"; sourceTree = ""; }; - 6B94482ACD1BAA2B73225243481A3591 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/load_balancing/lb_policy_registry.h; sourceTree = ""; }; - 6BAB879FA2933343F3F6B7D222C5325C /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; - 6BC1440D83158BE03CF874477B3398DC /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 6BD0FCBEC62FFAAFE2C62AC42F88A39A /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - 6BD2C52DB3196B2109A41A2246F50D6A /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = absl/base/no_destructor.h; sourceTree = ""; }; - 6BD5DAC38E85AA3701E93FFDA9EDFF12 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; - 6BE3232DC012B728472576220B9644CC /* httpbody.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = httpbody.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c"; sourceTree = ""; }; - 6BE4E4ACAF66F51C660A969467118448 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; - 6BEE55DCC7F96E3D0678B0DB6C54F43A /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - 6BF2A54207E90FB4C3EC40E9D1660CEC /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; - 6BFE7D9ACA45A57C70EADB50E2043CF4 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; - 6C005E022D754437F80965CCF88E33A0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 6C0D9CEE135B34E64E73FDD5A39EA64E /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; - 6C10CB09F5DA17AC2BFA5C5AF7D025EF /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 6C1B91F69198E80F6CC47F2117DDFB73 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; - 6C4E6F9792D1AF7FAF739D4FF3DC0F12 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 6C68BE53A42342FD409DBF66DAD8B00E /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 6C748F413DD8C977AADDC94C22D62C71 /* cookie.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c"; sourceTree = ""; }; - 6C7626AAE221E8FF9BF3D8CDDCC8DE4E /* orca_load_report.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca_load_report.upb_minitable.c; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c"; sourceTree = ""; }; - 6C8EE1D17D77DDDCFDBDCF32BD98E1FC /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 6C98504F7B481B075F241EE4EE5A09E5 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; - 6C9986A337BF42BF2C69246311E15FF9 /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; - 6CA355611227ED3B28DB15FABA4011B5 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 6CB3535D37E1C80AA1240DB006B3B9A2 /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - 6CBA20175DA726772DFBB285762F0FC2 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; - 6CD4AC2C12F5057196364B04C218E07B /* PromisesSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesSwift.modulemap; sourceTree = ""; }; - 6CE4149E241BD37A1E831C79E4D54830 /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; - 6CE50C51DFC4E46E67B47726FD6AF1FA /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - 6CE6AF83FF5C8075FFB27CE6A1AD9E31 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; - 6CEF51CAFE1A4CA2008B17D6BA5DDC1A /* crc_memcpy_x86_arm_combined.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_memcpy_x86_arm_combined.cc; path = absl/crc/internal/crc_memcpy_x86_arm_combined.cc; sourceTree = ""; }; - 6CF616062239FC0BF1E34E0A5B7DD8EE /* ref_counted_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_string.h; path = src/core/lib/gprpp/ref_counted_string.h; sourceTree = ""; }; - 6D01E604215F98B91E3B1F3DA36901F2 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 6D059841F5C4BD6EE2037DEEF318DA95 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; - 6D0F092AC739BFAF037F48C8485BE17F /* filter_state.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter_state.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c"; sourceTree = ""; }; - 6D10A781C455DC429755686E70EBDDBA /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 6D173740F620C46A684B9716B22737E1 /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; - 6D1D72EBC128AFA77E48A71E1D43A5C9 /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; - 6D1DE938959201731BB35919CC5513DA /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 6D1F1D45E3E6040B47C55EE7D4AAEA9F /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/service_config/service_config_call_data.h; sourceTree = ""; }; - 6D310CF84F8403431E9F06EF63F3DB6D /* SessionsDependencies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsDependencies.swift; path = FirebaseSessions/Sources/Public/SessionsDependencies.swift; sourceTree = ""; }; - 6D415A6C2F9B61D668C9E23B59933045 /* map_sorter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_sorter.h; path = third_party/upb/upb/message/internal/map_sorter.h; sourceTree = ""; }; - 6D51DA8EADDA05D9D7560228DB93358D /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; - 6D53E68F0BBF7E98CD46AEBB8BE97F96 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; - 6D7204E0905990748D9F67710E2FF835 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 6D811CCF841BB34DBA65A9799BE2EE1A /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; - 6D921424096C898F7B9E464E9EE1593C /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - 6D9BD93725625AFF2AFF02970C98905D /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - 6D9EC57F938F8C7FB53F0539973204C3 /* rls_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c"; sourceTree = ""; }; - 6DBE64BD16AD44499BCD197F4E75BC85 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; - 6DCFC5F7A193AD34D76B2D6A46683251 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = third_party/upb/upb/base/string_view.h; sourceTree = ""; }; - 6DD63B7D7EEE782176503C0FF2987A69 /* FIRRevokeTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.h; sourceTree = ""; }; - 6DD96FE272989AA57C7AB37C16741339 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; - 6E1596ACDF03BF4DCEC71D9C726DB0E8 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 6E1AF852A2377566F79A0870EF28F8D0 /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; - 6E2EB1A67B674C3AF914E1198F4F2BB5 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; - 6E2F2D49D79E1DE69800C84447BE69E8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/des/internal.h; sourceTree = ""; }; - 6E68EDF258F08B208A4F59A36B3D276A /* service_config_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_helper.h; path = src/core/resolver/dns/event_engine/service_config_helper.h; sourceTree = ""; }; - 6E73D9F004EDF84CEB89A6C1BF98F11B /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; - 6E7AC110E4B3A8299B349EB50A316804 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; - 6E7F136133AD485C5E062BD962922D86 /* FIRAggregateField.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateField.mm; path = Firestore/Source/API/FIRAggregateField.mm; sourceTree = ""; }; - 6E8487FFBDF32AB2EB23543FD2A27F3B /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; - 6E887EF0262348242703FEA5B0C4F297 /* cpu_aarch64_fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_fuchsia.c; path = src/crypto/cpu_aarch64_fuchsia.c; sourceTree = ""; }; - 6EAA1E94BC07876BC87A521FF67B1657 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; - 6EB358824BEA75B233605626D3AA1CE3 /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; - 6EB99588AB7781AA3499FC348C11A341 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; - 6EDADFB40B8BBAF315D8A7E71406A112 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; - 6EF37E10482D8CB0DD923B341150EAB7 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; - 6EFA5D21D96FF6FF14F73DC3FF3F8159 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = "src/objective-c/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - 6EFC0046E26496A1F9A26354F4B62C1D /* descriptor.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c"; sourceTree = ""; }; - 6EFD554D8F4BC580569DA329F8164D3F /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.c"; sourceTree = ""; }; - 6F0C4E2FD751FCB73851D4AAD6035425 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; - 6F14200A519986D5DD86EB630BF302B6 /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; - 6F27A61CB671B5B3F2CBD8A92E843AA4 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 6F29A9551D3063A3347F9EDF2E068FB1 /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; - 6F3A6625B18A30411B7675EE8630A38C /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; - 6F44B499886DD273F16C3057F5A95C85 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - 6F4C9F71DDF72EFB38649203364C2E9D /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 6F5D3AB0DE579992FC7748081C7A224E /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; - 6F6C575B2EFEC28EBC10C21536D60913 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; - 6F6CEA1C03CE53AF17FF7034D244A548 /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; - 6F75CF31259F642F18DF4DC6BBA20D2B /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - 6F85AED924534D15520C25F1EF51D402 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 6FB077B5F55D95D0E57A224C18D5198E /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/google/rpc/status.upb.h"; sourceTree = ""; }; - 6FB86724F1CA0BE30F68FDF289F975B1 /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; - 6FC569B4670188B4BC1D87E4A971A27F /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; - 6FE14FC8CF9AD7841BA103189494604A /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; - 6FF776B8EC2B81C33030358C75E2555E /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/internal/message_reserved_range.h; sourceTree = ""; }; - 6FF85DFCB01E03246F176424A2CDB9A1 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 7020920880386C6305A37CCE707C3A44 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = ""; }; - 7039C785927D38D9F7D00DB8BC077588 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; - 703FD4EAD87AB69C0CD72D67D6C0F79D /* per_thread_tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_tls.h; path = absl/base/internal/per_thread_tls.h; sourceTree = ""; }; - 704AC69F34A44390E2DAEB78D4040430 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_channelz.cc; path = src/core/client_channel/client_channel_channelz.cc; sourceTree = ""; }; - 704C8F3179B2E13AEF8509341B3FF9B3 /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; - 705A70E62E7BC24BC07666641E3F5851 /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; - 705B37E7BE0FCCE290FAE9CBFD1A740D /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - 705CB98845F203DFD57636997CDFA7BB /* commandlineflag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = commandlineflag.h; path = absl/flags/internal/commandlineflag.h; sourceTree = ""; }; - 705D852205C63AE70C0163AC86135C86 /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; - 705E53EF093D33CA407FDB957E5EEFD3 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; - 707188FCD02CC56636A1FAC646E6EF5B /* TZImagePickerController.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TZImagePickerController.bundle; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle; sourceTree = ""; }; - 7077B0A88860845F3E83CE6FF5162DAF /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; - 7088B009656FC6E699611475339E1515 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; - 709EEABC698AA539288C30513BEAE340 /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; - 709F5F4E5D479CDDB0A2AF787BB0A5AA /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 70A2D7C6F0C80068ABF84BFE596C73EF /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; - 70B5AAB4740DAA7EDD629D8DFB536905 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 70C516ED54B82492442B58A8B450F67F /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; - 70D68C3C3EA99B305C08246903640806 /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/codegen/call_op_set.h; sourceTree = ""; }; - 70D7F6BB153FE002007B30BE7E0390FA /* service_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service_def.c; path = third_party/upb/upb/reflection/service_def.c; sourceTree = ""; }; - 70DB96354A476EDA18F370242835CF92 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 70DF3BDA1CA2854B8E539256608A5302 /* swap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = swap.h; path = third_party/upb/upb/wire/internal/swap.h; sourceTree = ""; }; - 70E7F0FB768F0530161D122CF8EBA525 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; - 70EC62989AE7827589480DC3517E393D /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; - 70EE2BE7DA42018B6F3564D3D1A98126 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 7101CAE41E32679BFEA4F6E4F787A5D3 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; - 7104EB2EDAB8C3F2401E281A3CC6FFFF /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; - 710BC4914E5DC04CF0199AD4A5DCAFBB /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = priority.cc; path = src/core/load_balancing/priority/priority.cc; sourceTree = ""; }; - 7135CA98D437410B452824815E4911CC /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; - 713733E24D998C8DCD3494C7280E241E /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.m; sourceTree = ""; }; - 71396C51CF9EC0D40A2898DDDD48FB63 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; - 7139A52BAB39FB896881E85749222BE7 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; - 713A4F254B672B87E5FC0C08527B84AB /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 714DCFF92C91E6788487CC22B66264B8 /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h"; sourceTree = ""; }; - 715EFA24F5947A31291F47909C58E930 /* FIRTOTPMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorGenerator.m; sourceTree = ""; }; - 7167BFC60892B8B55471E5910FB6EBE0 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 718F2FDAD76D01AE02B40C06910AB2BA /* transport_security_common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = transport_security_common.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c"; sourceTree = ""; }; - 719293D394917F50F8F12F1ED6808867 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = absl/crc/crc32c.cc; sourceTree = ""; }; - 7197501FAB09CF105CF85818B4ADBED9 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 719A8A1DAF5B5EBFCAB94F31A53D3633 /* random_early_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_early_detection.h; path = src/core/lib/backoff/random_early_detection.h; sourceTree = ""; }; - 71B56F896B864F6404620077FCE0B56C /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 71B87D00F1EAD4F4DA193EAC17240AE1 /* ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; sourceTree = ""; }; - 71BAD8EF932CEF7D33D919F12AB9DA15 /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; - 71BD29D28E32D6707F450820A50B7042 /* DeviceKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DeviceKit-dummy.m"; sourceTree = ""; }; - 71C1164997A880963014A0A965B6310C /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 71C6A6E8F0C0130C9BB469BC89330E11 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h"; sourceTree = ""; }; - 71C6CBF8AF3D699E0FB8CEC8D73D1574 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - 71EB06127398BE67F7823419E215880E /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 71FA7BAC9911ECABB27E3AC83B632264 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - 71FE4024DFE5EAB3A90F9976C4BF3F4A /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; - 720990B293DCEAA3FB8A81FB3E3F4DA2 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; - 721C8179D54302C3B4DCCA5700421ADF /* channel_stack_builder_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_builder_impl.cc; path = src/core/lib/channel/channel_stack_builder_impl.cc; sourceTree = ""; }; - 7221365584DFDD9C62C11EEFBCCC71DE /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; - 7225A14876639C344A8AAF5B67F3947F /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; - 7229EF69FBA5207DBEEE1D38AF23773B /* xxhash_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash_inline.h; path = src/core/lib/gprpp/xxhash_inline.h; sourceTree = ""; }; - 722EB1158BF0A16988B08F3CF6FEF649 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 723670DFB99CB45F1A29AD05F5655386 /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; - 7250AF0CF9F7118D7D07AFEFA04C95E7 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/resolver/server_address.h; sourceTree = ""; }; - 725D660C34F059E7BBAF23F2E7740B08 /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; - 727E2038F35F9651E41EB274E7803A4C /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/json/encode.h; sourceTree = ""; }; - 7289CF1A4B83CE1825662F2BF813B705 /* legacy_inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_inproc_transport.cc; path = src/core/ext/transport/inproc/legacy_inproc_transport.cc; sourceTree = ""; }; - 729297571762C5DDDBBC99D175629301 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - 7297F9EC842EC1DF4E63735A5B1BD8D2 /* CodableErrors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableErrors.swift; path = Firestore/Swift/Source/Codable/CodableErrors.swift; sourceTree = ""; }; - 729875D3C548AC8BABEDC37B598C9FA8 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; - 72A06CB284586A3D1CCF94B6382EE376 /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; - 72A17E2030E667EE8546270C62AAFAB7 /* RCARecaptchaProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaProtocol.h; sourceTree = ""; }; - 72AA78B9087ECF5D45586137FDC682F2 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; - 72ADDC6289545ABA536D81A9196AF13B /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c"; sourceTree = ""; }; - 72D6A644BD7657DDE516553B99B159D2 /* arena.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = arena.hpp; path = third_party/upb/upb/mem/arena.hpp; sourceTree = ""; }; - 72DA6ABEC05B309F2FC06C1515064260 /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; - 72E222B117AFD17335D09F472DB13860 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; - 72E3E645F001853F3514CC741679FCEE /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - 72F4A893420923302362F3205B15EA5A /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; - 7312E40A892CA3E19A266738EFDEFA3D /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - 7318BBBC5B818BE2F5B9B8833F1CBE6A /* timestamp.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h"; sourceTree = ""; }; - 73192DD14CFF2C4226F21FB31CDA00E3 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 731E60A2A2030247EF333A137E054570 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; - 731ED4AD0FF2E8B4320401606ED0E31E /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 7331F47B7D4809A8C4CA334472D341F2 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; - 7343BB0FC4A3961176E2607634F6A7D2 /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; - 7348E7ADC62324AC8CBC8EE3CAB0EF11 /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; - 735146869A243C589BC88696A526147C /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - 735450F672E18407B4BCD3878A6593ED /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 7355E0CF980BD0805988D4775BF13703 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 73701278B95DE1E3012ED799337AE831 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - 7371AB91C6D7C37AFD56A1EF8FFC5C8A /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; - 73793FA1C770389887981763EFC40B11 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/client_channel/backend_metric.h; sourceTree = ""; }; - 7381BCA01752D82A6B77804C5B7C410C /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; - 73A99A135B7B6299E17400397D149EBF /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/text/encode.h; sourceTree = ""; }; - 73CBEAD3C39180F512B52CB6F9ABFBC6 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; - 73D13000A9EB2AFCCF72D49C780C5F70 /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; - 73DFA33C6BB0BA1D4754FC37AED81FA6 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; - 73E171821360A39197AA87F5A2C552C2 /* pick_first.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h"; sourceTree = ""; }; - 73F08B4A884DC1ECFC11817BE2F332CB /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; - 73F0BEDDAF3B410D7B8F4AA9545C8ECD /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; - 7402DC4F03227FB0F767AEEEFCC29633 /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; - 7413EE8505C6C89248F4BF68DDDA029F /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/flags/config.h; sourceTree = ""; }; - 74176EFC8797E5255BD3939DA4BFD2E0 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; - 741DB157C681DAE64A487819E51B4621 /* ratelimit_unit.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_unit.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c"; sourceTree = ""; }; - 741E791772384E141482B0CCEB1D9284 /* xds_cluster_specifier_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_specifier_plugin.cc; path = src/core/ext/xds/xds_cluster_specifier_plugin.cc; sourceTree = ""; }; - 7441A5B899D5BC3CE16CFAB9B50D8DBA /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseFirestoreInternal/dummy.m; sourceTree = ""; }; - 74453525B29772D6691604D8D5F9817A /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; - 7447848FD17E63A1310B231DF10B6E0B /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 7457123E7D8527A87BABB886D345CC52 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 7466136C0FF3925EB2E4D5B171D132D6 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; - 747CCC7DCD4C7058615E6F4BC3A20CA9 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; - 7498F062FA23713711BF0EAEB3B348CD /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 74ACA241350C63E43FDBBFAAB8224E6D /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; - 74C5956682DC4E270CFB0AC290322015 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb.h"; sourceTree = ""; }; - 74CBC7BB03C5AFBB7C70A2E7DBBB8B53 /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; - 74D10328EB7B9A0FA8886575D040E248 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 74D242618042926254ED4F8793D238B7 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - 74DADAF4B81B5C3CD6F497AFDDF11BE6 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; - 74DD722D02411C88356D732E833A8816 /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; - 74DDB2F920CC2CE00FCF5914456CBCDD /* substitution_format_string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c"; sourceTree = ""; }; - 74EA57AD4B5807578799FDECE437BCF6 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; - 74F03F08EC95FEFBA52A25A2640B308C /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 74F18F280096CEBFA533483027281A0B /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; - 750DA2FCFFCD9A3F463CF2EDF11347B9 /* custom_tag.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c"; sourceTree = ""; }; - 750DEB6DCEA34BEB46ABB06B26C08594 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; - 751C408E971CD848E7B5C4DE89D3229F /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; - 75280673915CA37BD7C49EDEFF7622FB /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_balancer_api.cc; path = src/core/load_balancing/grpclb/load_balancer_api.cc; sourceTree = ""; }; - 752E781A745F67C96DB6980A34267797 /* stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat.cc; path = src/core/lib/gprpp/posix/stat.cc; sourceTree = ""; }; - 753E8A60CDFBD3B4A92D5B0A1F1E5223 /* random_early_detection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = random_early_detection.cc; path = src/core/lib/backoff/random_early_detection.cc; sourceTree = ""; }; - 754F54B05C1822233DD8FA9EC94D790D /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 75511C0F7DC0A923114F1A5E40B39976 /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; - 75536C31D327C12A3ACC9E73B206E200 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 7555B2056756D8D7E330BE715C98A9DB /* LLCycleScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LLCycleScrollView.modulemap; sourceTree = ""; }; - 755D0AB7E4C55457984AC0E86E23DADA /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; - 755E56853DB01B7AA6C4D695C7CC6228 /* adler32.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = third_party/zlib/adler32.c; sourceTree = ""; }; - 7561A0B2A4D2B4399C97BDC7179BC3A0 /* grpc_tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_crl_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h; sourceTree = ""; }; - 756A5BBF82B44B8B2F5D0E176504E197 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; - 75759FB707268A035AE8167EF6337DBF /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 759A899795D3BD4998338AC05BBDB07A /* xds_health_status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_health_status.cc; path = src/core/ext/xds/xds_health_status.cc; sourceTree = ""; }; - 759FE8B95FF6A61D1A0A1D3DE2AE9872 /* binder_android.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_android.h; path = src/core/ext/transport/binder/wire_format/binder_android.h; sourceTree = ""; }; - 75A2EC5C72162829EFEEC7A50F143617 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/mini_table/message.c; sourceTree = ""; }; - 75A5DA679C15660399BA91935B83AF21 /* service_indicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_indicator.h; path = src/include/openssl/service_indicator.h; sourceTree = ""; }; - 75B81C9F886C85C2BF0F896D880D6458 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/support/status_code_enum.h; sourceTree = ""; }; - 75BB53C96604EEA23323B4B10F5CE414 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; + 66FE898515A2C54B37C0B3ACB0B557CA /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; + 66FFB2601128E7D70B325A031DAC167D /* legacy_channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_channel_idle_filter.h; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h; sourceTree = ""; }; + 672178A044A61662869DD710AC77AA3F /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.h"; sourceTree = ""; }; + 67228D32B83586BE48E7C6F5A02B1E94 /* fault.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c"; sourceTree = ""; }; + 672C8315EB0909787E62E75998E96621 /* certs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h"; sourceTree = ""; }; + 672DA3F925BB6493A7E413A04072EB11 /* GDTCORMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetrics.h; sourceTree = ""; }; + 673218C074E6450AC91C7E54A5860E0F /* FIRCrashlyticsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlyticsReport.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h; sourceTree = ""; }; + 67356227510B5F16F77B7CAE15711F06 /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; + 673F66BE163240E0CE8356A42657B3C5 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h"; sourceTree = ""; }; + 6748FA655DEF1878DD214B92CF296076 /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; + 674B42053A4F7F539FA7E878CD60FC3D /* endpoint_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_list.h; path = src/core/load_balancing/endpoint_list.h; sourceTree = ""; }; + 6751189DE78F3450644220E50A234BCB /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; + 6752F32F81C74A88BC39992F7B46F4CA /* GDTCORProductData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORProductData.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORProductData.h; sourceTree = ""; }; + 675ABBFECE7BA0300CEEC713BFB59295 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; + 6761D667B96BD70246ADD5AB69E4AB99 /* syntax.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h"; sourceTree = ""; }; + 6768BA2D66FD7D63D52F13066117A04F /* FBSDKKeychainStoreViaBundleID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStoreViaBundleID.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m; sourceTree = ""; }; + 676ACA3C874F9632E32F1B35A7A4AE7B /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; + 676B2E401BB420FF915ECF9907D7D442 /* PromisesSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesSwift.release.xcconfig; sourceTree = ""; }; + 677B5F1357CAB93A55C0C19D52A9F475 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-gen/validate/validate.upb.h"; sourceTree = ""; }; + 67889827EBA785CCA7846E14DEBD3834 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; + 678E732DFC993679248B1E13731374FF /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; + 6791D7D0906C616F30778E2E319CBB13 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; + 679D7C15A9B80D38AC99941D5B53E43D /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; + 67A42ACD0CAE5913A9EA4DE89CFB910E /* endpoint_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h"; sourceTree = ""; }; + 67A74E0E058AD584D295B0B7D5F4537B /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; + 67B74C9C91EFF94A6F45BBFC8FBF3169 /* common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.c; path = third_party/upb/upb/hash/common.c; sourceTree = ""; }; + 67B8AA24FDE5EC88BE329667C98EFCA6 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ring_hash.cc; path = src/core/load_balancing/ring_hash/ring_hash.cc; sourceTree = ""; }; + 67B9AC9D46A1063714610CCB157579F5 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; + 67B9EE64E4269EC06AB89AFBDDC2A5E8 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; + 67C5E2DE50349A576F6E473706D28EAF /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; + 67D28F25F38EB2CD61DCB724A2D7D862 /* clusters.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h"; sourceTree = ""; }; + 67E969B2A48049AAC22D770AB7EF266C /* default_health_check_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_health_check_service.h; path = src/cpp/server/health/default_health_check_service.h; sourceTree = ""; }; + 67F774B71FF34ACC69B987BE6B197190 /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; + 67FEBC53BFA7982C1B094194220D6E31 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; + 6809C86891BB13D7D4F49D48A1E02DE1 /* TZImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-prefix.pch"; sourceTree = ""; }; + 68155A29D50E031C830947A2D8B9E4DE /* FBSDKMetadataIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMetadataIndexer.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.m; sourceTree = ""; }; + 6815E910D1386056903B28F6736CFAD4 /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; + 6828EB6D32DDAA7B9F9B0FC3C9800A5A /* ref_counted_dns_resolver_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_dns_resolver_interface.h; path = src/core/lib/event_engine/ref_counted_dns_resolver_interface.h; sourceTree = ""; }; + 682AD09E9C7927B96FAD6BB09B0DD984 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 682E7C1D8298560C9C8239FC5C4D62C9 /* FIRCLSOnDemandModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.h; sourceTree = ""; }; + 6833056D8C96024AFF7198578D0244A2 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; + 68383F0F6C3E78A9CBEEE69614FCEC6F /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; + 683D89C38B3FB188E794D07332F7A1F2 /* create_channel_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_posix.h; path = include/grpcpp/create_channel_posix.h; sourceTree = ""; }; + 6846C832D77D7484C5B1B75669907912 /* pick_first.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h"; sourceTree = ""; }; + 6849FC25A4AA23051C48BE5E12D0415F /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + 684B582A05244104B1FA1FB3D5E684FD /* FIRCLSSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.h; sourceTree = ""; }; + 68531312A3D063A6FE88520DDDE9BA60 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + 685FB3EEA42ECF262A271F39D50EF894 /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; + 68648194DFDCFCD86DE00D69D679DF7F /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; + 687599ED1D37F4ECDBBC24DBC05121F8 /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; + 688EAF7F1F043778A7B80713BEA65090 /* TZProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZProgressView.m; path = TZImagePickerController/TZImagePickerController/TZProgressView.m; sourceTree = ""; }; + 6899A6B1296C5BBA86599215E755D3F0 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/load_balancing/grpclb/load_balancer_api.h; sourceTree = ""; }; + 68CC5B1967E1FAB4FEA8FD80304B3C13 /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; + 68E1786BB265D03F8A1062A87A413291 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; + 6907D0E81ABFD302CBD45E548610D242 /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; + 690D44BE36AA3EB42CBD17F03F1E0B2A /* memory_allocator_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_factory.h; path = src/core/lib/event_engine/memory_allocator_factory.h; sourceTree = ""; }; + 690D7DEE3DB478F4A9C768F9B634CE60 /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; + 6912A42095D25F62FB31D97FA3F84FF1 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; + 6917D230E2F7B9EB528A4D00959EE95F /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; + 69324BF219831823EA8409087CA7B407 /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; + 6932997A3C17E8527348925BB1618BDB /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; + 69384F6A81F9E340BEA95A0379354D48 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; + 69423B8ECFF23B815658A5C0A7E97189 /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; + 695959291EB4010C42EB83FA2F7E0508 /* arena.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = arena.c; path = third_party/upb/upb/mem/arena.c; sourceTree = ""; }; + 695E53D01F54281DF30B3BCA8BE068FF /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h"; sourceTree = ""; }; + 695EA1392515465D4C3F973136D4000A /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; + 69622F76F8BABDFFA15319E25E2E1354 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; + 69809B438DC04511118F9B7D35E9EC09 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; + 699D4446C6FCF4E754958B54361837E2 /* FirebaseRemoteConfigInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseRemoteConfigInterop.modulemap; sourceTree = ""; }; + 699D5BE84EEEB74D95A4362685B1488C /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; + 69B63BFAD6328893240B6BAA8253420A /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; + 69C089A46B8A2F5FCC8F983212AD87CF /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; + 69DF28C0645ABA2711196640ABAB30B3 /* legacy_frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_frame.h; path = src/core/ext/transport/chttp2/transport/legacy_frame.h; sourceTree = ""; }; + 69E575941BFE6A86AE6BDA28D8D52469 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; + 69F10D8604464BBAC518702DE9D877D7 /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; + 69F61D43926CA66D2847523469AADC2C /* transport_stream_receiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver.h; sourceTree = ""; }; + 69FE4A0B7F1BF0BFF9FB383038C679FF /* FirebaseRemoteConfigInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseRemoteConfigInterop-Info.plist"; sourceTree = ""; }; + 6A0A338D372A2FAEF9FEB01477355614 /* xds_wrr_locality.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_wrr_locality.cc; path = src/core/load_balancing/xds/xds_wrr_locality.cc; sourceTree = ""; }; + 6A106ECDC8AB1C934BF60866DFE202D7 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; + 6A138ACE58BC4C5A5C04C5FE1B36D301 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; + 6A2003F4F57FA9E6EF1E3D517C4D1362 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; + 6A209F65D6E42C8905795C2E5617C949 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/internal/method_def.h; sourceTree = ""; }; + 6A224F73F33DA8A3C02A3C24B55091DE /* token_bucket.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = token_bucket.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c"; sourceTree = ""; }; + 6A3C1FBBF4CC4856F6AD7E8BF1546806 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 6A5BC19690D13544FB22C7890DB349A0 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; + 6A79F5FE38C8F9BC49EC5AEE5F448CD4 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + 6A865CFECECAC270FEA4C03ACAFE36A2 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; + 6A962E42CB2E85D86412FBCC1EAAA8C6 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; + 6AA489AEC3507EDC60F00E9351397F79 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = ""; }; + 6AB3F15AB06D53A9B60BBCCF6D8DE7AF /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; + 6AC1569BC8714AED8187CD9410112DA3 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; + 6ACD23DEFFBF3D8936ED30AA8D7C4D3A /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; + 6ACDCF025B07B2BD313DCF5BCA7107A3 /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; + 6ACE367D4E244F8C4050955061711340 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 6AE0B2B16BEBA088F7D81B746E1A14BF /* xds_transport_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_transport_grpc.cc; path = src/core/ext/xds/xds_transport_grpc.cc; sourceTree = ""; }; + 6AEFC843E0309ECB939A737D7BE62A63 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; + 6AFAE1E6E630E8E92673CAE44BC6990B /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; + 6B00AA305068222D6811F33E949A9EAE /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/reflection/def.h; sourceTree = ""; }; + 6B12A3845A7581A776F0ABCD8AA783C0 /* base92.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base92.h; path = third_party/upb/upb/mini_descriptor/internal/base92.h; sourceTree = ""; }; + 6B12D111C7F03541CF1D184E640569D0 /* arena.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = arena.hpp; path = third_party/upb/upb/mem/arena.hpp; sourceTree = ""; }; + 6B17C1E9F09378DC8788D7889BECA5DB /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; + 6B21E2B89D1A7E42F1390347DDCBBB0C /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; + 6B35E78E07E97DA2BE27A75D1586F40C /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; + 6B393EA0D27EBD9EAC78B21CE58F5393 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; + 6B404CC0F56604CAFF006C9976A9326B /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; + 6B427E20119DD4322D291935894567E3 /* FirebaseFirestoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestoreInternal.debug.xcconfig; sourceTree = ""; }; + 6B57865BDC504D350D45AEC3AD393B74 /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; + 6B5A0A2E5FB0C168E84F493AE4454DA8 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; + 6B6046249BC0E341B38F6E557B185F47 /* metrics_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c"; sourceTree = ""; }; + 6B6E9960A6E8F090F45D22C5FC0ECCCE /* GDTCORStorageSizeBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageSizeBytes.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageSizeBytes.h; sourceTree = ""; }; + 6B75DA7E50545F64C9639A64EEE2391C /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/load_balancing/child_policy_handler.h; sourceTree = ""; }; + 6B9C826D3ACB0D6DE3BF2E352604B1F1 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + 6BB2E4DC45AE160134632103B0C3B3E6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/kyber/internal.h; sourceTree = ""; }; + 6BBEE13251473BD2958F08E493FFE2F4 /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; + 6BBF9D91C0920D6A3336842D2A9432D6 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + 6BCA06BB4286E9225870E3163A2A5643 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/hash/common.h; sourceTree = ""; }; + 6BD03A1E0D48430505A8969A36029814 /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; + 6BD53CAAC80DCFB178BEBEAA49E22497 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h"; sourceTree = ""; }; + 6C03AB390EC095074B35FA2992997DAB /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 6C042EAF45AE7F2EAE1047893F5C15A9 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + 6C04A05651F29B3B9FDCCBB65195D576 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb.h"; sourceTree = ""; }; + 6C0B24E481DF350C988A510379407884 /* NetworkInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkInfo.swift; path = FirebaseSessions/Sources/NetworkInfo.swift; sourceTree = ""; }; + 6C25901C8B51E6D24D12CC302CFC98BC /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; + 6C2E64955E1233D783AEEC378DC07FD6 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; + 6C2E7D22A36C083F38D01745A2F8B0FA /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; + 6C3AC2E772599E7379C3590A453E588D /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/enum_def.h; sourceTree = ""; }; + 6C4586D6A65433398DB518D148947882 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + 6C504B1FA1D2B98CF832062D374ABA02 /* call_size_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_size_estimator.h; path = src/core/lib/transport/call_size_estimator.h; sourceTree = ""; }; + 6C5BAE8FEF00FEC2AFE11F5BD9574729 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/support/status_code_enum.h; sourceTree = ""; }; + 6C5C5A14F86523AC32F29AE3CAC76A98 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; + 6C73E5DDDDB59CD242BE63B5677304F2 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 6C8E6D0D10DD10066089446BE0372DA8 /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; + 6C96B874A2D86C3E3D4D5872C99A6DF7 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; + 6CA0C85F3BAAD0211719BB8870908C31 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h"; sourceTree = ""; }; + 6CADAD80495300BBAA75564A9A24AA02 /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; + 6CB171A91B95B269945184CFBC9BFD24 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; + 6CD5950625AD89F0951A5DF5419AF859 /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; + 6CDC48DE4A8A024738B189B3F401F760 /* private_handle_accessor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = private_handle_accessor.cc; path = absl/flags/internal/private_handle_accessor.cc; sourceTree = ""; }; + 6CF6C142A8CC512BFCC2D85202356F02 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; + 6CF9CE052C31F873A4375E83B87C78AC /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; + 6D008FE6E0D16211546546B5FCAB50B9 /* FBSDKMeasurementEvent_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMeasurementEvent_Internal.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMeasurementEvent_Internal.h; sourceTree = ""; }; + 6D15D75EF21230E057732909E28C009B /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/enum_def.h; sourceTree = ""; }; + 6D16E62719B115AD52A42B83245B825E /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; + 6D29B955AA5999DE2E293C0A37D10F8B /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h"; sourceTree = ""; }; + 6D2F8123EE51CE42A93569C3A8F2D14E /* substitution_format_string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c"; sourceTree = ""; }; + 6D42DF066086AE998DC530B594EF4EED /* FIRAggregateQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuerySnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateQuerySnapshot.h; sourceTree = ""; }; + 6D440B2E6801BCEA83BAD6A1A26A319B /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb.h"; sourceTree = ""; }; + 6D4750D1A77A2ABB12208BB0D01A6A30 /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; + 6D6682C5F498B9B212580B3B395868AF /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; + 6D8F34E6B60C6E2CEB8C02053CD8100A /* metrics_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h"; sourceTree = ""; }; + 6D8F408B27956196FEB016CC83EDA8A5 /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; + 6D8F4963BA5CD85660FFBD09F4C888A9 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; + 6D90E0C45F8E535974B5F049713086A9 /* udp_listener_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h"; sourceTree = ""; }; + 6D94923FB95C27D6D2C68F01D8D1934C /* FBSDKCodelessParameterComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCodelessParameterComponent.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.m; sourceTree = ""; }; + 6D99A6C95B2B8F522054E716D8DF24CA /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; + 6D9E34A8B1BB7EE16FE03A44FF4297F3 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + 6DE84B4075B758F3A3EF9E696CB9362E /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 6DED0030F4A4BEB47A740379B7F660AC /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; + 6DF67631854C3339CEFFDC458CA27F8E /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; + 6DFA8D18FB0263DA1A408EBA8D850BC8 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/sync.h; sourceTree = ""; }; + 6E06788068B4F5A7B888F858D0DAC68B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; + 6E272C540EB8708CD03E6681EDAF366D /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; + 6E292C16E37A10D2FBC21021719D9096 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + 6E38A277A750CC51DD24C1845F10F063 /* memory_allocator_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_impl.h; path = include/grpc/event_engine/internal/memory_allocator_impl.h; sourceTree = ""; }; + 6E4DD777D6F169B41890D3EE243D4130 /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; + 6E56391EFF25C42B0BDB0EEF85DD2D2C /* http_connection_manager.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h"; sourceTree = ""; }; + 6E64AACAF90259864CB9D2142B051AA1 /* json_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_writer.h; path = src/core/lib/json/json_writer.h; sourceTree = ""; }; + 6E7FD98463FF11E4489FD73C9503D6A1 /* round_trip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = round_trip.h; path = third_party/upb/upb/lex/round_trip.h; sourceTree = ""; }; + 6E87D057543D3280C5584FA3D0914BD6 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 6E93DCCEF92A0D6B771519E37D6A620E /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; + 6E962B948CB636CD55333E3922F449F0 /* node.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c"; sourceTree = ""; }; + 6EAE3BED5B97C654489E3B2CD0007B47 /* SVProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SVProgressHUD-Info.plist"; sourceTree = ""; }; + 6EC189FE82AB42456B9CCE5450249765 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h; sourceTree = ""; }; + 6ECA2329955F1B9390C60EE398058D75 /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; + 6ED37B1A216C18100B54FA3B1FBD5636 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 6ED64FCF08B1FC84B49D943DB2C18CB0 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; + 6EE50F4728219A2FD5A3380A09EE9339 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; + 6EF1EE535D74D7D05D1AEF4493DFB6A5 /* ip.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h"; sourceTree = ""; }; + 6EF4FDD97B11A51B6A346E62B3CADC40 /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; + 6EFC6210328D0AECA05555807D405DF3 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; + 6EFD17307E52566EE6A9041809107441 /* mutex_stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h"; sourceTree = ""; }; + 6F1A545B92E3E8A5E75F3AFE78198250 /* FIRGetRecaptchaConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.m; sourceTree = ""; }; + 6F1C276606452DCDE69EE6F07BB6926E /* regex.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c"; sourceTree = ""; }; + 6F1DB2788AB562F78E0CEF29E7CA3335 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + 6F1E77836DAE565631EAAF5AE6339A2F /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; + 6F2947BDC3796FDC4038EC0C848E16A2 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; + 6F4419CFB292FCDCCD1649B53F3323FF /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 6F471431874B905AC803BB71CF5731E3 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + 6F4C0F3738E1A0BF4319C508736EA0C7 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + 6F4F73CA06E08E2B951639689D702840 /* binder_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_constants.h; path = src/core/ext/transport/binder/wire_format/binder_constants.h; sourceTree = ""; }; + 6F5B78B979FA81E9FBA05BE7E88499B4 /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/load_balancing/outlier_detection/outlier_detection.h; sourceTree = ""; }; + 6F6CA68D4483F0291276291C862B315E /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; + 6F6D853419D080D17C5B3D9D68763ECA /* inflate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = third_party/zlib/inflate.c; sourceTree = ""; }; + 6F6DFA830A822BCA0A1432F9F929456E /* stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h"; sourceTree = ""; }; + 6F75E422325FFE1A8052A22F5A81BBBC /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; + 6F7EF0F7CF5C84CE9746736BC4D3A7AC /* ping_callbacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_callbacks.h; path = src/core/ext/transport/chttp2/transport/ping_callbacks.h; sourceTree = ""; }; + 6F8AE0A4827BB345F57D451CFCF290B8 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; + 6F9356C7D3F0B68EB6991F61E71A1CE2 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + 6F9A3F59497B3431A3BF6437F8B19571 /* if_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if_list.h; path = src/core/lib/gprpp/if_list.h; sourceTree = ""; }; + 6FA7110DF3EF26FBDEBD2B42AB4208E3 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; + 6FA8264FE0BE5CCEBE7315BF7BF97D0D /* backend_metric_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_provider.h; path = src/core/ext/filters/backend_metrics/backend_metric_provider.h; sourceTree = ""; }; + 6FB40B5455A455BA0C1049498E4C2075 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + 6FB58FCE4E2F127143D55869727AB2D6 /* cycleclock_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock_config.h; path = absl/base/internal/cycleclock_config.h; sourceTree = ""; }; + 6FC0E467CAFDD0CA5063A30921C6DF15 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; + 6FC9C63FDAA11C6A8625ACC3B2BBEA4D /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; + 6FCEBD25713685CDADDD9C66D3A37FB3 /* FirebaseFirestoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestoreInternal-umbrella.h"; sourceTree = ""; }; + 6FDB47DE229007F4FABCFF1F6B932E79 /* ring_hash.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h"; sourceTree = ""; }; + 6FF3B7E630931C51941ED486D63A8F92 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; + 7004DB89957E893C9DED5646D5ED6872 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + 70061061A58ACABD133B950201E048A8 /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; + 700D749E5DB470FC9D9AA3C0FC5B279B /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; + 70196AD52E7C961DBBE8F0A756ABB14E /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; + 7019A5CB967B61B830D03F00D94003B6 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; + 70209DE383128F80CCC9BBF7022307E8 /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; + 70255F4985C0731F537540373352733B /* discovery.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h"; sourceTree = ""; }; + 7025F8FECF6879D139D183D1A709F00A /* token_bucket.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h"; sourceTree = ""; }; + 702657EE6A06843D795E1F6AAD7E5463 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; + 702BE28CECED2E5CA16DF010E2BCC003 /* FBSDKErrorConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m; sourceTree = ""; }; + 7033B65138E3E2CC7E216AACB02F80A6 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; + 703728574293CC44C806F1BA183E0787 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = absl/crc/crc32c.h; sourceTree = ""; }; + 70387B7313462F8A4D8A94DADA8205B5 /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; + 704171B6666E36E8F69C7A717CCF3AB2 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; + 704700246C923DD586015B33DFF80DAC /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + 7048DE6824E02773E82E3B0A8FE67F6E /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 704CAE6EC4FFBD86E3564590CE48F5DF /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h"; sourceTree = ""; }; + 704E70B23BAA3899136D8116086B418E /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; + 705D895C48DC459D7FE86FE29338CAF1 /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; + 70726503CF283EA471A14FE18BBAE3D9 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; + 7076DB19337B1A3AE31FDEE35F57790A /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; + 70781D4EF4FA18021F96B14E6016CA74 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; + 7078C9E933D6BECF0EA77390CDEFB037 /* FBSDKErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h; sourceTree = ""; }; + 707D0474D6544F841ABD4E3838C82C0C /* annotations.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.c"; sourceTree = ""; }; + 70839A9CB8CB84E4CA6EFAD34B0EA85B /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; + 7085DA80666D75FB24D6752BBCFAF39C /* party.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/core/lib/promise/party.h; sourceTree = ""; }; + 708C583327DA0938B31DD4081DCEAE82 /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; + 70A0E2F5F961481198732507978F50C3 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; + 70B76E00EE4152ACEC6A7EDA536423B6 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; + 70F2ACB450DAE5AE291E905FF2ADA819 /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; + 70F7CADC88C5CC3CFA8A8AC65BDFC6A3 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; + 710972CF4955B7E1676B60D502F63B72 /* call_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_filters.h; path = src/core/lib/transport/call_filters.h; sourceTree = ""; }; + 710D580486AA8A6E2A310BE65D8898E0 /* call_creds_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_creds_util.cc; path = src/core/lib/security/credentials/call_creds_util.cc; sourceTree = ""; }; + 71143274C5794BFA85A403E62572790E /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; + 711D0DCA561CD1F3D29C367B8A1FBCEF /* FirebaseCoreExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.debug.xcconfig; sourceTree = ""; }; + 7120AE35EBF130B3091FDE9F4BB41AA9 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; + 7142A495A70714EBAF2FD9D8DAA27AB6 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_filtering.cc; path = src/core/load_balancing/address_filtering.cc; sourceTree = ""; }; + 7145E3A7AD229EBAB82CB37ED1A6906F /* FBSDKInstrumentManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInstrumentManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.h; sourceTree = ""; }; + 718D14807FDBA341703A7FB83CF9685C /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; + 718FB7F46E398F62FF1E4698A24FF6E9 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + 719012FB60D034733B6B1127BBD5CA0D /* spx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spx.c; path = src/crypto/spx/spx.c; sourceTree = ""; }; + 719A6AA385499D039EA77F612AB6D262 /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; + 71A2F618D3228252FEBB82FE53AB1658 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; + 71AFF5D8526FCFBD96D653B2FA036BD8 /* FIRCLSAnalyticsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAnalyticsManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.h; sourceTree = ""; }; + 71D1EDDC59631D1F882FB7C2A85F9159 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; + 71DBA451B8977F305349E02791D1C239 /* load_report.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c"; sourceTree = ""; }; + 71DF2C7237515AC339DF2480632E75EC /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/enum.h; sourceTree = ""; }; + 71E283C7C23635D37541520C69BDE9E2 /* FBSDKImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKImageDownloader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.h; sourceTree = ""; }; + 71EB02048AE893D76F572CB6952E150B /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; + 71FDDFF906267F54E702BD4F18F6161D /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; + 7200826E96969B60CA9D4BB190F5CB3B /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; + 7209137AD1E7FBC72594071765469FAA /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 723B34E1B8F9F615E43E996810C17CA5 /* security_policy_setting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_policy_setting.h; path = src/core/ext/transport/binder/client/security_policy_setting.h; sourceTree = ""; }; + 724A32183241FAA749F5A32CE4BFFBAC /* def_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_builder.h; path = third_party/upb/upb/reflection/internal/def_builder.h; sourceTree = ""; }; + 724EF8390234812134B7A355C468822B /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; + 72534F5D94210C74D6CDDFF12E8D98B9 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; + 725365E125175FC6C7A6EDF6DD977478 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; + 7256CF1A5D2F600FDE464893F6C163A7 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; + 72587A8F9A332038AA580235F5D3B464 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; + 725CB7834559363F37758D622B2F8606 /* semantic_version.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h"; sourceTree = ""; }; + 726850753D020773A68092D418DB5327 /* status_code_input.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h"; sourceTree = ""; }; + 726A28A088B368BDF2B5B099FCFA351B /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; + 727E92D44EC87DD0CFCD42CEC7771868 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; + 7289E408ACE5DE8114C26870E32A91AB /* cord_rep_btree_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_reader.h; path = absl/strings/internal/cord_rep_btree_reader.h; sourceTree = ""; }; + 72A08D98CD594BA43C364474ED15183D /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; + 72A14D383D9FE419383D8B3A3FCE0FEC /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; + 72AC7D82028C0BF8382FCF04B0F7DA26 /* certs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = certs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c"; sourceTree = ""; }; + 72C0DD33433FFA6807DFF864F21EBA62 /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; + 72DBAA8B818B5D7EC873BF03BF72526F /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; + 72EEAC21B14920F8619496D9147A4598 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; + 72F16AA1D26C1FDA485F4ECEF3645BF2 /* spx_util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = spx_util.c; path = src/crypto/spx/spx_util.c; sourceTree = ""; }; + 72F871BC4F63F483917B9298E5CF36A0 /* RCARecaptchaClientProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaClientProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaClientProtocol.h; sourceTree = ""; }; + 7314EC54EC8D4208DE9DF947EF991DB0 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; + 7322ED84576A6BDD8739A05CFB0E5337 /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker_registry.cc; path = src/core/lib/transport/handshaker_registry.cc; sourceTree = ""; }; + 732864DC03CF48B7A5ABBFA46B3A2768 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; + 732A8403363EE4579EE7A45A43BD1D14 /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; + 733B3E2E4276285784AFF6035005E621 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; + 734A623634B0C342E6240597BD853C3C /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; + 734CB1E708E685C239BC13CAA8BD76AA /* FIRTOTPSecret.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPSecret.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPSecret.h; sourceTree = ""; }; + 73551ED7EBFD2A0FB8A1C33AAFE23EB9 /* GDTCORMetricsControllerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsControllerProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORMetricsControllerProtocol.h; sourceTree = ""; }; + 7359DD942A0AA8DD52E78358B11FD6FE /* oob_backend_metric_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric_internal.h; path = src/core/load_balancing/oob_backend_metric_internal.h; sourceTree = ""; }; + 7379DF353DEBDAD7EDBF9ADCA56F1937 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; + 737EF08A43E8AC1FFC9A7A089F6916B8 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 738289D53F6247210C3D15FF689CA49B /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; + 7387EEB2D1405718267FCFE3E0B9B7CB /* secret.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h"; sourceTree = ""; }; + 739366C7A48B796D62D96F7EE866C663 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/resolver/resolver.cc; sourceTree = ""; }; + 739847EC3427F03F7B98D3297D018B70 /* iocp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp.cc; path = src/core/lib/event_engine/windows/iocp.cc; sourceTree = ""; }; + 739DF6492F40A5ED04A4F44B9EACC02A /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; + 73A449B6A79660698F489DF7E3E2B179 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; + 73A53F6B6E2AA30595E45CF4A33C93EB /* node.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h"; sourceTree = ""; }; + 73D0762FE3DAE776173B25626323975B /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; + 73E02EDCEC6BE938F3402765F134D7E1 /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; + 73E3F219752B4EAB9B856E779F3D91D1 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; + 73F02BD61DFC61DD06F443A723872F5C /* validate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = validate.upb_minitable.c; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.c"; sourceTree = ""; }; + 73F02D3C51C7B76AD551148EDA431BF4 /* trace.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h"; sourceTree = ""; }; + 73FE5C3AD15C5A0FEE4E99120059EFBB /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; + 73FEA5A029FD97EF6A5AE05ADF3B693B /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; + 740C1EA05FB7B4BADB22AF785CCA7A1B /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; + 74101926C3595FDA31C74E0E4204B950 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; + 74109632C97CC01C77DB8780945E9DC8 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + 74199D9AB2C0278A47710AEFC8DF3FE0 /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; + 742226AB19A802A5DCDC782D705D2E9F /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; + 74258E045FE9A0062ACDC0019024358B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/des/internal.h; sourceTree = ""; }; + 742FC6884FC0E3DD26414E2E2555D97E /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; + 744917350A14EEAFE5874A04BECEDA5C /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; + 74634B5E8C139A87CF3FC3B690403324 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; + 7463DEC1F79B7AAD20A235ED86F8BED9 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; + 74881CC1A2810481557F8A859E734EC1 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = src/core/lib/transport/message.h; sourceTree = ""; }; + 74897C7A71D6D7339EBCA04B7764D6A8 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; + 748997C68263A6818AE30D91E807D145 /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; + 748C619D9C28CB377F056706DFACC8FF /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; + 748EFE09940277BD6259EE328663A098 /* empty.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h"; sourceTree = ""; }; + 749F692094FB6B83EB53B8762DA3339A /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; + 749F875413EF0D34AD54421862D3B399 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/internal/types.h; sourceTree = ""; }; + 74A0BB88F69DEF2140CEA066A25C2AE4 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = subchannel_pool_interface.cc; path = src/core/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; + 74AC3ED6353536A5DF3D9ECEFEB723C2 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; + 74B5C677876C4D29E11A039E1AF82863 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; + 74C1368600938F9D46C688B83B07A8C6 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; + 750473E5F8C5B873611001BC018E407C /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/posix/sync.cc; sourceTree = ""; }; + 7513E5C5AD21D97727C49ADD4472E4BE /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + 7514E36D2FF438F21AD65E25CECC5B49 /* init_internally.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init_internally.cc; path = src/core/lib/surface/init_internally.cc; sourceTree = ""; }; + 751719767A12B1B026005FBE1B610B8D /* health_check_client_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client_internal.h; path = src/core/load_balancing/health_check_client_internal.h; sourceTree = ""; }; + 7537EA40B6716C5DC375D86122C54E6D /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.h; sourceTree = ""; }; + 7540275EF47A3297FF38D6BAAE33E270 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = ""; }; + 754581895145DFDE7345D153A67636BD /* thd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd.cc; path = src/core/lib/gprpp/posix/thd.cc; sourceTree = ""; }; + 75461CF43948C9EF6F0EA41ED597B178 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + 754979D499CF223067432C1AD75A143C /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + 754989CF3D917F01594C759FB604816F /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; + 754DDF2453DE9BFDAEAB5A3300929F3A /* resource_locator.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h"; sourceTree = ""; }; + 756281746FE406CE82B9E8D1984DC321 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; + 75697DE8A2727F6E4D81193940CEC94F /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; + 7570E786D499EEE69E92D4FD150EDB79 /* histogram_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_view.h; path = src/core/lib/debug/histogram_view.h; sourceTree = ""; }; + 7575567F5AEC1B26A7F478110C5B7316 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-gen/google/api/annotations.upb.h"; sourceTree = ""; }; + 75A211413DAAAF922C319CEEF81AFDB9 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/field.h; sourceTree = ""; }; + 75A527CF8A5799FB244CD5275F80EC43 /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; + 75B2FE6AF746B331330E3E1854A12AAF /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; 75BE3742280F17326166DFF0B2AC4FAE /* FirebaseAuth-FirebaseAuth_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseAuth-FirebaseAuth_Privacy"; path = FirebaseAuth_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 75C42818EAE9EFDCC436D770255AFD12 /* trace.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c"; sourceTree = ""; }; - 75DDA11B178A335920EB85CFF07E8A4C /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; - 75FDBA0CD5F76A904AE29CD728260F73 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; - 760AB1E3EF12F00104FFAB0D814EFC01 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 761CF092E4DD7B8C2E50A681DA4C27C3 /* down_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = down_cast.h; path = src/core/lib/gprpp/down_cast.h; sourceTree = ""; }; - 7625FB6BE969F35F3D8101F8D51D62EE /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; - 7629BF6AB980C98EC7161220DD360FEC /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; - 762E164A8C9550C94AE296DE3A6656BB /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 76348806DFBEEB3A6C694308256DF53E /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/client_channel/connector.h; sourceTree = ""; }; - 7642E133E72BD6830A416F9C2238A77D /* endpoint_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_list.h; path = src/core/load_balancing/endpoint_list.h; sourceTree = ""; }; - 76462DD8EDEBA68931E1F6985CA5FFEE /* memory_allocator_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_impl.h; path = include/grpc/event_engine/internal/memory_allocator_impl.h; sourceTree = ""; }; - 764C8B6A8069BC81E8FF82D3142BE6B0 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_buffer.cc; path = src/core/lib/event_engine/slice_buffer.cc; sourceTree = ""; }; - 765BB0924C0B0E2AEF1F1F1D1DB6D3BA /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; - 767F51B8A3EB779C830980D5E8DE5EEF /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; - 768719912AA1F40F518F31997E057FFA /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; - 768AC917856256AE9AE3FBFC3398F830 /* stateful_session.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h"; sourceTree = ""; }; - 76A46A91EACD52FDFC0A6C58111ADFD9 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; - 76A8FBBBFEB238CD0C4631E2A726562C /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - 76B380EFA2A0B6164689FAD035A99C91 /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; - 76B3FC425D98FE53DDE9A6E0B8F7D4AB /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; - 76D0689D15775B592D106AD580953C4C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; - 76D93F0479D367602D7FA1737DEEDB39 /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; - 76E4BA64E73FE7F1ABC120E935E7CA81 /* any.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h"; sourceTree = ""; }; - 76EE5FD8B2C754ECFB7DA58F6C93E3AF /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; - 76FEDBAA38BFF86AA8D4653D88AF172A /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - 7710CE0A6DFBC3A833EB8A4DF7816EE2 /* commandlineflag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = commandlineflag.cc; path = absl/flags/internal/commandlineflag.cc; sourceTree = ""; }; - 771DCFC459FD68A135E93D13909B0399 /* cel.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c"; sourceTree = ""; }; - 7727B482374D53B779434792836F16F8 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h"; sourceTree = ""; }; - 772A79452FFE73F485D40C9FBEEF4B66 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - 772B3DD16BA9C4C2298E58C933898B31 /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; - 773079667F8A6819C33E2BD9C8087845 /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; - 773D2A43CDC789EFA46F28A62ECDDAA1 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 774DDE21EC64FC87A74B343B30C61A8D /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; - 7751AE53ECCD50278AB13AD89D6DCAD0 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseCore/Extension/dummy.m; sourceTree = ""; }; - 775E055252E6C94B1AB8CC15CAFB4740 /* secret.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h"; sourceTree = ""; }; - 7760F0AED8E4A1112F359D99C94F2DAC /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - 776629B8C0D860B526F246833E089BB4 /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; - 7769C1A01B5B3D159F2B8D5975108739 /* grpc_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c"; sourceTree = ""; }; - 7776435A96C3EB2D82CF371E3144C378 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 777A10606E212FF75E1CF6FAC242E032 /* call_spine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_spine.cc; path = src/core/lib/transport/call_spine.cc; sourceTree = ""; }; - 777AAF2D67C0DE7495DCE4A0F1B74E0E /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 778403589630D1CA5272D39F429BFDCC /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - 779321B678294D892E121844F28E486F /* socket_option.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h"; sourceTree = ""; }; - 779FB89D51C1A39770A69D5B60D5D0B6 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - 77BE0747E53CE0E3552279DA86F27702 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 77C9D068A085A36294F93F8B08A83394 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; - 77CC34C2E0202CD9E3301D8F94685098 /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; - 77E5FA9927C45065B3D28A80B7A822DA /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; - 77F4E18EDB38B1F801557EAE2B05163B /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; - 77F77181578E3EA9B575807329D8369A /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; - 78154587B97B7BDADDC3F357A4726EDF /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; - 7823CF5F7C76207F91552F86BAD252EB /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; - 7827D1240B8B0DC22B1662AB6B1D4DDD /* client_metrics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = client_metrics.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.c; sourceTree = ""; }; - 78388447258B737CEAF7711A5E75F7A8 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; - 7849418B70BD18FFC9146E5F783CB8C9 /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; - 786B3BC13115D43F07C19AA9DD2521FF /* address_is_readable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_is_readable.h; path = absl/debugging/internal/address_is_readable.h; sourceTree = ""; }; - 7872A619155C9310B358FCB6AC74FB49 /* RecaptchaInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RecaptchaInterop-dummy.m"; sourceTree = ""; }; - 787332266166A4E1D128604DA65EC195 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; - 7873B0A0AF3EEA61C3127FEFF6972AC8 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 787CD901135AE2AEA021161C134FBB25 /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; - 789BC5A41F72446247B700D30848D88B /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 789D8960DDFCB53FBC176AE7F9D4A10C /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/client_channel/subchannel_stream_client.h; sourceTree = ""; }; - 78A765490A7BB63493E0C223B0EF371B /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 78B411073CCDE9CB469E85F2604B1CCF /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; - 78B6EF7FDFC28912741C281EF068379D /* binder_security_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_security_policy.h; path = include/grpcpp/security/binder_security_policy.h; sourceTree = ""; }; - 78B7131E69310D4DC30C3EE16AC7C30F /* tcp_socket_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_socket_utils.cc; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc; sourceTree = ""; }; - 78C26D3FDA1AC5516063E69DB14D2665 /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; - 78CBCE748C627A9C3F9C7451C3F1BDE8 /* cftype_unique_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cftype_unique_ref.h; path = src/core/lib/event_engine/cf_engine/cftype_unique_ref.h; sourceTree = ""; }; - 78CC82A32434761FFB1E07E584418FA6 /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; - 78E356E04537EFB863905B3734296FAF /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; - 78F050A2FADA8A0D79ACDF9E8DB86F9C /* EncoderDecoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncoderDecoder.swift; path = Firestore/Swift/Source/Codable/EncoderDecoder.swift; sourceTree = ""; }; - 78F589F964E045227EAB11A056EF9B4F /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - 78F8D9440128C2E0DC3B44A57D495D78 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - 78FA9E48D3FA76C6C691EF49CDF5B8AD /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; - 790D7EAAF52205F72B1A52F9320AE170 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; - 79201FA101A8FC3670A3149E43C1BC4B /* FIRCLSLaunchMarkerModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLaunchMarkerModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.m; sourceTree = ""; }; - 792651E5C12C1AAB8C91FB5C0CD3C727 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; - 79297B939F52EAE0DBEE9196D168CE25 /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; - 7954AD846BC13CCE0078B774592D0812 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 7975526DB00F6FB0B8C9189E34958F81 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - 797DA0435E5673ED9C6A868664FA4D56 /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; - 79827532D61D258A3A501C56491CEC85 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 798BF3A9881C7FD0079144EB0FEE6EF0 /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; - 798CB13DC00A8EBF1CD524248942FBC7 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; - 799CD2D0596A1C47CBCBEA171B6C3517 /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; - 799D3DF7980697B3529D224A07B88557 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 79A10E49606DB0FE993A6C508CCBA1EE /* directory_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = directory_reader.h; path = src/core/lib/gprpp/directory_reader.h; sourceTree = ""; }; - 79A127703EB3FB57B7460E9A97E17FEC /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 79A77DDCFCACADBCDC6D0B7F242C5D95 /* Device.generated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Device.generated.swift; path = Source/Device.generated.swift; sourceTree = ""; }; - 79A9B116357544560529D03A9D121263 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_ares.cc; path = src/core/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; - 79AE503692A32CB56DDCCDC8D7A62BC0 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - 79BFD3C9B4E1B96B2663AB37D1429E2D /* SessionGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionGenerator.swift; path = FirebaseSessions/Sources/SessionGenerator.swift; sourceTree = ""; }; - 79C011F7488B621868412F0C9D5BC605 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - 79C4BADED359B92CEB1FB4A1107F7B4A /* secure_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_auth_context.h; path = src/cpp/common/secure_auth_context.h; sourceTree = ""; }; - 79D2846899A1BD87C1909395EDA20C88 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 79D28D31D68376BD4488E418F585237F /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 79D5FE1212EB83F0F52F770F9C87E246 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; - 79FD8A9513A39CD6C41044FFF2CA7CE9 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; - 7A1BBAD9F1527D4FE00B2A8518E8B7C1 /* RecaptchaInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RecaptchaInterop-Info.plist"; sourceTree = ""; }; - 7A2619555BB683A6D074A85630EEFC06 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; - 7A30DE2BC7D0F5A24E5E0C5DFC767532 /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; - 7A31836D90E2EE5D9E47CE4AC2D252E2 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/internal/accessors.h; sourceTree = ""; }; - 7A346F61894BF622AF70DB5834254205 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; - 7A46FD0684FA228959B2AA0C09D7A967 /* security.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c"; sourceTree = ""; }; - 7A558ECF43BD45DAAE5391DA665DA255 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 7A5A298A993C621814772DE0E7D32E17 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb.h"; sourceTree = ""; }; - 7A744EE03375AC3C8451F2FFF6073E40 /* ring_hash.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ring_hash.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c"; sourceTree = ""; }; - 7A7EFEF54388370A2F00475D35C52028 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/connectivity_state.h; sourceTree = ""; }; - 7A826815122831E69A31E7E1F3C4995D /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; - 7AD0EA6840C5A16DB2B6C73B3670817F /* extension.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c"; sourceTree = ""; }; - 7ADED26C156C0210379E469200038ADE /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - 7AF79400D8F98A1310F9B2F45D7028BD /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; - 7B127787BFD357023F68AB099C4B4ACA /* descriptor.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h"; sourceTree = ""; }; - 7B149B26C6F0E2EDA026E161F7DB1C64 /* grpc_polled_fd_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_windows.h; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.h; sourceTree = ""; }; - 7B19C041FDCA67B2FFD930028B686FDB /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 7B22B1BABF7295CD069F18FA514E92DE /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 7B4FEAEDDA2619958DDA461465DC1B5E /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 7B5F05E41DE039472CCA4A11F3BE6645 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 7B647E7ED9BE7E7F0FFA736DEC7BD9C7 /* migrate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c"; sourceTree = ""; }; - 7B66DADE975874A3A38B8A996184055E /* backoff.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h"; sourceTree = ""; }; - 7B6B3D1C6684B5CBC279BC8F4249BA76 /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; - 7B80D76DF1DF0AA8186435405DFA90D7 /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; - 7B8C784A706BF12261DC559AB2BC18F5 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 7BA0C9ECD27C268A7F8EDFDEF0C6E104 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 7BAE185510FC64266B68FD35F8348EE6 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; - 7BAFE90FE536A177E8157AAA5E6D9AED /* LLViewExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLViewExtensions.swift; path = Lib/LLCycleScrollView/LLViewExtensions.swift; sourceTree = ""; }; - 7BB0982BEABD5E3021AC98459796277B /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool/thread_pool.h; sourceTree = ""; }; - 7BB2B1D619DCF65D5B83A35D169F0AB9 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; - 7BBD88153FA56786F1C6BED767F80C78 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 7BC619DDC6801020AA9756B5F4BC7379 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; - 7BC6BC6826400E86E886E64F86FF6C06 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; - 7BCD6239CA5D1A6AF7E6446E999A52D3 /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; - 7BDAE613E4AEF8D2005308EB58A49233 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; - 7BDCF4494040295BACD6EC20586C9B71 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; - 7BEEBDA8F8D1ACD510203875AED0A7C2 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; - 7BFC6A64209642FCF9EC79F3C5281960 /* client_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_internal.h; path = src/core/client_channel/client_channel_internal.h; sourceTree = ""; }; - 7BFCF90D36D72F90B3A49E25FB40B553 /* can_track_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = can_track_errors.h; path = src/core/lib/event_engine/extensions/can_track_errors.h; sourceTree = ""; }; - 7BFF47091CCE6995354DE8C1321E1D9B /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; - 7C016B125D81F4A7DC7A5386808AFD9D /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 7C0A88A540EEB59E912076519F5DEE7A /* stateful_session.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h"; sourceTree = ""; }; - 7C1979B2E561B589F934C63B9DC54C0B /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; - 7C28163E93826BCC1B6FA52022ADDD26 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 7C2E639EB65BEBA95967AAEF9F95A4FA /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = src/core/lib/event_engine/posix.h; sourceTree = ""; }; - 7C54CC2D4D2D74542D65B73AAECC8DE2 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 7C5BF6354889355A89F9E207F0EED682 /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; - 7C616D96BE44EE7B87FFAF3816706F1D /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = ""; }; - 7C69284B3AA34411A3C653AD14471BD8 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; - 7C93B8889B1EBD80E24D17AC9EB5AA1B /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; - 7C98B8B79581F0A4A816C7DF9FC1F46B /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - 7CB28896DD13D82F2578FC562984F742 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; - 7CC0474287C1B5C584D2F1783A5B1BFD /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; - 7CC635FE7A5C5949AE624F7AD2361602 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - 7CCB68B49E4528B833E3D2A09600B2B1 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 7CD22E0662337E21473F77F3B41D4551 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; - 7CD8F12C728FF9924EB278DD822E39DA /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; - 7CEED1ED8E7ECA19ECAB6E8DF1B25112 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - 7CF5E735402A7DF50344C28B7E5A8D97 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - 7D0CC2F8E29ABEDEDAECEBC064D14267 /* trees.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trees.h; path = third_party/zlib/trees.h; sourceTree = ""; }; - 7D0F41194A8177B46A4826496FFD42CC /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; - 7D1251FF903F47F2D9FB1799E72C472F /* cpu_aarch64_apple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_apple.c; path = src/crypto/cpu_aarch64_apple.c; sourceTree = ""; }; - 7D26456357E7FBFB7DC65556160D9065 /* DeviceKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DeviceKit.modulemap; sourceTree = ""; }; - 7D37039F136465E317E3CE20770AD59F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Crashlytics/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 7D48A28B29C08063BF74444E448FA84A /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; - 7D55F1817A60C46B3FE172D98147EF5F /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - 7D56FA7FAB8981CB6914974717C9FB5E /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 7D58D409A88F98DCB241916B8CC88DAF /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/utf8_range/utf8_range.h; sourceTree = ""; }; - 7D5B1DC0B357C38120E8FF0DF4B68AE0 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/reflection/message.c; sourceTree = ""; }; - 7D5EF29A1362F97EF59D667FCF33030B /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; - 7D5FCB236E5E8F3486231A16383911D9 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; - 7D710466B04F429F4760395A8A428F24 /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; - 7D777526849BCFFE3B15EB7799EE24E3 /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/cleanup.h; sourceTree = ""; }; - 7D7B7AD66AA1C4349E86BC4104DD0E05 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - 7D7CD4BAD2A97D0309D7EE219B7F6F82 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; - 7D7FD3C02C27E46FD6E315F850294B64 /* FirebaseCoreExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreExtension.debug.xcconfig; sourceTree = ""; }; - 7D99ECE5CFD07E0414CC0991BDAFB78C /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 7DA3D0F5CBCD7C8E82B5690D33489616 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 7DA635543B2B1CC1845CBBF6399330F4 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/event_engine/slice.h; sourceTree = ""; }; - 7DB52EDE30981127AB51207567D7BF12 /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; - 7DB9CF7695B65BD4C7B432F0CD635F0E /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; - 7DCC95466F74C337B00EF32C9B1DA6AB /* iostream_state_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iostream_state_saver.h; path = absl/random/internal/iostream_state_saver.h; sourceTree = ""; }; - 7DD131749416BC597FD6474D479D6A13 /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; - 7DE3F12A4104B95ECC5D33585F2B19FC /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; - 7DEF5B9C507DD9520547070C0495D7AE /* FIRCLSExistingReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.h; sourceTree = ""; }; - 7DEF977F835CBBC6EC9B6955E3F98935 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 7E0A3ACD9BB97D9FA957E960E37BFB1A /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; - 7E3465FFD7CCDAF0552FDBB61E23A525 /* FirebaseSessions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseSessions.swift; path = FirebaseSessions/Sources/FirebaseSessions.swift; sourceTree = ""; }; - 7E3616F603F7625AABA9E279388EE2F9 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 7E3DDEECFEA39616099BEF42F621791E /* prioritized_race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prioritized_race.h; path = src/core/lib/promise/prioritized_race.h; sourceTree = ""; }; - 7E4540FCB063D3F1843796B6A61F7CF7 /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; - 7E4788C1848D3046321F6C98B711363C /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; - 7E48706842A286D8122DC8CA4E263E26 /* LLPillPageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLPillPageControl.swift; path = Lib/LLCycleScrollView/LLPillPageControl.swift; sourceTree = ""; }; - 7E4A7ADCAA16E3D5344C1B2BDAB2ABF1 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - 7E83CF6696072013AC704295715423D2 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; - 7E84A4DF28B1E51CEDC413EE2866ABF2 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 7E8A3242FE3C9A5696BA654462C49499 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - 7E96D0652A099F9302BFF7E70C912985 /* xds_audit_logger_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_audit_logger_registry.h; path = src/core/ext/xds/xds_audit_logger_registry.h; sourceTree = ""; }; - 7E9E1757F0C7774A4BC0E13D43A3905B /* call_final_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_final_info.h; path = src/core/lib/transport/call_final_info.h; sourceTree = ""; }; - 7EA64FC4FDB0A85DA2F2ED9AA4334EEE /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - 7EAB287E4C5DAD7C148307E54FFB9B7C /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/file_def.h; sourceTree = ""; }; - 7EC16E91AB87253E111BE026440B4FB8 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; - 7EEB367A2887445CDBFA3CAE817AD606 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; - 7EF06DA41060A6A82B91BDBA1EC7F908 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine_shims/endpoint.h; sourceTree = ""; }; - 7F12F6E61802A2B7FFA3CAC97C54F849 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - 7F254CF2160B4363861EE00DBC5833A2 /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; - 7F37CCFAF44306C7193337F9CB8C343C /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; - 7F3BE62D8F38C4677FDFCBCF4A68E429 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; - 7F3DB6386BD1FE339AE0866771144085 /* PromisesSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesSwift.debug.xcconfig; sourceTree = ""; }; - 7F3DC42DF29831C5957CA5D772B8ED7A /* client_channel_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_service_config.h; path = src/core/client_channel/client_channel_service_config.h; sourceTree = ""; }; - 7F56220AE62BFA95BCAB58A3B59DF77A /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/client_channel/backend_metric.h; sourceTree = ""; }; - 7F5EEFA0966523A0B516EB48B275B85B /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; - 7F635222090DD4783E8BCDB96A30240F /* FirebaseSessions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSessions.release.xcconfig; sourceTree = ""; }; - 7F767C286D30670E838ABE016BF27A79 /* RolloutsStateSubscriber.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RolloutsStateSubscriber.swift; path = FirebaseRemoteConfig/Interop/RolloutsStateSubscriber.swift; sourceTree = ""; }; - 7F8C12474AD766744E08F1D214820A29 /* FirebaseCoreExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreExtension.modulemap; sourceTree = ""; }; - 7F92A88A6564CDBA2D4034F9AE0E5F19 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; - 7FBE6972E899C539F43CA1D14D22AAFC /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; - 7FBF930A9F0EEE93D0033649121368A5 /* thd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd.cc; path = src/core/lib/gprpp/windows/thd.cc; sourceTree = ""; }; - 7FC57B8F107DA69C5CCAF35F300DF699 /* channel_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_idle_filter.cc; path = src/core/ext/filters/channel_idle/channel_idle_filter.cc; sourceTree = ""; }; - 7FCE710FF53A3231892F92841B5D2980 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; - 7FD1B7AB6F45FEE04A43FB794AA9EE49 /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; - 7FF1A6455AA6CA687471ED72F52D597E /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - 7FF65F4FE5270B6BA89031CEB3099FAB /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - 80043F331F698B9DDC446E5CA6D0E860 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; - 800B010B0BE61A517F1465FEAADB9CF8 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; - 802E646131CC406B51A64D71B8FB5157 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - 80396FF0BF85271F1F0ADE84805BA235 /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; - 803F3065AAE2833F59ACA221B6B3AD51 /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/internal/enum_value_def.h; sourceTree = ""; }; - 80404A77ED495DB1C1CB2CC2CE4B974B /* xray.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h"; sourceTree = ""; }; - 8050FEBED1368D3C499C1BA15AEBF8E1 /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; - 805300EC5BA6E61D4CEACA611464918B /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine_shims/closure.h; sourceTree = ""; }; - 806F791C61CB6D8C311348C5E0E6BDA5 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; - 80713B0A07F59477557B1C1215C2EBD9 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; - 8076E629B1AD63CEC0F648DFB553848B /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 808072240E1D560CC2F6D359529D3B29 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; - 8087934DB9065E0DBB7A26F883AC8091 /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; - 808A42670243C61B5788F67CE87F2D6A /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 8094DFC3A46899E473DCA84886819184 /* call_spine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_spine.h; path = src/core/lib/transport/call_spine.h; sourceTree = ""; }; - 809BCE39C8B6AD5F6EACD1626B44AB16 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 80B2310EE41F97B123788FD609A47401 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/windows/tmpfile.cc; sourceTree = ""; }; - 80C1FEA37B954E24A5EAE6965C8AD5F4 /* futex_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex_waiter.h; path = absl/synchronization/internal/futex_waiter.h; sourceTree = ""; }; - 80C67396586E7D232483F6E2E2038624 /* transport_stream_receiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver.h; sourceTree = ""; }; - 80CCDF272F36CCBFC7503BDACD78A0A8 /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; - 80D4836B90A850D94BE1AA35C424300D /* endpoint.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h"; sourceTree = ""; }; - 80D907121D1D9BC6F9EBC6C528E435DF /* load_balancer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h"; sourceTree = ""; }; - 80E737B633A88C64998C60BAD13E0970 /* grpc_polled_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd.h; path = src/core/lib/event_engine/grpc_polled_fd.h; sourceTree = ""; }; - 80EA0DE0BCBFB0415B735D9F59AB8E43 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - 80F93C0B326FBCAC7C7E10C5AC7F4FD4 /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; - 810522A277DAAC03E9AC86949AE446C4 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - 810AE8785719307BCF9CF1C8F7E6DE56 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - 81275932C3E9417B4BD866B7A67873B3 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; - 8127BA626D9B94220FB75A1FFC59A538 /* posix_engine_listener_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine_listener_utils.cc; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc; sourceTree = ""; }; - 812BFA2B6C3FB4F8FA96351F8148F275 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 812E775948CA544B58B9816BFD7103E3 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; - 812F668A3839650D61777F9ACC084439 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 813C0CFE1B4A9277F8D16F03F7C83DB2 /* Promise+Recover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Recover.swift"; path = "Sources/Promises/Promise+Recover.swift"; sourceTree = ""; }; + 75C00EED857C7AB00F0C452D378F0D59 /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; + 75C51981A47E6EE28086981521858209 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + 75C89AC9F534E7DC86EAFE7B02D35ED4 /* server_info.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h"; sourceTree = ""; }; + 75D48CFF21A278C5F54A7902C3059DFD /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; + 75E6C3B59E1DB27910E7A6A7C35BFDB1 /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; + 75F04D47BCCF5E019DEB69181F0B97D8 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; + 75F80C543839E853236F3A3531244CE5 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; + 75FE3FE99262515E649DDBA2B3D4894A /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; + 76010ADBA30FF1243B36A8720B4BDEBE /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/tcp_socket_utils.h; sourceTree = ""; }; + 761100C686855B23A2740B76957609A2 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; + 7617EA171BB5C4FEBC67B4C07691BFD5 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h"; sourceTree = ""; }; + 7629E094E923585B4B4012D56B2CE42F /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewCell.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.m; sourceTree = ""; }; + 762C0B1A2FB7FDE676F7D47A67E4F8EE /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; + 7636C8CC20D4C9DE849AF3A77913DE35 /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + 763B3E3F5F78309ED2470CF2D66B8D73 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; + 7642E2D7E217F38AB587323DDE51FEE8 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; + 764C3829FDD7DD53603435CFA7A139F3 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; + 765763DA9D33D7329E65434C13A1B500 /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; + 76611FDEF7A5A7F2B9DA9BCC11E4F444 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + 767C2BD8FC610178F1C4801AB4A51265 /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; + 7681A99833DFC29B49E76586E47B4749 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; + 768EF45EFBCEF02D05431082FF558BBF /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; + 768F69437C5212D8D3C2CAAE2553B0DD /* legacy_compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_compression_filter.h; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.h; sourceTree = ""; }; + 76BFB764AE5B7272DFBDA30F8BA4A62A /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; + 76C8356D5073B835856131DBB06D9CE6 /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; + 76F20813CB4A45F21E64397BC4921E10 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + 76FA9B80242BB677261B5BFDF7292339 /* event_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_log.h; path = src/core/lib/debug/event_log.h; sourceTree = ""; }; + 771019266B5E66C636896E6A32F88A48 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + 7741670FE6B19A87AFDB3E2EE5E85AEE /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + 7744EE707F4E650DDC601B78742F8A8A /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/channel_interface.h; sourceTree = ""; }; + 7751D2F359D542F4C5F31C687F7344AA /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; + 77601500B29D81924C77AD2DEF2D63F9 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; + 77601B09F46C8D3C79CFB47D4FF63562 /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; + 7765F2C2246806145F06B41EFEA614DE /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + 777A32690C85A810E7DE44E2E4B37467 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; + 7784731F1F8548D660D46E656C466949 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; + 77964661B7F137B33FE80968D6BF1EAB /* http_proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy_mapper.h; path = src/core/client_channel/http_proxy_mapper.h; sourceTree = ""; }; + 779A10441C0C0CB35B42969F90DE638E /* ip.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h"; sourceTree = ""; }; + 77B56D538004B37697A87B3F040D9627 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; + 77BC4E7D06857998BD6B0E3C340DB3DD /* DocumentID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocumentID.swift; path = Firestore/Swift/Source/Codable/DocumentID.swift; sourceTree = ""; }; + 77C74072B37A028D4905D1843F3753C0 /* stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat.cc; path = src/core/lib/gprpp/windows/stat.cc; sourceTree = ""; }; + 77CD3B43F0F9D4344A2CB5FDED5C154C /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + 77DC4CFDF96F15D343F690C68973F793 /* arena.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = arena.hpp; path = third_party/upb/upb/mem/arena.hpp; sourceTree = ""; }; + 77EEDD289BE4802A55EDA111CEC6FF2B /* FBSDKButton+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKButton+Subclass.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h"; sourceTree = ""; }; + 77F42F28D71F4888BBADA58745A9CEF2 /* wrr_locality.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h"; sourceTree = ""; }; + 78236B8A90818A515AAC4176A8826D81 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/compression_types.h; sourceTree = ""; }; + 78286B51C7CDEDF7AED2D5174EC7F26C /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; + 782A3461C9C2AB4367BA6D02A8F2407D /* FIRPersistentCacheIndexManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPersistentCacheIndexManager.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRPersistentCacheIndexManager.h; sourceTree = ""; }; + 783EA8F119EDF1FFDB9653B87260F597 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + 786C8803F62311599F12EBCEB0939F1C /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + 787B5C6B72F1FF49A7F4122094F03D97 /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; + 788F4FFBB4BFF44330E1B1B6B081BD9E /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + 7897D9D1F4E2CF2FF6099EEF1D39C29D /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + 7898B94618A60E30C44240617673FC6B /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/google/rpc/status.upb.h"; sourceTree = ""; }; + 789926E6076FF10CDBBE0B797F5F6550 /* DeviceKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DeviceKit.modulemap; sourceTree = ""; }; + 78AC8BE5573DA4BCAEFB1597234B16F5 /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; + 78C1606F7CAB71853D8D55011ED4750D /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_conf.c; path = src/crypto/x509/v3_conf.c; sourceTree = ""; }; + 78D6477D47444CC4086FB290AD1948F9 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; + 78EF00152ACF862616D5F0574DF4422A /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + 78FC1307812E40B2E8BCF8A3C5593FFF /* grpc_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_crl_provider.h; path = include/grpc/grpc_crl_provider.h; sourceTree = ""; }; + 78FD91F8927F89D204D115558E248873 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; + 78FEB31CDC03FAA1066CD0B893063427 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; + 7907A6FFBB216AC83745AE992BAD2A8A /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; + 791D2732CFDA9B3F6167D53AE68DC0A5 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + 791D8C207813B5FE8984285CFEBA0752 /* Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Kingfisher-Info.plist"; sourceTree = ""; }; + 792036288DB39F80E461A474D78BA116 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; + 79348F33F5BA54C37494C6B7DB9D499A /* declare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = declare.h; path = absl/flags/declare.h; sourceTree = ""; }; + 793F027D795E0D79669E62CB54D5B27D /* TZImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageManager.h; path = TZImagePickerController/TZImagePickerController/TZImageManager.h; sourceTree = ""; }; + 794929CB2C2DE7793F881A0C8AEB7780 /* filter_state.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h"; sourceTree = ""; }; + 79557DE2808E93259F13C28FDFB88E0B /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; + 7959D671B88B8C2E06206ABF943E3E3E /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c"; sourceTree = ""; }; + 796239BB5D4609175F1F252C8CFA26ED /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; + 7962DA9A5A23711DB38B557970DEDDBF /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; + 796BEC48EE2BA1020D0EE3525E59B93F /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; + 79720E42BC74A3CE57B51D6C946943F3 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; + 798E52A2FC57D196B2812FED56FC0A39 /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/posix/env.cc; sourceTree = ""; }; + 799216CE950069533693C084258F69AD /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; + 79934793B31FEFB462548120AFE2B018 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; + 799C98826FB7B3D4092483E00BF9F38F /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; + 79AB2049999D318B728B69F5FF392894 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; + 79AB8446C0D446575CDC100995687846 /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/enum_value_def.h; sourceTree = ""; }; + 79AC023FCFF5CB24D75B68DE48CFACB8 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; + 79C9BA975155E67975331CC4F915B323 /* FirebaseSessionsError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseSessionsError.swift; path = FirebaseSessions/Sources/FirebaseSessionsError.swift; sourceTree = ""; }; + 79D363A61F4810854DB31DD22F37FC69 /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; + 79DDF6405406E66CC19BFA07FAA6F100 /* csds.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h"; sourceTree = ""; }; + 79EAA928D675B822E9979B28044C7FA3 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 79F0509347570C541AC9E8F448309D34 /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; + 79F47A8A559BB5BD3B3F822BB238E789 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; + 7A03EF837EB1C7F14DD25EE09A371DA6 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; + 7A061EE2461BB7AAAD6030225E4E5D13 /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; + 7A1941628AA99E7F7898B9CF6CEEA048 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; + 7A2C79F2995B6AF10EE59D8330F8CD73 /* orca_load_report.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = orca_load_report.upb_minitable.c; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c"; sourceTree = ""; }; + 7A3A53173C1E6A1A063C26224E97999C /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; + 7A3BC0190DD99D884CEC7A01BF37D93E /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/field_def.h; sourceTree = ""; }; + 7A3DECDBA0A075246E576A2026D28339 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + 7A3E8B2A4B3F5BBAFA7270D69FF0BD58 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + 7A408807F326B393D21346D0695446BF /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; + 7A5155949D59D63F5F615087138900CA /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/client_channel/connector.h; sourceTree = ""; }; + 7A51C83E358F3C69E17CE2083CE108BB /* FirebaseSessions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSessions.debug.xcconfig; sourceTree = ""; }; + 7A5797544FEFCE28FEB9A43AF7A54AD7 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; + 7A61CCE21165007F33BAB0D9EF393361 /* FBSDKAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkResolver.m; sourceTree = ""; }; + 7A676128A9EC4154D3B676ADAC0899CC /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; + 7A7025069235CBE4CA97133170E1C9DD /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; + 7A81C92DA60AB04FC5EBF8783D9E3E2B /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; + 7A88626F9F093AF61981A6F56D3B8143 /* health_check_service_server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_server_builder_option.h; path = include/grpcpp/ext/health_check_service_server_builder_option.h; sourceTree = ""; }; + 7A8F3586335DBC3B30C8C754DF818C35 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; + 7AA1F69292D3B09D720A65590247D04A /* env_windows_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_windows_test_helper.h; path = util/env_windows_test_helper.h; sourceTree = ""; }; + 7AADA2F3CEC79FC707991AECEB37FC86 /* native_posix_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_posix_dns_resolver.h; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h; sourceTree = ""; }; + 7ABBE4161DD82BFD54F2F22F825A564D /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + 7ABCC9323F7DDF947C5D8056C7034259 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; + 7ABDA888A6341F4DB2DC01D3AEF6BABF /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; + 7ABF6C53DC79ED601EB36638EB1616C6 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = err_data.c; sourceTree = ""; }; + 7ACA85193E8AD59A0A376C526D692853 /* curve25519_64_adx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519_64_adx.c; path = src/crypto/curve25519/curve25519_64_adx.c; sourceTree = ""; }; + 7ACB9A08910B0D42F980A1E7CE5BA091 /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; + 7AD6E166E21A21C82FE7FFDD774D8A54 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; + 7AE08045AC55EE660333DAA0D2ED4E11 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + 7AE21E989455865424CE0958AEC1FE2E /* ping_abuse_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_abuse_policy.h; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.h; sourceTree = ""; }; + 7AE93ABFD4DED57F3088AB13E940E853 /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; + 7AEEB17672B6D4DC10FD0A5F308059EE /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; + 7AF1B01723B08D81E5ADA6501A1821AA /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; + 7AFE71C72F29168C4FCED1DD85A71C88 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; + 7B088961751151889C6F17723566E2CC /* FirebaseRemoteConfigInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseRemoteConfigInterop-dummy.m"; sourceTree = ""; }; + 7B09537410859BB96FBB351CBE568C8D /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/text/encode.h; sourceTree = ""; }; + 7B0A738836E11FA478450125FD937E4B /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; + 7B1209211DFBF8BB49C4A1146C3B4FA9 /* boringssl_prefix_symbols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = boringssl_prefix_symbols.h; path = src/include/openssl/boringssl_prefix_symbols.h; sourceTree = ""; }; + 7B19343AC5FD954AA7917604BDE3CAB2 /* http_tracer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h"; sourceTree = ""; }; + 7B22EF5245C41D697E7E898D45404CB7 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb.h"; sourceTree = ""; }; + 7B26B15EF94416A6BF55CD0B2A154B6B /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; + 7B30C60907730C125B3CAF96828B1345 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; + 7B32D3395430226B2EB9D803D5C01D60 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + 7B396F04AB66B4699692DF9972F8633F /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; + 7B4113007AEB69B48B4FCCEBDAC80A67 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; + 7B478441A73E763A20CA702F1EA83A71 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; + 7B553942BFC0863E2B17DA9C542AD769 /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; + 7B5AD5436AB55215ABDE756C907C07AA /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; + 7B663A44E1423BAB8B5772A8D396CB5E /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; + 7B687D7681A5F16DAFA3F4CD87619C65 /* service_config_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_helper.h; path = src/core/resolver/dns/event_engine/service_config_helper.h; sourceTree = ""; }; + 7BA6D9C3CC07AD4A10559938D24BE07B /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; + 7BC9BE8EA97FBF78927FA3656190EF21 /* ssl_transport_security_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transport_security_utils.cc; path = src/core/tsi/ssl_transport_security_utils.cc; sourceTree = ""; }; + 7BD1D5B45AC6E6EE62D7BABB14D0653B /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; + 7BDE8F6311B574E29AF91A568E2457A2 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; + 7BEA5EEAD4956C707F5C0692DADDC05C /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; + 7BF267D1F12ED3A2525AE8AC4D818459 /* ares_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ares_resolver.cc; path = src/core/lib/event_engine/ares_resolver.cc; sourceTree = ""; }; + 7BF6F268D29CF47170A71E10FC03D7E6 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 7BF774D81ED6003BB11D21599529AC00 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.c"; sourceTree = ""; }; + 7C053F8B0FF93398C48BF2A821B149C2 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; + 7C1AE7BD9E237D414D403E7B2EAAF696 /* http_status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h"; sourceTree = ""; }; + 7C20BF97AA928D8E09394423319FD7DA /* flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flag.h; path = absl/flags/internal/flag.h; sourceTree = ""; }; + 7C35296906AF23F6A79BF687595335EC /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h"; sourceTree = ""; }; + 7C3D0D6E23BDBA7B9981B1D52E6B2C22 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + 7C3D5D87CA13A7B195FACE285E7CBC3A /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; + 7C4ABB59C60670D0AB3CC6A7229FA2D3 /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; + 7C51132B77F27AC9F39A4C1928B90CEF /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; + 7C571BEAC714250FF80919B9148ADCBC /* custom_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_metadata.h; path = src/core/lib/transport/custom_metadata.h; sourceTree = ""; }; + 7C5BB15F918DAA551ECE2E721139E8B2 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; + 7C76FA5B98A857E05C2BC37BDEDBCAA0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; + 7C7772EE3624AFCF7045622DB188BEC8 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + 7C7B19FA91D62BD566FF9A17A9F33FE5 /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; + 7C91743CE946EDB50E95A7FE6A561C3C /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; + 7C925BCBA81C52E4EBE3E55AA7E45150 /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; + 7C92C830337CB0E5441483F7B22ADE5F /* FIRAppCheckProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckProtocol.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckProtocol.h; sourceTree = ""; }; + 7C95460A47C4807B25734B4252681430 /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; + 7CA883CDB743520939AFD359C2FB9131 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; + 7CC593042D19E574999F0C2178771F39 /* CodablePassThroughTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodablePassThroughTypes.swift; path = Firestore/Swift/Source/Codable/CodablePassThroughTypes.swift; sourceTree = ""; }; + 7CCD279258DE737C427441B3F9B2619D /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; + 7CCE7EBC8754710CC75CBB7672B4C99F /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; + 7CD0FB61E56A858F7A336D2570F97FAF /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; + 7CD392C19A972115659F61BBFD2B712B /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; + 7CD638465FF48BDC7189CABD70D36728 /* placeholder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = placeholder.m; path = RecaptchaEnterprise/RecaptchaInterop/placeholder.m; sourceTree = ""; }; + 7CDF3ED2FE5E4D13CFAB1AFB04967A6A /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; + 7CE4A03F5CBE5CFF82C6D16292FF9CEF /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb.h"; sourceTree = ""; }; + 7D02723A58EE3F16948BD4F6F5322C7C /* ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; sourceTree = ""; }; + 7D0EA374E7DC6570B9EAE49B3B444D65 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; + 7D1D12A9676C033EC26A8E430BEFD2BF /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + 7D2137FBF1BE39AC95E3D5028B1856DC /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; + 7D23F86E0F10A138211B2005FFAAB4B7 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; + 7D2A6FA25AFC6989A144FE8BB8B40670 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; + 7D2DE4804AA353A3EEA0DF73C598AC57 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; + 7D2E76CA8A9E7957EB492C3CF2EBC79E /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = weighted_target.cc; path = src/core/load_balancing/weighted_target/weighted_target.cc; sourceTree = ""; }; + 7D31FEA1CC24E51E1E389D7608D2E55F /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; + 7D38000303E96949603D3A24B24DFC33 /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/extension_range.h; sourceTree = ""; }; + 7D4F660C928E8300620FA87ACEE5D5AC /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseAppCheck/Interop/dummy.m; sourceTree = ""; }; + 7D564562316EB5EF0CBBA966D156E88B /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; + 7D639B3AA4EEBB9E1A7B43F6A1AF9B28 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + 7D6666EF9E879FA276C35B21ADD3A790 /* orca.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb_minitable.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h"; sourceTree = ""; }; + 7D66BEEFED5A1A0132252D00F5C7173E /* LLCycleScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLCycleScrollView-umbrella.h"; sourceTree = ""; }; + 7D6D150EE61FBB6D1F8443BA9F8612A8 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; + 7D7042932D70157E3D17EFD3061757BC /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; + 7D951A55BC63295E1E9A0215A700BA5E /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; + 7DA5CC7B75F3640AE1A05E86CA6D0BFB /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; + 7DA5D83A811767CB13F343D4235C605A /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; + 7DA9B361FAB3F5B61BF3140DF7C370B6 /* cf_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cf_engine.h; path = src/core/lib/event_engine/cf_engine/cf_engine.h; sourceTree = ""; }; + 7DCF127BDC10F759E018660B33620549 /* pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pipe.h; path = src/core/lib/promise/pipe.h; sourceTree = ""; }; + 7DDFFB2E1FC501D91E5C1874E6DC956F /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; + 7DE3930DBCA649055676BE458489CFF3 /* FBSDKErrorConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h; sourceTree = ""; }; + 7DF5C74A14FB026B1B1A3B46918664AC /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; + 7DFCB91B319D72AF4EA600236425FCF6 /* FBSDKSuggestedEventsIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSuggestedEventsIndexer.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.h; sourceTree = ""; }; + 7E019A3720C30096EC12F247AF962C20 /* testing_hooks.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = testing_hooks.cc; path = Firestore/core/src/util/testing_hooks.cc; sourceTree = ""; }; + 7E198E0F4418C33099E9E45B6BE1633C /* FBSDKButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h; sourceTree = ""; }; + 7E1EDC218BB564292AC93B951E0D7878 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; + 7E265E34DE094F003575451E4C7026B1 /* FBSDKDialogConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDialogConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m; sourceTree = ""; }; + 7E3A51E25423FF3D42A954DE61B3344F /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; + 7E4DB2772CF935CBD51A927A99622699 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + 7E626B20F6E5B43F313859E1B7A9DA91 /* route_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h"; sourceTree = ""; }; + 7E6500E9C6B27D79DC31C95876702A4D /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + 7E664A996662FD444B171CC5A7F852EA /* FBSDKEventDeactivationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKEventDeactivationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/EventDeactivation/FBSDKEventDeactivationManager.m; sourceTree = ""; }; + 7E67D11EB1D9D2B2746DBC84E130DA5E /* http_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h"; sourceTree = ""; }; + 7E6EB189FCFC6B1A54DB8D75EC94653C /* common_closures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_closures.h; path = src/core/lib/event_engine/common_closures.h; sourceTree = ""; }; + 7E90498893AD9CE975D60D4D6079F268 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 7E95B0CDEF46083C8AAC38F337175A82 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; + 7EA618A9C539EDD6D468087004904165 /* FIRPersistentCacheIndexManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRPersistentCacheIndexManager.mm; path = Firestore/Source/API/FIRPersistentCacheIndexManager.mm; sourceTree = ""; }; + 7EAE56867B07B9B91AE7742FA18B5E7E /* ip.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ip.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c"; sourceTree = ""; }; + 7EB03A6E04E270160644D04592B275AA /* stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h"; sourceTree = ""; }; + 7EC19B517411CB29D67448493D5FC820 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; + 7EC963FF936222599527EAF16B48D379 /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; + 7EE6E3FAAA0FA4B087CCB5CA55628B91 /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/load_balancing/outlier_detection/outlier_detection.h; sourceTree = ""; }; + 7EF01C8B102C5AB0C8E886EA6BDD516A /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; + 7EF25EAC1E0354ECD9A0306963D9BCCE /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/load_balancing/subchannel_list.h; sourceTree = ""; }; + 7F005CF4605D5130B7D5889686AA81E2 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; + 7F082A39F31A4E6A3331FA63618C6307 /* context_params.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h"; sourceTree = ""; }; + 7F1119FF603772F68F0EF43F859CB6BA /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; + 7F13B575CD1A31C6ABD2A881BBF40611 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/load_balancing/grpclb/grpclb.h; sourceTree = ""; }; + 7F1EC53A605E1501728A0A2FBF923467 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; + 7F215D630BA3B93E5B41841445F1BDB6 /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; + 7F258025F741EEB3323820BFE562EC77 /* polling_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = polling_resolver.cc; path = src/core/resolver/polling_resolver.cc; sourceTree = ""; }; + 7F2CF080D1524678A068AEFA7EC7F674 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; + 7F3362BD76F692EF1BB22287FDE0F3F3 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; + 7F3768B57E7008496EDBA7CD454B7624 /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/utf8_range/utf8_range.h; sourceTree = ""; }; + 7F5BE5C63E5E76A9A05A413FF52D8F88 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.h"; sourceTree = ""; }; + 7F5D426E5D07445B2A1372356A755A73 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 7F7252B40877D3F27DC0F510152845FF /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; + 7F7A18B715C7E16E5ED0FE9B021D50FA /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; + 7F7AE6346A87CAEF97AB7E1471EBAE7A /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; + 7F7CE5FEE699ECA7776DE7CDEAC73F19 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; + 7F7D0D0DDD0F02A6DA735A2E4E02D4BD /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; + 7FA4EE591D7F6C4683875ABB101A28E9 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; + 7FA537A4942E5D67DACB8B9319E20FD5 /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; + 7FA64FBA7286618B844E2AF7D0717A4A /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/client_channel/retry_service_config.h; sourceTree = ""; }; + 7FA7494432B4772529BF8D4F3C2EA750 /* FBSDKCoreKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FBSDKCoreKit-Info.plist"; sourceTree = ""; }; + 7FA9163169B750F4D7E80D87F3D49C18 /* validate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb_minitable.h; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.h"; sourceTree = ""; }; + 7FBAB3464975EB6D9038D9AECC945B53 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; + 7FBF3ADABDBEA7C90217E5FD7AA0274C /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; + 7FC0E2E343DA748C6C5DFEAA152BC0A5 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; + 7FC26B64DF83E80F4693A21089831FDC /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; + 7FCB4D7476A3D508952EBE917ECFB9EE /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; + 7FD8184C72CB03F002425E23E210EF46 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; + 7FDC55353B8C70BC1E35BA2AE7CB36F0 /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; + 7FE76D21C34BE1F038B52C0F3D39A2AD /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; + 7FF78CCAC6917CAFB5CC25EF959CC053 /* checked.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h"; sourceTree = ""; }; + 80002EAA6E4893D3BBDE704F50BAA8A8 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 8003A9558FEE1049C1A648174999FCF3 /* GDTCORMetricsController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsController.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsController.m; sourceTree = ""; }; + 8003C9147232BCB4B703D4BD90F19F53 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; + 8010DE4D6DF504BD3D439A1BCA8B75EB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Firestore/Source/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 80112EB2D32E874D28690BF2E0C2F18D /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + 8011E959B383EBA41BF99E35077EF089 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; + 801D76EADEDB86E29361BBDB3AB88BE5 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; + 802B11C10416A30440FDCE3DCF203296 /* bad_optional_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_optional_access.h; path = absl/types/bad_optional_access.h; sourceTree = ""; }; + 80392821CA2BB9E2206B98032B7AE913 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; + 8049259CA125FB0D326AF6064E0E5860 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; + 804C6E0C9AA4CED2E0898F110D415951 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 8051AFBCB4E542311E9576389518EB2E /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; + 8056129BB42BB8A301BBFC9868F500FF /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; + 806B0DE16BB0A668563A5616C3260E25 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; + 80719D91D6683EAD4310FDB89B73798E /* tcp_socket_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_socket_utils.cc; path = src/core/lib/event_engine/tcp_socket_utils.cc; sourceTree = ""; }; + 807453EA403EC7A9754C88B4EC3E5B3D /* FBSDKDeviceButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDeviceButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.h; sourceTree = ""; }; + 80914B43EA1BFF563352E4D902A47950 /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; + 80994BEEE4F38250D26371B10FFA6F34 /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; + 80A3A010BBD22856BAE76F9340985477 /* Promise+Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Reduce.swift"; path = "Sources/Promises/Promise+Reduce.swift"; sourceTree = ""; }; + 80AD10CD9DB465587C8B8832C50426C0 /* config_dump_shared.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h"; sourceTree = ""; }; + 80B4F7552B1FFBD01D22FACE315BA5C3 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; + 80B73572591B33E9B835CB9E89EBAFDF /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/client_channel/subchannel_stream_client.h; sourceTree = ""; }; + 80C4D0F0F94200FFC0C91212D20CEBFE /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; + 80CC07BDE9593CFC2882A11C7A6C67C8 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/message.h; sourceTree = ""; }; + 80D37BDCCE949772E34866CEB8681081 /* RecaptchaInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RecaptchaInterop-dummy.m"; sourceTree = ""; }; + 80D3A2FCE400F13E82EA6DF678C73D27 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; + 80D5C314133BB6565D0D71A9E0217F05 /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; + 80DA7E2096D1B66841362C3372A9249B /* channel_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_idle_filter.cc; path = src/core/ext/filters/channel_idle/channel_idle_filter.cc; sourceTree = ""; }; + 80E524EA9F07A72BEED0BF2EAE332ADC /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; + 80E5440E0B36F0D6BE9A19465DE47C61 /* proxy_protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h"; sourceTree = ""; }; + 80EB3D4A2D4A62029F052C17AC2445FD /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/internal/message_reserved_range.h; sourceTree = ""; }; + 80FE5EA091EE4D56063D8D0083C4322D /* constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants.h; path = third_party/upb/upb/wire/internal/constants.h; sourceTree = ""; }; + 810B161C39D0FC179FC6B039D81BC2E6 /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; + 811D4F55C6814BF00181E5C067369C99 /* stateful_session.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h"; sourceTree = ""; }; + 811DEC1FC90AE20E13E07A19CAE95688 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; + 812BD2FE6AB5DD3B4B5E23C97408C7A2 /* protocol.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = protocol.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c"; sourceTree = ""; }; + 813E0CBE9825A00F690447679392778B /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; + 813F4EB2D2D99F75F159AC832AB3A930 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; 81418C93A311F0492F62A8F88C3BD66B /* FirebaseAppCheckInterop */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAppCheckInterop; path = FirebaseAppCheckInterop.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8141A8AFEA0FCC818C08C522F3265503 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 81468FEC8291566A0D03DE6BF5809C81 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 814FD1BD56BFD5F9AF8EC2D62D084556 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; - 8163C86ABA32E8F3D609F00F6CF077A1 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 816D0E76672D39B73BA683528F5C6573 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; - 8171350A452B20A759ADA4B1F6DA0414 /* ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; sourceTree = ""; }; - 8172E0292B05BC1897F7CB2360BB284A /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; - 817E79FA2A0122F11C686EA62F93716A /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; - 817F3C8002AAB7488BB3F4E01ACF36DB /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; - 8190AD18593D3FFC85FA3E0CECDEFED5 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 819C99AAFCA8EA438E85DC0517D8F1FB /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - 81BEEC032D651755FC18234633A5564A /* xds_lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_lb_policy_registry.cc; path = src/core/ext/xds/xds_lb_policy_registry.cc; sourceTree = ""; }; - 81D094A0D7334E880AA652CE915F752D /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; - 81D5EFAB7B9AA518982E390EC585AEB1 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 81D6AD186315CEBF69D63FBAA9C159C1 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; - 81D7B45C294884A22E759AB937721BEB /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = ""; }; - 81DE8AB06D8B2ACF0F1A8CCE5B85DF8A /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 81E0A2CE06D951259EABCA38895295CA /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - 81FC4644FBBC5CE0543087F33D0D9C15 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; - 8204BB8DA26EE7BD7BACE781D7A75CEB /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; - 8204BDA20C67EE68C15F83DC227A8235 /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; - 820BFD1204591CE64316E17C2FBE0C26 /* deprecation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h"; sourceTree = ""; }; - 8212589566B0658397A2F98F67F07695 /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; - 821E26753FFB4CC5BABD7C9DDA170905 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; - 821F9BEA628632B4077B9F3CB170D995 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; - 822E9B494745631909CEEBC2CB1C4107 /* token_bucket.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = token_bucket.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c"; sourceTree = ""; }; - 8247BE0A7A56D2DA5FA8FF3B65608AFC /* ssl_transport_security_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transport_security_utils.cc; path = src/core/tsi/ssl_transport_security_utils.cc; sourceTree = ""; }; - 8284AC2E7F310FBF3DC4D3F96CA53F14 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; - 829C862FCAC61C5B65D66543280F6C0C /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h"; sourceTree = ""; }; - 82A6BBEB072238D2059A3B2C946E7AB5 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - 82A90620CAF80A06E0991CCC3B8503D1 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; - 82AF798066412E7294A85FA30F4F0B4A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 82CCD1AA314BE9F473658235B8DB088F /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - 82CDC8093663D6BCE3E03FDAE407D992 /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; - 82D04060858C4489E664BCB8FC36FF44 /* basic_work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_work_queue.h; path = src/core/lib/event_engine/work_queue/basic_work_queue.h; sourceTree = ""; }; - 82F16679B0F2076A1B751922EDD997C2 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/internal/message_def.h; sourceTree = ""; }; - 82F9FCD0EEB72F6C2050E16B13208F72 /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; - 82FBD3ADDD80EEA6C94D03FF28962FA3 /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; - 83079BF11AF2BE4BB2B045784AC1B655 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; - 83341C6057E85D9FE9044235E0F66A79 /* http_protocol_options.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h"; sourceTree = ""; }; - 834864FA1DDDF96BA06BE6A2EAFFB0F9 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; - 834AC2853AD5F74CB31E9D49B519487C /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; - 834DCA5A1C83A912DA182C06F223E8BC /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 835EF8BCF96ECF02F37DA8154F83C142 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; - 837750B2E39F6D7C60AA8B42F25A2805 /* xray.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h"; sourceTree = ""; }; - 83AD3F950EEA35FBB403B74321E09C81 /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; - 83B857123CE3551ABE40FC141E8FBB8F /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; - 83B85BA075A32E77AC9B46823F9AA2DB /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - 83C636CF0435002ECDFEE6DECEFFB392 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 83D5F8EADAB4331E40230DDA8556F3FB /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 83E3BCB56DB1765F8397841829D59D48 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 83E62B6D7D9FEFB3814813C86F4061EF /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 83EC8B6D3F4B7AF5D5F2676F6C03324C /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; + 8156AB8CEE897031773F626FB60377DD /* protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h"; sourceTree = ""; }; + 8158655D46D24502A8F61C389A51D34F /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + 815D8EB77F86F16CD3DF926DECCB6595 /* build_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = build_enum.c; path = third_party/upb/upb/mini_descriptor/build_enum.c; sourceTree = ""; }; + 815E38C5FE4EA5CB649F59CF2F6BC86F /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; + 816C15635BFB8181CE99987F2795723C /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ia5.c; path = src/crypto/x509/v3_ia5.c; sourceTree = ""; }; + 8179F3DA416B249C6AAF518F3341A726 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/internal/array.h; sourceTree = ""; }; + 818367A77368FB69191AF20B38928406 /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; + 818D6903CA6D272786D430CC5E9DBB3B /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; + 819ABE9402560490D2C3B1F3B5FF4F99 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; + 819C11BCFEFD8FD837DCAA4F321914E2 /* xds_resolver_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver_trace.cc; path = src/core/resolver/xds/xds_resolver_trace.cc; sourceTree = ""; }; + 819C33DBC06454CB9DA18EC4BB5815BD /* FBSDKLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogger.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m; sourceTree = ""; }; + 81BB1E6D3AAA38DB3A7794C70D6357E0 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; + 81BB687353644AADBED4D8C1ECBEA51F /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; + 81BB81F34D9E4E6852890C3E0BDE282A /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; + 81CA9D6E50B69499BCE1A9945DFB8CD9 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/reflection/message.h; sourceTree = ""; }; + 81D39A9230F3D6CE492DF2568EBBEE2A /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; + 81E6ECE2A2DBD1E3F350C19BB840ED06 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb.h"; sourceTree = ""; }; + 81E86933B8DFC68E7FCD2653FBDB24E0 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; + 81FFFCF235BE368DEDEF11A182FEC7A1 /* xds_health_status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_health_status.cc; path = src/core/ext/xds/xds_health_status.cc; sourceTree = ""; }; + 82047259339C60585165B2200BB7FB57 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; + 820488F9D927AA3A729E468C8248E89A /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; + 821CF53D948438526D4FF6E1FE072297 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/enum_reserved_range.h; sourceTree = ""; }; + 822F7BE1F1B468490A0A8EA4C8C26068 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; + 82354B0BD349A8C7FB42DE8312777FB6 /* FirebaseCoreExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreExtension-dummy.m"; sourceTree = ""; }; + 8244D4E57A89D0DE454D3FC9DEFB3166 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/internal/method_def.h; sourceTree = ""; }; + 8255E0322A42BB9AA4EC784CD5D6EC87 /* config_source.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h"; sourceTree = ""; }; + 825AA11244F22048001B93D6786C2983 /* route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h"; sourceTree = ""; }; + 8268FC5A875BFBBEB4E47D57FE52281B /* FBSDKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKColor.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h; sourceTree = ""; }; + 8269CF19F292D0982250CBA81E3C6446 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; + 827AC848C0CADBEB847A47784E54DBDE /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/google/api/http.upb.h"; sourceTree = ""; }; + 827DFD5EA9639BE29190D8221D52813F /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = third_party/upb/upb/base/string_view.h; sourceTree = ""; }; + 82871B96EB3CE7BC0046EAEB271DEA4C /* reader.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = reader.c; path = third_party/upb/upb/wire/reader.c; sourceTree = ""; }; + 828A71BE037125559073E603850BD4F5 /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; + 829AE65C806C638B7F2FE4278B264CAF /* FBSDKButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m; sourceTree = ""; }; + 82A0CA80EB96DFB7FFD7B44CE86D9D0E /* endpoint.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c"; sourceTree = ""; }; + 82ACE4ADCDA03EDBA9D6A283C4759CCE /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; + 82BDC33B952AFE9EF82DCD5369B3B967 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; + 82BF24D5B1948C3586E081DC415726EF /* timestamp.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h"; sourceTree = ""; }; + 82D16CD495A3998B57BF573BC453F5D9 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 82EAB6287BD69D4B6161239F3AED83F2 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; + 82EC4E98AB3C0B344C45B4340160E1F3 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; + 82EF14D4707DC105536F24BA22973FCC /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; + 82F48EB006D69AD3478240191F53BEF6 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; + 8303827217EDE7BC9F03C61F0F45FBE1 /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; + 8311A83B4A42F294416125953CCA6B7E /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; + 8318306AC6A624965CA357600B999202 /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; + 832613D28963A33E04A99F8CC0644E62 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; + 833147B97811A9976CC103EF8F21AC49 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h"; sourceTree = ""; }; + 833F0DD58C96BB422AE63325FF6389B9 /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; + 83405120103B79BBF404D754E1264A06 /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; + 83469AB61424189019D3733898739017 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; + 834B966584AA9E6EF4BA4F5A9C55328F /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; + 835BD578F754D64C99B051D72DAC4811 /* FirebaseAppCheckInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAppCheckInterop-Info.plist"; sourceTree = ""; }; + 8362B0C18F37CC70A83D290439ED6CAC /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/event_engine/posix_engine/internal_errqueue.cc; sourceTree = ""; }; + 8365832229D398A3AFA45C87027F628D /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; + 8373D09388FA6B5A831010BE6D7922CD /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; + 837777DE51FF4D89DCD509E6E879B24B /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; + 838A508144F5F5F5510DB17F78294CB3 /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; + 838E3B074ADF8D45DE7832668FAB99DB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; + 838F39061E11114C9BF20600CE4B135D /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pick_first.cc; path = src/core/load_balancing/pick_first/pick_first.cc; sourceTree = ""; }; + 83956059F2EE16718696CE35B7EFF8A9 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; + 839906DE03A50726BA69A9781A430A42 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; + 839B9BA6F51852D7957FA717C9D4345E /* FIRCLSExistingReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExistingReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.m; sourceTree = ""; }; + 83A7AA8CD27E0144A544BB502757B45D /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; + 83B517CC212E5024F664AC7CBA41E285 /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; + 83B7ABF5DC9F22F339327156C9A74845 /* ratelimit_unit.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_unit.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c"; sourceTree = ""; }; + 83C8444A3856974819809D0722C49C0F /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + 83DAFFD02C700FEAA1B3C89E9973B1C0 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + 83E36DBAB950694432890B645F2F5423 /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + 83F3F19422D2672A4101A077675510D0 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; + 83F537E912183026F3C2D08B8CC9204F /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/def_pool.h; sourceTree = ""; }; 83F5CCB22EE126A829F2A8820798DC8D /* FirebaseSessions */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseSessions; path = FirebaseSessions.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 84004C228538D3D91BBF074EAB55485B /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; - 8401E857A60AF4A335B22A157EC48CA4 /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; - 840858F950B899BE52E6F044B8D44683 /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; - 84170237FAF94476A3AA0ECD74429473 /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; - 841DECC28AD0E66EB1C6F8B70A350357 /* xds_resolver_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_trace.h; path = src/core/resolver/xds/xds_resolver_trace.h; sourceTree = ""; }; - 8423DDAF01D41BAE43DEEEC84F049AC0 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; - 843095ED1C736575EF04A39C1A095DEB /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; - 843C6D8A6F7F13AF30F7364B73158E5F /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 843EF13431F0B75109D89CED49A02D43 /* call_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_filters.h; path = src/core/lib/transport/call_filters.h; sourceTree = ""; }; - 844804A0F5B6E13C13459576BC6E9D66 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; - 844EDF3CD9953DF1D9CF865C687B4650 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; - 8477D579FEBAD0A04249F83680B01045 /* status_code_input.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status_code_input.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c"; sourceTree = ""; }; - 847F43032A927BF1E913D2F00AFCDAEC /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; - 849A73096E117C4C99EBABDC11977FF9 /* bootstrap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h"; sourceTree = ""; }; - 849DE82718B41B9DC4B9515FEEE3FABE /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 84A456DBCA5952D8ACD59BD0C5949C03 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 84A4F108105E8AC9F2FFA40B89A9F523 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; - 84A7E7A1D848F672F16D435FAE56C581 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; - 84ADCF233638B2652459B6196C5CA6CD /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; - 84B04BAAD02702E44D78A03679F4ED5A /* DocumentSnapshot+ReadDecodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentSnapshot+ReadDecodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentSnapshot+ReadDecodable.swift"; sourceTree = ""; }; - 84B24070C8BBA427FF9EE16C3C7A2579 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - 84C760B88E15DB71323A3D54A4CE8359 /* router.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h"; sourceTree = ""; }; - 84C8184A0C5821D982EBF4C70632BB29 /* strdup2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strdup2.h; path = third_party/upb/upb/reflection/internal/strdup2.h; sourceTree = ""; }; - 84D2B39DB713BB9C293A72DA6BECA38C /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - 84D7E84B4A1C99EF739E6B3AEF914E06 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 84E17B108444DEAD973992DCF69AA1AC /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; - 84F306197C835F480D5349792CE0C426 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; - 84F63E7D5A3F3FAB4CA7C9A3C5BAEEE8 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/load_balancing/subchannel_interface.h; sourceTree = ""; }; - 84F6F639AB7D145395B3D295ECCF5C60 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/internal/decode.h; sourceTree = ""; }; - 8503A1F8B8E2FFDD5F490B76FB383EE0 /* load_balancer.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_balancer.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c"; sourceTree = ""; }; - 852D129AFADF9518F5A2A7C6931A1734 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; - 854EF8402D9DF9F92E0D5FC1BC0FE28E /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; - 8565ABA6E0F2BF90E8068DA4F14EDCD0 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/internal/method_def.h; sourceTree = ""; }; + 83F5D4FF28BA8A4E5DED92935490964D /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; + 84128774A76C8C2C4C70FA17E1A8EE0B /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; + 84146106E0B336B03BC5EE0E7A0BF982 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h"; sourceTree = ""; }; + 841660A97AACA14D209F19C1709154F1 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; + 84250A0ADDA35277D8A241F6B461D3EA /* address.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h"; sourceTree = ""; }; + 843C3F9B5F6B4444979C3EF59F44F392 /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; + 8448C877B707E3BCF19F42CC5C373F71 /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; + 84517DFA9BF5E267A99B3899818B2B39 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table.cc; path = table/table.cc; sourceTree = ""; }; + 8457ED27B51AD6FFF7850DD693D102B5 /* thready_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thready_event_engine.cc; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc; sourceTree = ""; }; + 847601FD0FDCBCBDDB4361A8A2054B5E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; + 84B0772AA445197FDF516054E62BE76D /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; + 84B43C9307DDEE677ADE964B370D2D04 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; + 84B7900AB73CD17AED4709FB7A88C10C /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; + 84B9283DEEE779E430CAD26C22FE1B90 /* FBSDKAppLinkReturnToRefererController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkReturnToRefererController.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererController.m; sourceTree = ""; }; + 84BB4CEFF5D66F211D52C93C4DC818B2 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; + 84CEE0036B9190AB0E55292575EAFFE3 /* generated_code_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generated_code_support.h; path = third_party/upb/upb/generated_code_support.h; sourceTree = ""; }; + 84D2445499B216468460443363C9EBC5 /* FBSDKAppLinkReturnToRefererView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkReturnToRefererView_Internal.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLinkReturnToRefererView_Internal.h; sourceTree = ""; }; + 84DD9FA76A22EEF49D4400B725305259 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h"; sourceTree = ""; }; + 84DECB2103AA61C05E9B6CA6C1CEF824 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; + 84F05FB9DC241215951E68478A44B017 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; + 84F3CE6F0DA1C6619373300B20115BF9 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; + 84F558B71F31E74DE3A758CF6D45FE06 /* FBSDKBridgeAPIProtocolWebV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV2.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h; sourceTree = ""; }; + 8506793237481CECD3F65763028F9400 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; + 85208430284189CEBDCE21D516EF8D2A /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + 8525E1F755B88C4A40A44A26E9ADC6FB /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; + 8529C387FC8E6CE9989E0CB752D65360 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + 853E126BD8066D9BEA4849916DF864FE /* ares_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ares_resolver.h; path = src/core/lib/event_engine/ares_resolver.h; sourceTree = ""; }; + 854216F87DBF70FAB2A5154CE6220BCD /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 8549EFDEF0331B5302C430360D190D83 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; + 854EC16F449FC756E7A801B07EC4A1FE /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; + 855325D260F7366FE50929FB3094E210 /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; + 8556F356908C833DB657173C36500C68 /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleDataTransport; path = GoogleDataTransport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 85722692AE9CCA8EB8BF18819F31A39C /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; - 8576BFCD0ADBB15FC2FEB6FAF1DB6CFC /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 857E5446EDA11C05E4B85AA17EF29A7F /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 85863E9063D5A2ED9935B938EEBE1298 /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; + 8571A36349348E81D6A9021F3F8B14CB /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; + 85797C0AFC0A2ABABBCC164F70F4266A /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; + 8580F5B403061ECEA18849EFE74AE859 /* bloom_filter.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom_filter.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/bloom_filter.nanopb.cc; sourceTree = ""; }; + 8587314E20957263F25FAD86B196C7C7 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRExceptionModel.h; sourceTree = ""; }; + 8587461C8201D1ADB36F700DB65882AE /* FIRCLSManagerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSManagerData.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.h; sourceTree = ""; }; + 858A8B2D11D0623DC5881EB4E5BBB2DE /* SettingsCacheClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsCacheClient.swift; path = FirebaseSessions/Sources/Settings/SettingsCacheClient.swift; sourceTree = ""; }; + 858D2C6EE1517E196D3666DD315AF311 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; + 858EEB414D1F80D14352D03237C0A677 /* FBSDKGraphRequestPiggybackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestPiggybackManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h; sourceTree = ""; }; + 85919D2704D354FDDC23E03F4059007C /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; 859AE0302B28BD8AE67A780BFCAEE082 /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCrashlytics-FirebaseCrashlytics_Privacy"; path = FirebaseCrashlytics_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 859AE861BEFC599FFD3FCCCF9EC14878 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; - 859CD5AFE74375E715062C0922FCC293 /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; - 859D7461662CCE7441B0DCBE6A36D78C /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/resolver/server_address.h; sourceTree = ""; }; - 85B0DE5999CCE6D6F4C53F997BA3E38D /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; - 85BC386546AF7DD29EA582A3FC13832F /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; - 85BEC225E86C639B7E4DB7C88D5023C4 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 85C1065F1E836E6B90EDD1B515F0A0DA /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 85CCE29DAB5B83174F619BBA3204D505 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/gprpp/load_file.h; sourceTree = ""; }; - 85D172B924BF6172462B2D5C2DD98029 /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; - 85ED1CCAD3A5E9991950EF508816805C /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 8603C33CCC3D37473187F000C2676D06 /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; - 860476035CD3F219B33C187D47CD7913 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 860ABF445788680A7909FA3A9A4AB956 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; - 860D7A21C9175EA91FB03E1747B093D3 /* desc_state.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = desc_state.c; path = third_party/upb/upb/reflection/desc_state.c; sourceTree = ""; }; - 8615671DA648778F043E54934D2ADBE4 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; - 861B620F28601DA1084B058484324305 /* aggregate_field.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_field.cc; path = Firestore/core/src/model/aggregate_field.cc; sourceTree = ""; }; - 862D93E2D730795ADD020CA403E6F609 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 863486688E8195BC916D92EEC7B05DE6 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/codegen/call_op_set_interface.h; sourceTree = ""; }; + 85AA8EE550921D3412ACAC844261F9B4 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; + 85AF9D481CB2BEF041084381DDC3964D /* FIRAggregateField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateField.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateField.h; sourceTree = ""; }; + 85AFE3FDDE9BD4E30524104687B18F04 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; + 85F024CA7C06E17AC0ACFA74FA903B6F /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; + 85F12D6F87F667BA78DAE1121B13D136 /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; + 8612E8103987A169A4B9B36802CCFCEC /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/accessors.h; sourceTree = ""; }; + 8616C97C72269DD27984C18437F6BA3D /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; + 8620769AF43AA0431EF5825F8C342B9C /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; + 862F4D1BA18CBA9D00A7CEA34F6944BE /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; 86375444C196BA272DDBB8165BF64A15 /* FirebaseCrashlytics */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCrashlytics; path = FirebaseCrashlytics.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8643133904C4A64DDCAF880CE53C9719 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - 8652AB01C13FA784A5D586725E165F16 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; - 86547757E4666A01D350FB70EBE9A064 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h"; sourceTree = ""; }; - 86562D1A2B1EC4D647060831DB630F29 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 86664BBF1105BF456CD8F60D9C5D1DED /* tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_verifier.h; path = include/grpcpp/security/tls_certificate_verifier.h; sourceTree = ""; }; - 866CCE696961152E67069FE2DD292DA5 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; - 8672752CFB1EA47BF1ECB4113BA878D2 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; - 8681CBA9E444AA66B2CD00CA2F789740 /* strdup2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strdup2.h; path = third_party/upb/upb/reflection/internal/strdup2.h; sourceTree = ""; }; - 868D49731EBDC54B4B9CDE79B090C675 /* LLCycleScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LLCycleScrollView-dummy.m"; sourceTree = ""; }; - 869D5F3DD075965EBC017C2964B14002 /* load_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_config.h; path = src/core/lib/config/load_config.h; sourceTree = ""; }; - 869F6318321A1F569784D602870121C7 /* domain.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = domain.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c"; sourceTree = ""; }; - 86ADA4DBDBC1905DBFFB39528BD30190 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; - 86B54DE1981D5C1740D09C8E578B29FF /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; - 86B9A5A8CEE6F437E625848852974C8E /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; - 86C0EDCADBFEBDCC34F9434948A32FD4 /* accessors.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accessors.c; path = third_party/upb/upb/message/accessors.c; sourceTree = ""; }; - 86C24F51D7F0D273DA4D17F35E82194A /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; - 86C85D32DF2823DAF85035185374885D /* call_creds_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_creds_util.cc; path = src/core/lib/security/credentials/call_creds_util.cc; sourceTree = ""; }; - 86D43A2A14CEFF459AC5345025B08A0F /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; - 86E60D1804B5820D7CC87945E3D38D60 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - 86F6D1ADEA3FB1DEF90FE27AF3CF4BF6 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/client_channel/dynamic_filters.h; sourceTree = ""; }; - 86F6ED6CC53DF9ED048C3195D85BEBA5 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; - 86F7BC8A1970864443E71F04B45F3A0F /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/mini_table/extension_registry.h; sourceTree = ""; }; - 87011C25E1759C3DDD2F624C0FDDB622 /* FIRCLSContextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContextManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSContextManager.m; sourceTree = ""; }; - 87262ECF8F2F02E371745C61DD88B00C /* posix_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_endpoint.h; path = src/core/lib/event_engine/posix_engine/posix_endpoint.h; sourceTree = ""; }; - 872EACA1595161C2B7F7A1E4C212D68E /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; - 87380BFDBEA90E469C770387535456C4 /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; - 874AD7243B524399290D3C2E43FE8B9B /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 876DC05DD20E06CF575640EF4AFE2C3A /* binder_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_constants.h; path = src/core/ext/transport/binder/wire_format/binder_constants.h; sourceTree = ""; }; - 877D9660F2F8DC3E0A3D0D5DD0029670 /* crc_x86_arm_combined.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_x86_arm_combined.cc; path = absl/crc/internal/crc_x86_arm_combined.cc; sourceTree = ""; }; - 8785D46349637527BCC4D9609403380B /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 87971FBCAB5DBFA78A360026CF32661C /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; - 8799C57587C8AF9EAEBA09FD764819D8 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - 87C0BB620E7DC77355E807D5C4B0048B /* compliance.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compliance.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.h; sourceTree = ""; }; - 87C21BB6766A21DB1DF2C3CC0233101C /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; - 87C4529878EBD2DDAA61AE0F39AD2FC9 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageRequestOperation.h; path = TZImagePickerController/TZImagePickerController/TZImageRequestOperation.h; sourceTree = ""; }; - 87CA6D148D620F53BF6955CAB694A9C1 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; - 87CEBEF68E3E5A09668AC13F02B7F3CC /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 87DBC2AEA6118085E60E996255FF8A81 /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; - 87EFE9C512AE6675F4209B90275BE809 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 87F510A6D696CD28CB73FBB9EC520AD3 /* grpc_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h"; sourceTree = ""; }; - 87FC5427C5AF02CA8214F18E2E57EB09 /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; - 87FF84D1414980F1FBA71D99C3F43C94 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; - 88012E6BB7B3A8B2798DFF90E8D08435 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; - 880196E68F414A4C8988388778524B1F /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/service_config/service_config_parser.h; sourceTree = ""; }; - 880264BF825768662058B7981F945A08 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; - 8808350D4AB4E9979836454BE8BED12A /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; - 8817FD3C700346F70A5C7C6F23E4DA72 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 8831706ADAD1EDA590ED81BEED2CF171 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; - 883C3415B6B5F1412E57E70BC4CA983A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; - 883F768208538163EC1A5E93E57ECBB1 /* FIRCLSCallStackTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCallStackTree.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.h; sourceTree = ""; }; - 88475B30E3A1182BC3FC1EC476EA050A /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; - 88515C271B8E5809B9B18F66EABBE2BB /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; - 885ADADBBFB0606234F609F240AA11EB /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 885C0589F2AA6A9A391C90CDE25AB160 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; - 885CA5C2D91D1FF2F89A9EBBCB14F3AF /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; - 88615DFF5A5AE2E8B2B8CC34598667B2 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; - 886713718FCADF8C8CC23FF2BF7EFDD1 /* map_gencode_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_gencode_util.h; path = third_party/upb/upb/message/map_gencode_util.h; sourceTree = ""; }; - 886DC0DF1A3369931E7C1C9E3ED6CFBF /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 887474F99472FC9379A96708B39E5BD1 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 8877387E27DF1330B8A70D940BA24796 /* sleep.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sleep.cc; path = src/core/lib/promise/sleep.cc; sourceTree = ""; }; - 88789BDF03D8B76766903F5EAF954B41 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - 88792C4715CF51DFCD4F3BAE876724C9 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 8891D4B45764C501D226C751DA92898E /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; - 889843C733F18FF1A18FC2BA6BA2F790 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; - 88ACD2B1A963CF3372CDE2B108EC1B7B /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; - 88B0FC4262F21FE5B285CC64E5ED85CE /* wait_for_cq_end_op.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wait_for_cq_end_op.h; path = src/core/lib/surface/wait_for_cq_end_op.h; sourceTree = ""; }; - 88B47FE98B05DD896A5D4C02F0F2AF88 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; - 88B8ED6E0EFB2EA6FFDA5EA9126380BF /* status.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = status.hpp; path = third_party/upb/upb/base/status.hpp; sourceTree = ""; }; - 88C8F2A8BA9F8AB35C24657A73B2C89E /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/client_channel/subchannel_stream_client.h; sourceTree = ""; }; - 88CE413EDBB75A32943B9160D9FD2456 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - 88D766291ED4080DBAD9158A4068397C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; - 88E1A70F2F45CE05E01C0F4622E8B60B /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb.h"; sourceTree = ""; }; - 88F5271C080592BBB7B50ABE3EEAD584 /* PromiseError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromiseError.swift; path = Sources/Promises/PromiseError.swift; sourceTree = ""; }; - 88FCFC69DC3958925831FF01B6034BCF /* DeviceKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DeviceKit-umbrella.h"; sourceTree = ""; }; - 89112F0FB78CC36273D6F580D2F74B52 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 891187FA53572690C484A023D51FBB95 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; - 89125DDD119BE0FF7D43870C8458C4C2 /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; - 8916151EBCBF678F98EFB875BA0C0F70 /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_manager.cc; path = src/core/load_balancing/xds/xds_cluster_manager.cc; sourceTree = ""; }; - 891955C5376C2EF0B2A5B9025D6471EA /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; - 891EF656CDA92F98BF652AB7BEA755C2 /* empty.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c"; sourceTree = ""; }; - 89225BDF4B49FFFC1B32B26E5676CF13 /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; - 89384998CC669C7FFF93DAC3C853E811 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 893CF5877F1C4B9CC0A516CE0C68E16D /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; - 895FC2487D455C64633ED2D339429314 /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; - 8968F4C0557CCA747924B3DD1823D1D3 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; - 896B004BB65913CDE0E15DA7051D6E9B /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/server_callback_handlers.h; sourceTree = ""; }; - 896D09B879467A0E85946DE8BF04E0F6 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; - 89846A6FA00470A1521682B1DB026E80 /* cancel_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cancel_callback.h; path = src/core/lib/promise/cancel_callback.h; sourceTree = ""; }; - 8995D0D2266748DD2AA460E3608DA886 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; - 89969406AD9F217E109A0A6813F85E55 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/method_def.h; sourceTree = ""; }; - 8997549353FBAC7EC7656FAB68EF69D9 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; - 89E95E4E3172E1D47B39604FEDB90304 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 89F55148400B26F33C142BA446D0A17F /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; - 89F61A9ED09C6D75EC57F8D984E4CC5B /* csds.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h"; sourceTree = ""; }; - 89F8738E0C147F4E88C62DFEB4B586CB /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 89F8E60B4B4A85F762C38C25AEE31F05 /* context_params.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h"; sourceTree = ""; }; + 863F6090FD5561BF48A21C53D9239F76 /* map_sorter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_sorter.h; path = third_party/upb/upb/message/internal/map_sorter.h; sourceTree = ""; }; + 8643362C6D195D42937880E716237489 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; + 864558CB1657C4763EEE912072E55505 /* win32_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = win32_waiter.cc; path = absl/synchronization/internal/win32_waiter.cc; sourceTree = ""; }; + 867672C1CFA1EAADFBE646AD7DD599C9 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; + 867DC603C45784104AB436154E4093F0 /* annotations.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.h"; sourceTree = ""; }; + 8690F57734734F46755D0A3C8CFC277F /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; + 86934D3F361C37A4A42DA8C91CB9EE18 /* max_concurrent_streams_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = max_concurrent_streams_policy.cc; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc; sourceTree = ""; }; + 86B89D5B01B30CC1E5D53CA6C822AF61 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; + 86C35BE09025F32AE286B78D5B2B07F6 /* grpc_tls_crl_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_crl_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc; sourceTree = ""; }; + 86C3E9F69EFEA5AAAEFB292A61A553A9 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/event_engine/nameser.h; sourceTree = ""; }; + 86C45BEA5E899C5F15CA242A037D6C44 /* LLCycleScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LLCycleScrollView.modulemap; sourceTree = ""; }; + 86D3C7F0B14AC08313347EA946F5B9BF /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; + 86D961FE754A29E69261B28A260B717B /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/array.h; sourceTree = ""; }; + 870CD5188086A752173453315BB63B43 /* route.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c"; sourceTree = ""; }; + 870EA786718466F55F05BD043D9527D4 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/event_engine/posix_engine/timer_heap.cc; sourceTree = ""; }; + 871A48672EF771FE7429B1DBA0AC8470 /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/internal/enum_def.h; sourceTree = ""; }; + 871A7A53D54E55ED4BF4BFB1236A2F68 /* FBSDKURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLSession.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.m; sourceTree = ""; }; + 8721FE381BF5A276CA6E216D071826AC /* FirebaseSharedSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseSharedSwift.modulemap; sourceTree = ""; }; + 87311A2FB7E243DA6EEF8CCD88537014 /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool/thread_pool.h; sourceTree = ""; }; + 87433464BBD0F30267842FAA0D64CA11 /* config_source.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h"; sourceTree = ""; }; + 875DAC23D3D02534E4D5C74AF10C54F3 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; + 8760C2551E3EF6D3CFF5A9D8DC260A84 /* cord_rep_btree_navigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_navigator.h; path = absl/strings/internal/cord_rep_btree_navigator.h; sourceTree = ""; }; + 87622C24690C2E60DF96DD72E13A61EE /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + 8771FD427B5C58F341CAA1A59687F38D /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/linux/cpu.cc; sourceTree = ""; }; + 877634C205AF1621E49C1569A844C0BC /* ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; sourceTree = ""; }; + 877B6410C6BDBF35A7F6B154D96E73A3 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; + 878578434AEE41F0AB9F65B44CD634CE /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; + 87925EA2BB76D59A622DB9A5D88E1884 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; + 879ABE0BC33DF3C9B5C1808F34240B35 /* DocumentReference+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+WriteEncodable.swift"; sourceTree = ""; }; + 879BF7FB57EE9B72BD1E23ECF9182319 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; + 87A6F86BCFE45C618585E8E4875FC824 /* FirebaseSessions.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseSessions.modulemap; sourceTree = ""; }; + 87AE295455CA8420D92A0823A26B3541 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; + 87BBBF20484AE65D65E87A44BB380F5A /* client_channel_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_service_config.h; path = src/core/client_channel/client_channel_service_config.h; sourceTree = ""; }; + 87CD6D5BE2F3DF288DF4F844883F574C /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; + 87D7F632338A598BFDFEFF5BF6344E83 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; + 87E1A17D4BB1ED1CC16F3A6F32CFF564 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/text/encode.h; sourceTree = ""; }; + 87E3AE2C838FA1FCA4842993FC896800 /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; + 87F2C781A7B67205E7DC7A7CFDA862FD /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = child_policy_handler.cc; path = src/core/load_balancing/child_policy_handler.cc; sourceTree = ""; }; + 880192DEF3DAC7A13AD607A3E4BA9AC7 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + 882DE963604E1BC3243A722C3BEB32AA /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; + 88314B2FBA37493978F3A233B513A2EE /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; + 8837AEEDD09A4EF408C833BDE339CC00 /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; + 8837FDE90B300A36CC4248A780B349AD /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; + 883BE0D7EF525B1BCB72733D765B17B1 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; + 88481D67345334B11AC692394A2A3E56 /* descriptor_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor_constants.h; path = third_party/upb/upb/base/descriptor_constants.h; sourceTree = ""; }; + 884BE29E933DFC20652AA78F23A381C7 /* domain.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h"; sourceTree = ""; }; + 884D5865A64EEAF2C0F0A5D660CB096F /* thready_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thready_event_engine.h; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.h; sourceTree = ""; }; + 885092B6A732680B6CE607FDB515E0D7 /* PromisesSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesSwift-umbrella.h"; sourceTree = ""; }; + 88552DE09052E43B63150278CC2E4A6C /* stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_filter.h; path = src/core/ext/filters/stateful_session/stateful_session_filter.h; sourceTree = ""; }; + 885591F4F2E6C95F5CC4D86342465C7E /* Promise+Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Delay.swift"; path = "Sources/Promises/Promise+Delay.swift"; sourceTree = ""; }; + 885592FD39D2793476DBA3DD583254BB /* RCARecaptchaProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaProtocol.h; sourceTree = ""; }; + 885AC3A66959BCFD933D1DF4A41600B6 /* wait_for_cq_end_op.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wait_for_cq_end_op.h; path = src/core/lib/surface/wait_for_cq_end_op.h; sourceTree = ""; }; + 88745239516734F44EE7BC0BD09C4A28 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_crld.c; path = src/crypto/x509/v3_crld.c; sourceTree = ""; }; + 888B6D95F831F025AC2A345B041A58AD /* FBSDKAppLink_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLink_Internal.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAppLink_Internal.h; sourceTree = ""; }; + 889249B1C360C5E3319D39A1680FE9F0 /* binder_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_transport.h; path = src/core/ext/transport/binder/transport/binder_transport.h; sourceTree = ""; }; + 889ADA06A2820CA2210FED703CCEBFCF /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; + 889E22D3A0EA8D6268A349F2509E39CB /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; + 88AB505BC7562071B7B9CC81FE9B84F5 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; + 88AD72DC1D721BFBB3CA8365F7868B70 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + 88B4712AA4522882B52816EAA0A4871C /* GDTCOREvent+GDTMetricsSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTMetricsSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTMetricsSupport.m"; sourceTree = ""; }; + 88C4DA1780E983680DC1A6B9696DD93F /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; + 88D0AE19D586AC186370D742D5B52B7E /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + 88D7D0AD8670453072B070B50C5D6E03 /* FBSDKGraphRequestBody.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestBody.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m; sourceTree = ""; }; + 88E58FA0066397B4B2781D6074C16C5E /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; + 88ED68FD189C5A9AA090BDBECE6D8F39 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/service_def.h; sourceTree = ""; }; + 88F147F33B1D594F290392C52817F460 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; + 88FAC4B868EEB38E245BEA18F7000FBC /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/client_channel/dynamic_filters.h; sourceTree = ""; }; + 88FB4BC4F52333F5FB81E9677A8616E0 /* thread_count.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_count.h; path = src/core/lib/event_engine/thread_pool/thread_count.h; sourceTree = ""; }; + 88FE70C39ECE4EB4D070BEF4B7E8DBC4 /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; + 8910926546705CF442CE07C18DF6E753 /* commandlineflag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = commandlineflag.cc; path = absl/flags/commandlineflag.cc; sourceTree = ""; }; + 89126F02575A746613161F7C170589E0 /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; + 8914078ACD72935E4754B53D9FF9336D /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; + 8920111A74CFEB22C21BD0EE48F7F670 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb.h"; sourceTree = ""; }; + 89236BF9E101AD12E2901444D45C0DD8 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; + 89257D24DFF64F44C5173C6CEE4430FD /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; + 8926C4D9F02E4F4E7FCFC91D6370D500 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + 8929FF57D3D03B791A9EA1603986CBEE /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/load_balancing/address_filtering.h; sourceTree = ""; }; + 89300CAA8D4124C9BA735FC7F3287B00 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h"; sourceTree = ""; }; + 893EE7308B0CA610E2470F38A24279BF /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + 8940D9B56C89177B978DB66C8BB10EA8 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; + 894D04C68F9A2419032770780331F42D /* status_code_input.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status_code_input.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c"; sourceTree = ""; }; + 8964F5373AEFEFD596E405632AFADA12 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; + 896C7022B25E39CD3C35C0B31D59DF0E /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; + 896E5DB13A578ACFDDDE181C97742ED9 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; + 896E6272EA1479311D9AAFF07C6C6332 /* dynamic_ot.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dynamic_ot.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c"; sourceTree = ""; }; + 896E6DF9A3C1CD888BA880F21493B5DA /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; + 899690B78A3F35F6ECE622A682DA2BCE /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + 89979B6C7FFCB6E4885282C2F03502C6 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; + 89B2F11700A22D57FC4AA9FD8C066B76 /* xds_resolver_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_trace.h; path = src/core/resolver/xds/xds_resolver_trace.h; sourceTree = ""; }; + 89BCFAC952245F522158CE80CEBEA813 /* discovery.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c"; sourceTree = ""; }; + 89C70D7C05FB2FF73668F90B441DEE4C /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; + 89D61A08521EDACB201767459A2FC662 /* kernel_timeout.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = kernel_timeout.cc; path = absl/synchronization/internal/kernel_timeout.cc; sourceTree = ""; }; + 89DD6706776D592E3D61E458143A560C /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; + 89E2320B016119890559BA1FA970E793 /* FBSDKMetadataIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMetadataIndexer.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/AAM/FBSDKMetadataIndexer.h; sourceTree = ""; }; + 89E691A42EF1AAD0BD557089D39C7A21 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; + 89ECE2A1E61C968CF5515F63E4CEB655 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; + 89F1C50B03728877C28C103DD5741AF5 /* grpc_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c"; sourceTree = ""; }; + 89F3AE384DCCF488BA650BDC2E0621D4 /* TZLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZLocationManager.h; path = TZImagePickerController/Location/TZLocationManager.h; sourceTree = ""; }; + 89F4576A48160D5D6ED43C610F6D6139 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 89F86473868C797CABE592885918FEAB /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = ""; }; + 89FEE001462C618BB6C6F060CB6CB3B5 /* FBSDKConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKConstants.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h; sourceTree = ""; }; 8A076D1EE7CC43CA8C979D700B34629B /* SafariServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SafariServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/SafariServices.framework; sourceTree = DEVELOPER_DIR; }; - 8A082963AFB387C13673FE90E6C69D06 /* type_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_list.h; path = src/core/lib/gprpp/type_list.h; sourceTree = ""; }; - 8A0BE642591A0C9E5FFABF605CEFC1C7 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 8A15C70CD39FB77AFDEE0E4387E62796 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/compression_types.h; sourceTree = ""; }; - 8A35364C377E8FDFC06BCD398D799554 /* create_thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_thread_identity.h; path = absl/synchronization/internal/create_thread_identity.h; sourceTree = ""; }; - 8A390A3454C2DE9588E3128E20BB61BA /* PromisesSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesSwift.release.xcconfig; sourceTree = ""; }; - 8A4077A31F58134456FCE916A1E18A3B /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - 8A4AEAD8AE549395C593F6265A47971C /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; - 8A51449AEF1774303FB6180394760BDB /* field_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = field_def.c; path = third_party/upb/upb/reflection/field_def.c; sourceTree = ""; }; - 8A5ABC2AE27C58056FEDF38A20D51F47 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 8A5FCC666238A720398D3FEAB5FD6EE0 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 8A7BA22AB341ABA640C4A34E2483F5E2 /* endpoint_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_list.h; path = src/core/load_balancing/endpoint_list.h; sourceTree = ""; }; - 8A87282BA00168A9B93920B6107A3538 /* backoff.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h"; sourceTree = ""; }; - 8A8763B7E32BE30E21E7655757377C75 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - 8A880624FA29148BD175E18911D13A75 /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; - 8A8D7A7E60F1733C41CD1DE080C6243B /* path_transformation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h"; sourceTree = ""; }; - 8A9033E9660078E72281854E57DA5AD6 /* RemoteSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteSettings.swift; path = FirebaseSessions/Sources/Settings/RemoteSettings.swift; sourceTree = ""; }; - 8A940398DEF00EA1AB67316B4B139AA8 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; - 8A97B6E7187E9BD4CAA3685587985A46 /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; - 8A9F84544900F0AE024B0A8BFEA0FB19 /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; - 8ACFE87A20B360F9DB0F26F8E37AC5FE /* FirebaseAppCheckInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAppCheckInterop-Info.plist"; sourceTree = ""; }; - 8AE995179A53A8E3C71C498E1C5EF20B /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; - 8AF8B4B37CBB5DB73ECE444258B43A01 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h"; sourceTree = ""; }; - 8B04F46FD7592A390BC0B0F834700089 /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; - 8B0DC906BC2AC0AA17F22F6128432AD4 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; - 8B231395AB18255A2E6529CF6C8FB00D /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; - 8B2C5AA8275259A395629C3BF5D04E9F /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 8B2D6349967415EF84F05A6AF4BE4DDC /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 8B3626EA67EB654F61851D5DE054DE20 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; - 8B3E64DEADF992F5411E4530702717B8 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; - 8B5F6557AE2E08359AD9849F86D0D5F3 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/android/log.cc; sourceTree = ""; }; - 8B5F7329C126EBA6D0CC19AF25E28BCD /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; - 8B660FE4B353C4FEF6E5E3E58276C609 /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; - 8B663B438D0C53ED4C507479F080BAFA /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/load_balancing/ring_hash/ring_hash.h; sourceTree = ""; }; - 8B760F55B43B30C3FD903A2D812C4D5F /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; - 8B86037E1103C4172FF1904F7A92087A /* time_zone_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_info.h; path = absl/time/internal/cctz/src/time_zone_info.h; sourceTree = ""; }; - 8B982D0D5D012471B9E74360D906360C /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; - 8BA0DEEE5FAC175AF8E727C2C5619BEF /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; - 8BB9281190DA17390FDD4317F0297108 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; + 8A17776465696BD8D86B5B3D3E4ADA84 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/resolver/server_address.h; sourceTree = ""; }; + 8A1DCBEC967DB4100EFBDEFF353D4408 /* FBSDKDynamicFrameworkLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDynamicFrameworkLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m; sourceTree = ""; }; + 8A2649EAD1BBD423859C4852C55F2F5B /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + 8A2A5EB3F6F5489BE98226B601B3CD96 /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; + 8A3361D9345523DD9A5EFFB0332DA1AF /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; + 8A4109A9542966028880CB8A807C2F4C /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; + 8A5196EE9A7F80B86D7DAAC724BE2F37 /* tap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tap.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c"; sourceTree = ""; }; + 8A5570CFFA8C62DDDF8F93E133B5ECFF /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; + 8A762790AA3792FFEABB7A43903175A3 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + 8A7794C0CCDD3DA422F76B006F4D45D0 /* health_check.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h"; sourceTree = ""; }; + 8A831612FC65024CEEB35F6FD245135C /* cord_rep_btree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree.h; path = absl/strings/internal/cord_rep_btree.h; sourceTree = ""; }; + 8A90FC3EE1D2A3514852C46490801444 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/load_balancing/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; + 8A93CC106488FC69AE7D3EDE4881E6AD /* link.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = link.h; path = third_party/upb/upb/mini_descriptor/link.h; sourceTree = ""; }; + 8A95ABEA1E2F1F96D7F8A331634325A3 /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; + 8A9635B699CE726848A123221BCAC226 /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; + 8A992C93185B695B2A84656A0E994970 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; + 8A99D04E8C9483CAD6E58110933D5AAD /* FIRLocalCacheSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLocalCacheSettings.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRLocalCacheSettings.h; sourceTree = ""; }; + 8AA44D09040E8C978CCC1BCBD58BBFB4 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlytics.h; sourceTree = ""; }; + 8AAC0BA5E90FB749B1776EEFC2342EA9 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; + 8AB0A315986FF68A76E9FD650749B296 /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; + 8AB537CC198FEA229140FB4BA1061E38 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; + 8AB9A1821C8F19DDD59BF6B66806A0F2 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; + 8AC3D97CD6C910C2697DA888D139DD21 /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_registry.cc; path = src/core/resolver/resolver_registry.cc; sourceTree = ""; }; + 8AD8A4AFDF26893BC8AD56BDC5D7FFCA /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; + 8ADA036F0A1591CE5FE69BCFD1DA706E /* FBSDKServerConfigurationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfigurationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h; sourceTree = ""; }; + 8ADD26FE6B281D8182D9CFAFDA280B84 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + 8AE58325C4B29B405BA281FCB706E064 /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + 8AE996A2703EDB59B1A55C774793D315 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + 8AEB775B56D6691753FA42C9B6C2DB33 /* common_closures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_closures.h; path = src/core/lib/event_engine/common_closures.h; sourceTree = ""; }; + 8AF152C256552FF4D1A0AD095172E1B7 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; + 8B141F442DF41E1140D8DE73F025571E /* Device.generated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Device.generated.swift; path = Source/Device.generated.swift; sourceTree = ""; }; + 8B15BE79BA16BFCBFB4960B2F4B91A60 /* http_uri.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h"; sourceTree = ""; }; + 8B19BAFAF0F3F0074C39C9DFE3DE2260 /* FBSDKCrashObserving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrashObserving.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashObserving.h; sourceTree = ""; }; + 8B1CAC77F4BECE8CAF50BD4CCE91250B /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; + 8B28AC93065832C1F2371786E0D885BD /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; + 8B547A061E368D686C491C3485761144 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + 8B8459D9A428CE4F5997614456FB4184 /* status_code_input.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h"; sourceTree = ""; }; + 8B9B35F6804888C013CD9722F3B3C25C /* crash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crash.cc; path = src/core/lib/gprpp/crash.cc; sourceTree = ""; }; + 8BA22606519F707DD57BDD13838EA2C0 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCore-FirebaseCore_Privacy"; path = FirebaseCore_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8BBC283693E7D65C7BF998AC8BC5411D /* posix_engine_listener_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener_utils.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h; sourceTree = ""; }; - 8BCC5DA45182727B05845450D619BE13 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pcons.c; path = src/crypto/x509/v3_pcons.c; sourceTree = ""; }; - 8BECB2B4513E012794A4232B8569AB79 /* posix_engine_listener_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener_utils.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h; sourceTree = ""; }; - 8BED3AE58AB6232BA76455757FD01B44 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - 8BEEA0277B34F94795549724440015F5 /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; - 8BF3A3BEE2CA3A174EB796CC2D08C14B /* inflate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = third_party/zlib/inflate.h; sourceTree = ""; }; - 8BFC4B2CAECA251381352554EF79A20D /* ref_counted_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_string.h; path = src/core/lib/gprpp/ref_counted_string.h; sourceTree = ""; }; - 8C07FF2AB1EEDF57A9A1AC2E6238D2B8 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - 8C0C76BA78C6A6AB220801F058A41225 /* load_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_config.cc; path = src/core/lib/config/load_config.cc; sourceTree = ""; }; - 8C13D48224FE8D01C7ECD8AB11AF982B /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_enum.c; path = src/crypto/x509/v3_enum.c; sourceTree = ""; }; - 8C1ED01B464A40BE09622E687A560EEA /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c"; sourceTree = ""; }; - 8C20A34A60862DB9E4160690FF3E446D /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 8C244B2822C6F8E354631B271CE20E83 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; - 8C3D0005F7CD21EC248C2E41F247B7F9 /* can_track_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = can_track_errors.h; path = src/core/lib/event_engine/extensions/can_track_errors.h; sourceTree = ""; }; - 8C4350D6C303BCD5E89DFBE0F5346878 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; - 8C4566A8EADFF00BDE9167A8E29112F7 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; - 8C4D69FAA3E1698D2B7AE0C59B070E00 /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - 8C5F0316E1207F13C99E59889B653CF1 /* number.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h"; sourceTree = ""; }; - 8C6115A5F064E4A38A8ABA256EA284A5 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - 8C6480C95F39734B254282D5EE05466F /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 8C7AA1414B12A59ABA436BEC733861CC /* RCAActionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCAActionProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCAActionProtocol.h; sourceTree = ""; }; - 8C84EAF901F8FFCE5692A83750DB7CAD /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; - 8C893DC31006DCC0CAE074BDD2DA73CF /* RecaptchaInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RecaptchaInterop.modulemap; sourceTree = ""; }; - 8C92B38AFE785138E7173AD2973C2B0B /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 8C989D5F6660493981CBBBFE11722A38 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; - 8C9C8BEA52AE05A70FEAA9C46C68D1F9 /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.h; sourceTree = ""; }; - 8C9D5F8701EA35AFB82F6748DDAB48CC /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 8CA8E057DAF25B87BBD524AC71447E45 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; - 8CB0FB21637F4692890C2D61FA3520D7 /* Promise+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Async.swift"; path = "Sources/Promises/Promise+Async.swift"; sourceTree = ""; }; - 8CB2A81B987A2431D7A3CA58309098C4 /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; - 8CB5FD756C0423DCEB94FA537B98CA5E /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; - 8CB7014B8898ED84436114889F9C8B13 /* native_posix_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_posix_dns_resolver.h; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h; sourceTree = ""; }; - 8CB7A1BCF64A6730C86FEB47080B3BB6 /* Promise+Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Do.swift"; path = "Sources/Promises/Promise+Do.swift"; sourceTree = ""; }; - 8CBA604D93760F312A6A90A71A90F216 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; - 8CBC48A9B7206EA3C39A921BB15F7411 /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric.cc; path = src/core/client_channel/backend_metric.cc; sourceTree = ""; }; - 8CC0637667095CD77B381B1741213648 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; - 8CC9163E271E6243DBCE2FD302F096DC /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; - 8CD8E002B5F1EC4242D04E99BC06BEB6 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akey.c; path = src/crypto/x509/v3_akey.c; sourceTree = ""; }; - 8CFC91CDBCECCACB99863483B4BBA5BF /* crc32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = third_party/zlib/crc32.h; sourceTree = ""; }; - 8D0B5115BEE490A159D58166B7036781 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; - 8D0EB057068F2DD0F1271BC67B0CACBB /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; - 8D0ECDAF0FDB111840B47BA25D115170 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - 8D14CFC1A9BAAEAF560BD093558BDBC9 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; - 8D1B752CE7226DC1F51C0E87D8F68D8A /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; - 8D1D48D92D6F04BFA99B17A9EAA6EDC8 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; - 8D1D4F8F69FD926B37A0D4691E3958D1 /* path_transformation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h"; sourceTree = ""; }; - 8D2434F127AA3C49B95542946D998897 /* status_code_input.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h"; sourceTree = ""; }; - 8D3EDAEDD823620DC7856DCD00F361BE /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; - 8D454505CB2B38A0F77BA116058DEE74 /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; - 8D711FF2F1BF981B416F4C6D9BEEEF24 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.h"; sourceTree = ""; }; - 8D721A0F2C94BD0C0F9695358D997C81 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; - 8D72DA12CF54F264CA4F85E6677E100C /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 8D85D10D1A2F5B360933D1F8ACCF2826 /* http_connection_manager.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c"; sourceTree = ""; }; - 8D865F5AED97237E29494FC5DC655886 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/interceptor_common.h; sourceTree = ""; }; - 8D8C69E2BF54206031457C69AC5DF92A /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; - 8D90B6DB0E24DCEB7816ADF3481405E3 /* health_check.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c"; sourceTree = ""; }; - 8D96798D7C2C50679295CBF59294DB23 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; - 8D969196E294DC1D00131EADFE479678 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 8D974FCD2BA452401184A26F2C1A3B47 /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; - 8D9F66F4A1D9FBD8C712191B8B169ACF /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; - 8DBA8862F0023C9700FA7FE8EEA59A9A /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 8DC1553E5042B7DA524D469F3261DC5C /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; - 8DC2C376952090A2EB3BF3B33C5F1F12 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 8DC5038D93F255479DF0D71025BD405B /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; + 8BC05EA13DCEB02BDDC7EBBEDB20C9C9 /* eps_copy_input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eps_copy_input_stream.h; path = third_party/upb/upb/wire/eps_copy_input_stream.h; sourceTree = ""; }; + 8BC0C33DF90EA62D68E2D250249D26E1 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; + 8BC917A42CDBB5FA3B839670B89E9610 /* FirebaseCoreExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreExtension-Info.plist"; sourceTree = ""; }; + 8BC9FAC55551E50EB38E1ADAC3207842 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; + 8BD0243C542DECD8525F1FEFDEACB381 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + 8BD1FA479CAD51E692EE26EB2437227C /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; + 8BD2891EE54F5C3D774D2D1783A72519 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 8BE00A807CBA9B37168CF284F5F522EB /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + 8BE3A589BE53FABE5B3244FE1B12E13D /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; + 8BEACE39169964DB10ADA78AACBB7693 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/enum_reserved_range.h; sourceTree = ""; }; + 8BF044AEB5B865F756E3A931F905DC4F /* FIRCLSCallStackTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCallStackTree.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.m; sourceTree = ""; }; + 8BF2F406BB8BCED24034A2908CD24448 /* random_early_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_early_detection.h; path = src/core/lib/backoff/random_early_detection.h; sourceTree = ""; }; + 8BF65047ECB1FBCC073297BFC0D38876 /* trees.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trees.c; path = third_party/zlib/trees.c; sourceTree = ""; }; + 8BFBE1658DE9B51F1033BDC05DC8FD38 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy_registry.cc; path = src/core/load_balancing/lb_policy_registry.cc; sourceTree = ""; }; + 8C089D48D6151E1B4CF56CEC48C776C3 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; + 8C10B6FA0C5FB8EA272D258340A74F23 /* crc32_x86_arm_combined_simd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32_x86_arm_combined_simd.h; path = absl/crc/internal/crc32_x86_arm_combined_simd.h; sourceTree = ""; }; + 8C22AD5B76706CE38F6C9DE4CA4CFC94 /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; + 8C22BE6BA8E55177569E74CFBFB6B573 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 8C28AE572B084E805FC97C3A52FDBDC7 /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; + 8C2B85D7F7C3628C045F018CD97D56EE /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; + 8C48043DF5E169134B066C1CE391E7D5 /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; + 8C481153F32104DD44033856E29973F8 /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; + 8C5FD094A098AEF3C55AD3812DA0DC97 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; + 8C71EBF16D551B8A59AB4AA5C44588A4 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/internal/sub.h; sourceTree = ""; }; + 8C7C04088CFB50D20A7F0D0ADC8EAE97 /* string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c"; sourceTree = ""; }; + 8C7D7DB2029934A01A86BBF0C6303782 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h"; sourceTree = ""; }; + 8C86DED5F6ED862F2115836CFF6D54AE /* marshalling.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = marshalling.cc; path = absl/flags/marshalling.cc; sourceTree = ""; }; + 8C8772FF80674969F8FF5111EFC17888 /* crash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crash.h; path = src/core/lib/gprpp/crash.h; sourceTree = ""; }; + 8C8F047EC3B8419CF9FAD9744AB1A2F6 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; + 8CA1A3839C30E03D425E87B9B350AA11 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; + 8CA736B700CB3117AF2E98FA3F77B3C4 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; + 8CBE01C629300257E13E88EE21567BEB /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; + 8CC2FB3696CC908F00BE9F98BB1DFD9D /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; + 8CE1C1460FDDEC9C3CEEF55F003DD83F /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; + 8D0331AEF47CB85BB83186F87C900F1B /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; + 8D077C06BD49A00A85E962573EFBE45A /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; + 8D116A2C7C9284BE01F6BBE45A35BDB7 /* commandlineflag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = commandlineflag.h; path = absl/flags/internal/commandlineflag.h; sourceTree = ""; }; + 8D20CE6416484D2F07679F313F4B3989 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; + 8D3EEA73197F5824ADAF02B79E594355 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; + 8D4300B8A14BF4D6A554879B1690EEDE /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; + 8D438913BEEB951F15C704CDB247D50E /* prioritized_race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prioritized_race.h; path = src/core/lib/promise/prioritized_race.h; sourceTree = ""; }; + 8D44AA174CA288C9830369D7FD508404 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; + 8D52358171B44E55E2FA1518AE8E7DF9 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; + 8D53971E59C9827B377E343B2D278FEA /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; + 8D5AD6D97E7A49197ADF100156C1EA7E /* scoped_route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h"; sourceTree = ""; }; + 8D683C33572DFAD0744BD295D2FFDB79 /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; + 8D6E3A3D5134F0869000BEBD4DD1C9B7 /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; + 8D7337A1C77482557A511020F24E1F4F /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; + 8D74E0C976F9720A94FA0C3BAE525460 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/dh/internal.h; sourceTree = ""; }; + 8D759464BBE7309A9FA7005D312B21DB /* tls_spiffe_validator_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_spiffe_validator_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c"; sourceTree = ""; }; + 8D7C0AD40E94A5F47C50D5D647C6913D /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; + 8D8CB370DC9287D45F2F55824BE2485C /* FBSDKTestUsersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTestUsersManager.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h; sourceTree = ""; }; + 8D904F416AD9D08541F8709C4B2547E4 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; + 8D9A479BE9CE60283DBF1DB9B73C853E /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + 8D9E452A5D9E9E77D10224DEE0A0B751 /* FirebaseRemoteConfigValueDecoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseRemoteConfigValueDecoding.swift; path = FirebaseSharedSwift/Sources/FirebaseRemoteConfigValueDecoding.swift; sourceTree = ""; }; + 8DB11C42D275A1FD009D9A2F8F9E7B98 /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; + 8DB373B281F6E8C9040D8C7899857D63 /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; + 8DB9C3001A5A784A011221442D820498 /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; + 8DC8C29A2A8571BF12B8D9CFC650545D /* service_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service_def.c; path = third_party/upb/upb/reflection/service_def.c; sourceTree = ""; }; + 8DCFCDB15D5444B1C580F9C54D24FCF4 /* write_size_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_size_policy.cc; path = src/core/ext/transport/chttp2/transport/write_size_policy.cc; sourceTree = ""; }; 8DD8C7415CE5E467B12AE81DB4CCAA2D /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreTelephony.framework; sourceTree = DEVELOPER_DIR; }; - 8DE6AB5CC3EE9A3BA6B521585F1461BA /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; - 8DFF792548DAD2D3D2839840218FDFA4 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; - 8E079C391F7AC4817A8FDCF9C3111252 /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; - 8E0EE181846032AFFA41DD2090B43AF1 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 8E14E53F24D379EA809D92E17BC72588 /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; + 8DE09F043A61FE2E06EE3ABCA13420C7 /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; + 8DE0B4B769C29BC6D93B279F2E764EFA /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; + 8DE0BBBC854B67A6F58272A39E951DA5 /* rls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h"; sourceTree = ""; }; + 8DE2FF93DD3DAB056B6875108A452475 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; + 8DF795461327D6346A4903A9DCEF9CD3 /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; + 8DFC5F1EF85B1566AE050D0BE26B7A1F /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; + 8E03586D9244ED093D1090620A83C1EE /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + 8E0398F98DE22BCE2D5ACA65FD3070B8 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + 8E07C4512E5717B5F56358BA2F857149 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_integrity_only_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc; sourceTree = ""; }; + 8E094DD98FE2F1933C794A59A0DA1137 /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; + 8E18934560E0C55A173B24FFA8085415 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; + 8E1A864210E3E09F3F42AF8CDB29EC1E /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; 8E1D5C0FCA0D872C3F21E87F25420681 /* TZImagePickerController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TZImagePickerController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8E2AE0F987A2B34BAA32D574B0EE9BD7 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; - 8E32E6975C0C22CD383288B27CB76212 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 8E3EC87106CB5C604A985518665201B9 /* call_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_trace.cc; path = src/core/lib/surface/call_trace.cc; sourceTree = ""; }; - 8E4BC4649EFAE2378AE7A555BF6C2244 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; - 8E65093A641FA101D246F602CBC224D0 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 8E659591CB37CA0D2937AB09BD5B833B /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 8E65BB2C25FBF9AA958B51883D228B3D /* tls_spiffe_validator_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_spiffe_validator_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c"; sourceTree = ""; }; - 8E70A2F25B5090AF6F56161675F3CF25 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 8E749E738AA3F2E6E80A6A239A940EF4 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 8E9E1D7D090ADC52E2EBE8960D68145B /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; - 8EA97E014B43448A19CDA616DE37454E /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; - 8EAFE04ABA3C695D819D3C57B14E5121 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - 8EB4FE7E923B39AFE63F5429C670251C /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; - 8EBC24457286FC80CE9F26C23CE6B9AE /* backend_metric_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_provider.h; path = src/core/ext/filters/backend_metrics/backend_metric_provider.h; sourceTree = ""; }; - 8EC417763C719CCC0A3149FC25D2C31D /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 8ECEFA014D22F16D7DCD9AFB7C4D3E91 /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; - 8ED90F18AC62C20B72217B5FC3EBE2BA /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h"; sourceTree = ""; }; - 8EEF92B1009B372C9DE8311FC483B6E4 /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; - 8EF111846FC5120FAEA129EC8E216DA1 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; - 8EFD1FE92210CEBB77ED2D4D91939A8A /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/message.h; sourceTree = ""; }; - 8F031CECD54AC047516269FC96B4F088 /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; - 8F07636F555E3D7789FF202FE79E6991 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; - 8F16F14CA75635B99E0B9B7FFB57E65B /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZGifPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.m; sourceTree = ""; }; - 8F19D1D5582B9858C05AD2AEA56EA179 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; - 8F2B7D72246D17F4BEADA9DBB937CB0A /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; - 8F32A9B5A55C57578FBD61E09153B261 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - 8F3E2F364DAF9E30120B6BB24F7FFEB9 /* grpc_security_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security_constants.h; path = include/grpc/grpc_security_constants.h; sourceTree = ""; }; - 8F3EC35A96069E0BF763AB71CFD0C6B8 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; - 8F4620B0A502479AEC0FE2534697000D /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; - 8F499EB3146E44B22F9D3BAFB19BA2D9 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; - 8F7577E6082576E39219D2A5CA43E871 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - 8F7AE7A9CAD2ABF357A9901B4C6FE9F0 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 8F7D855654CB830C2818788FC9B1DFE6 /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; - 8FD3E7753AFFF537D2D3D54C79DC679F /* resource_name.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h"; sourceTree = ""; }; - 8FE16CBD44669EEA7207DC9293A0DBC5 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; - 8FE4D521A4BCB7206381FCFEF9E33E39 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/load_balancing/subchannel_interface.h; sourceTree = ""; }; - 8FEBC08BA249C1A0DB48FD7CC359B92D /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; - 8FFCDEB1FA54BF1331B4A25531F02490 /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; - 9002B5813B9F71F325745C93D37550B2 /* resolver.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h"; sourceTree = ""; }; - 9005173A8ABDCCC111100C21A05D0657 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h"; sourceTree = ""; }; - 900A505CE99C86C177908F564B73AD49 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 9011234425A9297A0FEA0D27792EC7F3 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - 90128CDF82AB64062BD729410B1619FC /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; - 901CEDFFA47F17F9C6A10A916269531B /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - 901EBF253DD697459DC6EB4D6A633512 /* hash_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy_traits.h; path = absl/container/internal/hash_policy_traits.h; sourceTree = ""; }; - 9021CFD21E8189F42EF3E9DC3BFF8A68 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; - 902B39B9D7A0772E9C8AF5D45A2C23B1 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; - 9032F0DDF320799DBB4B2431DD5D9FAB /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; - 9034E9636D93DEAFF1220CBD7974FF63 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_c2p_resolver.cc; path = src/core/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; - 9038F3949E837EAE5F7260D0A5A1BC14 /* proxy_protocol.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c"; sourceTree = ""; }; - 904A6B63DB516966B1891D67BFB3D02B /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - 904E64CA1A7D347D11233516C28F31DE /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 905624B87CDF0A6866A9919680A130CA /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; - 90671642C880A2B634E2B42299D08AA9 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; - 9075251794A5555B48F463B552F86EB5 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; - 908202D55C963B79920D7557DA291BD9 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; - 908615A9B249DA25C1DA7AB7518B9CB3 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; - 909609CA0E5DE4BD2DBF858FEC02F52B /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; - 909D46CA513BC8002BB09AE2C7F1725D /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; - 909E71C61BE354A4CE370A8D41D47C85 /* altscontext.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h"; sourceTree = ""; }; - 90A853077C45C0106CFDFEDC2A4F5CD2 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; - 90A8A908D411B21EA15520CC594D3F87 /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; - 90B488376D0A2761F90A5AE80D003589 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; - 90B7C2AFB8A319C703C6CF8E7DC13ADB /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; - 90BAE62CE723BCE1B68F51DD632C8ADF /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 90BB263A6820C1D0DE614AA5A4F17ADC /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; - 90C8B7314F8B77EEB604C31EC5F3E082 /* config_source.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h"; sourceTree = ""; }; - 90D227FC4FD66372393D002D55EA59AB /* backend_metric_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_filter.h; path = src/core/ext/filters/backend_metrics/backend_metric_filter.h; sourceTree = ""; }; - 90D435A5DC3265B7838260F5C4A59227 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 90DB3951B3AC8E395EE7E5936DC5796F /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 90F03081A2FB31930020C49FDE51AB53 /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; - 90F528CE0EAA9E192F439FBA6905EFBD /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 90FD15A3C7BFDDC91E0AD8F5EED1708D /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; - 910ABA876E50FED1CC9291227650130A /* xds_audit_logger_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_audit_logger_registry.cc; path = src/core/ext/xds/xds_audit_logger_registry.cc; sourceTree = ""; }; - 91133CAAAAA344D89216D7F199D3EF87 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; - 911C5B2D238D8D6C68D5B25A0880FA5B /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; - 91207A3ED8394275AC6CA97ED02B3D54 /* health_check_client_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client_internal.h; path = src/core/load_balancing/health_check_client_internal.h; sourceTree = ""; }; - 9123B6081B15B70F0A0611BCD8603B27 /* config_dump_shared.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump_shared.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c"; sourceTree = ""; }; - 912DCD6579D25189F0E2DA27299D450D /* syntax.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h"; sourceTree = ""; }; - 913028E3CDA96DFF21D4CEC3AE925A3A /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - 91321B50457B9B51E1696D3B9E40F456 /* filter.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c"; sourceTree = ""; }; - 91476579C3533B254CEDBD5096A91273 /* dynamic_ot.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dynamic_ot.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c"; sourceTree = ""; }; - 914F908ACDA16EA3CDC787B93FAA1EB4 /* compression_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_filter.cc; path = src/core/ext/filters/http/message_compress/compression_filter.cc; sourceTree = ""; }; - 915D6F1B41876A716316AEE5B4287689 /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; - 9164DA1EEDE7B52B1D659DEA1823860C /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - 916613FAE2DFFF02AA7947B4D283C63E /* ares_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ares_resolver.h; path = src/core/lib/event_engine/ares_resolver.h; sourceTree = ""; }; - 91825CD2F44B0D191BB589FE81D99A3C /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; - 918E5B1147C6D0D05210E97EE94C05B3 /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; - 91AD93E569716F3C6B393D5CADA36CAA /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; - 91ADBF363E9176A0D1049EF5B9B49E2C /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; - 91B01E8740EEBDA5EB570C4B42AB7532 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/internal/file.h; sourceTree = ""; }; - 91C4FF92C2B55B19BF647E41C9355E04 /* inffixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = third_party/zlib/inffixed.h; sourceTree = ""; }; - 91C72A3C16A7FC4610EA6D516E466DEF /* thread_local.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_local.cc; path = src/core/lib/event_engine/thread_local.cc; sourceTree = ""; }; - 91D9691EA7903225D2ADE8D4E0586BD3 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; - 91E956A136315DE3D786D3336048AC1C /* trace.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h"; sourceTree = ""; }; - 91EBEF906384E65F4396B93106DAE030 /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; - 91F01DBBCF9F49E13BAA932AF0884FC7 /* DocumentReference+ReadDecodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+ReadDecodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+ReadDecodable.swift"; sourceTree = ""; }; - 91FFB927E66E7D2E50FF866257919373 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; + 8E2FAFFCA9B288D2CB76B01108135194 /* FBSDKApplicationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationDelegate.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h; sourceTree = ""; }; + 8E41B8A7E0D7D40A23C5C5B305F40FFC /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + 8E432A6DA73D45FCC408F28043A42853 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; + 8E46A971760A422CAF88A90F05141A25 /* stateful_session.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h"; sourceTree = ""; }; + 8E4A83437FEF996687C6716494E89661 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; + 8E559AFE5EC2C77B0A2AD35C850ADE41 /* commandlineflag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = commandlineflag.cc; path = absl/flags/internal/commandlineflag.cc; sourceTree = ""; }; + 8E576B97FF6AD14505F60A6614778BCA /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; + 8E6281C161DE01F74BB9088EB7F3D12E /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; + 8E69672DDA59C4B3ABC78D1FE664F304 /* FIRTOTPMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorInfo.h; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.h; sourceTree = ""; }; + 8E73733E95E9AE6DB36487D1D70A0A39 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 8E74931488EEA0B818F1FDC414BAD4D1 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; + 8E88BB8E982D064DB4DFA2F15F39AA07 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; + 8E935FAC722C5EEF4B856CAA7B569500 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + 8E9456E8A5747F89B9A8A69F93B2A16A /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb.h"; sourceTree = ""; }; + 8E9D0363D355B974E6A21B21101DB509 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; + 8EAB217677E29B3AF81B16E8B90B0627 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; + 8EAC2428D431B65CF2A7F9125542E5C4 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + 8EB8A3931BA78C8CFBB5363DA996CBEF /* thread_local.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_local.cc; path = src/core/lib/event_engine/thread_local.cc; sourceTree = ""; }; + 8EC0312A3667BB4B6BB3C5C9B23D615D /* retry_filter_legacy_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter_legacy_call_data.h; path = src/core/client_channel/retry_filter_legacy_call_data.h; sourceTree = ""; }; + 8ED72FA4442983F7DD9471C5EC527487 /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; + 8ED81F4F412564C7D17A61B8D7777416 /* cpu_aarch64_linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_linux.c; path = src/crypto/cpu_aarch64_linux.c; sourceTree = ""; }; + 8EEEFE6BEF018519546F728808FA74D1 /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = src/core/lib/security/authorization/audit_logging.h; sourceTree = ""; }; + 8EEFDA9696C627C0A0041DCA5DD4887E /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; + 8F05901FE62F5D2CE676EAB4468E829F /* TZVideoPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoPlayerController.m; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.m; sourceTree = ""; }; + 8F090E4E64880CA6F0D5ECA8E3C21542 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/codegen/client_unary_call.h; sourceTree = ""; }; + 8F107D625B3093C1B4A4E15BBE57B39F /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver.cc; path = src/core/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; + 8F21BE0BF55B2F0591291154AB8E8031 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; + 8F21FCCBE8B80A5E633A5646553BF3F3 /* FBSDKAccessToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessToken.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h; sourceTree = ""; }; + 8F27D4E4804CD2939D6AF2EFC93AC3C8 /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-gen/validate/validate.upb.h"; sourceTree = ""; }; + 8F4AA7AC3752739A46D62B197E81512E /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; + 8F53DAC51266A2F8ED76CD05BE5407E1 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; + 8F5C57C4AD7B0FFEBBC087FF286D2655 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/wire/encode.h; sourceTree = ""; }; + 8F6C252D8D7A9A4F38073D2386A095BD /* tcp_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_tracer.h; path = src/core/lib/channel/tcp_tracer.h; sourceTree = ""; }; + 8F71C7D10213B8076795FC365A143E8F /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; + 8F7612BF97ADC4FB1D74DDE3BBF63F33 /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; + 8F80E17F9809F78E5F47387BBBC540A6 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/method_def.h; sourceTree = ""; }; + 8F86A68B4E72FBDC1F4098273C1EECAE /* flat_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_map.h; path = absl/container/flat_hash_map.h; sourceTree = ""; }; + 8F958612B31F6E1F40D25944250D305B /* tsan_mutex_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsan_mutex_interface.h; path = absl/base/internal/tsan_mutex_interface.h; sourceTree = ""; }; + 8F9957C9557A66E2F57FF3B562923691 /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = idle_filter_state.cc; path = src/core/ext/filters/channel_idle/idle_filter_state.cc; sourceTree = ""; }; + 8FA0DA5EE10A98108058465B3572149A /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.h"; sourceTree = ""; }; + 8FB05910F1FCF73D7977BD1CF4004E46 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; + 8FB1EF99E7676B98375FAEB38414F3C4 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; + 8FBAF38843BAF9F01FB37BB09857EF39 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; + 8FBE391FCE495F455DED1313EA65C7B6 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + 8FBF9871A2B0D2457AC3EC3A66814507 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + 8FC90176EB9B063A2E2BEA199BC4014E /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; + 8FD32DCE47B9BB34B6F3DA5A0AE713D3 /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; + 8FD4B37C0B65C10536EDFD4E03434300 /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; + 8FD9458AFDE18034FBDF7096BAF96601 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; + 8FDBA06227C99175638481688E112E2C /* FBSDKAppEvents+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKAppEvents+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEvents+Internal.h"; sourceTree = ""; }; + 8FE31B31F772666F102BD33BE52C8174 /* extension_registry.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension_registry.c; path = third_party/upb/upb/mini_table/extension_registry.c; sourceTree = ""; }; + 8FE44E256CA75E326F046678158529C3 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; + 8FE67F2813C26514193D3B2EFF99223C /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; + 8FEFC8876F59923299286A533C4F33CD /* gzguts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gzguts.h; path = third_party/zlib/gzguts.h; sourceTree = ""; }; + 8FF01E997F8B64A183D650CA3A91F0EF /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; + 8FF3BA3114B9CA0F2EAC1F5491D8D498 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; + 8FF4411B861992AE5D6327D55FBAD3FE /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; + 8FF4FAB214E4AB4E595DE7910F61DA6D /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; + 8FF87CEF4CBD743014AF79E2C9D2B116 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h"; sourceTree = ""; }; + 90119EDB3FC9084862164A974DFA5FD6 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; + 901488893C0CB4F545DCC38BD85E836A /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; + 90206A559E7843E6C794A2BC5207FC2F /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; + 902292E382E4188159DE419EF05D7CE3 /* FBSDKBridgeAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPI.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.h; sourceTree = ""; }; + 9040B6033B9738A1782620810719F33A /* FBSDKProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfile.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m; sourceTree = ""; }; + 9043CE0FD8B12F5F5916BE44B86CA101 /* FBSDKUserDataStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUserDataStore.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKUserDataStore.h; sourceTree = ""; }; + 904A34AF863BEC127045B93DB6636806 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; + 904D8CF67DD1798DFA92C4E18F17C50A /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; + 905DCAFFE0B75C4C4EB9D4983A0D798D /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; + 906F49F6BF6D8C858E8C30FE94697A99 /* stateful_session_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stateful_session_filter.cc; path = src/core/ext/filters/stateful_session/stateful_session_filter.cc; sourceTree = ""; }; + 9077B079890825456067366E7FF08DBD /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; + 90997CA80FE3B7B1B33D093C3F33C432 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; + 90AD08A495B88A28E047B00F5CCA9851 /* SVProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-umbrella.h"; sourceTree = ""; }; + 90AFBFD90A8E1D1C849CCFB15C2D25BA /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; + 90BF7D348A86BBAC059CBB61B9CB86A0 /* FBSDKWebViewAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebViewAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.m; sourceTree = ""; }; + 90C354953523A1EB871010E37480EA52 /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; + 90CB2C8610D6807D82893381C51AB9E5 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; + 90D0D01B52391BFB840AF92D198D6B42 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + 90D2BAAC0D3927488518F287A5F1A4AB /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; + 90D792311F4BE4082F77734B82C4BF9D /* opentelemetry.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opentelemetry.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c"; sourceTree = ""; }; + 90E1D7086C56D3FCA05640D2FEB36466 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; + 90ED4FF1EABF9ED8D0E62B65146A0280 /* FirebaseAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAppCheckInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FirebaseAppCheckInterop.h; sourceTree = ""; }; + 9101071F8CF9885296E783451CF75EA8 /* native_windows_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_windows_dns_resolver.h; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.h; sourceTree = ""; }; + 910AEE51A5705D122D2DAB966DD1A9D3 /* random_early_detection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = random_early_detection.cc; path = src/core/lib/backoff/random_early_detection.cc; sourceTree = ""; }; + 910FCDDC101106D024FD6966BFEAD6C6 /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h"; sourceTree = ""; }; + 9113579C24CB5BFE9F1450E092739F0B /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; + 912264AB4513649AB76199811A693C69 /* health_check.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c"; sourceTree = ""; }; + 9128ECD6019ADA644AE06276FBAFE2EF /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; + 91455F402ACA60D378F175F1900D631A /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; + 916A17CB6C381183038FE7BB721C4844 /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; + 916A1D6ED8224675F79AB4B8F5327153 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; + 91733C193EC27ED9365DB1D1B48A62A6 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; + 91787E9B4360E9F5B839CBA50D55ED14 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 917E7A63F6A259537A31F5BFB8A06B2C /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; + 918844B43B55EA460B8AA62478F8E1AB /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; + 9188E8F0522081F88EB8DF5B980F04DF /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/file.h; sourceTree = ""; }; + 918D43DEC7EA365ECA9D2A23E69317CF /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; + 919357667202CDF3A6D1A60AEFBA730D /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; + 91968E1111C861C0E1580120381923B3 /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + 91A1A381E2A0D7D83EBE7E50615D1A68 /* write_size_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_size_policy.h; path = src/core/ext/transport/chttp2/transport/write_size_policy.h; sourceTree = ""; }; + 91A3C41F940C61B1D0B6B183594F79D2 /* thash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thash.c; path = src/crypto/spx/thash.c; sourceTree = ""; }; + 91AD644737A7EDD89CF5E1ABD6D24DD9 /* FIRTOTPMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.m; sourceTree = ""; }; + 91B7388BC4949D7ED61828CD1EA59D9E /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; + 91BB23722F26A469F36C0D2A852FDC9B /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; + 91C0F7D882739E2863604C84602F4790 /* inffast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = third_party/zlib/inffast.h; sourceTree = ""; }; + 91C59A721A32FC4942ACE7780DD452A2 /* params.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = params.h; path = src/crypto/spx/params.h; sourceTree = ""; }; + 91D1CD83F62705A6D8AE4FC386BB6617 /* unscaledcycleclock_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock_config.h; path = absl/base/internal/unscaledcycleclock_config.h; sourceTree = ""; }; + 91DD199F5414269413669F45AAB8ED9A /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; + 91E70A494068D4F3F717A28589805EB0 /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rls.cc; path = src/core/load_balancing/rls/rls.cc; sourceTree = ""; }; + 91EB6F331BA860997B6488517FE97AF8 /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; + 91EE6073CD4FF5515DADD82B0F9EBE62 /* FBSDKSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSwizzler.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.h; sourceTree = ""; }; + 91F00F858C3266D46B9A4A3A5D50EB34 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 91F4D41DDDB50811970FD5ACF0E8509F /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; + 91FB5D68244698A65B3FAAA6986C8C53 /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; + 91FCA79D074D0C5BC8F541F8F7998FC4 /* timestamp.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c"; sourceTree = ""; }; + 91FD5DA46370827A9E1EEB409C904C83 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; + 91FE69AB03D14CED2975A9EF76586B87 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + 91FFECEF952611CA21B8EA6211ED967C /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseFirestore; path = FirebaseFirestore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9207B49AAE4487FAE2FF0EFB4351EE07 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; - 9208008E4D5CFFF4FFF21A2D43BCAE3C /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akeya.c; path = src/crypto/x509/v3_akeya.c; sourceTree = ""; }; - 92085BCBD0400CF3BD8A0EC4133FDFCE /* TZImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImagePickerController.m; path = TZImagePickerController/TZImagePickerController/TZImagePickerController.m; sourceTree = ""; }; - 920CF98DDB9873937E0D03CA0B45991A /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 920E9D5DE36F2A7988B6C6D189CD94AF /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; - 9212EEDEDE220E1058CDDBD94B80C1D3 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 9224510BD068E297032D019C9CE51E93 /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; - 92272F41F223C887F814EE26F783E9C0 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; - 922CF725BB45C83E6A56BA00160E25D7 /* FirebaseAppCheckInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAppCheckInterop.modulemap; sourceTree = ""; }; - 922D48D26DA0DC44799D7595B5364078 /* LLCycleScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLCycleScrollView-umbrella.h"; sourceTree = ""; }; - 922F54B1C3EF0E5F78D3BB9C4F307A96 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; - 922FD7FB7A62F498334A7E365E91141F /* basic_work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_work_queue.h; path = src/core/lib/event_engine/work_queue/basic_work_queue.h; sourceTree = ""; }; - 9248F2A6BCCEE8028302281C51F3317C /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 92506842AF23EF6772D8E44E3CFDC613 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/map.h; sourceTree = ""; }; - 9254B411AFA07B5589884D70D84DB1F1 /* ping_abuse_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_abuse_policy.h; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.h; sourceTree = ""; }; - 92604036CF303CEBA4FAD318F6E0DD82 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; - 9286DD712DADE113829F799DA4DBE4B9 /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; - 928864F925FEE1C35C292577A1E0B1DC /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 9295D6C24A0BBD768B8A09D1C33D8431 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/load_balancing/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 929D3549A4A62F46EC7C0D9D27B2CB06 /* damerau_levenshtein_distance.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = damerau_levenshtein_distance.cc; path = absl/strings/internal/damerau_levenshtein_distance.cc; sourceTree = ""; }; - 92A537D4AC3D57E5B94F256658DA8850 /* resource_locator.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h"; sourceTree = ""; }; - 92A5EA8DC75069CDAE9D21E1C861D408 /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; - 92C09AA0C1C1EC18F2942986C46139D1 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 92C36DEB15669BEE146A6810A4D23C7C /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; - 92C5FF9F2B15DA046552770EA5A24700 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h"; sourceTree = ""; }; - 92CB3F9044CB91BD0E927408F5BE5664 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 92CE0FEE580CCC0AF1524AF79A4C092E /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 92D16D18A9BD44DC71BCA576A8B2E609 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; - 92DDCC6F3B9BF1D5EAC672C494C60FB1 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/method_def.h; sourceTree = ""; }; - 92E3A013D7F2C532463BFB1C5311035A /* FirebaseFirestoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestoreInternal-umbrella.h"; sourceTree = ""; }; - 92F0800D6EC34F7321887A8B957897DE /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - 92F650CDA50D47114A00A5C4B1BDBB10 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; - 92F99239E04B31FC6C58370CD99F94EE /* domain.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h"; sourceTree = ""; }; - 92FFB678471DA1578A749126D64B316E /* metadata_query.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_query.h; path = src/core/ext/gcp/metadata_query.h; sourceTree = ""; }; - 930041BC4D8CE62F91BFFD41FC7A5E1F /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; - 93087C7807480537F2B5D1ECBCA2F797 /* annotations.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.h"; sourceTree = ""; }; - 930A48BA362DB99CACD317A972F85185 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/keccak/internal.h; sourceTree = ""; }; - 9311926379A43C63741253ADA5BA7B26 /* xds_client_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client_grpc.cc; path = src/core/ext/xds/xds_client_grpc.cc; sourceTree = ""; }; - 932171988474973CF95276969F1F42BF /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; - 932A64C0B2A8CD8F4E17F6B89AFDF9AA /* legacy_compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_compression_filter.h; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.h; sourceTree = ""; }; - 933302DF69557FD1A837AD4E26DF4F32 /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; - 9334412C33923B5F9305141595F1C34F /* merkle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = merkle.c; path = src/crypto/spx/merkle.c; sourceTree = ""; }; - 933F431C4CFD081712C574A6290518F4 /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; - 93403E19016DCF3EBF6D4049D98282A7 /* http_protocol_options.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h"; sourceTree = ""; }; - 9351E3DCCCD654BAD6259BC5D87F72D0 /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; - 93705DDBCEE76D8360695E89EF0731A2 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; - 93761F0E89B96F7B6522944E2A721C12 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; - 937A68CCDBC3D0DB6B3B61E049C3D188 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 938AE4540950D5C68F3CE3B9A066E587 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; - 939D524C38100F8303FF198514B148BC /* FIRCLSNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNotificationManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNotificationManager.h; sourceTree = ""; }; - 93A2D06FD7B37093AFC02DF7B81FB679 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - 93A6660A92583C858FF6AB68B47081A5 /* ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; sourceTree = ""; }; - 93C87994E263577BA663E35A4393B445 /* decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decoder.h; path = third_party/upb/upb/mini_descriptor/internal/decoder.h; sourceTree = ""; }; - 93CF1B653CA4E7E1EA8E6F4C360DF286 /* json_object_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_object_loader.cc; path = src/core/lib/json/json_object_loader.cc; sourceTree = ""; }; - 93DC7E47D0869DBB83FF65B0057986FE /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; - 93E9C83B819B313DAA4618EAC4B965FF /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; - 93FAF27630A786A446361581B52C38F9 /* matcher.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c"; sourceTree = ""; }; - 93FB7D0A827F74FCB07A2AEE5CC3195A /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; - 9414CBCFBF80441730354A9235CE0CA2 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 94161B9F7C680CDF87C6CAE625E4292A /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine_shims/endpoint.h; sourceTree = ""; }; - 941C2D84670D0815466CAF7CD7A12221 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 941E73E0ED8B27F66A42AEC3F17851DF /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - 942563C1A95510BBC8BE0834461E9451 /* party.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/core/lib/promise/party.h; sourceTree = ""; }; - 9438B22C77549D02468199AFAEA054C2 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - 94492CC75E30E66E480DE9D90780A21F /* simple_slice_based_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simple_slice_based_metadata.h; path = src/core/lib/transport/simple_slice_based_metadata.h; sourceTree = ""; }; - 9457543ADD65F1933ADFDF9BC7664195 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 946313CA695FBAB3D89599CBA1758326 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; - 9470073353FD474824F7230C99E25D9C /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; - 9473CAE593EE65B44E4C740E68FD508E /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; - 947826FD7178E560D05329D09B70A7EE /* SDKDefaultSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SDKDefaultSettings.swift; path = FirebaseSessions/Sources/Settings/SDKDefaultSettings.swift; sourceTree = ""; }; - 948F8698C35EBB05F513A0DD984E99E5 /* resource_name.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h"; sourceTree = ""; }; - 949699F686551496E0DD26B33850AF33 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; - 94AF2DF11706D6F620DA9BB5B1D30F8F /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - 94B0028AA962197FF312E0A4F5B127D4 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; - 94C5A5BDB13AA6DE1790E6083C140F3C /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; - 94C847BFA7F4BB377327BB82410D7D7D /* address.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c"; sourceTree = ""; }; - 94D52B6728C2A28FADE6667EC7A3FE4F /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - 94E2B0602150230A62FAC6091F7C395A /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 94E53DC545353A2BBA8EA100A4E49CC2 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 94F5BFD988E49E321C7427532DAD7BE5 /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; - 951142A1009E9A2BFF35513BBAE9D7DB /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; - 9524A473FCF277BC6952F5DA1E777D39 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; - 952962395600A8B84129B1906FC15F90 /* thread_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool_interface.h; path = src/cpp/server/thread_pool_interface.h; sourceTree = ""; }; - 952E4914EE0A8AA64146D8AC51715CA9 /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; - 9530D53BCEE8C160EA57F0B7C79B5F8E /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - 95608304459F84B5A2BDCD700CD09E33 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; - 9572DF590AA7017E54B253CF02A726F4 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; - 95751A275DA324D5831038BD76349D71 /* config_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h"; sourceTree = ""; }; - 9585827E8F6FBEA46CEA44F3E100BDEA /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; - 958730C2973972898C513AA1420D0FB6 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 95A81DC46EB6EBF2A60E218E3CA56C0D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 95B390F198735D7EF93C29CC3FAD6A42 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; - 95C161A577886DAA3AF5E494BF278046 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; - 95C46FF9CC1195D12A51E78D9A4BC4DB /* secure_server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_server_credentials.h; path = src/cpp/server/secure_server_credentials.h; sourceTree = ""; }; - 95CA2356F945F30F886053EED3D53027 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - 95E47DE62C1F23A8F359FF7B56738015 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - 95EAF310EDC699B2DEC3E3CFD017FBE5 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 95FA23105FC71458DE5A4C240015F727 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/event_engine_shims/endpoint.cc; sourceTree = ""; }; - 95FAAE3F0AD6860F0787B1E5EC83F185 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 96088310E27B0EAB04288825FB6FDC15 /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; - 96191C2A5B93F2757BACF4AF71AEB772 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proxy_mapper_registry.cc; path = src/core/lib/handshaker/proxy_mapper_registry.cc; sourceTree = ""; }; - 961EE1349B1C94B683BD8DB06522704A /* config_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h"; sourceTree = ""; }; - 96212E0082AB7FF09B6B4C3A92AA1391 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 96214169AD6A018FF6B9A902B05C0AEC /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; - 962F0665B492FB7F24434379A93FCAFD /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_privacy_integrity_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc; sourceTree = ""; }; - 9637A6B32113D75B8F6572717D2411A3 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; - 9678B0F688BE12902D2BA0B425F5D4DB /* FirebaseFirestoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestoreInternal.release.xcconfig; sourceTree = ""; }; - 969FD5E363C430184C5200B8FE207041 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; - 96A098FB9F594A97C734F76154EE3DE9 /* annotations.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.c"; sourceTree = ""; }; - 96ABBEED7F94C87246BC1899F8029A8D /* map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = map.c; path = third_party/upb/upb/message/map.c; sourceTree = ""; }; - 96C074EFD26EE90EC78D8F386B478914 /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; - 96C25883D883BF9E1646A4DE81895132 /* uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_int_distribution.h; path = absl/random/uniform_int_distribution.h; sourceTree = ""; }; - 96D06C32649D374D4A5DD56AE535AA7A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; - 96D09E2D03E609ACCB2A4E16CA5569C2 /* histogram_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_view.h; path = src/core/lib/debug/histogram_view.h; sourceTree = ""; }; - 96D2E9115EB13753C6A40BAE06F4821D /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; - 96DEF8F57E53C2CC127BF12212DE8DAB /* RolloutAssignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RolloutAssignment.swift; path = FirebaseRemoteConfig/Interop/RolloutAssignment.swift; sourceTree = ""; }; - 96E85054D8F704993811EBA5291733AE /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; - 96F0BE6F3C268C46084B47BCD57D6DEA /* cpu_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_detect.cc; path = absl/crc/internal/cpu_detect.cc; sourceTree = ""; }; - 9714C2AF014358C35ECA5390C08EFA0A /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - 97266B6C234294648E5FDB1C52BBD4D7 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; - 97278EA56DC568539320DC45D4735326 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; - 9732A2625BA75625D71B2B2AC2B435F3 /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; - 973386DBA4083747BEDEE17ABE8818FC /* scoped_route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h"; sourceTree = ""; }; - 9733E4E05BFAA102B3F8C9E7FD11E906 /* trees.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trees.c; path = third_party/zlib/trees.c; sourceTree = ""; }; - 974562F00B49FB233A38EFB5DE835BC4 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - 97463FD359774810EF65318109B3DE19 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 97572B642DCD61FE1CD96E6D0F994BF3 /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; - 9758CC87813536A78F1FC54973F4D83C /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; - 9767567BEC465EC5518CD9ECFA0396D7 /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; - 977643B9A36BBE1E1647A1F2CBDEA9F2 /* secret.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h"; sourceTree = ""; }; - 977B1E2D16089A838B7948DFA2E8551E /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; - 97925A0646CB37A270D701216C05B920 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; + 9201444D240846DEF020B70599BCE6E7 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/client_channel/backend_metric.h; sourceTree = ""; }; + 920E6C57C2AD57B16EB2ED2698633A3E /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; + 920F1B3AC0BF95ADB4D3D59E8627D169 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; + 92172A953BD682E0CA4EF42CC5D9A603 /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; + 922C7343DA0C7DD3D66119CD4807189A /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; + 925A1E66E589523CC8F70D722AA39208 /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; + 925C4C9648E7D5A8F9BFC257FD818688 /* ping_callbacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_callbacks.h; path = src/core/ext/transport/chttp2/transport/ping_callbacks.h; sourceTree = ""; }; + 925D857E35740CF5DFBB62215C234BFD /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; + 928224E4E8BB231EB48027F8DF52397E /* FBSDKCodelessIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCodelessIndexer.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessIndexer.m; sourceTree = ""; }; + 9284538AE559FF562D95575CF09281D7 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/service_config/service_config.h; sourceTree = ""; }; + 928E6A84C60E057F9CF5A6B251838E2D /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 929724249058E887C4B6CF1278020B62 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; + 92B81963609282109B40DACF2C57168B /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; + 92BBB7CCEFA5796C2324B260A9DCB4B3 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = src/core/lib/gprpp/strerror.cc; sourceTree = ""; }; + 92BCD9204C6C90103BD0932B6053CA53 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; + 92BEE49C4E137C6769AE28FEDC19A1ED /* cpu_aarch64_apple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_apple.c; path = src/crypto/cpu_aarch64_apple.c; sourceTree = ""; }; + 92C06845916F424871845F5BC9F0F20E /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; + 92C6C891FF0ACD9B8B2235CE69F780B7 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; + 92D1336B90AA46E6EEA0AD1D6AA5C566 /* FBSDKUIUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUIUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h; sourceTree = ""; }; + 92D35EBAAFD689028C738A1791980CC6 /* circuit_breaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h"; sourceTree = ""; }; + 92EAB37BF4AB9224FEACF42E4607E0A3 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/load_balancing/xds/xds_channel_args.h; sourceTree = ""; }; + 92F8491CC060E772CFB396D7843B9C92 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; + 93056346FD69ECF0442471215972E0FF /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 931B085355A02EBC1BD4C7814773A4F7 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + 931F859713CFEC938AC3CBFB463DCCA0 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; + 93204152A35CAA5AF7F22BB973484FB1 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; + 93272251B488DFC4CF3B3EDACAC93C87 /* dns_resolver_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_plugin.h; path = src/core/resolver/dns/dns_resolver_plugin.h; sourceTree = ""; }; + 933ED63F62234464CF4A17EFF6E6D7BE /* checked.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h"; sourceTree = ""; }; + 93474DEBAE52FBC40F7692A4F239C1EB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + 934993FC6F4B97CA9B29F93DAE358076 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; + 937127D542666105150974A7355D472B /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; + 93914136B89D783A0A247E4F80118011 /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; + 93A42BD801C841DCE3C63BBC355E88E2 /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; + 93B256EEDCD59A2C1996B9D6F42AF018 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; + 93BDD4A3EF005C2DC0DF642B516D2AA7 /* FBSDKFeatureManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKFeatureManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.m; sourceTree = ""; }; + 93D315C5AF64192D42CE8106985F9488 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; + 93DB6B54136BFAA759C868B139BCFEA9 /* FBSDKFeatureManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKFeatureManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKFeatureManager.h; sourceTree = ""; }; + 93DFAF18F9DC395353EBDB6E17036466 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; + 93E172B18670CB2028566B07B7BE7605 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; + 93E83E8AA9AEE07D9F131462690386CB /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; + 93F22E60DB8AF8B35F1CF78F6CB97A6D /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; + 940BA1A343A9B3E1B7C4435DE8FCDB5C /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + 940EBE2FC58F17129D52BC5CD93E21E2 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; + 9414A536D1EEC1AB4E4D5C7B590B915D /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; + 941BDAE9434B5BEED506240222E3B72A /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; + 94264F84489991CBD0DDF7AF40225F8E /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; + 9426DDD895464BE8CAE1DA9C640CC9D0 /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; + 942738DC28AC14775466976B2705A83F /* FBSDKMaleSilhouetteIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMaleSilhouetteIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h; sourceTree = ""; }; + 942F71822671445FA2D416200748FA70 /* Transaction+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Transaction+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/Transaction+WriteEncodable.swift"; sourceTree = ""; }; + 943A82D6E962FD0F76A8C51C2574335E /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; + 94474D2024D38D7A959FAEECB16869C4 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; + 944CFCC2ABB9E8E5CD6497B4C44C4AF3 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; + 945F6670C8ACDF675B89A12DA99FE082 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + 9461B5E154D64A279B22580F82EEA208 /* metadata_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_batch.cc; path = src/core/lib/transport/metadata_batch.cc; sourceTree = ""; }; + 946353C815FB6D0E4E0DB6DF0D5874D6 /* FirebaseCoreExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreExtension-umbrella.h"; sourceTree = ""; }; + 9468058FAFA60264A43F358870794E9A /* lightstep.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h"; sourceTree = ""; }; + 9468C5C40043647C7C2F85C53553BC29 /* socket_option.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h"; sourceTree = ""; }; + 9479426056AC9859E66265E50A717C76 /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; + 947DC6276871344A949FC2127B6596BB /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/any_invocable.h; sourceTree = ""; }; + 9481487A24F0F2468457A33F924C460D /* ratelimit_strategy.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_strategy.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c"; sourceTree = ""; }; + 948B74BC81B37B8B403AECE5E6FE8CD3 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; + 949CB3228805EB27247F75FAA4EBB469 /* def_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_type.c; path = third_party/upb/upb/reflection/def_type.c; sourceTree = ""; }; + 94A1592F7D06A7593C29DCA2BA18B775 /* service_config_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_impl.cc; path = src/core/service_config/service_config_impl.cc; sourceTree = ""; }; + 94A44ECF8F3488CFBDEE21BD37288A61 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; + 94B0ECD7783F3BCAED1A9FB2DCEF3440 /* event_poller_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller_posix_default.h; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.h; sourceTree = ""; }; + 94CB9B09E49DFA6130A56F691D0CCBB1 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; + 94CCCC039FA185897E26D32CE67E081A /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; + 94D8C27A90F5A1D114AB7894C0237C24 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; + 94E2DA88BA72E62606C0785F2EED2CFD /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; + 94E776CA55E6431CB4C85EC82BD5FB6E /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + 94FCC256CC20F533797B9B2B100227EE /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; + 9505DB34B0C4EEC0F865510FDA8B32D8 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; + 950CBB7ABE44781957E4B0B22BAE8B09 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 952B64ECCBB03860B15675CFEA3A4CC4 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; + 952D4C0DDCA3A2DCB911AD81FE67A7E2 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; + 9536430BB48AE38B37A1158459A2D7EF /* ratelimit_unit.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h"; sourceTree = ""; }; + 953F62C62D89975BF7DC366DF68C52C3 /* crc_memcpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_memcpy.h; path = absl/crc/internal/crc_memcpy.h; sourceTree = ""; }; + 954491775C87DCB7DE10E47652C2CE32 /* FBSDKMeasurementEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMeasurementEventListener.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/Internal/FBSDKMeasurementEventListener.h; sourceTree = ""; }; + 954F8CE3B634FEB9CFF40FD7C962BF51 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; + 9550F872F31D19EB9660F97B5E3BA6D6 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; + 955219FAFC978518827F400018832DD8 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + 9556FC950F4F862EBB728CB49C88BD43 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; + 95570376996BB0AA664FCB7A919BC22A /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; + 9560DD6BA0D6BA8B71094C9B54AC9656 /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; + 95988AE0340FA8D6BA9DE455814C883E /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; + 959CE0C7C75487106FE57F47CC070CE3 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPickerController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m; sourceTree = ""; }; + 95ADCABB8C0870C131E240A8F975C294 /* FBSDKPaymentObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKPaymentObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.h; sourceTree = ""; }; + 95B5DC82E9A726B959C23675F953EC78 /* xds_cluster_specifier_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_specifier_plugin.cc; path = src/core/ext/xds/xds_cluster_specifier_plugin.cc; sourceTree = ""; }; + 95C0C7DEDA57D1A34B9C1E4F4CEDD6AE /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; + 95C7D3F613783EE8174EDA9135E85688 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; + 95E373769AB1209189B1852C5088BEA0 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; + 95E436AC20CD0EA3E556C099DA9E49E4 /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; + 95F4815ACCC3E583361C1BAED97D3246 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + 9616AE8C05562661742A4FDCCA0FE471 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; + 961E527BC8686C0FD202C2BE30E91ABD /* systemd_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = systemd_utils.h; path = src/core/lib/iomgr/systemd_utils.h; sourceTree = ""; }; + 96266F5B228DDC071537C6022BAF511D /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; + 963C15A7191BBF62D6B6519A5405D0E7 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; + 9644B863DD73F84044058164F29CDC01 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = ""; }; + 9657D819446393B86D812785BA5BBBA3 /* TimestampDecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimestampDecodingStrategy.swift; path = Firestore/Swift/Source/Codable/TimestampDecodingStrategy.swift; sourceTree = ""; }; + 966263B57E2E96B1E1752129043B5DA7 /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; + 9663D82191E02C38BC015198778A73F7 /* filter_state.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h"; sourceTree = ""; }; + 966CBCB8BF8F371C67795F5F3D165AC0 /* load_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_config.h; path = src/core/lib/config/load_config.h; sourceTree = ""; }; + 9671B144E250035540A72168165CDD88 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; + 96761BA8F83658511A6F1E61E4466376 /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; + 96767EAAE4E4BEDC2C2A56C323985337 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; + 967E7E1FB1B926DBBA81A886C93AA827 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; + 967F346CB6DEE2795C670C5ED6C2362E /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; + 9689A0E1F88AC6890457418F687046DE /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + 969ADACC72EB583B84A222BCB1F992DF /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; + 969C62914FF38BFF0856F98D616CB14D /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h; sourceTree = ""; }; + 96B787C1FB55F6596D49C8E881CF0275 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; + 96B90786498B4958CE62FF627226FE0F /* init_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h"; sourceTree = ""; }; + 96C3DF58083A24BF2641DF82FABEEFA7 /* reflection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reflection.cc; path = absl/flags/reflection.cc; sourceTree = ""; }; + 96CB5CEDBD3FE184075B979A6D3F253E /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; + 96CCEE882C597EC9972F28DA266535A5 /* constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants.h; path = third_party/upb/upb/wire/internal/constants.h; sourceTree = ""; }; + 96D63DE9855032D6C2ADFB43B232F698 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; + 96DFD641B2CDF6831733CC7093482CB3 /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb.h"; sourceTree = ""; }; + 96E60A09C9E427D388D2CED1EF5ECAAE /* compliance.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compliance.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.h; sourceTree = ""; }; + 96EAEA0AE6B07BB9F325ED879BCF18BC /* FBSDKErrorRecoveryConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h; sourceTree = ""; }; + 96EBB49FD2F8B263C527BF1CFFE4AF38 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + 96ED0217C973958FCF6BB8A425EB881E /* swap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = swap.h; path = third_party/upb/upb/wire/internal/swap.h; sourceTree = ""; }; + 96F56AD10F34B8BD05FDE68738BC7AF5 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; + 96FEB15F2CCD7FE46DBD34C092BB8CEB /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; + 97174F925538EF9C11ECC9DE94112BE5 /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; + 97223640056E39ADC758247D6A011193 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; + 972CFAA65278A82A8F172B2DBD183C84 /* ping_rate_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_rate_policy.h; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.h; sourceTree = ""; }; + 9744268AD1F990637E67D59A9F071ABE /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; + 974DE6903E46CE35E63457B26CD2BD99 /* float_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = float_conversion.h; path = absl/strings/internal/str_format/float_conversion.h; sourceTree = ""; }; + 975216F287D16E422FDCD00B07B59633 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; + 97532F7AE2CFA854B457222C2AA30E57 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/mini_table/internal/message.c; sourceTree = ""; }; + 975E1C34AACA8170390E065DADF3464E /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; + 9762EE194604C4F44A44A4BBB3D3AF85 /* md5.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = md5.cc; path = Firestore/core/src/util/md5.cc; sourceTree = ""; }; + 97667718C1A7D320C8FF591C8BA67CA7 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; + 9774DF2663F266C7D9A59850627C4E49 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + 97797B4F2624B11B32F40C0B2944D0DD /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; + 977E2A9B31BE581F89C0547CC302790C /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + 97873A4DC7D97ECC28532587E0F1666B /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = src/core/lib/transport/message.h; sourceTree = ""; }; + 978C03321BD3B61B8D25994EF5E27A21 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 97A0F926758707A3479472D629BE4339 /* FIRAggregateField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateField.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateField.h; sourceTree = ""; }; - 97A688EEC8FE8C67C7056AD3A5EC3CE5 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; - 97AB697BF0AC70DE77638A7F08586034 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; - 97AC81BAF5702D091A83160AC191DEB6 /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/service_config/service_config_impl.h; sourceTree = ""; }; - 97B47F3D6B5E39E13350C96BF91A3915 /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; - 97C8509120196AC77C6BF704A5E1DFC1 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - 97DE95FB9C43FCCAE5FEB1742515AEB1 /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; - 97F28F7542DCDCAEC658FD23E7F1AA15 /* health_check_service_server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_server_builder_option.h; path = include/grpcpp/ext/health_check_service_server_builder_option.h; sourceTree = ""; }; - 980E233CBBC5D8ACC847ABB330406CE5 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; - 98164156886D60F2B56C012B3FD5C31C /* base.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h"; sourceTree = ""; }; - 9826265A4F6F1DF7747365C2CF3F612A /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 98297097A69F101B796C3E865069F3E8 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 982A4EDDCF9C593D717A0227651E7714 /* route.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c"; sourceTree = ""; }; - 982A9AD460EB83AA4B01B8EB17BD7771 /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; - 982CFA624065BFA276DCC7DB2C726BC1 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; - 982D02FA6C13FFA78FBBAA16672EF323 /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; - 98341705993B8806734A9EE68A99B8D3 /* call_size_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_size_estimator.cc; path = src/core/lib/transport/call_size_estimator.cc; sourceTree = ""; }; - 983A79E7D46425FFBB965E0ACED3A530 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/arena.h; sourceTree = ""; }; - 983B30F7871C22F3810E680B26D3AABE /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; - 984B2E3EE7F4B9566CAFCD9668C19762 /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; - 984B52616B4E1D7F648AC3A0E08742D6 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; - 9856ED55C26F1F2DD150B258C22E4061 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - 9862A7FFEB93346F2E0C8C4E24D942F7 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; - 986A4789A7C9328FBF891969A1E85431 /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = options.cc; path = util/options.cc; sourceTree = ""; }; - 9879F180640DC899A35DFC38DEA9879A /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 988B3CDB895DAD25658224E0DCE54A79 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 98931D8E1E59C07C242C77FC6EBA71A5 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; - 9896E0A6899B178D38E0E7CE0420434E /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; - 98995FE3AD027FC198EDCEE97BB58ABB /* GDTCORMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetrics.m; sourceTree = ""; }; - 98AF77AA9F909A48008068327B3B6AC3 /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; - 98B1E05C12FD5E0321FEAE2C375DFBC2 /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; - 98B866ACFA39AFF50BD802930F4B03E5 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; - 98BBE761BACC50EB0565DC8DB23F2CF8 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - 98BD93F0371CD66817E9CA25FF43EBD2 /* xds_audit_logger_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_audit_logger_registry.h; path = src/core/ext/xds/xds_audit_logger_registry.h; sourceTree = ""; }; - 98C22C0EA2011D0EBCB4F76A04ECACD8 /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; - 98D2F53A4701D2B47ED0DA0B4C9B1D69 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; - 98DAFA07D7BE5A56B8B1AFAB2FF0387F /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - 98E382C8400749C05DE2A7EA46F46C87 /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ncons.c; path = src/crypto/x509/v3_ncons.c; sourceTree = ""; }; - 98ED9F2600208326F3AC3D793C5A8E0A /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; - 98F60E33B7ECB653505461F0808DA85C /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - 98F9289ACBD51C25F36630D7FD9A64A1 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; - 98FC7B2356B924F6BD0A16FD5BE7536D /* thash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thash.c; path = src/crypto/spx/thash.c; sourceTree = ""; }; - 9939A46740D7C0810FB7060C6CAA232A /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = src/core/lib/event_engine/shim.h; sourceTree = ""; }; - 994204E70EB77D424524E0058FCFA5AE /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 9946845585EDBD8B46CBB5BB410DB01F /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; - 9948FC594E1388DB7FE15065F80B6FE8 /* channel_creds_registry_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_creds_registry_init.cc; path = src/core/lib/security/credentials/channel_creds_registry_init.cc; sourceTree = ""; }; - 994C92B6C8EF13F1B02AE6B98BF69C31 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; - 9955D08F34694F0B64E76CDE0A5EB621 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; - 9957BBD89DD92135DFA9B09609D65C6C /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; - 995BF4F9223E8AFDECEBF12CD550AD29 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; - 995E26ABE41E4D8123EB84A959C94E7D /* trusty.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trusty.c; path = src/crypto/rand_extra/trusty.c; sourceTree = ""; }; - 995F507F4449A70D11B99C134B0E4345 /* supports_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = supports_fd.h; path = src/core/lib/event_engine/extensions/supports_fd.h; sourceTree = ""; }; - 9964AAA6CEC1E206C42DEB1A451A72C6 /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; - 9965819348BECCC8796F16244D88A007 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; - 996A200A69247F5203CB01EC2E265B6F /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 99B56440151F2A54C9D777EEF4030376 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h"; sourceTree = ""; }; - 99B99D4371C776066C19F10B5F240E68 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 99BC43F22ED5B7DF3218F64B6362667E /* cluster.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c"; sourceTree = ""; }; - 99C062D15CE80005D21D097E6B5895A4 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - 99D65E0BA204B0BF5923EA24AEB97711 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 99DB7752FA7D58CB4C37CED6B48D1568 /* batch_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = batch_builder.h; path = src/core/lib/transport/batch_builder.h; sourceTree = ""; }; - 99E1C94134C0DACE4FF56935715F0715 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; - 99E3D2249B111F7739A6FBE4AE57C5B8 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; - 99F1CDDB5A920BA239150FAE48D1C9A3 /* thread_count.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_count.h; path = src/core/lib/event_engine/thread_pool/thread_count.h; sourceTree = ""; }; - 99F5906CF6F6796E0EE52FAAF683DCE2 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - 9A08219D354E1BB155157391DAF5702E /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - 9A24711792213B5E3689B70E24FE15D9 /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; - 9A306B7A6789F21EB2805CA14DE9FAE6 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; - 9A3923148274370BAA83EA47F0BF2036 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; - 9A47160F3FE49EA34A3B1DC3D08AFA39 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 9A50729FFD398CEF2927DDD41610A34A /* FIRSnapshotListenOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotListenOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotListenOptions.h; sourceTree = ""; }; - 9A50E557A2EF4E9E9125BD2A9C3A6299 /* win32_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win32_waiter.h; path = absl/synchronization/internal/win32_waiter.h; sourceTree = ""; }; - 9A7C17AAB8A5DDA234199AE761509086 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; - 9A86E61CC5F4A5C984A931D4B0B2CCED /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/windows/cpu.cc; sourceTree = ""; }; - 9A947F14CD44BE8B8145F745BF8978C7 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 9ABC8E2A533E4A4F8416CEC7C15627DC /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+TZImagePicker.h"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.h"; sourceTree = ""; }; - 9AC7E49CEE0CFA1AEC01AE03BCBCEDEC /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h"; sourceTree = ""; }; - 9AD653830CB449EAB6DEF40A699B02B6 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_util.cc; path = src/core/lib/gpr/windows/string_util.cc; sourceTree = ""; }; - 9AFA3FE648DA7BB1F321EFB5CCC94553 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h; sourceTree = ""; }; - 9AFCA097D32BA82AD38BAE6CDAD9A544 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-gen/google/api/annotations.upb.h"; sourceTree = ""; }; - 9AFE36352B0C7AC26830253951651DEC /* max_concurrent_streams_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_concurrent_streams_policy.h; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h; sourceTree = ""; }; - 9AFE433B249C9F9554EDC97CA02434A0 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/array.h; sourceTree = ""; }; - 9B023E2D425EB106B4EB4795AE0E4207 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; - 9B029FC91D87F6E65C6F15E72754F253 /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; - 9B0ACB901660296B54A3DD638DB14E86 /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; - 9B10EDD931371AA1F27BF21A680893B2 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - 9B1D88E21DB54ADF02DA9C138E5537E6 /* transport_security_common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h"; sourceTree = ""; }; - 9B2AADA54DD3E608FF86385740D8EC63 /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/field_def.h; sourceTree = ""; }; - 9B2F8CFF4F0269CE996EC083F7C6A3E8 /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; - 9B4C52E628ED143ED923780D4D8D46E3 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; - 9B5648D2A64C89BC0868077DBE0C33B2 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; - 9B5CE4D7880CE25BDE6E704C5842491A /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; - 9B643B485BD0D4D43BC8B737DCA5A01C /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; - 9B68EE6B293046361ED83B44B1A7DC22 /* backend_metric_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric_filter.cc; path = src/core/ext/filters/backend_metrics/backend_metric_filter.cc; sourceTree = ""; }; - 9B82E113672352A4CDAA701BA4018C29 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 9B95406374B98E99B8730E9491731B57 /* ping_rate_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_rate_policy.cc; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.cc; sourceTree = ""; }; - 9B96A84D6567AF3DAFEA5F0D585FD7E0 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/json/encode.h; sourceTree = ""; }; - 9B984CBCEEF12BE83C876EA6F3C5E6B0 /* hash_policy.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_policy.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c"; sourceTree = ""; }; - 9B9D671F22F4544631DF717BC494F352 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gprpp/time.cc; sourceTree = ""; }; - 9BA928E2FC3D26C7DDF29A33CD599EFF /* context_params.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h"; sourceTree = ""; }; - 9BAE795A02F810B143E550520BEB8774 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; - 9BB301C266F6D63580BE43FF1227ABAE /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; - 9BB3952EB8175A7A7945F0166F33EF2F /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - 9BC809DD1FD6A1212AABF433A544693C /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; - 9BCE53010DA0877FC42A08CC3A5B31FB /* cel.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c"; sourceTree = ""; }; - 9BCF232D851CFEFE0A5524BD03CE97B1 /* config_vars.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_vars.h; path = src/core/lib/config/config_vars.h; sourceTree = ""; }; - 9BDB3738774951A2566B83702CA3D2C9 /* posix_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_time.h; path = src/include/openssl/posix_time.h; sourceTree = ""; }; - 9BF5239813EC3FDC9421CB44D2A305D6 /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; - 9BFCBB65DA2B244B7012C83F01705F2C /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; - 9C1B68446DBA73260839F3F4151994CF /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/server_interface.h; sourceTree = ""; }; - 9C233C387BEC4584B732401F25B53513 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; - 9C28B18E886E55CFA250ACCFC3FABFFF /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h"; sourceTree = ""; }; - 9C37B701028AEB0AB8E0DC872DA9CCA1 /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; - 9C40782309221F2AF548618C926D57BE /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; - 9C45318CA321F9F5A311656B3948B753 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - 9C4D3684F554BC8D770981EB0E07C7B5 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; - 9C4E5B48E882D94BB69D26350E416866 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/google/api/http.upb.h"; sourceTree = ""; }; - 9C662347FC999ED4FBFE9A46444545ED /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; + 979CD297063A53F8553B3B8A3C324201 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h; sourceTree = ""; }; + 979FF2E128B513079E1E8106CC0ED8BE /* FIRLocalCacheSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLocalCacheSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLocalCacheSettings.h; sourceTree = ""; }; + 97A8109279929A8B5FCB3A69D0994C5B /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; + 97B85B7A2A6C0A3B8913CA2AF9812B6E /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + 97B8CBFE239901E1B90BAD0EFBB832E1 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h"; sourceTree = ""; }; + 97BDF57F20FB8B9A1D27E33BA5F2BD95 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; + 97BF481C7BA3B9263200549647BA2284 /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; + 97C0F1E12B870810DC5F5026432DED76 /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; + 97C9BD2DACBBE8DF3DB30C0DD571264A /* collection_entry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h"; sourceTree = ""; }; + 97D9E1F6D2924CC0F362A1230E00B419 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; + 97F0B212492A17D284CEEB8A1EAFECC3 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; + 97F5BB54DF30086409D74491565280A4 /* FBSDKCrashObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrashObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashObserver.h; sourceTree = ""; }; + 97F81A41B5F1BF80E812C26C0EA663C0 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + 980741234F3840C58FADC9DFCAA1AF4A /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = ""; }; + 9811D2D7849C7D770271A7CF585AD83F /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_alt.c; path = src/crypto/x509/v3_alt.c; sourceTree = ""; }; + 9814270A1CA8890ABDDC4E6A264D7F44 /* default_event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_event_engine_factory.cc; path = src/core/lib/event_engine/default_event_engine_factory.cc; sourceTree = ""; }; + 982E6AF47234B0BF367B8F531CA0974F /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; + 98389D31D68212AC79598BC07260F4D1 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; + 983916D434DD03077B1CCAD346CA433C /* nullability_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nullability_impl.h; path = absl/base/internal/nullability_impl.h; sourceTree = ""; }; + 9845BC2B0EA8BDDE8748BA8FECF9959E /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; + 984D7C34D66154A159CDBA59C739BBFB /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + 985D9A7C6CA27DC31C16B8EBF26B8C2C /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; + 9861FD6B23C0DEF2D2601727143F83BC /* FBSDKSmartDeviceDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSmartDeviceDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m; sourceTree = ""; }; + 9867C30C3526556622B304743941F16E /* pick_first.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h"; sourceTree = ""; }; + 986CA1D1D0DE56AE0CEBDE84FF8F2798 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; + 98731FDE716ABACB8C234684EF0635CF /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; + 98865B818BB8EF47083F25B283777988 /* static_stride_scheduler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = static_stride_scheduler.cc; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc; sourceTree = ""; }; + 988B28A5A73BE3421704B5CF2E5A7B85 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/codegen/completion_queue_tag.h; sourceTree = ""; }; + 98C64942253B2B85FE1F9950260025CB /* context_list_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list_entry.h; path = src/core/ext/transport/chttp2/transport/context_list_entry.h; sourceTree = ""; }; + 98D01573EC9CE6EA60F27F4E91A956E4 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/types.h; sourceTree = ""; }; + 98DCC09A432FCAED621D6F0EC0E69F45 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = src/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 98E3B599247553319655F15453648A12 /* RecaptchaInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RecaptchaInterop.modulemap; sourceTree = ""; }; + 98E4ECA7A1489C446F54E069416379E0 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/internal/types.h; sourceTree = ""; }; + 98F6A79A8BB64D59284C77CF3AF81382 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; + 98FBDFB1CAE16EA841333FFB16C3A748 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; + 9908E405799FBD83223E281AEABFCEDE /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; + 990D7A634346596D5A7EF74AF93967D8 /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; + 9914A7AB404BB98EDBD9B8AF78C4D883 /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; + 99283EFC615EA504B06426610D3B34C1 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 994DB3EC6A65F4C8459EE129313735F3 /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; + 9954B6650074C2141F26763C4080CAF2 /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_ares.cc; path = src/core/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; + 995A0DAF8304CD32FCE81A1E0F929A04 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; + 995AF4F53D2143E857D6BE15FD1CA9C6 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; + 996DAE7395EEDBFFC7914BA037CE3ECE /* SessionsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsProvider.swift; path = FirebaseSessions/Sources/Public/SessionsProvider.swift; sourceTree = ""; }; + 997D61302D66D4A83317DBADF1DFD684 /* datadog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = datadog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c"; sourceTree = ""; }; + 998064C628BC01BB1FA34C215C339C8C /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; + 998CCE13B75874C3C349F20D765DDA09 /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + 998D0EDD802582B230B36B3868C0E6A8 /* value.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h"; sourceTree = ""; }; + 998DCDD3E97D357366BC4DF4228D2A16 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + 9993E90AF22AD2B2F832528BCBED8458 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; + 9998CFC5324B900A8DC1F3BE33F8C12A /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; + 99BB0A3C0D3306FE96B15359A3A4146B /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; + 99C25019820963EDEEB6357F411264A6 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; + 99CFDE9060C30F04E32E47ED23DE2793 /* FBSDKMath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMath.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m; sourceTree = ""; }; + 99D5C3AFF6EE7278E4BCF504BB78F7F7 /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; + 99EE10979CDE9CC2D934B8452F8B6205 /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c"; sourceTree = ""; }; + 99EEF19877D3D534CEFBBFCC8357F996 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; + 99F798745055D8E8393D8198C37E0527 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; + 9A0395580B465B960AF189190E59F37B /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/field.h; sourceTree = ""; }; + 9A03F2D70D1D1B86AD09724CFE68FF2F /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; + 9A0960AED2900C1C2FE5B90F99C945E2 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; + 9A0AAFD26089A60B3C7D47D6148FFAC3 /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; + 9A20DD5AA966072186AF7AD2B6EB4E93 /* metrics.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h"; sourceTree = ""; }; + 9A2A21C7EE44403993630D63E160AD06 /* cpu_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu_detect.h; path = absl/crc/internal/cpu_detect.h; sourceTree = ""; }; + 9A2E6714569DEBF1E861A4E654497714 /* filter_state.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter_state.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c"; sourceTree = ""; }; + 9A328A1AC005D21978EBF3B0FC798E89 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + 9A33E402A8DFB7DD2EF691B918ADA94E /* xds_enabled_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_enabled_server.h; path = src/core/ext/xds/xds_enabled_server.h; sourceTree = ""; }; + 9A398551114FC941D0E2DA950C6B7A84 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; + 9A4323076348AA8D2810FA085F2447DC /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; + 9A48FE2B5BAA3590CC2124CFC7894636 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/linux/log.cc; sourceTree = ""; }; + 9A4EBAC039CA82A97ED76E2A89B0A179 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; + 9A51E8BA4EA401B015CBDC00F02A33A5 /* if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if.h; path = src/core/lib/promise/if.h; sourceTree = ""; }; + 9A5A646173FBE7E721D814EB9AC61082 /* FBSDKAppEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEvents.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.h; sourceTree = ""; }; + 9A62C1A9EA99E6A84EE56F594D99ED7D /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; + 9A6CC05617ECD6E34E04312E1AAEAC22 /* route_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h"; sourceTree = ""; }; + 9A91D784268205F0C6BA86928425A593 /* FBSDKCoreKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.debug.xcconfig; sourceTree = ""; }; + 9A933EC57C9E5A013342BA74D8E2685D /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; + 9A96FA43EBF97DA4CEDD4C69E03A4BA8 /* wrr_locality.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h"; sourceTree = ""; }; + 9A98233DB38C7AA336BCC5312CFA4F0C /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; + 9AA6E0ED9DBBE8136AC2DD64A718493B /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; + 9AAE8310536E631856139637EBCA5DAE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Crashlytics/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 9AB5FE1C2509E3EDEA78CD2398B4F45D /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; + 9AB6C71BDFB2D4664819F2B806559FA8 /* metrics.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c"; sourceTree = ""; }; + 9AD285FC3ABC3D0B986664959EA6DD12 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = include/grpcpp/security/authorization_policy_provider.h; sourceTree = ""; }; + 9ADBF1E55590B08248A4D6A996A28F73 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; + 9AEC43A18DF22EFE5945C54A16426FDD /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; + 9B0BFEF42471D917AB6C142BCD8929B7 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; + 9B0E28D281837501F54F7DD25C22FB4E /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; + 9B11BF453992572C8322A88D5E0E3CD5 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; + 9B1CE08C16F75A73D2AAE9BB487B753C /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; + 9B212BCB022B31A3A708603EED98BD67 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; + 9B24D020EA817C6AC2345BD4E4CA39D3 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; + 9B276DFA17A2C8DE3DE273DC3F914760 /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; + 9B2F7BA3CC0D5F7F45CD5618F2922C03 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; + 9B32D1FE61B82BFA1A44475F711A7239 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; + 9B5C37CA2358483C1F8D39750A9FFFD7 /* endpoint.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h"; sourceTree = ""; }; + 9B5F4991063DFEA63554C8F9892AEED2 /* vsock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vsock.cc; path = src/core/lib/iomgr/vsock.cc; sourceTree = ""; }; + 9B5F7417423A780287CF9BBA18A5F941 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; + 9B6159FAAE06547D3DFB36D42A8258E2 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; + 9B6305BCEE79E98C461D282873EB23C5 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + 9B698A607ECE2A19FC06FC65A1FE3ECB /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; + 9B6AEE4F0575AF6FDE1CA895A4622286 /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; + 9B72C150BE0BF5ACA4A63559B7C4CF04 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; + 9B8C53368528E1D08E87BF315E0E62CA /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; + 9B8EA9776B77495B3C992DEBD38AF721 /* FIRSnapshotListenOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRSnapshotListenOptions.mm; path = Firestore/Source/API/FIRSnapshotListenOptions.mm; sourceTree = ""; }; + 9B8FE4809E674D0F1E9075D640323B97 /* config_dump.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c"; sourceTree = ""; }; + 9B923324D409469125DF6DF94BC6A375 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; + 9BA1944D7A0B43518EC0B7CE1CD03C7F /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; + 9BA33E88F87DCD84E5775CB00914FB20 /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; + 9BAD3BC69CCE28705702660097B7FF9E /* histogram_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram_view.cc; path = src/core/lib/debug/histogram_view.cc; sourceTree = ""; }; + 9BB0C3778D693FCE2CEFD24104B35582 /* path_transformation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h"; sourceTree = ""; }; + 9BB71B4BD68AFB1A48C685B6E9BFFE1D /* FIRCLSRolloutsPersistenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRolloutsPersistenceManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSRolloutsPersistenceManager.h; sourceTree = ""; }; + 9BC081A0F3415A7490FC42C6AED534AF /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZGifPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.h; sourceTree = ""; }; + 9BC242B7EB8720447A7CB265F732F999 /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; + 9BCF680A82772E13DEDFF0F091B6A2E2 /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/oneof_def.h; sourceTree = ""; }; + 9BD864EB18CC0DF745F5CF17B745725C /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; + 9BE0A2C2720D7A3449C5BE68B07DA9EE /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; + 9BFA3874E763C006C74D514317DFF912 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; + 9C08DA49F2281F0F6F12C3122EDFB599 /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; + 9C0F8053DFD2379AFC78A98D0233DA53 /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; + 9C103A6A8C5CBA809FCAB4870E85339C /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + 9C1C32B02D9053890FF4DCF44F13826B /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + 9C306C14F33F47B57739BA5EB124C275 /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; + 9C527E175F0B74902089E8D836EC36E0 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; + 9C558522658A8503C26447B08027B710 /* wait_for_cq_end_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wait_for_cq_end_op.cc; path = src/core/lib/surface/wait_for_cq_end_op.cc; sourceTree = ""; }; + 9C5829A558FA18F71C179308930C7D75 /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; + 9C582EF63811775D3F0EDA9CE3EA0F5B /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/call_op_set_interface.h; sourceTree = ""; }; + 9C5EF75FDC3E1FEC301913AEEAB559A4 /* xray.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = xray.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c"; sourceTree = ""; }; + 9C776B75D07C25F1E680825880542B18 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/event_engine/nameser.h; sourceTree = ""; }; 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "gRPC-C++-gRPCCertificates-Cpp"; path = "gRPCCertificates-Cpp.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9C8ACA02EBD27AE5C9A81E7DB10FF0AD /* forkable.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = forkable.cc; path = src/core/lib/event_engine/forkable.cc; sourceTree = ""; }; - 9C9960819D5E5FCC49028377207534FC /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; - 9C9A01B945E550D410CDF8C6F3F6B60F /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; - 9CB12A11BEFB942EEEFC5C257C6061F7 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; - 9CB1F76E85898897D7D58DEC510A80A6 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - 9CEB16F1717B716957471FDA777EE9D9 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; - 9CF5B4795B0EC0B78329045F16EF400B /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; - 9CF9CDF8B7BD057A186F9E38DCCE87CE /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = include/grpcpp/security/authorization_policy_provider.h; sourceTree = ""; }; - 9CFB7CD65DEBF28C41B7CD61D8E91910 /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; - 9D0247AF0657BAF5DF8DF2BE03DFCF11 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; - 9D06F1C8D86FA4B9A2977D33464CE785 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; - 9D07FC1B11A6BAF447B5727B19410FAE /* memory.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h"; sourceTree = ""; }; - 9D0A0BBF99D56D0964A0159E7BF1A394 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; - 9D114B42C57477DD4AD2A9780CD30976 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; - 9D1175799C832D620404D7D519750107 /* str_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_table.h; path = third_party/upb/upb/hash/str_table.h; sourceTree = ""; }; - 9D138605ED78A5D37B233341E030A1E0 /* uniform_real_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_real_distribution.h; path = absl/random/uniform_real_distribution.h; sourceTree = ""; }; - 9D21EC8AF85719B4418B4A8D39A38A58 /* proto_buffer_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_writer.h; path = include/grpcpp/support/proto_buffer_writer.h; sourceTree = ""; }; - 9D3E68C6C0C69814AF51E01144D8853F /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; - 9D43BD3E658FC54A946BD1B0CA51506E /* stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h"; sourceTree = ""; }; - 9D479250A1B38BDAA17C260830910FDF /* WriteBatch+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WriteBatch+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/WriteBatch+WriteEncodable.swift"; sourceTree = ""; }; - 9D5414C7BA1712802DE6276857E39FA8 /* descriptor.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h"; sourceTree = ""; }; - 9D5DA6E47B73F17C0A8DD419F23DBFFE /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; - 9D64C6D5D43AD22D4B4DD6B8863316F4 /* backend_metric_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_provider.h; path = src/core/ext/filters/backend_metrics/backend_metric_provider.h; sourceTree = ""; }; - 9D6BA393B226D6FA85D95501C452A8FC /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; - 9D6CE426FBA947DEA52644F5F89FFDFB /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 9D77403F573C04D1FAFABC09E206BA71 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; - 9D8D975E68811795DE86722ACB1EE5DE /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; - 9D939B9691868A59B58BDC447AFA0D6D /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epoll1_linux.cc; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc; sourceTree = ""; }; + 9C874AB92CAF95AEA9A407F5F7AC5BB3 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; + 9C8E6CCBF3D64A0D02C9336F9AB124F1 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; + 9C98A9E1ADF94349DA915C6883152200 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 9CAD5D5CC9D260B6C3FD57528192F5FB /* dynamic_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_thread_pool.h; path = src/cpp/server/dynamic_thread_pool.h; sourceTree = ""; }; + 9CB62CD82A8DA0285F385CB86C072455 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; + 9CB77311EE6259A8BF15FBEF46A8ED31 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + 9CB937A49C685C845C5C6653EAA1C158 /* static_stride_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = static_stride_scheduler.h; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h; sourceTree = ""; }; + 9CB9BA090055C1E51AA4F7BD573E8C64 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; + 9CCAFE38566B1B402B7F8853902D48B0 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; + 9CCBDBB5862F7BA31C167869B9102582 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; + 9CD359EFE131119C3670E51148A9B5A5 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; + 9CD535B6DCDB2EF43540009955996276 /* validate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb_minitable.h; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.h"; sourceTree = ""; }; + 9CDDB7D58DD0571B03C4B680CBCF10E9 /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c"; sourceTree = ""; }; + 9CEF911855FD910696A582BFF8497939 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + 9CFA1646D04112AFF9A98A6AE86ECD0A /* Promise+Recover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Recover.swift"; path = "Sources/Promises/Promise+Recover.swift"; sourceTree = ""; }; + 9CFE1F73D515600982DC964FE90A3013 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb.h"; sourceTree = ""; }; + 9D241984C954DADDA735F8DAF4A6DA4C /* posix_engine_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.h; sourceTree = ""; }; + 9D498D44C32CF0DBBBCCCD6C5EB0CBD8 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/array.h; sourceTree = ""; }; + 9D7932A2CF7AB9BD31BB956091DCE799 /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; + 9D79A57FE763F33212D98BB03EB43ABA /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; + 9D923D330A83A59B1AF71E1C34F7A56F /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DA1AE196DDF6E7FB7B22C555CFDD86F /* TZVideoCropController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoCropController.m; path = TZImagePickerController/TZImagePickerController/TZVideoCropController.m; sourceTree = ""; }; - 9DAD198D7B82CCAAA26F5FB855E8A787 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 9DB20F29D8E1A266F5C0F3782BBD476E /* binder_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_transport.h; path = src/core/ext/transport/binder/transport/binder_transport.h; sourceTree = ""; }; - 9DBED2E07AD729D10BFE5F3E807C05AE /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - 9DC08C6E870F6F090D4ED69D9CBF7433 /* PromisesSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesSwift-dummy.m"; sourceTree = ""; }; - 9DC1ED9EDC359578761170A6FA3CEF84 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; - 9DC9A57B15E3F9DB493C16351E3473B3 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = ""; }; - 9DD59509049398C0332C68094DBF92C6 /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 9DD6EF1D617CFCDD0C718506CC6FEF7D /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/internal/enum.h; sourceTree = ""; }; - 9DDFE6F32D56F8B2347A4C86A4706DFF /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; - 9DE92791A55F429A63E38F3A1998CED7 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + 9D9AAC87CC4E55348A92FB3690FCF9B2 /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; + 9DA3E389EB3FBB407D5FD48F0B11905C /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; + 9DAA46B3D7839471D11A3F71D4FDA57D /* FIRGetRecaptchaConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.m; sourceTree = ""; }; + 9DBD3545C480DF1A6020297FC8C70C0A /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + 9DC1F9C3D6461B2727D6BCF931945267 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + 9DC72B81433E2C2C408A8E6C1BCCD197 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 9DE3683B52203E9F60AEBD75DC5267BC /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; 9DE9E888096AF19468CED030FE669832 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; - 9E048134B3F404280AEA150DE6BEBE61 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h"; sourceTree = ""; }; - 9E13FE14348F63BA542C41282462F3B1 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; - 9E25FC40708787884D496D029637CE8A /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 9E297954265022E3BC74E4DA17BCE56D /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; - 9E410A55F6A0A19FB89541AF68D43C1F /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 9E48454D8CD2A9D806B0CC027001B156 /* Firestore+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Firestore+AsyncAwait.swift"; path = "Firestore/Swift/Source/AsyncAwait/Firestore+AsyncAwait.swift"; sourceTree = ""; }; - 9E4BAAEBDBC94E59BEC8DD792BDA51A1 /* Promise+Testing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Testing.swift"; path = "Sources/Promises/Promise+Testing.swift"; sourceTree = ""; }; - 9E518A19114C10A68E28DE2975FAB0D6 /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; - 9E57DD5C73964EA2CA7F91C33ED492E5 /* native_windows_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_windows_dns_resolver.h; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.h; sourceTree = ""; }; - 9E5F412C804DEFD1776ED033166A0752 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; - 9E732924AC485413C74955BAB88FB4C8 /* FIRRevokeTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.m; sourceTree = ""; }; - 9E76291771F6F5B95D8AD2320E86A655 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - 9E77D90445BCE380616E4B3D4CD628DE /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; - 9E7FB64E75A6A79387CC1EDD779C47FF /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; - 9E8710F93E428835E61AF8DC8EC5AE55 /* FirebaseCoreExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreExtension-Info.plist"; sourceTree = ""; }; - 9E9CACE2E868B66028342FED1E68FBD9 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 9EA4EFE467B4E711C9A880A89BC95D4D /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; - 9EB4B8EC4F3F2CEF67230AA16D378EB3 /* SwiftHeaderWorkaround.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftHeaderWorkaround.swift; path = Firestore/Swift/Source/SwiftHeaderWorkaround.swift; sourceTree = ""; }; - 9ED33DA2ED0AEAE52881E172A79B8C85 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; - 9ED685AE8F5FFF833C66F946825A4A81 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; - 9ED8CE0E3C850623EA471187BA4D9B29 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; - 9EDBF1A11DA6467FCD22309D006F6134 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 9EDCBE58F3750D75D2206DD2F5BC598D /* wakeup_fd_posix_default.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_posix_default.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc; sourceTree = ""; }; - 9EEAA2E6F49A772854306257A0A69E15 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; - 9EEE6DA5E48EDA015D62188FEBC759D2 /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; - 9EF03DEE324CFDC0D447AAF6A6D3EC56 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/client_channel/config_selector.h; sourceTree = ""; }; - 9F0A16D5015BFBF63742F84215229F2F /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; - 9F0C934CA2D29BB365D5026288C471F7 /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; - 9F18944C7646E0157BC5B62B0F31E3CB /* TZImageCropManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageCropManager.h; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.h; sourceTree = ""; }; - 9F1AADA5B6ACD77CAF3EBA105BFCE145 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; - 9F29BECDDF04D7F7A31079535ECE0E53 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; - 9F32CEB0AD50C1710F57EB1F311E42B5 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 9F336E53477D8798EC6CD45A76160B21 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/load_balancing/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - 9F3B2A8F5A9C2B96D84AF1C0C9FF02A9 /* service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h"; sourceTree = ""; }; - 9F3C788730AD4E301C98EE69DE9EAC18 /* crash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crash.h; path = src/core/lib/gprpp/crash.h; sourceTree = ""; }; - 9F5FC482D074D516682182045CE37573 /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; - 9F793B8A0479E67F308098B03226F857 /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; - 9F7A5EE5AE06EEAB1F1385FECF62880E /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; - 9F85BD726190168AC84594C57B0DCBE1 /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - 9F8680DA681EA0ACF4724E648A343995 /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 9FA86EF093A7DD57AF9A4E4EAB91DE91 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; - 9FAD8EFF84B65C2CD55E1E64BDFECF74 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; - 9FB225E8C65E38252EDA580FA8181FAD /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; - 9FC52468AE0D976B98C158D816311B7B /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; - 9FDAD93F00209D8C389C29999A069F3F /* protocol.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h"; sourceTree = ""; }; - 9FE5A6D97AADB60DF50E89B16EB18141 /* work_stealing_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_stealing_thread_pool.h; path = src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h; sourceTree = ""; }; - 9FE8E5DDBE5A9E2567FC26FB23480A87 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - 9FE9D1E799EB73C935D56EEA803D97A6 /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - 9FEDB7210C3BB15A78710859E3DD9FDA /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; - 9FEEE2F54D1453B2E937414B9DA9239E /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; - 9FFEDE59AB7324E65D95B4B762838E40 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; - A004F91BC985223BFD5AE59E1EE186E3 /* collection_entry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h"; sourceTree = ""; }; - A00E6C612EA0D1DCE156920BA73E1CDC /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; - A020ADF93B391914809484729DBD2769 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; - A02E7A4F1F16616D91BA311DA3F919B7 /* FirebaseSessions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseSessions-dummy.m"; sourceTree = ""; }; - A051E430E605EBF8184F740974499337 /* http_status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h"; sourceTree = ""; }; - A052D55197E3539A78A73B4CC6633AB8 /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; - A055B0758BF31037229CA728F6323A9B /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_lib.c; path = src/crypto/x509/v3_lib.c; sourceTree = ""; }; - A070BA79BB0F8483373D9B41CD9D145A /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_pipe.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc; sourceTree = ""; }; - A0744F09230C6414EAC22E8C49C6B260 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/internal/message.h; sourceTree = ""; }; - A08591EA957D2B6797343348568C484D /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - A08E99ADC3971463ED36EDFEF8B4B07B /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - A09403A69693A1DCD3666BA458BB041E /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - A09A12889CE077E2D2CC857FC2824E42 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; - A0A422B305FAF9295EBB5625197A1F02 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; - A0B4B9445261B17DA5A06BC42A4645F8 /* memory_allocator_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_factory.h; path = src/core/lib/event_engine/memory_allocator_factory.h; sourceTree = ""; }; - A0B981440B0317AFC154749F87D0D80A /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - A0C528BB2B8142B1B7599784F60CA69B /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; - A0C9878FC2CB8F61CC93B0E267F5C331 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; - A0D514CB522EB1EF54E03C74EF37DF9D /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - A0E93B1125D74E42686464A3E671841F /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - A0E98C544A99CD376A1577D7D62D8FDF /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; - A0FA1C9F2749DD9B8EB1CB673E4CEB46 /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Promises/Promise.swift; sourceTree = ""; }; - A0FBECA10C13B221EC9DDADF7FAE5A6D /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/codegen/client_unary_call.h; sourceTree = ""; }; - A10ADF18D1B77FDEC407C3033B2A72A0 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/call_op_set_interface.h; sourceTree = ""; }; - A10B1C4DCF9DD6F33C936BD37C552EFB /* Promise+Wrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Wrap.swift"; path = "Sources/Promises/Promise+Wrap.swift"; sourceTree = ""; }; - A1172B30EA38FFB2C74BEBDDDCB5BB8F /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; - A12093A3908B57862CDE104D90CF4FCD /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; - A12CE25F30D8B7EAD00CC5F0B3197105 /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; - A12E517EC84F573B01F2EA4BB568B565 /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - A15A6A181E28B626E116A6FD1502B625 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - A163CCDCD2D206124B0A38356570EA09 /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; - A16575B7C8865A44480E12AFFED6A0C6 /* domain.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h"; sourceTree = ""; }; - A165CA7A8B31994953AAFA6B786BC9C7 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - A166A9CE67297B90D86C71A4A6A3CE79 /* call_spine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_spine.h; path = src/core/lib/transport/call_spine.h; sourceTree = ""; }; - A166E29FC21D0E06B30532680B0906B1 /* xds_override_host.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_override_host.h; path = src/core/load_balancing/xds/xds_override_host.h; sourceTree = ""; }; - A16D56F10C5B7F24AEC0C25D843C8B3E /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; - A17D0F693788377AD232DE1DB3DF4DB2 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; - A19199735F0DBC03CC365F31D2DCFA87 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - A1BA499F7C3D19741C328C84DDE3469F /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - A1BDA02546460A1CA55C9B869B9D4ED7 /* external_privacy_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_privacy_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.h; sourceTree = ""; }; - A1C242F5C5CF00BE600119F257EAEBB9 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; - A1CA09DEACB4D4B165926367BB3D4005 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; - A1E44795B819A8DC7485F9C21C7954E6 /* RemoteConfigInterop.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteConfigInterop.swift; path = FirebaseRemoteConfig/Interop/RemoteConfigInterop.swift; sourceTree = ""; }; - A1E72F1001E087B0EBAE851A920CB2B9 /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; - A1F21650F0605DA1B03EEE743E5279AC /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; - A1FE37D15DC00CD187F42F2B3250021F /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - A1FEAAD1F1780E477EA3C49295A0850D /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; - A201DC3FA00CD775348851F5E4596967 /* FIRSnapshotListenOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotListenOptions.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRSnapshotListenOptions.h; sourceTree = ""; }; - A20A9F709789F8795BB53C31C9E1F450 /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; - A20E910BE3E858449DD34C70E7A374F4 /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; - A21595FCC0F8B44453EA5B11553559D6 /* errno.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = errno.c; path = src/crypto/bio/errno.c; sourceTree = ""; }; - A21777C9C040088AAB5C38064FFBD2DE /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h"; sourceTree = ""; }; - A22F7947B101D362448812554A639FA0 /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; - A2341C0B7EC56E753FD33747D567D0BD /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; - A235DA621D61A1C1E5CCBE6F60A1CEF9 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - A236EC8D614D217C6949C6D2E3B26A62 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; - A242314A5D887E04F6EBDE572E3C2FEB /* reflection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = reflection.cc; path = absl/flags/reflection.cc; sourceTree = ""; }; - A243920B2C85FD3EF8C007CDEC353AEC /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - A2525B3482B8DAA278EFCEC86BB22E2C /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; - A252816BC5CA6A7289611E56E66C467E /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - A26C730435E710CD4C66CB72B55D2CAD /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; - A26D375351A72F0BE6B72CEF32619B4B /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb.h"; sourceTree = ""; }; - A27829C72F9612DAEF484A5ED39A3225 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; - A28E9B6EB25B958CA44C7528BF144B60 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; - A293099EF4A711A4695E5C16B3EC4661 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; - A297D3378BC4DFA19F8DFFE9F9362E0E /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - A2ADD0B7C6006D2F704FA4F28F09C772 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlytics.h; sourceTree = ""; }; - A2AF1F27FF94ECA2A39C0C52BB780388 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; - A2B03915872B69964AB0963D3A82B4D7 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; - A2C2E31ED1586A8DCF32F1E90E5442CE /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; - A2C8C03A7084C851D625B22C2D6C1CCD /* def_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_type.c; path = third_party/upb/upb/reflection/def_type.c; sourceTree = ""; }; - A2D31B3A4F6D4BCE4A03220CE60F2061 /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; - A2D5129B7C96ACE5A8A175A8ECD5FF8C /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; - A2DBF7809E36DEED8E8C5737361A4958 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - A2E36C97179852368A2AAAB8739C3DA9 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - A2E769BA49E88961ECDE47D88A7E69CA /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; - A2F26527CA3E171B8756B88D11D4D9BA /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = src/core/lib/security/authorization/audit_logging.h; sourceTree = ""; }; - A2FCC0D18882EBB05A32D736011691FA /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - A3033B6DFBCFF1678A49640A5B8A0210 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; - A31A3B3CAA791361D6418CBDC75EAB66 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - A31D9EEE7D2A1C7A349865BAC29388A4 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = Firestore/core/src/util/json_reader.cc; sourceTree = ""; }; - A31E948DA64C1225742257A00CCFB19C /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - A32880955D94FB6982150FE42C323D81 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; - A33D82D64ACBA6E825512F1BB1E67AB8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; - A349939CE18674BAB956E6BA3BAD8C25 /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; - A34BCA09CC61E363BEC9AFFC9D03FCE0 /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; - A3770F98D78AE8E8845B4B4413E5DB0F /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; - A37D08D216DD1DFFD79045D2B454E170 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; - A391284F9C8B7EFA6AE0C1DC084CAB01 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h"; sourceTree = ""; }; - A3957DC8A3A9269B0894E8849F2F3478 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; - A3A1D1705CF4F2070D9A8B7D94CCCC90 /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_util.cc; path = src/core/lib/event_engine/time_util.cc; sourceTree = ""; }; - A3AFFE4BFA9E3B1157978D135F05C9DE /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; - A3BA8287202F66E2273D9149C802B248 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - A3DF7CE1C2A099584E53E9B5FA86C02A /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; - A3E2B6A789CA4FE0A2D02A392D9D0EB1 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; - A3E809F4F199336624BBA3C5105B23CD /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - A3F114CE9B633564BCF708BB59BF66BE /* stdcpp_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stdcpp_waiter.cc; path = absl/synchronization/internal/stdcpp_waiter.cc; sourceTree = ""; }; - A3F530D5F4B6665D2C5FE909D32CB88C /* LocalOverrideSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalOverrideSettings.swift; path = FirebaseSessions/Sources/Settings/LocalOverrideSettings.swift; sourceTree = ""; }; - A3FCD33DDBF6723E1652951CF44CC1E4 /* status_payload_printer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_payload_printer.h; path = absl/status/status_payload_printer.h; sourceTree = ""; }; - A40F7714D2DAF0C998D2C77F9404C6A5 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - A421F772C1EC941CC387BE7108568247 /* if_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if_list.h; path = src/core/lib/gprpp/if_list.h; sourceTree = ""; }; - A42F03C168209B36645006F0E5A23A03 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - A43F36F08EB3E41DC7E9E60DACB69BAE /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; - A442805C210ED3A9AF422F716FD34863 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - A4462352704DCEA41BADC72E4519D83B /* rls_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls_config.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c"; sourceTree = ""; }; - A453B91078D61194B777704BC6A7DD0A /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - A4602BD05701B9A1D4BE341519D8E96F /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; - A47ED003D405DBB9B02A20AED9C03666 /* thready_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thready_event_engine.cc; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc; sourceTree = ""; }; - A496B4BAC0E4E3C2E00D5653AA23D685 /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; - A497BEB2593DDFBF7C360C797575A9F2 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; - A4A24E6DA094FFECA52FEC97EBFBE805 /* FIRFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFilter.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFilter.h; sourceTree = ""; }; - A4AC82BEAE2F8E1F2200BE4B6FE842C1 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h; sourceTree = ""; }; - A4C42CD51ABAFFCFC32FA5BEE570463B /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; - A4DBBEC7361E6419640B703064F63EDF /* map_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_entry.h; path = third_party/upb/upb/message/internal/map_entry.h; sourceTree = ""; }; - A4E26A84D2C89FCCCE95E2BAB591F5B2 /* status.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.c; path = third_party/upb/upb/base/status.c; sourceTree = ""; }; - A4E940DCB0EEE2E3A7B7546DD74E6C9A /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; - A4EB81173860B252F34140C897AE6C73 /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; - A4FAC17AD804A43DFA3B49BB117E176B /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - A531162851D94A7FDC2642D18FF49FA4 /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; - A53EAD36073CC791855F3CD45046F243 /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; - A552AAE6B58C3A105B23805999F0F46A /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/mini_descriptor/decode.c; sourceTree = ""; }; - A5579755674E17C9D727AD3EF1FFFC00 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; - A569231358F2A69A54906D2EA6EF8C9E /* undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = undef.inc; path = third_party/upb/upb/port/undef.inc; sourceTree = ""; }; - A56AAEA6F8331DB7199BE5C8444E1E3F /* def_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_builder.h; path = third_party/upb/upb/reflection/internal/def_builder.h; sourceTree = ""; }; - A56ADEA5EE66A30D763BA90052E7A5C7 /* RecaptchaInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-prefix.pch"; sourceTree = ""; }; - A56BF3AB49941D318ADD34668A19197B /* default_event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_event_engine_factory.cc; path = src/core/lib/event_engine/default_event_engine_factory.cc; sourceTree = ""; }; - A56C4143E0243CDCCB29AE531FF9B387 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - A575130EA053819A61C5FCEBF0EDBBCC /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; - A5A6EB36ED216E7F83594A86B2DEAEA7 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; - A5CCA80179E72B13B61D17AE65D5BD4E /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - A5CE65CF1C4C8E66E97FA6E88799BD00 /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c"; sourceTree = ""; }; - A5D336D03823A075C1269BA21331476C /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_skey.c; path = src/crypto/x509/v3_skey.c; sourceTree = ""; }; - A5D393EF2C97D7233D601BFE645FC735 /* stringify_sink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringify_sink.h; path = absl/strings/internal/stringify_sink.h; sourceTree = ""; }; - A5D3AAE3AB12FF8B42ECB6A2949302AC /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; - A5D454BA0A1832F5609DE52C7F531235 /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; - A5D78A12FF458B4256671B20567E1741 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; - A5DFA413BFBF731CF0569E3E494677BD /* any.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h"; sourceTree = ""; }; - A5F0AEA0E5657962FA349FA5F57CEDA2 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRExceptionModel.h; sourceTree = ""; }; - A5F45A637E64C9FDC3C60C441A129FC8 /* metadata_query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_query.cc; path = src/core/ext/gcp/metadata_query.cc; sourceTree = ""; }; - A6091CE2A7ABE8C0E833346D011AA42F /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; - A610A8661AC0420867C4885276308238 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; - A614B5F1BC1257CECC9B6B10D3874C2D /* ratelimit_strategy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h"; sourceTree = ""; }; - A61E14B3002DB6042226A85F2D2292F2 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - A62CE157F51D232C04BE0B63F1D82004 /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; - A62E0AD9AC7D05E6118B8F795299F83C /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; - A647D9FEBBD5B09EDE48EF529739692C /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; - A64E9B9335EC45AF9D5D13AC8E79DE13 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; - A6686F7B412E2588A47DE4EB61AED64D /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; - A66A9C51ADD19DEBFA42FB88CC7FBB9D /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; - A66E6DF029007510CCF1A2E2E76F5159 /* stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_filter.h; path = src/core/ext/filters/stateful_session/stateful_session_filter.h; sourceTree = ""; }; - A670993025AA4CDB4F59C201F66947B3 /* http_status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_status.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c"; sourceTree = ""; }; - A674441CC0A9235681D164531F8477A5 /* client_channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_filter.h; path = src/core/client_channel/client_channel_filter.h; sourceTree = ""; }; - A677245B2F09B0FC161FFA4D1E25AEAC /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - A67EB494C457178E4340792DEA1F4D2E /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; - A682A7F7D68084F0A80EF11359B06149 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - A69437761F18F620768BDD43DCAF7751 /* discovery.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = discovery.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c"; sourceTree = ""; }; - A69BB4377BDBC5ABCC19D2AC5A58ED7C /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - A6D38E4FB67021D76521E3CC3C98061D /* legacy_channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_channel_idle_filter.h; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h; sourceTree = ""; }; - A6EF103A88DE89AF362ACF0F7C8704B7 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; - A6F6994781FC76951917B92F15849405 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - A6F714B9493145A81FED6D9058D14C92 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/map.h; sourceTree = ""; }; - A6F8C38A7F68C40E0660CEB9DBD02DBF /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; - A6FD99979DD70A7FC25EF4CE3AEE755E /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - A700EF30A90FE6F4B10FABF1E7A282B2 /* circuit_breaker.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c"; sourceTree = ""; }; - A708866792FB843C0F5BDC7E0F1289FD /* thread_count.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_count.cc; path = src/core/lib/event_engine/thread_pool/thread_count.cc; sourceTree = ""; }; - A70BD25C21328A26461B8BFBB2BA9B36 /* event_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller.h; path = src/core/lib/event_engine/posix_engine/event_poller.h; sourceTree = ""; }; - A70DB36A62A1E82E966D88A365181EA0 /* filter_state.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h"; sourceTree = ""; }; - A71109160C40147AB5BB9850B996DB1F /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; - A71CBF56FC3991FD888B7A98D63AC224 /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; - A7286A79533D55205A3008D930E519C8 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; - A72D5AA53E4CD88AB05A875DFE4F5CAA /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; - A72E842C77BAD537AB856C3B72618C75 /* extension.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c"; sourceTree = ""; }; - A7427F89621B2911CF4188A2AF95881C /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; - A747447769199CA7B4A490196D94485F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = "src/objective-c/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - A758156457C5411D5001F1A1FB28C414 /* service_config_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_helper.h; path = src/core/resolver/dns/event_engine/service_config_helper.h; sourceTree = ""; }; - A76578DA18542DD873F446677E6FC26E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; - A77CFFFB8453314C0C18FB710825C3BF /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; - A79122586A318457E7A9F1A44BDE53C2 /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; - A7915F10C91C7C74007B224B744E3B25 /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; - A7A049EF8846EF80ACA20554D039125E /* SessionInitiator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionInitiator.swift; path = FirebaseSessions/Sources/SessionInitiator.swift; sourceTree = ""; }; - A7B113DCB4788AEAEB54CA0BD2E4E2F0 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/client_channel/backup_poller.h; sourceTree = ""; }; - A7B17FFECD613792BFFC75621165C094 /* UIView+TZLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+TZLayout.m"; path = "TZImagePickerController/TZImagePickerController/UIView+TZLayout.m"; sourceTree = ""; }; - A7B6E9544525D8AF5CF689B7380D4921 /* GDTCORLogSourceMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLogSourceMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLogSourceMetrics.m; sourceTree = ""; }; - A7D0AC4B0CD11D6DD88E78AEAD7B974B /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - A7D154C842257A3383D505F471A639EB /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - A7D6C83CCA37B7118D05D6C0775E3340 /* handshaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h"; sourceTree = ""; }; - A80017990FDD0D565AB30333B592160F /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - A81F33CCA6355AEDFAE21447C11FD4BD /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = src/core/lib/event_engine/posix.h; sourceTree = ""; }; - A82A877BFCE716D5F48A37F125C1250B /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; - A832FA5E8F32E3FAB862D793F85097B7 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = address_filtering.cc; path = src/core/load_balancing/address_filtering.cc; sourceTree = ""; }; - A83D4EA98E182B40FAA9E2AA1A191071 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - A8407CA71D4371781FC540D4FCC1A01F /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; - A84B19F64D55E49D1D83AF50A59F4FB4 /* wait_for_cq_end_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wait_for_cq_end_op.cc; path = src/core/lib/surface/wait_for_cq_end_op.cc; sourceTree = ""; }; - A84D87ACB185E4ED969215DB25793F7F /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; - A85ADAE6CCEF0BD8CB443ACA3B15DD69 /* stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h"; sourceTree = ""; }; - A85B143BE17B11B55D7D788F62BDF023 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; - A8683D4095057BC40C62BA51542EF92A /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; - A87EB8F929B4903A6CDE6FD793B7DEAF /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; - A8817A850CB3D99FC0EB383EE647B5FD /* hash_policy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_policy.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c"; sourceTree = ""; }; - A883DE7BAFB692AF3A1014C7C0B1E0EE /* cluster.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h"; sourceTree = ""; }; - A88C263BC53E240A3EDAA97F06DBA93B /* certs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = certs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c"; sourceTree = ""; }; - A8A0173354CA5DD63783847DAB619B51 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; - A8A239BB4D029E152C87236DABCE8D96 /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; - A8A291C0A39F4DF159EE49AF57219D89 /* FirebaseCrashlytics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCrashlytics-Info.plist"; sourceTree = ""; }; - A8A33D2ABDF42BFB49A0F7F9AD718FC6 /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; - A8A82B859A322D3B5C5B7568CE8E2313 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; - A8A9D0C32C832450687A2B7EEADBA2D4 /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; - A8C41FA68BB2640F9DB7CD26DA20F5E6 /* frame.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cc; path = src/core/ext/transport/chttp2/transport/frame.cc; sourceTree = ""; }; - A8D0BA34B5FB41C659B1174F26423DDD /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; - A8FEFA7E046AC2E279283C6B9D576ACD /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; - A90F6B7BCEE237D7422E20C85ADFF3C0 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; - A916756E33981CE27654E0FB72FE1D9D /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; - A92279279AFB5B2751F380015349C0B7 /* fast_uniform_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_uniform_bits.h; path = absl/random/internal/fast_uniform_bits.h; sourceTree = ""; }; - A936FDE037557223955EAA708EFB7619 /* LLFilledPageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLFilledPageControl.swift; path = Lib/LLCycleScrollView/LLFilledPageControl.swift; sourceTree = ""; }; - A93E8F5C08A81FBB3F21A03664EF0582 /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; - A95EB79462FB650FF21D508D7374D597 /* default_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = default_event_engine.cc; path = src/core/lib/event_engine/default_event_engine.cc; sourceTree = ""; }; - A96CB6983BCE6F00AFF6EA9D7833A05D /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; - A96EB4D118E98F4B3A4284962FEBEB1F /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; - A973544F3E56E140D6043602A49B7BB7 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; - A996C503692004A24CDE9DEB88BA1A06 /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_utl.c; path = src/crypto/x509/v3_utl.c; sourceTree = ""; }; - A9A446BEEB863C559EA33DE553CDB39E /* windows_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_listener.h; path = src/core/lib/event_engine/windows/windows_listener.h; sourceTree = ""; }; - A9A650C982DC2FFF0F18F92C613162FC /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; - A9AB458C4D9667A2984515DEE690B491 /* health.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h"; sourceTree = ""; }; - A9ACEAFC24190BF54454B99BAC69B7C4 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; - A9AE6E44D3E5F85CEEC6BFD73D8D1144 /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h"; sourceTree = ""; }; - A9B1C837D869838993126B2B46CF5182 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; - A9B32594FF0F397FB09967C06EDEA493 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - A9B3DDCE91DCF9B4286A8D607FDC951D /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/codegen/create_auth_context.h; sourceTree = ""; }; - A9B3FE469DD0B5A1276789ACA9AAB685 /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; - A9B5EF7FCA35AB0228443A4C7D0CFC3D /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - A9B76DD8640345C6A41FBDDFF76E558C /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; - A9C645B1B3E678E1BE11792DFCD4F03D /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; - A9D8E488AD8ECBB44EBAF2BDEBE69C96 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - A9DA83AB76EFD6907CE24CF7253EECE5 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - A9E8640232B4FB92EDE0D6B2B5CF1ECC /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; - A9F0B52F2D4AE37E5BF3C8C7AA45C037 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - A9F683FC35742446779589F0EF05F3BA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - AA010FF617600E09D21D27BA7ED3B8FE /* clusters.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h"; sourceTree = ""; }; - AA1009FF3F280B4D6715C9E4A9BC06F0 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; - AA128C73E577E73481942AB420A3386F /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = third_party/upb/upb/lex/strtod.h; sourceTree = ""; }; - AA18D6BA3472FE9AE2FC38C388A1C482 /* slice_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_cast.h; path = include/grpc/event_engine/internal/slice_cast.h; sourceTree = ""; }; - AA30E1E9C5B214D497E6EFA894021F52 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/windows/time.cc; sourceTree = ""; }; - AA31C8AC7EC6596D50FE386F8BE48833 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; - AA41040D74334E26E587B207BFF70595 /* fast_type_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_type_id.h; path = absl/base/internal/fast_type_id.h; sourceTree = ""; }; - AA4208930C960CFD90F35864702BB05B /* lightstep.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lightstep.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c"; sourceTree = ""; }; - AA4D457D3B48B48FF6223E9D2F6D380B /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; - AA4DDC5837DB615EC645A2C5C4E20970 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; - AA5B3A3069C91D5089B50800F74BE4D6 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; - AA649EB6E423897080FF675EFF8F904E /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; - AA67E98EEC05A9A5884CFF9CC5523064 /* native_windows_dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = native_windows_dns_resolver.cc; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.cc; sourceTree = ""; }; - AA6B24D04E4144DBFD712509FE96736A /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; - AA75EE3C2D9A57E79B1385DA0B41CF23 /* grpc_plugin_registry_extra.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_plugin_registry_extra.cc; path = src/core/plugin_registry/grpc_plugin_registry_extra.cc; sourceTree = ""; }; - AA89A569C790F3C2FFA41763333C8C9E /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; - AA8C86F0A325CFEC1BA870C8FC8DC539 /* StringToHexConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringToHexConverter.swift; path = Crashlytics/Crashlytics/Rollouts/StringToHexConverter.swift; sourceTree = ""; }; - AA8E77561401C7E969C6BF904E4A4147 /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/enum_value_def.h; sourceTree = ""; }; - AA90C620B486303C1A2AE190F4145516 /* stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stat.cc; path = src/core/lib/gprpp/windows/stat.cc; sourceTree = ""; }; - AA91FA3C11A5964346D60B09F7C6F10B /* aggregate_query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_query.cc; path = Firestore/core/src/api/aggregate_query.cc; sourceTree = ""; }; - AAA572C6A388CE8ECF77CCE4E0A371CA /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; - AAAA04610A132AE746FAFF109300029B /* FIRTOTPSecret.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPSecret.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPSecret.h; sourceTree = ""; }; - AAAC593E2DC16CDBC176A1991A486262 /* delegating_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_helper.h; path = src/core/load_balancing/delegating_helper.h; sourceTree = ""; }; - AAB7FC1A7A95895377586841FCB841D3 /* versioning.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c"; sourceTree = ""; }; - AABA9B78F40DD2E2152CED2435E01145 /* listener_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h"; sourceTree = ""; }; - AAC12AF4EFD05507BE3CB061F019A9F6 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; - AAC90C417882184137626F0336AFEECB /* periodic_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = periodic_update.cc; path = src/core/lib/resource_quota/periodic_update.cc; sourceTree = ""; }; - AADE114DBA7C3660DF2FF398E1E83AF2 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; - AAE3D8A5040F1E8C81A2DD7C8993B558 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/decode.h; sourceTree = ""; }; - AAE65AF25515E97B47AF3638F6BDEB23 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; - AAEA5226691F329AB0BCDABCC02D1473 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; - AAEEE5E376AC099B4704F25673F802BF /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; - AAF779B7F7232E8CFB933149B631EC17 /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; - AAFDE93E8F86CDE8F04EFB1C4CE652D6 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; - AB001268A485BA0104D8AE3D677FE72E /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; - AB02B3DE3163633095F905A51D67C4AF /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-gen/google/api/http.upb.h"; sourceTree = ""; }; - AB03E51A506CBD2C0EFEF25A1ACF233C /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - AB089C388259AEC6158D877CEE6FCD68 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - AB09D214FAD65ACC303422FD1D4FF3A6 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - AB192D6B7656DABB9AA01BD4CD4ECA1A /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; - AB1CBE2B517F0D9BFA828547100D2767 /* cpu_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu_detect.h; path = absl/crc/internal/cpu_detect.h; sourceTree = ""; }; - AB22C23D79EF8DC546F54BD2DAA58CFB /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; - AB248305748EEBF373C5D06D3821B607 /* regex.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c"; sourceTree = ""; }; - AB2777ACABE1F0005EAC1DD719D70E0E /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - AB2DE7A3B272C5DED88BDE5B71D0FE89 /* map_gencode_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_gencode_util.h; path = third_party/upb/upb/message/map_gencode_util.h; sourceTree = ""; }; - AB3838BE90465412CBF84986BF6610DF /* nullability_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nullability_impl.h; path = absl/base/internal/nullability_impl.h; sourceTree = ""; }; - AB40D14D1051D1A3134E32573C9D9CEA /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; + 9DEE1C96E8F7DE29E056220373832726 /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; + 9DEECE2DC078FC22D7E4F331669AD113 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; + 9E07D3C3F59066C80D63F92CA4B0235B /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; + 9E1C415A85AAD1E8BB9D55A99A234C81 /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/load_balancing/oob_backend_metric.h; sourceTree = ""; }; + 9E2888BA9B9242FD9E07CA75EB9C5CAB /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + 9E30F3FF6DEE7537BA04B9CFC9C55804 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; + 9E4540709FF4E8E92B7A02F3A80D7B85 /* FBSDKBasicUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBasicUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKBasicUtility.h; sourceTree = ""; }; + 9E494C6DF99E643B057C1F4166455583 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = absl/crc/internal/crc32c.h; sourceTree = ""; }; + 9E4B8B8564778A3DCCABF22F0CEFCCB4 /* opencensus.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opencensus.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c"; sourceTree = ""; }; + 9E51FBA5D15F12BA812E959C354A27A8 /* legacy_inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_inproc_transport.h; path = src/core/ext/transport/inproc/legacy_inproc_transport.h; sourceTree = ""; }; + 9E5B3AD64676287314947EEFF1B748BA /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; + 9E689BFD5C4F7A5CCF55A1C8AC7053B9 /* sessions.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sessions.nanopb.c; path = FirebaseSessions/SourcesObjC/Protogen/nanopb/sessions.nanopb.c; sourceTree = ""; }; + 9E7C9D99F71A47F26AD82F5E63DDB2D9 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZGifPhotoPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.m; sourceTree = ""; }; + 9E7F54A8EFB557515B47B3394119D694 /* channel_create_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_create_impl.h; path = src/core/ext/transport/binder/client/channel_create_impl.h; sourceTree = ""; }; + 9E91CC473B80BB18D714F85077C3744C /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; + 9E9DEE182B469C187702E8D2EAB3E929 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; + 9ECD957A6397D1738445435FADB454FD /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; + 9EE67A9520F44FECDE738EB2D1C88CC3 /* Promise+Validate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Validate.swift"; path = "Sources/Promises/Promise+Validate.swift"; sourceTree = ""; }; + 9EF011C37D62CED60344F2B3C84A32A7 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; + 9EFE3804B2D745BF38D2CD849D66C38D /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; + 9F06AE9491FF6D3251D4408B75CBB204 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; + 9F09E3068B9227A8AA290D2508081613 /* dns_resolver_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_plugin.cc; path = src/core/resolver/dns/dns_resolver_plugin.cc; sourceTree = ""; }; + 9F1C1760D418DC9010FA1EF42846C05E /* path_transformation.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c"; sourceTree = ""; }; + 9F24957709F7A47A32D2145CD817D8FE /* uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_int_distribution.h; path = absl/random/uniform_int_distribution.h; sourceTree = ""; }; + 9F3A6EB208560E8D7BA8A5DDE16331C9 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_resolver.cc; path = src/core/resolver/binder/binder_resolver.cc; sourceTree = ""; }; + 9F3D871188D7F7C9DE7F1D68B13C6052 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.h"; sourceTree = ""; }; + 9F44F5AE8D7E6FEACE180E0F3BD93F36 /* status.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.c; path = third_party/upb/upb/base/status.c; sourceTree = ""; }; + 9F4F15AE20B1C0428AF21729BBE10A3B /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; + 9F7749F8921D73AC22F357589193965D /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; + 9F7BCC45CB7F626AD4CD01C37AC4FD77 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; + 9F7CDDB596B05FB09FA70EE09491E692 /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_registry.cc; path = src/core/lib/security/certificate_provider/certificate_provider_registry.cc; sourceTree = ""; }; + 9F921E4372A9999BF2BBA8DF2F0DD15B /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; + 9F9D4B343FDBCF2812608E54A4A73818 /* http_tracer.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c"; sourceTree = ""; }; + 9FA4409FEC8D1BBBD9CCA77A2C04D8CF /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/internal/message.h; sourceTree = ""; }; + 9FA887D6F643DCDF03DBFA250DB72A12 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; + 9FB7D3B6D21DE64C2F9F8607BAA5C14D /* handshaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h"; sourceTree = ""; }; + 9FB88A5CF9F15CA7BDC41E5356236667 /* http_connection_manager.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c"; sourceTree = ""; }; + 9FC583F8D59E89672E2573A46A02B47D /* hpack_parse_result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parse_result.h; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.h; sourceTree = ""; }; + 9FC9CC34E5656BF03856478F093ACAE9 /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + 9FD16681C6EAEAA67750B1F656B07DE1 /* status_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_internal.cc; path = absl/status/internal/status_internal.cc; sourceTree = ""; }; + 9FD17393B859DE46E1080533C0098CEF /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; + 9FE93FA8C24CCF9B1F26A826CC4B7AA5 /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; + 9FE96638582EE7A76411ACAAE0392254 /* tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_verifier.h; path = include/grpcpp/security/tls_certificate_verifier.h; sourceTree = ""; }; + 9FFD149E7AA437034712E2622AA57B82 /* def.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = def.inc; path = third_party/upb/upb/port/def.inc; sourceTree = ""; }; + A0006D9BB0FB6C8C61CC62E5F7AF7E16 /* SessionCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionCoordinator.swift; path = FirebaseSessions/Sources/SessionCoordinator.swift; sourceTree = ""; }; + A0296BDE48803F43E4FFE9DD1AC10C01 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; + A0337B689407131D89C420A9259700E4 /* dynamic_ot.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h"; sourceTree = ""; }; + A0370DDB1679FEFFDC8ADB1AD2A2AB3B /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; + A03CD22C1B833F55A60BB8C4C96ED7D8 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + A05EB6B98EF56DDDF631BC0657A73802 /* listener_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c"; sourceTree = ""; }; + A072111548346D33CA1DDBE86D04FEAC /* str_join_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join_internal.h; path = absl/strings/internal/str_join_internal.h; sourceTree = ""; }; + A08A3C8C8F72AEDE1CA7692285F6E8C4 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; + A097A083EFE6D8D57B02A0EB2F52F800 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; + A0AC6C0E74246B3B551206B61842A056 /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; + A0BABA23FAE113FC89089D4843CF73F1 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; + A0C32034B20DEA7AE571A0FDB972B7E3 /* http_protocol_options.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_protocol_options.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c"; sourceTree = ""; }; + A0CB0CE93CF97D1B24805F5FE34969DD /* trace.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h"; sourceTree = ""; }; + A0D1E2EC9A45ADEF806A7E27CE724BD8 /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; + A0D34FB095D42CF7A2E74C8B07DBC06F /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; + A0D88ECD4A3E237588147176C9E0D5A5 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + A0EA2117952835B6822D493844FED42D /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; + A100E21A725F3BC7B77F2772EEB2376B /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; + A1212CE60092825327BBBC84D7F91ED5 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-gen/google/protobuf/any.upb.h"; sourceTree = ""; }; + A1295530C1AB4FED108DA79D2704AB86 /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; + A1330A178B9CDF709895EAD64250C083 /* empty.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = empty.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c"; sourceTree = ""; }; + A142890662C0F81E0482E2511050E3AC /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = third_party/upb/upb/mem/alloc.h; sourceTree = ""; }; + A142A3D7BFF765357F86B1302DF07E69 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + A16526EEC18C4F50DE93F2744CB67E1D /* PromisesSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesSwift.modulemap; sourceTree = ""; }; + A177981884DE9D5346233B94BFDBC219 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; + A177CAC64CBA74DB3EF26944E403D8FD /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + A17F147FE35A304B1A2B7DF9EA37E0D5 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + A180973838CF74051CB000D5290AA0E8 /* FIRAggregateSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateSource.h; sourceTree = ""; }; + A185884C5F32F8BA1A5321C7CE0FCE31 /* FBSDKCoreKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FBSDKCoreKit.modulemap; sourceTree = ""; }; + A1B0A3749AD88DC2BEF61A35A335A7C9 /* cf_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cf_engine.h; path = src/core/lib/event_engine/cf_engine/cf_engine.h; sourceTree = ""; }; + A1B7F286BE8EAAFE783C2B7BCF44CF8B /* basic_work_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = basic_work_queue.cc; path = src/core/lib/event_engine/work_queue/basic_work_queue.cc; sourceTree = ""; }; + A1BB9164ACEC091CEBE67F427E5F9925 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + A1BC9E104FD6F3949E9304EB90C88536 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; + A1BF0EADFB4B99D5C80F1840D4629A9B /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; + A1CFF9006318172FF875618996E243B9 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; + A1E0340D35C58FA15F9AE74A4E1C39F6 /* csds.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c"; sourceTree = ""; }; + A1E2697D18720EB6999AAA802A058CBE /* inftrees.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = third_party/zlib/inftrees.c; sourceTree = ""; }; + A1E8B23DCBA9E2C9BEFDCF991A046718 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + A1EAD87D867AE9E91F4A616BAEB58CE8 /* rbac.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c"; sourceTree = ""; }; + A1EF75B569EF74151CDC67BCCB06744E /* cidr.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cidr.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c"; sourceTree = ""; }; + A1F3AFADB3282B8FFDD3011FB9E55AEA /* http_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h"; sourceTree = ""; }; + A1F495A82F0CD5BF03685A234AD607E6 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; + A208774AE971297AF8B79F73EB2BD107 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; + A210D8C33F560CBD13881279872C5758 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/map.h; sourceTree = ""; }; + A214EA7CD6E64CFC844620E5EB3E5AD1 /* router.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h"; sourceTree = ""; }; + A219F78CCB8BD7B51B3385F1A62D425F /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; + A2210E50E5950705A3EDFB8101D79A29 /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/load_balancing/backend_metric_data.h; sourceTree = ""; }; + A2256F69DE9EFDB86E35D7F8CBD625B1 /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; + A226B114C88052E9E5D026AA399B0E85 /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; + A2300D4E52F3DB19972F4A4FF1CBD338 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; + A23C841F9D82A03CD8167C5FA0ECEE8B /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/posix/time.cc; sourceTree = ""; }; + A23F05121D096FDD4655C7C46C2EED3F /* str_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_table.h; path = third_party/upb/upb/hash/str_table.h; sourceTree = ""; }; + A241EB40948D13FB13C501357C4A0FAA /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; + A25D801F44B62C1F0317EEF0D20AAE54 /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; + A261E6650AD10A310DA47294A7F69E82 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; + A26AA116C8A5AB74584E4602E6B31EC9 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; + A27C356D3B1B34EFB006E4989B771A9D /* http_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h"; sourceTree = ""; }; + A27F6F670AD603543AF9D3469C62E817 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; + A290AED07D27250B3D14E4D0CA449F8E /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; + A29984D6CA3171F4061D9E1AF5568D61 /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + A29CDC307B5AAEA1DC862B523531E6D1 /* FIRPersistentCacheIndexManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPersistentCacheIndexManager.h; path = Firestore/Source/Public/FirebaseFirestore/FIRPersistentCacheIndexManager.h; sourceTree = ""; }; + A2AE7693BF4296D2B49B90CCB2CAE97B /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesccm.c; path = src/crypto/fipsmodule/cipher/e_aesccm.c; sourceTree = ""; }; + A2AFEB8DA88850D45913D5CC66D07572 /* atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic.h; path = third_party/upb/upb/port/atomic.h; sourceTree = ""; }; + A2B2FE033875472C60370989B26D55B1 /* event_service_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h"; sourceTree = ""; }; + A2B364B3CC3E3C1CF6704440D2FA347A /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + A2BF807A37F88D3DDD3E3C33B0917046 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; + A2D0C066DC9A9C7AD7EA9FD3419EEC8D /* channel_stack_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_trace.cc; path = src/core/lib/channel/channel_stack_trace.cc; sourceTree = ""; }; + A2E428DCD6D80108985ED08D7FD5C04A /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; + A2FB85AE1D34223B0273A9BC43F2A5BB /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric.cc; path = src/core/client_channel/backend_metric.cc; sourceTree = ""; }; + A3009811B4B0EF9724FBF99936485B26 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; + A314BC0F7C658980F5A3CABFCC4E14F7 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; + A3279FE278EB23046B743F2FF2C57FDD /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; + A33D48BC425AC45AB0FCF79F242F56FB /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; + A3406D7AA9A01C9409274AC248F39BCD /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + A348E4B5C75CFA844618A2DAEB10C23A /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; + A34F8272225C80E0C30A69D22D00704D /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; + A35C852036746382C458EBE741583941 /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; + A3606FCA29FB33C713FCF9CDA7A61514 /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; + A3608605CA5FBFA1263E771DCBCFA8C9 /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/internal/field_def.h; sourceTree = ""; }; + A36E68B12F0F068E5935D455FEE80931 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; + A383B79EADD24AD543FC9C2C159D10F9 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; + A384FF9E635BC3EE5625128EACD37935 /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; + A38C24898861B4301919F2508912003A /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; + A3CB801F2A366FCF02FEBA88F769EF56 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + A3CBB2E29ECB9F97B67FCA937470CDD0 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; + A3DAEB8FC788A26332A6FE8B472C04C8 /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; + A3DCF775A082682293D3ECFC91C0B0B3 /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; + A3DDBE30C53AA26B7305D89532E5474E /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; + A3EB02BE37D724B14295F97C4E1C3B0F /* resolver.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h"; sourceTree = ""; }; + A3EB94D32BDDECDBAD037608FC642CEF /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; + A3FAA1E303655DDF15F2B874DF44DBEA /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; + A4040A683E2A7803976C77BE84BEDC51 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; + A40499E4A18034B5032E086973120A89 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; + A4068E4E2CACA9A58C2FDBFC7FDEFCA6 /* oob_backend_metric_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric_internal.h; path = src/core/load_balancing/oob_backend_metric_internal.h; sourceTree = ""; }; + A40E98C18DCD705CBCE5ADC488E91F2B /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; + A4120B479F0B22598CD098DDF4724236 /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; + A416A85FFCE8B87EE4857E352A155B05 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = service_config_channel_arg_filter.cc; path = src/core/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; + A417FC5743E6E8C3A489804572ED6374 /* backend_metric_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_filter.h; path = src/core/ext/filters/backend_metrics/backend_metric_filter.h; sourceTree = ""; }; + A42C98F161FD2FCE951D6FF5EBC3B379 /* TZAssetModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetModel.h; path = TZImagePickerController/TZImagePickerController/TZAssetModel.h; sourceTree = ""; }; + A432DF57ED705152B9DA88DA27503192 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; + A433BEF4FBC6D1CF33751A3E7D9591C3 /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; + A437F87B957CF4C7D0E6200BC877398B /* backend_metric_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric_filter.cc; path = src/core/ext/filters/backend_metrics/backend_metric_filter.cc; sourceTree = ""; }; + A43B49AAFBDF98005B7C2B682791B5C3 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; + A43FCE3FC500B05443D90B3BDEF1FFA4 /* FIRRevokeTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.h; sourceTree = ""; }; + A454F31E752B56E509B416431703C838 /* RecaptchaInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-umbrella.h"; sourceTree = ""; }; + A46A6B731E626FEF46ED4A032349DDDD /* FBSDKAppEventsStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsStateManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsStateManager.m; sourceTree = ""; }; + A472BB0E04C607F2BB82BCE2BB831A06 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; + A47CD34AB931A38DEEC12025F0D73309 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/msys/tmpfile.cc; sourceTree = ""; }; + A482B9BA20A580A96830DA516D78F85A /* ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; sourceTree = ""; }; + A48CC4717B333EBE6C975A3DFA020D24 /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h"; sourceTree = ""; }; + A48E86E21BB36FB2609D5CE5E84B00CB /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; + A4B5C67AB7176B35177734EBA54DA700 /* cfstream_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_endpoint.h; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.h; sourceTree = ""; }; + A4CA4DB4EE6A0BFA360F8C06680B25B9 /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; + A4D39F8F0B34CFF2411B19FBEC7A5B53 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; + A4F3C4DBA5AE9D01F851E5B6B1C16E6F /* client_side_weighted_round_robin.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = client_side_weighted_round_robin.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c"; sourceTree = ""; }; + A4F9DFD1621AD255EAFB1DA3554DE62D /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; + A50FD2CD9DA54BFB51B4A933BAF1A308 /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; + A518464657B4CEBFDBC5469F63EC4E4D /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + A52F20127EACF39684B68BC0AB76F5D3 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; + A5339CEA129F29A5CBFC4F190C694FFB /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; + A53824482579C66291E19124CED05989 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; + A53ABA6A6DFE65305A2D5CDAE003A6A5 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; + A54742CEF50F296F9D50729B4AFADE5E /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + A553E509A58C687A815B7831BF15DFB2 /* link.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = link.h; path = third_party/upb/upb/mini_descriptor/link.h; sourceTree = ""; }; + A55B275B632936AB3EF5955D61B7E429 /* message_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message_def.c; path = third_party/upb/upb/reflection/message_def.c; sourceTree = ""; }; + A57226099BD7918CD8488CA9D8BC5D05 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; + A57455D50771D3BF919897407F823BED /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; + A580098DD72597896AAC610B4F953549 /* http_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h"; sourceTree = ""; }; + A5836F92ACF1457466911CF016FCAC0A /* Settings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = Sources/Core/Settings.swift; sourceTree = ""; }; + A58A3D9CF25816635F0F5D974F424783 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; + A5A6F3D8AA35454B9978BD4ADB6E914E /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; + A5AA3481EDA79EF99FCA4B363206327F /* grpc_audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_audit_logging.h; path = include/grpc/grpc_audit_logging.h; sourceTree = ""; }; + A5AB6BE3F6EB0BD817ADF418CDA90EAB /* value.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h"; sourceTree = ""; }; + A5C6F1AF81DBD5C3450AD7395D4BA011 /* DeviceKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DeviceKit.release.xcconfig; sourceTree = ""; }; + A5C9B01CFB885BD5AC743F5A6D9C4BB7 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; + A5CDFE20FEB8E09D77768BF181F62299 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; + A5CF7CBB44B435F8D993901568EB0A54 /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; + A5D36C86CEE343AD9FB48858B6504432 /* xds_audit_logger_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_audit_logger_registry.cc; path = src/core/ext/xds/xds_audit_logger_registry.cc; sourceTree = ""; }; + A5D5DEFD765F7131FBC25732991DBF1D /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; + A5E0C2540BC7B029C949112C50E14E81 /* binder_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_stream.h; path = src/core/ext/transport/binder/transport/binder_stream.h; sourceTree = ""; }; + A5E2C3E267FFB24337230E76D239A84B /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; + A5E758399C9E1ACCDF32F114E98201AB /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + A5EA1E51F024272503C513D3903C226C /* FBSDKCrashHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrashHandler.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.h; sourceTree = ""; }; + A606CAC641539BDCA994FDBCFC1299E0 /* cel.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h"; sourceTree = ""; }; + A62B38ED755F685277B407ACC7759FD3 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; + A62F294D798209CB968F5CC96626B599 /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; + A6406BB3E13FF01D50BEC63228443EC6 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + A6638488C3F9E8FC1DA1C1C89C575332 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = ""; }; + A6780AF02514E89AAF2279370BBFABE2 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/mini_descriptor/internal/encode.c; sourceTree = ""; }; + A6783443F1BC5C670643A1AD06C3AB73 /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; + A67D9B600EEB932F89171189FBCB4BF3 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + A681ECD0D1A2210AE23A0683D7FE93A6 /* grpc_polled_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd.h; path = src/core/lib/event_engine/grpc_polled_fd.h; sourceTree = ""; }; + A6860DEC7B9EABD696E9B3577FF6ED30 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/internal/enum_reserved_range.h; sourceTree = ""; }; + A68AFE229271E2F2B69E588152129BA9 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; + A68DEE40B53C8BF08B94E4D84D756A8D /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; + A69623A2B08A7C7C83C374492019626C /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + A69D3F10CA02D65124B4579170ACF3A8 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; + A6A95C8C84E918F7F7697E08C696CEEF /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; + A6AA4A7FF0E2090319017EE65CC03C55 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; + A6C38AEC2231FE6EA5FBB54E9B262F56 /* security.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h"; sourceTree = ""; }; + A6D4E0AC70627E20B726416FFC20E188 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/internal/accessors.h; sourceTree = ""; }; + A6D5DC7BC3E5D72E2F4CD63CF029D674 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; + A6D64584DE70B509BA1808A32B6021B9 /* pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pipe.h; path = src/core/lib/promise/pipe.h; sourceTree = ""; }; + A6DC2D0BB7644232AA345749AB571C2B /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; + A6ED636F11D37D99AEFFA05BDB3E021E /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; + A6F19150CA4F687D5EEBC98393D97AA2 /* descriptor_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor_constants.h; path = third_party/upb/upb/base/descriptor_constants.h; sourceTree = ""; }; + A6F98CAA0A783D8563A71A1EBAB23739 /* SessionsDependencies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsDependencies.swift; path = FirebaseSessions/Sources/Public/SessionsDependencies.swift; sourceTree = ""; }; + A704CCC0E1AD7701D743E4DB6E49930B /* cel.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c"; sourceTree = ""; }; + A71243831BC5502A74FE27F0568E52EA /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; + A7203EA7D5E06795F067BC4D294A03C6 /* compress.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = compress.c; path = third_party/zlib/compress.c; sourceTree = ""; }; + A7325AC4BEC7EF7D4DCD33B02B3E198D /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; + A750799C655157E933A0E70313FF717C /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; + A758B21CF7D10A8CFD19B110022217D0 /* metrics_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c"; sourceTree = ""; }; + A75A53666FCE8BB118BD7BADA2E2D276 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/internal/message.h; sourceTree = ""; }; + A75A7A8A1A067BC1A9B9D660F3A64065 /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; + A75CD809EC9EF93591E1E5031A81D133 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; + A760168AA3B373FA217F99A9A850A345 /* stdcpp_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdcpp_waiter.h; path = absl/synchronization/internal/stdcpp_waiter.h; sourceTree = ""; }; + A766B9A92798B3815CC9802F765F873E /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.h"; sourceTree = ""; }; + A77034D42547884F23BAA02E22614B85 /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; + A778E2CD824AF7FC4304D9C82C9A3D0E /* modifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modifiers.h; path = third_party/upb/upb/mini_descriptor/internal/modifiers.h; sourceTree = ""; }; + A77E282C6D26DAFA71D7E241821B514F /* FIRTOTPSecret+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPSecret+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret+Internal.h"; sourceTree = ""; }; + A789329F38CB15D560580E9B75B4DEDC /* futex_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex_waiter.h; path = absl/synchronization/internal/futex_waiter.h; sourceTree = ""; }; + A78D284A99973E11E58017DC8BFE6082 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; + A7A5779B12A40DE7B1823D1858E94F0C /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; + A7B005FE2A069CE1D0BA190CA0E9E032 /* client_side_weighted_round_robin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h"; sourceTree = ""; }; + A7B384D2E25407442F4CA3E5C5AE8914 /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/internal/field_def.h; sourceTree = ""; }; + A7C9818B546D9CCED3A701D943397B57 /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; + A7D9CF9E02C087ECC1167FC5178B1FA8 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; + A7E3A7BB23504331E7CE7B9EF2EADCD1 /* server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_option.h; path = include/grpcpp/impl/server_builder_option.h; sourceTree = ""; }; + A7E4A2B1C71DB6E19727046CB35419EE /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; + A7F074BB9160D0B90013CCE08A570FF9 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; + A7F12467FA5E0348A357F273FF069270 /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; + A7F1BAAB150385AE49F5F6F43AA42A95 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoEditedPreviewController.m; path = TZImagePickerController/TZImagePickerController/TZVideoEditedPreviewController.m; sourceTree = ""; }; + A7F996F03B33C74E101DB6B8E815CD16 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; + A80135F3C975E3F6FD234925CB330522 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; + A81869701334A6F8771ABC95DD0F1EC7 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; + A819860B34E071FD7B8FEDAF1601EC79 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; + A828E20A2E96059DE02C6626E515B95A /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + A82ECAA8514DF1CC2D8A1C937A7A0E5A /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + A8349E32919E01CEE6DCFF6A9E532934 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; + A83C27938275852970800FB39D32E6A5 /* FirebaseAppCheckInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.debug.xcconfig; sourceTree = ""; }; + A85D2071E0503A42E850F78A0C696C6C /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; + A863F561F63772E4EA40D25E51001FC2 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + A86CDD720B85B6EAEEEE5744666EDB93 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + A873EF52B9132D479D7AB8748F13A855 /* create_thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_thread_identity.h; path = absl/synchronization/internal/create_thread_identity.h; sourceTree = ""; }; + A8754A76B454FA080798D7C35F71A131 /* win_socket.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = win_socket.cc; path = src/core/lib/event_engine/windows/win_socket.cc; sourceTree = ""; }; + A87F7A77FE5CBCF0F4B8211AB96E8B9F /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; + A88C96BC25D9E121CD1E6773737B14D5 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; + A898A17D0935D3D8BFD40415BB738673 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + A8B2393ABC2DAFCDE78E9B063BAB4F05 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; + A8D5FA44CF02AC9B7057A21A128660B5 /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; + A8DB77783FF298DCEA70F5D256189DC2 /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; + A8DC5E145459B55AA59B1554B6420E6F /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; + A8E5AD804AC063BF78242D236F27FBFC /* ping_callbacks.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_callbacks.cc; path = src/core/ext/transport/chttp2/transport/ping_callbacks.cc; sourceTree = ""; }; + A8EC6E94B958ABC6BCF2B6812528B0D3 /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; + A8FB2F653C46994AAA634997AD0E14BF /* GDTCORMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetrics.m; sourceTree = ""; }; + A90CD91C2CA9F3DE5D3FD78499B8E49B /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; + A9177839FDC01C77980CB6586BF8A5C0 /* enum_reserved_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_reserved_range.c; path = third_party/upb/upb/reflection/enum_reserved_range.c; sourceTree = ""; }; + A9182F7EC9E1A62E66B7BF03FEBEAAF7 /* cert.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h"; sourceTree = ""; }; + A918DB6FDF3B9A19BFF707A5C3173231 /* has_ostream_operator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_ostream_operator.h; path = absl/strings/has_ostream_operator.h; sourceTree = ""; }; + A9238B52DC55E7857A92C24DB4E40493 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; + A9290992FE2C03257FD12731623091E7 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; + A9381C2B1BE9DE41CCB1D1466EAF839D /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; + A938EA43BF2C02D13B5F872C4FD7C96E /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.h"; sourceTree = ""; }; + A939A7A799BB019C3195766371FED1F3 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; + A9469BE178BDE38AB715AF6BEB7E3C6F /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; + A968F1A606769CCB592834B06D61AF11 /* interceptor_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_list.h; path = src/core/lib/promise/interceptor_list.h; sourceTree = ""; }; + A96D17E103179F79402D1DE92BB649F7 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; + A96E8B2ABF1F7B815D89F00C42F30EE9 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; + A96EDB5FB7F539278A840B885F810BF6 /* FBSDKDeviceViewControllerBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDeviceViewControllerBase.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceViewControllerBase.m; sourceTree = ""; }; + A978AB01FF78E73661C19B073942A993 /* accesslog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c"; sourceTree = ""; }; + A991A1A4D79B8510BC65EFC0194A1104 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; + A9973D7E859A15AFA2524ABEFB0DF3FA /* opentelemetry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h"; sourceTree = ""; }; + A998CED494A840B340E5F0C208DEDB37 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; + A9997FD53D84EE8EE4DF0D9A412A12BF /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; + A99EFD40212F40F029BDD3B6867115B5 /* address.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h"; sourceTree = ""; }; + A9A1684DC952BC3A81CF45AA18819D2C /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; + A9A4F4ED97C9F67C241DC20F5A0C6DDB /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb.h"; sourceTree = ""; }; + A9AD9CAF8A1F59AF398A7F41EB7748E4 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; + A9AFF882188B33645A3A5623B5D60C8B /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; + A9BF44E9E7DB2DC3F3B31ABE9089B057 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; + A9D579E60B88798B2AABD0DCD66E851F /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; + AA0E8131594CC9A5D9C9EA333AD6F701 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; + AA119B238E5D86DE8EFF43C14067A33E /* http_protocol_options.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h"; sourceTree = ""; }; + AA11D58392B8F5604DE90A0476FD9D49 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/hash/common.h; sourceTree = ""; }; + AA191A57E4C2ABB47ED761D58C15BF12 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + AA1EB7A75617ADEE8CD9CD4B7A28BF18 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; + AA2493070FDBB78D4D27A5B939038919 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/resolver/resolver.h; sourceTree = ""; }; + AA27658C6EFAB3B0A518646FC99479E2 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/mini_table/message.h; sourceTree = ""; }; + AA29B87C1A0AF1D00B179597EDE35A71 /* TZImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "TZImagePickerController-Info.plist"; sourceTree = ""; }; + AA29F1DE0A895F2ABC09AF7D8647F873 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/impl/codegen/async_unary_call.h; sourceTree = ""; }; + AA2FAD40416908BCB713E3ABEE6850F3 /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; + AA4DAB59391D18493FBA7E40437D582C /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; + AA61E48E6810428B2C1035760308EE06 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; + AA6B4411B3165A412F7531337B03E4CA /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; + AA7617462D6743F53C120D48C7860AA7 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; + AA85465C87E5CA3FCE9B08A996CC982A /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/client_unary_call.h; sourceTree = ""; }; + AA8605F65B76409911609FF32EE7731B /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; + AA86751A95F80F34E3819F72C1C3F830 /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; + AA8BF8D232858F1AF12E1DAD3CDB36CF /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; + AABBDD87E1B7718E7D74B8E75ECD43EE /* cookie.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c"; sourceTree = ""; }; + AABCFB842799DDD3FD8D7097DDBA7935 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; + AAC2AE0C125568A567128996648CB0B0 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; + AACEDFA2F10D86E3E29435939170B837 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; + AACF9ABB7D784A3BE2D17B3347664429 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; + AAD083CB9C14E0E3977BA817911B368C /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + AADA90DC2A9F94E7DC7C0144D5CDEF22 /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; + AADC86E46CA501AE008201334DEEE113 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; + AAF6A40F1DDD9BBD45AF480AB91F235C /* channel_arg_names.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arg_names.h; path = include/grpc/impl/channel_arg_names.h; sourceTree = ""; }; + AAFE11D04E17F43978DC9136B77041ED /* experiments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = experiments.cc; path = src/core/lib/experiments/experiments.cc; sourceTree = ""; }; + AAFFC94B75B126EB5EEAA9E298B6E59D /* write_size_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_size_policy.h; path = src/core/ext/transport/chttp2/transport/write_size_policy.h; sourceTree = ""; }; + AB05120CF8F264A020E4126ABC10EE5A /* can_track_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = can_track_errors.h; path = src/core/lib/event_engine/extensions/can_track_errors.h; sourceTree = ""; }; + AB120210889E337D37DC8437EB793379 /* FIRAggregateQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuery.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateQuery.h; sourceTree = ""; }; + AB26A2DEEE369E8BF1423D099F5991AB /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; + AB2A7CA7594145665D438DC63219B9A9 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + AB2E3AA2333FB9EE982500716B10030D /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; + AB324347EE5934306A8D7988919FAF4B /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; AB5558D111F13EF474A73E88D75DF901 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; - AB5C773B4A3B0387A6A9A6EBCAAD5071 /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/message_reserved_range.h; sourceTree = ""; }; - AB82095AD610BB5C63FDC780A306A6BB /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - AB85944D59E911F989217BB40D67CCEB /* prioritized_race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prioritized_race.h; path = src/core/lib/promise/prioritized_race.h; sourceTree = ""; }; - AB8AD933D6930B1DAB620D880D5FB87C /* http_uri.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h"; sourceTree = ""; }; - AB8BE93703FB73093C71D82F6A7D99AA /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; - ABBA0CDDBD199E403CB1C9D8B952F0B3 /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/load_balancing/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - ABC681F28E429A49C9898FD88EC0482F /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; - ABC8773D5A70DD9E1E44027808DD0704 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - ABCE99F0D6AEEA6EC4AD39608F997CEE /* build_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = build_enum.h; path = third_party/upb/upb/mini_descriptor/build_enum.h; sourceTree = ""; }; - ABD84845D8A0EEDF18B9FEF09E745FFE /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; - ABDDD1EC3169179A286412CA8CDF8397 /* FIRSESNanoPBHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSESNanoPBHelpers.m; path = FirebaseSessions/SourcesObjC/NanoPB/FIRSESNanoPBHelpers.m; sourceTree = ""; }; - ABEE3DB0C97380CEF6BEA23535FF0FFD /* common_closures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_closures.h; path = src/core/lib/event_engine/common_closures.h; sourceTree = ""; }; - ABF05FB07E97C1B83849AF556B87C859 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - ABF16F31952F2A8B12F31E88EED76651 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - ABF98F0DD1CFA2A74F2731004493718A /* FIRCLSSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.h; sourceTree = ""; }; - ABFBB3DC0A0FCDFD2C2E3396C57A9FEE /* TZLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZLocationManager.h; path = TZImagePickerController/Location/TZLocationManager.h; sourceTree = ""; }; - AC0405CD6678F3BC476190E869950DE2 /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; - AC0712CE921470A1F3DEDD58F40A5E74 /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; - AC172A73A5633B24948F44D69F36FE32 /* path_transformation.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c"; sourceTree = ""; }; - AC373EAFABB7A39911EBB0DA89642F51 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; - AC396AEF6746FA01BB0C89657FF942AB /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - AC3AAE317E144938A56D1011932F5305 /* FirebaseAppCheckInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-prefix.pch"; sourceTree = ""; }; - AC3D4F5A47BDB70F36B9822C7B3529C9 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.h"; sourceTree = ""; }; - AC477B9C94AB7B22D9372D4F6434B943 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - AC4918D8AF65616BC5063D8E50B1B7A0 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; - AC4A3FBE868A3EBD85CCCA83D9F7E7EA /* salted_seed_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = salted_seed_seq.h; path = absl/random/internal/salted_seed_seq.h; sourceTree = ""; }; - AC64901E169229CB2F3A94FCD6915619 /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; - AC887B244F51694268AFEB3F0545D48D /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - AC88FE818AAEDD41121C337B83CC9587 /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; - AC8A63EE81C0A22AC537744778914006 /* posix_engine_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = posix_engine_listener.cc; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.cc; sourceTree = ""; }; - AC8CE9F3DA1F55533F35D78615D252B6 /* def_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_builder.h; path = third_party/upb/upb/reflection/internal/def_builder.h; sourceTree = ""; }; - AC90F4E797C338514D5FA38A48AE1D54 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; - AC99CC3586EA439CF0FD4B8709710338 /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; - AC9C5444A5F35869757075780EF3AA64 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; - ACCF12F06E22F7FB1B9CB3B580BFAEE5 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; - ACD1322F8672B8C26F63A3C806B2FCE6 /* systemd_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = systemd_utils.h; path = src/core/lib/iomgr/systemd_utils.h; sourceTree = ""; }; - ACD97479931121FF94FB89E06E2CFD05 /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; - ACDE537232AD9B5FAA5BEF758258B37C /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - ACEF0FD9347E5B955557460CB2546F76 /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; - ACF698AE5CC54C04A3BA0D2C7E3FAF50 /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; - AD0DD2D60E036CF04D2768655870DD4D /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - AD1443E8689B3683F32DD2D3D5980411 /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; - AD222EF24CB080C21D3ACB67E71E198A /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - AD33140245D52DA29F73B931B38CC8E9 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; - AD363B0BB99BBA01CE892B6DBA2DF353 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - AD4139BF94555B0D8B8FFADC80D07DFF /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; - AD465F2A1DF637CBB3D74FDA9682444C /* legacy_inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_inproc_transport.h; path = src/core/ext/transport/inproc/legacy_inproc_transport.h; sourceTree = ""; }; - AD58238889CD6D3D3A24AF12240E6579 /* tagged_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tagged_ptr.h; path = third_party/upb/upb/message/tagged_ptr.h; sourceTree = ""; }; - AD807151E44B72B3E51D456197AB0FF1 /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; - AD899BD5B8237E6163479C8380F7D16A /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - AD99245A7658F3B1E7383B357E505902 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; - ADBCD08925735E31B400A6264B07A6EF /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; - ADCBFA8D3510208DD2CFD26121786CF7 /* RecaptchaInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecaptchaInterop.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RecaptchaInterop.h; sourceTree = ""; }; - ADCDC06E113BC82E697022EAEC84C845 /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; - ADDDE82223DD40E15D4E8D9283683A5B /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; - ADDE56EAC91134005F7AC286D7290DA3 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; - ADE76618858E65A6CA71F5F957E093D6 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; - ADF1EC55A7840D7D65334E05BB08ED73 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - ADF82B364DFA6C74FA42B2B500AFC65E /* call_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_trace.h; path = src/core/lib/surface/call_trace.h; sourceTree = ""; }; - AE0ABA6C039FCBEB3CFCE9CE1D897159 /* metadata_query.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_query.h; path = src/core/ext/gcp/metadata_query.h; sourceTree = ""; }; - AE0D56A47912A9FCA2EE667A828A8053 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; - AE0F8B68EBEACD09E471B19186128B02 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; - AE14A977C0CCA543FC357102ADA3D1F4 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; - AE17B84D968AF86C253DDAFBEDBE055E /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; - AE1F206BD93F146348A18FEFA2AD9D62 /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; - AE217028E33B974468AE83533B882FAB /* memory.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = memory.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c"; sourceTree = ""; }; - AE24F5ED35B0F33BA8E747BDF38374BF /* xds_http_stateful_session_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_stateful_session_filter.cc; path = src/core/ext/xds/xds_http_stateful_session_filter.cc; sourceTree = ""; }; - AE25C6BC09D11A6EFE958A15BDB92F5D /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; - AE2EBA3DE3FE1EE6AD0AE440FEE89EC7 /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; - AE47A5A1D31DBCFCF671036F3B85179E /* modifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modifiers.h; path = third_party/upb/upb/mini_descriptor/internal/modifiers.h; sourceTree = ""; }; - AE4EDD599AF79A7B6FA3B5B64C2A2914 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; - AE5BF4282C085DAD045C3AADB7BF92BF /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - AE5CE8535F193916A602F693915F5982 /* value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.h; path = third_party/upb/upb/message/value.h; sourceTree = ""; }; - AE5D85ED5F0FD62C4963F5BAD8BEED77 /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; - AE7B271237ABA3B085F81979F52FF6B2 /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c"; sourceTree = ""; }; - AE857BE4E180E7276141FFB2C2A4EA46 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - AE895694410F0A9D7B0448A06943CE25 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; - AE8A8A548220BF2BB9332E6CA4C799D4 /* time_zone_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_posix.h; path = absl/time/internal/cctz/src/time_zone_posix.h; sourceTree = ""; }; - AE99891C16160E2328E3142E863D0354 /* DeviceKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DeviceKit.debug.xcconfig; sourceTree = ""; }; - AEA7E44094FF9C17BBFA81DC1E5E55C8 /* zipkin.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zipkin.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c"; sourceTree = ""; }; - AEA9A642C5AB014E46B6B6AF751EC236 /* FIRCLSExistingReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExistingReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSExistingReportManager.m; sourceTree = ""; }; - AEBE1A77189E6E23143E7AA6735DCADE /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; - AEC3FB663079EBD822BB191E81396496 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; - AEC74B617926B69A0B3FE84EC2AB2442 /* FIRAggregateSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateSource.h; sourceTree = ""; }; - AECFB02F6665D6DDD0AD5499AFA5CE24 /* cidr.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h"; sourceTree = ""; }; - AED250AA043E3DA005146A2C213678ED /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; - AEE16C8D0C391914F6DAD221B7BC0BF6 /* percent.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h"; sourceTree = ""; }; + AB5A210C7D1C45B7C1EDFADF3A97BA91 /* thd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd.cc; path = src/core/lib/gprpp/windows/thd.cc; sourceTree = ""; }; + AB7487B883D58B9571CDB9D14E78229D /* FIRCLSOnDemandModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSOnDemandModel_Private.h; sourceTree = ""; }; + AB7C827319214B0C570025E230D6E2BD /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; + AB7D2CC606A12CE116FD07A90AEDB502 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; + AB83BDD518F6F9DC015F582D93E6CE09 /* FirebaseCrashlytics-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCrashlytics-umbrella.h"; sourceTree = ""; }; + AB86A8F83E82E726079C4CA48B6C839A /* accesslog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c"; sourceTree = ""; }; + AB9881DD4F24FB1A01C0C5954F941E4D /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; + ABC69D5F6D619AC425405764076AA614 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; + ABD5A39FD7E0E2055338521FE5EB4682 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; + ABE2413DB35E9691F048CB90BE132609 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_factory.cc; path = src/core/client_channel/client_channel_factory.cc; sourceTree = ""; }; + ABE361598A332633F7D8D1AD38F95E11 /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; + ABED0EE16C5EA4CE6E903680200847C9 /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; + ABEE231E0FA1293782F34A562383635A /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + ABF0AE9534086FA1F906261D824385BF /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; + ABFA95D5A9FA6D08CEC342F1573409F8 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; + AC059B96F9DADED28310C06307B6C584 /* GTMSessionFetcherService+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMSessionFetcherService+Internal.h"; path = "Sources/Core/GTMSessionFetcherService+Internal.h"; sourceTree = ""; }; + AC11F332316F4FF2E0EA6873E33655D1 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + AC236229B1BC668A1C910286757328CC /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; + AC3F17882BB5E6303C3DFC803432680F /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; + AC4467DBD8EBFB64BB18755BB70CA7BB /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + AC4E6DF5FA6367DCB929C8578F84FC7C /* cidr.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h"; sourceTree = ""; }; + AC73FD9713EF2177257AD2D96A972FA8 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; + AC826BD434761D664ADC85D3F8AA5CD9 /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; + AC8AB68E2E9105A16B556B9879BBE844 /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; + AC91445F66E778997A97F9466B5422BB /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; + ACA2EF898C85A62C612837068F5B2E5C /* tls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h"; sourceTree = ""; }; + ACA7EAF884C4247EA3B05047EBEBC669 /* route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h"; sourceTree = ""; }; + ACAAACD4AF9B293E5F739430F3D32B5B /* FIRAuthRecaptchaVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRecaptchaVerifier.h; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.h; sourceTree = ""; }; + ACBBFEE7E089AAB61CD6D340E05BB18F /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; + ACC607E78A58A421AF9E27D6FB8354BF /* bloom_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom_filter.cc; path = Firestore/core/src/remote/bloom_filter.cc; sourceTree = ""; }; + ACCD20269829B44942C9917B36030D3A /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; + ACCEF90EAF2427E7673A88BA8B4A200F /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; + ACD1B12E4F900112097501174DD7DE46 /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; + ACE7D1D0A2BD2EE17BB81AC243506556 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/windows/tmpfile.cc; sourceTree = ""; }; + ACF32DED9D85FA797B56A07C1493C907 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/client_channel/client_channel_channelz.h; sourceTree = ""; }; + ACF876A9BC32A7421CF07F9A28C1F1BA /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; + AD0BEFA1A101DF255F933CA3E24DDA74 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; + AD24BA53FC6DFBD6175D54A192B8110E /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; + AD2591123761D0231D34CA1DB3C482BD /* kyber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kyber.c; path = src/crypto/kyber/kyber.c; sourceTree = ""; }; + AD2DAE0893C53A282740663127D76D95 /* dns_resolver_ares.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_ares.h; path = src/core/resolver/dns/c_ares/dns_resolver_ares.h; sourceTree = ""; }; + AD3E3312B2C72FE2F3DFAB4EFA94BA22 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; + AD4713D32CE013043C8D0A38E24F98E1 /* time_zone_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_info.h; path = absl/time/internal/cctz/src/time_zone_info.h; sourceTree = ""; }; + AD55A0009FD747E50AC97E64086FCDD6 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; + AD6BE19D286C1C2AC2B31DB61159FE1D /* int_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int_table.h; path = third_party/upb/upb/hash/int_table.h; sourceTree = ""; }; + AD7A6710522D06E0F1CC7067623893D5 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + AD7B09DE650C0EE784AB640E1BA838C8 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; + AD869BB8BF39489293C759D4BBB92D2A /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; + AD8866F827589E6FEC13BA2A29F82AF4 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; + AD905B9EE0889B316BDFEAC7ADCFC5FB /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; + AD931362E2A7841BD45D97C9C40EEFE1 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_poll_posix.cc; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.cc; sourceTree = ""; }; + ADBA1186C42DFE86E6EC166178309AC6 /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; + ADBAFEDE5BB1E119278D4E241EB99910 /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; + ADC0B798E90EDF74D0F4767D9BA6878D /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; + ADC2D303E3791C4139CBA1DB42F88F93 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; + ADCBA403E3CB954C6BA892CAAEF6703E /* zipkin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h"; sourceTree = ""; }; + ADD6DB21101D6BBF4DB89A78584021DE /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; + ADDB285F6F29B08791666BABE495037E /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; + ADEA5E6064A8A26F9328534D40C9DE5D /* posix_engine_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener.h; sourceTree = ""; }; + ADF6BB6E1ECA36CA9AB6068CF190BFD5 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; + AE05C1585C43854A49BBD77500251832 /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; + AE1120118923B37A7C51A64A96B71CCD /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; + AE477F0B0BCF761136DB1D2B9A632D2F /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; + AE4BEFF3F554E9CF4338BCECD21FF702 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; + AE5E4C76F0113C682819C79411F73D76 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; + AE5E97E013C978394860065C3A68D3F4 /* type_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_list.h; path = src/core/lib/gprpp/type_list.h; sourceTree = ""; }; + AE5EA098E3A0EDFBD639BA0105E60CDA /* tagged_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tagged_ptr.h; path = third_party/upb/upb/message/tagged_ptr.h; sourceTree = ""; }; + AE640469579EBD27F08779D242AD7D48 /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; + AE6449E9DD7C62B24AFDEBC9A75C39FD /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; + AE65939E62C384EC04C88C231099B7C1 /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; + AE71F8BF69A179A366C9AC9CF0A686C8 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h"; sourceTree = ""; }; + AE7DB61CD4A0EF5FF27F3110E65A8414 /* ratelimit_strategy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h"; sourceTree = ""; }; + AE84F6D661D60A49922B2A22D1D64FE5 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; + AE918E2631835018BD3E2ABD906C2C13 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; + AEA233ED2C54C8E2744A66184C64E8FD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + AEACCAD2816169703A007A5C6E4D3E9A /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; + AEBCD906B1DD2EA355881B0F60DC4C2A /* FIRAggregateQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuerySnapshot.h; sourceTree = ""; }; + AEBED8B8DC2FFCD82A20E83720FDF709 /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_throttle.cc; path = src/core/client_channel/retry_throttle.cc; sourceTree = ""; }; + AEC20418D629766AF0F83531C9B7FC95 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; + AECF12540D3F76BD5B9490E662ADEE53 /* xds_override_host.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_override_host.h; path = src/core/load_balancing/xds/xds_override_host.h; sourceTree = ""; }; + AED687A52D8EBF4B959841FA11A22CE1 /* zutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = third_party/zlib/zutil.h; sourceTree = ""; }; AEE6891957155FD370986017B47C8050 /* Pods-SwiftProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftProject.release.xcconfig"; sourceTree = ""; }; - AEEC058B5C99283526322F770386C56A /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = src/crypto/fipsmodule/cmac/cmac.c; sourceTree = ""; }; + AEF15F915C0561104003BD8D387A4A26 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; AEF1DC80F0EB62580B81D18786BAF924 /* FirebaseCoreExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreExtension; path = FirebaseCoreExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - AEF49F7B6696C2939641874D20B6E0FB /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; - AF0589BB1868031242E6E43AE46B2AAD /* proto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_utils.h; path = include/grpcpp/impl/proto_utils.h; sourceTree = ""; }; - AF0708D12E8B05F8595E8C46478E3524 /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; - AF161B7323D899687BBCA264CCC2B005 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; - AF333E551621E760F0FA3D0CE50A1899 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-gen/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - AF34E449CD21237B1A2BF0FFBDF78A61 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; - AF3567D551D26394B659FF290349BAA6 /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; - AF5425E2B69D1389735B227D37F6E085 /* metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = src/core/lib/transport/metadata.h; sourceTree = ""; }; - AF59B852F9AB0BD693F743C3ABB7A72D /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; - AF6D89DDC58CF9F7DA4F14CE9FB90915 /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; - AF6E4CD95C9AC94855CAB68D47E8E740 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; - AF8EFF69AAB989ADEBB256E5688E34DA /* grpc_tls_certificate_match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_match.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc; sourceTree = ""; }; - AF940A0212B08D0D802DDABC3A6D9D9F /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; - AFAE8203212CEFA04567518E0A94F53B /* time_zone_fixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_fixed.h; path = absl/time/internal/cctz/src/time_zone_fixed.h; sourceTree = ""; }; - AFB23442BC4CF254EBB15E48FB4EB0CB /* constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants.h; path = third_party/upb/upb/wire/internal/constants.h; sourceTree = ""; }; - AFB98DEAD8BEE879F834C9642D41E992 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h"; sourceTree = ""; }; - AFCD90614BC993A382CC0296945F542D /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - AFDCF905E2C34DBF10EA316C2D738E37 /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; - AFEBA47434CBDA263BA9ECD88A3A17C4 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = strerror.cc; path = src/core/lib/gprpp/strerror.cc; sourceTree = ""; }; - AFEDD2A9D6D12F1B2491FF874A314536 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/completion_queue_tag.h; sourceTree = ""; }; - B00CDE5FD43FB743D491D3B2944AF9B6 /* for_each.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = for_each.h; path = src/core/lib/promise/for_each.h; sourceTree = ""; }; - B01008C3E88B365E3BF2891044F5E953 /* FirestoreQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirestoreQuery.swift; path = Firestore/Swift/Source/PropertyWrapper/FirestoreQuery.swift; sourceTree = ""; }; - B0108297D325CA8348D69D878DCF02EB /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - B01785E081F3CB4BA0398E2D3B532C27 /* atoi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = atoi.c; path = third_party/upb/upb/lex/atoi.c; sourceTree = ""; }; - B01CB988D7B74C259CF0001B34E8B140 /* http_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_trace.h; path = src/core/ext/transport/chttp2/transport/http_trace.h; sourceTree = ""; }; - B027159E4C3BF871FA7457D3A4C542D3 /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; - B02FEABF609569A6858871DDCCA7FD04 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - B0526F9D4F0D27505D741F0CB3D5CA1D /* stateful_session_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_service_config_parser.h; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h; sourceTree = ""; }; - B05FDF1E1B8ED92C92E1E2C79FC64BDB /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; - B061F5A1DECC81C84C43CB92CA3CBF9E /* grpc_audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_audit_logging.h; path = include/grpc/grpc_audit_logging.h; sourceTree = ""; }; - B06666DF1F14DD98B59924FA59FD9113 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; - B066B1A69ED23E0F0CC29809ED92A7B5 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; - B066C6C9177DFDB76F552DD31627279F /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; - B068C4AC9256A5347976517581E9A478 /* def_pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_pool.c; path = third_party/upb/upb/reflection/def_pool.c; sourceTree = ""; }; - B079B63B5B748E49CCF3086A6ED2120B /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; - B07F26500D6EE123DD36971F43F776AF /* hpack_parse_result.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parse_result.h; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.h; sourceTree = ""; }; - B0A1C35E3A7EA7EDBB42ADC8D0229C63 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; - B0AB138575D3C5AEA793BBC5DCA98476 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; - B0C107E53C8C5BFAEB99A72D7F41694F /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; - B0C82587757B393931773699FB1C4BF3 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/accessors.h; sourceTree = ""; }; - B0CB1098352CB9337FF27EFFAA005F10 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; - B0CBA9C9CD7FC15F03D8FD2D47DA01EB /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - B0D2C5C0C00806766B0991291F67CF1F /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - B10A6028962E1C3BB71E4FC895BE27B9 /* LLCycleScrollViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLCycleScrollViewCell.swift; path = Lib/LLCycleScrollView/LLCycleScrollViewCell.swift; sourceTree = ""; }; - B1134EB811D808F9C741E965BFC1EB86 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/event_engine/slice_buffer.h; sourceTree = ""; }; - B114AAE69DDAB950137057DBA057492F /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env.cc; path = src/core/lib/gprpp/windows/env.cc; sourceTree = ""; }; - B11633FDFBFB52E1505533DDD53B847D /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/metadata_map.h; sourceTree = ""; }; - B11C0B3997386B33E4E9F736CF1FAB37 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_subchannel_pool.cc; path = src/core/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; - B12C3BF47A010032C7302640546A8A34 /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; - B13534074AB72464697C11E2B5F28428 /* udp_listener_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c"; sourceTree = ""; }; - B13978A05460CA0DB0D7DC3C3D4305ED /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; - B147BC8F2062C8D65F2F866A2E44EB92 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; - B14C077E2D227F6200413E5BA1DC7F84 /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; - B158402490EB5CEB3B93AFFCDBA5B45B /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = src/core/lib/gprpp/strerror.h; sourceTree = ""; }; - B15D382C18A7B0A563FEDFE6362627A7 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; - B164E7E3843AE4B746223EDEB5DD1002 /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/load_balancing/backend_metric_data.h; sourceTree = ""; }; - B17A508793F5BC60CAA2726318F0F82D /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/client_channel/client_channel_factory.h; sourceTree = ""; }; - B189353CB9C3D3FB4B1E9734F31BEF48 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/event_engine/nameser.h; sourceTree = ""; }; - B1A920B1174F03E08228E8AAA74B9A1F /* message.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = message.hpp; path = third_party/upb/upb/reflection/message.hpp; sourceTree = ""; }; - B1BF08162129789B1D2F668A1062877B /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; - B1D272591C32A4B39E06C93CA7546827 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; - B1DF0D8B0AFA264C9608EDA4DE116621 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode_fast.c; path = third_party/upb/upb/wire/decode_fast.c; sourceTree = ""; }; - B1EAA66CBE5438D725BA35266F95D8EF /* legacy_inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_inproc_transport.h; path = src/core/ext/transport/inproc/legacy_inproc_transport.h; sourceTree = ""; }; - B20C2DD31BCCAC02D21F2C4B63E6DA9F /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - B22BFBFD3AE4C61B4DB60808662C10A0 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; - B22D22282B23C5B5BCFEE73E00BDC66C /* tls.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c"; sourceTree = ""; }; - B230A0CF1D5E7A3C172AF518AFE22659 /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; - B231B1BDA8614467FF05E7411E302218 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/sub.h; sourceTree = ""; }; - B235EB0FF176ADCD735F6E06B3370586 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h"; sourceTree = ""; }; - B244D261883B50E1C3C2083834C835E1 /* cidr.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cidr.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c"; sourceTree = ""; }; - B24EF83E43B5A3D6F25A6207DDA19E04 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - B25A34F5A362169DF84C7FAB3FE0EC03 /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; - B25C018FE7E033587EC9C05966287100 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/msys/tmpfile.cc; sourceTree = ""; }; - B2670F48828D3BC8B0E815CBDE2DB3FA /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; - B272F18B136BDB1DB05A03FADC107366 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c"; sourceTree = ""; }; - B2770159786DE653FB3D3B87BC458B0E /* ref_counted_dns_resolver_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_dns_resolver_interface.h; path = src/core/lib/event_engine/ref_counted_dns_resolver_interface.h; sourceTree = ""; }; - B284799AF25F8EFAFE22F828B2A7C919 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; - B2937658A84C4EA9BAAFD51052180EBD /* cidr.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb.h"; sourceTree = ""; }; - B29744C2B19B1609688B88915F923ED2 /* retry_filter_legacy_call_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_filter_legacy_call_data.cc; path = src/core/client_channel/retry_filter_legacy_call_data.cc; sourceTree = ""; }; - B2CA26278F8057772A8FFEF0C113D89B /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; - B2D048806C0A92924E04A004AC375B8B /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; - B2DE43F34868D1CB0DB5565EA4E9E52B /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; - B2E820A1DA0CD3FD0C3394908ABD99BE /* xray.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = xray.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c"; sourceTree = ""; }; - B2F4551A55AFEBB678B1F21F7278CD4A /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; - B301C71439E619547A869FD4EF8C46C5 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - B303A5C1D13F5BC3E0BC6E640492FF05 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; - B3120E1C9C8E77BAA6A62AAEA975311E /* Promise+Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Await.swift"; path = "Sources/Promises/Promise+Await.swift"; sourceTree = ""; }; - B318381DC199B7BB2F63DFB7FA74D04C /* http_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h"; sourceTree = ""; }; - B31981322C27D274AA72AB8536896007 /* tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials_options.h; path = include/grpcpp/security/tls_credentials_options.h; sourceTree = ""; }; - B3221FD57CB7278857D28E46F4B16C99 /* server_call_tracer_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_call_tracer_filter.cc; path = src/core/lib/channel/server_call_tracer_filter.cc; sourceTree = ""; }; - B32E391D981B9EC01C539196532A196D /* tls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h"; sourceTree = ""; }; - B339189D4A45506F4320592CBD21CF85 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; - B33B91DC43B41C483F326871F83CD046 /* cookie.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c"; sourceTree = ""; }; - B33F58048DE87EABE6BB2926AB523372 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; - B34A57AEB70C9888B5DA75870D26DB58 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; - B355B8835E022E15E98DEFA149A073B0 /* FIRLocalCacheSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLocalCacheSettings.mm; path = Firestore/Source/API/FIRLocalCacheSettings.mm; sourceTree = ""; }; - B355D4A9D2C0F27C7FC653A09A6EF486 /* FirebaseSharedSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseSharedSwift-umbrella.h"; sourceTree = ""; }; - B366CF55B8D8E43FA4A5E47FA8AF6EFF /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - B36FB913CA5D133749D3A42B7DA28950 /* sensitive.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c"; sourceTree = ""; }; - B370D65D7C04922AF4979722B0D4820D /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; - B3775A68305B57212A7ABBF5B3A757CA /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; - B37E9DE4395ED895AF8C88D4DE4C90E0 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; - B3820F542CDBC0B47721991A152940F9 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - B386F8406DDB7A34EB393D7DBA02E033 /* service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c"; sourceTree = ""; }; - B398D7F9DAF5742A47B0095A04F8019E /* GoogleDataTransport+GoogleDataTransportProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "GoogleDataTransport+GoogleDataTransportProtocol.swift"; path = "FirebaseSessions/Sources/GoogleDataTransport+GoogleDataTransportProtocol.swift"; sourceTree = ""; }; - B39E31FDC2A8951A1258594074C0F931 /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cds.cc; path = src/core/load_balancing/xds/cds.cc; sourceTree = ""; }; - B3A3E771518CF728A4E77F87206B70CB /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; - B3A7DE1D28003AF9437D573960C616EE /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; - B3BEAB3D4F986193F588A0770B05D9A2 /* ref_counted_dns_resolver_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_dns_resolver_interface.h; path = src/core/lib/event_engine/ref_counted_dns_resolver_interface.h; sourceTree = ""; }; - B3DF54E2B197A9FB111B3D52383E071C /* thread_pool_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_pool_factory.cc; path = src/core/lib/event_engine/thread_pool/thread_pool_factory.cc; sourceTree = ""; }; - B3E69C1F3348373C1CB7108D5BD6EE5E /* json_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_channel_args.h; path = src/core/lib/json/json_channel_args.h; sourceTree = ""; }; - B3FBEC2A5EC429C74513E13DDC3BAD97 /* FirebaseRemoteConfigInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfigInterop.release.xcconfig; sourceTree = ""; }; - B3FED989AFF9EACAA11CADCF7F10B3CD /* client_metrics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_metrics.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.h; sourceTree = ""; }; - B4140EA64D386BF303D7C6A22BD3E982 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; - B4205843BB8CEFF1AD4951B5312524B2 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; + AF09B5128F73173272282257C4FAECEA /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/client_channel/config_selector.h; sourceTree = ""; }; + AF14715E92FED75042552BA9CDE794AD /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + AF14C6A42A92E6A06BDF9023BABC3809 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/windows/log.cc; sourceTree = ""; }; + AF21B2DA51F28FFE184F0AC17A6064E2 /* trace_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb_minitable.h; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h"; sourceTree = ""; }; + AF29B92F677554E30150A34266A84C15 /* FBSDKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInternalUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m; sourceTree = ""; }; + AF2DD7F841C5756293E2BE4EF2108499 /* json_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_reader.h; path = src/core/lib/json/json_reader.h; sourceTree = ""; }; + AF3A7E7AFFCB116BCA58A62A344EDB54 /* http_protocol_options.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_protocol_options.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h"; sourceTree = ""; }; + AF4A5248F7E2949126EE05A4713EA468 /* FBSDKErrorReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorReport.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.h; sourceTree = ""; }; + AF4AD6A2180D07EB5C4AA61083F8E942 /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; + AF588AEEF19DF64754F4B70B3086B6EC /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; + AF61804A5FA45D2047D450F82A3AD0E8 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/flags/config.h; sourceTree = ""; }; + AF75B9495B657565F351B102C6424CE3 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/decode.h; sourceTree = ""; }; + AF7AA74061514853C401E2E33D88D5E8 /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; + AF8F02067850A7B3435ABF30B4D7A1A4 /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; + AF8F6CB7209392FB9039683874FDD99C /* xds_resolver_attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_attributes.h; path = src/core/resolver/xds/xds_resolver_attributes.h; sourceTree = ""; }; + AF97B3143BB8AA31449BADCC490A4224 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + AF9EA33204474B97263677EDA6324E05 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + AFA0932073EB862803118E9388E41568 /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; + AFA11A1FEB194FD02A19A5BA48562BA2 /* stateful_session.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stateful_session.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c"; sourceTree = ""; }; + AFA1C856D66D434A1353FE1B7FC28303 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; + AFBA883056F6004C5DF7FF56CDE06192 /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; + AFC0C60DC5CC38FA0E83B8C7040351E1 /* FIRSnapshotListenOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotListenOptions.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRSnapshotListenOptions.h; sourceTree = ""; }; + AFEB6B47011FD3F4C162EF39406CD20A /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + AFF4A17F969042C0C8E709DF4748D818 /* call_final_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_final_info.h; path = src/core/lib/transport/call_final_info.h; sourceTree = ""; }; + AFFA3D16229CA2AA529DE03B9A7789A6 /* json_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_reader.h; path = src/core/lib/json/json_reader.h; sourceTree = ""; }; + AFFF3BCE5187DD17D7F273D9B532CAD6 /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; + B00BE153CCA246A3E52CD57084EAA180 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/client_channel/subchannel.h; sourceTree = ""; }; + B026A628E054EE5E7C290F57E9AE6CAF /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; + B02E171EB1A7BBB98315BC770AC7BB40 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; + B038B1A210499D54A253789D418301A1 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + B03A4227E1A0DB6BFD7CB042796D6A57 /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/resolver/polling_resolver.h; sourceTree = ""; }; + B03AD2AD291D8DEC20611791A57ABE7E /* directory_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = directory_reader.cc; path = src/core/lib/gprpp/posix/directory_reader.cc; sourceTree = ""; }; + B041B5D4C0C4B0948DCA54AE42A46156 /* certs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h"; sourceTree = ""; }; + B04A29837D30945D599277BDBCDB8F00 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + B04E8860048FAC80E6A3CD769EEB880F /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; + B04F90894C8A4799A3264F36BFFE8E0E /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; + B0503EDDAE5DABD96342AA64D67700F9 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; + B0579682425E9E8135CE7A3796D2481C /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; + B05FA754E8AA3ECB85A06C8D81C34836 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + B05FB9EE75731B694ED3FE13FBB27F23 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; + B06900BF9E38790921A94BFD425B6999 /* xray.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h"; sourceTree = ""; }; + B06F6F0D7A7E0D04E1257CADE292FFC2 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; + B075B5E22B3D9365467D4B17D89289F1 /* pick_first.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h"; sourceTree = ""; }; + B084D75CC01E46D4E5F34CDA777C20D5 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; + B0AE11A944432EC99725C6DB37B82464 /* FBSDKPaymentObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKPaymentObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKPaymentObserver.m; sourceTree = ""; }; + B0B9C25FB7463848DDB0BA395DE1C722 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; + B0BF56EDFA54A7949A5A3C82421E8CF0 /* stateful_session_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_service_config_parser.h; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h; sourceTree = ""; }; + B0CEA750A3AFE2CF950ACB69E12220CD /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; + B0D4AF986952BE6650CE7A3AE713E4BD /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; + B0F136FDF5E179854B29C648B741098E /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; + B0FA01BECDFCA00BEBA30538A6626A0F /* FacebookCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FacebookCore-Info.plist"; sourceTree = ""; }; + B1016DF3528BE8D6D369754573F1DCE2 /* cpu_aarch64_sysreg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_sysreg.c; path = src/crypto/cpu_aarch64_sysreg.c; sourceTree = ""; }; + B1049577D19D75BE33375C98A9B25854 /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; + B106E088D91D476BDDB2DDDB7C9F5DF3 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = ""; }; + B10F00707D932A96B878E2BDBF93A0B6 /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; + B1367008FCE7E88213D56A69DEF93A5A /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; + B1420F151CEB85870E38AA3030CA26CB /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; + B14E6D31859D5414F45A357823BFCC03 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; + B15107242092F740F2B9FCB2EC6C99A1 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; + B15F654D2B9D66123601CCE42C3B3336 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; + B15F855076143CD202655A974A63FD2E /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; + B162B7516086B48EC48F12D3A3A41FE5 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; + B16E348A9C8869BDFE6E71FC6DB1CA82 /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/utf8_range/utf8_range.h; sourceTree = ""; }; + B186C0E69C8434F22CFB8767B7D0D5C9 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; + B188DD2B439A310B2387368DB23624B0 /* ping_abuse_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_abuse_policy.h; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.h; sourceTree = ""; }; + B197209FA52FC35E7F4CEA44CDE83ECA /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; + B19DEC87C65D84B485E0D3F2CA8C0D23 /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; + B1A2CD8FA60CFB2836404A83141E1D67 /* cpu_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_detect.cc; path = absl/crc/internal/cpu_detect.cc; sourceTree = ""; }; + B1AE9CEC1FD5628E6FFEA201AC69D619 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; + B1AF30AFFEB53958AF5F861DE2552E84 /* p256_64_msvc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64_msvc.h; path = src/third_party/fiat/p256_64_msvc.h; sourceTree = ""; }; + B1B1E98B089B55439C9784C6B139EB7E /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; + B1B813F26E57C67E3CBC76288F80EE5D /* trace.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c"; sourceTree = ""; }; + B1BAD7F854BD2776E319B9C053031ACE /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + B1BBAA2E478B1D32425EAE054AED6DD2 /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; + B1C2E10F035D823B9FAE82D86DB2BBAB /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; + B1C97D4C10CA968AE9816A4BD2393949 /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; + B1D48A38320C36603A5B34338425DD44 /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; + B1DB1ABFD4533C640AC2AF63A3ED7906 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_connectivity.cc; path = src/core/client_channel/channel_connectivity.cc; sourceTree = ""; }; + B1DBCAD7C85D2A94478872C800211D61 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; + B1DC8022568459FE71B141DAA3002060 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; + B1E2A7A2EBEB06AC87C85D76C90C75D9 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + B1F165989DA7AF79FC9738021A74A432 /* _FBSDKTemporaryErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKTemporaryErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h; sourceTree = ""; }; + B20F9C15D11ECCE4BC82BA68DA7EBF76 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; + B2248AA9FCCADD16014C03D849BFA077 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; + B22D517D453794E612F37523DF0893DF /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; + B22FD52C153583C274B8A3C2D13DC7CC /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + B2332B067CC1E5D41E956DFA7CE6E4FA /* charset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charset.h; path = absl/strings/charset.h; sourceTree = ""; }; + B23934F1739FF1AA746ACAC368480877 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; + B2429C38B67F25B88647E5CF5C0592F8 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + B259355D240494FF7C1A54F98ACF95D7 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + B26213FC6433C650BA3DC049A1C546C9 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + B262FDFF25FBF501EAF4E6BCDF41B01D /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; + B26930BE4B9C2AAC061C31BB634A6CF7 /* FirebaseFirestore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestore.modulemap; sourceTree = ""; }; + B269678607D0E40A0A57F85B76C4B3F8 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + B26FD1D1598465E5DE00588FD86A9041 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; + B28984BDF838333CB8952874EA66BB3B /* FBSDKTriStateBOOL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTriStateBOOL.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m; sourceTree = ""; }; + B290FABD7570E8005636702136638E20 /* xds_lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_lb_policy_registry.cc; path = src/core/ext/xds/xds_lb_policy_registry.cc; sourceTree = ""; }; + B29360A816E5924062EF43DA3C9635CC /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; + B2A4E4C69B2E53B447AD72CB49C4D400 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; + B2B3CA84D20F17D3835780FBAA3EE4AD /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + B2E0095DFFBC1D88C70E1EA45883A0AF /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; + B2E41B159D97428071D2CDBC7EEDECDF /* http_uri.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h"; sourceTree = ""; }; + B2F74A5DDDDB2E8913036A46A39A3C18 /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; + B2FA0C9AC2F95138B3B3325DF690AE15 /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; + B2FC711BC18441ACC64B72AB6710E87A /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; + B302C09BC4F54309768EE89F711653EF /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; + B3038FE31436A153A8F72A679246704B /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = google_c2p_resolver.cc; path = src/core/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; + B30883073CF68E35297B32F1520F322B /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; + B318A371D9CD80C5D5A07B796EC32622 /* cord_rep_crc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_crc.cc; path = absl/strings/internal/cord_rep_crc.cc; sourceTree = ""; }; + B3201C06F076810E26EE8DFE98351B62 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; + B3226F7D8B5CFAA18479D8F1BDC064DD /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; + B323A490CB91F08A74B01482367F25ED /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; + B32A488D1B889B720B34A671C144A09B /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; + B3441A6985B0B6BC52EDF7C459D00D61 /* grpc_method_list.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_method_list.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c"; sourceTree = ""; }; + B35D736874D591A0DEB57CC53C0F46E3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + B35FE019A1F49449178C14147BB7A398 /* resource_locator.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h"; sourceTree = ""; }; + B3696CB2FCD8C52F7A2F485877153B54 /* client_side_weighted_round_robin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h"; sourceTree = ""; }; + B36D13C0B1B7A537187B6AA728ADE52C /* posix_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_endpoint.h; path = src/core/lib/event_engine/posix_engine/posix_endpoint.h; sourceTree = ""; }; + B36EE13ACFCA254C77957C2DF8C3A270 /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; + B36F399DC1B9192E5FD5BAA0BDA5E3D4 /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; + B36F583FE29809D6895D91EA028AF69C /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; + B3785B2FCB259680D00D930C5691C4CF /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + B38B90C2E8CE2F2A0FBF17D78E375239 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + B3957F2DB20B71C54B0D68B7CF1793D8 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; + B39D05A6C9D19FCCB15C3A5300926349 /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; + B3AF27A10AC3A14EDE01BDC617215D80 /* cpu_arm_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu_arm_linux.h; path = src/crypto/cpu_arm_linux.h; sourceTree = ""; }; + B3D0966C3E1529754CD35C7D2C851D3D /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + B3EEE40DD6739F80BA48749E9960A5FE /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = absl/base/no_destructor.h; sourceTree = ""; }; + B40028E058636EB9C0AB271FCD1CC7D8 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + B410220C2B10321CEF85FBB00A8A7875 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; + B427E7685A5923A4C9B85ED1FFFFEF86 /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/resolver/polling_resolver.h; sourceTree = ""; }; + B42FFC28C18799221CF205D4D1727766 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; + B431E850FE0204967E67090AA5A47E71 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B43F0F0C2E0A71CA7C11F5A7C878BE69 /* migrate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c"; sourceTree = ""; }; - B440FE0F34265799B65625C092CC12C2 /* reader.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = reader.c; path = third_party/upb/upb/wire/reader.c; sourceTree = ""; }; - B4447F50AFD996D792C21F631E370100 /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/posix/cpu.cc; sourceTree = ""; }; - B45DDC9E822D0D1A7EC39B8EF10186B7 /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; - B4624AA2AD696D60F6B609D3309A3648 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - B46AC2E45A54E30799C6B7A9871B1E42 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + B43B269F915B2218CF0904DAE2AB072D /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_subchannel_pool.cc; path = src/core/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; + B4433F0BED3DD4926BE32C7F59CCCF02 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; + B454EE38384FA7272059F594557AF807 /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-Core"; path = grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B475AB331E1C1237D3D1C1F6AA6A3762 /* string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c"; sourceTree = ""; }; - B4797C79DB0836243727CBFFBF888F28 /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; - B48463E1C4B4A665F9BA36BDD1C76F03 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/client_channel/retry_throttle.h; sourceTree = ""; }; - B4895C2230245A6A5AEA203CFB9CEE47 /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_subchannel_pool.cc; path = src/core/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; - B48AB02D0B00ABD75D07444A1F748E33 /* per_thread_sem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_sem.h; path = absl/synchronization/internal/per_thread_sem.h; sourceTree = ""; }; - B48B5ABF007753289FCC5D5A76CCD2CD /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/internal/oneof_def.h; sourceTree = ""; }; - B4AA4FBFC848FC8516B27AC7768A419A /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; - B4AAB28F2DCEC55FAFED1B4A00631FD4 /* custom_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_metadata.h; path = src/core/lib/transport/custom_metadata.h; sourceTree = ""; }; - B4BA5BDC81911C99602143D0582AA47C /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ocsp.c; path = src/crypto/x509/v3_ocsp.c; sourceTree = ""; }; - B4C267FD82325E628C65226C9036EDE7 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; - B4C28296BD51C5EA60D61560B27D21D3 /* overload.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h"; sourceTree = ""; }; - B4C54E85A3BEC10700C9D517C5505F3F /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; - B4CA3C31DF5098890F0353BBE40ADACE /* def_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_type.h; path = third_party/upb/upb/reflection/def_type.h; sourceTree = ""; }; - B4CBDA3B21BB2DD5D9AFED735F3DCCCF /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; - B4CEEC06277BA8BEE6E610849D3F9810 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; - B4D21D691BA51E06383EE19C771D87C7 /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - B4D800219185881FA740C21EB1E91B39 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; - B4E6A6E25D19DCBF5646D240BECC0C10 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - B5049A699ABF27C3CEA148EB7156B777 /* xds_dependency_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_dependency_manager.h; path = src/core/resolver/xds/xds_dependency_manager.h; sourceTree = ""; }; - B52413AEE015A1986F76002B7A28FC10 /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; - B53A1D64F3396C7423A80824D6A841BB /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; - B53B60727CA739D5076A8C0D59EA142A /* merkle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merkle.h; path = src/crypto/spx/merkle.h; sourceTree = ""; }; - B53B8BE9577FC6EAB8C88FA80416E954 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; - B53F2DA90948F2C4A6093179B05FEF74 /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; - B546916C9F81C13330B2DE0A35FCAC05 /* call_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_factory.h; path = src/core/lib/transport/call_factory.h; sourceTree = ""; }; - B546CCF83A9F85B077AD53FD823DB9A0 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewCell.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.h; sourceTree = ""; }; - B551E817F009C16102A59464593B0D56 /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; - B56599B8C49C23ADBDADEF383DCDBE22 /* config_dump_shared.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h"; sourceTree = ""; }; - B586FDB11E1B70D090A2D879BF88D039 /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; - B59175097FC39FE4CF1A13F2E983B906 /* TZImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-prefix.pch"; sourceTree = ""; }; - B599DCD01FDAD8E70471EE517823F4F6 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - B5A1ACE6E799F3B9BD67FAC7E0274F82 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - B5B1D13E21BE9464AF6CEEBCA491EBFB /* cel.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cel.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c"; sourceTree = ""; }; - B5B2CD51FBDCDE6C2C718C595CA788B8 /* wakeup_fd_eventfd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_eventfd.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h; sourceTree = ""; }; - B5B4BEF93513FC20B1B96C083FB60D26 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; - B5B7ACC6F826C6F4818520D0DE533DD6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - B5BCCD1A5FADB7D47772C839B7EF6B0F /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; - B5BCF0B29A39BB54A85D471A83DFB4A2 /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = include/grpcpp/security/audit_logging.h; sourceTree = ""; }; - B5BE2686EF1613AB44AED448B2D97FAE /* infback.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = infback.c; path = third_party/zlib/infback.c; sourceTree = ""; }; - B5D62B52B457AC027B81B893FA47C34D /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_file.cc; path = src/core/lib/gprpp/load_file.cc; sourceTree = ""; }; - B5E387CDCDD8E5A46ADF1EA0BFB2A6B0 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - B5E9AE8FDBBAB2E923725A3DCFE2F42B /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; - B5FD313D783E7320929DEA2FAA8FF000 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; - B5FF14000F698DBDDE4A8C4B9077ABC0 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - B604762EC85770D7D0F83401C6297544 /* FirebaseCoreExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreExtension-dummy.m"; sourceTree = ""; }; - B607824AFF8A8EAEEAA86E55937EB25E /* TZAssetModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetModel.h; path = TZImagePickerController/TZImagePickerController/TZAssetModel.h; sourceTree = ""; }; - B611762C26372A86C6E4B7BF14EE3BB3 /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/utf8_range/utf8_range.h; sourceTree = ""; }; - B61545C812D657BCDF23F79314F553E6 /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c"; sourceTree = ""; }; - B6155A3F627FE414F539B899A33C99F3 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; - B6177EFBB40644B65755BD1CABB1172D /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; - B618EA555AF34BE7E009BFBF967B19ED /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; - B621AC370A6E3D28514C79CCAE9B99C5 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; - B6331FFF94C86E2CB00F81EFD00A30AA /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; - B6399349F4D18281E2E0185F9B9D7F4F /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; - B639D4CDF34B2843200DD34526E06E36 /* basic_work_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = basic_work_queue.cc; path = src/core/lib/event_engine/work_queue/basic_work_queue.cc; sourceTree = ""; }; - B63B07D2C4640022852C0F751C72B1D0 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; - B655C3BAC19516D76C7F738CAFC71F8F /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; - B6607EA33BB1E93D61FB76288B32D647 /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; - B67847E61B5D4BC44D7F34422D11C6F0 /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; - B6876F418B49F4FA7DFFD224E006A7C4 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - B69505FABDCC555D6009945F12735ECF /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - B695F3436FE543F7B7890CECEDF7D58D /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; - B6A4208F1CC6AE33F12AB5C1189E3048 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; - B6A71F4A40D912CE4AC41FCA93E4F0D3 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; - B6BBE5D19C512DF5DBFF672AF0DA2E4C /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; - B6D207CD8011C99BBA59B0ADA64AEA28 /* placeholder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = placeholder.m; path = RecaptchaEnterprise/RecaptchaInterop/placeholder.m; sourceTree = ""; }; - B6DC60A8A6D8F923108B09A78B27F4FD /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; - B6ED5395BE44F2D16B34F85AB98BE6A4 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; + B47279561F06F232C98FB7FFC9996438 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; + B48BB880619FFD4A1473CDF3D73B947F /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hkdf.c; path = src/crypto/fipsmodule/hkdf/hkdf.c; sourceTree = ""; }; + B4A005BFDD5E490070418397507EF803 /* FIRFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFilter.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFilter.h; sourceTree = ""; }; + B4AB655050794EE07678FCF1670B01BA /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_service_config.cc; path = src/core/client_channel/retry_service_config.cc; sourceTree = ""; }; + B4B1DD0D6FE3F41A7BB8D49CE13557DA /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; + B4C1F42B1F03901F59406A22F44928D3 /* for_each.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = for_each.h; path = src/core/lib/promise/for_each.h; sourceTree = ""; }; + B4C5D9E6805D6326C37D7226AF1F98B2 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; + B4D16EBF6CF242B224484D8C4A8D6215 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; + B4DC3E942937373523E7475A4AA6688D /* FBSDKCoreKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCoreKit.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h; sourceTree = ""; }; + B4DC7388AF037A243DF6D8A181A80EC4 /* jni_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jni_utils.h; path = src/core/ext/transport/binder/client/jni_utils.h; sourceTree = ""; }; + B4DC9F1C1211C28817FB0A1160258D16 /* FBSDKGraphRequestBody.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestBody.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h; sourceTree = ""; }; + B4DD645BF4E481DEFF61094968F99252 /* metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata.cc; path = src/core/lib/transport/metadata.cc; sourceTree = ""; }; + B4F33589811F8C171543B5559554A2D0 /* posix_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = posix_time.c; path = src/crypto/asn1/posix_time.c; sourceTree = ""; }; + B4F5373795FD88443100A7BA4A94D917 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + B50EDF341109ABF5DC4AC1851B0D9911 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; + B50F9D85FA879092BB4C1552BE78F5C8 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; + B511F98F2ED53CBF2D13F3913FC57CD1 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; + B512DCE065414B45169DAEF6743A3CF0 /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; + B513D80E548022BC665B9EF23601EEC7 /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; + B51792033CC9C90A1DA32C2565941B6C /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; + B52237138748553D009983453ED9FD02 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/message/message.c; sourceTree = ""; }; + B5257CFE0981FB5FCC38AA79E1E44005 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; + B52763F624FE1C178DB3DD4E60492306 /* number.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h"; sourceTree = ""; }; + B52AA3DE95630BB9B0C8541FD2B03BAC /* api_listener.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c"; sourceTree = ""; }; + B54FA0B93F62A33C8F2B29F0850CCB2D /* p256-nistz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-nistz.h"; path = "src/crypto/fipsmodule/ec/p256-nistz.h"; sourceTree = ""; }; + B566B5EC448034456600FF8068F55AEA /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + B5695CF007698020C6EEB43591D147AB /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; + B572AF0D232EC364C4107CDD6089EE1A /* trace_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c"; sourceTree = ""; }; + B5778BF59BDC8A883FC82DD8333F7961 /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; + B57E4DE8CF7F089C6C8EB7F1C3FC3D2E /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; + B58F7970DBE7D509EE765E51774C6034 /* legacy_channel_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_channel_idle_filter.cc; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc; sourceTree = ""; }; + B5A11580478A1440AA6152F056763F20 /* call_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_trace.cc; path = src/core/lib/surface/call_trace.cc; sourceTree = ""; }; + B5A6B3D2B1EFB9528FEC7A916BAA043F /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + B5B097C034677935888D15E8E4D275E7 /* FirebaseFirestoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestoreInternal.modulemap; sourceTree = ""; }; + B5B4AFD11BF80F8D85D3A788B7E8B727 /* client_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_internal.h; path = src/core/client_channel/client_channel_internal.h; sourceTree = ""; }; + B5B634960A95BCA97A0BE96348A6EB9E /* bootstrap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h"; sourceTree = ""; }; + B5BBD87DCB8E6080DBAECEFDB91BE723 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; + B5CE102580802F51735077BE3F25FD88 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + B5E490385EC7194F3C7B3EE81DA50724 /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = FirebaseSessions/Sources/Logger.swift; sourceTree = ""; }; + B5FE687C364CFCADFD0975914E4783FD /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; + B6183D124184B22042FC1A65B9AFBDEC /* RemoteConfigConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteConfigConstants.swift; path = FirebaseRemoteConfig/Interop/RemoteConfigConstants.swift; sourceTree = ""; }; + B62579B3CD6D1BED7BD67F0F1DA3AB33 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; + B633E038779814482CED2C74057DA3F7 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; + B64790AC7A38130D86C441B2BACE6D89 /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; + B664D724F5A3A49A8D5AA1DE80FE4BFD /* windows_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_engine.cc; path = src/core/lib/event_engine/windows/windows_engine.cc; sourceTree = ""; }; + B66943844840BAEC8763BF3B66857B64 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/internal/file.h; sourceTree = ""; }; + B69AE19CA3CB004C60E8D63547E7F3EB /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; + B6A7D862A7B1911E2BA97228B3A4BB69 /* memory.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = memory.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c"; sourceTree = ""; }; + B6A863BBB4F73F351D8497E64BDF6D7E /* RecaptchaInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-prefix.pch"; sourceTree = ""; }; + B6B6182208F7A2E34BDEE144E581BD68 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; + B6BAC9388C6A05C23BF7A17742D28956 /* FBSDKErrorReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorReport.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/ErrorReport/FBSDKErrorReport.m; sourceTree = ""; }; + B6BE896FBB6DC715ABFDBF34D72EA44F /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + B6CF2C090F299E4FE0827AAB1FE1617F /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; + B6D493F5CB5B01BFFF16400B605D29CA /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; + B6D51208312732FB36AB71D08B0F42E8 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/message/message.h; sourceTree = ""; }; + B6F77988CF88BE9EFE4CC56B21FFA649 /* status.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb_minitable.h; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.h"; sourceTree = ""; }; B6FC6D7893981399354A5310B0C34D02 /* FirebaseFirestore-FirebaseFirestore_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseFirestore-FirebaseFirestore_Privacy"; path = FirebaseFirestore_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B6FC6ED79FE10CF493A417115012583C /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cc; path = src/core/lib/event_engine/posix_engine/timer.cc; sourceTree = ""; }; - B7094565A6DDBEE4761F50426F9DAD47 /* SettingsProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsProtocol.swift; path = FirebaseSessions/Sources/Settings/SettingsProtocol.swift; sourceTree = ""; }; - B70CF70BDAC0780AF60E01692DCE7E92 /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; - B710800662F5999851D61113E8B6EB14 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - B7235EA5FF1219600226F5D94874F5B1 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - B72BA1334F58A99C1B4046C005847A4F /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - B72DF2E7F49B3504CC37B6C19B57E7A2 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - B74392A73E6CF66B0F1D2B4C14D67AAC /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - B747659E4FC150C7430B7A5B31CA7653 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; - B74AA4E83DF1690BB5D1AC2ECD8FE5DE /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; - B750B2A7AAC6E334BF6E5DCF2CE682DD /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - B76C841B027D0497AA39B01AAC696295 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - B77A5287AAA8C7BBB426D35AFB8DE9BD /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/windows/sync.cc; sourceTree = ""; }; + B6FF83E0BB5FBC8D8006B236553B679E /* FBSDKAppEventsState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsState.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.m; sourceTree = ""; }; + B7140764D858602161BF13244D4AFC2A /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; + B73036F901C3D684641CE1171B98C9E3 /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; + B7474BB8A9EDE5A2717BE78437126845 /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb.h"; sourceTree = ""; }; + B74A4447A10AC48D13CF8728EA9E7F47 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; + B74E57E731F099E888EBDF3C3AE63E7F /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; + B75772990B00CF998ABC2895F6276E83 /* cord_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_buffer.h; path = absl/strings/cord_buffer.h; sourceTree = ""; }; + B75D456B8227A687959266B891202BCF /* FBSDKViewImpressionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewImpressionTracker.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m; sourceTree = ""; }; + B76DBB386FBE02D557237B3DE20258D2 /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h"; sourceTree = ""; }; + B774369EACB83F360DA6154321A7DFB1 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; B78771F0FADF96EB35CC34C5EC020130 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - B796447A38FD30A677499B2A231EBF71 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - B7B3A888A4C5364208181072275F9B7A /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - B7C492571D73D1017039470FBC604782 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - B7F242D76852D0ABFB929DC1A5FAADA6 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - B7F6BEAC736588D103E533B0B740DF59 /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; - B7F7C42A756EB02970367E022E573296 /* altscontext.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = altscontext.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c"; sourceTree = ""; }; - B7FDA09CA3A64833DF7180C2805CA000 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - B80166F7597F6B4AD42FD62DA0E5E96B /* per_cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = per_cpu.cc; path = src/core/lib/gprpp/per_cpu.cc; sourceTree = ""; }; - B8056AC953FEA527BF1D993A6598A6B5 /* wrr_locality.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h"; sourceTree = ""; }; - B81D476BA254F9B6BA385FB4EEB8EFD6 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; - B825C02D651B1866097D0907D657175F /* undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = undef.inc; path = third_party/upb/upb/port/undef.inc; sourceTree = ""; }; - B832EBBFE9B638340EECD1E3DEF6D0C5 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - B84241F66D312631828D886F899DD954 /* oob_backend_metric_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric_internal.h; path = src/core/load_balancing/oob_backend_metric_internal.h; sourceTree = ""; }; - B849A930F12E15A515112A0995A06278 /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; - B84D446B7286F65AD2B16DC2FB6E8642 /* bit_gen_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_gen_ref.h; path = absl/random/bit_gen_ref.h; sourceTree = ""; }; - B85686B120F530F14DC56C7174782A93 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; - B85AFA7E16D5D8801ED9DD0A95233136 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; - B86764008524C4DEB352A34F527C33C5 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - B879DFE8CF2C6BE7B5B44C431BD20981 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; - B87DEA8F96C32D76C94AF6DDB75778C8 /* authority.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h"; sourceTree = ""; }; - B88652FE53E190C7C6E8B25C5C3AB78A /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; - B8882543926AC8B86E049FDDF461A92A /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - B88E0826F4D6B99E3700EA8D11303104 /* status_code_input.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h"; sourceTree = ""; }; - B896495106A346C3E4E1F794210F5D0A /* route_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h"; sourceTree = ""; }; - B89E1A52D42F9E6856D4AB10EE6A70B4 /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; - B8A2154B8378D0D84ADF1C0C42E34B60 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; - B8AA10F1EC870CD6DD24CD291DD7E796 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/promise/trace.h; sourceTree = ""; }; - B8AD67E13087323426D2E64BE8A8894F /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; - B8C751199D2883675433C98FC6F9DF4A /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; - B8D959EEC5E7C9FC70BC75BE42EAAFB6 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - B8E1031456FED385FCDFF0BA3DAB8A66 /* compliance.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = compliance.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.c; sourceTree = ""; }; - B8EA3B49540E18C349890B469FC810F5 /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/load_balancing/outlier_detection/outlier_detection.h; sourceTree = ""; }; - B8F1AE10D29F73FE99C8B4AA0998DFBB /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; - B9019D5AFF0EEDB1C6CD4D8C43AE575C /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; - B926FBF7A8FC1FFA18726BFD3E661991 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; - B93736FBF978B657C4DE3B5FF78EB843 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; - B9380EE01C6EBABF88258960220E2B07 /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy.cc; path = src/core/load_balancing/lb_policy.cc; sourceTree = ""; }; - B9390A7A7133D1CFF365869896963004 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; - B93A2E707AC52AD71684F62FDF71230A /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; - B93F7AE4900EBBEA859D8D4B6EC018F9 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; - B93F9F1ABAF25D907F2F784D94263067 /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/resolver/polling_resolver.h; sourceTree = ""; }; - B94B6250395B0EBB6C62CE20A747C2A9 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; - B956BA04FBDAA20BBB7AB7E1BB902B37 /* wakeup_fd_eventfd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_eventfd.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h; sourceTree = ""; }; - B958294CBA68C5295BC2E314779BE8FA /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; - B959B2B81FAA88AD48EE54F74298F222 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/field.h; sourceTree = ""; }; - B964CC1CBFA6CF6CFB29F3D07D6EB4FA /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; - B9664509B3217AE336D905DFE8B6EA7B /* histogram_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_view.h; path = src/core/lib/debug/histogram_view.h; sourceTree = ""; }; - B96E8E395524C881AFCB509C8643BC45 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - B988DB7D30B0AE7437E2C03324BEF55E /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; - B98F30735EDC5D1623E0C94C29DC0D0A /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; - B998AAA294328ABBB9953F7D0BE56613 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; - B99BE5C6D4D361D6398606E1F9539244 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - B99D3A1DFE0615E01EBFA20684D97E3E /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; - B99F33156E9271B5B8424AEECCA63F76 /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h"; sourceTree = ""; }; - B9A07F4899EE7483C7307426140DEDD8 /* trace_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c"; sourceTree = ""; }; - B9A81380A8385C0DD78EC00D30758649 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/call_hook.h; sourceTree = ""; }; - B9A9AC36429D6FE5F37E04FFC9BC294E /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - B9B0B69A39502F56DA00442D60175D9F /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; - B9C15082035D41D4B645F25B876AA09D /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; - B9CB09BB07D04D591BEE6C9EE0802A8B /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - B9D47456F07C85860008CE98E0CCF5BB /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; - B9D52662045EE1F747EE72DB39052FCB /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; - B9D552B51138DE789C7D72A94491F169 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - B9E014B0C58956043AB038223FD38811 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - B9E526BD931B4B1B89E12CA440F98673 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - B9EE0AFD542A3838411A97FCA585B5C7 /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; - B9F0393E5438B29ED5BF17EDA12AB0EF /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb.h"; sourceTree = ""; }; - B9F5AAE303D46A3C45F4E4531C44AF6A /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - BA08F6EB7F0B75CBBA4E2EDD667E5EA2 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_connectivity.cc; path = src/core/client_channel/channel_connectivity.cc; sourceTree = ""; }; - BA0D64EB04164F295CE8A7983513E889 /* RecaptchaInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-umbrella.h"; sourceTree = ""; }; - BA1A694C61C225A73B518E3EFCB5E63A /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; - BA1B498BC60171E83447E674B5446B5D /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; - BA1BF5ECECD45225890E75A208A3E976 /* call_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_trace.h; path = src/core/lib/surface/call_trace.h; sourceTree = ""; }; - BA2E92673230E43C9A533EAFAB98E749 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; - BA31AAE794BC4ED768090F0B7037A661 /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; - BA3238D7277EE5A3144781EB139AE850 /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; - BA3C9A268887B1341C38EF19953CF38C /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - BA5D576D992ECC827AB45F5EC3F7F400 /* GDTCORStorageSizeBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageSizeBytes.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageSizeBytes.h; sourceTree = ""; }; - BA768EACE534AE696AB4B30C436A92B0 /* base92.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base92.c; path = third_party/upb/upb/mini_descriptor/internal/base92.c; sourceTree = ""; }; - BA78481929C898206BA67720594EC5B9 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = src/core/lib/transport/message.h; sourceTree = ""; }; - BA85E1310ECFB9C5E917CE779D43F7F6 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; - BA8B9521AF875C04F9B44B8E062D991D /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - BA926612EEE058989A060AAFA23262C1 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; - BA973D279F00455744D1BCCF98248AFD /* FIRCLSAnalyticsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAnalyticsManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSAnalyticsManager.m; sourceTree = ""; }; - BAA126F07CE4089DA739711403FBF96E /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - BAAF37D625AA0C9D73C74B2C43D061AE /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; - BABDF221F3E19F26DC0CF590AEAD01A1 /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; - BACF1B1712B2FBE05EB787E12CC07043 /* node.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h"; sourceTree = ""; }; - BADA253FF641E248957D7A90BB17F4D4 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; - BAF0F4EFEE6AACB08F9AC75DAFCFAD01 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/load_balancing/grpclb/grpclb.h; sourceTree = ""; }; - BAFDF37A5E735417E9FE5F6910D630D8 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/reflection/common.h; sourceTree = ""; }; - BB05A19C27DBDE7AEEE978BF39437BFB /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - BB05FF0CA13876654DD5456BD263B2BC /* UIView+TZLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+TZLayout.h"; path = "TZImagePickerController/TZImagePickerController/UIView+TZLayout.h"; sourceTree = ""; }; - BB099864F7029C650924575A502C0070 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - BB0C63ED45CD331D347FD85BD7A3EBEE /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; - BB0D6854E8FD372EA5F5BFCBA01464E6 /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; - BB0DD1BB5FD2124ED992F133DADE457D /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/client_channel/retry_filter.h; sourceTree = ""; }; - BB22920242CF386F35DCA436F248A7E5 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; - BB28089A8D2B0AC3599F8CF30439F67A /* posix_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_endpoint.h; path = src/core/lib/event_engine/posix_engine/posix_endpoint.h; sourceTree = ""; }; - BB3DAE2170E127895DB6724CC3AF757F /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; - BB42008FA0AFFFACE1706855742FDBEA /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - BB4FC3C7C59C7CE5C50829AE94ED43D2 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - BB580DD2F33EF5A99C58212A8F159917 /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; - BB5949EC60744841DB3EA879DC5BC66F /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; - BB77408A39B7311844ED55FBD14BBA93 /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; - BB8D7FA513EC470E9C6575D389B47F10 /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; - BB96F74542638ADE03255F0D22F61047 /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; - BB9D5F7EDAC23AC46908C7A2CC1B9187 /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - BBA19533E99DE37BAF504882C61EB2C7 /* FIRAppCheckProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckProtocol.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckProtocol.h; sourceTree = ""; }; - BBA2DCDDD46036A1A1838B0B9D04F8AA /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; - BBA6824C858E653609C7C55DCD4A8E58 /* ssl_transport_security_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security_utils.h; path = src/core/tsi/ssl_transport_security_utils.h; sourceTree = ""; }; - BBB88857142E95504AB1DDB4601E4CA2 /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; - BBBB548A0AD301AEA06D6A3C08BC4080 /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; - BBBCAD8F7E1FBE06AEF65E96A7346B35 /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; - BBDA447F723DCDF10E392F71AAA50339 /* tls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h"; sourceTree = ""; }; - BBE01F266AF7DADD778E7233772FFCDC /* discovery.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h"; sourceTree = ""; }; - BBE1BA96B00A3D7B394C3B7C958206D0 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - BC068C14D3CFCBABB10C63F7F7A3DD49 /* strtod.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strtod.c; path = third_party/upb/upb/lex/strtod.c; sourceTree = ""; }; - BC0F1199AD733CEABABF72E12EC87A95 /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; - BC3270DD056385EE22B4D91F6A037348 /* gRPC-C++.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-C++.modulemap"; sourceTree = ""; }; - BC3CACC388D0FEB778FBBB52BAB3BBCD /* FIRCLSSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsManager.m; sourceTree = ""; }; - BC4D272401FCBA26F53BCDF7DE571463 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; - BC60FFD97DEEFB6F65CED23BED52E344 /* native_posix_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_posix_dns_resolver.h; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h; sourceTree = ""; }; - BC6231376504776EDD4532A76C7BF58B /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/internal/enum_reserved_range.h; sourceTree = ""; }; - BC76A984AD47B0F691FA833447676F58 /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/enum_def.h; sourceTree = ""; }; - BC8466D4CF6F212C26336B6B2F84D2BA /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; - BC977C9DCFC36103E97AED1529C22521 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - BCA0E5BE0705391757FA6CD6A430228B /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; - BCACDE9C6D3F94179DE6FB8E62FD2CC9 /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/tcp_socket_utils.h; sourceTree = ""; }; - BCB234EAD6F2E04D29704D79229ECAC9 /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; - BCB44B6F88E1A9CBC21CFE59F54D67BD /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; - BCC5A9A21BA2B753E2DD030AC9321BF9 /* arena.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = arena.hpp; path = third_party/upb/upb/mem/arena.hpp; sourceTree = ""; }; - BCCA2C6ABCDBDECE392301E8D32576F4 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - BCD2599E05100156878DEABB7C1B8A30 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; - BCD370114BDE3DF743F3F64F6A334E74 /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; - BCD60A6A28FB3AE84CAFAB8704601217 /* low_level_scheduling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_scheduling.h; path = absl/base/internal/low_level_scheduling.h; sourceTree = ""; }; - BD0C71C263E910955A3661941FEB7B18 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/service_config/service_config_parser.h; sourceTree = ""; }; - BD1519EF86831A91D3B3541C86707DA6 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; - BD1A4B5943FD1BB7F26D810BDBBA52A6 /* hpack_parse_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parse_result.cc; path = src/core/ext/transport/chttp2/transport/hpack_parse_result.cc; sourceTree = ""; }; - BD22F61EFD01D9BAADEF086C4E3B10EF /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; - BD2820560C8578A0633E1BFA50E2E83C /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - BD34B8DC4ADE83CDEB44CFBA4850AD6F /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; - BD38318973AD176A821C2F3EE6149E5A /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - BD3C69E0A58DB99A9A386217EA250BD3 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; - BD3E252FD455E57F17525D84AE0780E4 /* curve25519_64_msvc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64_msvc.h; path = src/third_party/fiat/curve25519_64_msvc.h; sourceTree = ""; }; - BD585FE1C41649BE87F51BA57352103E /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; - BD5DA2BF4CD439B73B7B82CD6B4D6D37 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; - BD5ECB33CB36369E6C8047418480FC55 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - BD5F717702501F2E983DDAB7D3948E37 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ring_hash.cc; path = src/core/load_balancing/ring_hash/ring_hash.cc; sourceTree = ""; }; - BD643AF3B199FA18A14BDD4996383F72 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h"; sourceTree = ""; }; - BD7118AE015B216550048C740A0FE31B /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; - BD71884C33C3393FDF0B72988C4566E1 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; - BD761AB1271AA95FBDFF50E6D4986BAB /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; - BD790207DD7ADEECF6E986944B064187 /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; - BD840DF2B922FEDD63B325DF6B86288F /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; - BD8AB57391CD01902AB44919952B3767 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; - BD91921AFBC294590C0320D87D439530 /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; - BD96704F414FF6DB1133FB672ACD980D /* init_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = init_dump.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c"; sourceTree = ""; }; - BD98CE3E83B14EAC5678E47079A30BFC /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; - BDA0383623D3A6FA9E4DAA3FF5CCC689 /* cord_rep_crc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_crc.cc; path = absl/strings/internal/cord_rep_crc.cc; sourceTree = ""; }; - BDA45F0F1BDD15712167BA2F66FF05F8 /* crash.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crash.cc; path = src/core/lib/gprpp/crash.cc; sourceTree = ""; }; - BDA5B63FA5F746CA1C93CFE2C893ABF1 /* wrappers.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrappers.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c"; sourceTree = ""; }; - BDB235502D6D11BC502CEBF7FF8A457D /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; - BDB8E1B32A77E4176C7D9BA6671BA574 /* legacy_server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_server_auth_filter.cc; path = src/core/lib/security/transport/legacy_server_auth_filter.cc; sourceTree = ""; }; - BDB9D4F62C5662F38B7D03B6116FDB80 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; - BDBA6E466D725FDB0F9A993000627244 /* lightstep.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lightstep.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c"; sourceTree = ""; }; - BDC287F1C548D1BB52948EAEFE4CB38A /* stdcpp_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdcpp_waiter.h; path = absl/synchronization/internal/stdcpp_waiter.h; sourceTree = ""; }; - BDC46E1663E41F98816718667F5B378E /* opencensus.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h"; sourceTree = ""; }; - BDCBAF2B953BB65283B1E5535FE97094 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; - BDCC0B7B68761988D8D23BA57A352E60 /* http_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_trace.cc; path = src/core/ext/transport/chttp2/transport/http_trace.cc; sourceTree = ""; }; - BDE96647CE4EEF1306B7068A64436309 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - BDF7F2C02D7661162754CEF9BAD13BEE /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - BE06E66781D730D676F15E77461C0F3B /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; - BE084E00520104B22C5354E4F03F42F3 /* FIRCLSContextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContextManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSContextManager.h; sourceTree = ""; }; - BE09FAD7341D06C4030F1B98B695A334 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - BE139C80441A192780C1AFC22D1E1986 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - BE180DCC5695A1562C44BDAB79E219EE /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; - BE2CB3B190542DEBD89A08AEBECA6CD9 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; - BE6583A7EAE3880DFFCCAB8F9B276766 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - BE6D66DB900221E4BDF80B1A5D5A372F /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; - BE6DC61165256E70946269D20C560E6E /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_cpols.c; path = src/crypto/x509/v3_cpols.c; sourceTree = ""; }; - BE715CF583A11C8BC6F95D26AFFEC8A0 /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/iphone/cpu.cc; sourceTree = ""; }; - BE7293D29866A8E78748CFCB74C84DF2 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - BE7AA58153FF634CAF517564949FB202 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; - BE889FC9969BE3D0EF86761C518F1E15 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - BE97BB56ACC410C93311B4E56EF30AE8 /* FIRCLSLaunchMarkerModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLaunchMarkerModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.h; sourceTree = ""; }; - BEB6F8DA81993094A19FE38374E716A7 /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - BEC00F627F74FA4B2E8D9FE930256F85 /* ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; sourceTree = ""; }; - BED8E61BB5553A2E063537CDE673EA2B /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; + B7A4BC008EF3FE9C49C0C0BAE6C9294B /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; + B7A59BFC4E275C2F750B6DF8A539C22F /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb.h"; sourceTree = ""; }; + B7B6A8F1098887444BECA6204C2AA58E /* create_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_internal.h; path = src/cpp/client/create_channel_internal.h; sourceTree = ""; }; + B7C109DB7108DBC05464C6C9EB0F8D15 /* binder_android.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_android.h; path = src/core/ext/transport/binder/wire_format/binder_android.h; sourceTree = ""; }; + B7C6039594BE42A5042DDF2DA809852D /* FBSDKSuggestedEventsIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSuggestedEventsIndexer.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKSuggestedEventsIndexer.m; sourceTree = ""; }; + B7D7025C2422CEBC35920A007B9A465F /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; + B7F7A46E51356366A46D2EA514B3548D /* TZImagePickerController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TZImagePickerController.modulemap; sourceTree = ""; }; + B80D48C5A64A7624D67CE3927ABE8C1E /* status_flag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_flag.h; path = src/core/lib/promise/status_flag.h; sourceTree = ""; }; + B821AB26C21BB052B34D5662A25C6D6A /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; + B82CB9029CC7DCC729DA6BEAAE78E851 /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; + B82E3924A002E35AA886E8DB4C229475 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; + B855F816857D15013DDF35DE1DA51044 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; + B858D3EEF6E6B3DDC284D9F990AC25D1 /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; + B86971A1BBEF1058259480B90A9C2B01 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; + B86AD9D27FB42C99012413F9A6930DA2 /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_cpols.c; path = src/crypto/x509/v3_cpols.c; sourceTree = ""; }; + B872D203FDA6A8A32B244D5B1B537F24 /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/internal/message_reserved_range.h; sourceTree = ""; }; + B876FFD7B34CC743E095C0BDAB587A89 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; + B87BE2D5F9D870B5889C754DE986A656 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; + B87E1BD1469547088B769D004C262254 /* FBSDKCrashShield.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrashShield.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.m; sourceTree = ""; }; + B885CCEDCEC3A7025360BB6863870014 /* posix_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_time.h; path = src/include/openssl/posix_time.h; sourceTree = ""; }; + B886D0C2E02DACCBCEB4949A1417BA7B /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + B89336E73194F4FA9F17C841C80909FF /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; + B894C984BDD3BB684072CA42CA7EFCA5 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; + B89E2CFE82C54F65D295B4D7A21D9139 /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; + B8B013494A829E0451B92A2F3A7252EF /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; + B8C0C6257E215A440EC87428A6CF3A1E /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; + B8C207BED72A28306D7CF2BAABB1A1AA /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; + B8E9471C313F1B0CEE32848842A35D5E /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; + B8FD5650B4A22607B038D53CC704F334 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; + B9072B7042B9110B3651163E0ECCF74E /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; + B9090A791BA73C8B31D57BDA8D92256C /* listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h"; sourceTree = ""; }; + B92A64215BA14DC1F7F545AF784AE3CA /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; + B92D4F5FC5A8BD976E60FFEEF1FA58AB /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; + B94B3B741EAF4F03D157D00294E1CBCD /* FIRLocalCacheSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLocalCacheSettings.mm; path = Firestore/Source/API/FIRLocalCacheSettings.mm; sourceTree = ""; }; + B967926046FD08B2A5460D6364D67E98 /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; + B976927A06D48291011D5EFEA8547D2C /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; + B977636DFC38E12ECD458C113B36C929 /* log2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log2.h; path = third_party/upb/upb/base/internal/log2.h; sourceTree = ""; }; + B9782E4B0AA1232E826B40E29F823AD8 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; + B98E6B118A0629577FDACF1459054ECD /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; + B9948646A0069634289C5E92F2FC013B /* backend_metric_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_provider.h; path = src/core/ext/filters/backend_metrics/backend_metric_provider.h; sourceTree = ""; }; + B9C44FF8FA280D675F54800E458FC98A /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; + B9C5F9B27DD63B637927125533D551D7 /* FIRAggregateField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateField.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateField.h; sourceTree = ""; }; + B9C6286CE0E1D0201096978FC5206734 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; + B9CB2221759EE50C9BAD9C61EB7E216C /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; + B9CD933EE59BD639887A59ABF4FCE8F3 /* wots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wots.h; path = src/crypto/spx/wots.h; sourceTree = ""; }; + B9D045CC9373BEBEB26298DE9B72A690 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; + B9EF75159FBA831301B73CC9F19F4EF0 /* logic_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = logic_utils.cc; path = Firestore/core/src/util/logic_utils.cc; sourceTree = ""; }; + B9EFE536D8AC0B6222AEC4F7D1DD5D18 /* FirebaseSessions-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseSessions-umbrella.h"; sourceTree = ""; }; + B9F0250DF0B976D3A4D9302CCCC0E2B5 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; + B9F7746F5C489019CAF221A920115092 /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; + B9F801E8C54CD4E2D2DA8D0C29635F99 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; + BA084D5E08EFA07982631F33ACC987B0 /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/windows/cpu.cc; sourceTree = ""; }; + BA1343591B4DB115A0FBA1ECD717D5E6 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + BA1653975165B59F4F656B9C046A2694 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + BA2B517AB924B13292EC6AF7B50C8E4E /* xds_resolver_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_trace.h; path = src/core/resolver/xds/xds_resolver_trace.h; sourceTree = ""; }; + BA308F9CC9D9DEC44536CE346343F6CE /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; + BA3464B1C5A4D25B940B7001DA439692 /* event_service_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = event_service_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c"; sourceTree = ""; }; + BA390A9E962D88D97CEE18282C73517F /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; + BA54045BB71BE44078FE3042DD53E5E9 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + BA58AA4D3A174A4980CD42721884A021 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; + BA5EA0504A8A6EBF49AE74A741546DEB /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; + BA646E1AAE412307AB1A21FF330C2EA8 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; + BA6760B9FD0C5C692DD84392EDD11508 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; + BA6AF4589A6BBDB5F8373E7F27DA92BB /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/event_engine/posix_engine/timer_manager.cc; sourceTree = ""; }; + BA7605573FCFBE1DB3AB972C82729175 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; + BA7853EDC390A57A81E63FAC3DF185DA /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + BA7B58DBDC50C4CC8C7A7088D01246DE /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; + BA7DA97D498987E9D8B7C35E40C75306 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; + BA87CDE9EFEC04208A74D670BE4CF072 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + BA8F3AB30A2AC16C546EA54F7326DB2C /* config_dump_shared.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h"; sourceTree = ""; }; + BA9751A3932FA70649F94A531A754175 /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; + BA9A352A37864ACBEDE7E8176F39ABC3 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; + BA9BFA8653177A957CE3FA52562B6BCD /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/client_channel/local_subchannel_pool.h; sourceTree = ""; }; + BA9FCA856DF504C762115F471031D101 /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; + BAA073E5DCF59F8001017C403B717A22 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; + BAA111FCD298DAED66DB30BAEC77D358 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + BAB0EB6CDC1816EDCCC05822F8A98945 /* crc32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = third_party/zlib/crc32.h; sourceTree = ""; }; + BAB82821F6E8A3925CBEC00666DEEA1D /* config_vars_non_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_vars_non_generated.cc; path = src/core/lib/config/config_vars_non_generated.cc; sourceTree = ""; }; + BAC5A5EB6EF84643BE00016F01E5D3DA /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; + BACC9189A0783EB2E152E200526B22D2 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; + BADC40E440FEE520F0910768BA7EAD83 /* endpoint_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = endpoint_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c"; sourceTree = ""; }; + BADFC1EC61740900F4518EC01BCED380 /* FBSDKServerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m; sourceTree = ""; }; + BAE5F37E544BFC32E2D1DC8BF9F376FE /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; + BAE9F8038F8DB782F79DEB8949629954 /* ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; + BAF5614AE8CAA82F046E0FB61D3C9969 /* legacy_server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_server_auth_filter.cc; path = src/core/lib/security/transport/legacy_server_auth_filter.cc; sourceTree = ""; }; + BB0504BFA3C517BC5AEACEF05091347A /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + BB091BE89614C17D4A67EA33BD8CC71B /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; + BB0E50FE3FA614C32D686E37B3C3686D /* server_info.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = server_info.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c"; sourceTree = ""; }; + BB0E553918CCAF8FA5B14CAAF2FE2D92 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; + BB176DCEC9060A52AF6A2701E59F8B03 /* crc32c_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c_inline.h; path = absl/crc/internal/crc32c_inline.h; sourceTree = ""; }; + BB220D966CE471E1C6B51F1E434589A3 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; + BB2CE24871A9EBFCDB1B27EBC84B5B76 /* crc_cord_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_cord_state.cc; path = absl/crc/internal/crc_cord_state.cc; sourceTree = ""; }; + BB2F0AF93C0B22F9E7AEC54F23428972 /* enum_value_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_value_def.c; path = third_party/upb/upb/reflection/enum_value_def.c; sourceTree = ""; }; + BB311D596CFD12AB1D0B0305CE54DA59 /* SessionInitiator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionInitiator.swift; path = FirebaseSessions/Sources/SessionInitiator.swift; sourceTree = ""; }; + BB431513CE6BB59D401577F3ADDA7E43 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/posix/tmpfile.cc; sourceTree = ""; }; + BB58F949572A1077313E0B426BEAAF7A /* bad_variant_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_variant_access.h; path = absl/types/bad_variant_access.h; sourceTree = ""; }; + BB6078B1F1F1385EF1D7F77BCC9C9087 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; + BB6D0AC17241FAE4E8B9C5E4F67DA9EF /* http_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_trace.cc; path = src/core/ext/transport/chttp2/transport/http_trace.cc; sourceTree = ""; }; + BBC18312FDE8D90F0CFDCD1818CBC22A /* FBSDKHybridAppEventsScriptMessageHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKHybridAppEventsScriptMessageHandler.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.h; sourceTree = ""; }; + BBC5162027A21C623B7904DE915D42FB /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; + BBD32D7A1573F2DEAE733DC1B4537778 /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; + BBD514E5D6ACDD8F1DAB94CB8F050681 /* fault_injection_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_service_config_parser.h; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h; sourceTree = ""; }; + BBE9D6E161396B9A52EEA1DD9A884B1B /* resource_name.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h"; sourceTree = ""; }; + BBF1761A0AD8E9E8D5BB19E57FCAC04D /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; + BBF19A7B953B59EF681D20BF2682B415 /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proxy_mapper_registry.cc; path = src/core/lib/handshaker/proxy_mapper_registry.cc; sourceTree = ""; }; + BBFDA995E481674E853E31CF82368834 /* router.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c"; sourceTree = ""; }; + BC035354F5F85E77F3355E70BA6FA9A1 /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; + BC13C62F963F84353F72B432DC4B443A /* api_listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h"; sourceTree = ""; }; + BC3468B8758CED0B653DBE415DFA3772 /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; + BC3DA1381CF8C86CB778ADA307BD9416 /* duration.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h"; sourceTree = ""; }; + BC4F32230229D432B07E9AF11151355B /* endpoint_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_list.cc; path = src/core/load_balancing/endpoint_list.cc; sourceTree = ""; }; + BC5DE1E2C6B2170CE161DB8BC65B8767 /* outlier_detection.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c"; sourceTree = ""; }; + BC61F4C4E0B88A5EAE49D319FB76DE33 /* status_code_input.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status_code_input.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c"; sourceTree = ""; }; + BC81E35D2BAE406D27CE3D2F44F70AE0 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + BC9BBB997CEC532B5554ADB14196BB6D /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; + BCA0BAE943222B1EDF73DC518107871E /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; + BCB6B9B277D901673B2FBB41D73F2294 /* struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c"; sourceTree = ""; }; + BCBE467CBDAB23EC9FCFF164E8E215E3 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; + BCCB949E2186E2ED3739344AD272B002 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + BCCCE7A4ED1EC9F7FEB1538C8B98D65B /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + BCD101297BBBCAED54D13DFC8979DAAE /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; + BCD57FB2AF202564836359B5B7670A78 /* listener_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h"; sourceTree = ""; }; + BCD6BE33FACFA28BE27C1752638304CD /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/event_engine_shims/tcp_client.h; sourceTree = ""; }; + BCE40E0EDD82DCC0DD3C70E1EE4F3EA3 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; + BCE8D260BAF318DEB935A53786536DC4 /* xxhash_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash_inline.h; path = src/core/lib/gprpp/xxhash_inline.h; sourceTree = ""; }; + BCF4E1A097A5ED167A3537230DA96C6D /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = absl/flags/reflection.h; sourceTree = ""; }; + BD0122E0EE204F151DFACBC75897A6C5 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; + BD0DF267EBD5FC7FB9621F679FD79A1B /* call_size_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_size_estimator.h; path = src/core/lib/transport/call_size_estimator.h; sourceTree = ""; }; + BD1492D1D9E3C677DE7AAC241EA54CC6 /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; + BD254CBC5B235C9F594934A8CF6E6D4F /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; + BD280A40B6B219ADF30EDC76882BF647 /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; + BD288F7685BBF1B8666D94FC504AFA5F /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; + BD2AEEF7FD310AC1DCD7327BB5E5EE1E /* FirebaseSharedSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseSharedSwift-Info.plist"; sourceTree = ""; }; + BD2B9B470AA95828F634FF090FAB5DED /* xds_resolver_attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_attributes.h; path = src/core/resolver/xds/xds_resolver_attributes.h; sourceTree = ""; }; + BD30775BF9443B3B8C08BBFC7E3C1AA0 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; + BD3E659287A74927D9DEE58530FC8514 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; + BD3F8DD3C56B52416E932EFEA6F6E251 /* Time.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Time.swift; path = FirebaseSessions/Sources/Time.swift; sourceTree = ""; }; + BD40C38F26AB2BA6BD4DA7C73FE3C856 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; + BD44C5CBB0C1694F1E2BF85A78DCA9C5 /* FBSDKBridgeAPIProtocolNativeV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolNativeV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m; sourceTree = ""; }; + BD4ACAE4CB5D658A522785ADC20DCE7E /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; + BD511206BE119E76E954F66B30ED4764 /* wire_reader_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader_impl.h; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.h; sourceTree = ""; }; + BD58D53085E6A2EBDAC2A63DEF8DA1B0 /* FBSDKServerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h; sourceTree = ""; }; + BD5A25CD20AA55DFEA01DC46E1EDB323 /* wire_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_writer.h; path = src/core/ext/transport/binder/wire_format/wire_writer.h; sourceTree = ""; }; + BD6070C1741F31D29516EB7B228C3B54 /* BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; + BD94C5575FE3D68FAFA3E9E569843985 /* legacy_compression_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_compression_filter.cc; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.cc; sourceTree = ""; }; + BD94FC90C5B50959E4ADD14F19031F35 /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; + BD9C40355EB561ACD590B693F7576990 /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/internal/enum.h; sourceTree = ""; }; + BDA1FF472009747A0FEFD13039A0F8A5 /* EncoderDecoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncoderDecoder.swift; path = Firestore/Swift/Source/Codable/EncoderDecoder.swift; sourceTree = ""; }; + BDA200AAE2BC952A447268704E316F79 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; + BDBDEB25439F7D6F827019DCA0D04F5C /* skywalking.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = skywalking.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c"; sourceTree = ""; }; + BDCD1105B73D9F1D3F16D1406297AC9A /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; + BDD14A74F0B21942D941ED9284A16562 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; + BDE739610C56258EF257E163CF5BF175 /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; + BDED9A334FA2504CCC48BA39DE10D705 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; + BDF0B4A6081B7A4CE140A676D823BC74 /* semantic_version.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h"; sourceTree = ""; }; + BDF47BE94199BA6DD7BDBEBC7DDEE11C /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; + BDF4AB32156E5F8FA9C272D5AFD59B26 /* TZImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageManager.m; path = TZImagePickerController/TZImagePickerController/TZImageManager.m; sourceTree = ""; }; + BE0577105E7F3D1AE85BED915C80855E /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; + BE06B73707EC18CA0E03978F76668C26 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; + BE0899BC7FFFCD983C92EE85B13FC6C5 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; + BE2AA776829552D8EA7BE0D26D689C98 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; + BE2D7106B19E11322CF19D96F093BE3D /* FBSDKAppEventsDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsDeviceInfo.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsDeviceInfo.m; sourceTree = ""; }; + BE35531EAB0F377AED136B732A0BF636 /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/mini_table/message.c; sourceTree = ""; }; + BE35A3357F1E9BAD99DBBFFB30A0D290 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = util/status.cc; sourceTree = ""; }; + BE37A7B7377C869AAE7246BCBC6D9468 /* json_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_channel_args.h; path = src/core/lib/json/json_channel_args.h; sourceTree = ""; }; + BE46EA4732CC39F34AA8FEE7590E1749 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; + BE4A5FA0D5685A4796344FDE88C1612C /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; + BE4BBA2CAE887150C78A7718B0CE5CD4 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; + BE596088D364C86D59FC9E6FE5F20C66 /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_skey.c; path = src/crypto/x509/v3_skey.c; sourceTree = ""; }; + BE5BAB463571ABEBEF2C934396E87FF0 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; + BE5BD7CBC9C677C1838F8FB6E95774CB /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; + BE97B084583DDDADD304E73D7BAF2BDF /* decode_huff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = decode_huff.cc; path = src/core/ext/transport/chttp2/transport/decode_huff.cc; sourceTree = ""; }; + BEC6F387256B3E4432A0AD280EE694D5 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; + BED89936E3E1601D58E613534CBF9C81 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; + BED96D4B82C8DC0E276CD5432133E028 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/google/rpc/status.upb.h"; sourceTree = ""; }; + BEDA82C1E7BDF827622D625AF2FE273D /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; + BEDF435A95577DB26B95C4E9113FB960 /* xds_http_stateful_session_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_stateful_session_filter.cc; path = src/core/ext/xds/xds_http_stateful_session_filter.cc; sourceTree = ""; }; BEE886F9074070A439C5F5555307031C /* PhotosUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PhotosUI.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/PhotosUI.framework; sourceTree = DEVELOPER_DIR; }; - BEFE63DFBAF0FB4BF9EE8561C51CCD5E /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; - BF0A63226F2EEF6FDE8193BB2C443076 /* p256-nistz-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-nistz-table.h"; path = "src/crypto/fipsmodule/ec/p256-nistz-table.h"; sourceTree = ""; }; - BF0EC1614C31388E5CDB2395C147DBB2 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - BF2242C958907DC986BD82F39235940B /* FirebaseAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAppCheckInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FirebaseAppCheckInterop.h; sourceTree = ""; }; - BF2691A759F393A591D9D6E6504DA101 /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; - BF2B6FECD20BC6E4DFADF160D473AF05 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; - BF3A75880209DFDB08997AED7F480E75 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - BF4191C7CF957CCE4132212DA1F6AAD1 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; - BF44825C602E05ECEC0B36CBA2F0D60C /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/codegen/method_handler_impl.h; sourceTree = ""; }; - BF4CD0F3AAD5DF973CCFAEAA4341FC7D /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; - BF8B99B04E0EA16A0725A321CAB369E8 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; - BF8E30C19C12C72F0E35DFCDB40BBD15 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; + BEEA1D91F1A5CECBA15AAB31C6A2900D /* DeviceKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DeviceKit.debug.xcconfig; sourceTree = ""; }; + BEEA5E0B38A3AC1B42400F69FB7F740E /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; + BF0C3D1458AB9DFCE51B1EDE69B5045E /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; + BF19ED4520C949477951EA8107218BAB /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; + BF3A79A07ADA92BAF9E4CD2E8B5C55D6 /* base92.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base92.h; path = third_party/upb/upb/mini_descriptor/internal/base92.h; sourceTree = ""; }; + BF4086203A27EE251AA65F3C5267616C /* FBSDKBridgeAPIProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocol.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h; sourceTree = ""; }; + BF613118CD1E5060C1629E985255E81C /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; + BF6E91CBD4F387B0A4888CC7D356FB5C /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + BF7BF7A89A64D0E681411A7B2C503016 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + BF825F80971C4CD99524379DAF8E2986 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = abseil; path = absl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BFAF277A9398EE5D440DAB8DB5675839 /* resource_locator.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_locator.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c"; sourceTree = ""; }; - BFCACAB9652BFD1C2C0335CBCC25FB3C /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; - BFDB94A5273769B74893F966F015E439 /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; - BFE58016C7653BCE59599949EF685280 /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_ia5.c; path = src/crypto/x509/v3_ia5.c; sourceTree = ""; }; - BFE6334F2D8E926E578CFC649DD375E4 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; - BFEAF585235931BD346A3FCE5EF84435 /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/internal/enum.h; sourceTree = ""; }; - C01177EFD1127EA98EE2221F41D1BA60 /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; - C0162B78B36700AF54ED2FD4B6468D1F /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; - C01D818C25AD57E47812CC6D7958992B /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - C02BDB56DEC2AA0A1FA78A39B6AE6BC4 /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - C0384944EBDA7C4885CD043C0C3DC1B7 /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; - C038BB4467DCBA2D7F72A05FF197A4BD /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - C03B470D3EC8B243D0FFF7F0CE5CD10B /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; - C03F6349BA146B9444A36F1B2A77ED50 /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; - C04907A4708BC88E01BEBE0A3741E1E3 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/internal/service_def.h; sourceTree = ""; }; - C04F1A564DFA3EC956C17787811AB427 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; - C079B7F37EB75A88E9B5AC8A0020060D /* value.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c"; sourceTree = ""; }; - C0806A278269DC9785FCDFFC38AFAA14 /* dns_resolver_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_plugin.h; path = src/core/resolver/dns/dns_resolver_plugin.h; sourceTree = ""; }; - C08867BA63A421476B9EBDA61AD624F2 /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_averaged_stats.cc; path = src/core/lib/gprpp/time_averaged_stats.cc; sourceTree = ""; }; - C09900EC1AA88B436AF44716B989F2B1 /* FIRTOTPMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.m; sourceTree = ""; }; - C09B2F669DCEB0F2B72D29D502861FDF /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; - C09D4ED674359662D57BE06B01974254 /* ping_abuse_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_abuse_policy.h; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.h; sourceTree = ""; }; - C0A7CBE4F4DAAEE70ED3AD599A860152 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - C0B4FEC44D8996FF35FE89528641A9B4 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; - C0BE9610CA9A80B912CD6558426E539B /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - C0D14788684802295667C4E2D8E7ACE2 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/base/status.h; sourceTree = ""; }; - C0D41D7E20BD2AD96EB9F9159E7E3629 /* lightstep.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h"; sourceTree = ""; }; - C0D64E4DAC063D1D602D384192A1455E /* overload.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = overload.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c"; sourceTree = ""; }; - C0D7761792AF2FFCD70449B8840C6F71 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; - C0D846D2DBBC8F09A563A2AC4E3641AC /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - C0D9BE8D436FCEC974FDEA660A5506D3 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; - C0D9FB45BFBD628C64E9D8D6D1A6831A /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - C0E4C8B35ACCA6D12E460117B8678DCB /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = src/core/lib/event_engine/shim.h; sourceTree = ""; }; - C0EAD7B32DA88EB518D791BDF40B1708 /* stateful_session.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stateful_session.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c"; sourceTree = ""; }; - C0EB179AC98D0078EF4330CEF6B927D9 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; - C0EC18E2ECC9049C07F6BBB45E18E18D /* enum_value_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_value_def.h; path = third_party/upb/upb/reflection/enum_value_def.h; sourceTree = ""; }; - C12073903949CDF9D950C6B1CC4EA24B /* cf_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cf_engine.h; path = src/core/lib/event_engine/cf_engine/cf_engine.h; sourceTree = ""; }; - C124D9E81A0C2736EEE1C2214ADF4B87 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - C13BFBC97033E026755A35681D9BDABF /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - C13F39064B7ACEF00E66EA5AAD5E631A /* xray.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = xray.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c"; sourceTree = ""; }; - C14106A5AE9203A94DFF7F46CEC2AD8D /* custom_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_metadata.h; path = src/core/lib/transport/custom_metadata.h; sourceTree = ""; }; - C14A063B8246E70787AAC32CB64289F6 /* raw_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_map.h; path = absl/container/internal/raw_hash_map.h; sourceTree = ""; }; - C14D15B4E140A571E5B153F7FC78C5BE /* constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants.h; path = third_party/upb/upb/wire/internal/constants.h; sourceTree = ""; }; - C15BC6BBA4B13D028495C59B8183DF55 /* client_channel_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_service_config.h; path = src/core/client_channel/client_channel_service_config.h; sourceTree = ""; }; - C15D77034C4C497C977934CA2B074882 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/impl/codegen/status_code_enum.h; sourceTree = ""; }; - C165389BD31937CF9F05C6C2B2777728 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; - C165BD99C1A18E74FB93AA420CB08357 /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; - C165DD423D6DB27068B7AE1BB8D643C8 /* try_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_join.h; path = src/core/lib/promise/try_join.h; sourceTree = ""; }; - C16E9323DA01F144A99A8ACB7C02E4DB /* directory_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = directory_reader.cc; path = src/core/lib/gprpp/posix/directory_reader.cc; sourceTree = ""; }; - C175F75B38E43796AAECFA46BF6A7A1C /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_eventfd.cc; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc; sourceTree = ""; }; - C1780812A548FD1C7CC9A1B66E9D7ED1 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - C179F184CD9E03E11DF9E1B86964DB99 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; - C17DA96EC950647B5D72426D1E406CD3 /* CodablePassThroughTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodablePassThroughTypes.swift; path = Firestore/Swift/Source/Codable/CodablePassThroughTypes.swift; sourceTree = ""; }; - C18E15BF99BBDE85CAB8C047205A9CA3 /* grpc_tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_crl_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h; sourceTree = ""; }; - C1915F6A68C01E325ED7B52368994D1E /* native_windows_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_windows_dns_resolver.h; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.h; sourceTree = ""; }; - C1947919B594167EA34376275D5DC349 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + BF9C24CB9E870ECFCA3107CB49DFEB8B /* merkle.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = merkle.c; path = src/crypto/spx/merkle.c; sourceTree = ""; }; + BFAAAE1D8DF443CCF7EFC43FA6C67EFD /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; + BFACA2254E0783112F2B65DB8183CC62 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + BFC0B156BB2430DC8FC7D60B1F8A3F57 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + BFC0EC1F8A379CEB24BD6717D59D727E /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; + BFC10A21DAAD49CDD9FB655B37A36417 /* traced_buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traced_buffer_list.h; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.h; sourceTree = ""; }; + BFCBF4A12B1C29764899B5C7B1D5B955 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; + BFCC4F63F21D10180B14C88ACA2E5432 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; + BFD09AE34DEA633396CAF709518F0899 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; + BFDD37355CA7D01685821B7938D92EA0 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; + BFE134FD42A23BE052666E4E481C6969 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/resolver/resolver_factory.h; sourceTree = ""; }; + C003480FB5BBDD0DFB60FA578B39A444 /* listeners.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listeners.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c"; sourceTree = ""; }; + C005079393957EFBDA81927AE2AC561D /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = third_party/upb/upb/mem/alloc.h; sourceTree = ""; }; + C00B7E2B969837EF6C7CCC66D9BB09EB /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; + C0171D55184326B25A02C54FB93C3287 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; + C01BF6EAF6F00592CF5A49636B3F3F67 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + C034F04ABD8E20A06C2C5F3415D99F7C /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; + C037663A7B0D797D63F849352CFBD51E /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; + C03D6A2FC817E8497DD79B57A3C63B66 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; + C0429B1E86F7322CF73ECE977F4251EE /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; + C04417D143FD9056D6F4523C379F728A /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/windows/time.cc; sourceTree = ""; }; + C0479C3C305E8F5C7BE1357E2F702734 /* CollectionReference+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CollectionReference+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/CollectionReference+WriteEncodable.swift"; sourceTree = ""; }; + C047D7ECB4062BAB70E3625C4F0C256C /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; + C059A0BFCE76498885F4FF65EDF2B9A0 /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block.cc; path = table/block.cc; sourceTree = ""; }; + C0674BB224BA5583828F922C95FF22A1 /* FBSDKAppLinkNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkNavigation.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkNavigation.h; sourceTree = ""; }; + C0776099E6E100AF931314C78BAD9597 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + C09BDB3A57D041E627E09E89CEF253F6 /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; + C0B7B90A0F1F18FF3AE85B870AF61E4B /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; + C0B8A7D90FBDC61E51E7197024F6C75B /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; + C0BB7A627BDE88F6C62FE42729B637C9 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + C0BCF04EC09CBD90C47BCD73CAD47B70 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; + C0C2DC200C22CCBBEF8EB083FA2B9D44 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; + C0D1EDFBE42B2ED9F583E96FA5D864FE /* crash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crash.h; path = src/core/lib/gprpp/crash.h; sourceTree = ""; }; + C0D2EFE35BCA2F634C4F27117C81D8E9 /* http_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_trace.h; path = src/core/ext/transport/chttp2/transport/http_trace.h; sourceTree = ""; }; + C0E4FEAC9D7C60FB9108DCBD5224C8F1 /* FBSDKKeychainStoreViaBundleID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStoreViaBundleID.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h; sourceTree = ""; }; + C0F7911D65AE35ABB189D678A1B9C4F0 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; + C1076B34A6BD1AF912E096D5622B91C2 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; + C10AA26106F53319997F71F8CD9C487B /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; + C10B8017B7F9C09517B5511D2E6C5601 /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; + C10FF02FCB7D83B513D4CCADAB125E5B /* server_info.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = server_info.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c"; sourceTree = ""; }; + C114FD732940EA885AF8CC79046302B4 /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; + C11BBC90F9DDC8F99BB5DE5A5100A0CA /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; + C11C8B1B914135B195B679DE8015B0BC /* cancel_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cancel_callback.h; path = src/core/lib/promise/cancel_callback.h; sourceTree = ""; }; + C124A038594E1E83613BD48ECD0037A9 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; + C127C4A985337FDB3919BB5E9CFB2426 /* rsa_crypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_crypt.c; path = src/crypto/rsa_extra/rsa_crypt.c; sourceTree = ""; }; + C131EC6553F82A696D462F344470A836 /* proto_buffer_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_writer.h; path = include/grpcpp/support/proto_buffer_writer.h; sourceTree = ""; }; + C13B181085DFBB736B50F5CE321CD77F /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/load_balancing/subchannel_list.h; sourceTree = ""; }; + C13BC52E811A63E3CA58F6F41F76E1D5 /* rls_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rls_config.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c"; sourceTree = ""; }; + C13D3A5FA6BB6517C241B310DD4CF012 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; + C1400225EFEDBF3983060983B6F3B1EC /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h; sourceTree = ""; }; + C14BA25578E4A6913F922ED09BD06B1B /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; + C14E8722ED15F1717232A8D4D3BE2822 /* Firestore+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Firestore+AsyncAwait.swift"; path = "Firestore/Swift/Source/AsyncAwait/Firestore+AsyncAwait.swift"; sourceTree = ""; }; + C1503085DD31E93A7FCAEC7CA4A8AA34 /* xds_http_stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_stateful_session_filter.h; path = src/core/ext/xds/xds_http_stateful_session_filter.h; sourceTree = ""; }; + C167C10D459E66C58FF34A745A8FFA10 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; + C18580E78FE0348FC138C447B1CE21DD /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; + C185C3C4A026D1947B149F451E7E663D /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + C18917035DC292F34AA426F20238E700 /* FirebaseAppCheckInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAppCheckInterop.modulemap; sourceTree = ""; }; C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C19D2B0B2DD1F22EAA581FA16022A730 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; - C1BE9164E9BBAADC40C5EF50C59560CD /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; - C1D289F69EE14CC82115272DD58D44D1 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - C1D4FE31E80C8C0A0A7BFC7DF6C05F8F /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - C1DE5C2A6D35CB25745BFDB7A48CA438 /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; - C1F3CDD8294396447F0DD8804D68E14E /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - C1FABABFC0D575D1AD76BC87D48CABD6 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = src/core/lib/gpr/posix/time.cc; sourceTree = ""; }; - C1FCA53586F7B96DED355E673A4DBEEB /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; - C2069FCCE4BB91C236A136268E2776E9 /* LLCycleScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LLCycleScrollView-prefix.pch"; sourceTree = ""; }; - C20DA16B390B06BAA81E2AFAB7C687C1 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; - C20F999F457E62DAEC67EB2013A171E0 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - C217F97186C55EF28BC07D46B8683D6A /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_factory.cc; path = src/core/client_channel/client_channel_factory.cc; sourceTree = ""; }; - C21940E72FEC606B05D811350700C897 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZGifPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.h; sourceTree = ""; }; - C23D041B517F921790EB0C9CAD4BED7F /* lrs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h"; sourceTree = ""; }; - C23F3499F48882D07F825268C4E851A3 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; - C24B56C810848E6A9C295D018754D8AA /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; - C24F05A03B093E8D96B6C92E6983B4C7 /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; - C25108AE849257D59DB306896F9F7341 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - C25825E75B5030C7C650908148FCDE82 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; - C2595F47410E1895173C38E900BB0642 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - C25B51A0C4B53577BDC21E2AD8D56E51 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/event_engine/posix_engine/internal_errqueue.h; sourceTree = ""; }; - C25F190F4D963FF45A86F428113FE6A7 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; - C262F2478788C7D087CCD51C01DC9B8B /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - C269E8B7D1B059D3155601A01F1D00D3 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - C26E0D2533352F51DECF06D544D5B36B /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; - C277D361A7C3886C4CFC2599AADA4D5B /* ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist"; sourceTree = ""; }; - C27968FB484E22487BB5EB684E5EAA26 /* auth_metadata_processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_metadata_processor.h; path = include/grpcpp/security/auth_metadata_processor.h; sourceTree = ""; }; - C2849D81547D03DF1077ED201F424FE1 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + C19C317EE23789DF4D5A644B4ACA5D11 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + C1A139CABF1345C7AB47D0EDF513C373 /* stdcpp_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stdcpp_waiter.cc; path = absl/synchronization/internal/stdcpp_waiter.cc; sourceTree = ""; }; + C1A4093FB160AAD1D9C28AC62D5124BF /* stl_type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_type_traits.h; path = absl/strings/internal/stl_type_traits.h; sourceTree = ""; }; + C1BEAC7552BD02E6056BFD0001A7DE9A /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; + C1EDA0C0B8BAA37E94203A6AA7222F65 /* secret.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c"; sourceTree = ""; }; + C1F29F49366F585AD008162B3AC2AEB3 /* config_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h"; sourceTree = ""; }; + C1F64784461183417EBCE6715CEC5CB9 /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; + C2021B73E8FB399D99432EB4907CC38D /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + C210822C5822E7AFA0321FD15FA04A14 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; + C216F2477F3F19D22475E65BF38D254A /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; + C219A17F9B833E753FE50C3917DFFCE5 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; + C21F4FBCDD126D8DEE7C6C4F45E8ACB2 /* cord_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_buffer.cc; path = absl/strings/cord_buffer.cc; sourceTree = ""; }; + C21FB8CAE63667062A9FFCD9F1E0DF22 /* low_level_alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_alloc.h; path = absl/base/internal/low_level_alloc.h; sourceTree = ""; }; + C22D0F91DCF92AB6C35551796C84E5BA /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; + C23FC429DE5F1B663A7AF880B442D9C8 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; + C2475BA7C195E5EC2CB6EC170390794C /* deflate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = third_party/zlib/deflate.h; sourceTree = ""; }; + C24C574683A0F3719EC7FBBA4B5ECC43 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; + C2554838D2535910CD04FE671AFAA208 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; + C26097BF9AC4C0329B8D69169BF737E9 /* uniform_real_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_real_distribution.h; path = absl/random/uniform_real_distribution.h; sourceTree = ""; }; + C26EAE00B8B0051B9DC872680D118983 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; + C273A191287CCAA0979DC026DDDCDAD7 /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; + C27BCE59DF6D67A451241FD0F5AC4DB7 /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; + C2838AC26D907FC7ED5FAEE67F8D69B7 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; + C285AE5D8F22449099FA4272F7D0CFEA /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; + C289C8B3A09F5D68016A562BB56D2BBC /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; + C290C07B8B45B7FBD652507C72C0CABE /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; C298ABB78D9B05529B89D8322DB2E7B0 /* Kingfisher-Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Kingfisher-Kingfisher"; path = Kingfisher.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C2AE611B64D63D65987590265E5C9D64 /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; - C2CAD2C718340086346B800F82CEA25E /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - C2DB7FCEC58C74894DB824381DD8248D /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; - C2E2BCCFA2B7BCB1FCA78A5DD204A9F0 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; - C2E5DF80195DBAE01CD47E699E0AF3B0 /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; - C2FAC50D6B78B4D9FEAD39D3DC3563D4 /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; - C301D3C25F08154CEF930E86CEA15211 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; - C303180EFD0F780B35D824C29D06F4D5 /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; - C30BB248D20BBB43D15F6901FC8FE692 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - C318CAD301FC8E6FA4F89C31E9FAB941 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - C32AED1CD71A4DB84846824C96040FD7 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - C32B62C808355183D0EB0B124102FCA5 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; - C33178F43C6422FD7741547BE9A5C789 /* dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver.h; path = src/core/resolver/dns/native/dns_resolver.h; sourceTree = ""; }; - C33F2DBC2170BAFFD950AF0F3D41415E /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; - C348FDF926C27AE9A1898707E2929002 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - C34D1A594697A7519492E80E505EB6C2 /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h"; sourceTree = ""; }; - C351FAB6D0438CDA0C91B19D1DD94F7F /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; - C3529F7C4123F373EEC72143ABC4B3BE /* thd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thd.cc; path = src/core/lib/gprpp/posix/thd.cc; sourceTree = ""; }; - C35C2652375DAB2F10E27B4AE1E11D47 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - C35C85E93AD53C6EE61E93D656B58DC1 /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; - C3892E2DA01902D6BA64FF679C26D5FD /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; - C38D555E419ED488644CFE9DDFAD6ED2 /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; - C398907E8E553BFE759FB80854F33F13 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; - C39A869103799DECDB7FEB9517645E5B /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; - C3B0465EB4AD0139CE149C90B77EE9D8 /* datadog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h"; sourceTree = ""; }; - C3B81B2F9699D14C1D4919A74F949E47 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - C3B8D7C37F77B3B2D5A6A4DDEA3F7683 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; - C3B9EEF88483D909591152478FD34657 /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; - C3C6698CD9ABE53968B30B912BB9FD54 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/posix/log.cc; sourceTree = ""; }; - C3C77A805EA36913262D0D0D15BB81F6 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; - C3CFCE66FB4F00FC2DB631AD1F92891F /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; - C3DB0CB5BA6B82ED5AC30036F6A10343 /* private_handle_accessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = private_handle_accessor.h; path = absl/flags/internal/private_handle_accessor.h; sourceTree = ""; }; - C3E84A810B922C5E5935039DC365ACC1 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; + C29FCF8DBBB76BE7430CC5A863325805 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; + C2B56B87FA91A4376FAB5266E0A835D5 /* FBSDKBridgeAPIProtocolWebV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h; sourceTree = ""; }; + C2B74A748534F98BC745CBD75F49D001 /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; + C2B9AF78B2EF0009CBD1C37D7D4F544E /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; + C2C4635E572DF493EBBEFDC8D634FAB9 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_info.c; path = src/crypto/x509/v3_info.c; sourceTree = ""; }; + C2CF22CD0E7E1DA209DD8D89A4ABBBC0 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; + C2D95EA68B985CAEF75A8C5D1FBA0FA1 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; + C2DEFB5693085AB49883EF7EDDE68DF6 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + C2DF1C0DACC546EB144A618C6540447B /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; + C2EBE62B5A0F120AFFE695DDD15414C7 /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; + C2F55B31D13DB514BD1CFCF9B9F067EC /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + C2FED14A6D4E8B60B8B18EDE24196A00 /* systemd_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = systemd_utils.h; path = src/core/lib/iomgr/systemd_utils.h; sourceTree = ""; }; + C30552A34197B5AB208AC1E6E2777D47 /* fast_type_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_type_id.h; path = absl/base/internal/fast_type_id.h; sourceTree = ""; }; + C30F5AC660768DF8B1E16F4F0E0BF979 /* FBSDKCloseIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCloseIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h; sourceTree = ""; }; + C314694375FB1E4D6086EF5C217CFDBA /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; + C31CA087009AC09B3938BAA50A4AEA85 /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; + C31CAC29D50800B422B9F821B07AF454 /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; + C31D1A1A665B552149F2E16A0F3909BF /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; + C332ACE0A8730C8B7FB4F11680EDFB77 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; sourceTree = ""; }; + C336132A013B73D86C476752579EC1AB /* FacebookCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FacebookCore.release.xcconfig; sourceTree = ""; }; + C33A1DF63A0742EFF029EB8360BAC8F2 /* basic_work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_work_queue.h; path = src/core/lib/event_engine/work_queue/basic_work_queue.h; sourceTree = ""; }; + C33AE304FAB446DD68053447486601FF /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; + C33F442E931DF7A22FA14BE4F5DE9826 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; + C355760C363A281BB0BD8A82E2358359 /* sensitive.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h"; sourceTree = ""; }; + C35C03BA6312643C6C7EE82150C61586 /* grpc_method_list.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h"; sourceTree = ""; }; + C35CD22A9AB732639F261DB5E90440B1 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; + C36A89B21E39F42EF3BC8D7DA2664CDF /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; + C370963C483381F4614BB22C2B44C602 /* ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist"; sourceTree = ""; }; + C372C1B84BBE4BF321C0E001A1A86BE7 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; + C3774D4642EBA0F51BE2EE5F3D5B8417 /* FBSDKViewHierarchy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewHierarchy.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ViewHierarchy/FBSDKViewHierarchy.m; sourceTree = ""; }; + C38BA0D11326AA1FF198D0CA0BC3C8BF /* wakeup_fd_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix_default.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h; sourceTree = ""; }; + C38DFA042439DD398867D01A13E4C720 /* alloc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alloc.c; path = third_party/upb/upb/mem/alloc.c; sourceTree = ""; }; + C393828E3611A0514FE5822DE0D83FE3 /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; + C397224F9225070F9BE854D27B826E46 /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; + C39B0DB98A88997FBFFB8E04932610CF /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/posix/string.cc; sourceTree = ""; }; + C3B035ACBBDF40E70337E41D7C437224 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb.h"; sourceTree = ""; }; + C3B171F0ADED8B49E5F62E3E7E40D40A /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; + C3BB4C6C8F6713CEDAC409E6075B2669 /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; + C3CE467D40FD7ADC5242C107F093DB1D /* seq_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq_state.h; path = src/core/lib/promise/detail/seq_state.h; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kingfisher; path = Kingfisher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C3F9CBDDEA6D4E4F2609FB6E991F1532 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - C4031F92AD885E549FC655842B7C488F /* composite_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = composite_filter.cc; path = Firestore/core/src/core/composite_filter.cc; sourceTree = ""; }; - C40CBAA8624C1351192075B83DBCB11B /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; - C42B842C7A7C5DFF718CB470313303F0 /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; - C42C3734FCDC583B3C656D4595E83F3C /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; - C42EC13FC0EFBB5C03E29949F400CD7D /* Promise+Validate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Validate.swift"; path = "Sources/Promises/Promise+Validate.swift"; sourceTree = ""; }; - C438C7908FB710F26BED066865C23720 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; - C44019501FF2F21C08D2ED5F9C53DBFB /* FIRCLSCallStackTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCallStackTree.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.m; sourceTree = ""; }; - C45467330737E951569EBB61BA39D291 /* work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_queue.h; path = src/core/lib/event_engine/work_queue/work_queue.h; sourceTree = ""; }; - C4551155FB99BC8554E490BF2E8ECEAA /* map_sorter.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = map_sorter.c; path = third_party/upb/upb/message/map_sorter.c; sourceTree = ""; }; - C4592A13AF3ACE60F08D9B79788442AE /* static_stride_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = static_stride_scheduler.h; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h; sourceTree = ""; }; - C4599F8974367F8CEB413CA837AED928 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - C4603A0BAB75FFA1E81801422D6ACE79 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - C463F36AF2DA8E184580BC09662B59EB /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; - C47215F748E7BC77AB4E03F90F17357B /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; - C474B9386670F91EE9D7CA2C907B7C57 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; - C47FE53539A219E4F16D3707F8B7B749 /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h"; sourceTree = ""; }; - C482D451BCF333482DB5BFCEA19970FD /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; - C48498678FCFB03C3703271B970B46BD /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; - C4AA00EE60DE5CD3B58CF22CED0E5DC5 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/crypto/des/des.c; sourceTree = ""; }; - C4C324721AD34CBA506C50F5B58337EB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; - C4D094A9575BDCE3EA33C90074F8253A /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - C4DA08743B49E4190F1B319B59C7EA31 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - C4E82EEE9943E67E99F4FA87863B2C45 /* builtin_curves.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtin_curves.h; path = src/crypto/fipsmodule/ec/builtin_curves.h; sourceTree = ""; }; - C50FE6A65CB8B12E8CE0BA1CEDA1995F /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; - C51027A952F55B245D7983C522D85A2A /* channel_create_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_create_impl.h; path = src/core/ext/transport/binder/client/channel_create_impl.h; sourceTree = ""; }; - C526226195096608CE917308E505EC19 /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; - C52F2C782EF863DD3EF0A42593DBB377 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - C537D4BB561ACD0CA314DE83CFE7C2EE /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; - C54F2919849C10B8592EC5F87734035F /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; - C561DFB8B0126C8920FD36CFF85250C4 /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; - C568CEAEA758D82FA8B2BD71011E8E14 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; - C57091A6FA7896902B922B29199A1E21 /* SVProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-umbrella.h"; sourceTree = ""; }; - C585307E7AD431B5049797C9C6499ADF /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; - C585D2DC57DC3E873F790AA4A4C341B9 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; - C58B05232C8BF28153518A07E8845C0F /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - C59F0C46E2BB0C4917C75289013369DB /* FIRAggregateSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateSource.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateSource.h; sourceTree = ""; }; - C5BA764CB2485AF78E965904801F9BAA /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; - C5D853C737A2F31D574C9C31C9F441B8 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - C5E33D5D3575A7A88B037D0F0D8D797C /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - C5E5753156238D4D54BA97C023B5A87C /* FIRAggregateQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuery.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRAggregateQuery.h; sourceTree = ""; }; - C601B5F13E6E8BB882A1167DD11D8972 /* filter_state.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = filter_state.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c"; sourceTree = ""; }; - C60EBD02DC4B04EAB5A194FCD1881FD0 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - C619A52FD85BD46515C74A5A00CD939D /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - C61ABA763E3281249AF07800391747AC /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - C62331A49FEF5B78C366AF4AEC34A5C4 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - C624EFA3F41088EAE00EACB60FF1076F /* generated_code_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generated_code_support.h; path = third_party/upb/upb/generated_code_support.h; sourceTree = ""; }; - C6255BC71C9567AC99FCD523E9C9E06B /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - C627B69D67B384A1062421C727B35751 /* CollectionReference+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CollectionReference+AsyncAwait.swift"; path = "Firestore/Swift/Source/AsyncAwait/CollectionReference+AsyncAwait.swift"; sourceTree = ""; }; - C632DD4E7C4574623D384D4058B461D7 /* metrics_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h"; sourceTree = ""; }; - C63FF0FF43858C063B5A49A2B461FA8C /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; - C643B6DCCF67B8EDA091ADAD8B33B217 /* route_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c"; sourceTree = ""; }; - C64AB1511BAA1C03B21F86C06CA0C925 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = src/PrivacyInfo.xcprivacy; sourceTree = ""; }; - C652E352C5730DBBD43A6242DC71B49F /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - C65A6D788DF89E247AD2DCCE6A65C436 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - C65DAFB716A85E9AB3D5E43632DE56A6 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; - C684FD7B093D5925DC786A6380A9C109 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - C6866434CB12F8825030054F80D6C7D8 /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; - C6918F11A288B77C93095EC1C2F84B23 /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; - C69DC47B5A4327716C76E74D49320BCF /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; - C6A52AA6EF52C19D5A273312A4DB9E84 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; - C6A9783A69751C35008780E0FDEC784C /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; - C6B060F4B72C6DEF7D02698AB6AFFB4E /* FirebaseSessionsError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseSessionsError.swift; path = FirebaseSessions/Sources/FirebaseSessionsError.swift; sourceTree = ""; }; - C6BA8EA121F23E4227868B89E98A82B6 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + C3FC18F2A63BFCE44F4A715D6F6D89E2 /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; + C4008C420A6A9E897FDCD02911BCB73F /* RCAActionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCAActionProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCAActionProtocol.h; sourceTree = ""; }; + C402DA860E2803F930F4AFE6E5347A74 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; + C407D28C6F7B5479BEA274DD4545D699 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + C418586DF1EC3AE525940F46D7A93B5A /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; + C419BF9A35E1769C3F240F7E3463D611 /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/reflection/message.h; sourceTree = ""; }; + C42891D51C56A8C09151F3D8E30C004D /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; + C42A1E4EE0CAA197AD5154F679BDBED9 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; + C431273A02A499F73F55EC86D643A06B /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; + C431A81DCBEB762F9F872E7D98714F3B /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; + C435A66B39C690C53578DAE933D7FA82 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; + C4390F9661FD6C5C61A10718F3D017FE /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; + C43E0C8AF18DE62EC77E726E4BA9EBFB /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; + C44432B95CFCBF335B90F777E1AFEA91 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; + C44797F85CBE3E48C9669E4EBC5549D4 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + C44E43E9177CB83760C6C8163F86C3FC /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; + C454BF63A0D72F9965FCCCE24D87100B /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = ""; }; + C45570006BD7A0807F70C19B48D1202C /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/cel.upb.h"; sourceTree = ""; }; + C463F3320D453A08BEB89F8B74933AC4 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + C4697ACBF6B857A5D9177A7241D4342F /* secure_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_auth_context.h; path = src/cpp/common/secure_auth_context.h; sourceTree = ""; }; + C4959451FB8E91661B69EB3502FE675F /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; + C499F2589A74121694EF4777C81E16C7 /* inflate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = third_party/zlib/inflate.h; sourceTree = ""; }; + C4A34B8FAC16E7F27BB547E62DBF2398 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshaker.cc; path = src/core/lib/transport/handshaker.cc; sourceTree = ""; }; + C4A461E3F98B657FC6E0A2940DDC29FB /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; + C4A8F516D5197A9010D1054716F8F6E7 /* grpc_tls_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_crl_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h; sourceTree = ""; }; + C4AB9CF96CC38DDD6A9A8A1CFB5CAD36 /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; + C4B055AC9A2DFB13536ED72CC07FE890 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + C4C2AA941CE78C012AAD80D466313AF2 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; + C4C556FED90344CED6449DFFC8B6197E /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/call_op_set.h; sourceTree = ""; }; + C4D49845E9DCBEF489509805BB7022EA /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + C4DEBEDAE6EF18EB7BFA479DAB53780A /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; + C4E01E8D336493324C98B35AD4E89FD0 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; + C4E8D94110232E7FA5FE2602D231A19D /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; + C50049D8BA304480C09FA60E2F3BD41D /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; + C50606E97EA31EFC322107651E9E70ED /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + C513A1BC1CCC6FDA02A6344F32892FAD /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; + C51D257794774E339F2B46646D7BEE8B /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; + C522D56640F59B47D49F3A0BFE65D7AA /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; + C523A39CE073786B38E8804E5A5E0AC3 /* client_metrics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = client_metrics.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.c; sourceTree = ""; }; + C52A14E3421C29A12DC02885AF56F0AB /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; + C52B4800703AB8C0DDA7A051EE6BAE75 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; + C53437037A7B05B6717A650C59AF0A72 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; + C53762C49426063A9A64CBC55A2A85E1 /* ApplicationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApplicationInfo.swift; path = FirebaseSessions/Sources/ApplicationInfo.swift; sourceTree = ""; }; + C53DBF44197793C22DFB118F19789EAC /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; + C540AB2576EB88B152B97FFDF369082A /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; + C5431B1053B69CCAA746A445CC077F85 /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; + C5492B04E75A566050A939B43D772175 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_extku.c; path = src/crypto/x509/v3_extku.c; sourceTree = ""; }; + C565EDE80A45E49DE25870DC72CAFA4B /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; + C56898DAD60F277E125157F471CF4B14 /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; + C56A8E8C3806C4028DE7E265DD9E52DF /* create_channel_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_binder.h; path = include/grpcpp/create_channel_binder.h; sourceTree = ""; }; + C592929E97A2CBDC2AA60124D58F198D /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; + C5992CC021F279999EC3A629226AE1C0 /* FBSDKEventBindingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKEventBindingManager.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.m; sourceTree = ""; }; + C59F7A07308B84035C60CBA4ADE93FDD /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; + C5BA945DF73C036474BC0DDEBE96D2CA /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; + C5BD288A4F5A10D382D02744E56DB563 /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; + C5BDA3D1DA764F7AC9F21FCFC3178851 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/internal/field.h; sourceTree = ""; }; + C5D0D9EF104A926D047786C97744C121 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; + C5E1AD022219F667D2C7EA38101AC5A4 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + C5E644C2F1679DF5AC9DABD0263F8229 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + C5F46DDF01A1FD1D8815EADD58CF8B63 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; + C5F94B3D29DD58BB6F5F3094A2B19EC2 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; + C606C3126F8529C7CA305A211537F54E /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; + C61702CF2B33745838A4F14769B3F473 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; + C636D0BAA6C930BFEE5C22A8DF56A520 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; + C6424967034F9432413FDA9BFC632E92 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; + C64433550B0A02A048DB7EDE5E949DD4 /* empty.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h"; sourceTree = ""; }; + C6454F4815982BD2E1ED47976337CB28 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + C6488F90B0B0A6C016A9DA067888E5C6 /* thread_count.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_count.h; path = src/core/lib/event_engine/thread_pool/thread_count.h; sourceTree = ""; }; + C652FE28061B2D6FB43DBE2EFE35F511 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; + C6536A171024F9A5F2CC10476E7A36D5 /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; + C6550250CE95E675EB189FD053D7287B /* wrappers.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h"; sourceTree = ""; }; + C656D1A3FFB304188BF8E42EB2328096 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; + C65F188DDAD6C1610265ED6A316E6B37 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; + C663CC81BFE9772BE7403B9F12B04EA9 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; + C66607840F6BA454D844FDB27154E3A2 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; + C66A222ADFF6B519402190790922C698 /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; + C67675B326D5A7272C2DF85C7000C0A8 /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; + C677502B629179DA6233E05762510421 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; + C67A8F1B17E09F955E3B2DD7CC0936A7 /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; + C68A21979A5701E0762F785062A91715 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; + C68D1872B2CABC7F9091677542BF6591 /* filter.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h"; sourceTree = ""; }; + C69321C45A392236004A842A701CA954 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; + C69ED9EC8E710968C328AF9E75E098DD /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; + C6ABDF795A7707C057F692B4F5EC67E7 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + C6AE6B3FCC5E18BF443F021FDBA2B3B7 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; + C6B2A447E7B5AD0DDD1328ED916C11C3 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; C6C0434B66B1A1EA497F81126A2C4DC6 /* FirebaseFirestoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseFirestoreInternal; path = FirebaseFirestoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C6D0DA33BEB53214E8C1844A491FC4C1 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - C6DECB56E4CB068CD40A65D3038479DF /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - C6DF9341678074928BCC2DFE10495C02 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; - C6E121387666BA2A4A478A13897748FF /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; - C6E54A39517DF2E951E70A3E768C6800 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/message_def.h; sourceTree = ""; }; - C6EF64F064B15AA63A654922071B0EF3 /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; - C6F95F8143FE8EB12B2E42D9D655B99B /* ping_rate_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_rate_policy.h; path = src/core/ext/transport/chttp2/transport/ping_rate_policy.h; sourceTree = ""; }; - C71CCF03FA0DEA38FE829C5B831D0FB7 /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; - C7282473988DCD943BEB870737824236 /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - C732411E52EF3E4DC8D15025D94AB4F1 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - C73A92A3D269F85B5F08B3DAF9FECABD /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - C73CB90FDF89359C038EF121CFAD40E2 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - C73F1E9F5635FCC7AAEED4F49F790A46 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; - C74D6674677DF5A60E601B07911724A8 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.h"; sourceTree = ""; }; - C74DB6726841E441F0258BF6A4E58FA0 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; - C76722EAE959F35EAF11A9C8F13E2B23 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; - C76D27C82D0B8BB8410B36E9EB77CCEE /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; - C7727E0EFE169FE5670BA681B4890264 /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; - C78376C5F1F8D300B8F47F31037DF507 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - C797A36D7686B718F26130C0A2584668 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - C7A031356235358DA66ABC273C15376E /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; - C7A7D23CEAE78DE9268CAC2844486510 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; - C7BC8510A195B2F5B0B92A42867BA859 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - C7C5DC24E1FA7C2AEEDC84D88F332759 /* ref_counted_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ref_counted_string.cc; path = src/core/lib/gprpp/ref_counted_string.cc; sourceTree = ""; }; - C7CCDD42E37FC29B977649D952A5DC8F /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = round_robin.cc; path = src/core/load_balancing/round_robin/round_robin.cc; sourceTree = ""; }; - C7DCC04AF1C810FD42FA6AEF28D75636 /* EventGDTLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventGDTLogger.swift; path = FirebaseSessions/Sources/EventGDTLogger.swift; sourceTree = ""; }; - C7E2FA72302094E2A0D9CD2F104C1816 /* grpc_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h"; sourceTree = ""; }; - C7E60F2027EDA9FF1DBFB9AF5A634EDB /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - C7E81F4F509597B27D0C8E47F7C949C9 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - C811D756A27952756B93119E0BB1B395 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - C8383471CE9356ADEFAC9AF109224D1C /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; - C83C42C32CD93DC5DF0F9BC6104D0D1E /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; - C8483BB5E2B6D577B5AEABB82B08441F /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; - C8496FCB62F80ECA26094B1A49A54E69 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/arena.h; sourceTree = ""; }; - C856F3DF27490E0D64FC46CAD27DB83E /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - C85EED01882DF8D046C53A2B926D5F71 /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; - C8866AA1151878CA8B3F983C81F3BF2D /* filter_state.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h"; sourceTree = ""; }; - C888C731A8BB5A88218A788E136E80D8 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; - C88A194950D04730AD3241B3B94E2D87 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZVideoPlayerController.m; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.m; sourceTree = ""; }; - C88E817BA291176DE2E15D2C48D278B5 /* versioning.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c"; sourceTree = ""; }; - C8944DE2EDBF57302FA1802C6FD7CC53 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.c"; sourceTree = ""; }; - C89D49ECFE3229F3C92A7776DC305465 /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; - C8A47317E9CC2EC634C46C8406DA76B6 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/load_balancing/subchannel_list.h; sourceTree = ""; }; - C8AE9F4A8EF3CBECB506EF85FC60E63C /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - C8CA7F81397569FCE09BB55D1F139501 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - C8ED4AC2C7DF185CFDB2E727A4B89ACB /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; - C8F31DD387F1B89BE48E2F37675F6045 /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; - C8FE343959E53DB84CDD5BC43DDB2B68 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; - C90058BB94ECFB6B899BF59774FD0AD8 /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; - C900601CD49D34C4A66BCA6D014EE095 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; - C90C398B456A6033B1210F26E251B471 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; - C90E462E6BD24B3C5EBC223D795FA37C /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h"; sourceTree = ""; }; - C9108CFCB84B8D97CB8355A2487FDDDD /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - C913762B8A472019A86FADC76FF9405A /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; - C91AE58E8D6CE6F4C0F9BC4397840987 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_resolver.cc; path = src/core/resolver/binder/binder_resolver.cc; sourceTree = ""; }; - C91DFB2A46C3063B7CDDE38702F1498C /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; - C92C331DBDE8A548D03C2ED559AEC7A8 /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; - C93587DB406444D437C27FDBC98FA66A /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/wire/decode.c; sourceTree = ""; }; - C93F18BAD134A8746B93C25FC1574DAB /* link.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = link.c; path = third_party/upb/upb/mini_descriptor/link.c; sourceTree = ""; }; - C94E974D34976B7FB9F076236BC73521 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - C952DBE8547BBFA78052A917BAEB04A1 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; - C9554CB37A09911673688EF8E7694A61 /* cf_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cf_engine.cc; path = src/core/lib/event_engine/cf_engine/cf_engine.cc; sourceTree = ""; }; - C959C5C96A164C98F71DFC3331CD075F /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; - C95A2DDB39D010A65B8C19BC910BC74C /* skywalking.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h"; sourceTree = ""; }; - C96CCB9A9363E938CADE5ECC455AAF94 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - C99678D1D61C2569A59617714247C03F /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - C9A59E61E8C51DAAD326839392B6E47F /* GDTCORMetricsController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsController.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsController.m; sourceTree = ""; }; - C9AA63B894BF76BD5D614024B0053D43 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - C9B32D1586709778B640CDE8222CB5CF /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - C9B7E139E5B065C5FFFEE3AA2C588871 /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; - C9BAFF4928197B0497CF8A2BE368A5CA /* encode.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = encode.hpp; path = third_party/upb/upb/mini_descriptor/internal/encode.hpp; sourceTree = ""; }; - C9BB1FF8B9A34F5B5A8D2F60C0CD9624 /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver.cc; path = src/core/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; - C9BBEEA503839C8CBB06D6D98E42953D /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; - C9BE8E16D3E7E028B77AF7A0CEC238F6 /* vsock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vsock.cc; path = src/core/lib/iomgr/vsock.cc; sourceTree = ""; }; - C9C1084866662B12A9210105BA47B2C1 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - C9C757EBF98072C2040A0E7C45B277CE /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = absl/crc/crc32c.h; sourceTree = ""; }; - C9CD3AA0E26E19449E6B4AA33D821960 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; - C9D2FD50ECB21A9E5D4F9063575D7538 /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; - C9DD55BAC6CCA072A3A11BFEE1538646 /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; - C9E035A37F58FA10D5CF67053544A588 /* cpu_aarch64_sysreg.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_sysreg.c; path = src/crypto/cpu_aarch64_sysreg.c; sourceTree = ""; }; - C9F785529CD693B84DD8B17D7A357096 /* directory_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = directory_reader.cc; path = src/core/lib/gprpp/windows/directory_reader.cc; sourceTree = ""; }; - CA138C2C40C5D5FD1A932A10BBB8316E /* zipkin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h"; sourceTree = ""; }; - CA31AF85377ABDA1CC7445C814D41396 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - CA338B4AE4EF61D296AE0C8748532C70 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = ""; }; - CA3EE28933BBE5CC605293280C611EB1 /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; - CA5578246CD26EF9D756E304A26C6673 /* DocumentReference+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+Codable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+Codable.swift"; sourceTree = ""; }; - CA570878CFDB7BD59897DDB87FFB43BE /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - CA6C07109E071FA6F5847EF4BE130E9A /* CrashlyticsRemoteConfigManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashlyticsRemoteConfigManager.swift; path = Crashlytics/Crashlytics/Rollouts/CrashlyticsRemoteConfigManager.swift; sourceTree = ""; }; - CA731C76A01BF178AB413A8B02368C82 /* node.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h"; sourceTree = ""; }; - CA75C36ADE8F354E13F71641C3AE8C64 /* FirebaseSharedSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseSharedSwift-dummy.m"; sourceTree = ""; }; - CA76251189324B7B8AD980E3E8CC1D0F /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; - CA78AF9872652D1B13F77E82E8A07C96 /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_resolver.cc; path = src/core/resolver/xds/xds_resolver.cc; sourceTree = ""; }; + C6C8F4C677540277F394FFBE23173EC7 /* grpc_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h"; sourceTree = ""; }; + C6CEDF96C8BECA13FC87960768225317 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + C6DB15F26B5599F886315F481D1DBF12 /* hash_function_defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_function_defaults.h; path = absl/container/internal/hash_function_defaults.h; sourceTree = ""; }; + C6DBFE1E6CC27B6F12CC8C3B1272FDE6 /* getentropy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = getentropy.c; path = src/crypto/rand_extra/getentropy.c; sourceTree = ""; }; + C6DC9A7BBADC6952CD63A55E800F7EB0 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; + C6DDA94EE7AE1D4D6055648D2B9AC0A9 /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; + C6E020E1E84316E92D6E005259196D4F /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; + C6E8CC0B0AE2E513548778CA93C908D6 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; + C6F8197C509EAD17B79FBA530CA0B043 /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; + C6FD118F4F3D872745E806BBDC2E2F8F /* FBSDKLogo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h; sourceTree = ""; }; + C71F2354B188E3F2F992FE83C3EBF280 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; + C739F281A89E8C053EA6B587FD695427 /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; + C741F6AA0300B09B31415B2285B604DA /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; + C74967D9F54E8E2EBA6BD56CCCB65ABC /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_int.c; path = src/crypto/x509/v3_int.c; sourceTree = ""; }; + C74D600204969BD8418F8E220FA5F62E /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/mini_table/extension_registry.h; sourceTree = ""; }; + C74D74B5DAE1A62E955A937F4FEDDADB /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; + C7563823501BBB41A695FF9398176842 /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; + C76C05E12E195CA6D06874CE23980D35 /* map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = map.c; path = third_party/upb/upb/message/map.c; sourceTree = ""; }; + C7811AAF98DC97B3D6544E943B0A71C4 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; + C782415902A810008D89769FE2A086C0 /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; + C787CAE7159577BFD3BB4D8CB6B634C1 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; + C7A0885C8B3624DC8E37B1B86B32F3E4 /* message.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = message.hpp; path = third_party/upb/upb/reflection/message.hpp; sourceTree = ""; }; + C7B3D34D8BDFD1DB24630F2852EB011D /* pick_first.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h"; sourceTree = ""; }; + C7BFE2F061AEA02AD29426E477844710 /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; + C7C755C35E92A951ED207A6856EAC0C2 /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; + C7D3682F74104E401F24F76C940E0942 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; + C7D3D265F8B66869730FAF0B2C1FC2A4 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/method_handler_impl.h; sourceTree = ""; }; + C7E1E3D98D5B32C50F03001A1E013F9D /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; + C80BEE071985078C2E00908BD118C839 /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; + C810CC70786E8044BA3807F6F150F646 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; + C813EB7AAE4276934E734BB967B28645 /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; + C82031B0255609EA7E40093773B2AEE6 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; + C8263E7A069243881A53EFB1AEF8593C /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + C831018E2E0EFBD4B5C4CE1E7CB043CD /* basic_work_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_work_queue.h; path = src/core/lib/event_engine/work_queue/basic_work_queue.h; sourceTree = ""; }; + C837C6591DC1C3026E98DA97B6C441C6 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h"; sourceTree = ""; }; + C84505D42524DDBE316D6BC328F474E8 /* crc_x86_arm_combined.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_x86_arm_combined.cc; path = absl/crc/internal/crc_x86_arm_combined.cc; sourceTree = ""; }; + C8502B033ADF6165A4EBCA4473E96E84 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; + C855CBEDD9DF6F6E3FC6D8B6A6D12943 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; + C85DA2ACEE5E86C9DFF1E65866B0FD44 /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; + C88DEDA04B03624DD635AEAF37209E30 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/resolver/fake/fake_resolver.h; sourceTree = ""; }; + C88E640434F6F36A7902A052E23F3A31 /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; + C892A65BB7E8304FB2E659B82BDEDBB0 /* down_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = down_cast.h; path = src/core/lib/gprpp/down_cast.h; sourceTree = ""; }; + C8C2E1B79955494BD110BE3AB138D529 /* ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; sourceTree = ""; }; + C8C8604C2EF5E2350262E257A84A9614 /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; + C8D69B0B65106CCD1AFE8585EAFE5495 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; + C8DC95569442372DD857604A95DB3028 /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; + C900FA14FE6A2FA2F2D52377120D9EF2 /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; + C906DFE8FC2D0D80CFD86DE5805311B5 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; + C91963557AB77D550724A8A2675C4916 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; + C91B90B0871D3277820AD583B0E198F1 /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; + C91E8243BA28019930F3896DF6A738D8 /* health.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c"; sourceTree = ""; }; + C9237AF0E982CAF65E382E0E0033B191 /* usage_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = usage_config.cc; path = absl/flags/usage_config.cc; sourceTree = ""; }; + C9359F072C2E5E0123094B282F6D1215 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; + C9360AEFAD407A4CC16C8003870BF137 /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; + C94692E649EE9DB84264235FB14AEB1B /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/security.upb.h"; sourceTree = ""; }; + C94BAF0E58BDA25270CB95F46DC58A2F /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/generic/async_generic_service.h; sourceTree = ""; }; + C953A912856DDEEBD34389E4F0F682E8 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; + C96244309F7BB3776A0C645E78B68EA6 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; + C9628B1F18B1682910970BEAB83B6D32 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/mini_descriptor/decode.h; sourceTree = ""; }; + C9681612CE5F7F97BCA18BDB75B6E316 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; + C9817CF458CFF968B6FBCB5F8064B01F /* ServerTimestamp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTimestamp.swift; path = Firestore/Swift/Source/Codable/ServerTimestamp.swift; sourceTree = ""; }; + C9854A6EA2CFA14B25D6619D3656E478 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; + C998A73F1F3811975FB98779E37D4603 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_posix.cc; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; + C99AF24C539B90017E5B067665D11B87 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/client_channel/retry_throttle.h; sourceTree = ""; }; + C9A7A9CA0ADB1EEC84310329042FC8A1 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; + C9AA4B068482C1B7DA4AB991E3163AF8 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; + C9ABD5BE8C6866F0D9238DBEF1975EEC /* xds_health_status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_health_status.h; path = src/core/ext/xds/xds_health_status.h; sourceTree = ""; }; + C9AC03C662D30AA08401DB2790D789A1 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; + C9C59E77C124E66CA666FEC4F1C8AAFE /* asm_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asm_base.h; path = src/include/openssl/asm_base.h; sourceTree = ""; }; + C9CFD920B8C0BBD81BA33FEFE806759B /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c"; sourceTree = ""; }; + C9D6255D5DE62C3088F607BB62729913 /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; + C9E09DE2071F3742B960815F41C604C4 /* value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.h; path = third_party/upb/upb/message/value.h; sourceTree = ""; }; + C9EBAE7108E63A9DF04BCA3AD9B3953B /* timestamp.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h"; sourceTree = ""; }; + C9EBCD971941691F4651B03B772EAAED /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; + C9F932B91029090606D7717E3CF22088 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; + CA034FE2D4B71F7F3B895CAA72FFC065 /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; + CA05C204E9F1EC12667621EC5190C525 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; + CA0C13D1A271597F5413A031B66E9D89 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; + CA15158CFB3085FC06BC980602167D5A /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + CA210656FF735DF747E77DBA993AA4D8 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; + CA35DCD18E305A1F2DC4885E6A86F2ED /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; + CA3DAF3C67CC39DDC0DEC7A38BCF864B /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; + CA4C327C273139A3733F96E498F1E6F0 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + CA4F0C1BDA454DF890A3D16551E4E1C5 /* FIRCLSContextInitData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContextInitData.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSContextInitData.m; sourceTree = ""; }; + CA56E7C9DECB1E588D7A82DE5D4DE08D /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; + CA5DA36875F90CDDBBB6E5D417C4A63C /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; + CA6F1BAAF31BAFE943D722E2250203FA /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; + CA7992CE00D7595AC95828A6E786A1E9 /* FBSDKTimeSpentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTimeSpentData.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.m; sourceTree = ""; }; CA7B7E335012C96A973B5484854A54D9 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - CA8C9158B9179EA8D5891E5BC0C8CBF4 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; - CA94A9C563D450B6E0935837476E0E36 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - CAB67E3BD0A415E965434A1D946E0E70 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; - CAB7C09D06A8D1E8005D38CBAAADCF47 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; - CAB8D853612A0DB63DD4CD996E83FFE9 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509/ext_dat.h; sourceTree = ""; }; - CAC1A1BACCE579E33672F8927136D636 /* if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if.h; path = src/core/lib/promise/if.h; sourceTree = ""; }; - CAD03E88F8434F776944F7E3240A0131 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; - CAE774C59DD71AE8E9FD62A5C2A05726 /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; - CAE88266BCE228BCB5AA5F5967AA5C56 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; - CAF1125A760F02794A400E0C5C07A1B9 /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; - CAF399DC69F1A99BC086B6FF7668EA59 /* event_poller_posix_default.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_poller_posix_default.cc; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc; sourceTree = ""; }; - CAFF4A4C8CC10BC81C7615FC00F21036 /* FirebaseFirestoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestoreInternal.debug.xcconfig; sourceTree = ""; }; - CB060A9401770D78AE99D19F78E462B8 /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; - CB0EA04DE1EF452033480844DA356595 /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; - CB16C4AD6DD2392A4B4C9D648AA99CD1 /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; - CB17A351687619B6E905C7F757A689B1 /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; - CB271E0FC5F5B8F86534B7BB27969AC8 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - CB2CEE074615DFDE09C4C218FF7DAD55 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - CB35A86EEF79D279A2203550467CF5BA /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; - CB3FCB97C62A59A1EFC69C5A5D3E5FA0 /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; - CB442CF77FEFBB7CB158A6CDA1114956 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/internal/extension.h; sourceTree = ""; }; - CB49D17E39CFD7A959DD3DEB1E70E5A0 /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; - CB4FCCA197BF1E332F0DA61D75577EAB /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; - CB537A2B3D8A1EFC2409FFB0CC695BF3 /* cpu_arm_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu_arm_linux.h; path = src/crypto/cpu_arm_linux.h; sourceTree = ""; }; - CB5F7243AE4E43C58A532B75CC26791E /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - CB6B880940B27AE1554CB9B61A998EC6 /* legacy_compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_compression_filter.h; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.h; sourceTree = ""; }; - CB6C825BB1326BDEEAACCEBDF2599EDF /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/event_engine/resolved_address_internal.h; sourceTree = ""; }; - CB72F5483B0C5091F57121C55C40E1BD /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - CB736E1DFA46F3FF7994A7FFB6ADD683 /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - CB75970F75C3611B83EA9301E25B7A41 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; - CBAA681CDA069CA1AEFB8A6C1D1EB1E1 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; - CBCC66DAE7C7C28C0E7B935D23B6D378 /* call_tracer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_tracer.cc; path = src/core/lib/channel/call_tracer.cc; sourceTree = ""; }; - CBDC5F0507CCD701A09618811C663DDC /* endpoint_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_list.cc; path = src/core/load_balancing/endpoint_list.cc; sourceTree = ""; }; - CBE688B5FF839CC127019AE65C82ABCA /* http_proxy_mapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_proxy_mapper.cc; path = src/core/client_channel/http_proxy_mapper.cc; sourceTree = ""; }; - CBF27F091BC0E0770EFDC68A308A13F6 /* opentelemetry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opentelemetry.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c"; sourceTree = ""; }; - CC0A7C77C515D20AF7DD7C98B121A3CA /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; - CC0FE421ECB2FADF9264EB98D218A22F /* GDTCORMetricsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsMetadata.h; sourceTree = ""; }; - CC119B49AFD9E43E18347A60193AE67F /* common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h"; sourceTree = ""; }; - CC1B2D8E81F571D79794A259A964BB85 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; - CC1CBC41D108E277644F0723ED22ED87 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; - CC28B3D9CF4742AB7351F97E541BF28A /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; - CC2ABAA39AA35F06F8BC0859882F8D8D /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_connect_handshaker.cc; path = src/core/lib/transport/http_connect_handshaker.cc; sourceTree = ""; }; - CC2EB1C769307BD22C89242B10B4A9BF /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; - CC2F86EDD170643F034AA9A6C4917E70 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; - CC3105103C49EAD939EDA54B473E1DA1 /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; - CC3D6239612D695F69F25D237B24DB39 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; - CC4C8AB9215099E18C0F83EF9256F4A4 /* filter.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h"; sourceTree = ""; }; - CC5B017255A59AA372787C7F0A19AD3D /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; - CC5C43FB3047699413CEE92B78EF7FD6 /* type_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_list.h; path = src/core/lib/gprpp/type_list.h; sourceTree = ""; }; - CC61C07C702DECF1928EA08DE2169251 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; - CC6AE4DFFBE735486D703300C5C10B54 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/load_balancing/child_policy_handler.h; sourceTree = ""; }; - CC7045D2197583946A8585A194A2B9C2 /* sequence_lock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sequence_lock.h; path = absl/flags/internal/sequence_lock.h; sourceTree = ""; }; - CC815A0964AA32C8545CABE4E7E7B16F /* GDTCOREventDropReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDropReason.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCOREventDropReason.h; sourceTree = ""; }; - CC8164443E2A1226B2C8CC0AD93E4DC6 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; - CC83E42C95FEDB25AD89353288B3F8BD /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - CC8CF2386EAB31DFF03672FF26555333 /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.h; sourceTree = ""; }; - CC978DFB814E341E054C378F1B3E06D3 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; - CCA151A539D16C6E4FE9A2C6D787C838 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; - CCAA3E72926582C0B2C5883B07BE6229 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; - CCAAF9C462FBD516E79047968271E216 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; - CCACEBDB3AC9173C1E9847F3B148B8F3 /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; - CCBC2B00A15F794060BFA1E09A16B346 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/load_balancing/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - CCD084EDDDE0DA7F15AE22D2F8822EC3 /* metrics_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h"; sourceTree = ""; }; - CCEF25E20CF1F8729D99BD01C35FC0CF /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; - CCF28902184B3DE8CE38324C7B8E093A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; - CCFD66366FD4ADAA9A668BBAC511C88D /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; - CD048622FAF320DF935A0EC18FF0EA3C /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/enum_def.h; sourceTree = ""; }; - CD088AF29CEF7CFBA187EB91BE7C3332 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/reflection/def.h; sourceTree = ""; }; - CD19B6939F55477063E47E7EBA003CD0 /* gzguts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gzguts.h; path = third_party/zlib/gzguts.h; sourceTree = ""; }; - CD19D861EFD0097D8403A664140EE277 /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb.h"; sourceTree = ""; }; - CD2D8617212F8049BBF3AF6FB143DA1D /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - CD34B4294FBA7A5A20C38BC3C499E343 /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = FirebaseSessions/Sources/Logger.swift; sourceTree = ""; }; - CD4233E7D93B8A50C29368E751B35A0E /* kdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdf.h; path = src/include/openssl/kdf.h; sourceTree = ""; }; - CD481E2CEF62C81B59B13BB3A0BAE602 /* checked.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c"; sourceTree = ""; }; - CD4B0C6CC665B5686D341D602F63C61A /* message.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message.h; path = third_party/upb/upb/reflection/message.h; sourceTree = ""; }; - CD689355E672EBDD1E7C9AB57C0C6102 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; - CDA60357B4D46E26032ACB4251D97212 /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = ""; }; - CDAC09BCD9A8A6D9DEEC94EB4837C776 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - CDD0872C903827BFD1608D4FFDA0AF3C /* TZProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZProgressView.m; path = TZImagePickerController/TZImagePickerController/TZProgressView.m; sourceTree = ""; }; - CDD2254CC7DAFB4275B532574D0550EB /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - CDDAC9D44615E8E6FCDB62B361DD268D /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; - CDDB5D6BD165D5FAC7D5DDE793F674EF /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - CDE88D3F0B457DB280B44690677B57F8 /* tcp_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_connect_handshaker.cc; path = src/core/lib/transport/tcp_connect_handshaker.cc; sourceTree = ""; }; - CDEFDDB1E5C396F96159C1B096399AC8 /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; - CE04A798373BEC75176E7D1FDCCA00FA /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; - CE13B1C808304298AEA6E11F03FE91DA /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; - CE2BFA5DA10C49E4D193D714615E569D /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - CE44E708C224955B889548F1A0C392CB /* route.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h"; sourceTree = ""; }; - CE6A49AE2F5773F38906A31DA8F60BDC /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - CE7BFA99452E8D06862CE01B545F7612 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; - CE85A4E0500DB7C9ABA1CFEE48EBEFE2 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - CE888E08D78E2A995383AF8DC196A8CB /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - CEAF681F9E869183CE6185F3C796DC35 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; - CEBC4B67799FC96BF05E4E4479588E44 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/impl/codegen/async_unary_call.h; sourceTree = ""; }; - CEBFCA7FC767AD4D66D28FE3455289FB /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - CECFA812D0AA6972ABB66BBE3D2D4344 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/internal/field.h; sourceTree = ""; }; - CEDE9C05DAC498E6036ABE073A2AD15A /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; - CEDF2D65053385231C22C3423BE5B5B2 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; - CEDFB42BB6C2E136F6BEA743B900CAF5 /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; - CEF07D196EC535B0664121FED7C8D9D7 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; - CEF232C1F59BD57815D3684D515BDF0B /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h"; sourceTree = ""; }; - CEF3916D31EBC6EAA9EF6DB3FED38E32 /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - CEF986F2795224295490BD4588C5AE49 /* enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum.h; path = third_party/upb/upb/mini_table/enum.h; sourceTree = ""; }; - CEFC07196C0C682F140665A751FB9FB3 /* TZImagePickerController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TZImagePickerController.debug.xcconfig; sourceTree = ""; }; - CEFCDE7B743786D0F754033372BC97B7 /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; - CF08400BD33896282B6DFE2D08E41224 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; - CF0F7E6A6AC1723A43EEC56F5CEC073F /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - CF1D558CF265BA447E16972082C9E550 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; - CF3D4158E2C3CA6FDC336D905848CC22 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - CF49F3ACA73B4389A51A46159D9B4F5F /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; - CF532D5C1C0DB49BB631092C5ABBB341 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; - CF5ED980F8CADD8CA7788403169B0861 /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; - CF61CBA82DF5F7A04844E76945DFCCCA /* try_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_join.h; path = src/core/lib/promise/try_join.h; sourceTree = ""; }; - CF7986B36BEC04E26D990D9B5588B3D1 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - CF8658E4F8900E2A0709E57C6A27BB0F /* thready_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thready_event_engine.h; path = src/core/lib/event_engine/thready_event_engine/thready_event_engine.h; sourceTree = ""; }; - CF865F67308744FABC5588627B0486C5 /* client_channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_filter.cc; path = src/core/client_channel/client_channel_filter.cc; sourceTree = ""; }; - CF8AFCF10E6174A486CF83B766F792D8 /* typed_struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h"; sourceTree = ""; }; - CF99C279CEB20A5BD019BE4599D57A3A /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; - CF9D589CF43F430D129A40F19A36C985 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - CFA48981CDC388624CCBF7B59620ABC1 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; - CFAA31B8D8F3F7CFDDCF88ABD6FE34E9 /* endpoint.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h"; sourceTree = ""; }; - CFB264982C796B8BB7A01C1041CD9FBB /* SettingsDownloadClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SettingsDownloadClient.swift; path = FirebaseSessions/Sources/Settings/SettingsDownloadClient.swift; sourceTree = ""; }; - CFBD44CC220A1BC0BEA73F0AF1282358 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - CFD4474AED354011899F1BA84BD4AA41 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - CFD7745AC4E980D993A7CAD3EC1CF0B3 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; - CFD799E503F72BE0729177C88CE584CD /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = err_data.c; sourceTree = ""; }; - D001FC5FC54190835D47F85A15807E1D /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; - D00ED782D2ED8BF816BD43910A57BCA7 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; - D0179DAED2E93AB9AD16C3EA4BB6B6AE /* desc_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = desc_state.h; path = third_party/upb/upb/reflection/internal/desc_state.h; sourceTree = ""; }; - D02DCCDC30D1DC85E8819A36F7573190 /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; - D0401649B70716E36EA103889818832E /* all_ok.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_ok.h; path = src/core/lib/promise/all_ok.h; sourceTree = ""; }; - D0414655CF9F1F82EAAF28B46C69510D /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; - D041F0FED200C1D8B0436E575BF40954 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; - D0451B9E2379E68A456E903A0B500C22 /* FIRCLSOnDemandModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnDemandModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.m; sourceTree = ""; }; - D0644E04101028FF000B98AB2A09188B /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.h"; sourceTree = ""; }; - D080DE20522F2A4FBCDFE7E876DBAF8F /* lrs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c"; sourceTree = ""; }; - D08180E1C44F0D5FB404AB3224A094F2 /* eps_copy_input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eps_copy_input_stream.h; path = third_party/upb/upb/wire/eps_copy_input_stream.h; sourceTree = ""; }; - D087BCE0E62DC8F528870274F35581B8 /* fault_injection_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_service_config_parser.h; path = src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h; sourceTree = ""; }; - D08C038DBF34B891C2B20E28DBC1EA05 /* fault.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h"; sourceTree = ""; }; - D0983B80EB433848285802BF2FC2C48C /* router.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h"; sourceTree = ""; }; - D09C1FFE07F0402D79CD918CBC943CB6 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - D09E54D4F9460848903B23168D718F86 /* crash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crash.h; path = src/core/lib/gprpp/crash.h; sourceTree = ""; }; - D0A2CEC4E173568BB8D012C330DBFC3F /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - D0B78E8FCF1F30ADD47ABE37E43B685D /* metadata.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c"; sourceTree = ""; }; - D0B91C4DD31CEC54031B3B919A2783A2 /* FirebaseCrashlytics-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCrashlytics-umbrella.h"; sourceTree = ""; }; - D0C84638E91F8DC5F8C21B38F4F5D964 /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; - D0D1DCE206B599965A6F50651F5F7E3D /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; - D0DF0CFC870A20A08A0126180A25D531 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - D0ECE025FFD0D39C3525DA468A1DA687 /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; - D0F71F5C56BA365B656C454E10774833 /* value.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h"; sourceTree = ""; }; - D0FAD74E6C9CB7A67E106914AB529CE5 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; - D11A1286149543428F53EF885C73B81D /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - D12419DCFE45B055E9FB71786DC0D00F /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; - D12482B8C7FB36C95BAB546A811ACF7A /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; - D1299013B5C4CE24C2AC297382B82894 /* resolved_address_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address_internal.h; path = src/core/lib/event_engine/resolved_address_internal.h; sourceTree = ""; }; - D1320B11A6184E1B519FCC3704E7DF56 /* rls.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h"; sourceTree = ""; }; - D1326F7ECB39972BF141766EF23C4FBA /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; - D1350C279660E4598CD393BA935914B5 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/promise/trace.cc; sourceTree = ""; }; - D141407BE69E0D3FDB371A5F214B610E /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; - D141EC253C650BA4A69C0500324004CA /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - D147E8B27B2BB17670D0FECCB8938287 /* retry_filter_legacy_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter_legacy_call_data.h; path = src/core/client_channel/retry_filter_legacy_call_data.h; sourceTree = ""; }; - D157E9921C3E718D11CF69A00E3E9E98 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; - D1656F9E0EA7130C86BD001BDAC3F96B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/spx/internal.h; sourceTree = ""; }; - D17728130D906452F678F1108DB018E9 /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; - D18539E0D7CB0261FF0AC73C3A6979CF /* init_dump.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = init_dump.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c"; sourceTree = ""; }; - D1B913C6176C39A65BC7362F2C82766F /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; - D1E448FE672FB4BF16CDA909AB5BC865 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - D1F42AF2FED7F42A05FC1A0C0DCE7DF0 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - D1F9B587AA39C7268AE07F46CA65053E /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; - D205A31C985F5CBA2C15F071ACB59DB5 /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; - D20EEA2BEB08A100CE834F9133406196 /* http.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.c"; sourceTree = ""; }; - D21038E0D186C1404609EC185FD551F7 /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; - D2176FBE839C998AECC824CD189BBC45 /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - D21A4540798184626B9B40F6B30F0897 /* binder_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_connector.h; path = src/core/ext/transport/binder/client/binder_connector.h; sourceTree = ""; }; - D21B25EC26AB97D7B7BFBC48F5C76F6C /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; - D22075F997C58D0A5FE641D295895A6D /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - D23041D7B6BC2DEB1E4A9F73EE967A9E /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - D239E16B8646B99C896802DB6A8D9928 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+TZImagePicker.m"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.m"; sourceTree = ""; }; - D23F1F8FB994EEA987CB9A86EF5B85B1 /* int_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int_table.h; path = third_party/upb/upb/hash/int_table.h; sourceTree = ""; }; - D248384B85F4B29D7DE2F886429B1879 /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/any_invocable.h; sourceTree = ""; }; - D25132631F045BD2607AC219E9BC1694 /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; - D258F56C2C6D1D0AF09869636F3DE9BF /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; - D2679660CB39D01D955AABD441C9AA52 /* ip.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h"; sourceTree = ""; }; - D286124B82F835FE28D3A47496603508 /* domain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h"; sourceTree = ""; }; - D2892DEE5621AEC463CF056958426862 /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; - D296465B4062A6F08CE88B5DCE57900D /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; - D2C263261239CCFDC4B3BA10C4423767 /* params.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = params.h; path = src/crypto/spx/params.h; sourceTree = ""; }; - D2CC86D8D3DA8D74541A2E239CB12C7B /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; - D2CE4C141264DDDACAB7B96397637A7D /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - D2D738C8BFAA82728ABDEE46507B53A2 /* cert.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h"; sourceTree = ""; }; - D2D80F784A11F9F6E9FABFB2CFCF54FC /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; - D2D9006353FAE6B93508B8560F252D5D /* FirebaseFirestore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestore.modulemap; sourceTree = ""; }; - D2DBAEB678BA703DA602152442B4BC30 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoPlayerController.h; path = TZImagePickerController/TZImagePickerController/TZVideoPlayerController.h; sourceTree = ""; }; - D2E1E83A3ED641C6D04B9505260837AA /* Promise+Race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Race.swift"; path = "Sources/Promises/Promise+Race.swift"; sourceTree = ""; }; - D303310AED998DD4A92667AA0F563C50 /* unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode.h; path = third_party/upb/upb/lex/unicode.h; sourceTree = ""; }; - D31B30E15A3DB3C61CB15B20AE0F19EC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; - D31BFFAF3667EDA33F860524B6A97485 /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; - D34787CE3E5EC4DEE24AF365FBAC930E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; - D34B6A36A4D560A7237B4958215DF921 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - D36BBFC80EC962C2079929ADE18A65C6 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - D37576FC7608079597BFC4852815AA2A /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; - D389DF30FD84BA35AC067F4BECB1BBB9 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - D3ADE1B1CCB6C1DD93795B6C1CB0F505 /* wakeup_fd_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix_default.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h; sourceTree = ""; }; - D3CA75E403DABC232D981178DB088BF2 /* endpoint_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h"; sourceTree = ""; }; - D3CEA986BEE0630DE935B5BD72EBF53F /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - D3D33888A40609DE9EF7CEE232F10326 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/impl/codegen/security/auth_context.h; sourceTree = ""; }; - D3D544C8812675ADB181FD1FF97C0251 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; - D3DFF65BF982EEF36B7377B51E3FB09C /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - D3E53B3E681D297C0D3B733876F67E99 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - D3E674C6D3BB078AE0480205ED962493 /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; - D3EDB79602FD6EC4F9AF75AA69E7FD83 /* persistent_cache_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = persistent_cache_index_manager.cc; path = Firestore/core/src/api/persistent_cache_index_manager.cc; sourceTree = ""; }; - D3EE7ABE8F58C25033E4CCBBDDE0795F /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - D3F98C97E27031D47EAE9DDDCE115A80 /* cord_rep_consume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_consume.h; path = absl/strings/internal/cord_rep_consume.h; sourceTree = ""; }; - D3FDA73535E4733FB14E7A76EB7E76C8 /* http_inputs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c"; sourceTree = ""; }; - D405B1AD966B4899BEDC691282579C1F /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; - D408C8911F54228630C518F16EA5CCB0 /* GDTCORProductData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORProductData.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORProductData.m; sourceTree = ""; }; - D41154BA31BD6DC9E344E66D6FB9118C /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; - D41C5DF3FE1FF88A5868B805E7C67213 /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; - D4276A9182CA15FB9E2C4CA021B34F43 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - D432FFE671448C21B753D312F238EBB8 /* aggregation_result.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregation_result.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/aggregation_result.nanopb.cc; sourceTree = ""; }; - D433A453F07E5BD47D42C3FC8D862318 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; - D43D4E62B5168E61DFC104467622684C /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; - D440C0FFFDA62BE0B42C461B8DB0AD75 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; - D44BBDEA9B2A49D24ABB225B31A5B173 /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; - D44E6364890338DED8F68E5C6215435B /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; - D45C48A83B7121819E1688B6D9E4B68C /* low_level_alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_alloc.h; path = absl/base/internal/low_level_alloc.h; sourceTree = ""; }; - D45F71B842BB18F7CFC3C66FAC0A1EAE /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - D46647395605F700FB587EC4049181E8 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = absl/crc/internal/crc32c.h; sourceTree = ""; }; - D4751091C4CAFAF75C28E799762353FB /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; - D493D5FA73B39244BE1161948352AD42 /* sub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sub.h; path = third_party/upb/upb/mini_table/internal/sub.h; sourceTree = ""; }; - D4AB678922D4E5E317B9EE89FB1DBF3C /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; - D4BE5C00ED57E745A174025D2E032406 /* config_vars.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = config_vars.cc; path = src/core/lib/config/config_vars.cc; sourceTree = ""; }; - D4C1E4E424E5CCB7DFEB9669A1C774FA /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - D4C306DCCC148AB275F79448FBEBFC9E /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_alt.c; path = src/crypto/x509/v3_alt.c; sourceTree = ""; }; - D4EA405A5CC4A3488DCD0AE1CEFC9E49 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; - D4EF0AA0978396FD6B77547F4C7F5A67 /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; - D4EF7B20C636CABE1A42E3A4372FEA19 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/client_channel/subchannel.h; sourceTree = ""; }; - D4F8E4BC2426CC0AA8478E89F8AE468D /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; - D505917CFD2AEA37A0886AF0AB8221EE /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; - D50FAF4EBF3B474CAEBD93D15AC9C06E /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - D51BF0027B9A5DBB0F4715FBF6E6FFB9 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/wire/types.h; sourceTree = ""; }; - D526ABBF6EBDA082418D6BF6D9074732 /* http_protocol_options.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_protocol_options.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c"; sourceTree = ""; }; - D5279642569A303D1D888299A13340EB /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = ""; }; - D52A725E76FD4976195763B11B76F3C2 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; - D53037559E49EE93918B7E3624D00DBC /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; - D5702FEDD1F60ED913920524FBBEBD29 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; - D579A93E0E5AD9762D35ACEA265FBA7B /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - D57FCC2476F1D97C36CD2DF42FBBCF2A /* load_balancer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h"; sourceTree = ""; }; - D585C5656B9F8F7572D68804AF4F2897 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/message_def.h; sourceTree = ""; }; - D586F0CFC605E254EB03F9B125C920A7 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - D58F1AF9F39677E5AC233C91FF94E69B /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - D5BFFC7D2593F24D8C3A6F923B8CFBCE /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; - D5CB4A68B146E519DC23D54BA6872357 /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; - D5CE965264C63C50595AB576193FF81D /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pmaps.c; path = src/crypto/x509/v3_pmaps.c; sourceTree = ""; }; - D5D0A94981A10A14D143BDB2CC307BA7 /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; - D5E24C87B1CDBC767744A43CB0F0D24D /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - D5E3860470DE4C6C6490631A1D6CC143 /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h"; sourceTree = ""; }; - D5F83C5923AA7E3D80E9640864FD5F1D /* kyber.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = kyber.c; path = src/crypto/kyber/kyber.c; sourceTree = ""; }; - D5F9B3DEAB31B40BEACD8432BC9BCCF4 /* FIRTOTPMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorAssertion.h; sourceTree = ""; }; - D6005FA3740E47FD53677C3EE6C177F4 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; - D6177006512C355314C4520CE8300FD4 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; - D61BF7976D6D1CA1581438FF62176576 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - D61EC3F8A049A564B2D14B912FAF7BFD /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; - D633208ED18462CD1DEAB7634DC34B08 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; - D639C5EAE7949D2BA8C5D98A955711CE /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; - D64E422DBC9A48EE14D7984F0DDE3EDF /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; - D65119C433B27191C4D4A6BF34167642 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; - D656C616C4CCD764DA8AB299D6F9D586 /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; - D659C3CA28F35BA64B8A73A0F4174DC6 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; - D66886BE35DA37906401D7FCB5509629 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; - D678C098DA0362493A7009F70EDBB967 /* stdout_logger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stdout_logger.cc; path = src/core/lib/security/authorization/stdout_logger.cc; sourceTree = ""; }; - D67940C68B27DAB03AF6D4321C21AFCD /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; - D67B56314DE8CE5E49E8EB9F4A0EFE5B /* pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pipe.h; path = src/core/lib/promise/pipe.h; sourceTree = ""; }; - D67E51FEBE5EF57ECCCA772DA0B4A0C4 /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; - D689A84F08407313A524E648169E9AC8 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/Core/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - D68CCCBF909F5F162AE0783373D3FDF8 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; + CA7B7FEC580936DF2255B940D6357721 /* eps_copy_input_stream.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = eps_copy_input_stream.c; path = third_party/upb/upb/wire/eps_copy_input_stream.c; sourceTree = ""; }; + CA7EE8693ABF786B5F4408735DF81F56 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; + CA8027FA34638A385959868FCBA97692 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + CAAFC93AD098BDDA3846397C219FD405 /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; + CAB4A9A40E8DD8556CE89DEF326F707D /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; + CADD25BA50F9320F2C9C0FC6C5ED210C /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; + CAE6A6F3E580472B76B60B6521F1393A /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; + CAF97721D6A3D114EDD9EEE40ED32D35 /* string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c"; sourceTree = ""; }; + CAFF0A6A48D78553506885E9CB7AC600 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; + CB1B8FCB82E9900F7996CCFC43F8C708 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/mini_descriptor/decode.c; sourceTree = ""; }; + CB1C8043CBEA5DBC3E41CF122F93309F /* desc_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = desc_state.h; path = third_party/upb/upb/reflection/internal/desc_state.h; sourceTree = ""; }; + CB26F04A31432CD0F98CCA8E85482355 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; + CB330D624113B5BA45CAB97D76B425CB /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; + CB371D88CC400CB971674580643F9717 /* FirebaseSharedSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseSharedSwift-umbrella.h"; sourceTree = ""; }; + CB3EB38B7074B706778A9CE01D75D960 /* endpoint.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h"; sourceTree = ""; }; + CB42EDCCBE7CB46DC3E11278DA2552EF /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb.h"; sourceTree = ""; }; + CB4A03D892228AE4D446C261F4DC6DFA /* cpu_arm_freebsd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_arm_freebsd.c; path = src/crypto/cpu_arm_freebsd.c; sourceTree = ""; }; + CB5C64ECA8B37B101CD6F142F9DB2BFA /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; + CB5FC1623310A03CE949EB3FBD608F59 /* status_code_input.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h"; sourceTree = ""; }; + CB644AE3D6C10C2933BFE98A8FAEA4B5 /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; + CB6D2BF472CB0262C156FD3E260077B6 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRStackFrame.h; sourceTree = ""; }; + CB98109FB15681396C94BD634132256B /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/load_balancing/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + CBA7993AAB88F38CE4F4665E3C1E72F2 /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; + CBBD18CB2920F8256BE800168085AD84 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; + CBBFA9D6C72EDA0F5CA7E9439992680E /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; + CBCA1C8B3B17D9B5FC1FE27E9797E4AC /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h"; sourceTree = ""; }; + CBE5CDCBF1782F32C8DA75D90D31E0E1 /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; + CBED31DE9B9831B14C76D164E3A2B639 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; + CBEF81F070A25772AFCDC6685B19485F /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; + CC02CD24255C2F8A907259F0196A0B6D /* FBSDKDynamicFrameworkLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDynamicFrameworkLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h; sourceTree = ""; }; + CC1D5B2900DA42500CBA26C53C0D8E0A /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; + CC2E859FF28A6194CF9F5223FA9E6D97 /* number.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h"; sourceTree = ""; }; + CC35F42D2CDC541F83B1D781B3DC34AE /* altscontext.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h"; sourceTree = ""; }; + CC4E98D7159281007DCBE766C3C081E5 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; + CC505069E476689159206626A029776A /* FBSDKEventInferencer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FBSDKEventInferencer.mm; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKEventInferencer.mm; sourceTree = ""; }; + CC5ED95F71848BF8C48DA7068E1B1B0C /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; + CC66354C2272C751E890DE94F1BE6A7E /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; + CC6F57714D19DC76B9269B6DBDB1AAAF /* config_dump_shared.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = config_dump_shared.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c"; sourceTree = ""; }; + CC7235C977F78D2DA62DFE6960935FEF /* pick_first.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pick_first.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c"; sourceTree = ""; }; + CC773465021BB92E618DA0B4A3710BD2 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; + CC801DBFA3324D1B3C879E4974AE65BF /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; + CC820418D361FDB4B11B4A032121D96A /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; + CCA0864BF4F0EED02E5D85F554850F99 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; + CCA16D8784C50DDA3A4A034712B79D59 /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; + CCA19C5B156FBB9D892D775A3119504F /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; + CCA4D9479345E718C0C9BE46AE359E40 /* resource.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h"; sourceTree = ""; }; + CCB74DCB5D7CFCF395456118C8E1C6BE /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; + CCC175B60FAEF082C469565398D3B29E /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; + CCC2F74CC36F468DC343FA7B66316AA1 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = digestsign.c; path = src/crypto/fipsmodule/digestsign/digestsign.c; sourceTree = ""; }; + CCC65F366C366ADA7C666454E2107E16 /* xds_override_host.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_override_host.h; path = src/core/load_balancing/xds/xds_override_host.h; sourceTree = ""; }; + CCCAE901A616A68B11CEC75AB0830C27 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; + CCCC7D89416B229F0F4EE20E0EF45A43 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/load_balancing/grpclb/load_balancer_api.h; sourceTree = ""; }; + CCCE6C9674D43200B8931BDED7B101B4 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; + CCD6B4219392E7B7D65DF024F1F2AB03 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/resolver/fake/fake_resolver.h; sourceTree = ""; }; + CCE170CDE3A3C8890B9E2F69231E9F38 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; + CCE39C030A91A9136C6DCE4494636885 /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; + CCE76D395E10B023CF3F5CF94A9A0089 /* NanoPB+CustomStringConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NanoPB+CustomStringConvertible.swift"; path = "FirebaseSessions/Sources/Development/NanoPB+CustomStringConvertible.swift"; sourceTree = ""; }; + CCEC0C8CD81533D6B08DAFAF4268DA9D /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; + CCF0205CACF899F8B29383D0C677A168 /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; + CCFA78F8784A9DF76430043A213E6FB7 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; + CCFD3073A0A852C4C6B78C3B431F2E5D /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/message/map.h; sourceTree = ""; }; + CD0068ADFAD3A88228FC34C2C8D13885 /* FBSDKErrorRecoveryConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m; sourceTree = ""; }; + CD0776CE3087A3D6BED9B3BE5AAE67C3 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h"; sourceTree = ""; }; + CD3526D01A4145324B686B95F9FA3431 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; + CD363402A52BFDB81950FB8A9AD31317 /* crc_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc_internal.h; path = absl/crc/internal/crc_internal.h; sourceTree = ""; }; + CD4B084EBF2921E165D1C9810C5AFE0D /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; + CD4EE3313CB24BD46148824EBED674F3 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; + CD57637384AC9CE4FCA299B9BDFF96AA /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; + CD6029EC93D205BA806D93319D600131 /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; + CD664630EC279AD48D7A2DC36F2EC5E1 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; + CD6EE6CCE063ED80EDE7216DDE6FA583 /* FirestoreQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirestoreQuery.swift; path = Firestore/Swift/Source/PropertyWrapper/FirestoreQuery.swift; sourceTree = ""; }; + CD76D0C13173E592063AB8EA4D1D9ACE /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_purp.c; path = src/crypto/x509/v3_purp.c; sourceTree = ""; }; + CD7B126596E51A56A5655760BF9C137C /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + CD7D433AD86C837E52DE6AD9E51A9403 /* build_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = build_enum.h; path = third_party/upb/upb/mini_descriptor/build_enum.h; sourceTree = ""; }; + CD8BA847F5B73B7E780FCB47A3ED0DE7 /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; + CD8C1360B2B3A636178092BB264F888C /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/internal/file_def.h; sourceTree = ""; }; + CD99316705661920727ED2C9E2E47C60 /* any.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = any.upb_minitable.c; path = "src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c"; sourceTree = ""; }; + CDA6FF5BF576563347A792AA308F1C42 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h"; sourceTree = ""; }; + CDBDE076327E954D417FA48FBC96BCFF /* FBSDKGraphRequestConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.m; sourceTree = ""; }; + CDCAA6D14788445CAFC20DA4EC9533A3 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; + CDCDF1D0DE400B2EB66D7F47A74D07D3 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; + CDD03177AD567F42E6C685E45F5ACDDF /* undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = undef.inc; path = third_party/upb/upb/port/undef.inc; sourceTree = ""; }; + CDFE6E83FA53278155210B941169C98F /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; + CDFE916F90654005FAE7961B7009E5EA /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; + CE0590DE29CCB1AC021D853E75FD228E /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; + CE161852803F78EF378AB054EA479C1E /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; + CE32075ADDE6E47093DEBBB653A88166 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; + CE33E7BD29BB19BB7E44E173C05D6CB3 /* outlier_detection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = outlier_detection.cc; path = src/core/load_balancing/outlier_detection/outlier_detection.cc; sourceTree = ""; }; + CE57A3E9106A6C13E5339161379E413D /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; + CE9BE15C3430A40FCB684ACB011A77A0 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; + CE9F23F14A32B8BBE941C71F43095539 /* migrate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c"; sourceTree = ""; }; + CEA1F574E421A7C6706594D17B699C61 /* FBSDKMutableCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMutableCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h; sourceTree = ""; }; + CEA3ED08D028963D293B51198E13DC8F /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + CEAB1794060052BFEF723B37FD006496 /* FBSDKBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBase64.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m; sourceTree = ""; }; + CEACDEA1B60D491A39F5860E0E605C79 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + CEC7B45047AB8C8288C96FCBAF5FC15E /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; + CECBEF19D2FC13984222A6EA01AA62A6 /* ref_counted_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_string.h; path = src/core/lib/gprpp/ref_counted_string.h; sourceTree = ""; }; + CEEDE9B5256C4F7638A0CC430B877513 /* mutex_stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h"; sourceTree = ""; }; + CEEE0F94F0D4E821D6E4EFCC04B54965 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; + CEF37A4C13D7762AE7F66A1DE2AB82B9 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; + CEFD74E4AFEE30925EFB381C7D6BECC8 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; + CF1AE2FCCA1073BA4038D24DB6155CAC /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; + CF1E187F808E0110708626214747FEE7 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + CF2B19E6D91A26AFE29085CBE7E6204B /* extension_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_range.h; path = third_party/upb/upb/reflection/internal/extension_range.h; sourceTree = ""; }; + CF2EF7567A65647FB4CA55A7CB6DC228 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; + CF3C10B9158D141EF201D858CF1857DB /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; + CF3F6C6F22C2266B8BA6E016BC147B7C /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; + CF42CFBE193CA55FC0F9C4EFA50F90CD /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + CF45EF61D72EBD819F7A6AA46CF54BA2 /* ip.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h"; sourceTree = ""; }; + CF571DF6125EA61FE82E8EDB8CB5D245 /* FBSDKRestrictiveDataFilterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKRestrictiveDataFilterManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKRestrictiveDataFilterManager.h; sourceTree = ""; }; + CF57A7B6ED159A6D81D564DCB9F7E96A /* merkle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merkle.h; path = src/crypto/spx/merkle.h; sourceTree = ""; }; + CF5BECE2202F1A4D04B33AB226D351F1 /* FBSDKTimeSpentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTimeSpentData.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKTimeSpentData.h; sourceTree = ""; }; + CF6BF028719FE334344FDC48D7418BD8 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/rpc_service_method.h; sourceTree = ""; }; + CF7228323EBD4A00B890D6F20F3066E4 /* client_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_internal.h; path = src/core/client_channel/client_channel_internal.h; sourceTree = ""; }; + CF72CED9B849C5A6E9A6216832ACB176 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + CF7BDA486E0DCA50A6C7046714E6012C /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; + CF8144CFA778E460CA4ED0E750B7C5DC /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_prn.c; path = src/crypto/x509/v3_prn.c; sourceTree = ""; }; + CF860ADF4B6DBFBD92AB24314971A38A /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; + CF94DA4A5C394A41A8CE80F4F78B45F3 /* FIRSnapshotListenOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotListenOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotListenOptions.h; sourceTree = ""; }; + CF961A7ACCF0EA44A601CAC7C12C70BF /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; + CF98C80D38C02A1561B0885311EA4FFA /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; + CF9FEC5DCC48ADD32329D714C835945A /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; + CFA9D653E40E75F81500BCB0FEA6B09A /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; + CFCED5A544E97FE002AB430FF6519DDC /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/promise/trace.h; sourceTree = ""; }; + CFD7D692823D1143AD2670A6781D272D /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; + CFDF75A0E52F66250F98E87462053EF5 /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; + CFF6073D47BC4F0E723A18DAF6335DD2 /* value.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = value.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c"; sourceTree = ""; }; + D001C524EAE1BE5D951A293660BAE213 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; + D0065A653BE1322B2A3BC86696560DD6 /* FBSDKCodelessPathComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCodelessPathComponent.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessPathComponent.h; sourceTree = ""; }; + D0113E6FAB8FCD928C8C9E27293F4B18 /* migrate.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c"; sourceTree = ""; }; + D01F212465EFCEF1181AF9AEA299A46D /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; + D022BACF59542839A3F36F74C65E3400 /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; + D0455F40904B67FF4013793EFAE035A7 /* FBSDKGraphRequestMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestMetadata.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h; sourceTree = ""; }; + D05A961206EFABD70FF9427F93416031 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; + D060A99987A09FB256765E404E1062AD /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; + D0884C94FC7925BBEFD5FC12C73F2065 /* cord_analysis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_analysis.h; path = absl/strings/cord_analysis.h; sourceTree = ""; }; + D0A1A836981B12139527B2A62E2C825A /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/promise/trace.h; sourceTree = ""; }; + D0A29A91CAC86790C46D04DF2DB19C79 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; + D0ADDFC0C027A82A2D44555A82901645 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; + D0B78FEF05E3593E16E2194140D530A8 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; + D0BA03A259DC99B118B1DC1F948EE937 /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; + D0BF2637BE23803A667F66ABBC4FD591 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; + D0C9BC0CEFA97B2BCE4371CF73BFE23C /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; + D0CD60F65FF32BF2F86AC3F95967E7E9 /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; + D0D0335A8E61B5EB8BE0A55482028AB0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + D0F1DC1B4F860960A3DE9F968C10A130 /* LocalOverrideSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalOverrideSettings.swift; path = FirebaseSessions/Sources/Settings/LocalOverrideSettings.swift; sourceTree = ""; }; + D10BFFF8DC539EC221A412CDB22DE11F /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; + D11A3217657F5C6BA59BF5148C4ED9D4 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; + D125D4E341F9A5D3BF21627CCA4A783B /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; + D12DA504E7E9EFB791917FE0F4C2791F /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; + D131BC5F5AB69154FC0A8505E8E882AA /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; + D1342F3908357D6B53C451703638E9A5 /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; + D13E1DA7E3A82B67750741E98DCBE906 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + D142633A2B7ED71DE545CE8AED2E0BB0 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; + D147DD5228B6E22C7E5D4231D40FA36C /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; + D157C2A71894AA6B853DFD68C7F6A068 /* filter_state.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h"; sourceTree = ""; }; + D1595D90D24245D5C32DBFC2F1A46F77 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; + D166041D8F3EF9D14961C96E42C30F1E /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; + D166AABC83636194478A5C972087FABC /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; + D16DA22C81759A6E4E4C1FAAB4C11526 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; + D1726AEC2B2496F2FEA502477C07EEBE /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/service_config/service_config_impl.h; sourceTree = ""; }; + D17537B9BC9FC4774B6E7504CF3C1729 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; + D17A2F24CECB77701C0D6CA93F8B5331 /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/load_balancing/subchannel_interface.h; sourceTree = ""; }; + D188360BAA228FFAEFE47B939FC88CF4 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; + D1903EA4145270D4E67B161A5D1D0988 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; + D198AA3F2D3FD344B7C2A4EDB8E1E38E /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h"; sourceTree = ""; }; + D19EB59ABCA497A38E12AEB078BD84A4 /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; + D1BE0F9220DE5ADC75CBB1A4AAEF50FA /* FBSDKMeasurementEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMeasurementEvent.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMeasurementEvent.h; sourceTree = ""; }; + D1C20FA212EEB61A4339D0E8CC188FFE /* service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h"; sourceTree = ""; }; + D1CFB86043358A80A11A48815B36E9F3 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; + D1DB18A701B2F79161ADDDFFCEB1A248 /* resource.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c"; sourceTree = ""; }; + D1E44139DA3E017635E0EC416CE8C2C9 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; + D1F3DC56935005A8B7B267D14B205177 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/service_config/service_config_call_data.h; sourceTree = ""; }; + D203B6A8801E878AAF1498BC32AE859D /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; + D2379A75E9BEE79C38DC035FE7D20E56 /* annotations.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/annotations.upb_minitable.h"; sourceTree = ""; }; + D23CE9225E5761C795FD0B1BD10D44BE /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + D245DF03013D908317A469758A73B209 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; + D24ACDE667F9748162F7CC76703EE54D /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; + D27030308EE0D81BDF1036D2BF3F8431 /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; + D2800BA967F85ED0C36E2F1A4453F921 /* posix_engine_listener_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_listener_utils.h; path = src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h; sourceTree = ""; }; + D28B06779C656A3C6065D8C9573F11C1 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + D29CEACB653EECF14CEDC3C1E0A01719 /* map_sorter.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = map_sorter.c; path = third_party/upb/upb/message/map_sorter.c; sourceTree = ""; }; + D2A29097106400E4908968C3F14B9F0F /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; + D2A8C6021057CA3514E2E84FF047F974 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = round_robin.cc; path = src/core/load_balancing/round_robin/round_robin.cc; sourceTree = ""; }; + D2B3077D21F52003D7E6D7D914534098 /* FBSDKCodelessParameterComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCodelessParameterComponent.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKCodelessParameterComponent.h; sourceTree = ""; }; + D2D9407D3ED3C98D1A1DC2B17BDF17FA /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; + D2DA6FD6559891572BE23E388615E634 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + D2DD4683DDA6696ACED94B8469410F30 /* build_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = build_enum.h; path = third_party/upb/upb/mini_descriptor/build_enum.h; sourceTree = ""; }; + D2E6F079147F8548DCD81421C698B994 /* deflate.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = third_party/zlib/deflate.c; sourceTree = ""; }; + D2EC694009C233331486BBD0EBCFD3CC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; + D2EDA1571B7CFF16F10ED50F557E35E7 /* authority.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c"; sourceTree = ""; }; + D30F74ECFEF08BEC4A8BA6E65CE3BD14 /* address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.h; path = src/crypto/spx/address.h; sourceTree = ""; }; + D3134EE8CF2B523D4C5E4156CF72552D /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = c.cc; path = db/c.cc; sourceTree = ""; }; + D325D7A4BA84E404B44095F692EDA6A1 /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; + D348E5527F55EACBBACA53A285657F8B /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; + D35A392B50C2C5AAC271E23DD56D2BF0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + D362951DE6C3CDFA6F7EB8A6BD777F18 /* file_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_def.h; path = third_party/upb/upb/reflection/file_def.h; sourceTree = ""; }; + D366F0A215EDAE739079F47FE21937FD /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; + D38598EB7735625A66D4BB9665094F33 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; + D38E120FDA93C9759C8198D69560EEEC /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; + D3938536D0A1B83C8F413A6C30641FDA /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; + D39E473DBB2FF91ECDD3CD99666609AF /* context_params.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = context_params.upb_minitable.c; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c"; sourceTree = ""; }; + D3A62298645E47D4C798F48490A36495 /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; + D3B16B2784A1F0B05970DACD21A8FF39 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; + D3B6E5614BD7670DAB4242F2391580A0 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; + D3B987528B6F453471B975AC238DC0CC /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; + D3BBA44D2B22ED2A7B08831B9846119B /* extension_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension_range.c; path = third_party/upb/upb/reflection/extension_range.c; sourceTree = ""; }; + D3CC9B49068CC89D24C4E0FF7B91A7A3 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; + D3EC7B2E70506A42F492B2BAA4DE52B7 /* hash_policy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h"; sourceTree = ""; }; + D3EE654CC607E1716227A572320FF5A5 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; + D3FFCEED040E9CE64FCED61EA3C112AC /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; + D40F2E40BF72A20CBDED712AC9EF43EB /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; + D419C3E47FEA62975C3BDCD50D2BF552 /* metadata.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h"; sourceTree = ""; }; + D426D544D54900B6B15B5B494769D3BF /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; + D42BC68F597656EBAB3B5064246A3D84 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; + D4311CD0D6322F4A5A5E61E304D44641 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + D43B37EAB758CF76353816E525E6D794 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; + D4601E2007BB293DAAE07AE2019DA0E8 /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; + D46A5C8ABC50B206DF31028758BEB621 /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; + D49191DA1B333EC122067DE970F719E5 /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; + D4975D738EB356652CA9290E0774A3E6 /* Promise+Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Catch.swift"; path = "Sources/Promises/Promise+Catch.swift"; sourceTree = ""; }; + D4A22270E5371D3C8930058FC8449365 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; + D4B2A066D210856ACB6780EC7A484F02 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; + D4C00B259E52826AD3F13BE1DDDDF944 /* security.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c"; sourceTree = ""; }; + D4C2A85E8388DFCA2BBA93E79D4F089F /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; + D4C5FEEE888F313E1EB2AF0E83CD081B /* FBSDKAccessToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessToken.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m; sourceTree = ""; }; + D4D18C01450834E4074D7269CA5551EC /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; + D4D368D7AA6B332EF836DB7AE71E7209 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + D4E2D63525F96F7DD7733FEA9275DAE2 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; + D4E3E46BB1DEDFFEEA029422ED5CF46B /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; + D4EB2DCF56540150CEFC97DBDC8C4D9B /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; + D4F7FA593C883C1D1ED71631E2AD3024 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; + D4F8BBCF9035634477E0EB32AAB87698 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; + D5028DEA00B756041BFD62CEB50291FC /* overload.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h"; sourceTree = ""; }; + D51A59131EC0067B976CDD813FE93671 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb.h"; sourceTree = ""; }; + D51B7A5433BA7BFDB3799232037D6D50 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; + D53335DE83F827DB932D33F6CE2FC8D7 /* context_params.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h"; sourceTree = ""; }; + D542CA5F720410B0FE50354118C4D5A3 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; + D54D665EDDCE65E364679A76103AB8AE /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; + D5506BE2429CABFE6F84C6119E88FDFD /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; + D55D10DE9BD5AA2BC9D831FADFB2B6E4 /* aggregate_alias.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = aggregate_alias.cc; path = Firestore/core/src/model/aggregate_alias.cc; sourceTree = ""; }; + D562B058336337EC7FEB673D847574C7 /* ip.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h"; sourceTree = ""; }; + D5711B42A4F61F9DBC534878334F139F /* ssl_key_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_key_logging.cc; path = src/core/tsi/ssl/key_logging/ssl_key_logging.cc; sourceTree = ""; }; + D57385F04DB3F1431D2782336822CC78 /* Installations+InstallationsProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Installations+InstallationsProtocol.swift"; path = "FirebaseSessions/Sources/Installations+InstallationsProtocol.swift"; sourceTree = ""; }; + D585A5F0AB707A445E89269AB9E372C7 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; + D587B10522AFD09810804550074C1AC2 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = ""; }; + D5880DB9493C765CDA0CCCDFFC4E8C80 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; + D58A6C977BAA53D7091BA8D3B1979E58 /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; + D58BBC5700B4E37172E3F4EF824CA9E6 /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; + D5949205FBBF4806ADDEF0D522037F79 /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; + D59D556E20FA639C49D6132729D6451D /* GoogleDataTransport+GoogleDataTransportProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "GoogleDataTransport+GoogleDataTransportProtocol.swift"; path = "FirebaseSessions/Sources/GoogleDataTransport+GoogleDataTransportProtocol.swift"; sourceTree = ""; }; + D59E07E1E6E030561B557C59C202D5C5 /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; + D5B00CF29F6168B1200134923B3D272A /* channel_stack_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_trace.h; path = src/core/lib/channel/channel_stack_trace.h; sourceTree = ""; }; + D5CEC81FF1AEE3875E6313FE41FC2CA2 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + D5DB3DAA93DF250F634F3D6455151EFB /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; + D5E14D060CA8AC34C4E9726823FBC177 /* ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist"; sourceTree = ""; }; + D5EA5E43CFE905014D68BF50ED8D786A /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = src/core/lib/event_engine/shim.h; sourceTree = ""; }; + D60102CA12937890CDEDFA66BFE36FC7 /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; + D61D02455FB7F596EE94315BD664CD53 /* ratelimit_strategy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h"; sourceTree = ""; }; + D61DB5FB893697FA8D491372A5428B46 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/load_balancing/lb_policy_registry.h; sourceTree = ""; }; + D62F080CB5CA315CBC6104960A3B18B5 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; + D639857D089B39120D462486C6EF7EFC /* zone_info_source.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zone_info_source.h; path = absl/time/internal/cctz/include/cctz/zone_info_source.h; sourceTree = ""; }; + D644010FE420609F31B5405C47328D13 /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; + D651AD830D0B2DD09F116EB98E66A8B3 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; + D67813AB87E6EB52BFDEFEF87204D499 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; + D67DA71FBA2308277DB011354B7B63AB /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; + D67DDE5901A5EC9A7EACA8CF6F4E5C2A /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = ""; }; + D680DABD214F3385D5FFCD4CE9FA2B22 /* UIView+TZLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+TZLayout.h"; path = "TZImagePickerController/TZImagePickerController/UIView+TZLayout.h"; sourceTree = ""; }; D6A82F55E6237597B276F43CE4910ECF /* Pods-SwiftProject-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftProject-umbrella.h"; sourceTree = ""; }; - D6AD680256FBFE7564D59E1E55D9DC82 /* LLImagePageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLImagePageControl.swift; path = Lib/LLCycleScrollView/LLImagePageControl.swift; sourceTree = ""; }; - D6AE22C112F54943D06BB604076B7EA5 /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; - D6B3252CEA306CACB310DB7CD383AC15 /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; - D6BD9B40A624D3AB6CBDF096BC0CA2A9 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/load_balancing/lb_policy.h; sourceTree = ""; }; - D6C0AC698547866C5AA129FFA0B9069D /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - D6C17A8997B9B181AF2AAF934EF99858 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - D6C9B9343F81A4CFBA7BF3B708C43FE9 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; - D6D239552CD811E20244E26BB616F08A /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = util/status.cc; sourceTree = ""; }; - D6DFD93751BEFAE373A7C88F41927B46 /* time_zone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone.h; path = absl/time/internal/cctz/include/cctz/time_zone.h; sourceTree = ""; }; - D6E18FCBC9A467C0E85B1FAFA91F9C3A /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - D6E8FC561A4277F252AF4538BCADA1E8 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; - D710C7D011AB9FB51546F67412FEBF9F /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - D717DCEFEC34714B43F9F0FC140F4670 /* call_final_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_final_info.h; path = src/core/lib/transport/call_final_info.h; sourceTree = ""; }; - D728E251BECE573E09EBD88C92A54CEA /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; - D735AAE51696C629108CA7B7C2505FBE /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; - D73F6A4FEA15C1EDED3195027F787912 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; - D7487704062C461F26E3B9F0572CAB9D /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; - D74C41EE7102B8A17EFD0EA750AD50DF /* FIRGetRecaptchaConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.h; sourceTree = ""; }; - D760DB2E2C5067691A3BD9ED4573139C /* lightstep.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h"; sourceTree = ""; }; - D77665CC3B31C3E37ADA010FE121403E /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - D792EE387EF0A20BA20A6B928E8336E7 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; - D7A6ABA517BBD79662DE748BAF2C9393 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; - D7A82D5443FAF3636239E86DE1AA5AED /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; - D7A93A58DFA88698EBA95AB68D078B20 /* crc_non_temporal_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_non_temporal_memcpy.cc; path = absl/crc/internal/crc_non_temporal_memcpy.cc; sourceTree = ""; }; - D7B01E721D7FE3C91B234C49898A0296 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/sync.h; sourceTree = ""; }; - D7BA0811B8FB991134042B29ED7937B4 /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; - D7D1CF0222039D42B608B595682CE9AA /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - D7D22A92A07B1F81CAD7BAB7E848B975 /* backend_metric_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_filter.h; path = src/core/ext/filters/backend_metrics/backend_metric_filter.h; sourceTree = ""; }; - D7D467CCD3EF36F4D32EC76A2CA6104D /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; - D7DD48FE8F719F551DD39ECDE99B587F /* skywalking.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = skywalking.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c"; sourceTree = ""; }; - D7E837412B9B5280E47F78B5FA7999DC /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bitst.c; path = src/crypto/x509/v3_bitst.c; sourceTree = ""; }; - D7EA3BC381F3CC4DEE6AEF3A9A2C5BC3 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - D7F559001D49534E78782A87F0766008 /* http_connection_manager.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h"; sourceTree = ""; }; - D7FB426A8C3DFC11EF76C4DAA8B82DBB /* memory_allocator_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_factory.h; path = src/core/lib/event_engine/memory_allocator_factory.h; sourceTree = ""; }; - D80E1FF3939A08E9D696A133435E328A /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/load_balancing/backend_metric_data.h; sourceTree = ""; }; - D8140E2AD6B8B5CF2E1340C080524620 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - D818E260DDB01A1AB476FE19FF5E9C05 /* path.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h"; sourceTree = ""; }; - D81AD87659F16F8C34A031330E99B5EE /* ares_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ares_resolver.cc; path = src/core/lib/event_engine/ares_resolver.cc; sourceTree = ""; }; - D82FD0CDD93342575E1BFF98E861B138 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - D8306F7411BC6F01741978CFC90D42F2 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; - D84B22DD9FD2044BC1A75DCECFA400FD /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; - D86C0F417D0CD588CF40AFDECB63320F /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpclb.cc; path = src/core/load_balancing/grpclb/grpclb.cc; sourceTree = ""; }; - D86F3F1D2AA358F1F3F30F5B38723C64 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; - D870399210F269EF8E79468B2C83EBE4 /* metrics.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h"; sourceTree = ""; }; - D8789032841D0505B71CFB8605C82AFB /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; - D87A619620836FDA27B7DB8467B6BDC5 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; - D887F8DFACDE95AD548E4E7FFCA37967 /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h"; sourceTree = ""; }; - D888C97EF7D5DE552B3828AACC447128 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; - D88BF5E0F456965D1882FDC623B72BFB /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c"; sourceTree = ""; }; - D8911E7DD65CE073404BE437EB3A45CA /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; - D89538E8807A04ECA0F12E0ED747DEA8 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; - D89732E643C43A6697E3C7C7A9996A00 /* ring_hash.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h"; sourceTree = ""; }; - D8A1B9AC7933C8EA8E6A6B1470BDED59 /* GDTCORProductData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORProductData.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORProductData.h; sourceTree = ""; }; - D8A987A247F315171F67487859383D76 /* validate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb_minitable.h; path = "src/core/ext/upb-gen/validate/validate.upb_minitable.h"; sourceTree = ""; }; - D8AF2CE2FE92DE9FDE3082B617ADC6B7 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; - D8AFA201470165110654B0385209B83C /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - D8B396C9D3C9E636813733B659E94755 /* config_dump_shared.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h"; sourceTree = ""; }; - D8BA1B52642A616868DA01AF1A26CC1F /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - D8BE91B60E6169CA0E0736C630746A64 /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; - D8BFD3224BAD603B76415F0164BE8CE4 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; - D8C4EFDF6A16E27202682314213CC216 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - D8DC41AE046B5773474D1D79CCD11234 /* FIRCLSManagerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSManagerData.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSManagerData.h; sourceTree = ""; }; - D8E6ABC16D28925E703AD0A0BCCC057D /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - D8EE4A6DBCF9B5C176EC954D3240C23E /* http_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c"; sourceTree = ""; }; - D8F67A4743BEBACDCA9F3192450EE6AE /* interceptor_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_list.h; path = src/core/lib/promise/interceptor_list.h; sourceTree = ""; }; - D90373CC1DA02C73FD1431D220ACEF82 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; - D91E24B884DFD927F0FE166AE17A3E40 /* inffast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = third_party/zlib/inffast.h; sourceTree = ""; }; - D9238DA04C8440417435DC8CB8454FE7 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - D924F2197EC7C216A23C9481C543DD0A /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/byte_buffer_reader.h; sourceTree = ""; }; - D9269680F19991C0D119C402CE16A238 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; - D92D8001855EB1168E78937A378E66AE /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - D94D5A84F6EC3B307CC9D800BC3BCFFB /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - D9561534433CC55BD4754DA7E749D257 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - D95A0CF5C1E40A00E38F87B10D93D688 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; - D9673F54ADCA77A6A0BF04717406F7B2 /* SessionCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionCoordinator.swift; path = FirebaseSessions/Sources/SessionCoordinator.swift; sourceTree = ""; }; - D96E12830212B75832155CC8549B2DDA /* cpu_aarch64_linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_aarch64_linux.c; path = src/crypto/cpu_aarch64_linux.c; sourceTree = ""; }; - D976A4F62C0E8245822D7BC0830725C6 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - D994AECDF2F721A8D73C4B221D28FADA /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; - D99EB2123A339F585FF159309B17B28F /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; - D9B5A1E5F9C53F5BA056227E3A0760F3 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; - D9B702559CC1C852356562A30AAD13F5 /* route_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h"; sourceTree = ""; }; - D9C2ADD010939669508828F97BAF7954 /* ping_callbacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_callbacks.h; path = src/core/ext/transport/chttp2/transport/ping_callbacks.h; sourceTree = ""; }; - D9CDC3F5CCC1B4E83CAD482BA8D41C6F /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - D9E34E416F8943B0A01CD476D0E5D40C /* Time.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Time.swift; path = FirebaseSessions/Sources/Time.swift; sourceTree = ""; }; - D9E4CA51EC76CC71DCC14DE9CC3974DF /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; - D9EC23A6BD58AB4E42720C2CBC5DE893 /* proto_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_reader.h; path = include/grpcpp/support/proto_buffer_reader.h; sourceTree = ""; }; - D9EC79AA0988ECE07D6878C22AFED429 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; - D9F5BAFAE0D6EF767520B8153406D070 /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; - DA04D0F43F0A0CC17DEC6D9C66F6A401 /* empty.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h"; sourceTree = ""; }; - DA0FD2904EEE9645ABB8A3B73979E2AE /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; - DA1CCF15838BA86151E97C8A1AAF08B2 /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; - DA2BEA65620345EB5A69901AFF31E2E7 /* status_code_input.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status_code_input.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c"; sourceTree = ""; }; - DA409C85BE624D2FE8FC85180348606B /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; - DA448C95CD91697F515E7F61F607640B /* range.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = range.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c"; sourceTree = ""; }; - DA48688C41B1092CA45AEC0DA73BA18E /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; - DA49553357685EF124CA9888F8D2F5B8 /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = certificate_provider_registry.cc; path = src/core/lib/security/certificate_provider/certificate_provider_registry.cc; sourceTree = ""; }; - DA4B4193E71B3A6C6EA3CB751ADFFAD9 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; - DA53F17BB71DE197260D6652C6EF46CC /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - DA552ECBE79EDB3E8FD836CEC1BAAA56 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; - DA57F4F0B36BEB663899DE92D4C0ECF1 /* crc32_x86_arm_combined_simd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32_x86_arm_combined_simd.h; path = absl/crc/internal/crc32_x86_arm_combined_simd.h; sourceTree = ""; }; - DA5C74FA320190F6D074569AB0D93CAF /* custom_tag.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h"; sourceTree = ""; }; - DA611B3C4771D06B6B0D201E1402A55F /* overload.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h"; sourceTree = ""; }; - DA673CD82322F6118BC14C3370735D9B /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - DA70BAB941C57EFD0621E670A1D93E6D /* FIRCLSContextInitData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContextInitData.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSContextInitData.h; sourceTree = ""; }; - DA76DFACC30E6BDFA99A8EB43A3314EF /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; - DA885DA9E66CCA8F681361E9D68CABAF /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - DA9D01783965F1D9B96FE76C24AA104E /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; - DAA3FFAD0D51A937A7B710BA1E000A63 /* FirebaseAppCheckInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.release.xcconfig; sourceTree = ""; }; - DAB2B3FFC2ADA18DEE3A9DD9041E3F7A /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; - DAC3240B4940D9192E7457A02564EF38 /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; - DAC4DF1581F815924BF9CA44DA875F43 /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; - DAD90F70CD94AB2EF5425E9C7627EA19 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - DADB329B9466F748B016B29B3F0BB263 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; - DAE9E04B87CC48A4A0ED6C78CCD9739A /* tap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h"; sourceTree = ""; }; - DAEA7100322E06DC86E1CAD64DFEF4EF /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; - DAF310B2B579534CAC460773A9085126 /* stateful_session.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h"; sourceTree = ""; }; - DAF784ED2F2E10CF7E1B50E36C215568 /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - DAFA4733763A7278DCC1D9B89B26A298 /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; - DB052CF89343201C6B80B737BAC572CB /* metadata_compression_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_compression_traits.h; path = src/core/lib/transport/metadata_compression_traits.h; sourceTree = ""; }; - DB065A20CA8E7B83FEE62251A3091140 /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; - DB0A71F300E3A41878E46A155CD494D2 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - DB22B5965687EE84D1C2CC5B2FF2C42A /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; - DB2D05F324EBAA66152B869494AC1CF2 /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; - DB2DFF9874469505C0DBA26FCD1D8071 /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; - DB34A32D7894610C2E780D1838B4E797 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; - DB38B288010305F16F83881F8161598E /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - DB450E5A167A88D7CF5B38632315A2E4 /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; - DB4DA5DD2141DBF34CDA0ADF57AA6274 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - DB4ECF2635F0FD4715A3BD39CE27157A /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; + D6A97B0CC05DD116EA0598B85ABF8F4A /* crc_memcpy_x86_arm_combined.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc_memcpy_x86_arm_combined.cc; path = absl/crc/internal/crc_memcpy_x86_arm_combined.cc; sourceTree = ""; }; + D6AD38546099EC4D7B721FAA9A725BE6 /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; + D6AEDE5A799EC6FD258DD054B06198E9 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; + D6BFEA62DC00B70C8C57C53A43C39AAA /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; + D6DC7C9BEDE4DA10D3FB9B8F2DB9B21F /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; + D6E198173F064211CE2EC69FDD7CA1BB /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; + D6E367F793B9F6CBFE4810355B8D8562 /* FirebaseAppCheckInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-prefix.pch"; sourceTree = ""; }; + D6E767A0ADB9E541373191C5939D69AB /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine_shims/closure.h; sourceTree = ""; }; + D6EA1CF179983B9B68341E7D8BAE0980 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; + D6F26AC47D62D6CEB0618B625C880B6C /* FirebaseAppCheckInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.release.xcconfig; sourceTree = ""; }; + D6F46B1FAB0DF83142F1AF3FA6D1CE9E /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; + D7070A4008E086C580683291371F290A /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; + D70F00FF85690ED6E331D764BBCC4E67 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; + D7104CB6BD39CEC58FCFECDB069AF2D0 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + D710CC83C6FBBABFE4C9ED45049AC55F /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; + D71B3863C141E42A804F2EE0388EE51B /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; + D729C6B78C3890394F23BDFD90554F87 /* hash_policy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h"; sourceTree = ""; }; + D739F899C346E6A692960CC8D692724B /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; + D7422EF2B80F3B97384CA8671F66B0FA /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/wire/decode_fast.h; sourceTree = ""; }; + D742D07D66E829794BC2F23AFBA0F738 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; + D744B47B69C5F517E0492756EC3F0EB5 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; + D751E616CED0A39C6E84E04FFEADC999 /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; + D755FB028C6CC82F2D6ABF9E44B093AC /* pick_first.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.h; path = src/core/load_balancing/pick_first/pick_first.h; sourceTree = ""; }; + D75AD96D0447C0632B3E4F07AEA65138 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; + D75D2E1D7FE8CD2499AD8A64317AF884 /* low_level_scheduling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_scheduling.h; path = absl/base/internal/low_level_scheduling.h; sourceTree = ""; }; + D7651106A82AF6B5F290A91C16BA3BB5 /* program_name.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = program_name.cc; path = absl/flags/internal/program_name.cc; sourceTree = ""; }; + D76E075AF9BD67DB4B6755994D278D5D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + D777323402FA27328552D64C18416E31 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; + D788DAED0109D5E3E422D5243B2C1EA5 /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; + D791CDDFF9D6D48697A5EE052AAC3CD0 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; + D79227581D2CC985011E3EAB93B32A53 /* FirebaseDataEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseDataEncoder.swift; path = FirebaseSharedSwift/Sources/third_party/FirebaseDataEncoder/FirebaseDataEncoder.swift; sourceTree = ""; }; + D79295064D1834C4D110E37CB525094A /* zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zlib.h; path = third_party/zlib/zlib.h; sourceTree = ""; }; + D79B13909177220B9C4A82D58F79A296 /* config_vars.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_vars.h; path = src/core/lib/config/config_vars.h; sourceTree = ""; }; + D7A9D7B59E2713C8525278046FDEF45F /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; + D7B0C58CEAA3ACE574EB8987E2245A0A /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; + D7B93A4DB1A137AE64334AD7B02ACDCD /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; + D7BFBFEAA39E7E88B5D2E2241BBABF3F /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; + D7C2D27ED9AB9F691988C1D75C86F9ED /* FIRRevokeTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.m; sourceTree = ""; }; + D7DCA06EC936BE11ECF451031CC26AB2 /* binder_security_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_security_policy.h; path = include/grpcpp/security/binder_security_policy.h; sourceTree = ""; }; + D7DF6603A4D02D728C8DCCACFD20F896 /* modifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modifiers.h; path = third_party/upb/upb/mini_descriptor/internal/modifiers.h; sourceTree = ""; }; + D7E21BF5A1E5067D5E6D1289575E7F4C /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; + D7E5BF4E757840685705AA81C0F89D37 /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; + D7EB96A1FF9B447D779D39F0BC7DC907 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/reflection/def.h; sourceTree = ""; }; + D7F083934ADAE112320E04CFD9D82CA9 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; + D8057175AC27FD00AB17B930ABD03D77 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c"; sourceTree = ""; }; + D810BEE2A2B1ADCD657A1C38C5F2F9A4 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; + D8234C54E88610B48CA9B1F20857F7EC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/rsa_extra/internal.h; sourceTree = ""; }; + D82956C3977D6BEC2945FC25A8E394C3 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; + D82B350FE552DD979778D22338B97844 /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; + D837C84F7097C4C20B7EDE91E86A6280 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; + D844F6707FB535716A062A958AD5E592 /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; + D84AE38CB5DF65BDEF784C13AF5CBA54 /* windows_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_listener.cc; path = src/core/lib/event_engine/windows/windows_listener.cc; sourceTree = ""; }; + D8561CF8D419E68D8EEBC3070CA73CE5 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; + D85DE6741DC81E0023B378CF3EDB116E /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; + D86C1E42E7A3D0FECE20A8841CA4FD4D /* event_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller.h; path = src/core/lib/event_engine/posix_engine/event_poller.h; sourceTree = ""; }; + D872D4A90F06147852FDEFD7B889DF16 /* StringToHexConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringToHexConverter.swift; path = Crashlytics/Crashlytics/Rollouts/StringToHexConverter.swift; sourceTree = ""; }; + D88BDA7BE0C6B5674C598D996EF9D9D4 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; + D89C0B0460167AEE61BE4B7BB2C077E2 /* external_prequest_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_prequest_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.h; sourceTree = ""; }; + D8AA07301BB0B092B125B2788177C3E3 /* decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decoder.h; path = third_party/upb/upb/mini_descriptor/internal/decoder.h; sourceTree = ""; }; + D8B35C2D34BB21C4C9549A686D09EE55 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; + D8B89DEE4040C99DEC18FD35F396D550 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZPhotoPreviewController.h; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.h; sourceTree = ""; }; + D8C724A5A9D933D624D89C9FD20CC7C0 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + D8CF4B7A5B138751E298D6A3ADD917DD /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + D8E1952C7FE7F6D956A0ABDFB0876D1A /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; + D8EF5347FDE55EA2331BA3FB1FFAD8D2 /* message_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_reserved_range.h; path = third_party/upb/upb/reflection/message_reserved_range.h; sourceTree = ""; }; + D8EFB26B786996F644680F54A59D4D01 /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; + D8F117F0D7126607D3FEAFA3A155B459 /* ResourceBundle-grpc-gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-grpc-gRPC-Core-Info.plist"; sourceTree = ""; }; + D8F1A763BBE2171F9A54F20B5A89AD0C /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; + D902D1670582C13FB6341A1373D8C8E4 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; + D90C9E5D9DA4BD6FE63556B685F94711 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/client_channel/retry_filter.h; sourceTree = ""; }; + D91137E3EED6CF46B401F85E76D6C137 /* FirebaseFirestoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestoreInternal.release.xcconfig; sourceTree = ""; }; + D91DA0EBDA4CE65333DE7DA61AF60D03 /* LLCycleScrollViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLCycleScrollViewCell.swift; path = Lib/LLCycleScrollView/LLCycleScrollViewCell.swift; sourceTree = ""; }; + D92B5B9F1A86331F6F56AD819E0E12B9 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/service_def.h; sourceTree = ""; }; + D9320F65E0A1909F90D4AC2449249E94 /* FBSDKURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLSession.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSession.h; sourceTree = ""; }; + D93ACCFD670F354142E069BFDA358ECC /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; + D95B920C1E119428D6415786CAA23D26 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; + D963893BAE4A49975BBEDA637DA9075B /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; + D98159C7631CA0402C03160FD98D0081 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + D98F63EBFA68EC9E6D365300A973C025 /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; + D99FDE256DA14E2B8415E8A9BBD7EE83 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + D9B6E07F813DD29BCF6BC95D611EE2DE /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; + D9D4A827FE8C76DE3011137C66768BC0 /* regex.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c"; sourceTree = ""; }; + D9DE8E2B058AE415F28F41C6C69E100D /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; + D9E0B2057C02F513CDE21DCC1F81CFBA /* lrs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c"; sourceTree = ""; }; + D9E0C2B2D02875F24D9AD2430F42788E /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; + D9FDAE5E07082977761C87EC8DC2300B /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; + DA01CF9F3D9DE83273436010D3D70924 /* listeners.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listeners.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c"; sourceTree = ""; }; + DA07159965FA9EA0E3F9FF1C77E4D36E /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; + DA085EDFBD05FDF06549766DF9B342EC /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + DA1657DAB1CAB3E4AE8FDA50EF987F2E /* infback.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = infback.c; path = third_party/zlib/infback.c; sourceTree = ""; }; + DA2034FF7EBB1E469BD7B5B26FE2F3FF /* FBSDKURLOpening.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLOpening.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h; sourceTree = ""; }; + DA3B2A1CF1B7D81BBD1DF3B0BEC2657D /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; + DA43ACA20FB56311C79C7D6992F28AAF /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; + DA4DFEC6BF80ECDA91EB16AA817D02C8 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; + DA6742A15D25027A572A9660DD2BA277 /* unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode.h; path = third_party/upb/upb/lex/unicode.h; sourceTree = ""; }; + DA75A507E719903D2064EB697CF586B6 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; + DA7AC41A7A41AF2D79480AD9800F1746 /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c"; sourceTree = ""; }; + DA7F7D5DBB2ED192E20AC05F7477482A /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; + DA7FB9127D8D7066B5890F31B35A0749 /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; + DA7FEA58C5388239E499BEBE89A0E5EC /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; + DA815DE1E28DDC8928ED907232606E3B /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; + DA847C3304AD6B49D73F09EE1303CD84 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; + DA8C24EB003BE81E89AA229710F25CE6 /* RemoteConfigInterop.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteConfigInterop.swift; path = FirebaseRemoteConfig/Interop/RemoteConfigInterop.swift; sourceTree = ""; }; + DA8C5F3CBB6A113CEBA9F171B2CE37D0 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; + DA8FAF2953DE6C22CC34DB557AD4D064 /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; + DA91E65A2E421DC5BCD977D9889F3853 /* http_service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c"; sourceTree = ""; }; + DAA1A0C6D7A62A19568ACD600EAE497D /* win32_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win32_waiter.h; path = absl/synchronization/internal/win32_waiter.h; sourceTree = ""; }; + DACEB13AF35389BC6CEA06E9FA0E2942 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; + DAD6C59D0FC3BA3B690433098DD17CBE /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb.h"; sourceTree = ""; }; + DAF67EA6D91F8FCF85FC3F363F3C0045 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; + DB0C26A87C7BBE468729621699ED29E9 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; + DB0D7C80C0B32330FC2B78DE861B985A /* DocumentReference+Codable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+Codable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+Codable.swift"; sourceTree = ""; }; + DB1151041A1E5F63DA2CF2CAB23C6B13 /* static_stride_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = static_stride_scheduler.h; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h; sourceTree = ""; }; + DB1BA536C27E5FA72D8CA0AB1CE0C6E6 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; + DB25C15A3FEB5615571AB78EDCCC7CAA /* http.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c"; sourceTree = ""; }; + DB28687B92F79499B12356A4097386C3 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; + DB28735CF28005A2568F1D7964A1C1ED /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; + DB29F74298BA85E9F53DFDD41ADF385E /* DeviceKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DeviceKit-prefix.pch"; sourceTree = ""; }; + DB2A3357405A8167B0FB80BFAF58E249 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; + DB2E7110F5696523512A09E45A89456D /* FBSDKContainerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKContainerViewController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h; sourceTree = ""; }; + DB347760FA13CE89954827AD57040662 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h"; sourceTree = ""; }; + DB34868700C724E633407B32688CABB1 /* CrashlyticsRemoteConfigManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CrashlyticsRemoteConfigManager.swift; path = Crashlytics/Crashlytics/Rollouts/CrashlyticsRemoteConfigManager.swift; sourceTree = ""; }; + DB384F9F65B3D960CF67229CFB87D8BB /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; + DB4483F7FDB8EB8EEAEF5F69D8D29E00 /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; + DB47E882BD767811470A4DAEC30419CD /* cidr.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cidr.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/cidr.upb.h"; sourceTree = ""; }; DB4F34D433F21D14545822AC18C7D578 /* Pods-SwiftProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftProject.debug.xcconfig"; sourceTree = ""; }; - DB4F4FF06FA6A07075020F172DF597A9 /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; - DB581C06827D37B915F6796556340A91 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - DB64E6D145FA402BB4CB5A31789ECDD2 /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; - DB6624648695BB31AC4CE1A2CEC5E44E /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/load_balancing/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - DB7CFCBF61B9A322B7455375C50F9F8E /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - DB8F4E6CF4BE9C6453EB552FCD81B8D7 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_conf.c; path = src/crypto/x509/v3_conf.c; sourceTree = ""; }; - DB93866588EDA352FB85C85A1287FA7E /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - DB95911FB10F4D96EEEF7663EC7A394E /* circuit_breaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h"; sourceTree = ""; }; - DB98EB7456A2A85B0E880556467ED50C /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - DB9C28F85B9E16EAEC2C6FD14040C96D /* cpu_arm_linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_arm_linux.c; path = src/crypto/cpu_arm_linux.c; sourceTree = ""; }; - DB9D25318E9D36F3526E3037EAF46EFA /* ratelimit_unit.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h"; sourceTree = ""; }; - DBA30AC2CCC18924B5AF469C8D0A6D07 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - DBA4019EA241E02193679E07966AE8F9 /* opentelemetry.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h"; sourceTree = ""; }; - DBB286C834AC9C61CECB22FF997F9D98 /* http_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_trace.h; path = src/core/ext/transport/chttp2/transport/http_trace.h; sourceTree = ""; }; - DBB6815174E777EF1467CF74E90441D5 /* dns_service_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_service_resolver.cc; path = src/core/lib/event_engine/cf_engine/dns_service_resolver.cc; sourceTree = ""; }; - DBBD3DC04189F82B4B46B87F626CC6FA /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; - DBBD81E7E6F01561351685C7AB467ACD /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; - DBC4009FB958B4AE743A08D6E6206E3A /* FIRLocalCacheSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLocalCacheSettings.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRLocalCacheSettings.h; sourceTree = ""; }; - DBC553DC0AA6CE062DB607F840B91AAD /* server_info.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = server_info.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c"; sourceTree = ""; }; - DBCF9FB6E0928EB9D64073A277976D0D /* substitution_format_string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h"; sourceTree = ""; }; - DBE31B8AF325526F591ED1447CFC6D50 /* FIRPersistentCacheIndexManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPersistentCacheIndexManager.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRPersistentCacheIndexManager.h; sourceTree = ""; }; - DBE4A002E4ECE1756398E619C706DFF2 /* FirebaseSharedSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseSharedSwift.release.xcconfig; sourceTree = ""; }; - DBE4D26901FAD5D1041EC09D92B264D4 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - DBFCA5F1C373109B2AFB12B2FCB779C1 /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; - DC0BAC021F1FEDE1F5F57E5A407C7C87 /* resource_locator.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h"; sourceTree = ""; }; - DC125F2A24CEAD47260DA56856362E07 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - DC1C545BC3C8F49A6487F1F462388EE0 /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; - DC24A11CA0792F7DA0562E8628A5F7B3 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; - DC2EB2850CAB204464174A0459ED404E /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - DC33F6E9AF1B0308309FE5DBDDB3619D /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; - DC3B68CAF25F52193DD03FBAF736AAB9 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - DC3CC854ADF637EEB177B7D58CC4DA32 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; - DC43EE7C9C0AB4B6DA1C6F9CDFBA611C /* FirebaseRemoteConfigInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfigInterop.debug.xcconfig; sourceTree = ""; }; - DC442F50958FEA558E87DF754A570A3D /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; - DC52C321879830BA38EF4FDDA7783D69 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - DC5935CA6AF36E9658A45CC190FB56FC /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - DC71238D75501C1909F6DBC339BDE977 /* router.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = router.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c"; sourceTree = ""; }; - DC777EDFF2232C644E410FD83C9F4247 /* GDTCORMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetrics.h; sourceTree = ""; }; - DC81278435E55B598D8E32AE74F048D2 /* event_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller.h; path = src/core/lib/event_engine/posix_engine/event_poller.h; sourceTree = ""; }; - DC832F91EF1566B9F7E45C1CA9C23731 /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/internal/any_invocable.h; sourceTree = ""; }; - DC87AAEF9B58756A4CD02B94A5EDFE0F /* legacy_frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_frame.h; path = src/core/ext/transport/chttp2/transport/legacy_frame.h; sourceTree = ""; }; - DC87F76C67190D4D4CA52E2E234AF71C /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/wire/encode.c; sourceTree = ""; }; - DC969C39B0193418BCC5F111650A48D0 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - DC9B0F89CB786523B923AF344C23DF69 /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/internal/field_def.h; sourceTree = ""; }; - DCA0E58C004BCB43FB66C95C1456D763 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = work_serializer.cc; path = src/core/lib/gprpp/work_serializer.cc; sourceTree = ""; }; - DCAB555D0069C49F88B07DD94BF7F483 /* swap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = swap.h; path = third_party/upb/upb/wire/internal/swap.h; sourceTree = ""; }; - DCB052F9DA7C0514242BF993DDF4EE10 /* security_policy_setting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_policy_setting.h; path = src/core/ext/transport/binder/client/security_policy_setting.h; sourceTree = ""; }; - DCC37457FE884CDD61177060466CC527 /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; - DCCC04BBB0F0D799EABFB32D41DDACA9 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - DCDB82906116EBD875D7BEE0161124B3 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; - DCE1ECE6485C645D52E3847C3EDB7DB5 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; - DCF8441543F763A93D9A5322FF59717D /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; - DCF9475AEEE597A575C32D2855977A52 /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; - DD00716D5031E50820F3268D3824497B /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - DD01E56BC95EEF384EA019B534EB100C /* LLSnakePageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLSnakePageControl.swift; path = Lib/LLCycleScrollView/LLSnakePageControl.swift; sourceTree = ""; }; - DD0B5C1B0AB5B76E8B9308F6B66241C7 /* policy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = policy.c; path = src/crypto/x509/policy.c; sourceTree = ""; }; - DD1999DF8AF105D553FDDE8D78048DCC /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - DD207776791D5EA768437F9D61FF6F83 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; - DD25B8FAAD8A918B9E77BBED2ECD8D0C /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = ""; }; - DD2AD8FB658EBD78470127324F86A366 /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - DD467912506269D32A50849BBEF54F1A /* round_trip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = round_trip.h; path = third_party/upb/upb/lex/round_trip.h; sourceTree = ""; }; - DD4CB51F7B2F26C53ECE572D193CC324 /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; - DD4D05C4D21774089EE1FD9ED1F77EC3 /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; - DD4D0862F86639E3A4E0E1516200F5FB /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; - DD5016D60FAABCB3CAEB5A5E90908711 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpc/impl/call.h; sourceTree = ""; }; - DD564A2163A1AFE56CC423B434F7AB63 /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; - DD564C8A9F3ECEE31F45820D5AB875CA /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - DD65A20F213349A0EBD536654CE9409C /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; - DD689D670E52EDC7EBF1D9526AD40DD4 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; - DD6B9E22466D5995921AC754753CA690 /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; - DD807C0E6305A0567973C80989D2EE1E /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; + DB61F25E99CEF633A3E4E0BF0ED163BC /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/client_channel/client_channel_factory.h; sourceTree = ""; }; + DB7770583E26B91EAA332A92AE04CF51 /* cookie.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c"; sourceTree = ""; }; + DB7E652541FB2ED16DEB7BA01A6CAEE1 /* FIRCrashlyticsReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlyticsReport.m; path = Crashlytics/Crashlytics/FIRCrashlyticsReport.m; sourceTree = ""; }; + DB8316E432F2F68A3FB751F6C7977074 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; + DB86404E074CCCDDEA14258D54D8FB60 /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; + DB8FB81AC24181869F954DCEAC237FD0 /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; + DB9397D484677F59798C700222EB52D9 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; + DB972FDE9F4CB55BBE6091C8FC42CC42 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; + DBA2F84D67C7FC0E2DA50BED91C2A99C /* bad_any_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_any_cast.h; path = absl/types/bad_any_cast.h; sourceTree = ""; }; + DBB2CAB6C1B6B9953F945FD486893E27 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; + DBC4570FCF2C27CBB86315B25687F578 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; + DBC7D45EB3FC2467F5C6CB424D19A1C6 /* proxy_protocol.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = proxy_protocol.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c"; sourceTree = ""; }; + DBC98581F36DAFB141C94751A15D8215 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; + DBCCF9BBEF50F35E096A6147FE7081B8 /* FBSDKViewImpressionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewImpressionTracker.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h; sourceTree = ""; }; + DBCF7AA560E14BFAB877C48C1EBFE58E /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; + DBCFADFE53777D890DE2A9C9352A6E60 /* FBSDKCoreKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKCoreKit+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h"; sourceTree = ""; }; + DBD274DB6B83596BB9E409A39176757C /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/load_balancing/ring_hash/ring_hash.h; sourceTree = ""; }; + DBECD6C7F7BA47CE2A70E5DAB5DE62B5 /* FBSDKAccessTokenCaching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCaching.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h; sourceTree = ""; }; + DBF16B64D2B8905081EA61D077C3F5AD /* FBSDKAddressInferencer.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FBSDKAddressInferencer.mm; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/RestrictiveDataFilter/FBSDKAddressInferencer.mm; sourceTree = ""; }; + DBF4AF45B5DEFBAC2E5F583516C34B3F /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; + DBFA53CDE4DA5EC96EBFBDC7E0584B03 /* frame.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cc; path = src/core/ext/transport/chttp2/transport/frame.cc; sourceTree = ""; }; + DBFB5B0444B6AF06ED7326A54D0DD973 /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; + DBFDB731008CD636639EBCFA291884D3 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + DC01D961585B09D30999D404EFCC6383 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; + DC04A11B20488C32D5B5858D417D8495 /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + DC1C5881A90F911277D2912DF2FA0A75 /* endpoint_components.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h"; sourceTree = ""; }; + DC2810BDBA1045EEEDEAD9F8FFBDF2CF /* load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h"; sourceTree = ""; }; + DC44C019E4D79F61A56306C537EEF020 /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; + DC4C215147F2A604E06489DDDE845503 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; + DC4CB2532687F13FFF5D1C332FCCA20B /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; + DC64F7165CC42D2721FB613E086A9990 /* down_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = down_cast.h; path = src/core/lib/gprpp/down_cast.h; sourceTree = ""; }; + DC6750D6E22F3861A09401D6E2BF0429 /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; + DC7570F460D23DFD5950C43598E92421 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; + DC91B2D2A3AC7A7C621CBB805086A9D1 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + DC962AEE00FB2CF7639E58A04739C255 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; + DC99AAB06DCA4C2E71E05B3D4733ECC8 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + DCA32FDDAAD1A05CA2C927AA0FC07E20 /* env_posix_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_posix_test_helper.h; path = util/env_posix_test_helper.h; sourceTree = ""; }; + DCBFC27D7D6879BDAC6442A99DFA4ACB /* policy.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = policy.c; path = src/crypto/x509/policy.c; sourceTree = ""; }; + DCC5F5FB05C0250B22ABE46B909A5A14 /* cookie.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c"; sourceTree = ""; }; + DCC79DD562693D4773E5B6E18233416A /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; + DCD29883BECFCD85A70D372F1435CD60 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; + DCD782FDE9B645FB5C4F2F90E7C7BBB5 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + DCDA221D3816AB6EE46862A0751CF2F5 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; + DCF0A2E30849ED615008383981692CDE /* FBSDKModalFormPresentationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKModalFormPresentationController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKModalFormPresentationController.m; sourceTree = ""; }; + DCF7BF70CAB59FB1C37DF29D87C902C7 /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; + DD099D0E9C171AD9F70C096029E241BD /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; + DD0BE3AD8AD99CD0BF601BA411DCCB44 /* posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix.h; path = src/core/lib/event_engine/posix.h; sourceTree = ""; }; + DD165703A4B5827E641B108477B5313A /* FBSDKCloseIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCloseIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m; sourceTree = ""; }; + DD168A5F901319ABC9261762DF2872FF /* security.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = security.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c"; sourceTree = ""; }; + DD28DB9279798424D2D5B4CED181A712 /* private_handle_accessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = private_handle_accessor.h; path = absl/flags/internal/private_handle_accessor.h; sourceTree = ""; }; + DD2959647FDA15217A3AB4DDA92D6A0F /* versioning.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c"; sourceTree = ""; }; + DD2D0ADE110D3115A3B7B089AE2FFC1A /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; + DD33F6D25E288C494F3E26A28D056686 /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; + DD39F57A58B4D1CA1B3CDEB56D541F02 /* DocumentSnapshot+ReadDecodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentSnapshot+ReadDecodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentSnapshot+ReadDecodable.swift"; sourceTree = ""; }; + DD4743C104AD684CFF4402A64DB0830F /* cf_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cf_engine.cc; path = src/core/lib/event_engine/cf_engine/cf_engine.cc; sourceTree = ""; }; + DD49BD6EA5EC1ADFEFC4FAF6EB59C642 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; + DD4FB287E52873B3888E95FCFFE03AC7 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; + DD5305D831120E3D2D4D914404824AE3 /* dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver.h; path = src/core/resolver/dns/native/dns_resolver.h; sourceTree = ""; }; + DD6A3E6D46BD536B02EA757101564422 /* FBSDKCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h; sourceTree = ""; }; + DD7081389EDF4F7B86CB272A919B7829 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; + DD75442D06C373BD8C4FFEA8192291CB /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; + DD7706A688679C2D5A2708E1F64BBFA3 /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; + DD7C55ABCDEA47B66E9EEBF316D24727 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; + DD7F7FE9565F85D7C2F0006745BE2B66 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; + DD8C640D62C3E6173C65B6EA63E8AB89 /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/cleanup.h; sourceTree = ""; }; + DD8E71583F7393424A9296FE9A42ED6D /* legacy_inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_inproc_transport.h; path = src/core/ext/transport/inproc/legacy_inproc_transport.h; sourceTree = ""; }; DD8E7D31BF119486F48B6B86DAA57FA2 /* Pods-SwiftProject */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-SwiftProject"; path = Pods_SwiftProject.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DDAA9B6C2AC94635766B7B3BCF3EE0E7 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; - DDAB802048E62E0EAB4B6C1DC021AFC5 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; - DDB5947C44F27A203D0EBAA656FF7C40 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - DDC39A6B79CCE6B19310DE34BC2EB2D4 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; - DDCA634ED13903EBDB7699B5362F50A3 /* windows_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_listener.h; path = src/core/lib/event_engine/windows/windows_listener.h; sourceTree = ""; }; - DDD0B970B9DA1372279341ACA6E8B74D /* FirebaseRemoteConfigInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseRemoteConfigInterop-dummy.m"; sourceTree = ""; }; - DDD6A2BA5FF1E4D77B339BFB56C300A9 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - DDE28CEFDB3B6F34093DB026E57A6AD3 /* listener_components.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener_components.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c"; sourceTree = ""; }; - DDF3A7DC0D03217AC4D44C5383C07044 /* charset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charset.h; path = absl/strings/charset.h; sourceTree = ""; }; - DDF4AF65A7B78F5E24FE30B389CD797A /* validation_errors.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validation_errors.cc; path = src/core/lib/gprpp/validation_errors.cc; sourceTree = ""; }; - DE00220AEA70C47490A53D408F3304E7 /* ctrdrbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ctrdrbg.h; path = src/include/openssl/ctrdrbg.h; sourceTree = ""; }; - DE0D6F4C85A7A6AEEC4A1304E1920781 /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h"; sourceTree = ""; }; - DE1BC870AED8F95F7A3AE8EEEED1F0B4 /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; - DE1E26D8854F1DE9DE3E859C91094E21 /* health_check.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h"; sourceTree = ""; }; - DE2328507915D9863D164088E86059CD /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; - DE236C171B4992D7E568EF54EF48781C /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; - DE3036D31A6996DF8233522041C5DC49 /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; - DE439126AFD61618E749E57E36B528D5 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - DE51914A11DE5B59DFBA687259272ECE /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - DE5DC35577D81BD9DE510A4EC2242792 /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; - DE7D3CBB7F034841D87009205AB611DC /* api_listener.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h"; sourceTree = ""; }; - DE9F22DB1F0471DF342F5F9CA90466D8 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; - DEA0A1B453A068B53CDC03075DCF2CCA /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; - DEB5656641F8294B71DCF77A0276BDAC /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - DEC5D8BFB0D796A24378693E392DA59D /* binder_auto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_auto_utils.h; path = src/core/ext/transport/binder/utils/binder_auto_utils.h; sourceTree = ""; }; - DECEABD4206226AB14F87D8855BE4CAD /* wire_reader_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader_impl.h; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.h; sourceTree = ""; }; - DEDFB3CB39E6CBFC07707DF1F08EE8A0 /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; - DEE0E340719971AB8352F71A454470B1 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; - DEEB264A3E73118083BE640EDC9EB78E /* TZPhotoPickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPickerController.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m; sourceTree = ""; }; - DEEEC0433BF1386306BAB8DE91A503E4 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - DEF47744EB8E4479592F5533D162B5F3 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; - DF0CA0275650C7FA9D1253A813DD07BA /* random_early_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_early_detection.h; path = src/core/lib/backoff/random_early_detection.h; sourceTree = ""; }; - DF10070453D09E435D1DFC6C01843593 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; - DF1605268D8D9487BD4DDEC1BD483B68 /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; - DF1E4A6D699222FC3F27B311DD090D66 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + DDB19F16F72E32C61ECCEF088FD30255 /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/create_auth_context.h; sourceTree = ""; }; + DDB202C60676F680F2972FFE2D5A995B /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/tcp_socket_utils.h; sourceTree = ""; }; + DDB33FA17AAC7B9CC4EAF24151A167E3 /* zipkin.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zipkin.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c"; sourceTree = ""; }; + DDB647950EB3928A166BE76EB670B4A4 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; + DDD572906B1C81B4638B6CD4F255F20E /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; + DDE75EDC6D7C6E600A9C243965C27649 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; + DDEF3D448B41C07B784BE9937D42DF0A /* map_gencode_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_gencode_util.h; path = third_party/upb/upb/message/map_gencode_util.h; sourceTree = ""; }; + DDF3A237FCE2D3A0F90637988A615FE0 /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; + DDF4FDE8AAE7B59BC6139AD714FDCE75 /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; + DDF988C4AB121C7CDD3E088A2F44C8E1 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/wire/types.h; sourceTree = ""; }; + DDFA1919249602BE6930D1560E812640 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + DDFDA38CAB4C1BA32BE7382E9C84C9CE /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/load_balancing/lb_policy_factory.h; sourceTree = ""; }; + DE11C78CAB73DFA41289A7A66D0DDE03 /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; + DE283260B5C1A0AF9A265F6C494EFCF1 /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; + DE2DBC5DE971CB286FAE66C52A270E26 /* FBSDKURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLSessionTask.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKURLSessionTask.h; sourceTree = ""; }; + DE3494C3911C2FAFEB1F571D30FF8F46 /* deprecation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h"; sourceTree = ""; }; + DE39B18CCF65D75823BA243310C9155B /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + DE45BAD9EDC0271CDB3ECAAD43998FC8 /* cert.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h"; sourceTree = ""; }; + DE525DE310B2F098CF48A3C6A4F4AE1B /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; + DE6A43626FD58AB63DAF48A516B2E9EF /* kyber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kyber.h; path = src/include/openssl/kyber.h; sourceTree = ""; }; + DE711311B08945961A0E127370419FB7 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; + DE79A230F7B541D0AF099D7F3F8AE3A4 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; + DE7A49CECD389B8C2149CEA10E1BA576 /* endpoint_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_addresses.h; path = src/core/resolver/endpoint_addresses.h; sourceTree = ""; }; + DE7E329122497A76C9E90D9065EF072A /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; + DE93F5D9B2EFA17BD4C4C98713B2B3E4 /* health.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h"; sourceTree = ""; }; + DE9AD013A5427DBBE4F942FC7784023D /* domain.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h"; sourceTree = ""; }; + DE9F2097FF4E9159E0C8005827462703 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; + DEA6288855666920C1EE116899E876DE /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; + DEAC89160C738AE121B21FA17F172A5B /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; + DEB93536CE0AB9924034A6A73151DB66 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; + DEBAE192802AD0D8CE514675DAA2BAB6 /* FBSDKServerConfigurationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfigurationManager+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h"; sourceTree = ""; }; + DEBC73D6E8DDD1F50A6FBA884535AF9C /* client_side_weighted_round_robin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_side_weighted_round_robin.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h"; sourceTree = ""; }; + DEBCEDE61A7D1F36DDDD91EFEDE0A45C /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; + DED0ED8CC87B0E34499AD31B7979C88C /* domain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h"; sourceTree = ""; }; + DEDAD73012C8F09AC54F461822EA0EFC /* FIRAggregateQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuery.h; sourceTree = ""; }; + DEDB658B95BFA989513416DBD608A0B6 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; + DEDE465CCD5939B09CB95A3DDC3A91CD /* waiter_base.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = waiter_base.cc; path = absl/synchronization/internal/waiter_base.cc; sourceTree = ""; }; + DEE41A6E9403ED155D56C3FA7059A133 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; + DEE875066196DFF0656F3891C2F9BEB6 /* ip.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ip.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c"; sourceTree = ""; }; + DEE8BDA43C8E8BF455CCDCC3C6CFC6CB /* typed_struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h"; sourceTree = ""; }; + DEED3761D2BAE708BE55132689FDC81F /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; + DEEE9801FB57C07E5F56EA8001871FCF /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; + DEF1A21884F97039426B69313CE637C7 /* DeviceKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DeviceKit-umbrella.h"; sourceTree = ""; }; + DEF58E21E7DC16C84CF50BD3E4A4D213 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/client_channel/global_subchannel_pool.h; sourceTree = ""; }; + DEF5BD03BEE43DEB57323241398C02CB /* listener.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c"; sourceTree = ""; }; + DEFCC66D80F61B7A7D26002208AC9722 /* health.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h"; sourceTree = ""; }; + DF0B4ED8F911E4640B6F6BCDCF0A004A /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/gprpp/load_file.h; sourceTree = ""; }; + DF0F2F1ACA0E48C609C0BF04C44655FC /* FBSDKInstrumentManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInstrumentManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/FBSDKInstrumentManager.m; sourceTree = ""; }; + DF12C38F3EFB2F2E4D72110D7CC68215 /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; + DF14F99E972BE43D04D6F5303651B6B3 /* http_inputs.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c"; sourceTree = ""; }; + DF1781741240B1A477C0960D42344F5B /* metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = src/core/lib/transport/metadata.h; sourceTree = ""; }; + DF1ED9473D9888CB1098A34B0B7E6BDA /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; DF20AAF3FF1FD9BB16366796E9261C83 /* Pods-SwiftProject-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftProject-dummy.m"; sourceTree = ""; }; - DF2C20AF8CDF3DCB08773F34DC978D11 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - DF3EE244A861D4E743F3FEB9E87FC639 /* event_poller_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_poller_posix_default.h; path = src/core/lib/event_engine/posix_engine/event_poller_posix_default.h; sourceTree = ""; }; - DF41B1443E368F9F1F07DEA4A1680BD5 /* handshaker.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h"; sourceTree = ""; }; - DF47AF8B72DDC76FBC9F1C4E02983951 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - DF484F1159B0B54FEC7CAB6FAA73A450 /* Promise+All.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+All.swift"; path = "Sources/Promises/Promise+All.swift"; sourceTree = ""; }; - DF50CED74D60DD7380C1D1479CD40E0C /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; - DF5E239F02DEBC851CAE617D4F4A30D0 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/load_balancing/address_filtering.h; sourceTree = ""; }; - DF6092271B84334B21B68B0F300E2AA6 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - DF7B1E86CD9B881A9DC4664F8C0061DE /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/load_balancing/subchannel_list.h; sourceTree = ""; }; - DF7D6EFC9D31751CBB9A853A98CC994F /* legacy_compression_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_compression_filter.cc; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.cc; sourceTree = ""; }; - DF8214906600BDA8D6387E771DFDA5DD /* opencensus.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opencensus.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c"; sourceTree = ""; }; - DF978AA0D06A95087A29D5B0C8E44E66 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; - DF9BCA34E54DE698FDA4E2CF26C51241 /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/internal/enum_def.h; sourceTree = ""; }; - DF9C520F59788069A09789BCB8117D9A /* service_indicator.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service_indicator.c; path = src/crypto/fipsmodule/service_indicator/service_indicator.c; sourceTree = ""; }; - DFA6A57A3E5090508A8E61C4AA5BE92F /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - DFB03DF2C9ECBA156F4CA31A01F5A448 /* win32_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = win32_waiter.cc; path = absl/synchronization/internal/win32_waiter.cc; sourceTree = ""; }; - DFBE8E51FF48E22C616E897B93E3F997 /* batch_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = batch_builder.cc; path = src/core/lib/transport/batch_builder.cc; sourceTree = ""; }; - DFC5EF68382C280AB564D81BE2CDF02E /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h; sourceTree = ""; }; - DFC85CA2E24FCB1F2A528BE6EA49B2A1 /* mutex_stats.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mutex_stats.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c"; sourceTree = ""; }; - DFCF89B8737A2D33970FD12578E356C1 /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; - DFD553CBBB2C9FDCCA650778BBAF200E /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; + DF21314DA07CC10013D5D93ABE6F898F /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; + DF426DE2AD16D08347EC1B42D016334D /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; + DF49469190925620F5278BD5404BE1C2 /* FirebaseSessions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseSessions-dummy.m"; sourceTree = ""; }; + DF54022A2C18CD8E0489BA46B21DFAE5 /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; + DF553B66C354808886781776A2B51590 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; + DF586AA779ACEB4C1894A6B698614C6B /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; + DF5A5F0331AF0816E9F57AF43A2BD4A2 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; + DF66ADD42C650B5FBDEBC7E51B6F3497 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; + DF724F1210A0E4067A62878A72EAEB2E /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; + DF7B6E3E418AF979F1E16E19A0BE1ABD /* hash_policy.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_policy.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c"; sourceTree = ""; }; + DF84B9DFA0A136A6F1CEDDDDC0ACC84F /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = priority.cc; path = src/core/load_balancing/priority/priority.cc; sourceTree = ""; }; + DF89B817DB0D1820D47104ED5AB029C7 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; + DF979BE8F866438BF343CA3E1E5BFCFB /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; + DF992AB2C0D937FF77D082308DC478BD /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bcons.c; path = src/crypto/x509/v3_bcons.c; sourceTree = ""; }; + DF9F0E7ECA34589BF3EDC6DE61BF7A1F /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; + DFCA33E1734D74F7EF3577B07B5C6FA0 /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; + DFCBB9C8BA88BF4026D258D2BCEAB978 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; DFD5DC0B4E375B341BD0287F0CC63E60 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - DFDDAA0DFC31F08BF744C12483DE6448 /* filter_state.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h"; sourceTree = ""; }; - DFE149692A91C8CC5A0E81BEB7221484 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; - DFFAB69EDABE0F6B19436D636EC55BF6 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - E0160BE5EE30B679BF675FD5E3EE9C73 /* address.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h"; sourceTree = ""; }; - E01CAA0541E8BE0B2F21A56B6FB2BA81 /* field_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field_def.h; path = third_party/upb/upb/reflection/internal/field_def.h; sourceTree = ""; }; - E03176AE00822C69C0848DF460742279 /* token_bucket.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h"; sourceTree = ""; }; - E0364BC79A4355D9E17463ED12A4B6F3 /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; - E03B6D8EA7EF47791726AF72AE7CEAF8 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - E03F826E70301F30A1D5769DE79008DD /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - E0531C4F78BA76F29EBD81182758B64C /* round_trip.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = round_trip.c; path = third_party/upb/upb/lex/round_trip.c; sourceTree = ""; }; - E0559217778CB0A1B63C1E252698D202 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; - E05E313998D96A1B63B6ADB88E761228 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; - E05EAAB07BBBD737B2BD6B62B6493FAA /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; - E069F621B9A559B83CC71B0567C55F3B /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - E08BEF8EA95D16E6020526523B103B62 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; - E08E287BEDAFD6CA0B6B37261FA5513B /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; - E091657D1B268F3E5D6094B0B06F214C /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Kingfisher-Kingfisher-Info.plist"; sourceTree = ""; }; - E0B4AB7DEDFB1E145A4C5DA064B5E5B2 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - E0BDE1EA1A0CB7C54D7C13341D37D2D6 /* ping_callbacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ping_callbacks.h; path = src/core/ext/transport/chttp2/transport/ping_callbacks.h; sourceTree = ""; }; - E0C98D273184325905E1BCB4CFB10E9E /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; - E0C9D1687C114554133216DA12EF6D56 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - E0D2D9C9CC95C76B2F3077237D46E80F /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZPhotoPreviewCell.m; path = TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.m; sourceTree = ""; }; - E0D7FC2BAAD7FAF98E860412A3042837 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - E0F0F98E20DBFF1E30B10223B3B0CD95 /* TZImagePickerController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TZImagePickerController.modulemap; sourceTree = ""; }; - E0F4B1B10FECA625E20F2A7806887C58 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_cluster_impl.cc; path = src/core/load_balancing/xds/xds_cluster_impl.cc; sourceTree = ""; }; - E0F5CA0B9C9BCAD27A3B7A56970AE61C /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; - E0F7AC97784E7FF99F6138ECFC06C626 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ev_poll_posix.cc; path = src/core/lib/event_engine/posix_engine/ev_poll_posix.cc; sourceTree = ""; }; - E105ECBB374F7433F30942B83CD4187E /* commandlineflag.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = commandlineflag.cc; path = absl/flags/commandlineflag.cc; sourceTree = ""; }; - E106C972E97F13307B6FE29CCB6B2393 /* stdout_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdout_logger.h; path = src/core/lib/security/authorization/stdout_logger.h; sourceTree = ""; }; - E11255F5ED99F53CDFD8159D47310FEE /* ApplicationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApplicationInfo.swift; path = FirebaseSessions/Sources/ApplicationInfo.swift; sourceTree = ""; }; - E11802E61FD392BCC3A02ECE47744B75 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; - E1393849A066FB6865EF1D367DAB9CB5 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/google/rpc/status.upb_minitable.c"; sourceTree = ""; }; - E13FFFF8AEABA4F4DC9AD9F1114D8485 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; - E14682591BB46F02503A2EE327446083 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; - E1498B9726DFD9FF0BA00209B233420A /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; - E14DE2B844735E627FA7B84C737503ED /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; - E14F05852005D8A6BF1F0CCCE7FC33DB /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; - E1563D8201F7423F9CA8567D4429595F /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver_registry.cc; path = src/core/resolver/resolver_registry.cc; sourceTree = ""; }; - E15C671F23E192E1280B33B9B5D1310D /* file_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = file_def.c; path = third_party/upb/upb/reflection/file_def.c; sourceTree = ""; }; - E15F03B4EC78BA15BD2526D25D8E2AFA /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; - E16A8AFF5BB4B921F47A4AFD1C1843D4 /* FIRTOTPMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorGenerator.h; sourceTree = ""; }; - E170DE80FC9A57A810D09A23977D4A9D /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; - E1797726160A096C1BE8380E5D6C571A /* TZImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZImageManager.h; path = TZImagePickerController/TZImagePickerController/TZImageManager.h; sourceTree = ""; }; - E17AB9739BE5C078569B38696F47032A /* inffast.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = third_party/zlib/inffast.c; sourceTree = ""; }; - E1800BF79EE0FD81077421EAF6B45AAF /* init_dump.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h"; sourceTree = ""; }; - E1A85EC0F0AE6FCBBCD8E5DBB82ACF94 /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; - E1B6A2674C2DF6006205B9E1AAD1AB61 /* native_posix_dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = native_posix_dns_resolver.cc; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc; sourceTree = ""; }; - E1C264AF7BAAE028C2B17B52E0623BED /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; - E1CAECF7D4BA7340F5E4741AE10FBC4A /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; - E1E017ED370EA39926247976D0CCA1C0 /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; - E1E1A4A500B58E579720FD544CA53887 /* http.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/http.upb_minitable.h"; sourceTree = ""; }; - E1E562D989F0217A0F9DADAAF594008B /* max_concurrent_streams_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = max_concurrent_streams_policy.cc; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc; sourceTree = ""; }; - E1E90BDAA9EC93C43BAD1515B6CC21D9 /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; - E1F62805561AB9B0E9709B248103F7EB /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; - E1FE93E2D84E2C090B368F0B66D459EA /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - E20493DE3421D89DAD82D41C14F5B101 /* generated_code_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generated_code_support.h; path = third_party/upb/upb/generated_code_support.h; sourceTree = ""; }; - E209AB528B59E2F9D924D00E1581022B /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; - E21DB309D4AF7F0D7F95121D7D2CE305 /* service_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_def.h; path = third_party/upb/upb/reflection/internal/service_def.h; sourceTree = ""; }; - E22B66E1AC7DABE3DD2AE1168A053AD5 /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; - E22FF083675C20C9C2FB231202F77104 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - E234CC3BC5776A60498715C767DEC200 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - E238573CCE3E841887E4B6587058CDCD /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; - E238E7B3F245300749B6273232A5AE54 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; - E246159C3C6033AE78EBDB7F015DA955 /* filter_state.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h"; sourceTree = ""; }; - E2487586DB7A01E4E2DFDBE82223493D /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; - E24AFDF47D803630FD14FD6C9F862657 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; - E24E2BCA5981D4F6CE2B917CF19F19EB /* mutex_stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h"; sourceTree = ""; }; - E25B04DA40FE40C6A2112939608245F5 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - E25B12A60770DE7D34F34FCBE64F6720 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; - E26C7D1815C3A518817C9A69C71CA78D /* node.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c"; sourceTree = ""; }; - E27629BF1C4D3584C2CD3C23718DFBD7 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; - E277D6FD9EC317D3436C81869F09A64B /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - E2797AD5652626B5A6077742D03EA7A4 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - E28486F024179AB0C0783A4A3206A92D /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; - E288CF607F06884B9EF5A65DAF7391F3 /* matcher.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h"; sourceTree = ""; }; - E293D596DD9BFABD0A4A16909060067E /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - E2A2E3360FF1BA7E16E385F93D9A9329 /* Installations+InstallationsProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Installations+InstallationsProtocol.swift"; path = "FirebaseSessions/Sources/Installations+InstallationsProtocol.swift"; sourceTree = ""; }; + DFD6EB2057EFB79BF53B0598E782DCF4 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; + DFD79274571CA0C63B5C132A4970ED4F /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; + DFDAAF00B4C2EDB2DDB69D070055F021 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; + DFE6BDF9A7B37A86BABF2DFD7148DC4A /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + DFEAC7466F5BB4C5E6D2E2AD501B283D /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h; sourceTree = ""; }; + DFEF347C714F83EE46ACA76A113C7799 /* base.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c"; sourceTree = ""; }; + DFF159F9D42AE3A2DAE6C41B2C405B41 /* transport_security_common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = transport_security_common.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c"; sourceTree = ""; }; + DFF1958FBCC19C5F8C820FAB3873B48F /* FBSDKAppLinkReturnToRefererView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkReturnToRefererView.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkReturnToRefererView.m; sourceTree = ""; }; + E000A6999D93551FCE57AF2FC8B1BA0A /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; + E0051CD0E177B74514A772B429A3652C /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = src/crypto/fipsmodule/cmac/cmac.c; sourceTree = ""; }; + E00893F8B7F2892A483696ABDE8E2537 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + E009B0B46358EBFA777795FB03F0AEF5 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/reflection/common.h; sourceTree = ""; }; + E00C097ADC1C02EDA0C7838567776DD1 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/support/atm_gcc_sync.h; sourceTree = ""; }; + E030B2E554D383A6EA8184768CF90DE0 /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; + E047FF0A22C14DF22B88FB930794D9DB /* PromisesSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesSwift-prefix.pch"; sourceTree = ""; }; + E0544D397B08F0AF899E03DB71395166 /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; + E05546E71E507657484622D4B6B7B90B /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; + E075378F924BD71A5AE77BB926D21A75 /* windows_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_endpoint.cc; path = src/core/lib/event_engine/windows/windows_endpoint.cc; sourceTree = ""; }; + E076F15E4F0F3AA2FCF153B488A79AE2 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + E07E9F26A8C8E4D6968AB7E67D3B45BB /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + E07F048B07A9BBFFECFD6D9FF2BE309A /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; + E083AAF3DB125DB98B09D61A2B551DCC /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; + E08FC1F2177FA671B28B997C939208B3 /* field_def.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = field_def.c; path = third_party/upb/upb/reflection/field_def.c; sourceTree = ""; }; + E09639B600AD049E7F728B0A81EA5F0A /* LLCycleScrollView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = LLCycleScrollView.bundle; path = Lib/LLCycleScrollView.bundle; sourceTree = ""; }; + E0AA2E4D5787774255029049D40F9D75 /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/posix/log.cc; sourceTree = ""; }; + E0ADC549E03AB200B97BA19D925C1889 /* opencensus.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = opencensus.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c"; sourceTree = ""; }; + E0C22D3096C6673EE6416A7A6BE76918 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + E0CAF3B55F6062372BB232C4E796F8B6 /* tap.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h"; sourceTree = ""; }; + E0DE4567157587AFBEAA2C6E4E12FBB6 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/internal/file.h; sourceTree = ""; }; + E0E923029E756B6A60545227792AA9B9 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; + E0EF563F5E08A2574EA67351C90C1F6F /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; + E10242ACC5900D68F532BF15ACCEED11 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/mini_descriptor/internal/encode.h; sourceTree = ""; }; + E10FF5F6EF3B317B65FAE8265CCCAF89 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/server_interface.h; sourceTree = ""; }; + E11146F297E2CE8485B33D287BDF8748 /* http_inputs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_inputs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c"; sourceTree = ""; }; + E12698E3E8179BC6C2F8A8EFA1881A91 /* has_absl_stringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = has_absl_stringify.h; path = absl/strings/has_absl_stringify.h; sourceTree = ""; }; + E13A6EE45F5C1CEFF594B79A5E56CEE8 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; + E13E0FBB4974BBF1B64711E76875D9DC /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; + E13E8ABB8313048C7AB7C3BE34311959 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; + E145BE885604F654718CEE039F41F8B1 /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; + E147DEB1B5F1AAE448F78A750A6A96B9 /* time_zone_libc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_libc.h; path = absl/time/internal/cctz/src/time_zone_libc.h; sourceTree = ""; }; + E149621FE0C3F038716176BE58043399 /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; + E15BA16FF99C789ADE72FE8D0E9719F6 /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; + E16457D1C504E8BDEECC5ADA14056667 /* token_bucket.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = token_bucket.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c"; sourceTree = ""; }; + E174357CAC7FAF4AAEA920C78E1F839C /* listeners.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h"; sourceTree = ""; }; + E1743B4BA2782AF21ABAE718EAE81702 /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; + E17614BB18BD20783225949CFFC2DEB2 /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; + E17AEB222857AF3E1301EB3AEEF3D88A /* metadata_query.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_query.cc; path = src/core/ext/gcp/metadata_query.cc; sourceTree = ""; }; + E188AB154183AE844F9DB05C403212E4 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; + E1937C1ED7A74BA33C671718D2ED520C /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; + E196CE5CC1AC6DF99BB40BC4074C9888 /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; + E1A4CE4272F029174EC35A40E34AFD1B /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/event_engine_shims/endpoint.h; sourceTree = ""; }; + E1A515BA93875A75C80E08805019F470 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; + E1AEBA6B59CF6F91D44708A6C2EAD840 /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; + E1B5C50EAC3529A6BFE56FB2E5D05727 /* SnapKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SnapKit-Info.plist"; sourceTree = ""; }; + E1BBEC042B97610F777FD587F1892F2A /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; + E1C176A2190F2980F85869C25BDA3B3F /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; + E1C20055A8B5AB7809706BEFAA51138F /* load_balancer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h"; sourceTree = ""; }; + E1C48931E9E3BDB9F6FFB26F947D7B95 /* time_zone_fixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_fixed.h; path = absl/time/internal/cctz/src/time_zone_fixed.h; sourceTree = ""; }; + E1C6DC8FA47C7660CFA9A78B7BEBE9A1 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; + E1C7FCA59D7D3CCB0F4A9CAABE405DC5 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/event_engine/slice_buffer.h; sourceTree = ""; }; + E1CCF07BB1F6F1EFCF4F939CD3AA013C /* event_log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_log.cc; path = src/core/lib/debug/event_log.cc; sourceTree = ""; }; + E1FF1A97EEDC57A23F57950A152AB7EE /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/load_balancing/ring_hash/ring_hash.h; sourceTree = ""; }; + E24D2309E2EB38C4798CC62AE61DCF57 /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; + E2500F487F6AA1532F8FEEEF1EA97707 /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/internal/enum_reserved_range.h; sourceTree = ""; }; + E251EF59481D661125DFBE0CC2D0C3FB /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; + E253DA5BC5DB49CD986162FF3701D93B /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; + E29DDAA054622D6073DD7B8ADA7D19A4 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; + E2A666EADD66B11C47DAD02DF68906E2 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; + E2B0A1C828BCECE9549444C781F3536F /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E2B790F159512E0CEDF88595812FAAC3 /* unscaledcycleclock_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock_config.h; path = absl/base/internal/unscaledcycleclock_config.h; sourceTree = ""; }; - E2B7E1D4573AC4E0E596290B0657F4C0 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - E2BD7AEC80C02FEC7746CD78635D099F /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; - E2C2287B0CA2EB81871504CAFB82D7DE /* xds_resolver_attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver_attributes.h; path = src/core/resolver/xds/xds_resolver_attributes.h; sourceTree = ""; }; - E2CCD592A6EE4D8FEFD6421B7BDD68FF /* traced_buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traced_buffer_list.h; path = src/core/lib/event_engine/posix_engine/traced_buffer_list.h; sourceTree = ""; }; - E2D40A1A16637FE08B870E3E1DC3B1F3 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; - E2DA608436826A1DDC1045B7BD25356B /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - E2E818BDC430768F90CE6A652929C1A7 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; - E2EABA3DABF95C97EAE5AB4DBE52902A /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - E2ED150A8E4CC297DA9E22EDEB14154E /* FIRAggregateQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRAggregateQuery.mm; path = Firestore/Source/API/FIRAggregateQuery.mm; sourceTree = ""; }; - E2F2FA5AB4D561422F913133EEAC8B46 /* cpu_arm_freebsd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_arm_freebsd.c; path = src/crypto/cpu_arm_freebsd.c; sourceTree = ""; }; - E2F3C402B75AB4D3ED6D8BD1BEFFC0FC /* hash_policy.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h"; sourceTree = ""; }; - E30AA59D0FDDCAF12445E8672E04CAB9 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resolver.cc; path = src/core/resolver/resolver.cc; sourceTree = ""; }; - E31F098239FD8BF3E8CF1BF1FC8A3D15 /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; - E3217CCFDDCD218459EEE626C7942846 /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - E3243580BB7CA8A3A17E07C964377F9F /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; - E326C6E7398A6F61A8D2E724B1E6172F /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; - E32DCCF20B1B99D4E2220D9FF791B1E3 /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; - E33A753E47FB73482C025898990CACC5 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/internal/array.h; sourceTree = ""; }; - E35494BF6B4616500191706AFCBEEBA4 /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - E35C3F3CC723E919C3CF8C1812245F1D /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; - E367C0AACF23A3BBF0F97329929041F7 /* alloc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = alloc.c; path = third_party/upb/upb/mem/alloc.c; sourceTree = ""; }; - E36DCC9E2104C542390C3CD6CE48E5FF /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/wire/types.h; sourceTree = ""; }; - E37B1E1F9D6C995F864BD2A29DFAC156 /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; - E381019C7CB6FA208B05FEA9CB6DE715 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; - E38886A31898A9F91138DA5805CB96D9 /* wire_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_constants.h; path = third_party/upb/upb/mini_descriptor/internal/wire_constants.h; sourceTree = ""; }; - E3907E8E74532FA1C84D8761AC79B2DE /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; - E395C99063DF245B82C8576625E5E985 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; - E396BD5F73417F6F7D17100C12FF521A /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; - E3B4644A0FFFD9E170FF2E9FABC4791D /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - E3D0CC740858F5DA38999F6C2E5E47A9 /* sensitive.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c"; sourceTree = ""; }; - E3D36163A5C640671A65E1C5F6468A0B /* tcp_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_tracer.h; path = src/core/lib/channel/tcp_tracer.h; sourceTree = ""; }; - E3E908D3F5BE15DE2B75D64E186266B9 /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; - E3ECDC138F660C39B0B13D0C5BF85E6F /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - E3F839208013616201860A74C11C6C0A /* status_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_internal.cc; path = absl/status/internal/status_internal.cc; sourceTree = ""; }; - E4077F2B60ABCF7857C4DFF87BF85158 /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; - E414256B58D4C3A49CDCEB5867E35D73 /* server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_option.h; path = include/grpcpp/impl/server_builder_option.h; sourceTree = ""; }; - E41DA07E35B2EA032CA8AF3B5647FA7E /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool/thread_pool.h; sourceTree = ""; }; - E438820C6D52231CDC7A286BE35D989B /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; - E4489B92A4ABC7C5E0D153B008267108 /* pick_first.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.h; path = src/core/load_balancing/pick_first/pick_first.h; sourceTree = ""; }; - E45B8B4DE103400D00478ADB1BC889C6 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; - E45E5665FF6AE072FD4E1F8CF4E524EE /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; - E467AAA73A01DADA494B175229EF6B41 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - E478C200F7075F0EC676DB225F5C1464 /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; - E47D90E1B806EE67B1DEA1F6C7ACDB15 /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; - E47EB53D6778008D6569E7367EC3E7F4 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; - E49B52C984BBEF7127FFEACC3F7AEC7E /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; - E4B2731373CB55F5F97C55C4F275B2FD /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; - E4C1B1E4F10A5E5AD43039CB1713460B /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; - E4C8FA1DB08391AE112FB9321988BD71 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - E4CAC3B87755E5519961792D880E5EB0 /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; - E4E7F0E67A185AFC6692D82CB641FF90 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; - E4F306BDD115D27C42FF0D27F86FB353 /* cookie.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cookie.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c"; sourceTree = ""; }; - E52369054517C82D8BCC21A66836FE4A /* if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if.h; path = src/core/lib/promise/if.h; sourceTree = ""; }; - E5237AD428418E060CBF95F12CC24F5A /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; - E529DE322D4458CF608012ECFEC8949D /* program_name.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = program_name.cc; path = absl/flags/internal/program_name.cc; sourceTree = ""; }; - E5300E0CFA08053FB865BD3D647B9628 /* map_sorter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_sorter.h; path = third_party/upb/upb/message/internal/map_sorter.h; sourceTree = ""; }; - E5351629C10BA117B7CD6917AB464DF0 /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; - E546DCEDF5ECD6C45B1BEC0E2F4A55C6 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - E54D5097D5238C67E534F133B86D9352 /* reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reader.h; path = third_party/upb/upb/wire/reader.h; sourceTree = ""; }; - E55BB4A190305DF1AF382D8A0A9B3BB3 /* file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file.h; path = third_party/upb/upb/mini_table/file.h; sourceTree = ""; }; - E55E5979986DCF814DDB037E773A654D /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; - E56412EEBFE01D84A924C23C63C00C56 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - E569B4C4A9A9F1E4CC835CBD154F9C57 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; - E58D18013E17C1BC5BF209826C53E04A /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - E59A487B3E5B45F0C7A53999F80460DE /* waiter_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter_base.h; path = absl/synchronization/internal/waiter_base.h; sourceTree = ""; }; - E5A31CE8E77FF2AC5B51F8EE72B1932F /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; - E5A854C180A458BD8ACC3FEEDD2EE829 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; - E5ACB515F779113CA2D423D14B2F722B /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; - E5AD17697C856BA55D15D9605CD349F5 /* tmpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tmpfile.cc; path = src/core/lib/gpr/posix/tmpfile.cc; sourceTree = ""; }; - E5B771FE05280C2B91D32BA3EAF9ADCA /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; - E5CB2BF5358BFA506016826CF79C18B4 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; - E5CBAA17FC51510492CEC4FF7EDA4E6B /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; - E5DEA3BEAD7F2B54FC98D4C72D98413D /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; - E5E470A32C365CC3366E4C27FDFEAD00 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; - E5FB475FCA94C7C365039878075529A9 /* GDTCORMetricsController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsController.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsController.h; sourceTree = ""; }; - E6008F4B03A64576334FD4A984B73B4A /* TZImagePickerController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TZImagePickerController-umbrella.h"; sourceTree = ""; }; - E6025EF17A97E73DBBFC2B9E8E1DC07A /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; - E60330B07A5528BF4764837EA8F145E9 /* cord_rep_btree_navigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_navigator.h; path = absl/strings/internal/cord_rep_btree_navigator.h; sourceTree = ""; }; - E60E9A085139B2D3B1857F382D5C6E04 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; - E610A9E142E5F041F6267D8CE495C9B3 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; - E61C4740B15E957214E2C3ED02718EA1 /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; - E62B17FA3495E736DE3B9DA3E4342D29 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; - E63352C0FD8FC0F0CB0E6887931BCD0A /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; - E635C530CFBAC2507E8770F884BE05CF /* discovery.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h"; sourceTree = ""; }; - E6376FA095F4B6F3CAEA14B6B2D3DFCC /* metrics.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h"; sourceTree = ""; }; - E6378CC56E2A6FCCD03F54631B4CC9B0 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/wire/internal/decode.h; sourceTree = ""; }; - E644DBC0E8CB42073ED42ED597FA5C9D /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - E648D50118D6CE58E27A6882E38067CD /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; - E6650D8FCA693D63F813841B0F052B3C /* bloom_filter.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom_filter.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/bloom_filter.nanopb.cc; sourceTree = ""; }; - E6656E1E6001DD5DEAF61E8F242AAD0F /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; - E66903E7FA89178CEFF996A48BF353FC /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; - E673933B949E473516CB380A897FBE74 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; - E6769A7BA301D9C621056145D34D2B1B /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - E684F9C7C2C3E8629E5D15A940314092 /* supports_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = supports_fd.h; path = src/core/lib/event_engine/extensions/supports_fd.h; sourceTree = ""; }; - E6899D2A0E524989E8DBF863378295A6 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; - E6919070A100A717A4E29826F1EB0CE8 /* grpc_method_list.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = grpc_method_list.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c"; sourceTree = ""; }; - E698C4E5C8762FE239FB35E7EAEAAF8D /* xxhash_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash_inline.h; path = src/core/lib/gprpp/xxhash_inline.h; sourceTree = ""; }; - E69C06ACB33BFBA8CB1E59C9BDEBA353 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; - E6A0E7C7BF44DEBD779A4BB4BD4ABF4D /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - E6A60726A577D8F82B8E2F38F13E8A22 /* json_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_writer.h; path = src/core/lib/json/json_writer.h; sourceTree = ""; }; - E6A6BB510A355A845EDF909A3530D57E /* stringify_sink.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringify_sink.cc; path = absl/strings/internal/stringify_sink.cc; sourceTree = ""; }; - E6C25D39F9288DE48217D6E82B87AE05 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; - E6E5A9697C0869681AD8C92B0CEE0578 /* stateful_session_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stateful_session_service_config_parser.cc; path = src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc; sourceTree = ""; }; - E6EB8C2E9F30BB69814EE696EFCEF3FF /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/event_engine/posix_engine/internal_errqueue.h; sourceTree = ""; }; - E6F3D3CAFFC238B3202D99A12F3E263A /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; - E6F538036EBAE5BEE0501E43E67569ED /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; - E6FB24948A4D8D3623FA684ABE2A3EF2 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - E701179F44AAC7684628492400AE67C5 /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; - E70296D3D8A6B35D69E50D2FFBCDF34B /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; - E7059C777F52FB40E3270BB695A004B2 /* listener.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c"; sourceTree = ""; }; - E73AF16F65707A76977BB236194FA7E3 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; - E73B0F50D17496287D43F61A2E0DB950 /* external_prequest_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = external_prequest_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.c; sourceTree = ""; }; - E74FCC89B9A909DD8D2E28BAF318179C /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; - E7540EF435F96E60D134F1A246C6952A /* def_builder.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = def_builder.c; path = third_party/upb/upb/reflection/internal/def_builder.c; sourceTree = ""; }; - E7725D1B1FB2BBAECBB74183689ED610 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - E77A7E604E0D8C5BC83F3A84CDA81E17 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - E78C34C9D3FD4EE555F5761F7B50A790 /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/service_config/service_config_impl.h; sourceTree = ""; }; - E7970DFB6AAAE62D0072BFA026DB3836 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h"; sourceTree = ""; }; - E7BF436C17C9BFB1C58741ADA9947AA0 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - E7BFD0A3D693116E6CFB1A848E29B6BC /* call_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_metric_recorder.h; path = include/grpcpp/ext/call_metric_recorder.h; sourceTree = ""; }; - E7D94A4CF16D2A990078576385B327E9 /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/oneof_def.h; sourceTree = ""; }; - E7DEACD7DC5DFC5774AC43E6273A3A6B /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; - E7E223C61A74AF0204ABD50FA142C086 /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; - E7F43C9EDCEEBCA50227AE6DBE493596 /* tcp_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_tracer.h; path = src/core/lib/channel/tcp_tracer.h; sourceTree = ""; }; - E809C3B836CC6FC3406D1FBDC7024CF5 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = format.cc; path = table/format.cc; sourceTree = ""; }; - E80A011D34CD73F12EA219FEFC3FACB2 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - E80DF185130B2DDADDBCE50CF6B7727B /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; + E2BF4B662AD958788438A51A7CA6CB08 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; + E2DF57EBAB2A1593559C0BA4A7AE31CC /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; + E2E40501E6A28ED3F6AE0910D29C3796 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/message/internal/extension.h; sourceTree = ""; }; + E2E789D2C93397D1C6F9F8F69481D1DB /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; + E2EDE63152D5461E3E16CDCF9868D0B3 /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; + E2F18B201CE7AD0E47F0C9AC20D2179E /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; + E2F4CC7C485CDF30AB57354F86FE184B /* GDTCOREvent+GDTMetricsSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTMetricsSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCOREvent+GDTMetricsSupport.h"; sourceTree = ""; }; + E2F82F8BCECA315AA0D379A95CC017FD /* orca_load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb_minitable.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h"; sourceTree = ""; }; + E2FA96ADBC221AA6BDCBC453110ACB3C /* zutil.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = third_party/zlib/zutil.c; sourceTree = ""; }; + E2FE16D66F4325B885CAEEDC9C254F2B /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; + E30E509DD690EE960857E0AC18B77033 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; + E3133F442732EBE09DC5DFF452AB1338 /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; + E321ACBC35744545C85848FCEF87C503 /* target.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = target.h; path = src/include/openssl/target.h; sourceTree = ""; }; + E32250DD36BCB271621EBD0E54625A8C /* TZAuthLimitedFooterTipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAuthLimitedFooterTipView.m; path = TZImagePickerController/TZImagePickerController/TZAuthLimitedFooterTipView.m; sourceTree = ""; }; + E325163F5134AA7543495793C126B81C /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; + E326D34296E21D7276601A310F814E90 /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; + E3348D6E4089862FB094C264C7859272 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; + E33B9DC8286E7D7622541ED644366CF2 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; + E34F2F1C75C4490A526A5B3A42DC831E /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + E35ADA6C24FF01EB64C2CA1C72E7AE4F /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; + E35E706CF21A0C00F15A00A5C7C66849 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; + E36B6486D41A689A74994A55366E905A /* def_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_pool.h; path = third_party/upb/upb/reflection/def_pool.h; sourceTree = ""; }; + E383118FE0F566BE2CB7C75C4A0F786E /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; + E387728CCEFD404E74AB91EA9B4F277F /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; + E3924746F08EE8A2F08E35FBF970EE30 /* Promise+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Async.swift"; path = "Sources/Promises/Promise+Async.swift"; sourceTree = ""; }; + E3A0C4FF8F701F911C0F232F575BEBD8 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c"; sourceTree = ""; }; + E3A6B4C0CC047A76AE4F8180CB7DC1D9 /* proto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_utils.h; path = include/grpcpp/impl/proto_utils.h; sourceTree = ""; }; + E3AD35E346BC8F98A1D7A050ABE5C359 /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; + E3B00C50EEE788A83CB36C8F9A10C164 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; + E3B902C6325A9F43D14E9593C6E0D5AE /* p256-nistz.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "p256-nistz.c"; path = "src/crypto/fipsmodule/ec/p256-nistz.c"; sourceTree = ""; }; + E3BD578C690A07FC2E3A902E71C7D2CB /* LLPillPageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLPillPageControl.swift; path = Lib/LLCycleScrollView/LLPillPageControl.swift; sourceTree = ""; }; + E3BE5274BF1821B0CE9B7A7141A3F798 /* memory.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = memory.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c"; sourceTree = ""; }; + E3BF8CF6A125A7B43BF253CB175D46A2 /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; + E3C7ABE7BEACEC537427869586E990E4 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; + E3CA01F5235B8E01963B8558BFDDC660 /* circuit_breaker.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = circuit_breaker.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c"; sourceTree = ""; }; + E3D060167DCF47B640338CBFDD6D7EAD /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; + E3D48653274FABB832346CC2441D43C9 /* SDKDefaultSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SDKDefaultSettings.swift; path = FirebaseSessions/Sources/Settings/SDKDefaultSettings.swift; sourceTree = ""; }; + E3D6AC34171E53A1E2E88797FBC6C798 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; + E3FBD46377D84D308E3003F107ED8D4B /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/extension.h; sourceTree = ""; }; + E3FDBECC2C1F426EF5A4DA43290D59AA /* backoff.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = backoff.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c"; sourceTree = ""; }; + E411F52F3C14C5F917C82597A74E330E /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; + E41471B370718C31FF08F13AAD9BBDE8 /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; + E424E2038D6D2C1D6F842A885EA7592B /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; + E4358CB27FB7E82183864E7D9E0600E8 /* p256-nistz-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-nistz-table.h"; path = "src/crypto/fipsmodule/ec/p256-nistz-table.h"; sourceTree = ""; }; + E46526A5BF9C4A1C334ACB727BCF72EA /* per_thread_tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_tls.h; path = absl/base/internal/per_thread_tls.h; sourceTree = ""; }; + E4676E7BC4997BE8DDDF6C5CA78752A5 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; + E48075EDE88BE4C97C82232F54CA878C /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; + E48E3F2B713D64AC80B6AE4A04E6A177 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; + E491968D4021EC9A85D6338ECC019D68 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/keccak/internal.h; sourceTree = ""; }; + E496C35F77BE4027C7DF80022E0841F2 /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; + E4A320FAB8002209A7EF65CF5C5B2F6D /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; + E4B4F1B6C1759F53BFFBBD22829E935D /* audit_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = audit_logging.cc; path = src/core/lib/security/authorization/audit_logging.cc; sourceTree = ""; }; + E4C6CDC9E5A154AB7854CA37B5F103CA /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; + E4D87708E6C96DE4D62C124736E901F6 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; + E4DE7ADDB73941D5687C54494C0815C3 /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; + E4DED4A07B57AB3484526F0E1C930828 /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h"; sourceTree = ""; }; + E4EE61E0B5C16A518395AA4A00D92043 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; + E4FCDB9E456588D1A7A30894570991D1 /* http_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h"; sourceTree = ""; }; + E505A8D53EFE792BD0DF1FF87B1753DB /* ssl_transport_security_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security_utils.h; path = src/core/tsi/ssl_transport_security_utils.h; sourceTree = ""; }; + E51061D3B2FF79431200B0E65F5ED0F0 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + E5206A14705293CC45E74A95220224B7 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; + E5231DA774E4B33B890A7F6F4A989B27 /* string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h"; sourceTree = ""; }; + E52D20AA78E0E3737273FA3B79FF1342 /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; + E54DB0ADF1DE0E5B1DC3B88269DA1A6D /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; + E551D546ADB7E328DFCC3A55EA8AA350 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + E554E5F0B728EA89B84601D5B349DF8C /* percent.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h"; sourceTree = ""; }; + E5566379EFEC203F8BDEBA8425B89849 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + E5570C8363D66718CD1FA505C3A4FA1E /* zipkin.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h"; sourceTree = ""; }; + E57F895AB305777BE67D86C1630260FB /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; + E58484A578EB79AB79A1018D46378130 /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; + E5855CB8EF614C784721D385DD55AB65 /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; + E5B2F6F554AA7BF8CB0C10FCB73B2665 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/resolver/resolver_factory.h; sourceTree = ""; }; + E5B55BE2F8A77CFEF0F4C987B504AA42 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h"; sourceTree = ""; }; + E5BA710FB81918C9F2F6EFD9E25D9275 /* closure.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = closure.cc; path = src/core/lib/iomgr/event_engine_shims/closure.cc; sourceTree = ""; }; + E5BCB7350BC184041797E26EE53DF900 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c"; sourceTree = ""; }; + E5C3EF2ABE501B553041FE488645C912 /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h"; sourceTree = ""; }; + E5E4DFA2E53B585C9BED91D23E32A759 /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; + E5F4EAEA37811DC82A6F9825FB5C7E87 /* all_ok.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_ok.h; path = src/core/lib/promise/all_ok.h; sourceTree = ""; }; + E603A29FB7BE6A1B11E7B174FB909F7A /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; + E60734FA3CA3A02F0AEE16B144ED4406 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + E6128D992BCCB658CF2DBF3853A61483 /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; + E61D792700C41C25B66D4400FD601884 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; + E62E8AD2C9FAA683A293044A73D5EE29 /* tls_spiffe_validator_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h"; sourceTree = ""; }; + E6353A86B48D6118731B47167539BC6C /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; + E635CFEF526F7F9769CF8C74AAAF5B54 /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; + E65D49138798FEB52DFBCEB615E5CB98 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + E66397D7D3DE9F3E6880E36B2E7CC6D3 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; + E67552D31E12F6F80380F059A6A910D6 /* native_windows_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_windows_dns_resolver.h; path = src/core/lib/event_engine/windows/native_windows_dns_resolver.h; sourceTree = ""; }; + E67E1B06C6E66CB7BE1E366C25AF3D5C /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; + E6A120078930639C1ADCCA33C4EC8A64 /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; + E6B5D905FDF21D8D5021957EEA5A57CF /* ring_hash.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h"; sourceTree = ""; }; + E6B7E9156A205A40898472C2DA91BE8D /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + E6BC43F547097C6D0D474F81E1CD4D72 /* stringify_sink.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringify_sink.cc; path = absl/strings/internal/stringify_sink.cc; sourceTree = ""; }; + E6C544186DE2349E98EC4841306A7389 /* path.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h"; sourceTree = ""; }; + E6CB75ABD3A3E8E2CD870C85073B9CB1 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; + E6DC093A8CF3EDC17229CE85DBDA56ED /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h"; sourceTree = ""; }; + E6E96DD0222657F272316124E2609B25 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; + E6EA361750F38623D9643826372EC319 /* PromiseError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromiseError.swift; path = Sources/Promises/PromiseError.swift; sourceTree = ""; }; + E6EBC98009ABE8EFBA5CC6AFCDE27266 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; + E6EF66EF5FA982D3DF3CC2B7D9D482FB /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; + E6FD033A8298FCA8B46A6BD91CFFF502 /* join_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = join_state.h; path = src/core/lib/promise/detail/join_state.h; sourceTree = ""; }; + E71044959D55BBD82C6430347E0EA2CB /* xxhash_inline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash_inline.h; path = src/core/lib/gprpp/xxhash_inline.h; sourceTree = ""; }; + E71D3C0F6B143D70E77407B07D7BD167 /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; + E720B97DE378444176CBEFCBE49E7C61 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/metadata_map.h; sourceTree = ""; }; + E7263A2C62A045F2AE321800E48988CE /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; + E72EED7E1B2F60D650302D4632612511 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; + E72FFF07578858058B4872CBF372C336 /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; + E74068A57C279856EFD6CA3F684B37AE /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; + E753A443D97203CC9242EDA5881B33DB /* accessors.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accessors.c; path = third_party/upb/upb/message/accessors.c; sourceTree = ""; }; + E7578007106354AA462DC26D02E64D2B /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; + E75CB07670E41C6F6B48B3B288ECCD85 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; + E761109C3D2A022C2599FBACC3063B2B /* GDTCORMetrics+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORMetrics+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCORMetrics+GDTCCTSupport.h"; sourceTree = ""; }; + E776AB437A9A2B02F56C9D839F23A798 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + E776DF48869A6C5BCA25F9A796F2CF22 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; + E778B7D46D75B0BEF8832E8FADEAE7B4 /* delegating_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_helper.h; path = src/core/load_balancing/delegating_helper.h; sourceTree = ""; }; + E78DBC96EE09D643614969878A3B85DC /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = global_subchannel_pool.cc; path = src/core/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; + E7A7B33E40AE1E84098917372E9F1920 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h"; sourceTree = ""; }; + E7BC35C3F8824BD157CA4850D5331BD4 /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; + E7C8DAB3E219E902B373B29DFA7BC850 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + E7F54068D2D9154BB23804041A34EE32 /* FBSDKFeatureExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKFeatureExtractor.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/SuggestedEvents/FBSDKFeatureExtractor.h; sourceTree = ""; }; + E7FBA7426CF932A54ABE29D890AB19F8 /* desc_state.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = desc_state.c; path = third_party/upb/upb/reflection/desc_state.c; sourceTree = ""; }; + E7FCBC9C6A30C15FA6E2E459D72E394B /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/api/http.upbdefs.h"; sourceTree = ""; }; + E80F822949527FAA4D66E10B4DED29F5 /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Promises/Promise.swift; sourceTree = ""; }; E826FA0DCB9AA6E7829C68391B323B78 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy"; path = GTMSessionFetcher_Core_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E82CE32763DF6059CAED4F3754135B26 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - E848C2C3A6DCBD45278A93130F69A68E /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; - E84AA880B8C08725CF45D2AC743F040F /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - E851D8F9C5AF90AA68534DA5E7C63B05 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; - E8673BCFB168B463464E316EDBE5265B /* bad_any_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_any_cast.h; path = absl/types/bad_any_cast.h; sourceTree = ""; }; - E86DAD4A9FD845E7CA8444A7774785FD /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; - E87169A1474CAB20AAF92E65BDDFFCE6 /* dns_resolver_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_plugin.h; path = src/core/resolver/dns/dns_resolver_plugin.h; sourceTree = ""; }; - E8802D3087956EE69081E01F82AE753E /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - E89884DCC7204C424615F5773D6DE2DD /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; - E8A8198B1FCE5866D07C533FA978E9F0 /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; - E8B51CA5EE0C9EC5E11483B9B703CEA1 /* endpoint_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_addresses.h; path = src/core/resolver/endpoint_addresses.h; sourceTree = ""; }; - E8B567F5D82E4E4528CDF87C06D84F2D /* SVProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SVProgressHUD-Info.plist"; sourceTree = ""; }; - E8BD465C7E45C388393356042FEB59AB /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; - E8D7D1DEB8416D21FB66BE0281FECAB6 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; - E8DEBB9A5E026BA814C5BD1D36C98B94 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - E8EC163B26E63201542D4A7E14E3172F /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - E8F326B243DF2EA18A2A181B950EE829 /* event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = event_engine.cc; path = src/core/lib/event_engine/event_engine.cc; sourceTree = ""; }; - E8F8A399560DDA4C413745C9AA55C7DE /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h"; sourceTree = ""; }; - E902ACA4DE0A653F0D5A82EDF158B9E8 /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; - E914C1AB3867B426CB1076E298764D6C /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; - E914DE0D9527194924998EFA6FCEE623 /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; - E915D0437CDBAD0A094880EB90D2E36F /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - E91686146DA62C09E58F11CEC5D16C62 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - E91C032FA93DD21F0BD17B8104FD5BBD /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = block.cc; path = table/block.cc; sourceTree = ""; }; - E9357B4B2C647939E1AA94BF61A73255 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/hash/common.h; sourceTree = ""; }; - E9554D677BFFE8B2F8398AC47B6004CD /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = lb_policy_registry.cc; path = src/core/load_balancing/lb_policy_registry.cc; sourceTree = ""; }; - E956232565EDA2ECD017943128003A49 /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; - E95DFE311A1C04AA135F9DF97050768C /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; - E96B5BF0D243FF7C6D902A872BE7439E /* crc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc.h; path = absl/crc/internal/crc.h; sourceTree = ""; }; - E9741B79D4B16D01F7DF6A5B577A9060 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; + E834F86FC7556FCB776E5725334BD53F /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; + E838014959FBF2423B5B1D5620E71E74 /* grpc_method_list.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h"; sourceTree = ""; }; + E8421D0BF7F26B9830B73ED34DA3FE5B /* stdout_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdout_logger.h; path = src/core/lib/security/authorization/stdout_logger.h; sourceTree = ""; }; + E847D1CE2342960832C8353CC1BC6A35 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; + E84F4396968E8AB6DE8331911581D9CE /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; + E8571976F0B42C13A776925E9FCBBEE0 /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; + E857496DC761F431CA98E75A99DD7D22 /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; + E85E41B999FF5D89065282164048DE6A /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; + E888036BED1251FEABD2B93F4CE3237B /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; + E894E22BF4448AAC61760F128D3725F8 /* config_vars.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_vars.h; path = src/core/lib/config/config_vars.h; sourceTree = ""; }; + E899AED87468EAABA717FDEABC2276D0 /* lrs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h"; sourceTree = ""; }; + E899EB1FD6246095202B3E4C96C27E4C /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; + E8C1FB8F23D864CF886BBF627FD5CEF2 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; + E8C52FE43DE8E27D3C705260CCAF270D /* FBSDKEventBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKEventBinding.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBinding.h; sourceTree = ""; }; + E8C5ADC0757EB867BCA46528AA81A02A /* auth_metadata_processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_metadata_processor.h; path = include/grpcpp/security/auth_metadata_processor.h; sourceTree = ""; }; + E8CD8D1E0B764FE6FD32B0D36BEDB9CD /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/codegen/rpc_service_method.h; sourceTree = ""; }; + E8DCACFC67253E0AD9E2C3E795F4A6E4 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; + E8E5129D1F1305C423311C8CB06F0202 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcframework; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; + E8E9AAC4D16C91492B2CB11D23A78EAF /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + E8EDC407D27259CE348B71F0920FDABB /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; + E8F87BC79CEB6781FB4BE0CCFA81AD83 /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_privacy_integrity_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc; sourceTree = ""; }; + E8F9754309134FFD36E727ADED311226 /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; + E8FE0817B0724EAEE03D7B28AC3A5D0A /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-gen/xds/core/v3/authority.upb.h"; sourceTree = ""; }; + E8FE934EBEC7075077EA860111A9BB6E /* extension.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h"; sourceTree = ""; }; + E8FECDA55934735363493F56C347094D /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; + E8FF025D3EF976F365B410F1B49AEFED /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; + E90D9F53B1305DA51E4A2A6B8092362F /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; + E91755F205B3699C0F7507D281602DC8 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; + E9299D245185A97F0B6CD8F87B3DD934 /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; + E9394562D6EFF6FF36DCDB20C5A0D387 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; + E93B9C701BEB399419B6428A72246E21 /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; + E93BC63A9E9C3AE740308AC2FF2A6CD0 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/base/status.h; sourceTree = ""; }; + E943B4B5225B551F8DDB28706401B877 /* atoi.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = atoi.c; path = third_party/upb/upb/lex/atoi.c; sourceTree = ""; }; + E94BFB29DF7A1EBEF52B100FDD34FF18 /* encode.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = encode.hpp; path = third_party/upb/upb/mini_descriptor/internal/encode.hpp; sourceTree = ""; }; + E9541F7E95D69A5F464FEBBE54252724 /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; + E968BE4877C229BE8C065A097686672E /* lightstep.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lightstep.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c"; sourceTree = ""; }; + E96AB8701F7566BF730A1FFAFDC83250 /* metadata_compression_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_compression_traits.h; path = src/core/lib/transport/metadata_compression_traits.h; sourceTree = ""; }; E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SVProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E98A046C925B2B79DB747C573EB4CA94 /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; - E98C0A7EDA425994F025AA5A46F17C6B /* FIRPersistentCacheIndexManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPersistentCacheIndexManager.h; path = Firestore/Source/Public/FirebaseFirestore/FIRPersistentCacheIndexManager.h; sourceTree = ""; }; - E99110AC46DD249664A5211EF7643FF8 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/wire/decode_fast.h; sourceTree = ""; }; - E99C041136A5FC4F735CDAF791863357 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; - E99C6602F022D7BA64D14FBE1CC465C7 /* http_inputs.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h"; sourceTree = ""; }; - E99E4F266EA24BC5904E50FC5BBC4E17 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - E9A3924EBAA56FD8B8D2CA1F4F483EDF /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - E9A4964E854CF697B328D04F7E8DD7F9 /* xds_health_status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_health_status.h; path = src/core/ext/xds/xds_health_status.h; sourceTree = ""; }; - E9ABC132611580D82E073643A68A68B6 /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; - E9B92F70BB03414F3C1F6317C95C9C5C /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_bcons.c; path = src/crypto/x509/v3_bcons.c; sourceTree = ""; }; - E9BD717C2BDAE392A7AEB886AAFB969F /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; - E9CA2296761C88D10EE8125E13CDB116 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - E9D6CE07524773BECC31629CCFC4EDE6 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; - E9EC0B67F461AC3B1A94EEA19287FF50 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; - E9F126D64AE0D4DF51E1293D97D882BF /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - EA00D7F2388C39EB960CF37BC0A7AB24 /* TZImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TZImagePickerController-dummy.m"; sourceTree = ""; }; - EA036AE934DAE90256888BFE6A34479B /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; - EA055C4A97D3DEA1135CBD1F9A7B5181 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - EA08C6EAFD54216AE5387F523B3AD65B /* checked.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h"; sourceTree = ""; }; - EA0932A495FC26429BD74218CA2F93C0 /* boringssl_prefix_symbols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = boringssl_prefix_symbols.h; path = src/include/openssl/boringssl_prefix_symbols.h; sourceTree = ""; }; - EA0B9D2B13E412C8C21E8095C073F2E6 /* EncodedRolloutAssignment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncodedRolloutAssignment.swift; path = Crashlytics/Crashlytics/Rollouts/EncodedRolloutAssignment.swift; sourceTree = ""; }; - EA1225A84958BE55A9780FB29AC12B76 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; - EA1253F3C8808E22E519FDC053FA9464 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; - EA13DCD3D10252E935E9A0D322D57601 /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; - EA13F1E67FCAD03A86293A86E1622A9D /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - EA2A9439E140B4D24E6A13FBF8F61C1E /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; - EA2FDE08B9D84CBF648DFB63BB498ABC /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-gen/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - EA39B9B329BA65B9F9040478672FB0B3 /* json_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_reader.h; path = src/core/lib/json/json_reader.h; sourceTree = ""; }; - EA3FDE161CDD9729683985698882FF47 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - EA4419CE289B8734E02543556B9A0385 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h"; sourceTree = ""; }; - EA44687A4BD46AE4F4E4209102EEEE0F /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; - EA4C0708C24276B87CB9CA08ABDDC5AC /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; - EA4E5C01E9A6284F14B5B48F7C0A7BD8 /* GDTCORMetricsControllerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsControllerProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORMetricsControllerProtocol.h; sourceTree = ""; }; - EAA08ACE8BDAE2D86283E3A7C321262E /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; - EAA2CC3BB1D2FA9E93A62797D8730BB3 /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; - EAACCF7A3CED5055F79C16E65F68637E /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; - EABCBDE0C47112A312154FECCF86CC53 /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; - EAD27F2B17B387D9F13318A65F38B672 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/status.upb.h"; sourceTree = ""; }; - EAD818419F17BA1FC8C72E12D7EC868B /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - EAE7BDB67D5F4B0984AAD04B0396FC34 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; - EAEABB13C38B300869C257192B1C3872 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/client_channel/client_channel_channelz.h; sourceTree = ""; }; - EB148091F7419ADF44FC8C732666293B /* channel_stack_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_trace.h; path = src/core/lib/channel/channel_stack_trace.h; sourceTree = ""; }; - EB1EDCD53E124BF489D7C7628A806F45 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - EB488FB949E1CD3908A5CF784915F2AF /* DocumentReference+WriteEncodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DocumentReference+WriteEncodable.swift"; path = "Firestore/Swift/Source/Codable/DocumentReference+WriteEncodable.swift"; sourceTree = ""; }; - EB53127D8951AB1961F02035175F6BB1 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h"; sourceTree = ""; }; - EB539C8226F09333E0FE2AD080CF9E25 /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; - EB55448DD3B1EE0276A8EFF4C087DDBB /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; - EB589AA9B1991995ABA3A68720962721 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; - EB5C6AFEEF55C47DE5E84D7C6420B05B /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; - EB5CCA28FA8FC566AF7DB3DF49DFB8D7 /* orca_load_report.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb_minitable.h; path = "src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h"; sourceTree = ""; }; - EB65CE423B4F6ED903865D2544DEEE6D /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; - EB71F7060219044546B40B32873F9A5F /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - EB73F358A255FAF683B0AB3778C04A85 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; - EB7428C8B5CCC8922D0E59D2E9236825 /* create_channel_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_posix.h; path = include/grpcpp/create_channel_posix.h; sourceTree = ""; }; - EB77E8F0BDFEEC33E6698A8E4043FF6B /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - EB7F111EA56A29C4F4E778A217A5E149 /* compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_filter.h; path = src/core/ext/filters/http/message_compress/compression_filter.h; sourceTree = ""; }; - EB83F63C0E51F6B9C6965870CC0DB473 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; - EB94B717377CC1366DA46A6B02E66074 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; - EB96E55E21CF757A3A266919047B79ED /* cel.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h"; sourceTree = ""; }; - EB99F12636EC7644C58AB333C513B6FB /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; - EBA4ACEF55FA58BC2433B5E847E19A40 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; - EBA78E7BBA41FF14F1C283F81DDA89C9 /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; - EBAAE6F7E63570D6A6812FF538DF2688 /* dns_resolver_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dns_resolver_plugin.cc; path = src/core/resolver/dns/dns_resolver_plugin.cc; sourceTree = ""; }; - EBC7DD516C2D1301FD499D56E6140217 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - EBC92DB2407169DCB54842DD27E54FD1 /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; - EBD65106EEA4E3AB2396DDFB11519FD5 /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; - EBE8FA21C4E297C5153BCFE10BED9FF3 /* SessionsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsProvider.swift; path = FirebaseSessions/Sources/Public/SessionsProvider.swift; sourceTree = ""; }; - EBEB2A6C6861DA4852BF81EE011F1B15 /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; - EBF3377B3F9E9048F5510A58ED4E5B73 /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; - EBFDA5E489683EDAA72BE5A16AF92078 /* prefetch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefetch.h; path = absl/base/prefetch.h; sourceTree = ""; }; - EC0B5391006E40B9E10475C2B1B3EDC9 /* windows_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = windows_endpoint.cc; path = src/core/lib/event_engine/windows/windows_endpoint.cc; sourceTree = ""; }; - EC0BFD697A6B8287146EB166339357E0 /* static_stride_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = static_stride_scheduler.h; path = src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h; sourceTree = ""; }; - EC2235779BC4E636A469F05F4B67571A /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - EC29E264879920FAA94BB9927664FDDE /* listeners.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h"; sourceTree = ""; }; - EC3290C1CE41F22A04734E0A14DC5321 /* slice_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_type.h; path = include/grpc/impl/slice_type.h; sourceTree = ""; }; - EC33F6C69806CDC2D06AFCCB46E1302C /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - EC484B0535EDB787C5039B111EDEAB25 /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; - EC6360712D92D1C09822D85D47E7C764 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/client_channel/retry_service_config.h; sourceTree = ""; }; - EC66EB135376BE3ED5188301BB7C7F7A /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - EC6AB930FCC836F884773D9B18110803 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; - EC6C9C4033DF7CA9272E8E1E8A9144EC /* FIRTOTPSecret+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPSecret+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret+Internal.h"; sourceTree = ""; }; - EC6CD0A782621C63B39E27EFFD3F7ED1 /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; - EC6EEE58D8BF297DA9F08E57CBFEAD9F /* rsa_crypt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rsa_crypt.c; path = src/crypto/rsa_extra/rsa_crypt.c; sourceTree = ""; }; - EC7954EBDC0B400A492C5C533FFF7A18 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_des.c; path = src/crypto/cipher_extra/e_des.c; sourceTree = ""; }; - EC802BD5D00C13B5296591AD0D825B38 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; - EC806D78A55218165977E673D2892644 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; - EC866B1FE4AC7A2D4D5E98C14D6D5BF4 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; - EC97D5AC6F63F3E9327E8739AAB8D1BC /* pick_first.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.h; path = src/core/load_balancing/pick_first/pick_first.h; sourceTree = ""; }; - EC9F7042F90A1388F20930AACE85C7DF /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; - ECA2159DB1E67F1D99A25A3851E37D2B /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; - ECA9A081CF9A097273D03822BB820BBE /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; + E9870A3ED4F09056DA3390765240BE04 /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; + E992BC1FC321D325DCF8A7D8C98F0541 /* FBSDKGateKeeperManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGateKeeperManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKGateKeeperManager.h; sourceTree = ""; }; + E99A11D4E4E5C1A0C05F0EC60DD6BCFF /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; + E9A14C4C77828C8AFC0DF86CA0284830 /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; + E9A3E8311337F80C84BCDCCB7B0CCDE9 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+TZImagePicker.h"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.h"; sourceTree = ""; }; + E9AA62743BA47553810B76E992C3D9FB /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; + E9AB9F4541AF1020DCED98DF0F29A525 /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; + E9C258496BF8C1604C7111A7E75BEF30 /* Permission.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Permission.swift; path = Sources/Core/Permission.swift; sourceTree = ""; }; + E9C872351956896144B8026A89DFC964 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; + E9E002F22C2C16CF42F8E6EEEBCB2759 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; + E9E061C6ADC1483877883F62563C7B24 /* FBSDKCrashShield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrashShield.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Instrument/CrashReport/FBSDKCrashShield.h; sourceTree = ""; }; + E9E2484C23801ACB40F88A301BB86FCB /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/gprpp/load_file.h; sourceTree = ""; }; + E9E3FC92B222962C36616A791CD67D38 /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c"; sourceTree = ""; }; + E9EFED7E2812BC6B899260FEDE3252F7 /* FacebookCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FacebookCore-prefix.pch"; sourceTree = ""; }; + E9F8EFA882D5F0497AB70F9976F12C9A /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; + EA03E39CB8D9928CD09944DE529197E3 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + EA0945AF7182FB4C75CE7D3EF072067E /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; + EA154D4311B37BBC298E6EAA5B3AEA28 /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/load_balancing/lb_policy_registry.h; sourceTree = ""; }; + EA27EB84C33AAAEF2E84D2DAE1CD6D7D /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + EA2BFE6B25DA6D9FBEDCC5CEA5291E94 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/reflection/def.hpp; sourceTree = ""; }; + EA2C0DEC57DF05B3BC63FE3BE6C3CFA9 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; + EA301560FFBD8D0806484BC60AD3E370 /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; + EA4716C9A5F11FC4A91FB695A4AADD0C /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; + EA48BC4900BCB773877405A99AF1FB04 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; + EA502974A37E87CC0C6EA336583143FF /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; + EA587C38056FDA275BB0CD1315759069 /* FIRTOTPMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion.m; sourceTree = ""; }; + EA632926D895DDA10E1544F0848BBFB6 /* SessionsSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionsSettings.swift; path = FirebaseSessions/Sources/Settings/SessionsSettings.swift; sourceTree = ""; }; + EA6E852105B8DCC0A16FDA1BEB594176 /* FirebaseFirestoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestoreInternal-dummy.m"; sourceTree = ""; }; + EA767A5B019EE5DCEC3C92B68FAECC66 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; + EA9F21C6268F4D663417020AD861CDDE /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/resolver/server_address.h; sourceTree = ""; }; + EAB955E731405EA1702336FB224DCBF1 /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; + EAE08AC4C65240597CB47221E81A069B /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; + EAE39C0068B47C9E17C04E79539F5EE4 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; + EAF17C3458788C05AFDB89EA3973139F /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + EAFF954A9F26F8CB957AF832223F59B9 /* map_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_entry.h; path = third_party/upb/upb/message/internal/map_entry.h; sourceTree = ""; }; + EB034D6FF2AEBE7B417288275A41EAEE /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; + EB07A5777126E2A5654DD1C184D22AE2 /* binder_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_server.h; path = src/core/ext/transport/binder/server/binder_server.h; sourceTree = ""; }; + EB2B1305F504279DDD1D310057C07AE5 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; + EB479C3C3A7E63E9DBE1A85272DC197E /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; + EB4CB7999B9508CC0FCC25E96CB6F1A7 /* vsock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsock.h; path = src/core/lib/iomgr/vsock.h; sourceTree = ""; }; + EB5141A5BA5B413AF3B81E063AAD4EA4 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + EB569F8E1AB27CB046823F8A6A5D2DDC /* csds.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h"; sourceTree = ""; }; + EB73EDD79502202483A7306EDB1977A0 /* max_concurrent_streams_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = max_concurrent_streams_policy.h; path = src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h; sourceTree = ""; }; + EB78786AD6637FC3096FFE00CD70C22D /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; + EB84B1FBD0E5A5BBD49EB470E22C11E5 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; + EB86DF5BB2C3B82A1FCE19DBA8D71E41 /* tls.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c"; sourceTree = ""; }; + EB9350734AD02439193098D577626F8B /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_wrapper_posix.cc; path = src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; + EB93AD6AB72E1523061AD04CE84674E0 /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; + EB94D7D589D2914918BA4D47D3BF3FAB /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + EB995BA9C117117E430AD2BD6470FF24 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + EB9D64EB9452EDD78FF5B5A57BD24496 /* call_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_factory.cc; path = src/core/lib/transport/call_factory.cc; sourceTree = ""; }; + EBAA1E325151A98824754E7AA3D1AE38 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; + EBB07A9355639E56C5283F2B1599F06E /* compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_filter.h; path = src/core/ext/filters/http/message_compress/compression_filter.h; sourceTree = ""; }; + EBB2EA5F6AEDBD8E64EB156B045D5356 /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; + EBB5C474EB03D710BC548E324C8E9421 /* ref_counted_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_string.h; path = src/core/lib/gprpp/ref_counted_string.h; sourceTree = ""; }; + EBBB53233C94915F4EF629D371F790C4 /* handshaker.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = handshaker.upb_minitable.c; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c"; sourceTree = ""; }; + EBBFBE030BB1A7A56F1958B853D498AB /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + EBC4E9C9B3FE6F894D6112C579230ABD /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; + EBCD7AD3FB337CAB57637052E84E93D1 /* Promise+All.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+All.swift"; path = "Sources/Promises/Promise+All.swift"; sourceTree = ""; }; + EBD072D85D62015AAB327D1123D5D767 /* FieldValue+Encodable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FieldValue+Encodable.swift"; path = "Firestore/Swift/Source/Codable/FieldValue+Encodable.swift"; sourceTree = ""; }; + EBDEB63B9532C8A56255CBFC5F2D59B7 /* skywalking.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = skywalking.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c"; sourceTree = ""; }; + EBDF577CAF9B7DCBD8C1A33ECC20207F /* LLSnakePageControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLSnakePageControl.swift; path = Lib/LLCycleScrollView/LLSnakePageControl.swift; sourceTree = ""; }; + EBEDA4A1499E16A91EAB26F29CD43898 /* opencensus.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h"; sourceTree = ""; }; + EBFF46DACC9B0EF489FE9CF5D23D2A9F /* legacy_frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_frame.h; path = src/core/ext/transport/chttp2/transport/legacy_frame.h; sourceTree = ""; }; + EC1D7EC2838F8A8313816383577B6B47 /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; + EC1E8DB7444EA770E8BD585D227CD70A /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; + EC1F4A0C097003C9772A1E1FDD0CB256 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; + EC2F00712FC7EE1BC6A0F861FEDFCAB2 /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; + EC407F57B849D30D04B1C8FA46F6D06B /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; + EC5D3A10D4C075B5B265E81FC6EB95F8 /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; + EC6F1BF5232D291CC33DA43B066A511C /* FBSDKSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSwizzler.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSwizzler.m; sourceTree = ""; }; + EC73EC871826449FFD09E9ED4CC7A943 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; + EC7C0229301F79AED3A36199B04A58B7 /* tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials_options.h; path = include/grpcpp/security/tls_credentials_options.h; sourceTree = ""; }; + EC7F82F9065E1F398199DE5E6C0A3DC5 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; + EC839390EA479EB59EEB42FDA13FB2BB /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; + EC8501DF2EF809C6480B06918E372524 /* Promise+Then.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Then.swift"; path = "Sources/Promises/Promise+Then.swift"; sourceTree = ""; }; + EC8AAD06AC88778F39C3B3D45C71462C /* Promise+Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Do.swift"; path = "Sources/Promises/Promise+Do.swift"; sourceTree = ""; }; + EC8EFFB6CF341D91DC4C77CE8F899233 /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; + EC8F4D0BE3B0C192EBA4A93F8887D89F /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EC94E9DD52E46B5857BAF00438F47B8B /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; + EC9945A32AF477B4DC8664B24E11F5A0 /* thread_pool_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = thread_pool_factory.cc; path = src/core/lib/event_engine/thread_pool/thread_pool_factory.cc; sourceTree = ""; }; + ECA1EB7747C4A6A9565E59F2C72FFBC8 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; ECAC028550A03412C51913B85686D98B /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCoreExtension-FirebaseCoreExtension_Privacy"; path = FirebaseCoreExtension_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - ECB0F5D380FCE2654CB49D72D600AF7C /* ip.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ip.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h"; sourceTree = ""; }; - ECB34415817EE17001F0F1AAF7556FD1 /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = retry_service_config.cc; path = src/core/client_channel/retry_service_config.cc; sourceTree = ""; }; - ECB675CA57F41F80A88EF5B1B349F25B /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - ECBEC4775CCF9204F38641A35EDEE1F0 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; - ECC03D04C752055367014F5DFE5681C4 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - ECC8BFF10CE26C76B9D6D73028D7B5BB /* domain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h"; sourceTree = ""; }; - ECEA1AF4F57EB0FB4DB9F8F79B20F8DA /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; - ECFCEB35B634969A4C24BB05FE38D6E1 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; - ED0DCE95043CFC126F5AD157B759B385 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - ED0F54099911F26AEBC845C20481123E /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - ED1D39B666D42800F16C5FB5C6A283CA /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; - ED26C4B74FA62280829BFE8D365D3F8C /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; - ED2E43968B1640944B2854F0255FD247 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - ED31387A76648EF24078ADE03325A530 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - ED3803D062079F64B1F1AD1F5B58AF2D /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - ED3AEC157989C69FBABD74A301A1086D /* dns_resolver_ares.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_ares.h; path = src/core/resolver/dns/c_ares/dns_resolver_ares.h; sourceTree = ""; }; - ED4D7D3A96469C21CA485F7807CB9560 /* LLCycleScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LLCycleScrollView.swift; path = Lib/LLCycleScrollView/LLCycleScrollView.swift; sourceTree = ""; }; - ED55DD9CD67FFCFD1945FEA7FF6383D0 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; - ED57507E96A306F291F12852ED022D14 /* FIRCLSExistingReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSExistingReportManager_Private.h; sourceTree = ""; }; - ED5F8FB2D3AA39E3EDA4050774D3B5EE /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; - ED61AD3E23AB984AA5FB450BDCA0E6AA /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; - ED6CC26D27767CBBB3DC207121DE413F /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; - ED84AA4AAEEC791C0F797EBA62EC3BC8 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - ED860CC39E840C4FDCAC774BB528129B /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; - ED890475516CEFE264885724279DF5AE /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; - ED8B5BEC2B605A4D6DFE286FD4CD62B3 /* accessors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accessors.h; path = third_party/upb/upb/message/internal/accessors.h; sourceTree = ""; }; - ED8EAC0344E6545E4A41C6E2052250DB /* cookie.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h"; sourceTree = ""; }; - EDAF5FA720321D107F9AD4C5B6A868DE /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; - EDB6A3066D8973D7862E37CA939C8EDE /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - EDBB8E3F841C0773C0880FAB4D36E21E /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; - EDD2150ADA698D47F0973F06959EBA98 /* FIRTOTPMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion.m; sourceTree = ""; }; - EDDB53D53472AB106C5EE2542444B904 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - EDE4B98853AB6EF93B06D43C3199354A /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/support/callback_common.h; sourceTree = ""; }; - EDE8162A111C062222283E0F81C147B9 /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; - EE27965D7FCC1A18A7E04BFD13C46706 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - EE5E9127F8583D9C86580AE986E2BCB4 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - EE66DA9F0987F41B7B55AA687B6EF714 /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; - EE83EFAE45C51FE6D74CFE526F0A401C /* backend_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_recorder.h; path = src/cpp/server/backend_metric_recorder.h; sourceTree = ""; }; - EE9648F8D323227996A12459D40FD398 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; - EE9A4A0E96E61F5C61055EB6CFE63385 /* marshalling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = marshalling.h; path = absl/flags/marshalling.h; sourceTree = ""; }; - EEBA8CD3A7488734ACD7D5CAAF109496 /* raw_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_set.h; path = absl/container/internal/raw_hash_set.h; sourceTree = ""; }; - EEBB5E7F110964667A2BC5EFA32580AB /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; - EECD48FCFC73BD053B0867244E74D12A /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h"; sourceTree = ""; }; - EED2036FCA5C5947D4891C7B8DAF233D /* FirebaseSessions-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseSessions-Info.plist"; sourceTree = ""; }; - EEEABAAD9E73FD2740E879EF4CE368D7 /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; - EF12AE4B79F5F4CC33DBF2454948D424 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - EF165546C5B78686C8DD7FE46A0AC3CB /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/client_channel/config_selector.h; sourceTree = ""; }; - EF22FD566AA712840C3FD315DA2CCE4E /* tcp_socket_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_socket_utils.cc; path = src/core/lib/event_engine/tcp_socket_utils.cc; sourceTree = ""; }; - EF310751FCB3F73A4A3AD17AD78A8DBA /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; - EF4AFDCEBA0F18491C1CF0338549B105 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - EF549E857D33F1BC3659E1353006A6E9 /* address.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h"; sourceTree = ""; }; - EF54BD9CCF2460EC04DCEFFCE03B1754 /* grpc_method_list.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h"; sourceTree = ""; }; - EF66E8645283D4AAEF2B795713E49334 /* string.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = string.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c"; sourceTree = ""; }; - EF6A57876AB7AD2D5B090FA5E637114F /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; - EF73DB7312DBCFB64C49A10B7AE96C41 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - EF8AA48265ED8CA1F49C4CBEE9116372 /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; - EF8EFC801728FD4406D9A902A51367E3 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; - EF8F226D5868966212C8495444C09AFB /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - EF90AB5C58010099CB6352B80DCFD2A8 /* TZAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAssetCell.m; path = TZImagePickerController/TZImagePickerController/TZAssetCell.m; sourceTree = ""; }; - EFAEE4536374180ED87E264526BC42C4 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - EFCD326E9E72F726E8EE9EC7E20CCF28 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/event_engine/posix_engine/lockfree_event.h; sourceTree = ""; }; - EFD0E53D784052051AF2BE53FAF1AB44 /* custom_tag.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h"; sourceTree = ""; }; - EFD133054A08C540848EEBAC62B6C8F7 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; - EFD72C40E9CD9C4693CF07898A33B59F /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; - EFF1AF364678F20E3BF2C605381F13F3 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; - EFF9BCC559813987D6FFC288FBFE6918 /* filter_state.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_state.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h"; sourceTree = ""; }; - F004BDBC0ABE682B3238E8E94E0C888B /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - F00638BC181AABAFDCC38EEEA7F1A0CF /* pick_first.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pick_first.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h"; sourceTree = ""; }; - F01505A5CFF6B8D0E57A60209DCA8082 /* cord_analysis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_analysis.h; path = absl/strings/cord_analysis.h; sourceTree = ""; }; - F015C18F0712354900C78AF54F7162E1 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; - F01E86156871E486A11E72F6AF85F970 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; - F028BC348BA97366FB18506E220B390A /* testing_hooks.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = testing_hooks.cc; path = Firestore/core/src/util/testing_hooks.cc; sourceTree = ""; }; - F02E23E7F5D906D64F2220161F561F00 /* FIRTOTPMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorInfo.h; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.h; sourceTree = ""; }; - F0449EAF14CCE3ACBD2242EF2D1FD913 /* pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pipe.h; path = src/core/lib/promise/pipe.h; sourceTree = ""; }; - F0456A529BCDE9BC38DECC656B2AF0D0 /* context_list_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list_entry.h; path = src/core/ext/transport/chttp2/transport/context_list_entry.h; sourceTree = ""; }; - F049AF46D7E1FFB877D74FCE27E801A5 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; - F049D4FF25AA095F535A2F99F7AB2072 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - F051D43D8EA6240FAF7F020EB3F3ABFF /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; - F059703F5F150AC2D23B9BABF8582DBF /* outlier_detection.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = outlier_detection.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c"; sourceTree = ""; }; - F05A8343FA2C2F660BC6EA02580BAE44 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - F05C57E6AC920C5A807A70F3338BA71E /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; - F074BD62076EF7EC5C0F454BC691EC8B /* thash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thash.h; path = src/crypto/spx/thash.h; sourceTree = ""; }; - F0789593703FE8FA228D7B42CF50C482 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; - F07A1DB426F661400B76D1A257C925C2 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - F07B34CB9208E2B74C307877AB3434AD /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/load_balancing/grpclb/load_balancer_api.h; sourceTree = ""; }; - F07FBC258AC7598B114B459F96EA7E33 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - F0A2ED66F0E55D419D97B12892BAF2E9 /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; - F0C3904D38290EB7759C8BFBFC0A66B5 /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; - F0D38774D8A3C67B277D173F84A00A00 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; - F0D439E14E76F41FACB3B0E8B5962178 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; - F0E4E5BD77D03325E5A8483B615EEA8C /* cordz_update_scope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_scope.h; path = absl/strings/internal/cordz_update_scope.h; sourceTree = ""; }; - F0F8FCCDB8B21DF87268D52B6616B364 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - F12F4F732B1049BCC0761E0DFB93D97E /* http_proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy_mapper.h; path = src/core/client_channel/http_proxy_mapper.h; sourceTree = ""; }; - F13CE9E16166CB49E327400D2D07725F /* metrics_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics_service.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c"; sourceTree = ""; }; - F14520324794E4C2C7B4F6180D311EB1 /* field.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = field.h; path = third_party/upb/upb/mini_table/internal/field.h; sourceTree = ""; }; - F149AAE9679BC1FFF4DC5E34333791CB /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upbdefs.c; path = "src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c"; sourceTree = ""; }; - F1523A4C920EAF44535D2CBBBE35BDFD /* map_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_entry.h; path = third_party/upb/upb/message/internal/map_entry.h; sourceTree = ""; }; - F1528A6DE6D9BA9D6B0D60361F6FB498 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; - F1646B82A6B890614F9861D5502A3479 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; - F1780FD900DA96158B3B017A4BDB0D5E /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; - F178DCFC0057BDCA337351C2DCC0BA22 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - F189553CFEB5E36F46945F034DF86191 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - F189C1DB1B380A2723FE8DA48A5220AF /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-gen/validate/validate.upb.h"; sourceTree = ""; }; - F191D18D05A427DCEE90E47D72173077 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; - F1A1CE2B12E88D83CE209416CE7519AE /* enum_reserved_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_reserved_range.h; path = third_party/upb/upb/reflection/enum_reserved_range.h; sourceTree = ""; }; - F1A292B6B78088048C2B613331CD3505 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; - F1A882F0FC2E21023889FA8150771596 /* FirebaseRemoteConfigInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseRemoteConfigInterop.modulemap; sourceTree = ""; }; - F1BE8EA1E4BE29E4AE8BB7F10E99813E /* if_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if_list.h; path = src/core/lib/gprpp/if_list.h; sourceTree = ""; }; - F1C571B3AD28C265AD405D5988EA7D64 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; - F1D37B924EE99416F9872D7628505B2C /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; - F1DF06477CCE388E456BF05C201F4E8F /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - F1F2A0723D119B8BC097A9DE729F606C /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; - F1F53F350549D32CAECBC975343828B4 /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; - F1F5C05DCECB4881578EFDA93DB96734 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; - F2307C782C5BC0B08248689EDD7B45EB /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; - F2345E06F2F9C17733772735F3D7D440 /* histogram_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = histogram_view.cc; path = src/core/lib/debug/histogram_view.cc; sourceTree = ""; }; - F24CF537AFA5231136115B0CACEFEE06 /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; - F25580AFE97D709780A7B2A021292734 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - F273C6BF8E39A0DD763D3930D94D127A /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - F27CE6B17789B9906604A2313469DB46 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - F28326479C2A67563E5108B8EBFFF629 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/reflection/def.hpp; sourceTree = ""; }; - F28EAA9862F626FF694B8A33F35774A1 /* connection_id_generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connection_id_generator.h; path = src/core/ext/transport/binder/client/connection_id_generator.h; sourceTree = ""; }; - F29CE3A89222D7B7BF6CBBD6736DFB57 /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; - F2A4AF31BB7B419D585BF10753280A37 /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; - F2A8DC87B8A157E41C83F18FB230E728 /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; - F2B52E4E042C7AC9667E6EAA5638E3CB /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; - F2BEF1216214FADE8CC634BE998EFB49 /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; - F2C17695F6FAB97FE5C172FDEE69D847 /* FIRRevokeTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.h; sourceTree = ""; }; - F2C652F30BC541C5FF4A2E380EC1BE7D /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - F2C94873E30E4A22DBBC43856ACEC977 /* TZAuthLimitedFooterTipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZAuthLimitedFooterTipView.m; path = TZImagePickerController/TZImagePickerController/TZAuthLimitedFooterTipView.m; sourceTree = ""; }; - F2D0FCDD46A69F23644603D55B2D7545 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = third_party/upb/upb/mem/alloc.h; sourceTree = ""; }; - F2D1CE98B19ADB85E3AEBA96857ACFE2 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - F2D41C24C06D1A11B72E1E0821C2FD48 /* ping_abuse_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_abuse_policy.cc; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc; sourceTree = ""; }; - F2E016B11F0B041E81596B7AFACF5402 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - F2E219CCF3C3C2C97A2B74C598B5D036 /* FIRCLSOnDemandModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnDemandModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSOnDemandModel.h; sourceTree = ""; }; - F2E303DE36FDBC0C3CAE89284531C70A /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - F30192EB6DC6CD49A26525752083D5A6 /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; - F3033D4C7D8BADCB91EBFABAAC1A1B6C /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; - F31DAACA30C2A66CC1EDE7E6712214ED /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; - F31E82509A3F2DF86E33D4A1CAA929FC /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - F32BD03B96F34A0BD8C469F77B89B871 /* thread_local.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_local.h; path = src/core/lib/event_engine/thread_local.h; sourceTree = ""; }; - F3514F18616F1F286E6FDA1EA810BAF1 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - F352E68ABEA37482D8839ACC09115A35 /* atoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atoi.h; path = third_party/upb/upb/lex/atoi.h; sourceTree = ""; }; - F371E301E46A3B0AE1778D00BE3F8F59 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; - F377A36E9149B2231A872D3D14BD3E6F /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; sourceTree = ""; }; - F37EDFAB4D2E0B90CD0F66B38AA19891 /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - F38393761DD601B4F321E85D4950815C /* path_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_util.h; path = absl/flags/internal/path_util.h; sourceTree = ""; }; - F395321142D6CDA9A611386F56D4A221 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; - F397CD3633B2D9B807022D040FE6CED6 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; - F3991EC455A1E6DF6F8026CC7389E88F /* seq_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq_state.h; path = src/core/lib/promise/detail/seq_state.h; sourceTree = ""; }; - F3A32C20DE10EEA48881C3FF3BE0904F /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; - F3A6B3000342D453398E0AA93E4D6AC2 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; - F3AEED232055B677FEB9E77B53E62E7D /* GDTCORLogSourceMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLogSourceMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORLogSourceMetrics.h; sourceTree = ""; }; - F3B2F53CA631FBD7E2F052B6A9A67607 /* BoringSSL-GRPC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-umbrella.h"; sourceTree = ""; }; - F3B5A63C20828DF622C6BE49EF85716F /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; - F3BB762B958A8D439F252FD2AC8EDA7B /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; - F3C8509D067FC2B7A776F7F926F73068 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - F3CCD933B85AE540284E84AC83B2F04C /* stateful_session.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h"; sourceTree = ""; }; - F3CCE5C1B0AB6197E1FAB3B3F71EA009 /* batch_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = batch_builder.h; path = src/core/lib/transport/batch_builder.h; sourceTree = ""; }; - F3CDAAD1C983B858DEEE9510207E2A89 /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb.h"; sourceTree = ""; }; - F3CE9412F2A90EAEBF84CBC0CE8F2821 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; - F3DE65898387C162E69024ECA5DC79FF /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; - F3FE100D39B8E2A9688CD3F41B5B751F /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - F41697C1435528F925010EC47DDBD28A /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; - F41B63D8617D03EA68F2F22FF7759A2B /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; - F41F630C70B123193810314FF01A5BA9 /* Promise+Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Timeout.swift"; path = "Sources/Promises/Promise+Timeout.swift"; sourceTree = ""; }; - F42102CACF269840F5A449BC646433B4 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/client_channel/retry_throttle.h; sourceTree = ""; }; - F42319F1107A7B2295B20F7E7A3FA7E8 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-gen/validate/validate.upbdefs.h"; sourceTree = ""; }; - F429A1A8B29C0AFB8DE198B3781CC3D1 /* value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.h; path = third_party/upb/upb/message/value.h; sourceTree = ""; }; - F430E1151B325AEECD7898201A1154DE /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; - F436472748538C37988B13E2E3FA4AA6 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; - F43D2749B7622C6553C76885581CBCF5 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; - F43FC1E43EAB8366660355326A0C762B /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; - F444FA937E9721642D30B302CDF1DFE6 /* clusters.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = clusters.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c"; sourceTree = ""; }; - F45E26C50A9FD4ACED815ADDADA73073 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; - F4673CC8D72E5FC265C1C03037AF4B70 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; - F472A181F3989A15823A7AC50F209647 /* extensible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extensible.h; path = include/grpc/event_engine/extensible.h; sourceTree = ""; }; - F484170A01C350DD0FF4C57CA8FD7A8B /* wakeup_fd_posix_default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix_default.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h; sourceTree = ""; }; - F4980AD37ABD0CA1787C9329EC2EF1E5 /* wots.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wots.c; path = src/crypto/spx/wots.c; sourceTree = ""; }; - F4A13DC8113CD0649CE777D83E912AD0 /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; - F4A34B8B9A73B886C1E350084A4A3FD0 /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; - F4A357A608295126724028D4CA431840 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - F4B76B6D91AC609D35C9043CFAC69164 /* FirebaseDataEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FirebaseDataEncoder.swift; path = FirebaseSharedSwift/Sources/third_party/FirebaseDataEncoder/FirebaseDataEncoder.swift; sourceTree = ""; }; - F4BF58BD3614CFC8B48BBCCFBBB05F53 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; - F4DB5BF382B579E5BD8B3FF1F5B3C26B /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; - F4E81B55416E18B6BAFA901708B3F6E1 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; - F4EB785BC82D7E8EE9FF3E09018A0EC6 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - F4ED2FA3A0B4580AC4D2261D66A7DB98 /* str_join_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join_internal.h; path = absl/strings/internal/str_join_internal.h; sourceTree = ""; }; - F4ED5198E755709BC4050ACB828A2349 /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; - F4F45FD108EEF88CB4A77BF84FFEF8CF /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; - F4F4A0B3946208326C941D1DDC10AA0B /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - F4FD2D93FDBBA2DBC02B44B78D76C6FE /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; - F4FD7E7455DECFDE822918742C132956 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb.h"; sourceTree = ""; }; - F5027A68721D70B93A90574340115C6B /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; - F50E727CBEB856DBAD6639A8AA9D85CC /* regex.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = regex.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c"; sourceTree = ""; }; - F50FF556B755B7A4C72D38ED8314CB18 /* dynamic_ot.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h"; sourceTree = ""; }; - F514F275CA039658BDE097D5AD4FE884 /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; - F515BB520E143DBF4B9576C83D0EA911 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h"; sourceTree = ""; }; - F5376881BC616F39367790627D713123 /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; - F53DABA219B04C15BA666DC81704FC1E /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - F542D6071E44736DA1954BCFFA599565 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_genn.c; path = src/crypto/x509/v3_genn.c; sourceTree = ""; }; - F550FD3AD7B46A24694AC4C46D290CB0 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = table.cc; path = table/table.cc; sourceTree = ""; }; - F55617C3B7C11660885C7E345921FB64 /* http_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h"; sourceTree = ""; }; - F55C15A6733687E8B702B55D8F6DAE31 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; - F57CB85BAD1F84BE859E953CAD787D3A /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; - F5834A13D5431644AFE28BBCC337CE68 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_manager.cc; path = src/core/lib/event_engine/posix_engine/timer_manager.cc; sourceTree = ""; }; - F5965409D567BE1FC90914D31820D47B /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; - F5A54BEEF3EDDAD8F34FC0776A302407 /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; - F5A882A004C85A7BD2AD3BD083AA622B /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/support/atm_gcc_atomic.h; sourceTree = ""; }; - F5C36D43A500CB446DE719933532AF0E /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; - F5DA69FD707E0A6499D893FCF2851339 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - F5DC4323D32F39CC368DA50B2290CF23 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; - F5E0141B5338DA4E7E182FFCD1783F22 /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; - F5E42DAFBB2D82F8296E8C5BE55F6D38 /* stdout_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdout_logger.h; path = src/core/lib/security/authorization/stdout_logger.h; sourceTree = ""; }; - F6042CAE113C4981EB8B5004E0478A66 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - F615DD1A233FC66383596D6E73EEC6F8 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; - F6171660A7AC8983FE33488403CF3F6B /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - F617FD44E3AD467C65A0DDC903F207F5 /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; - F61F5D4A65DB866E080708B70F24552A /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - F62C282702792681B5F199D46DF2B022 /* struct.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = struct.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c"; sourceTree = ""; }; - F63E02E2C8B474F0A006917F93DC6EAA /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - F64526520B4D1F5C2061701A97D545AA /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - F645F622D81A7CC0F583B3802BEE617E /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - F6632B2EC77B3304F3F628BFD638BC3B /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; - F67866E508E6FC6F8FB15FAA2464A999 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; - F681F2978E644C27A87A24A4F0B5D0C4 /* duration.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb_minitable.h; path = "src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h"; sourceTree = ""; }; - F6864D29D015A79E4D22591907C54E93 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - F687683628A80CF299A714D165BE2D3F /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - F6A66B62EDEC582BA96C92935EC31806 /* GDTCORStorageMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorageMetadata.h; sourceTree = ""; }; - F6ABF86F65FD54C34BDF5CCC3B3FB6A3 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = ""; }; - F6BA093AE1072223EDF8CF10780596CF /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - F6D1B6D0C1E1A22D4FB5CF4A13493394 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; - F6D92F906E037E391DBD7DC8B9B88CA9 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; - F6E54E90BC36D7751E2B731CF0FAE359 /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - F6F94E380F0FB4FDC9C6131214BD7D57 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; - F6FC1106FB1337EC4ACA9437A1812F37 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h; sourceTree = ""; }; - F702ADC3300AB5BE2E82C1533D1B11DF /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; - F71D0F63AFB60BABE18B3A18391ACAAD /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; - F72135E5B06CBD9D0030F2369E3AB368 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; - F731401DB36F36070A68BD5042ACA304 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; - F733A4F23582D63CA92CE1B68C7DD2DF /* log_uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_uniform_int_distribution.h; path = absl/random/log_uniform_int_distribution.h; sourceTree = ""; }; + ECAE2ADA81A8D75426B9F66DBB83CD85 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; + ECB9B83FA710DA177B0AB6E66E58E030 /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; + ECBA82C9874542A400F7ECA31BEBF8E8 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; + ECBB7CCFD908A2B73ED1073B72493DD4 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; + ECC1320D6743CC5B8ECCA751D90D6E69 /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; + ECC212215CBD377EC1E33A0D2CFD04BA /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; + ECCC3FFDF2F272409A02D483A61BCA16 /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; + ECD4716CB01EDFB72751EE65E6FA6EC1 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; + ECD6A46506DBBBB7D4E96BF4C1906FF5 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; + ECD74B37B35DA29E3566EE1200BF4896 /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; + ECE688BC1AF39CACB0F3ED48D817EC72 /* opencensus.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h"; sourceTree = ""; }; + ECEB7AE786DD575BBB1F39828512CE86 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + ECFD3097CA6CFCA07921BE6F5AEEB485 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; + ECFD5E50527B395D33202A9D991AF841 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + ED117AE8411A37F2100D9EB34C0E4BD1 /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; + ED13D421B0CDE81E034F6FFDD1EDC276 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; + ED2171B062D5CC28173819C4F12D8F93 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; + ED2215B99B2E6E039AE270318E90F8F1 /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; + ED2FC6DB0308C47F5FC52D4CD5DB232A /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; + ED3037C6BFC7AC9A0D3F08EA8FE53CCC /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + ED324C77781894768E66229AB5653C1F /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/load_balancing/grpclb/grpclb.h; sourceTree = ""; }; + ED324ECD6E2B0DE01C9B4D09D90E5077 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; + ED32E5D307992A2F2BF46367DE8446B3 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; + ED33A13EF81AD523E5C62506EB51EEE9 /* stdout_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stdout_logger.h; path = src/core/lib/security/authorization/stdout_logger.h; sourceTree = ""; }; + ED51AE04EA16FF2DECD008DFDD3FEC61 /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; + ED563916417F6B8108AF8C920AEB6E61 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + ED56646BB59EE4A2EBF55FEAA83F1ECE /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; + ED61C3C0877A6744C9DC3D8360AC057E /* link.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = link.c; path = third_party/upb/upb/mini_descriptor/link.c; sourceTree = ""; }; + ED654A46285F2AA50F09FC1E3F227324 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; + ED6561745C35AF844EC71D3C9F3B1734 /* enum_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = enum_def.h; path = third_party/upb/upb/reflection/internal/enum_def.h; sourceTree = ""; }; + ED65CBF7C8B42276C95008855BBF0DDB /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; + ED66A807EC1BFB0C3870429D90499B02 /* CollectionReference+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CollectionReference+AsyncAwait.swift"; path = "Firestore/Swift/Source/AsyncAwait/CollectionReference+AsyncAwait.swift"; sourceTree = ""; }; + ED68D9B6A922879EB03E4EAC8DB31085 /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_akeya.c; path = src/crypto/x509/v3_akeya.c; sourceTree = ""; }; + ED6D06118B50B8018C529F234273B11A /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; + ED8FD864871E297F25D2D9DC83C90D57 /* versioning.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb_minitable.h; path = "src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h"; sourceTree = ""; }; + ED99ECA6552A3BE582ACB7FA5E18FAF3 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; + ED9AE210CDB58DF3B188D657E10BD461 /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; + EDBE162FD174E3E797DEC0AFF3D04230 /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; + EDC47BD7BEE5F76EB415ACB6DF0A888F /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; + EDC7B769ED1466A91B189239BB4BCF96 /* address.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = address.c; path = src/crypto/spx/address.c; sourceTree = ""; }; + EDE819E0819D35D37D03A7D0F82FCCA0 /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; + EDEBFF4EB4CD7E76F6A23B924B488306 /* RemoteSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemoteSettings.swift; path = FirebaseSessions/Sources/Settings/RemoteSettings.swift; sourceTree = ""; }; + EDF2BCEFAD0EFD06A3FC24B06A8AB1C5 /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; + EDFF18F88E3D1066F41640AE85B797A0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + EE067C452AFD8AF29794BBB5E46E466C /* RecaptchaInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.release.xcconfig; sourceTree = ""; }; + EE0C3436F1EF8FBABD28C3FE88433EDF /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; + EE0E8085CDBD98BCEE03236276A7B75B /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; + EE0EFD43E7CCA3ABB4C0C7330524DB8F /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/json/decode.h; sourceTree = ""; }; + EE29AFD1FE938C54AA1C3401D40C0F6B /* message.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = message.c; path = third_party/upb/upb/reflection/message.c; sourceTree = ""; }; + EE30AC83C2152FD05317EE87C33ED6EB /* FBSDKAppLinkUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkUtility.h; sourceTree = ""; }; + EE33EA484EA5D1FCCB7607A9789E69EE /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; + EE3E499D7DCDBC26180D2EDBA305E05A /* metadata_compression_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_compression_traits.h; path = src/core/lib/transport/metadata_compression_traits.h; sourceTree = ""; }; + EE420AA17E265CAAD868AD8349EDDCCB /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; + EE50117705ACA9EBE580D1ED171A91F9 /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; + EE51C065D713D109A054DBC33FC77291 /* FBSDKModelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKModelManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelManager.h; sourceTree = ""; }; + EE5B95DC0F0BD3161D25F1B238C821B9 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; + EE650DF3FC6FA05DE592693C14B88732 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; + EE65D35BE38936E3AE594C5FB94C9DB4 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; + EE6620EA87AF6F77D9D1DDEC63E6C5FB /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; + EE707B7EE321E5109F395633282CBD88 /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; + EE71CC4EEED3898286A3F0D91404F7C1 /* FIRCLSLaunchMarkerModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLaunchMarkerModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSLaunchMarkerModel.h; sourceTree = ""; }; + EE757EFDB552E4BC25DFAF061EB84070 /* FBSDKGraphRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequest.m; sourceTree = ""; }; + EE7BB77AA1883548ABD2A4EFB5A3D707 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; + EE7C9118CD4B37ED6702C4C8BD200B2E /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; + EE894A97632333E75720403EE81705A9 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; + EEB062ABE281A1E97FE70ACF5D4E9DC9 /* cord_data_edge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_data_edge.h; path = absl/strings/internal/cord_data_edge.h; sourceTree = ""; }; + EEB34D251FCC3F24B3CA4D358794CC2D /* server_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_metric_recorder.h; path = include/grpcpp/ext/server_metric_recorder.h; sourceTree = ""; }; + EEB8BB439810112811EA1C236A7FECDD /* status_code_input.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_input.upb.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h"; sourceTree = ""; }; + EEB9998EBC95031E4A952DC68F268355 /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; + EEB9E7D0A90AF6064F0B34E55F558D81 /* method_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_def.h; path = third_party/upb/upb/reflection/method_def.h; sourceTree = ""; }; + EEBC42FD007B030C9DE8B3C6AF8C6FB8 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; + EEC396DDEC11E6BCE6BA2274277BF668 /* path.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c"; sourceTree = ""; }; + EEE6ECE863DB1437BAC440A05A44A8E1 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; + EF035AD680FEBA5AA558BFC122C3C108 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; + EF0B27F55BB258640B04D83A3B2736FD /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; + EF0EF70CC0FE20365AA7FAFF0E1B8006 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; + EF2BFB844345F7E1E8654E74FD5F7649 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; + EF2D5E9089AA02EC35C14E3C6B6B1AD4 /* datadog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h"; sourceTree = ""; }; + EF30657E4BBFB3D9A1F2AA472F3271EC /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + EF39302FE4864D3C27FAD26E580475BA /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; + EF40251118BB1CE4A443CBB86FEA4615 /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; + EF501F521025BD468D999F54A34668C9 /* FBSDKModelRuntime.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = FBSDKModelRuntime.hpp; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKModelRuntime.hpp; sourceTree = ""; }; + EF55F0F8C923247204BC486A7FC61F29 /* common.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = common.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c"; sourceTree = ""; }; + EF5D62F26CE970151951078473E47AB5 /* FBSDKGraphErrorRecoveryProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphErrorRecoveryProcessor.h; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphErrorRecoveryProcessor.h; sourceTree = ""; }; + EF9397AFB5B339F38E878E6171A4C330 /* try_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_join.h; path = src/core/lib/promise/try_join.h; sourceTree = ""; }; + EF9980B419CD8521F0B657D7B4199D51 /* legacy_channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_channel_idle_filter.h; path = src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h; sourceTree = ""; }; + EF9ADD73079F1E466144FB622AC618A9 /* message_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_def.h; path = third_party/upb/upb/reflection/internal/message_def.h; sourceTree = ""; }; + EF9AF91742D7D3BBBF1C0574CE906D82 /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; + EFA3A2E2708D59389925C37F2FEE35FC /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; + EFA703DDC9B1F364070A57A05B903E21 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; + EFA94A3D413ABE74E1248B4FA8F6B306 /* tcp_socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_socket_utils.h; path = src/core/lib/event_engine/posix_engine/tcp_socket_utils.h; sourceTree = ""; }; + EFBF97B82A5B02AF39843DCA31F76B3A /* FBSDKUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h; sourceTree = ""; }; + EFC1032E8D3941D5A403C315E9BCC7BB /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; + EFCA10A6F2C50752B8B493BD94F379A9 /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; + EFCBD1C034582B6FD69B8EE3ABD99CB6 /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; + EFD16BF22814106C3659B73FE770D9C3 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; + EFD32049A4431C7C0C960E55D7284C6F /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; + EFD9BE2CDC5030DDFE49F0EEDF70AB9C /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + EFDB666B07433487254E38AF539A7D33 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; + EFE26A46DD85DC5CD5312267CA853715 /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; + EFE941329DADD0B9C07AAA8924CFC90C /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; + EFF17B617061139BDB857410F8B78D01 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; + EFF7580EB6410FA6EF5D256B555B4461 /* TZVideoCropController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZVideoCropController.h; path = TZImagePickerController/TZImagePickerController/TZVideoCropController.h; sourceTree = ""; }; + EFF94587888DC67770113109A2C6F81B /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; + F000F04E87076A537AA13940FB435B54 /* stateful_session.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h"; sourceTree = ""; }; + F002FBE3E4EE73F7023F25BD03C3BDF1 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; + F0147FC6C6D1D435189006A306B052D1 /* histogram_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_view.h; path = src/core/lib/debug/histogram_view.h; sourceTree = ""; }; + F019BE0027333EBFE1C6AD830B77ED4F /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; + F01D9BCA2BA32FB5A96BFBE0DEB7E9B0 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; + F026ADEAF9B224DA3BF210226E67C80B /* desc_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = desc_state.h; path = third_party/upb/upb/reflection/internal/desc_state.h; sourceTree = ""; }; + F0287CE42A40893703EE25648E5D04C5 /* wakeup_fd_eventfd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_eventfd.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h; sourceTree = ""; }; + F0291437441D1C79D7841BF90A9524AD /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; + F029D770C33D6CB64459AEE869F8F7DF /* xds_override_host.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_override_host.cc; path = src/core/load_balancing/xds/xds_override_host.cc; sourceTree = ""; }; + F02DBC18AF9A74E333A2E67AAFBAD386 /* legacy_compression_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = legacy_compression_filter.h; path = src/core/ext/filters/http/message_compress/legacy_compression_filter.h; sourceTree = ""; }; + F0331BC77DD6E8AC4F9302A286251196 /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; + F0356E06005588FB01FF24669F107397 /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = third_party/upb/upb/mini_table/internal/extension.h; sourceTree = ""; }; + F03CDAED5D9FBF0328F025F69758548E /* path_transformation.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h"; sourceTree = ""; }; + F04B8C66635DB260615D643B6EB8EFD6 /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; + F0586B0AC9C30D426CD3C688C3FEA14F /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; + F05A9384C55956B000020425C8582748 /* regex.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h"; sourceTree = ""; }; + F06C10FFDD32BF8CF414EE12D7CA66A6 /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; + F07D30E0A40454CEFB2B45E0C9066998 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; + F0800EAD18B7FF9347681F4E25BD8B2E /* percent.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h"; sourceTree = ""; }; + F08318C4C73D6D5D0AFDD80198B1A3DF /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; + F0886C28466E0E8D71E2A71A91235170 /* channel_stack_builder_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_stack_builder_impl.cc; path = src/core/lib/channel/channel_stack_builder_impl.cc; sourceTree = ""; }; + F0899FDEC50690FA028C9D37A206B4EF /* TZImageCropManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TZImageCropManager.m; path = TZImagePickerController/TZImagePickerController/TZImageCropManager.m; sourceTree = ""; }; + F089F83C14CF8473FDFABAB4791149A8 /* service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c"; sourceTree = ""; }; + F08C9D8EFC3DDE79A79BBC31CA3A8C7A /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; + F0993CBC6939EDBA2C63600D6520FBD8 /* FBSDKProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfile.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h; sourceTree = ""; }; + F09B17F6502AAD87CA588DC5F5CB90F9 /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; + F09F50D86FF9D6CCB5370C71712E5039 /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; + F0C4F0002E1E603EF58DFC8A19CC9DEE /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c"; sourceTree = ""; }; + F0CA8B5874C61D83645725D5293B01F3 /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; + F0CBEC395D9BDBBEF4B2807E3CE5D021 /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; + F0EA2AB609574DB36A6E122F01F2A9DC /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; + F0F4F3668FFF4FCF5E0748F6B56E1643 /* FBSDKCrashHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrashHandler.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m; sourceTree = ""; }; + F100167E1BA7B5E787231793F97F2896 /* trees.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trees.h; path = third_party/zlib/trees.h; sourceTree = ""; }; + F1002A7416C1B3E04BC7D511D23113E6 /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; + F10B3F014BE8EF39DF40658006B6E772 /* trace_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace_config.upb_minitable.c; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c"; sourceTree = ""; }; + F10FDA58A5FE782385016070A2DE742D /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; + F110E94F0DC15996BBCF72F120CAA2A1 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h; sourceTree = ""; }; + F1129083D76882906087CE9241249D20 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/impl/codegen/security/auth_context.h; sourceTree = ""; }; + F1142C5C78C6E5FFBD84DA5AA3E26CFA /* FBSDKAppLinkTarget.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkTarget.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.h; sourceTree = ""; }; + F11C7179D4037D575398C58C7DFDE1AA /* Promise+Any.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Any.swift"; path = "Sources/Promises/Promise+Any.swift"; sourceTree = ""; }; + F126679635DBF136DA5098F1160AE14C /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; + F15089016FCA88A885EFB7C04CD2BF2A /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; + F1555A406D34680516E29B7AD94F2A81 /* FIRCLSExistingReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExistingReportManager_Private.h; path = Crashlytics/Crashlytics/Private/FIRCLSExistingReportManager_Private.h; sourceTree = ""; }; + F1568899C882C4568591F86CDBB1F8A1 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; + F1578646908CF8E016D713540F9ABC11 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; + F161778C54E0C81B2DB5559524295199 /* service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h"; sourceTree = ""; }; + F167F068B6DF85CF46C7C1377B902F23 /* memory.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h"; sourceTree = ""; }; + F16DFC15CC2A8CACE59771EFAB3C910D /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; + F16EC86F46C78461778912AA1C8DDA62 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; + F17619D6CE34726A8AA4116B6A99E5BF /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; + F17CD1C15753E35B64923D1D0D2764DA /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; + F17F7B5049ABB1E34EA9F558ADF427E8 /* rbac.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h"; sourceTree = ""; }; + F1973C8685CF61D20E6AC3A37FC14447 /* def_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def_type.h; path = third_party/upb/upb/reflection/def_type.h; sourceTree = ""; }; + F19D3FB9C0867E24D22CC3ABAB956314 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; + F19F771DA3CF7E0A9081F4EE5DF7970D /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; + F1C22B8F1A786D3ACC9A59B4FBCFB7C8 /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; + F1CAC756A33F60AED6CC39D61D425A04 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; + F1D5C23C437F0B762B3274C646C9B707 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; + F1D6A3733CE167D7FEC12B05752F98F9 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; + F1DB0A0DAFD6AD64E4820ACD528C9881 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + F1DE3FF01C1F211D497B327E74EBFBA1 /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; + F1EA1BCB650D91A73ECA20CEB9A4A4AF /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; + F1F16A5A805502A0733DDC416BF957F6 /* stdout_logger.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stdout_logger.cc; path = src/core/lib/security/authorization/stdout_logger.cc; sourceTree = ""; }; + F1F8FB44F285BBA702E664F8125BB170 /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; + F1FAFFE50E6359733C4F9640DA29D577 /* strdup2.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strdup2.c; path = third_party/upb/upb/reflection/internal/strdup2.c; sourceTree = ""; }; + F1FFAE872A54041BFA48AE10555CCB7A /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; + F2048302EE2EE6D41ED220082822AF8F /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; + F207AF8306F8813F4F465D06C879E7DB /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/impl/codegen/status_code_enum.h; sourceTree = ""; }; + F20DB90E1645750897BACD90BBA9BCD2 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; + F20E7F681BAF5F90A479F1DF62829321 /* fault.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fault.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c"; sourceTree = ""; }; + F21251B3B2BB0CDD851AEC879C820B27 /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; + F21677B25098699FB361BEFE59AA369B /* cel.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cel.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h"; sourceTree = ""; }; + F21BCDEBFE1D43702E790F02BEFDA009 /* migrate.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb_minitable.h; path = "src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h"; sourceTree = ""; }; + F21C27A15A012A90CED6A39854B3DF80 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; + F21FA830E37D6E4C12D34E98DB6731C0 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + F231E5C46CD3475CEEDC6C366BFE4BE4 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + F236DB5BFC9C240E86EBDDA1063EF77C /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; + F24EDC42583EAF1EDB5C15A67A6DA88A /* PromisesSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesSwift-Info.plist"; sourceTree = ""; }; + F2542F3AD60B8104473A82632AD49B09 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; + F25B44C03C54824C06C9A277208A2BE6 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c"; sourceTree = ""; }; + F267D1A15E49BCCF5BA3EA0DEC3A74F2 /* FirebaseSessions-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseSessions-Info.plist"; sourceTree = ""; }; + F2807656121FFB9EF4FEF4B3D6848AFF /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + F2837748FBB9653E1E6BAED27EBB21AD /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; + F2A01FBAB8673767DAB4D0879CBDFEBB /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; + F2AD33D65865709DB9E9F2B605132C95 /* transport_security_common.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h"; sourceTree = ""; }; + F2B19DEC830A2FDB116E84FB2B500EF3 /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; + F2BB0F5ED24363509F4BAA2F359DCA43 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; + F2C4FE4711705068B155DEDB6FF77C13 /* map_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map_entry.h; path = third_party/upb/upb/message/internal/map_entry.h; sourceTree = ""; }; + F2D0BB67726CD3F5E9F8F7CA95FDECC9 /* httpbody.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = httpbody.upb_minitable.c; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c"; sourceTree = ""; }; + F2D22DDB17591F86301562ED6A816A2E /* resolver.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = resolver.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c"; sourceTree = ""; }; + F2D83FF977A8FD6D4D7055169CEB2952 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; + F2E6B54C1DBF08A33C7FE4200184F56E /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; + F2F329A3EFCE095A4C1EECDA2DACB850 /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; + F2F6A21CE60C643FCD83A1EFF03F48A5 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; + F3091E2712308EB93EBED0E0D29DC895 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; + F3195573A457B63C8368D974772BC6DF /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/load_balancing/oob_backend_metric.h; sourceTree = ""; }; + F31E87C8FFD63C857049BAE97EFA6326 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; + F31F2A4CBD788D78CC3C07763F0D802A /* raw_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_set.h; path = absl/container/internal/raw_hash_set.h; sourceTree = ""; }; + F32CE6923BE66E09587A971E7CB5F468 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; + F32F3DBCBEEE2114BCD297E6CC538766 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = third_party/upb/upb/reflection/common.h; sourceTree = ""; }; + F335EB71DF5EE80375B9304FB75CDC01 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; + F33CB711856B63E4629A0C42C1164025 /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; + F384EE336F02F729D1F62CF993BDF991 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; + F38602E91BDEEFFFFDA156C244C0CF00 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; + F388EBE66D442CA345A28570094C8BA3 /* altscontext.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h"; sourceTree = ""; }; + F38C6862EA33B1BE6B4D2EE42FA2215C /* resource_name.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb_minitable.h; path = "src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h"; sourceTree = ""; }; + F399F919BA3557DAAC77227615B1A530 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; + F39B91D83D5FFE922432A7C93BCB3F43 /* struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h"; sourceTree = ""; }; + F39C010D1DA44DCB4C4BA27177722D8E /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; + F39CC8E6D73150B559B118ECF8169ECD /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; + F3AC40F49B6361CC2C00F5D6D7510B52 /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; + F3C6B0D05E80C781268899D76B42EBBD /* FBSDKTypeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTypeUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.m; sourceTree = ""; }; + F3CF4B567D567776B79CDD2B0A3E18AB /* channel_stack_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_trace.h; path = src/core/lib/channel/channel_stack_trace.h; sourceTree = ""; }; + F3D8BE91A336C4341E0BA634987877DD /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; + F3DB86F1C8A87A2078E5688E20CCF221 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = third_party/upb/upb/base/string_view.h; sourceTree = ""; }; + F3DC0634599FBCA7885AC86FF0AFCCAE /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; + F3DFC2095F229F3716675286A0B9E603 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; + F3E7EDB69DA328842E99A198C4D080F8 /* FBSDKAppLinkTarget.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkTarget.m; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKAppLinkTarget.m; sourceTree = ""; }; + F3F205005FC0F9B60D4AE963F7C78686 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + F3F2604761CBD21284B33A1C25941E42 /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; + F3F363F46E2E686DECB811B5873B4619 /* status.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = status.upb_minitable.c; path = "src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c"; sourceTree = ""; }; + F3F9A5DF3E10E226910426BAB4B4BE25 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; + F40666CCACDA0E36BB62018752C0B964 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; + F41AD489CB7FDBAA17CADF9F48084990 /* typed_struct.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h"; sourceTree = ""; }; + F41BCC593934B22A87A2066A81A77AF0 /* tcp_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_connect_handshaker.cc; path = src/core/lib/transport/tcp_connect_handshaker.cc; sourceTree = ""; }; + F433923B1F3490D6B5269F82EF3BEBEF /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; + F45971E679A9797C475FA1594E4251BF /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + F46316BDCF34B2CBAD26026FA6A9ADA0 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; + F475EDC8FB68E501C960DEA278244135 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-gen/google/protobuf/struct.upb.h"; sourceTree = ""; }; + F476E313CAD2B6C0E800EB66079CD7A1 /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; + F47F1D7D1BF1448F758579A00904ED78 /* grpc_polled_fd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_polled_fd_windows.cc; path = src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc; sourceTree = ""; }; + F48894DAA9E11CD996FD0F8EFA7631C1 /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; + F4983583D0DA2812B46EFE403AB15C76 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; + F4984AE83F324CA56C21F7CD98D5EBD2 /* FBSDKTypeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTypeUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Basics/Internal/FBSDKTypeUtility.h; sourceTree = ""; }; + F498A6D36A4F329C447A4849FDADB0AC /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; + F4B84CB652C7D36C4461E22D683DD42C /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; + F4BC159E4985A12F0A622CAEB4CC7A60 /* service_config_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_helper.h; path = src/core/resolver/dns/event_engine/service_config_helper.h; sourceTree = ""; }; + F4BE76D48BDB2E6A2D6F64E78C9BA2B5 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; + F4BEB117051A7657FE78FE17B91CFE2F /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; + F4C16D2AE9F346082B4309AB63381345 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; + F4CD0E913FD9139D73DD2389E8BA1942 /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; + F4CE2A41C775CA088B555DF37F91B1F6 /* httpbody.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h"; sourceTree = ""; }; + F4CF19EE67DBD6E1F5DB23C626D10270 /* FirebaseCrashlytics-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCrashlytics-Info.plist"; sourceTree = ""; }; + F4DA121338DD194441944C74D6366059 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; + F4DC09138A91E215F5328E439CFE03AF /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; + F4E396CCF9035EFABC98088357DA9B0F /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; + F4E6510E26F3D01B573896809E215D5F /* generated_code_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generated_code_support.h; path = third_party/upb/upb/generated_code_support.h; sourceTree = ""; }; + F4F2B27EC744F63AF966048841A3670C /* spx_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spx_util.h; path = src/crypto/spx/spx_util.h; sourceTree = ""; }; + F4F39EDAFAE8653C8D14E6ABC6262E88 /* FBSDKGraphRequestPiggybackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestPiggybackManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m; sourceTree = ""; }; + F508ACE661C0CA13C8218370DB51AF2B /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; + F540479D04DB0550BEBDE6CA957DCFDD /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; + F54AC6AF3E0B6B56F2ECDD6A23CC4666 /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; + F54ED98182C938EF40E6304B598A4C8D /* join_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = join_state.h; path = src/core/lib/promise/detail/join_state.h; sourceTree = ""; }; + F54F4D170FD00F5AB27554A4744FD675 /* udp_socket_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_socket_config.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c"; sourceTree = ""; }; + F5731FB83409C6F8146F82A95F0906C3 /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; + F57C5C83751AB9B74AF090B857BA9AEC /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; + F593C429B124FDBAEEE79DC22172117B /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; + F59A7EF8D27D44CD1BB60ACD72E421F5 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; + F5A7C3498C65D302F1A832DC4DD5BE62 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + F5AD5C746ED61C4B1F9D134B96F0AEB0 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; + F5B3F0EF0515D613E9B0AD86883AB245 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; + F5B5D47C884131E60B2DDB60FB0CCB23 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; + F5B7C62D1C00C5C28F0A64450FAE15F7 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; + F5CEE9E369CF1EA76B66C2F5BD7772C8 /* supports_fd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = supports_fd.h; path = src/core/lib/event_engine/extensions/supports_fd.h; sourceTree = ""; }; + F5CFB75384BB266D09F6C53992D841BC /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/text/encode.c; sourceTree = ""; }; + F5E61C8ECC259A78CFA19B7BD0574679 /* round_trip.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = round_trip.c; path = third_party/upb/upb/lex/round_trip.c; sourceTree = ""; }; + F60CBA726113848E9A5BDDDA39CCA92B /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; + F618CE25031B9698D866E5DFB06FDEC2 /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; + F61D0928ADC480E05115063FD02D07A8 /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; + F61E1B955A52636CC83A3F06CFBD3774 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; + F623D9DBFFA03EE85488B8598822B2AA /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; + F62CF030A6969BCAB4FEA174EBA63BD7 /* base.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h"; sourceTree = ""; }; + F62EBC1F92A85DE2237D5C96C5151684 /* call_spine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_spine.h; path = src/core/lib/transport/call_spine.h; sourceTree = ""; }; + F634FABDD0660A52AFA92BFD5C995A0C /* native_posix_dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = native_posix_dns_resolver.h; path = src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h; sourceTree = ""; }; + F64DD166550E26420C9C9E1B2C67CE3A /* FBSDKIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m; sourceTree = ""; }; + F65543549E0B682661B30D5BDA5B2575 /* event_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_log.h; path = src/core/lib/debug/event_log.h; sourceTree = ""; }; + F65D3D10816018E6F9F38925381A38C4 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; + F66336A1BC7C3479A0479FAAFF938B7D /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; + F6653EBAC45BB5F36EE1F6B7F344026A /* client_metrics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_metrics.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.h; sourceTree = ""; }; + F66598499130BC2E96CB4F67283AB59F /* TZAuthLimitedFooterTipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAuthLimitedFooterTipView.h; path = TZImagePickerController/TZImagePickerController/TZAuthLimitedFooterTipView.h; sourceTree = ""; }; + F666E93383D700B2D8D1709FCEFEF0EE /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; + F668FF19C626C6EEBAD846DFB42BFE3D /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_reader.cc; path = Firestore/core/src/util/json_reader.cc; sourceTree = ""; }; + F66A020ED391BF8432299958DF5C0FD9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/spx/internal.h; sourceTree = ""; }; + F66F54B85AAAA9910452001114B90885 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_des.c; path = src/crypto/cipher_extra/e_des.c; sourceTree = ""; }; + F69094A131B58FC883475257ED46370E /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; + F698F53692D051BB4C6D1BFE3D2A51C1 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + F6A4EBB1B3DF0A86FA6046CA760D7BA8 /* FBSDKGraphRequestConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestConnection.h; sourceTree = ""; }; + F6C536F84A687F12D25C7D33B148CCDB /* call_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_filters.cc; path = src/core/lib/transport/call_filters.cc; sourceTree = ""; }; + F6CA8FF62BFE3E664443ABD386726538 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; + F6D7D1304DFDF842007495662DBD4301 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/json/decode.c; sourceTree = ""; }; + F6E0B78645B8BCCC94B0206827F689CA /* FBSDKAppEventsUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsUtility.m; sourceTree = ""; }; + F6E3AC70A239021C9876973AEE6BA90E /* persistent_cache_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = persistent_cache_index_manager.cc; path = Firestore/core/src/api/persistent_cache_index_manager.cc; sourceTree = ""; }; + F6E8A037B2143EBAB9C58ACABA15253A /* p_hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_hkdf.c; path = src/crypto/evp/p_hkdf.c; sourceTree = ""; }; + F6F49928A0B606F2313276C6244B183E /* ratelimit_unit.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h"; sourceTree = ""; }; + F6FA8C3518DEEEBE28508BB3D189C493 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; + F700CA3C517A748B1BBE841BD522EC55 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint.cc; path = src/core/lib/iomgr/event_engine_shims/endpoint.cc; sourceTree = ""; }; + F70FE57E11800EF1CCB64314B729C00F /* FBSDKAudioResourceLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAudioResourceLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m; sourceTree = ""; }; + F719EAE92A66FD311360451B52B6AC6A /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; F73AA961F4AEFF2B46B00AE435DF6BE3 /* GoogleDataTransport-GoogleDataTransport_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleDataTransport-GoogleDataTransport_Privacy"; path = GoogleDataTransport_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F74BBFD56C6FEC8F84A7DED2686D0CCD /* wrr_locality.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wrr_locality.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c"; sourceTree = ""; }; - F74D29F19DA3AC281172E32A6A5B041B /* FIRCLSMetricKitManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMetricKitManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSMetricKitManager.h; sourceTree = ""; }; - F74E9C5BB1BD18EC70FB2E2EB26536B0 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - F7535B3E4A8F0B2DB8EA3B43BD3A63D2 /* extension_registry.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = extension_registry.c; path = third_party/upb/upb/mini_table/extension_registry.c; sourceTree = ""; }; - F754AFBD21E4F08B9F25BC49759B2D51 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; - F75A4EB47448A6042AD86D0270CD9507 /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_ares_ev_driver_windows.cc; path = src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; - F75EF6D3B654F578AADCFFCBEA8A0D5B /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; - F765C748DCCBF92F9EA0E510E5CD9135 /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; - F7718AAE05ADAC25526FBB92053F236A /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; - F7773899ACEB0B35425B803F29278E8A /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; - F7856C2B819A04DEE390E522D3CAA5C3 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; - F7888EE1B8584E4A407EB6C17BC82E5E /* rbac.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = rbac.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c"; sourceTree = ""; }; - F7935E212CFCAB7A2FC4C8E3AD32CAEB /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; - F79D4980958BC2012117386CD69A6889 /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; - F7A83329568B52232C0293114C57D873 /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; - F7BDD352DE193C875FF6FFB8F289944C /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - F7BFD805C03093816E4101E628B7FFFA /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/json/decode.h; sourceTree = ""; }; - F7EF82AA9C2FCD10E63D18D41BF884FE /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/base/status.h; sourceTree = ""; }; - F7F91BC09C76F83677064C3E28D24680 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; - F800EB3ED9BC3CCE6B95FFAAC90067ED /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; - F801C63750EED6B8A164B9502DD197E3 /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; - F842432E98B45B4E53E9CB5C1149C59F /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; - F846FDD9DCE5D0623A1289777AC1BB75 /* kernel_timeout.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = kernel_timeout.cc; path = absl/synchronization/internal/kernel_timeout.cc; sourceTree = ""; }; - F86596D72E1D41483FD703079552D969 /* jni_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jni_utils.h; path = src/core/ext/transport/binder/client/jni_utils.h; sourceTree = ""; }; - F86ABAD09A7E1926FDA9A202E09E62E9 /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; - F86B253B4523222CF9E4BB0AE46C40FB /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - F86F04B64CD41B22A97D7DDE672D4467 /* log2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log2.h; path = third_party/upb/upb/base/internal/log2.h; sourceTree = ""; }; - F86F37A39E17280830E90F93766D637D /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = string.cc; path = src/core/lib/gpr/posix/string.cc; sourceTree = ""; }; - F87206A074AB081D45C57FD9E9189D36 /* program_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = program_name.h; path = absl/flags/internal/program_name.h; sourceTree = ""; }; - F89A58CAC92FB2553634011F46A4C803 /* http_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_service.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h"; sourceTree = ""; }; - F89BE8687F0505920BC07232F4612DE8 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; - F89C51306B06A37DBCB30484ED4DB30B /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; - F8A3310C1A069784323A0FF13D26B74E /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; - F8A58956F244756D5C78E1575B741151 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/load_balancing/lb_policy_factory.h; sourceTree = ""; }; - F8B0EFF11EF5FDFAFCAA63B7271EA351 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - F8C4C82D9284A6CD4CB1E7049FC972E2 /* sockaddr_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_utils_posix.cc; path = src/core/lib/iomgr/sockaddr_utils_posix.cc; sourceTree = ""; }; - F8CF92AC56140F7C99E3B5E5D2421668 /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/load_balancing/health_check_client.h; sourceTree = ""; }; - F8DAADB5AF27620A23439A2B662E5CEB /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; - F8DB3A05AB997BEEFAE4E707FE0CB999 /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; - F8E6994AF94F5484A5221765F857F72E /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; - F8EF10C8F869DC0EB43E9384A3FFB56F /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - F9168929A943354AB0ED299ED75094C0 /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; - F91BD6E9A28F7FFFFDE86B52B6EEC232 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - F9213053A5A55C41D3A4F2F307D5797B /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; - F923A2E0F49C5C346BF2DA9B978FAE64 /* stateful_session.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h"; sourceTree = ""; }; - F925EB4F5D79409E721CFBA5ECE67F64 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; - F92B7B16A7412C8AFFC40D49CDB963EF /* cfstream_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_endpoint.cc; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc; sourceTree = ""; }; - F930669D70BF979E400AD02BD820E02D /* time_zone_libc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_libc.h; path = absl/time/internal/cctz/src/time_zone_libc.h; sourceTree = ""; }; - F955802C27ED91054B5B5FD92E6846C5 /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; - F9581832439F67F58CF3A34E91B9D05B /* atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic.h; path = third_party/upb/upb/port/atomic.h; sourceTree = ""; }; - F959E6F318B889AFE54CB76494B5AE42 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h; sourceTree = ""; }; - F96BA99EBC5996E8EB99DD599810887E /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; - F97BEBCEF041CDE29683E1D63BB1E217 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; - F983187B0FFA29B0AADDA13C4864C3CA /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = number.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; - F98FAA67801F406D6286443C1783B1B8 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; - F99F3A05E960789111192994D4ED27AB /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; - F9BC0B5731D5BF3351F857545FF96072 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - F9CACE432EB348B27424E3D2320A5338 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - F9F1CD8416469A153FD9BFA9C9A001F1 /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pick_first.cc; path = src/core/load_balancing/pick_first/pick_first.cc; sourceTree = ""; }; - FA1581533CE6CB292BEE4AEB51E7D84C /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; - FA17BD8954C193AA99B13D8907BA9BAD /* elf_mem_image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = elf_mem_image.h; path = absl/debugging/internal/elf_mem_image.h; sourceTree = ""; }; - FA2F98EBA8D61A7FFBABD405666046CA /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; - FA32CFE31BC70E8B98375CA207DC2C3A /* FIRAuthRecaptchaVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRecaptchaVerifier.m; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.m; sourceTree = ""; }; - FA4366AAF1EDC94CFE2D5CE158646A2F /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; - FA46FC026BBF69EFD084DB5938011F58 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - FA4AE4E4AEEE52C4F3ED3FEE4B5E807F /* trace_config.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = trace_config.upb_minitable.c; path = "src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c"; sourceTree = ""; }; - FA520F8F121C04BF4F0EE496D9D9AC15 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; - FA541608CBB1549A411B3E090854125D /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - FA55054C90A3DDEF6F8F6FA4E1711290 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - FA551A07C63520D0845AB2CA2EDEE7F8 /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; - FA65548EC8F192591889DD41A0B84D6F /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; - FA65AD83C63AC059C9053D36FDB24E5F /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; - FA6D240B644328F2FA6ECD290D874CD1 /* join_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = join_state.h; path = src/core/lib/promise/detail/join_state.h; sourceTree = ""; }; - FA6E7A7840ECD1F95DB967FDA070F228 /* accesslog.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = accesslog.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c"; sourceTree = ""; }; - FA7B8FF2095FBAB5EE5A3DC2EDDB966E /* xds_enabled_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_enabled_server.h; path = src/core/ext/xds/xds_enabled_server.h; sourceTree = ""; }; - FA8454185AABA824F7F99D112380AE56 /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; - FA8690D14027B29E173EE3FEE4DC2066 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - FA888D84D215A359138B2EC521561AEF /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - FA8EEA5B633F10D23BD02BE10E6D5560 /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; - FA99B600E8799E301FA4846C733738EB /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - FAA440226BAC7DD9C68DC9A8F4A827CA /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; - FAAB837A72F5FAA99CE0AF59681A429D /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; - FAB78A0CFCEEAE0700135A0BB3044A33 /* promise_based_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = promise_based_filter.cc; path = src/core/lib/channel/promise_based_filter.cc; sourceTree = ""; }; - FABB772091A94CC5532A064F8F11EC36 /* path.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = path.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c"; sourceTree = ""; }; - FACA119EFE61FB4F7A8AEB57E3937585 /* GDTCORMetricsMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsMetadata.m; sourceTree = ""; }; - FACC69F5E008BE484AE7F0E1CF3DBD53 /* call_size_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_size_estimator.h; path = src/core/lib/transport/call_size_estimator.h; sourceTree = ""; }; - FACCA73A21F698DDB49F22A7A7F9004D /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; - FAD4A92713F66DEB8509583890827916 /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; - FAD597624F322FA65AFC078BC876B924 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - FAEADCDEC1A285DF5CC68A1BB55B0F91 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - FAF0275F283793E8E447F42B0D56DB29 /* enum_reserved_range.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = enum_reserved_range.c; path = third_party/upb/upb/reflection/enum_reserved_range.c; sourceTree = ""; }; - FAF071F80E6E8FFA5999722823D24407 /* bootstrap.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = bootstrap.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c"; sourceTree = ""; }; - FAF5E8415FD99930D9875DBA24F5E944 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; - FAF64DDED404A8401C0E0E8E03A6F6FD /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c"; sourceTree = ""; }; - FAF773B18E6E487046FD872DC5044247 /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - FAF9E2120FBF75CAB514C886061CBBBB /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/load_balancing/grpclb/grpclb.h; sourceTree = ""; }; - FAFB357736092443CC8F7869843B4121 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; - FB1B50AA3FB00C3B83B25023223CB164 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - FB3735C6F76766779697371BAAB8B52A /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - FB3D21DB8AD6D820A102A796A86DA427 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; - FB4B3208A65F10B41E30B37B80DDA7F4 /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; + F7440D2D6DB003DC677BE569B7A9037F /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; + F7516034F08E36123C3BC50D7FB0DA86 /* oneof_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oneof_def.h; path = third_party/upb/upb/reflection/internal/oneof_def.h; sourceTree = ""; }; + F7518842727B095A985C527679BC8C01 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; + F75B12BDFF0A7F7970AA586EE92FFE42 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + F75BC40316297BBE577D05C77566AEB4 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; + F767A8DD54CDC6FF6B6E50760AAF34F3 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; + F76E0A8B2639A387B57E8F165D99D819 /* FBSDKDeviceButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDeviceButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKDeviceButton.m; sourceTree = ""; }; + F7718106458628E535BE14C8F5E93C78 /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; + F77BAD1E96623B113370BB5515C65984 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; + F7865B7B92E8FD24347F549A3CE665BE /* xds_bootstrap_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_bootstrap_grpc.cc; path = src/core/ext/xds/xds_bootstrap_grpc.cc; sourceTree = ""; }; + F7915C789964BF74D37E6557CBB880C6 /* FBSDKWebViewAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebViewAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKWebViewAppLinkResolver.h; sourceTree = ""; }; + F79249CB5E8A4D0AD7CD8BB5B20F2A7B /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; + F79B9DD255D7C81A67EA416054EE17F4 /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; + F7A97CD1C9C1D628070A47369CA46EE8 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; + F7B3DB8AA206ECD4AF33666BDA1A5857 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; + F7BA7E30FD0517DC7ECC3473CFD14AFD /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; + F7C0608D8396B4A147998B629C97B132 /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; + F7CEDD7815051F1EE7FE260D1D8817DD /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; + F7D55BA3C5D53A9EADABCA2704C8918D /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + F7DF9F3F2116C179428698543E66EBCE /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; + F7E03634FA7BC1085A08D4DC7500CD62 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/event_engine_shims/closure.h; sourceTree = ""; }; + F81AC8D1A039840A26132A716AA5038A /* clusters.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = clusters.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c"; sourceTree = ""; }; + F834BE96D99E048F8A2341C441D35967 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; + F8371E4C97FD1F6B63E552E8890ABB1F /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; + F83D3FFE61F96D22B7F60D01A8AA4711 /* xds_client_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_client_grpc.cc; path = src/core/ext/xds/xds_client_grpc.cc; sourceTree = ""; }; + F84ED7EDB9DF8129E6B25DEF716256A0 /* udp_listener_config.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h"; sourceTree = ""; }; + F863E3982F8537EE8F6A2269443CA054 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; + F8780E001C2EF5F42FDB51F37F71CAB7 /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; + F88007D9A28DAB4FE43B7967CAE08BE3 /* client_channel_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_service_config.cc; path = src/core/client_channel/client_channel_service_config.cc; sourceTree = ""; }; + F89C6664671D9F492BD9FE022A8A3CE4 /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; + F89E6BE6DF2A0C3D2CA0D8A886CBC815 /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backup_poller.cc; path = src/core/client_channel/backup_poller.cc; sourceTree = ""; }; + F8AE9B84550090208F9DBBA4D8552262 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; + F8BD5E8B0633EDBC5934DCB0106B7108 /* deprecation.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = deprecation.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c"; sourceTree = ""; }; + F8C367C08AC51CC9FFFE46A939B8C9E3 /* FBSDKStandaloneModel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = FBSDKStandaloneModel.hpp; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/ML/FBSDKStandaloneModel.hpp; sourceTree = ""; }; + F8D4A60F691F4FB4915EF4AB7A404AB8 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; + F900D9D1C7A5788F548A4BCF91448FB9 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/arena.h; sourceTree = ""; }; + F90BC57D1303EAD51A6A1241CBC96667 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; + F91D5FB72A245F8B45C1331120CF151C /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; + F9221C2A87359430A172BD4E52BC3DE9 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; + F939348F4BCD46418F7E593BE356CA56 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; + F93D23EB535382F83664CCD687403179 /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; + F94AC9A68B3D44B473759B2480EDA1E6 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; + F94B3D1B09863C0AA114DB7BBD44A161 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; + F9525707E11CE7B27B60FF2CCCFAB8A6 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; + F9531921A80E7EBD231EC2FCCA98B938 /* eps_copy_input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = eps_copy_input_stream.h; path = third_party/upb/upb/wire/eps_copy_input_stream.h; sourceTree = ""; }; + F9558E220DA0BCF65B48C3A33762CB1D /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/impl/codegen/async_generic_service.h; sourceTree = ""; }; + F97104ADA3A816E7DB13DE02A9E2D930 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; + F97A374DA166FF3040DA26119A3091C9 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; + F98290DF171E37B63936940D8AB5D911 /* stats.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = stats.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c"; sourceTree = ""; }; + F98F11CD6DA6F81B59DE28F68CC0C038 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; + F9A12931C3F3E4E466D3BB1D500DD6F9 /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; + F9AB696449B6ACC4B116CC4B252CD690 /* FIRTOTPMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorGenerator.h; sourceTree = ""; }; + F9B3A754294F0C0712D2FECF9E6C0748 /* Promise+Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Timeout.swift"; path = "Sources/Promises/Promise+Timeout.swift"; sourceTree = ""; }; + F9BF2A82BDC44E26CAF1FC379EE860F3 /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; + F9CEE9DA45EBCA53AA803E0D0F863BDF /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; + F9D70B74E2C58E39C132389C39ED0768 /* FIRSESNanoPBHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSESNanoPBHelpers.h; path = FirebaseSessions/SourcesObjC/NanoPB/FIRSESNanoPBHelpers.h; sourceTree = ""; }; + F9E04139AD67524C8F782FFD0E81C88F /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; + F9E4FB23F9ED638C4577C26488C28045 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; + F9EA4BD554F41CCAF6CF9158BEDFB344 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + F9F400970275AB4926E4D1FE9B45CED0 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; + F9F4F6D73B2B03B0A70402CA20064DAC /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; + F9F611FEEBB24244E57B16CE50E3F7DB /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; + F9FA49E358710D2C3D63950643210B97 /* FBSDKAppEventsState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsState.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKAppEventsState.h; sourceTree = ""; }; + FA07EB746D9159D0A87226BD322F90DA /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; + FA081C120DC794385358C0B53FE240CB /* FBSDKHybridAppEventsScriptMessageHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKHybridAppEventsScriptMessageHandler.m; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/FBSDKHybridAppEventsScriptMessageHandler.m; sourceTree = ""; }; + FA083ACC775CD661399C77F74588DCDC /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; + FA1A68F95B990D5B77062AF3DFCFCD7B /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/load_balancing/grpclb/grpclb_client_stats.h; sourceTree = ""; }; + FA1D165EAF8947FBA92A5C323FFB2D46 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; + FA2CED3DA8A1883FEDEBA1C245C7954D /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; + FA329BA80AA4B13BB5FFD5498B01AD90 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; + FA405E9557794C51F99420CA6C454441 /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; + FA4AB69EFCC57FAA398FC82FAFB40C8E /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; + FA869F11E65CF95C057BAB2F374ABCDA /* domain.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = domain.upb.h; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h"; sourceTree = ""; }; + FA927C16905B61252CAA06767A09E9D6 /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; + FA9489F06E802DD3973DEA7BD09AC8E1 /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; + FAA9D3CE111DFE78B4E36A5B5E37FA4C /* FBSDKGraphRequestDataAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestDataAttachment.m; path = FBSDKCoreKit/FBSDKCoreKit/GraphAPI/FBSDKGraphRequestDataAttachment.m; sourceTree = ""; }; + FAABAE4993ADF51C023CFC5AF0F92CB9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; + FAB85DCE8C9D458054B951376239527A /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; + FAB9B18FEBF2295FEB35E707B645AD28 /* TimestampEncodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TimestampEncodingStrategy.swift; path = Firestore/Swift/Source/Codable/TimestampEncodingStrategy.swift; sourceTree = ""; }; + FAB9BCA87BB35C21F254C341C9E9B59C /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + FAD647239CFCFA71DB0D248D785F2087 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; + FAEAC762CD8EF024FC9763A6195504DF /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; + FAEDC2E5B9DB9558A8E8EECC75C62F4F /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; + FAEE2B42629FAC247797E148433305F1 /* FBSDKImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKImageDownloader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.m; sourceTree = ""; }; + FAF8FED3CAC24AFFE4E0B8B5B287D885 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; + FAF905A962D4E3CE761C24B135F8F834 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; + FB05DA9C49C18DE3E8BAD930DFCF7174 /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; + FB08401D7390C5802CFC3A8B435455C7 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; + FB0AB0B4C1E518695A802B56D04FD4FE /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; + FB0AED2477BDFD9949AF27C85DA0B05A /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + FB127370ACD829913D8C1ED61733B82B /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; + FB13C91824795BE057F33662EDE8C56A /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; + FB1CF84F97E9ADBA641EB7ACEA5B1506 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; + FB2ACCEBEBB64B45B9BDC43DCD6B707C /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/intercepted_channel.h; sourceTree = ""; }; + FB2B35A874851C321EF329E989399184 /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; + FB301A3D77942E4405E7C6C934941C89 /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; + FB33917E300DE410AC67FCE517B4FDF7 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; + FB3C8DE92AF4317F95A706D381203911 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; + FB4488B72DDD5292EFC1889D62657C85 /* FBSDKDeviceUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDeviceUtilities.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceUtilities.m; sourceTree = ""; }; + FB49750C126A44CDBF1595A4033B3DD6 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpc/impl/call.h; sourceTree = ""; }; + FB529D1E20E93D887B0EDF9AC8AE24F9 /* grpc_service.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h"; sourceTree = ""; }; FB598E7BF85291771E9FE6BE6E860E65 /* Pods-SwiftProject-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftProject-Info.plist"; sourceTree = ""; }; - FB5CDA8F44599B1283B45828F31AE472 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - FB68221E8E4BAA917D1D052E90433310 /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; - FB6F6C615F9DDBC789DFFCF27A5A4D6D /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseFirestoreInternal/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; - FB7C5460F5AB31BA419C1E17E8FECD6A /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; - FB894B9601326269EA632F8E211BAC9D /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; - FB8F8191E1A36940BF4383AD856E9FB4 /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = ""; }; - FB9B19BF4DBACA5660EA7908840773B2 /* call_final_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = call_final_info.cc; path = src/core/lib/transport/call_final_info.cc; sourceTree = ""; }; - FBB08943C9EFCBB045A6D4221D4CA370 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; - FBC0AB4D0C3FCE524D2A0F4104395D5A /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - FBD2B6836CA113ED9A7041F95D64BBF9 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; - FBDD6C978F9416E0BC7FB8E91538CF9E /* write_size_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = write_size_policy.cc; path = src/core/ext/transport/chttp2/transport/write_size_policy.cc; sourceTree = ""; }; - FBDE8CE30E53AD21B34977EF71ED66C7 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; - FBE8ABC521C90C8363F57140BA9FAB54 /* service.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c"; sourceTree = ""; }; - FBEC17AAF6225FA0FB21AA05846083C5 /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; - FBF473848E4B0E39D09045F8B5FACA7B /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - FBFAA9D204D67FF799074455B5EE1780 /* xds_transport_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = xds_transport_grpc.cc; path = src/core/ext/xds/xds_transport_grpc.cc; sourceTree = ""; }; - FBFB034D942D6AFFA7007C1F74354E36 /* dns_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver.h; path = src/core/resolver/dns/native/dns_resolver.h; sourceTree = ""; }; - FC089BE5909835E906AE70D8930151B3 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - FC0B23BE18588AAF24DA5DAAB6025911 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; - FC1B12D5090D2E4C7503AE645758F7B3 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - FC1C010766A87AEEF3BAD8191296D589 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - FC281F5D14A3758FB257539BEC91983E /* accesslog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h"; sourceTree = ""; }; - FC2C28E8FAC22DE203D9843619402081 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - FC2F5002531A984C8B4B4421060F775B /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; - FC47EF2B11739FC6648D07B7ED74C03E /* mutex_stats.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h"; sourceTree = ""; }; - FC529BEECBF3B5304BBE89D6DBF52248 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; - FC6ECDCC70618803F59DE29DBE429032 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - FC71C7FA9338B0E9E41CC71F6216EDD5 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; - FC73E94DFFCB3C4C7BE6CCBE3DFBFD0A /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - FC813092B90CCDE3DC10D49F712B1A8F /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - FC9ECC67B3BBDC20D82F8B2378B99229 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; - FCB07890D9F10903856F7563BFFAA3E9 /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; - FCB1F0C58F51B70481B2251EBBB9B75E /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - FCC3C026E8B60D21212C2D9B2F07090C /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - FCC5C35602871EFD79A54111BB2C756E /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h"; sourceTree = ""; }; - FCD0A2F54C32A0D0E18D2F5368D95749 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - FCE264E6D1F44D1A75536B0C07E31931 /* log_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_internal.h; path = src/core/lib/gpr/log_internal.h; sourceTree = ""; }; - FCE381E3CE33802715B65A67B1572137 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/dh/internal.h; sourceTree = ""; }; - FCEFA58C1FF69B2FA4109449E2E8B590 /* grpc_polled_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_polled_fd_posix.h; path = src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h; sourceTree = ""; }; - FD1AB45712654DA0168ED93381A293F3 /* range.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb_minitable.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h"; sourceTree = ""; }; - FD1BBB6CBE34419218877A44D2668B36 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - FD24DF6EC143779410BE4E8448F1EF65 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; - FD2EE889B380D4CCD6EA0423DCF4F147 /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; - FD37254E09FA503C555EF338E3C3524D /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - FD5B91C5982995EB7FA409E9DCB15C97 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = encode.c; path = third_party/upb/upb/json/encode.c; sourceTree = ""; }; - FD5BB7191FCDFD3E12A4D764AC77D1CE /* config_vars.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_vars.h; path = src/core/lib/config/config_vars.h; sourceTree = ""; }; - FD62213CFF500C01FB415E9010C01755 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - FD6723992C14AECA3595F92398724150 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; - FD7744CA35FB672C45C0510E4C8C15D8 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - FD7A135F69389BA089892887FC2D8416 /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; - FD8037800081E70F14C42450159AB3F5 /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; - FD99E0603B1B6EC1453F32B9AC617705 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; - FD9DBD99BDFC777A3EF2FEC5A9ED8E74 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/resolver/resolver_registry.h; sourceTree = ""; }; - FDA34E8C8A8FD3645EE0875F4A265C4B /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - FDB39484F1ECBB02C8C2CADCDE13C1EA /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - FDCDFC719506E3830A9BD9B17A928AEA /* grpc_crl_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_crl_provider.h; path = include/grpc/grpc_crl_provider.h; sourceTree = ""; }; - FDD355072C3B1C2224059F92CA1CF100 /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; - FDD3E75867E77686D21FE85207AEE761 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; - FDDD746993DBFB96A3C5B9E951A0D448 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; - FDF2B3B35A94824E9EBD443566E0418A /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; - FE001871CD91F13C7992E5B80DE7B2C3 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - FE0070744901C1A1F58276448BDEDDBE /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; - FE23747AAF0C55DD4D4BFF3B512ED839 /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = trace.cc; path = src/core/lib/event_engine/trace.cc; sourceTree = ""; }; - FE320D732F15AA38D6B602360B8B336E /* metrics.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c"; sourceTree = ""; }; - FE3D2F0B3360383E298F452FF1F1600F /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; - FE44E1E32D1BAE72F8532575EDE31C5D /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; - FE5355726EBF4B762CBC4FE5A0CB8DE7 /* server_info.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h"; sourceTree = ""; }; - FE5CB6F82C84152291E3699DEAD83651 /* httpbody.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb_minitable.h; path = "src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h"; sourceTree = ""; }; - FE6C2040B420513CA7C9174EDEAA6472 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; - FE6CBEED5E2F5E8A73040DAE226FDE5C /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; - FE6F4F6357995F21DFDE05BE6780A1C9 /* bloom_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = bloom_filter.cc; path = Firestore/core/src/remote/bloom_filter.cc; sourceTree = ""; }; - FE6F8C90DC2A1875ED907B6A70BDC71F /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; - FE8239568EE35C9D18D07B0F16148096 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; - FE82DA880AEBE9AA8EBFFDB9AAB226A3 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; - FE84750E89CB9DCFC61A67D526AC697B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FirebaseAuth/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - FE852F12F14417453E98A6E5CD50BA83 /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; - FE985650780BF9EB31BDBF7AD948A567 /* cpu.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cpu.cc; path = src/core/lib/gpr/linux/cpu.cc; sourceTree = ""; }; - FEB03B1E704802522988C23B60A84BE2 /* event_log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_log.h; path = src/core/lib/debug/event_log.h; sourceTree = ""; }; - FEBAB354F0C19921E2EC8B159AA1B6D2 /* FIRCLSRolloutsPersistenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRolloutsPersistenceManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSRolloutsPersistenceManager.h; sourceTree = ""; }; - FEC48AB17D6584A42698FACD7F414C4E /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - FECC76A9AC9BE86B3978BF23831C2B1C /* datadog.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h"; sourceTree = ""; }; - FECE40F0DCCAF6567C7E3806FE911001 /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; - FED67B7873941AAA26BD44CBC236B68A /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; - FEEAE857E0FA5D7527CF8FC8008CA226 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - FEFFC3A3C0F651281DCB05CE0891848A /* backend_metric_recorder.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = backend_metric_recorder.cc; path = src/cpp/server/backend_metric_recorder.cc; sourceTree = ""; }; - FF090CAEFB6D3BE5D29C9996532E89F7 /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; - FF099BCEE42C47A7B7A5E64CC0739DB0 /* thread_local.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_local.h; path = src/core/lib/event_engine/thread_local.h; sourceTree = ""; }; - FF09E168713329A5FC0584B1F89CD590 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; - FF151CB997F69162A18D10A7283C87A6 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - FF78724F347DDF3D347E42FB0B5D6C38 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - FF839FC2B56CBE383EFFF74CFE02CE07 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - FF93CE6164A76770933CBFEE9257304C /* systemd_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = systemd_utils.h; path = src/core/lib/iomgr/systemd_utils.h; sourceTree = ""; }; - FFB0C464E44E29F08FC8D6EAAE45A04B /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/resolver/fake/fake_resolver.h; sourceTree = ""; }; - FFB1E9BCEBADE2C8288A6F26C80C91E1 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = third_party/upb/upb/message/internal/types.h; sourceTree = ""; }; - FFBB4A9B3D68B820FB767743527A46ED /* metrics.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metrics.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c"; sourceTree = ""; }; - FFE6E2217F84A9D3070AEB7DCE9D9C02 /* zutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = third_party/zlib/zutil.h; sourceTree = ""; }; + FB5997F721AA4E1428CF8B537EF7E9DE /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; + FB62C0670659062D04FC95FAAA07CF75 /* ping_abuse_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ping_abuse_policy.cc; path = src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc; sourceTree = ""; }; + FB62C9D5BDD92E079DBE2C8CC1E8F32D /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/message/internal/array.h; sourceTree = ""; }; + FB6342FCEE31C2EDDD133A22EFFB4E9A /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; + FB65BC1EBCD163FB538931110A1F74DE /* load_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_config.h; path = src/core/lib/config/load_config.h; sourceTree = ""; }; + FB69E32FA3AC5C30313C9ADF9377C5BF /* domain.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = domain.upb_minitable.c; path = "src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c"; sourceTree = ""; }; + FB6A3684DD306B67CDF7C20522A3162B /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + FB803935086A92E7AE757969A977FEA0 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; + FB84C52583A19832BFA2C7EFBC287E10 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; + FB8C03A23F1CEBF7E43D8F0905C5CA09 /* cert.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cert.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c"; sourceTree = ""; }; + FB8D594201E2A3CD9DB788A6BFEB40C6 /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; + FB8EA75E31B96D119A51904D19D63593 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; + FB94F69F562E39C8E4149FA22A03A68E /* atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic.h; path = third_party/upb/upb/port/atomic.h; sourceTree = ""; }; + FBA042F7E86D8A03309A7F0E9FBCC57D /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; + FBA62CB9DC08E749E1CE40592D42D023 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; + FBB2267D7B9EE7EC9F57A1182DBC6CDF /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; + FBB5C9EA4B78F11644D1FD3E3BC641EE /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; + FBB5CC451BC324EFC14CA5EDD9918532 /* audit_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audit_logging.h; path = include/grpcpp/security/audit_logging.h; sourceTree = ""; }; + FBC1FBA6F0918D019593D12D0831EEFB /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; + FBC615D9D7BEB83297CE4F2712E71108 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; + FBCA898BD66DF4D1B773FBF76AE82464 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; + FBD005353F1524A47CCD3D431C36C55C /* FBSDKDeviceDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDeviceDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKDeviceDialogView.m; sourceTree = ""; }; + FBD528311EB8F4C50194E5507B866B6D /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; + FBFABDE60C3489264C13F3486EEBF5C4 /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; + FC020A637E173C8C44321E0E1190E38E /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; + FC09E04AD7A81C2ABFB05D5A32D6169A /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; + FC190349D7B76931E8258A2533D8474C /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; + FC1A4A22B4DABA54A1C1AD8F04548334 /* FBSDKSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSettings.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h; sourceTree = ""; }; + FC1F19E403D6064E004529C4BD87CA26 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; + FC1F2CF1DECA8502F4A9093E03F9DAAE /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; + FC2256628ADD6E35E059E746C33E5849 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; + FC279010110CF681AB906A3657312A68 /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; + FC29AE623FB4CD5904117A73DB762615 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; + FC2B5892876BA598CB682EA2280C10BD /* FBSDKEventBindingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKEventBindingManager.h; path = FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/Codeless/FBSDKEventBindingManager.h; sourceTree = ""; }; + FC3736BC3769C851108C0734F56E0004 /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; + FC3CFE9013AB29A798CD20A0C2443220 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; + FC41FCE9B55B88B9DE0B11BDADACE6AB /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; + FC46768EA18433FA2C87D77C8E6C8B4D /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; + FC473A64934177A2501512E56EDB6AE7 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + FC477FAB99D18313A71E00ED404DB24A /* fors.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = fors.c; path = src/crypto/spx/fors.c; sourceTree = ""; }; + FC4EC45578DDEB7DE701B84239F69BCF /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; + FC5672C357730DCA97079CF0914C00B3 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; + FC626C3ABCE615F68F6622071BF4D02C /* stateful_session_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stateful_session_filter.h; path = src/core/ext/filters/stateful_session/stateful_session_filter.h; sourceTree = ""; }; + FC66ED798BDF0147D6E7FD62877B5B39 /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; + FC72443355B7723BA4A97DE7E96E7A99 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; + FC828EBC058334FEC7EA82859235FE0D /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; + FC8353382CA46BE96805F862E1F729D6 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; + FC8CC8F53717C02C96DE8A5C534716DE /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/server_callback_handlers.h; sourceTree = ""; }; + FCA1D82411E411B3BC947AAE11F5DB4B /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; + FCA7E285516DE63FED39AFAB0BAB3FBA /* FacebookSDKStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = FacebookSDKStrings.bundle; sourceTree = ""; }; + FCB1B2E1DE53DE7FC798C4D3E51BBF6C /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; + FCB52E35940AE5614028D4FBEFAC1366 /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; + FCBA1476E399E1A433FDBBE4CB5B41D6 /* pthread_waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = pthread_waiter.cc; path = absl/synchronization/internal/pthread_waiter.cc; sourceTree = ""; }; + FCCC047E666925BC4E4B77BB352C8106 /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; + FCCC957CA26E4ABAF0BFB1A482EDA258 /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; + FCE3CC2203782293864C417DAFD98173 /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = v3_pmaps.c; path = src/crypto/x509/v3_pmaps.c; sourceTree = ""; }; + FCE5D50FC5F7B7A9A8D9D4D9EB8405C1 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; + FCE83942BD7DB8C708BF98F779BD01BC /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; + FD085EB79E17E0B78FA2C67592881F3C /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; + FD0C31798CAE115C04581C52A9A7364B /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/mem/internal/arena.h; sourceTree = ""; }; + FD0C7D6450F5399BE524879DCB64289F /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; + FD18B1F198A000AB4F05D6A3CA6C8B22 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; + FD1E0E15097C0C418049C615793C17AA /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-gen/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; + FD2F1BA75E9A7C648A91B443EE8B601A /* Promise+Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Await.swift"; path = "Sources/Promises/Promise+Await.swift"; sourceTree = ""; }; + FD2FD0100BABB0D446FAE6BE9FA3CF70 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; + FD4696076B9C2DCC13C3720B648BB86D /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; + FD51B813072A3F3A915D07C6D2828CB9 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; + FD6FA9E2354FD1E112C661A0A7FD4154 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + FD709E187B78995F5ADB9B013D554862 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; + FD738DC70F7562C0D899EFE0E201E830 /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; + FD74546C6B80318E3AFA18BEC6CD00E7 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; + FD753E6276B965A1E80ED23C3A97AA9F /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; + FD80E0F60FFC74CD8297A906543AFD40 /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; + FD9759F3AD68DF73DBD8D5F184879AD1 /* substitution_format_string.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb_minitable.h; path = "src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h"; sourceTree = ""; }; + FD983B46E98A25461E2DB0A24AAE9A63 /* random_early_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_early_detection.h; path = src/core/lib/backoff/random_early_detection.h; sourceTree = ""; }; + FDD6F685E09C23CB2486C23AC4713A12 /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; + FDE8281D54FFF00F8B6CD20B4A4FE77A /* server_call_tracer_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = server_call_tracer_filter.cc; path = src/core/lib/channel/server_call_tracer_filter.cc; sourceTree = ""; }; + FDE9971441B6542A07BF888B6269BFD7 /* seq_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq_state.h; path = src/core/lib/promise/detail/seq_state.h; sourceTree = ""; }; + FDF59A112E9673E986B49ED58979DBB0 /* RecaptchaInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.debug.xcconfig; sourceTree = ""; }; + FDF8BCE89F1059EF0BA4F800F10C4AB6 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/grpc_types.h; sourceTree = ""; }; + FE2933D22A1DC119C3FC4A8045C5C43C /* FIRCLSCallStackTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCallStackTree.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSCallStackTree.h; sourceTree = ""; }; + FE378C1506C10C0FAEAEEBC0362AF5E9 /* fast_uniform_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_uniform_bits.h; path = absl/random/internal/fast_uniform_bits.h; sourceTree = ""; }; + FE39787B54BF98136F1313DC8FA0EE42 /* dns_resolver_ares.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_ares.h; path = src/core/resolver/dns/c_ares/dns_resolver_ares.h; sourceTree = ""; }; + FE44FBEFF3111E26D5F60EFF38F8145F /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; + FE4FF7FA2D579817F3B8C036C29E8750 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; + FE50EB2DBDC78C0C7AD6E0F2423BAA0E /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; + FE796BCEFD744AB66B3CB7979111BC53 /* event_engine_client_channel_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine_client_channel_resolver.h; path = src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h; sourceTree = ""; }; + FE7CC18EAD7594DCD800DC1CC655E89D /* service_indicator.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = service_indicator.c; path = src/crypto/fipsmodule/service_indicator/service_indicator.c; sourceTree = ""; }; + FE84EC04A5893514B49011A2391B73D4 /* cpu_arm_linux.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cpu_arm_linux.c; path = src/crypto/cpu_arm_linux.c; sourceTree = ""; }; + FE9744DFDA34D54AD55C06A4B257D4C5 /* TZAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TZAssetCell.h; path = TZImagePickerController/TZImagePickerController/TZAssetCell.h; sourceTree = ""; }; + FEB530D9AB1ECA44F56CA7FDAC944D85 /* posix_engine_closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine_closure.h; path = src/core/lib/event_engine/posix_engine/posix_engine_closure.h; sourceTree = ""; }; + FEBF1EAB71221D1F3FD9F5B9B6A818C6 /* ratelimit_strategy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ratelimit_strategy.upbdefs.c; path = "src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c"; sourceTree = ""; }; + FEC4D8AB712D3AE5D9663742AC12F977 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; + FED37F07E373FE7D4D014D57ABAFE09B /* wots.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = wots.c; path = src/crypto/spx/wots.c; sourceTree = ""; }; + FED56D4A0E67ABEAD3B54E0F8A1B87CE /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; + FEE108C1B1CE93C8934E8E52DF5BCE9C /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; + FEEA9F2FBC2E593801D309A646B04D8A /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = client_channel_plugin.cc; path = src/core/client_channel/client_channel_plugin.cc; sourceTree = ""; }; + FEF65AFD0AA973DCC123D7DEDE341424 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+TZImagePicker.m"; path = "TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.m"; sourceTree = ""; }; + FEF7990B1C443AFB00B249ECDA0DB7C7 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; + FEFB3C1E60D59F2B6AA8D53BBBE02BD2 /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; + FEFD2143037999CC2A3B79CB5B1C6725 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; + FF078A3747EF899BD8D7EA46B7A80A62 /* load_balancer.upb_minitable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb_minitable.h; path = "src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h"; sourceTree = ""; }; + FF1DCAC541B7C00228B80068B73C79B9 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; + FF31DA07A359FB043DEB6DC1FBA47783 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; + FF4A45FF954255D82D95FC26CA4F78C8 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; + FF508A3C1C4EF9F99392BF238ABB7F7E /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; + FF5997267129FF743354DF4DF01747F0 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; + FF69E35CCF06F522DF4630762EB50302 /* for_each.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = for_each.h; path = src/core/lib/promise/for_each.h; sourceTree = ""; }; + FF78FDDCB2830D9DB29F5BCFEA244206 /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; + FF7B997C00F9FB247DB05D9D83508867 /* metadata.upb_minitable.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = metadata.upb_minitable.c; path = "src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c"; sourceTree = ""; }; + FF8B41DCE927E3E5776E24F9E461D9AE /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + FF915538D63E29C8CE85AA7396C7AC47 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; + FF98068A851B922CC051736DA72AE6F1 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; + FFA461F55C8DE519E17036A85394A3C2 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/FIRAppCheckInterop.h; sourceTree = ""; }; + FFA49151746B37BB6921F20100C50382 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = decode.c; path = third_party/upb/upb/wire/decode.c; sourceTree = ""; }; + FFB9A453713857E07871507B06A5AD5B /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-gen/xds/type/v3/range.upb.h"; sourceTree = ""; }; + FFDD9A23A397D55E55A458DFBDA22E8F /* context_list_entry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list_entry.h; path = src/core/ext/transport/chttp2/transport/context_list_entry.h; sourceTree = ""; }; + FFF3D98D027C9058813256B55EB44FC5 /* if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = if.h; path = src/core/lib/promise/if.h; sourceTree = ""; }; + FFFFF5B4E55754B355B3C206F5810276 /* cfstream_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = cfstream_endpoint.cc; path = src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0A780B232ED38BE8C48C99BFDFC32FDE /* Frameworks */ = { + 06CF1F55A4F92D3DF4FEC57D36700B71 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2B59CA0F30A01C5EC3DDF6E40E7EBA89 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D5772BF624060A9424C5BFE11249A09 /* Frameworks */ = { + 0C6F9C5FC46ACBBC370D16D02BF34823 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BED4E95D72A085A88D2505674131567E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24721,81 +25274,62 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1319EA1AD3115C001FDAC900FD174997 /* Frameworks */ = { + 1472BA15E4660E70306C761BE9EBD26B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 18FEE6A5F6FC520B932C2097C918200C /* Frameworks */ = { + 1696655BF7B402F737B21958B239B1D5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 131FFB7F6C521C84B746CA95AD3A87AE /* Foundation.framework in Frameworks */, + B656806C98C997E0B99263896E1810FB /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1BEBD802CC790D962F3E730182708330 /* Frameworks */ = { + 18C43F1E6AE121E326875EEA603DB8F8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8673FE8CF63F5AD7678F32E1886C9BF8 /* Foundation.framework in Frameworks */, - DA69012C65C49122FB78CF7BE102F46E /* Security.framework in Frameworks */, + AAE0451CDD12C6B939C6639FD3565FD5 /* Foundation.framework in Frameworks */, + 1FB4353E580A44C7216824DF98B26DEA /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20605D995D51E9F944D76C0DB47024CF /* Frameworks */ = { + 1BAD4516BA2AA7AB4B3855E55571F63B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 620DE21FEA10E2A5724E205FB651449C /* Foundation.framework in Frameworks */, + 95CD0E25E0A5FE89D92B7E7E63167E28 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 34726137DA413EB5280A5C1AC0A0BA08 /* Frameworks */ = { + 26D18C046E5056AAEDC8A470536EB7F4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F1F9C29D548BC03D51044597B86BFC32 /* Foundation.framework in Frameworks */, + 5133E969C08B39D1E92589446F468373 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C20CB3B9566CA044C1B2830880BFC03 /* Frameworks */ = { + 2EE64D126AD317FB9D1AB6AEA0D8D883 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5C00483C0B24F583A5E4684EB884121B /* Foundation.framework in Frameworks */, - B245299311C19E3141AA49E030CD0C51 /* Security.framework in Frameworks */, - 5CBDF35A8092D0886174AA5A8FF82B57 /* SystemConfiguration.framework in Frameworks */, + 55948301C7592BF929DA17CE767F50ED /* CoreTelephony.framework in Frameworks */, + 68962AEAB2953CCA8F5B7C0BE02F38D5 /* Foundation.framework in Frameworks */, + 73428BBABE9E25340FE3DE5A526D90AA /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3F5BB84EDEC957AAA317EA5D998B6CC8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40806DABB3FC277CF4D66F4D51F0A99E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 19840828873B6D64767DE6F6F4B414BB /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 42614723C6DB27E65DB8651F2DF1109E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 47FD336A86BEDAE0CD42D086D452C9D8 /* Frameworks */ = { + 4345117AEAF4F86B2EEA0CB8505CBA71 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2B1F1FC96E6A769F705D971CB3C8B214 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24809,22 +25343,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 56A12A342B28FB8F678E7E08CB9B9EA7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F395AED6D5D327FD3206F8B05AE66D28 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 57F9B638B3CEE1B9C3D90FB7CD495069 /* Frameworks */ = { + 5708DC9B43B92A48ADFDE2E01E201639 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 59E9DB8BB8A7027E212A94E6960A6DBD /* Frameworks */ = { + 599F9B55E0EDB89E17528C44F047CAD5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 59D54FC51FE8EC755DFC337FAE0EC2DE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -24840,24 +25373,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5F6D48C8F87825A15A5BF9ADB104B165 /* Frameworks */ = { + 684ED25EA32B5EE2270AFF247AFA2D41 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 58B0D8B9250DF6F2C66312492F01A198 /* Foundation.framework in Frameworks */, - A1ABC2280EEC29A91E8F0A50A3F191E1 /* UIKit.framework in Frameworks */, + 085CF33D05B8DCA8641B7BCB74B3B176 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 61D09B759F3A2B8C6F1A6A89D2E10E99 /* Frameworks */ = { + 68815F7765CD1030BE2C3065492AD3B4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2F5E4838333D1E7E2C559B27DEF3CA38 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6DB6836CADFECE5DF3C1EA85A08C833D /* Frameworks */ = { + 723701361AF546105634F9C2E2FF3C5C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -24872,19 +25403,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 77FC0B81168A6BC6BAF7FABE40FD2F14 /* Frameworks */ = { + 786FB770AAAD8370749742F4705A8167 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 446E0A1CE4F33E583D4D7A3767320EE1 /* Foundation.framework in Frameworks */, + D0342087478078D6CBF5E999E6EE4F79 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 787BAE136069CB58AC70BDC255F60DA4 /* Frameworks */ = { + 797F350D4AD357ACC351FBB0DF4696A8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 79DA025DF4455F31D412570F348FA156 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F4F7DA9E1EFC5F900C8446E3459CF349 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24898,28 +25435,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7E3DC51F36C3A9A20F8B8206A86AAAFE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B4C11110989164C2F0A1A517EF66941A /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 84F3EA8D964983C03A7968AFD65A941A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 372EE19F6414ABB1E222969857F1F6F8 /* CoreTelephony.framework in Frameworks */, - EF92C62C632C32BCCB2BBC131E8B262D /* Foundation.framework in Frameworks */, - B323593F5E97524744E872CEFA2C1F5B /* SystemConfiguration.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8DD833F82D4442C919B69BBEF5FFDEB9 /* Frameworks */ = { + 82A4576FCF40D921FDF0F151B3764D12 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 9F040FB571100B35A44EEE9E88957900 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24933,14 +25453,60 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 958C3558A32E49CE44DEA383C5B3A60D /* Frameworks */ = { + 93EA75E56D54DC072B49150AE5A58A5D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9C60373C0FC3AF8FF6376CE1CF102C75 /* Frameworks */ = { + 93F1E5C9796AE2D93F5FBED0E0D132A8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97DB025352D31F09D7DB10FB988297C3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 687DFAD73B7F5503FDA5266C09DD1371 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9A7258B391568A11540E405D8FE934BF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7231EE94F7EE4433515EB37F407F6EC8 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9E80EC1B919F594B8CCCE7F636E635D3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9E87C585011C28649B6C0E5F88F4BA0B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A111AAA862828D82496A5BC81010A9C4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C5B24F169BB8CEAC1B5BE93FFE407271 /* Foundation.framework in Frameworks */, + 88B77E83AE93D898F6BE75B05A23313D /* Security.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A3D98E7D9D6F9399A39CF592757DCF84 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -24955,18 +25521,47 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AF6816183D95D73983092996BD96EA7E /* Frameworks */ = { + A8E20325CA2FDF39DC6D06C8A5D4DC0E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B48E97A861576B555FB23546E3C1EB6A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B611AE623DC09BE2E5C8F78FFB71AB26 /* Frameworks */ = { + AC0234623DA5866DC7623ACC0EEA57BC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2E51BEF767434E40C1387621A8F58F7B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B070B2D245960BD75BAE3BB81CB81ABD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B1433D3819BFDD635C117608683F96F3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7C188EBE49BC68F4567725E1BADF242 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7D79975DCD52FB20E7A7BF031D8E639 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7760CDCC1D6685953FE83C6414503D44 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24978,10 +25573,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BB68EF6AC712531B3936F6695B8A12FB /* Frameworks */ = { + BB4FB34632B9CD3827AD3918429CF7E0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 5D610D1EEB026336EE11BF45D985EBB2 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24995,13 +25591,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C1480DF1DF4B18D9478172B9A8C70DD8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C3D23FE8D3E484025839FDA8E9C367C6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -25010,13 +25599,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C6645C3C95DE2EF20591BE1FF717E56B /* Frameworks */ = { + C470D41E5B30C77A8B5F660B69DBEFCE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; + C9150BAAB3DEF02A467EB3BF74BB5490 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 17B120E9D7F97492B1C04EFFE59951AF /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C9C2A64C5644258F2A47FB7FC87E9E11 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -25025,42 +25622,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CEF03604A0B2AF1FCBFF758C90EA0DFB /* Frameworks */ = { + CC270D7B74EDD75A176841B9E06EA244 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + DC3AD7BF40312B65D877A975FCE9643C /* Foundation.framework in Frameworks */, + 281F4618AB75422686882B44A3D807F6 /* SystemConfiguration.framework in Frameworks */, + 3847DF42505172EC779A6B0493FE33D8 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D78B8C951B758DEA60A0F7751BFDD8DE /* Frameworks */ = { + D168FCE7F5D87B0A55BCBAB50AA4462E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0B89F1FA999412D629089D27EE17C8B0 /* Foundation.framework in Frameworks */, - 580DB667BE4B2202BE879DCDFF0698E8 /* SystemConfiguration.framework in Frameworks */, - ACF0B7380E0528C874830F103B18244D /* UIKit.framework in Frameworks */, + 50F0AF9BC78CE720A537F15B42E1E15E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D9C053FBF1A1C8094480291DD642529A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 75045E67777A4AEF183F6AF847C3D2D0 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DD286CCFE153BE46F3DABBE41E996CDC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DF60021AB8490B21564425D1A19A69EB /* Frameworks */ = { + E0C70B551B03024ECDBFE31D4825F439 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0C99A488FB0AD75936D9A4067C801160 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25073,6 +25657,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E55B3CA1E99D1E8FF2C5AEFE1CEF0F42 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 20E77BC333617D5D0AB62E423F606422 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E8E4E7CE8309D3EF7B7476AC57986BE9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -25081,40 +25673,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F31132FC1B413C791C7580F69F30CC7F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F34C4F3F49B1FD4DF04F17C18675FB89 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F3C0CF6C6CC12495A996C348BD353CC0 /* Foundation.framework in Frameworks */, - 26E7C706AE44BB369E26B073AC7B30A2 /* Security.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F34F5B54697A9B81D0D42656B2C72BAD /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - BC9F451176BE8134605FD6618B807CCA /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F7099BFC32BDAFB23A2EA97504B4C8C6 /* Frameworks */ = { + F081A621A93E18D86C851419CD458AF6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 4AA4BC4393E89274E6CFAF3D5FF50A5D /* Foundation.framework in Frameworks */, + 6890A7EC444325F2554F134AF64C07BA /* Security.framework in Frameworks */, + F265EF372170769D82208036A383A4CB /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 00D3F1459E7430C02507874569E677D9 /* Resources */ = { + isa = PBXGroup; + children = ( + 230D1FBC6290C24C371335308E7E7D0D /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; 0120825BE045D4E212B55474246BD05F /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -25123,262 +25702,240 @@ name = "Targets Support Files"; sourceTree = ""; }; - 01B41E8ACF1311454F0ADB1CE0F5899E /* time_zone */ = { + 03D6267029E3F424115BC9F25D4612E5 /* Interface */ = { isa = PBXGroup; children = ( - D6DFD93751BEFAE373A7C88F41927B46 /* time_zone.h */, - 5027D4AEFFCD2F16BC54ED48D70435E4 /* time_zone_fixed.cc */, - AFAE8203212CEFA04567518E0A94F53B /* time_zone_fixed.h */, - 496283B2EF59B4B9464A8E8BFEF3E931 /* time_zone_format.cc */, - 54824719B82A4E204CEFCA107F5FF9F4 /* time_zone_if.cc */, - 0549D9195420939D4A58DF0EB7611916 /* time_zone_if.h */, - CF99C279CEB20A5BD019BE4599D57A3A /* time_zone_impl.cc */, - 4950A37AC301CE860C4F3C38D1411E4D /* time_zone_impl.h */, - EF8EFC801728FD4406D9A902A51367E3 /* time_zone_info.cc */, - 8B86037E1103C4172FF1904F7A92087A /* time_zone_info.h */, - 0ADA180427FB7D5383013AD295C67B29 /* time_zone_libc.cc */, - F930669D70BF979E400AD02BD820E02D /* time_zone_libc.h */, - D141407BE69E0D3FDB371A5F214B610E /* time_zone_lookup.cc */, - 053D6C95F1E7EB9818E79E2BD323E0A1 /* time_zone_posix.cc */, - AE8A8A548220BF2BB9332E6CA4C799D4 /* time_zone_posix.h */, - 44BDFBD2B8DA089A244FEABE101B601B /* tzfile.h */, - C0162B78B36700AF54ED2FD4B6468D1F /* zone_info_source.cc */, - 201771171C873F0F6CC83141C0ED2BEF /* zone_info_source.h */, + 9B276DFA17A2C8DE3DE273DC3F914760 /* aead.h */, + 3391DFC9A9887592E1A03C67C5052991 /* aes.h */, + 9E91CC473B80BB18D714F85077C3744C /* arm_arch.h */, + C9C59E77C124E66CA666FEC4F1C8AAFE /* asm_base.h */, + 5AFCB4462BA45D27EFEB434938710185 /* asn1.h */, + 0DA3338F7D53A25F261A8E80DBEAA469 /* asn1_mac.h */, + F5B5D47C884131E60B2DDB60FB0CCB23 /* asn1t.h */, + D27030308EE0D81BDF1036D2BF3F8431 /* base.h */, + C289C8B3A09F5D68016A562BB56D2BBC /* base64.h */, + 91FFECEF952611CA21B8EA6211ED967C /* bio.h */, + 7D2A6FA25AFC6989A144FE8BB8B40670 /* blake2.h */, + 0FBE015D20DB562567D4D68C7E968A05 /* blowfish.h */, + 1756F094278124D0342AFC197188A8EC /* bn.h */, + 7B1209211DFBF8BB49C4A1146C3B4FA9 /* boringssl_prefix_symbols.h */, + 1F0C7DF062789407CA949CE6E368A1D1 /* buf.h */, + 5C31B6983B2CE32CCD4DD27B90EA6147 /* buffer.h */, + C6AE6B3FCC5E18BF443F021FDBA2B3B7 /* bytestring.h */, + D6E198173F064211CE2EC69FDD7CA1BB /* cast.h */, + A80135F3C975E3F6FD234925CB330522 /* chacha.h */, + B855F816857D15013DDF35DE1DA51044 /* cipher.h */, + 8E6281C161DE01F74BB9088EB7F3D12E /* cmac.h */, + 99C25019820963EDEEB6357F411264A6 /* conf.h */, + 53868A64EEB9C294A151445CCA7670FA /* cpu.h */, + B1AE9CEC1FD5628E6FFEA201AC69D619 /* crypto.h */, + 58AABC8B9F958F9087656A1FF73E3E94 /* ctrdrbg.h */, + 628990FFBE6803A20006509E343B32D8 /* curve25519.h */, + 46829D1B1885FD727984670EC73B3DC2 /* des.h */, + A8B2393ABC2DAFCDE78E9B063BAB4F05 /* dh.h */, + C513A1BC1CCC6FDA02A6344F32892FAD /* digest.h */, + 3AE580411ACF731463E060B3FE637B09 /* dsa.h */, + 0D22FDB0C0023582240F12DDA0593E4B /* dtls1.h */, + 23D7C0AE5202ADD84CCCDBD457B89525 /* e_os2.h */, + A36E68B12F0F068E5935D455FEE80931 /* ec.h */, + 0A40DF2D241257CAC8755B4C90B1A3C9 /* ec_key.h */, + 967F346CB6DEE2795C670C5ED6C2362E /* ecdh.h */, + 80B4F7552B1FFBD01D22FACE315BA5C3 /* ecdsa.h */, + F07D30E0A40454CEFB2B45E0C9066998 /* engine.h */, + B8E9471C313F1B0CEE32848842A35D5E /* err.h */, + 14E78D0AC1F5AC1D382B64AB314D9CC8 /* evp.h */, + 6748FA655DEF1878DD214B92CF296076 /* evp_errors.h */, + 4275754F39FFF62E222024E9709CBDBE /* ex_data.h */, + 5893991E37307B26AF05049149BFADF1 /* hkdf.h */, + 1752AD3C64885B6AA49EFCA1BD2150C5 /* hmac.h */, + 4F89288C3BB926DAC350E0B256B42721 /* hpke.h */, + 80C4D0F0F94200FFC0C91212D20CEBFE /* hrss.h */, + 2F8CD9192364C8487BFA354E0273FD2C /* is_boringssl.h */, + 2B5ACF116C491094DD3C21DA1B84A404 /* kdf.h */, + DE6A43626FD58AB63DAF48A516B2E9EF /* kyber.h */, + 7FBF3ADABDBEA7C90217E5FD7AA0274C /* lhash.h */, + 4A7339F5D4CE983891F11B49A9DACCEB /* md4.h */, + F39C010D1DA44DCB4C4BA27177722D8E /* md5.h */, + FF78FDDCB2830D9DB29F5BCFEA244206 /* mem.h */, + 42CE55AE505F681AF1AC5E327B6689F8 /* nid.h */, + 56F1E183ED9D8BB5C2547DD13F9CADDD /* obj.h */, + A68DEE40B53C8BF08B94E4D84D756A8D /* obj_mac.h */, + 725365E125175FC6C7A6EDF6DD977478 /* objects.h */, + DC7570F460D23DFD5950C43598E92421 /* opensslconf.h */, + E3348D6E4089862FB094C264C7859272 /* opensslv.h */, + 95570376996BB0AA664FCB7A919BC22A /* ossl_typ.h */, + 4B44099CD9D055E52391887E48BF8C76 /* pem.h */, + 8BC0C33DF90EA62D68E2D250249D26E1 /* pkcs12.h */, + 3D43B611DF2A1F8E1D94A3DF73AB3CB6 /* pkcs7.h */, + D4EB2DCF56540150CEFC97DBDC8C4D9B /* pkcs8.h */, + 740C1EA05FB7B4BADB22AF785CCA7A1B /* poly1305.h */, + 65FE6BBBEB45631A6F66F4723E600277 /* pool.h */, + B885CCEDCEC3A7025360BB6863870014 /* posix_time.h */, + 371607E68776D3706052B1D33CEAE9A1 /* rand.h */, + D585A5F0AB707A445E89269AB9E372C7 /* rc4.h */, + F91D5FB72A245F8B45C1331120CF151C /* ripemd.h */, + 65971FC4027B4F130E79F906F7FADE54 /* rsa.h */, + 5DC29A0EADA59DCC95AE95252EEA28B6 /* safestack.h */, + 2AFA4753FDE8056931FF5F57F93040D7 /* service_indicator.h */, + 1C36572BAA189CD8738FA6D5BD6FABDF /* sha.h */, + ADBA1186C42DFE86E6EC166178309AC6 /* siphash.h */, + B9C6286CE0E1D0201096978FC5206734 /* span.h */, + B3226F7D8B5CFAA18479D8F1BDC064DD /* srtp.h */, + 700D749E5DB470FC9D9AA3C0FC5B279B /* ssl.h */, + CCEC0C8CD81533D6B08DAFAF4268DA9D /* ssl3.h */, + BA7DA97D498987E9D8B7C35E40C75306 /* stack.h */, + E321ACBC35744545C85848FCEF87C503 /* target.h */, + 44FDD8CE72EE70AA6EFB414936F128F2 /* thread.h */, + 1189667F431D5502DE0BF277F42B3C29 /* time.h */, + FD74546C6B80318E3AFA18BEC6CD00E7 /* tls1.h */, + 5DA34EBA38D8CB39DA76C73891947179 /* trust_token.h */, + 2007EEDC44C5FC2FAC588A2337B897F2 /* type_check.h */, + FEC4D8AB712D3AE5D9663742AC12F977 /* x509.h */, + D71B3863C141E42A804F2EE0388EE51B /* x509_vfy.h */, + BFDD37355CA7D01685821B7938D92EA0 /* x509v3.h */, + 261826F32722C791F8387B85CDDBB7D7 /* x509v3_errors.h */, ); - name = time_zone; + name = Interface; sourceTree = ""; }; - 01CB48EBC55B8076B9A16BA52779FC2A /* Resources */ = { + 0558E9363B4FDC0F236917FFBCF60E3B /* city */ = { isa = PBXGroup; children = ( - 95A81DC46EB6EBF2A60E218E3CA56C0D /* PrivacyInfo.xcprivacy */, + 52E096E3DFB8D70D13F87AFD208715DB /* city.cc */, + AADC86E46CA501AE008201334DEEE113 /* city.h */, ); - name = Resources; + name = city; sourceTree = ""; }; - 02131C7CFB8EA57EDB4B8E453B6A96D2 /* Support Files */ = { + 05C7B0612C43115BC5751764584AB8F0 /* Logger */ = { isa = PBXGroup; children = ( - 2C5C4CFFC15DCE8D3F57FD3B61AD2292 /* FirebaseAuth.modulemap */, - 167DB6694918F3C0D5294165F693C692 /* FirebaseAuth-dummy.m */, - 32E2767AD8C86ED79FC4B993CA6F7D19 /* FirebaseAuth-Info.plist */, - DBBD3DC04189F82B4B46B87F626CC6FA /* FirebaseAuth-umbrella.h */, - 4C65656A249406025017EA4A3EAC896D /* FirebaseAuth.debug.xcconfig */, - F7718AAE05ADAC25526FBB92053F236A /* FirebaseAuth.release.xcconfig */, - C277D361A7C3886C4CFC2599AADA4D5B /* ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist */, + 19347175537611B3F126017E2F7195DA /* GULLogger.h */, + 17D4F6AFF5F1D643DB99E5387B7EFFB1 /* GULLogger.m */, + 3DDD1FD47C6A485AE38021D1BB7BCCA5 /* GULLoggerLevel.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAuth"; + name = Logger; sourceTree = ""; }; - 03ACCAFD62CA3A3FABF6327221044AC2 /* Alamofire */ = { + 061C369515CC636CA6D561A0006FDB22 /* path_util */ = { isa = PBXGroup; children = ( - D61EC3F8A049A564B2D14B912FAF7BFD /* AFError.swift */, - 7ADED26C156C0210379E469200038ADE /* Alamofire.swift */, - EC802BD5D00C13B5296591AD0D825B38 /* AlamofireExtended.swift */, - 9A24711792213B5E3689B70E24FE15D9 /* AuthenticationInterceptor.swift */, - 0B38BEED8453B3D1D6CD513591741ECE /* CachedResponseHandler.swift */, - 1F72F2990247B0AF4F58FC2CB1EB06BF /* Combine.swift */, - 35BCD661B5C50704DA841EB440736BF6 /* Concurrency.swift */, - D5BFFC7D2593F24D8C3A6F923B8CFBCE /* DispatchQueue+Alamofire.swift */, - 3AAE2B42E5377F40BDCC9B3D9C7085D0 /* EventMonitor.swift */, - 6589A626BEB5968C17BE62D6B5E3673E /* HTTPHeaders.swift */, - 2004423D2DC64E98F68C93452AB1969E /* HTTPMethod.swift */, - 6E2EB1A67B674C3AF914E1198F4F2BB5 /* MultipartFormData.swift */, - DC3CC854ADF637EEB177B7D58CC4DA32 /* MultipartUpload.swift */, - F7773899ACEB0B35425B803F29278E8A /* NetworkReachabilityManager.swift */, - 8D0ECDAF0FDB111840B47BA25D115170 /* Notifications.swift */, - ADE76618858E65A6CA71F5F957E093D6 /* OperationQueue+Alamofire.swift */, - 812E775948CA544B58B9816BFD7103E3 /* ParameterEncoder.swift */, - 5734A5DD2A229D91C597741F0BBEDCB9 /* ParameterEncoding.swift */, - ED61AD3E23AB984AA5FB450BDCA0E6AA /* Protected.swift */, - E74FCC89B9A909DD8D2E28BAF318179C /* RedirectHandler.swift */, - 1E16406259ED5D15E5C142DD3CA90C6C /* Request.swift */, - 0B119840CC46079B9BA98201563EBE9A /* RequestCompression.swift */, - AC99CC3586EA439CF0FD4B8709710338 /* RequestInterceptor.swift */, - F051D43D8EA6240FAF7F020EB3F3ABFF /* RequestTaskMap.swift */, - 12925203A80D75968B81E4348237931A /* Response.swift */, - 57252850DF54CE59A2755F65FE9EDD5A /* ResponseSerialization.swift */, - 683C10571DC0B6A651BA359358B6AC89 /* Result+Alamofire.swift */, - 582986E84C5875E53FECDF2ECFC18C8E /* RetryPolicy.swift */, - DADB329B9466F748B016B29B3F0BB263 /* ServerTrustEvaluation.swift */, - 78388447258B737CEAF7711A5E75F7A8 /* Session.swift */, - 99E1C94134C0DACE4FF56935715F0715 /* SessionDelegate.swift */, - F3B5A63C20828DF622C6BE49EF85716F /* StringEncoding+Alamofire.swift */, - 9ED685AE8F5FFF833C66F946825A4A81 /* URLConvertible+URLRequestConvertible.swift */, - 7BDCF4494040295BACD6EC20586C9B71 /* URLEncodedFormEncoder.swift */, - E05EAAB07BBBD737B2BD6B62B6493FAA /* URLRequest+Alamofire.swift */, - 02EFF969145AC82D79732D4CA8F322BF /* URLSessionConfiguration+Alamofire.swift */, - 772A79452FFE73F485D40C9FBEEF4B66 /* Validation.swift */, - E0AFD4102B9A05390360DDAA44963569 /* Support Files */, + 1AF726A5892D240793F6BDA24F29ABBE /* path_util.h */, ); - path = Alamofire; + name = path_util; sourceTree = ""; }; - 04DA3A90D761289F456EF726E9C4ACBB /* Support Files */ = { + 077ABC21FDA1645F7384E587176338FC /* inlined_vector */ = { isa = PBXGroup; children = ( - 3D8F48A6370E38861A5C59956CEFD838 /* FirebaseInstallations.modulemap */, - E22FF083675C20C9C2FB231202F77104 /* FirebaseInstallations-dummy.m */, - BB580DD2F33EF5A99C58212A8F159917 /* FirebaseInstallations-Info.plist */, - 9351E3DCCCD654BAD6259BC5D87F72D0 /* FirebaseInstallations-umbrella.h */, - 835EF8BCF96ECF02F37DA8154F83C142 /* FirebaseInstallations.debug.xcconfig */, - 7EA64FC4FDB0A85DA2F2ED9AA4334EEE /* FirebaseInstallations.release.xcconfig */, - 98B866ACFA39AFF50BD802930F4B03E5 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, + 400CB3556B9BCCCAB0C82DB5F6A34E2F /* inlined_vector.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseInstallations"; + name = inlined_vector; sourceTree = ""; }; - 0576E5A2324403561B5195498D00580C /* marshalling */ = { + 086F93667606C7B88C2F0E3979F62437 /* cleanup */ = { isa = PBXGroup; children = ( - 5F0151ABEFD0080529EC3943EFCA1892 /* marshalling.cc */, - EE9A4A0E96E61F5C61055EB6CFE63385 /* marshalling.h */, + DD8C640D62C3E6173C65B6EA63E8AB89 /* cleanup.h */, ); - name = marshalling; + name = cleanup; sourceTree = ""; }; - 08AF4FFE1C188B13435E201519B95622 /* civil_time */ = { + 0F301C79E31A069F5159A556685FFF0E /* span */ = { isa = PBXGroup; children = ( - 099C0CEF08F297B3B967D9734AB19B3E /* civil_time.h */, - DAC3240B4940D9192E7457A02564EF38 /* civil_time_detail.cc */, - 1DC6F95EF8ACF3034E8F25950F339E85 /* civil_time_detail.h */, + 5E7E9213F2DC30EF0DE2EB9B35CE8676 /* span.h */, + 5921C4D158563EE664FB42CAFB866723 /* span.h */, ); - name = civil_time; + name = span; sourceTree = ""; }; - 08FD27BB773444E9B33986DD39FB389A /* debugging */ = { + 1003DDFA8AC9534871B4BB99BCC97E82 /* flag */ = { isa = PBXGroup; children = ( - CA60BE5FF7670F73A3AFC5CE6DEAF5B8 /* debugging_internal */, - 20E207996F698ED7A76451A994218754 /* demangle_internal */, - 6A997A54CCD1A54DB9CF3A94622E3D6F /* stacktrace */, - 63B5020F8E8AB95B834B75D13A0506F3 /* symbolize */, + 79348F33F5BA54C37494C6B7DB9D499A /* declare.h */, + 1C363C241109FD1290B7F146ECABD8C3 /* flag.h */, ); - name = debugging; + name = flag; sourceTree = ""; }; - 09E8EA52162E6FCA363DCAA8C35F3280 /* Privacy */ = { + 1005CB691C5C0820FC2771B96AE151B0 /* status */ = { isa = PBXGroup; children = ( - F0A8517D1AD9654F8A6D301FEB13A49D /* Resources */, + DEEE9801FB57C07E5F56EA8001871FCF /* status.cc */, + C9359F072C2E5E0123094B282F6D1215 /* status.h */, + 9FD16681C6EAEAA67750B1F656B07DE1 /* status_internal.cc */, + B50F9D85FA879092BB4C1552BE78F5C8 /* status_internal.h */, + 97C0F1E12B870810DC5F5026432DED76 /* status_payload_printer.cc */, + 28ADEDC3C90F6EDA4A43E13A3F89967E /* status_payload_printer.h */, ); - name = Privacy; + name = status; sourceTree = ""; }; - 0A62FC0091EC468EB57BD4E8D30EC033 /* Support Files */ = { + 10A7B2CD73538DC4373379CF4DB097C6 /* commandlineflag */ = { isa = PBXGroup; children = ( - 5C51E625BC473B8DA10CC51CBD322840 /* SVProgressHUD.modulemap */, - 6028D49BA587A99F3145FE74B5D57F20 /* SVProgressHUD-dummy.m */, - E8B567F5D82E4E4528CDF87C06D84F2D /* SVProgressHUD-Info.plist */, - D5279642569A303D1D888299A13340EB /* SVProgressHUD-prefix.pch */, - C57091A6FA7896902B922B29199A1E21 /* SVProgressHUD-umbrella.h */, - 7020920880386C6305A37CCE707C3A44 /* SVProgressHUD.debug.xcconfig */, - 57083297018B63A2C5AE41736F7E8E4D /* SVProgressHUD.release.xcconfig */, + 8910926546705CF442CE07C18DF6E753 /* commandlineflag.cc */, + 38E9274898F801A1412154454494B893 /* commandlineflag.h */, ); - name = "Support Files"; - path = "../Target Support Files/SVProgressHUD"; + name = commandlineflag; sourceTree = ""; }; - 0B092806B88F7D1E2859138C25AD33F2 /* exponential_biased */ = { + 10B931C255FE26960373A2C6FE1F8FD4 /* profiling */ = { isa = PBXGroup; children = ( - BF4191C7CF957CCE4132212DA1F6AAD1 /* exponential_biased.cc */, - F1528A6DE6D9BA9D6B0D60361F6FB498 /* exponential_biased.h */, + 168FF477A19A6F8EA01336E9F9F5A6A7 /* exponential_biased */, + 256311B3673135E65862E6D2D53A9A8C /* sample_recorder */, ); - name = exponential_biased; + name = profiling; sourceTree = ""; }; - 0B5A55375DE3933EC9F1681AEB6A2F78 /* Support Files */ = { + 11F1E13DA79C8C2612809DFB5BE47699 /* distributions */ = { isa = PBXGroup; children = ( - D2D9006353FAE6B93508B8560F252D5D /* FirebaseFirestore.modulemap */, - 5E4CDCC60853F3F70A5FE8CD63F2B0D1 /* FirebaseFirestore-dummy.m */, - 983B30F7871C22F3810E680B26D3AABE /* FirebaseFirestore-Info.plist */, - 75DDA11B178A335920EB85CFF07E8A4C /* FirebaseFirestore-umbrella.h */, - A1E72F1001E087B0EBAE851A920CB2B9 /* FirebaseFirestore.debug.xcconfig */, - 332460371CBAA0001DC3EC8969806B00 /* FirebaseFirestore.release.xcconfig */, - BEC00F627F74FA4B2E8D9FE930256F85 /* ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist */, + F01D9BCA2BA32FB5A96BFBE0DEB7E9B0 /* bernoulli_distribution.h */, + 411919061A39FDE6F643C6CD9F58C8F2 /* beta_distribution.h */, + 0535A4EFAC37570F1D9B7FB0B33E12DC /* discrete_distribution.cc */, + 19613E298D37A60E97F9644EEEC5B219 /* discrete_distribution.h */, + 78AC8BE5573DA4BCAEFB1597234B16F5 /* distributions.h */, + B1B1E98B089B55439C9784C6B139EB7E /* exponential_distribution.h */, + B42FFC28C18799221CF205D4D1727766 /* gaussian_distribution.cc */, + 9CD359EFE131119C3670E51148A9B5A5 /* gaussian_distribution.h */, + 1D08F9290C6DB2CD6EB87F66E519642A /* log_uniform_int_distribution.h */, + E48E3F2B713D64AC80B6AE4A04E6A177 /* poisson_distribution.h */, + 9F24957709F7A47A32D2145CD817D8FE /* uniform_int_distribution.h */, + C26097BF9AC4C0329B8D69169BF737E9 /* uniform_real_distribution.h */, + 64297F14FEA7F92252CE55D1058E9966 /* zipf_distribution.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseFirestore"; + name = distributions; sourceTree = ""; }; - 0BD5D3E93BE2C0AA7709414C3043BCFE /* UserDefaults */ = { + 123D994EF2C37366EFBEDE06D5E847A6 /* stacktrace */ = { isa = PBXGroup; children = ( - 99E3D2249B111F7739A6FBE4AE57C5B8 /* GULUserDefaults.h */, - 434C448B78C138F9BE8EF3228534AC83 /* GULUserDefaults.m */, + 9556FC950F4F862EBB728CB49C88BD43 /* stacktrace.cc */, + C418586DF1EC3AE525940F46D7A93B5A /* stacktrace.h */, + 4031E3A7FDB0DFE95508A132581BEB66 /* stacktrace_aarch64-inl.inc */, + D0A29A91CAC86790C46D04DF2DB19C79 /* stacktrace_arm-inl.inc */, + 732A8403363EE4579EE7A45A43BD1D14 /* stacktrace_config.h */, + A9997FD53D84EE8EE4DF0D9A412A12BF /* stacktrace_emscripten-inl.inc */, + A5CDFE20FEB8E09D77768BF181F62299 /* stacktrace_generic-inl.inc */, + D644010FE420609F31B5405C47328D13 /* stacktrace_powerpc-inl.inc */, + C813EB7AAE4276934E734BB967B28645 /* stacktrace_riscv-inl.inc */, + 4001F548202B6DA2B0E116EFCA781C79 /* stacktrace_unimplemented-inl.inc */, + ED56646BB59EE4A2EBF55FEAA83F1ECE /* stacktrace_win32-inl.inc */, + F8780E001C2EF5F42FDB51F37F71CAB7 /* stacktrace_x86-inl.inc */, ); - name = UserDefaults; + name = stacktrace; sourceTree = ""; }; - 0CF80EBF01DD22821B8743CE68D6CEC6 /* Resources */ = { + 12C5C8515014B334B6789793E42540B9 /* raw_logging_internal */ = { isa = PBXGroup; children = ( - A9F683FC35742446779589F0EF05F3BA /* PrivacyInfo.xcprivacy */, + DA4DFEC6BF80ECDA91EB16AA817D02C8 /* raw_logging.cc */, + 7D2DE4804AA353A3EEA0DF73C598AC57 /* raw_logging.h */, ); - name = Resources; - sourceTree = ""; - }; - 0D67246B3EB0966B61A54CCF5C2150B6 /* LLCycleScrollView */ = { - isa = PBXGroup; - children = ( - ED4D7D3A96469C21CA485F7807CB9560 /* LLCycleScrollView.swift */, - B10A6028962E1C3BB71E4FC895BE27B9 /* LLCycleScrollViewCell.swift */, - A936FDE037557223955EAA708EFB7619 /* LLFilledPageControl.swift */, - D6AD680256FBFE7564D59E1E55D9DC82 /* LLImagePageControl.swift */, - 7E48706842A286D8122DC8CA4E263E26 /* LLPillPageControl.swift */, - DD01E56BC95EEF384EA019B534EB100C /* LLSnakePageControl.swift */, - 7BAFE90FE536A177E8157AAA5E6D9AED /* LLViewExtensions.swift */, - 90AA401F35C509CF546814EAFCC0227A /* Resources */, - 0E609ABB39AA74FCC8640A1AA791CB4E /* Support Files */, - ); - path = LLCycleScrollView; - sourceTree = ""; - }; - 0E609ABB39AA74FCC8640A1AA791CB4E /* Support Files */ = { - isa = PBXGroup; - children = ( - 7555B2056756D8D7E330BE715C98A9DB /* LLCycleScrollView.modulemap */, - 868D49731EBDC54B4B9CDE79B090C675 /* LLCycleScrollView-dummy.m */, - 4F211A00CAC7C70D092D7F944EE710AD /* LLCycleScrollView-Info.plist */, - C2069FCCE4BB91C236A136268E2776E9 /* LLCycleScrollView-prefix.pch */, - 922D48D26DA0DC44799D7595B5364078 /* LLCycleScrollView-umbrella.h */, - 451F7D8A95D2AC2488A13DEA96B29516 /* LLCycleScrollView.debug.xcconfig */, - 38C9F31EE58608016714822769049C89 /* LLCycleScrollView.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/LLCycleScrollView"; - sourceTree = ""; - }; - 0FE8200BA06510CE8BD9B1ED16FA6574 /* atomic_hook */ = { - isa = PBXGroup; - children = ( - E396BD5F73417F6F7D17100C12FF521A /* atomic_hook.h */, - ); - name = atomic_hook; - sourceTree = ""; - }; - 11FDDEE0C20FF1F7441D94086ADF7797 /* Support Files */ = { - isa = PBXGroup; - children = ( - BC3270DD056385EE22B4D91F6A037348 /* gRPC-C++.modulemap */, - C9D2FD50ECB21A9E5D4F9063575D7538 /* gRPC-C++-dummy.m */, - D2CC86D8D3DA8D74541A2E239CB12C7B /* gRPC-C++-Info.plist */, - 2D6E567CF496435AF4B15DAC78365736 /* gRPC-C++-prefix.pch */, - 1DFC7DA882CAC9DCE3C4CC4873962F71 /* gRPC-C++-umbrella.h */, - 29228061DD9E6CEF381246A4CEEA0248 /* gRPC-C++.debug.xcconfig */, - CA76251189324B7B8AD980E3E8CC1D0F /* gRPC-C++.release.xcconfig */, - 27DC4268F61F4102756E55A57BB88B57 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, - 205EA916162E0B4F104BC6C082A22FEC /* ResourceBundle-grpcpp-gRPC-C++-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/gRPC-C++"; + name = raw_logging_internal; sourceTree = ""; }; 13181E320B2AAB11B8CE628A43CED4E6 /* Pods-SwiftProject */ = { @@ -25398,3164 +25955,1303 @@ path = "Target Support Files/Pods-SwiftProject"; sourceTree = ""; }; - 13F048FA4C107A026F6497CB5EAB6ECF /* CoreOnly */ = { + 137EFEDD3863691F794240F2BBA6D5ED /* Pods */ = { isa = PBXGroup; children = ( - DDB5947C44F27A203D0EBAA656FF7C40 /* Firebase.h */, + C66EB415DFD979E2205087FC2E2B22CC /* abseil */, + 925700B7B24F39C74F0A4AF6E3A2DACA /* Alamofire */, + E27F351507493D7DF06CD7867E8AF1E4 /* BoringSSL-GRPC */, + 844C180588E396DFA5130FABEDD388FA /* DeviceKit */, + 61DFCD29D3CDDBD915D946211AB08F80 /* FacebookCore */, + 79A7D5A3F8B097DB3AE15131CB1EEC40 /* FBSDKCoreKit */, + 14EC68C8A073F76F1282690C95BF40E2 /* Firebase */, + 217042A104E93F2244C5FE0192099033 /* FirebaseAnalytics */, + 8D936BDCFA67B915A9699193577821FB /* FirebaseAppCheckInterop */, + 309A7CC47E0A7F30EA0B3E4D344CC1D0 /* FirebaseAuth */, + 279DA641EFFE963437161C50513EC68C /* FirebaseCore */, + 480DE5787187268CF246C0C5E970B9CB /* FirebaseCoreExtension */, + 67C4E4E90FAB640727F677D62605A185 /* FirebaseCoreInternal */, + 32098C661D11CD2E2CD1AB10E2C3933D /* FirebaseCrashlytics */, + C4E76E2FBE1A0964B6DB55AB223571E0 /* FirebaseFirestore */, + B65CFB7BEE3D2F5D968C8ACC2EDC4E63 /* FirebaseFirestoreInternal */, + E7436F257DDA152E09DD447051FB57CC /* FirebaseInstallations */, + 450C9D10853BB2F1671F219B234D5CA8 /* FirebaseRemoteConfigInterop */, + B2C9A3BD2FE83D0557783A24835B15B6 /* FirebaseSessions */, + C45F9AD949DFC0ADCA197BF7C326CDC4 /* FirebaseSharedSwift */, + 9C43A504B649B0EBDA4539BA4169D804 /* GoogleAppMeasurement */, + D43B0A75DB5155ADFE4AB0C65F896855 /* GoogleDataTransport */, + E66AA396B628B5D179D7CC5B00434117 /* GoogleUtilities */, + 48C5AF2A979732557799037161576AB8 /* gRPC-C++ */, + 7759D29867886B17AB8E34E46F7A57E3 /* gRPC-Core */, + B2F9DF02A82C8BFEB47525A7C53E84DA /* GTMSessionFetcher */, + A24D1AC7563EF696DB8BE6FB8EBA1FAB /* Kingfisher */, + 36E3D7E174A0A629C539BDBDDE09513C /* leveldb-library */, + E24510D215C7F9C4B8E501FA98087275 /* LLCycleScrollView */, + 2BFEE6D7D6F04D15043669048601862C /* nanopb */, + 912EC1BBC72493565A41F812E883044B /* PromisesObjC */, + 5F179869DCFE1ADFEC0857998AF5E1DB /* PromisesSwift */, + D0F58CADACF9C00C3E202C35EED75756 /* RecaptchaInterop */, + 3FE8F6A9712F92DF136549FC049AEE21 /* SnapKit */, + BD19A305731EB4037A5E1F95ACB1A549 /* SVProgressHUD */, + 6891141FB7D7A9058E9466AE331F8CDA /* TZImagePickerController */, + ); + name = Pods; + sourceTree = ""; + }; + 14EC68C8A073F76F1282690C95BF40E2 /* Firebase */ = { + isa = PBXGroup; + children = ( + 18B91E930F531DEB4BEC57096553AE31 /* CoreOnly */, + 78858921E839A85BA5FD53BE85CB2366 /* Support Files */, + ); + path = Firebase; + sourceTree = ""; + }; + 168FF477A19A6F8EA01336E9F9F5A6A7 /* exponential_biased */ = { + isa = PBXGroup; + children = ( + 01F8E5F9B3E9D3DA26996F2512ACE2F8 /* exponential_biased.cc */, + A62B38ED755F685277B407ACC7759FD3 /* exponential_biased.h */, + ); + name = exponential_biased; + sourceTree = ""; + }; + 17DE4DF40709CFD27A7818962798DB75 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4ADC134AFC91AFAB4941FD245C8A1CE8 /* GoogleAppMeasurement-xcframeworks.sh */, + 29FEF5A146E61B5122404456B38232B1 /* GoogleAppMeasurement.debug.xcconfig */, + 82F48EB006D69AD3478240191F53BEF6 /* GoogleAppMeasurement.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; + sourceTree = ""; + }; + 1817DABB56CC11F6D312C869CABBF595 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8721FE381BF5A276CA6E216D071826AC /* FirebaseSharedSwift.modulemap */, + 5A916C4B617E1023880A9630F5180614 /* FirebaseSharedSwift-dummy.m */, + BD2AEEF7FD310AC1DCD7327BB5E5EE1E /* FirebaseSharedSwift-Info.plist */, + CB371D88CC400CB971674580643F9717 /* FirebaseSharedSwift-umbrella.h */, + 047F2F26E95C554D810EE3F9CF42D0AA /* FirebaseSharedSwift.debug.xcconfig */, + 289DDD66A0FB7A851AF7125BFF451F07 /* FirebaseSharedSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseSharedSwift"; + sourceTree = ""; + }; + 18B91E930F531DEB4BEC57096553AE31 /* CoreOnly */ = { + isa = PBXGroup; + children = ( + 60158504BFC0B01FBEBDCE0DCB6E5FA6 /* Firebase.h */, ); name = CoreOnly; sourceTree = ""; }; - 14C983AB25961CF9C8ACDF8C87E61B0F /* Support Files */ = { + 1A08F8D067D3FCEF793A9AAB75B4AF25 /* endian */ = { isa = PBXGroup; children = ( - 18E4375517D5164BE1420280259F53B8 /* FirebaseSessions.modulemap */, - A02E7A4F1F16616D91BA311DA3F919B7 /* FirebaseSessions-dummy.m */, - EED2036FCA5C5947D4891C7B8DAF233D /* FirebaseSessions-Info.plist */, - 6ADA7AE9FF75C014CA562848F342BF34 /* FirebaseSessions-umbrella.h */, - 3598BF1355655E8402A48B74A93A50EF /* FirebaseSessions.debug.xcconfig */, - 7F635222090DD4783E8BCDB96A30240F /* FirebaseSessions.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseSessions"; - sourceTree = ""; - }; - 150443960B174D5173131170097189E7 /* kernel_timeout_internal */ = { - isa = PBXGroup; - children = ( - F846FDD9DCE5D0623A1289777AC1BB75 /* kernel_timeout.cc */, - C92C331DBDE8A548D03C2ED559AEC7A8 /* kernel_timeout.h */, - ); - name = kernel_timeout_internal; - sourceTree = ""; - }; - 16205EFC6762435995E98C85E0CDDFBE /* charset */ = { - isa = PBXGroup; - children = ( - DDF3A7DC0D03217AC4D44C5383C07044 /* charset.h */, - ); - name = charset; - sourceTree = ""; - }; - 180A1F36203521A1EDA599F0E8FD3DE1 /* PromisesObjC */ = { - isa = PBXGroup; - children = ( - A682A7F7D68084F0A80EF11359B06149 /* FBLPromise.h */, - FC1B12D5090D2E4C7503AE645758F7B3 /* FBLPromise.m */, - C6BA8EA121F23E4227868B89E98A82B6 /* FBLPromise+All.h */, - C30BB248D20BBB43D15F6901FC8FE692 /* FBLPromise+All.m */, - D22075F997C58D0A5FE641D295895A6D /* FBLPromise+Always.h */, - EDB6A3066D8973D7862E37CA939C8EDE /* FBLPromise+Always.m */, - 37B135243A0E16B216C08EB4D3B05023 /* FBLPromise+Any.h */, - 3A6B55996336A7AC996E0C3156387F60 /* FBLPromise+Any.m */, - E91686146DA62C09E58F11CEC5D16C62 /* FBLPromise+Async.h */, - 7197501FAB09CF105CF85818B4ADBED9 /* FBLPromise+Async.m */, - 51B25656BE42ECBE2876CFB1FAD04915 /* FBLPromise+Await.h */, - FD62213CFF500C01FB415E9010C01755 /* FBLPromise+Await.m */, - 4261C8607B9122675FB72A04F6DBF319 /* FBLPromise+Catch.h */, - E0B4AB7DEDFB1E145A4C5DA064B5E5B2 /* FBLPromise+Catch.m */, - 4993B2073990B4B0C8D7EE28D87D4CB5 /* FBLPromise+Delay.h */, - D94D5A84F6EC3B307CC9D800BC3BCFFB /* FBLPromise+Delay.m */, - E03F826E70301F30A1D5769DE79008DD /* FBLPromise+Do.h */, - 347733DE9302F7F725613942AE441076 /* FBLPromise+Do.m */, - 7447848FD17E63A1310B231DF10B6E0B /* FBLPromise+Race.h */, - 87EFE9C512AE6675F4209B90275BE809 /* FBLPromise+Race.m */, - 02250B05FFE0D6443F1208F07198C570 /* FBLPromise+Recover.h */, - 73192DD14CFF2C4226F21FB31CDA00E3 /* FBLPromise+Recover.m */, - 3B4A419F7760008A17F3AC6369A4B37D /* FBLPromise+Reduce.h */, - F07FBC258AC7598B114B459F96EA7E33 /* FBLPromise+Reduce.m */, - C2CAD2C718340086346B800F82CEA25E /* FBLPromise+Retry.h */, - E2EABA3DABF95C97EAE5AB4DBE52902A /* FBLPromise+Retry.m */, - 85BEC225E86C639B7E4DB7C88D5023C4 /* FBLPromise+Testing.h */, - 83E3BCB56DB1765F8397841829D59D48 /* FBLPromise+Testing.m */, - EB71F7060219044546B40B32873F9A5F /* FBLPromise+Then.h */, - 887474F99472FC9379A96708B39E5BD1 /* FBLPromise+Then.m */, - 92CE0FEE580CCC0AF1524AF79A4C092E /* FBLPromise+Timeout.h */, - BAA126F07CE4089DA739711403FBF96E /* FBLPromise+Timeout.m */, - FA8690D14027B29E173EE3FEE4DC2066 /* FBLPromise+Validate.h */, - D1E448FE672FB4BF16CDA909AB5BC865 /* FBLPromise+Validate.m */, - 2096E2C313DC827C2B844A82B97A97EB /* FBLPromise+Wrap.h */, - 6D7204E0905990748D9F67710E2FF835 /* FBLPromise+Wrap.m */, - 7FF65F4FE5270B6BA89031CEB3099FAB /* FBLPromiseError.h */, - 6AC40C6760E8D5B065F91BF7EEA6F3C7 /* FBLPromiseError.m */, - C99678D1D61C2569A59617714247C03F /* FBLPromisePrivate.h */, - 6E1596ACDF03BF4DCEC71D9C726DB0E8 /* FBLPromises.h */, - EED3B37B1F1099447E7196FF6D70D2C9 /* Resources */, - 29CDCA7FC4FD4EF9316D965B6200BB19 /* Support Files */, - ); - path = PromisesObjC; - sourceTree = ""; - }; - 1898ECD0F11E8FB4B22C18E61C90662E /* crc32c */ = { - isa = PBXGroup; - children = ( - 719293D394917F50F8F12F1ED6808867 /* crc32c.cc */, - C9C757EBF98072C2040A0E7C45B277CE /* crc32c.h */, - D46647395605F700FB587EC4049181E8 /* crc32c.h */, - 160FC5E28CC9C995F284163D93EB65FC /* crc32c_inline.h */, - 151FA806C4E1198323EF9248429168F8 /* crc_memcpy.h */, - 539B8E307FA7C2ABE77EA5847180BDEE /* crc_memcpy_fallback.cc */, - 6CEF51CAFE1A4CA2008B17D6BA5DDC1A /* crc_memcpy_x86_arm_combined.cc */, - D7A93A58DFA88698EBA95AB68D078B20 /* crc_non_temporal_memcpy.cc */, - ); - name = crc32c; - sourceTree = ""; - }; - 19AE28F4103AAB660A34668641C2CA14 /* bind_front */ = { - isa = PBXGroup; - children = ( - 3A13F4D60E2D6E3F48591294B14C9AC2 /* bind_front.h */, - 0CEEB958A67B6C896ADC0152A69919BA /* front_binder.h */, - ); - name = bind_front; - sourceTree = ""; - }; - 1B50AF709A82AF71D85FB14CDEFC13FD /* distribution_caller */ = { - isa = PBXGroup; - children = ( - 263D637C42A0FF6B25083C4576D4EAEF /* distribution_caller.h */, - ); - name = distribution_caller; - sourceTree = ""; - }; - 1C7F190B74558C92133989C5BD45764E /* endian */ = { - isa = PBXGroup; - children = ( - F049AF46D7E1FFB877D74FCE27E801A5 /* endian.h */, - CA3EE28933BBE5CC605293280C611EB1 /* unaligned_access.h */, + 879BF7FB57EE9B72BD1E23ECF9182319 /* endian.h */, + 78D6477D47444CC4086FB290AD1948F9 /* unaligned_access.h */, ); name = endian; sourceTree = ""; }; - 1C902E1D6FE13992FD48BC28091A23A2 /* bad_any_cast */ = { + 1B4BB927B76E609A9E831BF7F300F2D3 /* nullability */ = { isa = PBXGroup; children = ( - E8673BCFB168B463464E316EDBE5265B /* bad_any_cast.h */, + 05977AC6E52E035F9ED2B314C8FF883C /* nullability.h */, + 983916D434DD03077B1CCAD346CA433C /* nullability_impl.h */, ); - name = bad_any_cast; + name = nullability; sourceTree = ""; }; - 1CA76E96A290B40EC62313ACE17AB89E /* MethodSwizzler */ = { + 1CB4A10D6F09B631C2353678AAC0A77B /* fast_type_id */ = { isa = PBXGroup; children = ( - A80017990FDD0D565AB30333B592160F /* GULOriginalIMPConvenienceMacros.h */, - BBA2DCDDD46036A1A1838B0B9D04F8AA /* GULSwizzler.h */, - DB0A71F300E3A41878E46A155CD494D2 /* GULSwizzler.m */, + C30552A34197B5AB208AC1E6E2777D47 /* fast_type_id.h */, ); - name = MethodSwizzler; + name = fast_type_id; sourceTree = ""; }; - 1D51E068D1972A774D61E02253E4DCF7 /* FirebaseCoreInternal */ = { + 1ECEC3FBC906AFE5AA338BCB5B3A8863 /* types */ = { isa = PBXGroup; children = ( - 8EAFE04ABA3C695D819D3C57B14E5121 /* _ObjC_HeartbeatController.swift */, - FC813092B90CCDE3DC10D49F712B1A8F /* _ObjC_HeartbeatsPayload.swift */, - 38E0E963F0AD04D86E66D760FBFEF21F /* Heartbeat.swift */, - 4F032CDA691A85CCBEC57CB83A6B6691 /* HeartbeatController.swift */, - EBC92DB2407169DCB54842DD27E54FD1 /* HeartbeatLoggingTestUtils.swift */, - 111FB7A06FC40B80A398D08F4225ED85 /* HeartbeatsBundle.swift */, - 56ADE3FF187A833809DC4420918D65D9 /* HeartbeatsPayload.swift */, - 7D55F1817A60C46B3FE172D98147EF5F /* HeartbeatStorage.swift */, - 0D13550205E15058E4DE74180B3B2D10 /* RingBuffer.swift */, - 8163C86ABA32E8F3D609F00F6CF077A1 /* Storage.swift */, - F004BDBC0ABE682B3238E8E94E0C888B /* StorageFactory.swift */, - 32E2B7B237541C5F2C5C54D3530FF9F6 /* WeakContainer.swift */, - 0CF80EBF01DD22821B8743CE68D6CEC6 /* Resources */, - D4874ED18047B5F97A4ED97DBF125D1C /* Support Files */, + 7E0A4048B08C6E42CB374DC04B20EBB9 /* any */, + 6AC5C8B659C3F0922D51CB7DBC32396E /* bad_any_cast */, + D62A814DC065AE123FC1B68929249E6B /* bad_any_cast_impl */, + EB65CAB13B9BBF223BAAA7FD4F8A6562 /* bad_optional_access */, + AB8072CDCAF57F019BF928E391B830C8 /* bad_variant_access */, + 70762765D04D6B3C7F152FC96D9F46B0 /* compare */, + 67A824EED8F21491797C49BDA7AFC93E /* optional */, + 0F301C79E31A069F5159A556685FFF0E /* span */, + B9078E8562518E5FA20362B0478DDC48 /* variant */, ); - path = FirebaseCoreInternal; + name = types; sourceTree = ""; }; - 1DA6352471B85F88D5F477FDECCB3213 /* Support Files */ = { + 20007ED2B3AF1136A421FFB7DA6FB8DA /* inlined_vector_internal */ = { isa = PBXGroup; children = ( - 7F8C12474AD766744E08F1D214820A29 /* FirebaseCoreExtension.modulemap */, - B604762EC85770D7D0F83401C6297544 /* FirebaseCoreExtension-dummy.m */, - 9E8710F93E428835E61AF8DC8EC5AE55 /* FirebaseCoreExtension-Info.plist */, - 5668D87FD2CA35000702133C451D94BC /* FirebaseCoreExtension-prefix.pch */, - 22ABDCCA5BD111EE349FD36AF8470271 /* FirebaseCoreExtension-umbrella.h */, - 7D7FD3C02C27E46FD6E315F850294B64 /* FirebaseCoreExtension.debug.xcconfig */, - 05D31CA8002EABF11F6706D2A32DF1E1 /* FirebaseCoreExtension.release.xcconfig */, - 8171350A452B20A759ADA4B1F6DA0414 /* ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist */, + F98F11CD6DA6F81B59DE28F68CC0C038 /* inlined_vector.h */, + ); + name = inlined_vector_internal; + sourceTree = ""; + }; + 217042A104E93F2244C5FE0192099033 /* FirebaseAnalytics */ = { + isa = PBXGroup; + children = ( + 6A2F991FD2496F422CCEB772168F611C /* Support Files */, + 59E98A7AB8FD3D33617D05A0491ED6BC /* WithoutAdIdSupport */, + ); + path = FirebaseAnalytics; + sourceTree = ""; + }; + 24EB59981BBAADA3F09B7F0F4FB10CCF /* Support Files */ = { + isa = PBXGroup; + children = ( + 789926E6076FF10CDBBE0B797F5F6550 /* DeviceKit.modulemap */, + 1D7480901E295BF8DD5DC11FE2107F87 /* DeviceKit-dummy.m */, + 4F98E1C7D032CB225DF2F711D7FB6C85 /* DeviceKit-Info.plist */, + DB29F74298BA85E9F53DFDD41ADF385E /* DeviceKit-prefix.pch */, + DEF1A21884F97039426B69313CE637C7 /* DeviceKit-umbrella.h */, + BEEA1D91F1A5CECBA15AAB31C6A2900D /* DeviceKit.debug.xcconfig */, + A5C6F1AF81DBD5C3450AD7395D4BA011 /* DeviceKit.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCoreExtension"; + path = "../Target Support Files/DeviceKit"; sourceTree = ""; }; - 1E09197D75E7AF25B3D7D736455A9A26 /* Support Files */ = { + 25269612E0F16E86C89FBDCBE8268C62 /* cleanup_internal */ = { isa = PBXGroup; children = ( - 1CEBA51A9404290E37F3D56BA27C74D0 /* BoringSSL-GRPC.modulemap */, - FA4366AAF1EDC94CFE2D5CE158646A2F /* BoringSSL-GRPC-dummy.m */, - 0C746E015A41906E90F5B10E1C429FD9 /* BoringSSL-GRPC-Info.plist */, - FB4B3208A65F10B41E30B37B80DDA7F4 /* BoringSSL-GRPC-prefix.pch */, - F3B2F53CA631FBD7E2F052B6A9A67607 /* BoringSSL-GRPC-umbrella.h */, - 465D0A78400008BC50ABBD8A5A3E1768 /* BoringSSL-GRPC.debug.xcconfig */, - B1D272591C32A4B39E06C93CA7546827 /* BoringSSL-GRPC.release.xcconfig */, - 37188B652ED376E32E94371F71535651 /* ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist */, + 39D56CAF3393FAC9D5B03AD7DE38594F /* cleanup.h */, ); - name = "Support Files"; - path = "../Target Support Files/BoringSSL-GRPC"; + name = cleanup_internal; sourceTree = ""; }; - 20E207996F698ED7A76451A994218754 /* demangle_internal */ = { + 256311B3673135E65862E6D2D53A9A8C /* sample_recorder */ = { isa = PBXGroup; children = ( - D00ED782D2ED8BF816BD43910A57BCA7 /* demangle.cc */, - D64E422DBC9A48EE14D7984F0DDE3EDF /* demangle.h */, + EE707B7EE321E5109F395633282CBD88 /* sample_recorder.h */, ); - name = demangle_internal; + name = sample_recorder; sourceTree = ""; }; - 2422B5C9822E596122EDC29F4442C235 /* common */ = { + 26796BABB89F4D50C9AC0FD688934300 /* hash_policy_traits */ = { isa = PBXGroup; children = ( - BDB9D4F62C5662F38B7D03B6116FDB80 /* common.h */, + 03B2A56D288CC6C14F95292DBF052DB4 /* hash_policy_traits.h */, ); - name = common; + name = hash_policy_traits; sourceTree = ""; }; - 25D829D4539F08C8B9F65F3F8C4E3C6A /* raw_hash_set */ = { + 279DA641EFFE963437161C50513EC68C /* FirebaseCore */ = { isa = PBXGroup; children = ( - C40CBAA8624C1351192075B83DBCB11B /* raw_hash_set.cc */, - EEBA8CD3A7488734ACD7D5CAAF109496 /* raw_hash_set.h */, + 94E776CA55E6431CB4C85EC82BD5FB6E /* FIRAnalyticsConfiguration.h */, + F1DB0A0DAFD6AD64E4820ACD528C9881 /* FIRAnalyticsConfiguration.m */, + AA61E48E6810428B2C1035760308EE06 /* FIRApp.h */, + DE39B18CCF65D75823BA243310C9155B /* FIRApp.m */, + 804C6E0C9AA4CED2E0898F110D415951 /* FIRAppInternal.h */, + D51B7A5433BA7BFDB3799232037D6D50 /* FIRBundleUtil.h */, + 403D8D41C7A33C698716C3B96EB2CACC /* FIRBundleUtil.m */, + A5E758399C9E1ACCDF32F114E98201AB /* FIRComponent.h */, + 61ACA193D0CD3933B5F777AA94310D59 /* FIRComponent.m */, + 89F4576A48160D5D6ED43C610F6D6139 /* FIRComponentContainer.h */, + 9774DF2663F266C7D9A59850627C4E49 /* FIRComponentContainer.m */, + A82ECAA8514DF1CC2D8A1C937A7A0E5A /* FIRComponentContainerInternal.h */, + 176A5B0F66088EF526E7876B5D3CA5DB /* FIRComponentType.h */, + D98159C7631CA0402C03160FD98D0081 /* FIRComponentType.m */, + A6AA4A7FF0E2090319017EE65CC03C55 /* FIRConfiguration.h */, + B0CEA750A3AFE2CF950ACB69E12220CD /* FIRConfiguration.m */, + C6ABDF795A7707C057F692B4F5EC67E7 /* FIRConfigurationInternal.h */, + F75BC40316297BBE577D05C77566AEB4 /* FIRDependency.h */, + A819860B34E071FD7B8FEDAF1601EC79 /* FIRDependency.m */, + 62C99771727415A48B095F5BE2DC228A /* FirebaseCore.h */, + F9EA4BD554F41CCAF6CF9158BEDFB344 /* FirebaseCoreInternal.h */, + 7463DEC1F79B7AAD20A235ED86F8BED9 /* FIRFirebaseUserAgent.h */, + 2D894C1A02B516E940D5CC22F6D43402 /* FIRFirebaseUserAgent.m */, + 1EA7A69A64E92C39A6707BFD38EEF88A /* FIRHeartbeatLogger.h */, + 05625DA5F6551E56754387F4F2CB0DEB /* FIRHeartbeatLogger.m */, + 3C9A7ECCB97423F9FE82976867609E4F /* FIRLibrary.h */, + ECEB7AE786DD575BBB1F39828512CE86 /* FIRLogger.h */, + BFCC4F63F21D10180B14C88ACA2E5432 /* FIRLogger.m */, + D7E21BF5A1E5067D5E6D1289575E7F4C /* FIRLoggerLevel.h */, + A27F6F670AD603543AF9D3469C62E817 /* FIROptions.h */, + B82E3924A002E35AA886E8DB4C229475 /* FIROptions.m */, + B40028E058636EB9C0AB271FCD1CC7D8 /* FIROptionsInternal.h */, + DB8316E432F2F68A3FB751F6C7977074 /* FIRVersion.h */, + DE525DE310B2F098CF48A3C6A4F4AE1B /* FIRVersion.m */, + F0CB0EB5993E466A6172F6083B0F49D7 /* Resources */, + 59EE754E9B1D82FE8C464563AB8739D7 /* Support Files */, ); - name = raw_hash_set; + path = FirebaseCore; sourceTree = ""; }; - 2600F29BC8427DD5F33466FDFA720299 /* Support Files */ = { + 2A66FD6CB9E31E73FF4F43689F908AC5 /* charset */ = { isa = PBXGroup; children = ( - 36DA093D6703A4A9C1E1BA05C46323AC /* gRPC-Core.modulemap */, - D440C0FFFDA62BE0B42C461B8DB0AD75 /* gRPC-Core-dummy.m */, - 5C6AB6FB7B3C41DB504B47F4D5B03269 /* gRPC-Core-Info.plist */, - 92F650CDA50D47114A00A5C4B1BDBB10 /* gRPC-Core-prefix.pch */, - DC24A11CA0792F7DA0562E8628A5F7B3 /* gRPC-Core.debug.xcconfig */, - DB065A20CA8E7B83FEE62251A3091140 /* gRPC-Core.release.xcconfig */, - 14A6D76C8E0983848AC4F48D10FCBA0A /* ResourceBundle-grpc-gRPC-Core-Info.plist */, + B2332B067CC1E5D41E956DFA7CE6E4FA /* charset.h */, + ); + name = charset; + sourceTree = ""; + }; + 2BFEE6D7D6F04D15043669048601862C /* nanopb */ = { + isa = PBXGroup; + children = ( + BA1343591B4DB115A0FBA1ECD717D5E6 /* pb.h */, + 9644B863DD73F84044058164F29CDC01 /* pb_common.c */, + E60734FA3CA3A02F0AEE16B144ED4406 /* pb_common.h */, + 4073F45F433A75DB075AB959A7EA949B /* pb_decode.c */, + 91F00F858C3266D46B9A4A3A5D50EB34 /* pb_decode.h */, + 1A115225F337AF96B45227130D76530A /* pb_encode.c */, + 955219FAFC978518827F400018832DD8 /* pb_encode.h */, + 8DE16C1FC64D47E3D5A29664EB1B0B59 /* decode */, + 43C4D439CFA4E2AA7A4C3A990D94CAFE /* encode */, + 446E76CC17B6A55B6C849AD8B4E7AB98 /* Resources */, + 68C55C0FC5695A0D9374DEFC3CFC5B95 /* Support Files */, + ); + path = nanopb; + sourceTree = ""; + }; + 2D7241725BBCAF56CD837EB29B96AB4B /* Core */ = { + isa = PBXGroup; + children = ( + 9914A7AB404BB98EDBD9B8AF78C4D883 /* GTMSessionFetcher.h */, + E1BBEC042B97610F777FD587F1892F2A /* GTMSessionFetcher.m */, + A57226099BD7918CD8488CA9D8BC5D05 /* GTMSessionFetcherLogging.h */, + C13D3A5FA6BB6517C241B310DD4CF012 /* GTMSessionFetcherLogging.m */, + 6791D7D0906C616F30778E2E319CBB13 /* GTMSessionFetcherService.h */, + 17C08E758376C88420230E29B0D2E0D0 /* GTMSessionFetcherService.m */, + AC059B96F9DADED28310C06307B6C584 /* GTMSessionFetcherService+Internal.h */, + F540479D04DB0550BEBDE6CA957DCFDD /* GTMSessionUploadFetcher.h */, + 8011E959B383EBA41BF99E35077EF089 /* GTMSessionUploadFetcher.m */, + 7AC86D773AE0827E2445DEF100C0FB12 /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 2DCB37527099A23508C335124198418F /* randen_engine */ = { + isa = PBXGroup; + children = ( + C4E8D94110232E7FA5FE2602D231A19D /* randen_engine.h */, + ); + name = randen_engine; + sourceTree = ""; + }; + 2EAC616DDDB06CE0261CDD392C34E38A /* compressed_tuple */ = { + isa = PBXGroup; + children = ( + 64E480B17940154F4D8AB853CA61DA4E /* compressed_tuple.h */, + ); + name = compressed_tuple; + sourceTree = ""; + }; + 2F220612910319B892B3B276E02BBC2C /* Support Files */ = { + isa = PBXGroup; + children = ( + A4CA4DB4EE6A0BFA360F8C06680B25B9 /* gRPC-Core.modulemap */, + 65E5710FA4A909F203090C71AACADD20 /* gRPC-Core-dummy.m */, + B6D493F5CB5B01BFFF16400B605D29CA /* gRPC-Core-Info.plist */, + 60B2365C89C5F58FF0F2D567D0FDFC17 /* gRPC-Core-prefix.pch */, + 57B06644B6731D11257AE4BFF125B918 /* gRPC-Core.debug.xcconfig */, + 90CB2C8610D6807D82893381C51AB9E5 /* gRPC-Core.release.xcconfig */, + D8F117F0D7126607D3FEAFA3A155B459 /* ResourceBundle-grpc-gRPC-Core-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/gRPC-Core"; sourceTree = ""; }; - 274D55B94FA89A0CCE120B10144ED21B /* FirebaseFirestoreInternal */ = { + 2F808DD68A316388B5252751AD079E75 /* crc_cord_state */ = { isa = PBXGroup; children = ( - 1B9E8FE671FCA59B8901B97300BE99E7 /* aggregate_alias.cc */, - 861B620F28601DA1084B058484324305 /* aggregate_field.cc */, - AA91FA3C11A5964346D60B09F7C6F10B /* aggregate_query.cc */, - D432FFE671448C21B753D312F238EBB8 /* aggregation_result.nanopb.cc */, - EBA4ACEF55FA58BC2433B5E847E19A40 /* annotations.nanopb.cc */, - DF10070453D09E435D1DFC6C01843593 /* any.nanopb.cc */, - 3D649FFCF03ECFBF68AA1171E0DA7ADD /* array_contains_any_filter.cc */, - 1570612292ECFCB5B4B643636ED8F08A /* array_contains_filter.cc */, - 5596F0A7024710ED725B78416F0E9F57 /* async_queue.cc */, - C90058BB94ECFB6B899BF59774FD0AD8 /* auth_token.cc */, - 1746E78D4E8B316B6436E79E60A2A543 /* autoid.cc */, - 5BDEF9741323B89C97E039291A13B36C /* background_queue.cc */, - C0B4FEC44D8996FF35FE89528641A9B4 /* bits.cc */, - FE6F4F6357995F21DFDE05BE6780A1C9 /* bloom_filter.cc */, - E6650D8FCA693D63F813841B0F052B3C /* bloom_filter.nanopb.cc */, - 9FAD8EFF84B65C2CD55E1E64BDFECF74 /* bound.cc */, - FE6CBEED5E2F5E8A73040DAE226FDE5C /* bundle.nanopb.cc */, - A8A33D2ABDF42BFB49A0F7F9AD718FC6 /* bundle_loader.cc */, - F0789593703FE8FA228D7B42CF50C482 /* bundle_reader.cc */, - 52BAB80BA1942EAAB99F48DAFB6B648B /* bundle_serializer.cc */, - 87380BFDBEA90E469C770387535456C4 /* byte_stream_apple.mm */, - 144B08003C35F5A8986BEC04A49D11D5 /* byte_stream_cpp.cc */, - 138D056671F7E47D9307578D174AF8D9 /* byte_string.cc */, - 239BA181F4C8D5AA23540E60EAF62F2C /* collection_reference.cc */, - 05E0EEF77540E831F98213A8C8776ED8 /* common.nanopb.cc */, - 82CDC8093663D6BCE3E03FDAE407D992 /* comparison.cc */, - C4031F92AD885E549FC655842B7C488F /* composite_filter.cc */, - 68D4401C6D7972CEAD895323626D3AC6 /* connectivity_monitor.cc */, - 4CFA4E39C49D79D5B3C58E9877272EBA /* connectivity_monitor_apple.mm */, - 54BA46A5AF3A0568F7A5DFEEB324A896 /* converters.mm */, - 5DDD441CBC2F65EBD6B417A61899F5DD /* database_id.cc */, - A6EF103A88DE89AF362ACF0F7C8704B7 /* database_info.cc */, - 767F51B8A3EB779C830980D5E8DE5EEF /* datastore.cc */, - 982D02FA6C13FFA78FBBAA16672EF323 /* delete_mutation.cc */, - AE895694410F0A9D7B0448A06943CE25 /* direction.cc */, - 8672752CFB1EA47BF1ECB4113BA878D2 /* document.cc */, - F702ADC3300AB5BE2E82C1533D1B11DF /* document.nanopb.cc */, - 9C9A01B945E550D410CDF8C6F3F6B60F /* document_change.cc */, - E80DF185130B2DDADDBCE50CF6B7727B /* document_key.cc */, - 9E13FE14348F63BA542C41282462F3B1 /* document_key_reference.cc */, - 5AF7E1EB74C8873C1898828FE4F7AA38 /* document_overlay_cache.cc */, - 43641668F8FD7CCF7679515CB03BB5B8 /* document_reference.cc */, - BD22F61EFD01D9BAADEF086C4E3B10EF /* document_set.cc */, - 7DD131749416BC597FD6474D479D6A13 /* document_snapshot.cc */, - 03F490FFF2550649C51BFF44840003AD /* empty.nanopb.cc */, - 0740CC3E1AE2275F7CECFB9577719DA8 /* error_apple.mm */, - CB49D17E39CFD7A959DD3DEB1E70E5A0 /* event_manager.cc */, - 977B1E2D16089A838B7948DFA2E8551E /* exception.cc */, - 53A5CB24F2F06925103751C58D89CA08 /* exception_apple.mm */, - 292C6DDE5F230FACEFBB507C7142BF7D /* executor_libdispatch.mm */, - 0AE27C04E5F166C6FAF19E2EED81FCEE /* executor_std.cc */, - 8997549353FBAC7EC7656FAB68EF69D9 /* exponential_backoff.cc */, - 15FA300653B268BC0F7518AC36750A30 /* field_filter.cc */, - 79297B939F52EAE0DBEE9196D168CE25 /* field_index.cc */, - 02817080FDF75AA4895B41A1D6A480A4 /* field_mask.cc */, - 74DD722D02411C88356D732E833A8816 /* field_path.cc */, - E6656E1E6001DD5DEAF61E8F242AAD0F /* field_transform.cc */, - AF59B852F9AB0BD693F743C3ABB7A72D /* filesystem_apple.mm */, - E6F538036EBAE5BEE0501E43E67569ED /* filesystem_common.cc */, - 37D28AAF6E29468528673914023B6F3C /* filesystem_posix.cc */, - 891955C5376C2EF0B2A5B9025D6471EA /* filter.cc */, - 32ECCCA1F57EECEBD4FA168DBB5FAAD3 /* FIRAggregateField.h */, - 6E7F136133AD485C5E062BD962922D86 /* FIRAggregateField.mm */, - 5C86CDB25A18E55541582F14CB36CB4E /* FIRAggregateQuery.h */, - E2ED150A8E4CC297DA9E22EDEB14154E /* FIRAggregateQuery.mm */, - 2666D9209A88E682621EAB951B276637 /* FIRAggregateQuerySnapshot.h */, - 29E43CEB87BCD334FA1878279B8463EE /* FIRAggregateQuerySnapshot.mm */, - AEC74B617926B69A0B3FE84EC2AB2442 /* FIRAggregateSource.h */, - DEB5656641F8294B71DCF77A0276BDAC /* FIRAppInternal.h */, - 58A585B4BB8333BA259CC81151327B37 /* FIRAuthInterop.h */, - 73701278B95DE1E3012ED799337AE831 /* FIRCollectionReference.h */, - 2430350EB4D22C4E96B0E574909CF5FF /* FIRCollectionReference.mm */, - 61C62C974C85D924F1B4A1C89DB37A29 /* FIRComponent.h */, - CE6A49AE2F5773F38906A31DA8F60BDC /* FIRComponentContainer.h */, - A165CA7A8B31994953AAFA6B786BC9C7 /* FIRComponentType.h */, - C1947919B594167EA34376275D5DC349 /* FIRDependency.h */, - 30EC2D99909FF69C253823578062D319 /* FIRDocumentChange.h */, - 4B20A89A0FBEA678ACDEE2D5F5CCD901 /* FIRDocumentChange.mm */, - 451D79DE50BA4E891CB3530A5AE55229 /* FIRDocumentReference.h */, - 1FE583B87EBE7D69646ABB37D7A157F3 /* FIRDocumentReference.mm */, - 97266B6C234294648E5FDB1C52BBD4D7 /* FIRDocumentSnapshot.h */, - 503311B2A37E31A2005E398D03B65D22 /* FIRDocumentSnapshot.mm */, - 1E32052DAEECD5CFEB0E47269D05BF40 /* firebase_app_check_credentials_provider_apple.mm */, - 8DFF792548DAD2D3D2839840218FDFA4 /* firebase_auth_credentials_provider_apple.mm */, - 37EEB5FFA86F40FDE6CC1AF7B3E591E7 /* firebase_metadata_provider.cc */, - CF49F3ACA73B4389A51A46159D9B4F5F /* firebase_metadata_provider_apple.mm */, - E701179F44AAC7684628492400AE67C5 /* firebase_metadata_provider_noop.cc */, - D7EA3BC381F3CC4DEE6AEF3A9A2C5BC3 /* FirebaseCoreInternal.h */, - 3D88A946CE98588A2FF205D3B7AB9C71 /* FirebaseFirestore.h */, - AB192D6B7656DABB9AA01BD4CD4ECA1A /* firestore.cc */, - 9FEEE2F54D1453B2E937414B9DA9239E /* firestore.nanopb.cc */, - 2CBF8B4190451FE8304731CE7391A226 /* firestore_client.cc */, - F89C51306B06A37DBCB30484ED4DB30B /* firestore_index_value_writer.cc */, - 21EC4AAE364E8BB58DB35C1EF5900911 /* firestore_version.cc */, - E58D18013E17C1BC5BF209826C53E04A /* FIRFieldPath.h */, - 938AE4540950D5C68F3CE3B9A066E587 /* FIRFieldPath.mm */, - 8D0EB057068F2DD0F1271BC67B0CACBB /* FIRFieldValue.h */, - 21A295181F786E99B850D5B7D0913ACC /* FIRFieldValue.mm */, - A4A24E6DA094FFECA52FEC97EBFBE805 /* FIRFilter.h */, - 20961AE346FD5140550E27BE9C3BAF2B /* FIRFilter.mm */, - 577CD40953505E5E5F586A51673AE54A /* FIRFirestore.h */, - 614A9A9E7CD54012A209A39BE6A07F21 /* FIRFirestore.mm */, - 444F9E86E85072103EF6C6FCF575B273 /* FIRFirestoreErrors.h */, - B710800662F5999851D61113E8B6EB14 /* FIRFirestoreSettings.h */, - 218E5F564264978AB14947774F6CAE92 /* FIRFirestoreSettings.mm */, - BA31AAE794BC4ED768090F0B7037A661 /* FIRFirestoreSource.h */, - 4CA7BA7E8F0F29BE1AE69E857AC9D92F /* FIRFirestoreSource.mm */, - 5F745F145220173684C47AA36E1D7FE1 /* FIRFirestoreVersion.mm */, - C3B9EEF88483D909591152478FD34657 /* FIRGeoPoint.h */, - 8CC0637667095CD77B381B1741213648 /* FIRGeoPoint.mm */, - C124D9E81A0C2736EEE1C2214ADF4B87 /* FIRHeartbeatLogger.h */, - 10C5F5161ACB4A1A67563B7F629C0BD3 /* FIRLibrary.h */, - 9B643B485BD0D4D43BC8B737DCA5A01C /* FIRListenerRegistration.h */, - 0D929B74670417117816775AE3D5FED0 /* FIRListenerRegistration.mm */, - E13FFFF8AEABA4F4DC9AD9F1114D8485 /* FIRLoadBundleTask.h */, - DCE1ECE6485C645D52E3847C3EDB7DB5 /* FIRLoadBundleTask.mm */, - 4E9569D5E7E10743A42EBF3430103A19 /* FIRLocalCacheSettings.h */, - B355B8835E022E15E98DEFA149A073B0 /* FIRLocalCacheSettings.mm */, - EF12AE4B79F5F4CC33DBF2454948D424 /* FIRLogger.h */, - 4426D007C0D82457D06C2D39FCA79630 /* FIROptionsInternal.h */, - E98C0A7EDA425994F025AA5A46F17C6B /* FIRPersistentCacheIndexManager.h */, - 2968823C884FCD339F7738A40BDBBFBF /* FIRPersistentCacheIndexManager.mm */, - A87EB8F929B4903A6CDE6FD793B7DEAF /* FIRQuery.h */, - 0C7F7733291D4F627015FB23CBDB6C9A /* FIRQuery.mm */, - 65570E28F822E53E33E78FCFF9AF541A /* FIRQuerySnapshot.h */, - D9269680F19991C0D119C402CE16A238 /* FIRQuerySnapshot.mm */, - 9A50729FFD398CEF2927DDD41610A34A /* FIRSnapshotListenOptions.h */, - 0C188F1FC7F893BE29E808705979B0DA /* FIRSnapshotListenOptions.mm */, - ADDE56EAC91134005F7AC286D7290DA3 /* FIRSnapshotMetadata.h */, - 70E7F0FB768F0530161D122CF8EBA525 /* FIRSnapshotMetadata.mm */, - D296465B4062A6F08CE88B5DCE57900D /* FIRTimestamp.h */, - A64E9B9335EC45AF9D5D13AC8E79DE13 /* FIRTimestamp.m */, - 09EB730AC1BB16B0F347CFC41AD002D0 /* FIRTransaction.h */, - F6D1B6D0C1E1A22D4FB5CF4A13493394 /* FIRTransaction.mm */, - A71CBF56FC3991FD888B7A98D63AC224 /* FIRTransactionOptions.h */, - 7BDAE613E4AEF8D2005308EB58A49233 /* FIRTransactionOptions.mm */, - 5F99E6B874D1AED47146BDE761F6DD05 /* FIRWriteBatch.h */, - 6AFA0D1961AE2EB70970F29FE27ABAA8 /* FIRWriteBatch.mm */, - 86D43A2A14CEFF459AC5345025B08A0F /* FSTFirestoreComponent.mm */, - 787CD901135AE2AEA021161C134FBB25 /* FSTUserDataReader.mm */, - 1DA47D780569DD5B8B60467DD4A769C6 /* FSTUserDataWriter.mm */, - 3B53810B3C59B350FB1DBA82D45689E0 /* geo_point.cc */, - 5911A5C81FD240DC9358C8DE7EF00F47 /* grpc_completion.cc */, - 14B030B5028EF1FC4B9AD5A55D621BB2 /* grpc_connection.cc */, - 5601741ECAB00B6C03B9D59B2A5698D9 /* grpc_nanopb.cc */, - 9ED33DA2ED0AEAE52881E172A79B8C85 /* grpc_root_certificate_finder_generated.cc */, - 0D5C0E1F300C98339255F16D2691C5E8 /* grpc_root_certificates_generated.cc */, - 5CB24C115534668BCCF5169FD46967B3 /* grpc_stream.cc */, - 269BC6FB2B0635713C50EAEC2BA4B6C7 /* grpc_streaming_reader.cc */, - B0CB1098352CB9337FF27EFFAA005F10 /* grpc_unary_call.cc */, - BA1A694C61C225A73B518E3EFCB5E63A /* grpc_util.cc */, - 010C426291A1E320C563F1B943F64FB3 /* hard_assert.cc */, - 5626CFE4ADC6597C66E656BEF9F5FAE9 /* http.nanopb.cc */, - 3A898F1BB0CF85AEAFA807B83A1B3D23 /* in_filter.cc */, - 8204BB8DA26EE7BD7BACE781D7A75CEB /* index.nanopb.cc */, - 5CA395612C1F557C35C77655C65AE4EE /* index_backfiller.cc */, - 4525F2D904F878C2A6D1F9B9F8F97597 /* index_entry.cc */, - A31D9EEE7D2A1C7A349865BAC29388A4 /* json_reader.cc */, - CC61C07C702DECF1928EA08DE2169251 /* key_field_filter.cc */, - F765C748DCCBF92F9EA0E510E5CD9135 /* key_field_in_filter.cc */, - A79122586A318457E7A9F1A44BDE53C2 /* key_field_not_in_filter.cc */, - 952E4914EE0A8AA64146D8AC51715CA9 /* latlng.nanopb.cc */, - C8FE343959E53DB84CDD5BC43DDB2B68 /* leveldb_bundle_cache.cc */, - DA9D01783965F1D9B96FE76C24AA104E /* leveldb_document_overlay_cache.cc */, - 8A9F84544900F0AE024B0A8BFEA0FB19 /* leveldb_index_manager.cc */, - D041F0FED200C1D8B0436E575BF40954 /* leveldb_key.cc */, - A4EB81173860B252F34140C897AE6C73 /* leveldb_lru_reference_delegate.cc */, - 893CF5877F1C4B9CC0A516CE0C68E16D /* leveldb_migrations.cc */, - 90B7C2AFB8A319C703C6CF8E7DC13ADB /* leveldb_mutation_queue.cc */, - 0FCFD4B40596A911A42BBCFAE924D5C4 /* leveldb_opener.cc */, - AA4D457D3B48B48FF6223E9D2F6D380B /* leveldb_overlay_migration_manager.cc */, - 24BBC365ECACCB912F74D9C0BD9CC451 /* leveldb_persistence.cc */, - 0C18A68E03D4AA4475A83A3BCC97E6AC /* leveldb_remote_document_cache.cc */, - B6399349F4D18281E2E0185F9B9D7F4F /* leveldb_target_cache.cc */, - 7C69284B3AA34411A3C653AD14471BD8 /* leveldb_transaction.cc */, - 6D811CCF841BB34DBA65A9799BE2EE1A /* leveldb_util.cc */, - 1FA938556A193AB982F813AE7FA26B1C /* load_bundle_task.cc */, - 1A27511D0EA68B95BD35120214AC223F /* local_documents_view.cc */, - BB22920242CF386F35DCA436F248A7E5 /* local_serializer.cc */, - 3D15D76F44B65CC832B5F860493C8EC4 /* local_store.cc */, - 97B47F3D6B5E39E13350C96BF91A3915 /* local_view_changes.cc */, - 1CB4E32DF6322690B74A6C9780C71F24 /* log_apple.mm */, - 287021EDC0CF4F492B41420A86A816E3 /* logic_utils.cc */, - 0DC4A124958BCEDBCFCD645B12861244 /* lru_garbage_collector.cc */, - A349939CE18674BAB956E6BA3BAD8C25 /* maybe_document.nanopb.cc */, - 59A6C62E4F5C2935449E8951719EEE72 /* md5.cc */, - C25F190F4D963FF45A86F428113FE6A7 /* memory_bundle_cache.cc */, - 6BAB879FA2933343F3F6B7D222C5325C /* memory_document_overlay_cache.cc */, - 9FFEDE59AB7324E65D95B4B762838E40 /* memory_eager_reference_delegate.cc */, - DC1C545BC3C8F49A6487F1F462388EE0 /* memory_index_manager.cc */, - D205A31C985F5CBA2C15F071ACB59DB5 /* memory_lru_reference_delegate.cc */, - C9BBEEA503839C8CBB06D6D98E42953D /* memory_mutation_queue.cc */, - 4DEDAE9AFD60EB7DB462287E8F119522 /* memory_persistence.cc */, - 189111CBE3328BFADA8C2412B97B36CF /* memory_remote_document_cache.cc */, - E9EC0B67F461AC3B1A94EEA19287FF50 /* memory_target_cache.cc */, - 6CE6AF83FF5C8075FFB27CE6A1AD9E31 /* message.cc */, - 9955D08F34694F0B64E76CDE0A5EB621 /* mutable_document.cc */, - A66A9C51ADD19DEBFA42FB88CC7FBB9D /* mutation.cc */, - 01D611C3949AE617996271EBA827FA2E /* mutation.nanopb.cc */, - 6B31218045998E02E64F7E5AA3D5F22D /* mutation_batch.cc */, - 2D13457CA04E90674E1B6F4785D601DA /* mutation_batch_result.cc */, - 100E819F57446283DA2902C234B9B5F5 /* nanopb_util.cc */, - C47215F748E7BC77AB4E03F90F17357B /* not_in_filter.cc */, - C913762B8A472019A86FADC76FF9405A /* object_value.cc */, - F1780FD900DA96158B3B017A4BDB0D5E /* online_state_tracker.cc */, - 23E706CEC3C2B6B9521054CB3C2EB582 /* order_by.cc */, - B551E817F009C16102A59464593B0D56 /* ordered_code.cc */, - 15F9B8C328077042332A646021AE7AAC /* overlay.cc */, - 8D1D48D92D6F04BFA99B17A9EAA6EDC8 /* patch_mutation.cc */, - DD6B9E22466D5995921AC754753CA690 /* path.cc */, - D3EDB79602FD6EC4F9AF75AA69E7FD83 /* persistent_cache_index_manager.cc */, - 43AB4D6FB2B61A604701FFED774CC24E /* precondition.cc */, - 3CF9E09E45EF0EEB933A9418AC60E75D /* pretty_printing.cc */, - DC442F50958FEA558E87DF754A570A3D /* proto_sizer.cc */, - 64286176CB18734AE8DBA0165B0CEF76 /* query.cc */, - 2067E088339101CF22739D1621D0AEB7 /* query.nanopb.cc */, - 5733F22FE7F4718DAFF4CCB387A20F83 /* query_core.cc */, - 63F1DC38BE377A1BA74F9DA125546E12 /* query_engine.cc */, - 239CCC345AFD04C9139D45F9BA75B1E9 /* query_listener.cc */, - 9BFCBB65DA2B244B7012C83F01705F2C /* query_listener_registration.cc */, - 60287881BBE4121A2054A901FBAB46E0 /* query_snapshot.cc */, - 1284348E0CEC03C1422D58F7BA2B7769 /* reader.cc */, - 27B25E05894166E331C5E2DBE9AF3A0F /* reference_set.cc */, - DBBD81E7E6F01561351685C7AB467ACD /* remote_event.cc */, - 456D1CB604855339A9E5EFCAD1937FC2 /* remote_objc_bridge.cc */, - 1CAF9E402CD803B4201C79C9F7FC0C71 /* remote_store.cc */, - 5E8691CDAB40B5E482CE40A0FDC7BD77 /* resource.nanopb.cc */, - E8D7D1DEB8416D21FB66BE0281FECAB6 /* resource_path.cc */, - 1917D122177D6F841FB8D0D73A26A4FD /* schedule.cc */, - A2B03915872B69964AB0963D3A82B4D7 /* secure_random_arc4random.cc */, - 502DA3927CC2E63179BA8FD452C9BA7D /* serializer.cc */, - FD8037800081E70F14C42450159AB3F5 /* server_timestamp_util.cc */, - A497BEB2593DDFBF7C360C797575A9F2 /* set_mutation.cc */, - 613FF4777C0F1FF37222E3B289CBE116 /* settings.cc */, - C3892E2DA01902D6BA64FF679C26D5FD /* snapshot_metadata.cc */, - 88515C271B8E5809B9B18F66EABBE2BB /* snapshot_version.cc */, - 85722692AE9CCA8EB8BF18819F31A39C /* snapshots_in_sync_listener_registration.cc */, - DD4D05C4D21774089EE1FD9ED1F77EC3 /* sorted_container.cc */, - A12093A3908B57862CDE104D90CF4FCD /* status.cc */, - C303180EFD0F780B35D824C29D06F4D5 /* status.nanopb.cc */, - 8D3EDAEDD823620DC7856DCD00F361BE /* status_apple.mm */, - 5EE78E00A48E45BE3E887C3A1BFC7B31 /* status_errno.cc */, - F9213053A5A55C41D3A4F2F307D5797B /* status_win.cc */, - 6DD96FE272989AA57C7AB37C16741339 /* statusor.cc */, - 4087678779DACC960EFC316481CE6A42 /* stream.cc */, - 834AC2853AD5F74CB31E9D49B519487C /* strerror.cc */, - D4AB678922D4E5E317B9EE89FB1DBF3C /* string_apple.cc */, - 073D096CDA61B89AD8AAD8D84F4CA3D3 /* string_format.cc */, - 6940FFAFB8FAC0D845817FC511A8936B /* string_util.cc */, - D5702FEDD1F60ED913920524FBBEBD29 /* string_win.cc */, - 3418689C1A5F62805CC5E141BEAEBA54 /* struct.nanopb.cc */, - 8D454505CB2B38A0F77BA116058DEE74 /* sync_engine.cc */, - 27934D15963FBE1407EA577498E6F92E /* target.cc */, - AD1443E8689B3683F32DD2D3D5980411 /* target.nanopb.cc */, - 1CF6EB1D135BB3A8B681CE702D563732 /* target_data.cc */, - A7915F10C91C7C74007B224B744E3B25 /* target_id_generator.cc */, - ED890475516CEFE264885724279DF5AE /* target_index_matcher.cc */, - FA65AD83C63AC059C9053D36FDB24E5F /* task.cc */, - F028BC348BA97366FB18506E220B390A /* testing_hooks.cc */, - 5BB0F80A673450756ABA948BCC48CAD8 /* timestamp.cc */, - 09290E19AD8F9772405B032024D0B3C4 /* timestamp.nanopb.cc */, - 7088B009656FC6E699611475339E1515 /* timestamp_internal.cc */, - 47A971A0C5A1B06F98A524150CCA4D43 /* transaction.cc */, - 2AFF478FBC96E6CB85524B5FC5308999 /* transaction_runner.cc */, - 2935829DAB36688549F2CD13DDA31D19 /* transform_operation.cc */, - 011F6445D8C9C16599733624A162557C /* user.cc */, - 0FF8BDC798418893DD108CFEBCFB9FB6 /* user_data.cc */, - 81D6AD186315CEBF69D63FBAA9C159C1 /* value_util.cc */, - 35A30276C2B4698BF8E3FAAEF17AA909 /* verify_mutation.cc */, - 82FBD3ADDD80EEA6C94D03FF28962FA3 /* view.cc */, - 90FD15A3C7BFDDC91E0AD8F5EED1708D /* view_snapshot.cc */, - A20E910BE3E858449DD34C70E7A374F4 /* watch_change.cc */, - C39A869103799DECDB7FEB9517645E5B /* watch_stream.cc */, - 6BE4E4ACAF66F51C660A969467118448 /* wrappers.nanopb.cc */, - FB7C5460F5AB31BA419C1E17E8FECD6A /* write.nanopb.cc */, - 8AE995179A53A8E3C71C498E1C5EF20B /* write_batch.cc */, - F6F94E380F0FB4FDC9C6131214BD7D57 /* write_stream.cc */, - C1BE9164E9BBAADC40C5EF50C59560CD /* writer.cc */, - 578B15ACEB8B70F8E729EB66596BA030 /* Resources */, - C2380DAFC6F8C4D92B766703EC27E423 /* Support Files */, - ); - path = FirebaseFirestoreInternal; - sourceTree = ""; - }; - 2773C5137B02069F9BF90CBF7779B630 /* low_level_hash */ = { - isa = PBXGroup; - children = ( - 268819332727BD1238553D6E7065A3D1 /* low_level_hash.cc */, - 26EA1B370BB9E95CAF8CF7285D0F757C /* low_level_hash.h */, - ); - name = low_level_hash; - sourceTree = ""; - }; - 284E6CC3289A20D8027CDBF472E29B7F /* FirebaseSharedSwift */ = { - isa = PBXGroup; - children = ( - F4B76B6D91AC609D35C9043CFAC69164 /* FirebaseDataEncoder.swift */, - 6535855645E49486FBC2521E4549870C /* FirebaseRemoteConfigValueDecoding.swift */, - D72FC50F6FFA05E5F5213F2EC0CB75D7 /* Support Files */, - ); - path = FirebaseSharedSwift; - sourceTree = ""; - }; - 285DAF8B32AA5CF43B597E706A066351 /* fastmath */ = { - isa = PBXGroup; - children = ( - 1B0032C3FA623F5847F4392D6E616260 /* fastmath.h */, - ); - name = fastmath; - sourceTree = ""; - }; - 293AC6872C1BD05B9F26570DFB1AE7A5 /* inlined_vector */ = { - isa = PBXGroup; - children = ( - 69CA551AEF37B223791AAF40042F79F3 /* inlined_vector.h */, - ); - name = inlined_vector; - sourceTree = ""; - }; - 29CDCA7FC4FD4EF9316D965B6200BB19 /* Support Files */ = { - isa = PBXGroup; - children = ( - E3B4644A0FFFD9E170FF2E9FABC4791D /* PromisesObjC.modulemap */, - 9212EEDEDE220E1058CDDBD94B80C1D3 /* PromisesObjC-dummy.m */, - 29363D599C02CBF0551C45AFC5425C2C /* PromisesObjC-Info.plist */, - DB4DA5DD2141DBF34CDA0ADF57AA6274 /* PromisesObjC-umbrella.h */, - ED31387A76648EF24078ADE03325A530 /* PromisesObjC.debug.xcconfig */, - A31A3B3CAA791361D6418CBDC75EAB66 /* PromisesObjC.release.xcconfig */, - 93705DDBCEE76D8360695E89EF0731A2 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; - sourceTree = ""; - }; - 29E717F0DE5C12D22952884419173F0D /* FirebaseCoreExtension */ = { - isa = PBXGroup; - children = ( - 7751AE53ECCD50278AB13AD89D6DCAD0 /* dummy.m */, - 02EC0058C7B90C486E26542577A691BD /* FIRAppInternal.h */, - F4EB785BC82D7E8EE9FF3E09018A0EC6 /* FIRComponent.h */, - 3F4D62F36BE5FB76B3E249A5DABB5A80 /* FIRComponentContainer.h */, - 15893123E7C43EEBE87529F431D7B93E /* FIRComponentType.h */, - 30B81DC0D3FE6B11CAF6453402694803 /* FIRDependency.h */, - 81DE8AB06D8B2ACF0F1A8CCE5B85DF8A /* FirebaseCoreInternal.h */, - 54F1C0EF3D7A4B42B5E4B7CD1EE18077 /* FIRHeartbeatLogger.h */, - 065B01A9B04DD800AFB4BAA6B31C2DB6 /* FIRLibrary.h */, - 8817FD3C700346F70A5C7C6F23E4DA72 /* FIRLogger.h */, - DE439126AFD61618E749E57E36B528D5 /* FIROptionsInternal.h */, - 579F84F8A037ED4B7F38329BE2BB5A04 /* Resources */, - 1DA6352471B85F88D5F477FDECCB3213 /* Support Files */, - ); - path = FirebaseCoreExtension; - sourceTree = ""; - }; - 29FA0B0A8BB47C8588B70699CC22C373 /* strings */ = { - isa = PBXGroup; - children = ( - A531162851D94A7FDC2642D18FF49FA4 /* ascii.cc */, - 035B82AB08DA681C610923EBEBE78CC8 /* ascii.h */, - D4EF0AA0978396FD6B77547F4C7F5A67 /* charconv.cc */, - EBD65106EEA4E3AB2396DDFB11519FD5 /* charconv.h */, - 0A49B647A86D134EEB1FCA9AF1631FEC /* charconv_bigint.cc */, - D67E51FEBE5EF57ECCCA772DA0B4A0C4 /* charconv_bigint.h */, - FAAB837A72F5FAA99CE0AF59681A429D /* charconv_parse.cc */, - AB8BE93703FB73093C71D82F6A7D99AA /* charconv_parse.h */, - 929D3549A4A62F46EC7C0D9D27B2CB06 /* damerau_levenshtein_distance.cc */, - 625531DF482D3C18F6D48AD15736FD00 /* damerau_levenshtein_distance.h */, - 491B5FEBED90992741A4E6B7EC0FB706 /* escaping.cc */, - 099EA6D04599E19AAEF023AB727D3742 /* escaping.h */, - 3FC61F6AE0FCAC70A0C2BC1045673A0C /* has_absl_stringify.h */, - 3B77EAC49D41342387ED46193ECB8225 /* has_absl_stringify.h */, - 2AEF1ADD34C178FD349D5ACEDBE937A1 /* match.cc */, - F397CD3633B2D9B807022D040FE6CED6 /* match.h */, - 8EEF92B1009B372C9DE8311FC483B6E4 /* memutil.cc */, - 66924F27DC7368965E312F459D2F0CD2 /* memutil.h */, - 1C4AF5F4C0BF2F4F1672EEF1539B1F06 /* numbers.cc */, - A72D5AA53E4CD88AB05A875DFE4F5CAA /* numbers.h */, - 0D066023D2E48D2DBF2EF91F6A75BF5D /* stl_type_traits.h */, - BB0C63ED45CD331D347FD85BD7A3EBEE /* str_cat.cc */, - C63FF0FF43858C063B5A49A2B461FA8C /* str_cat.h */, - 88615DFF5A5AE2E8B2B8CC34598667B2 /* str_join.h */, - F4ED2FA3A0B4580AC4D2261D66A7DB98 /* str_join_internal.h */, - 59750EBA3E648663EAE993A404A55761 /* str_replace.cc */, - 173D7471E32E8A1DAE8039631B61E55D /* str_replace.h */, - 656EE71DB3E18FFC0C1E4586C8B308CC /* str_split.cc */, - 92604036CF303CEBA4FAD318F6E0DD82 /* str_split.h */, - 0D774D80C3335CD24F30437981A52216 /* str_split_internal.h */, - 31F88885CE5E4D417BE72EFBEB512AD1 /* string_constant.h */, - E6A6BB510A355A845EDF909A3530D57E /* stringify_sink.cc */, - A5D393EF2C97D7233D601BFE645FC735 /* stringify_sink.h */, - B2F4551A55AFEBB678B1F21F7278CD4A /* strip.h */, - E956232565EDA2ECD017943128003A49 /* substitute.cc */, - 098A0466AE3CD02755A5192B77DAB049 /* substitute.h */, - ); - name = strings; - sourceTree = ""; - }; - 2B7F59CF7F1B11D46F62119226B307CC /* Support Files */ = { - isa = PBXGroup; - children = ( - 7104EB2EDAB8C3F2401E281A3CC6FFFF /* GTMSessionFetcher.modulemap */, - 8DBA8862F0023C9700FA7FE8EEA59A9A /* GTMSessionFetcher-dummy.m */, - A09A12889CE077E2D2CC857FC2824E42 /* GTMSessionFetcher-Info.plist */, - ED55DD9CD67FFCFD1945FEA7FF6383D0 /* GTMSessionFetcher-umbrella.h */, - E569B4C4A9A9F1E4CC835CBD154F9C57 /* GTMSessionFetcher.debug.xcconfig */, - C0384944EBDA7C4885CD043C0C3DC1B7 /* GTMSessionFetcher.release.xcconfig */, - 5B48B6FC002C5B887CAB482AA5547AFF /* ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/GTMSessionFetcher"; - sourceTree = ""; - }; - 2BC9000C9DD3EC840A1BECF019EF2A7D /* decode */ = { - isa = PBXGroup; - children = ( - ); - name = decode; - sourceTree = ""; - }; - 2C0CC899C608B802D3148F98C07CEBA4 /* container_memory */ = { - isa = PBXGroup; - children = ( - 8B3626EA67EB654F61851D5DE054DE20 /* container_memory.h */, - ); - name = container_memory; - sourceTree = ""; - }; - 2D9F46E7B24DD448630B1B7529D309BF /* algorithm */ = { - isa = PBXGroup; - children = ( - 35AC1DB79CF82CDD122A857080C23A37 /* algorithm.h */, - ); - name = algorithm; - sourceTree = ""; - }; - 2E1C52F962725D254E911494F0B572D3 /* Basic */ = { - isa = PBXGroup; - children = ( - 9ABC8E2A533E4A4F8416CEC7C15627DC /* NSBundle+TZImagePicker.h */, - D239E16B8646B99C896802DB6A8D9928 /* NSBundle+TZImagePicker.m */, - 33780120FBAF137AEB1A05B0C30E0A4B /* TZAssetCell.h */, - EF90AB5C58010099CB6352B80DCFD2A8 /* TZAssetCell.m */, - B607824AFF8A8EAEEAA86E55937EB25E /* TZAssetModel.h */, - 367A6741B8C65DACCA715860B6A6194F /* TZAssetModel.m */, - 141E890CF628660E7B697E482DEBD044 /* TZAuthLimitedFooterTipView.h */, - F2C94873E30E4A22DBBC43856ACEC977 /* TZAuthLimitedFooterTipView.m */, - C21940E72FEC606B05D811350700C897 /* TZGifPhotoPreviewController.h */, - 8F16F14CA75635B99E0B9B7FFB57E65B /* TZGifPhotoPreviewController.m */, - 9F18944C7646E0157BC5B62B0F31E3CB /* TZImageCropManager.h */, - 46F475FD122BECEBE760063C517AD588 /* TZImageCropManager.m */, - E1797726160A096C1BE8380E5D6C571A /* TZImageManager.h */, - 61D28B29195C2DC046B398CF43CBE281 /* TZImageManager.m */, - 5134B1B88BDEB109823283A02A1A6E6A /* TZImagePickerController.h */, - 92085BCBD0400CF3BD8A0EC4133FDFCE /* TZImagePickerController.m */, - 87C4529878EBD2DDAA61AE0F39AD2FC9 /* TZImageRequestOperation.h */, - 150AEF09EC2E4BAAC1E66667595DC00C /* TZImageRequestOperation.m */, - 4FB3611C6AECD849B708AA4A24218427 /* TZPhotoPickerController.h */, - DEEB264A3E73118083BE640EDC9EB78E /* TZPhotoPickerController.m */, - B546CCF83A9F85B077AD53FD823DB9A0 /* TZPhotoPreviewCell.h */, - E0D2D9C9CC95C76B2F3077237D46E80F /* TZPhotoPreviewCell.m */, - 0B2A3E1DE6A6C6484290A0143D13B0CC /* TZPhotoPreviewController.h */, - 713733E24D998C8DCD3494C7280E241E /* TZPhotoPreviewController.m */, - 039083BDAE39BD9483DEEF0E8FFADD48 /* TZProgressView.h */, - CDD0872C903827BFD1608D4FFDA0AF3C /* TZProgressView.m */, - 35047C18448D0C2AD36936360AE82936 /* TZVideoCropController.h */, - 9DA1AE196DDF6E7FB7B22C555CFDD86F /* TZVideoCropController.m */, - 2746078F65ED43B29B3285B802CBC5E3 /* TZVideoEditedPreviewController.h */, - 0CF79A388D5035E2FCC4AB44D22F5538 /* TZVideoEditedPreviewController.m */, - D2DBAEB678BA703DA602152442B4BC30 /* TZVideoPlayerController.h */, - C88A194950D04730AD3241B3B94E2D87 /* TZVideoPlayerController.m */, - BB05FF0CA13876654DD5456BD263B2BC /* UIView+TZLayout.h */, - A7B17FFECD613792BFFC75621165C094 /* UIView+TZLayout.m */, - 3D84BC1823BC2682687C3CFDA2C4609B /* Resources */, - ); - name = Basic; - sourceTree = ""; - }; - 2F0033928F333EEA0396398E9E295171 /* synchronization */ = { - isa = PBXGroup; - children = ( - B7EBF50267CA67467DF47E36F1CECA2A /* graphcycles_internal */, - 150443960B174D5173131170097189E7 /* kernel_timeout_internal */, - 6641D86F17AEA94862F4F400746B1765 /* synchronization */, - ); - name = synchronization; - sourceTree = ""; - }; - 2F2C3FD3D66B77A9F1BB49788A0EB7EB /* Support Files */ = { - isa = PBXGroup; - children = ( - F5A54BEEF3EDDAD8F34FC0776A302407 /* leveldb-library.modulemap */, - 66D7A439EEF9452F5FFC26432FD4E2D1 /* leveldb-library-dummy.m */, - 31EDA159A4BA81F8E67E48ADE614A417 /* leveldb-library-Info.plist */, - 5FF923FC06911E02639FB20D305F613B /* leveldb-library-prefix.pch */, - 9DDFE6F32D56F8B2347A4C86A4706DFF /* leveldb-library-umbrella.h */, - C165BD99C1A18E74FB93AA420CB08357 /* leveldb-library.debug.xcconfig */, - EB73F358A255FAF683B0AB3778C04A85 /* leveldb-library.release.xcconfig */, - 61C9BFABAA20D1ACAF19661DFCF633DF /* ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/leveldb-library"; - sourceTree = ""; - }; - 2F660929E7F40FC16EB00B5EDC17E289 /* seed_gen_exception */ = { - isa = PBXGroup; - children = ( - 23DF3E873FE9096B47A98D9EF27A4DFE /* seed_gen_exception.cc */, - 279C8FF40365FCEFC9B80F6D5D15EC6B /* seed_gen_exception.h */, - ); - name = seed_gen_exception; - sourceTree = ""; - }; - 3023B0614A0BA72329BE6C2D0DB51E09 /* crc_cord_state */ = { - isa = PBXGroup; - children = ( - 345657A60FF0E53A2560D932ECB7150F /* crc_cord_state.cc */, - 0465D1FE918E89C7FCCC85087D9C16A0 /* crc_cord_state.h */, + BB2CE24871A9EBFCDB1B27EBC84B5B76 /* crc_cord_state.cc */, + 2C7D778A315C7A80CBD4A10D28ADEEDB /* crc_cord_state.h */, ); name = crc_cord_state; sourceTree = ""; }; - 31A217726310262465208D2933ACD3E5 /* span */ = { + 309A7CC47E0A7F30EA0B3E4D344CC1D0 /* FirebaseAuth */ = { isa = PBXGroup; children = ( - D1326F7ECB39972BF141766EF23C4FBA /* span.h */, - 6958AC2208A1ACAC6084F525275F8FB9 /* span.h */, + F60CBA726113848E9A5BDDDA39CCA92B /* FIRActionCodeSettings.h */, + 6B17C1E9F09378DC8788D7889BECA5DB /* FIRActionCodeSettings.m */, + 7C95460A47C4807B25734B4252681430 /* FIRAdditionalUserInfo.h */, + 5D75E03CEE98624D352F8DFC1722B2E6 /* FIRAdditionalUserInfo.m */, + 0FFFBF4DD113DB1D896FB623D1E9641F /* FIRAdditionalUserInfo_Internal.h */, + C0776099E6E100AF931314C78BAD9597 /* FIRAppInternal.h */, + 72C0DD33433FFA6807DFF864F21EBA62 /* FIRAuth.h */, + 54491C6FDBF1DABA3F3AAE902692F139 /* FIRAuth.m */, + FF915538D63E29C8CE85AA7396C7AC47 /* FIRAuth_Internal.h */, + F40666CCACDA0E36BB62018752C0B964 /* FIRAuthAPNSToken.h */, + AA86751A95F80F34E3819F72C1C3F830 /* FIRAuthAPNSToken.m */, + 530A58E9328CDD6ECEF8A944F3AF1EB0 /* FIRAuthAPNSTokenManager.h */, + EB78786AD6637FC3096FFE00CD70C22D /* FIRAuthAPNSTokenManager.m */, + A939A7A799BB019C3195766371FED1F3 /* FIRAuthAPNSTokenType.h */, + C606C3126F8529C7CA305A211537F54E /* FIRAuthAppCredential.h */, + E1C176A2190F2980F85869C25BDA3B3F /* FIRAuthAppCredential.m */, + 4A209FD2FCA4DA9650A61B9C9552B5BD /* FIRAuthAppCredentialManager.h */, + 0418CF0B29D8613D5BC5631C6B27B747 /* FIRAuthAppCredentialManager.m */, + B9CB2221759EE50C9BAD9C61EB7E216C /* FIRAuthBackend.h */, + DB28735CF28005A2568F1D7964A1C1ED /* FIRAuthBackend.m */, + F09F50D86FF9D6CCB5370C71712E5039 /* FIRAuthBackend+MultiFactor.h */, + CA6F1BAAF31BAFE943D722E2250203FA /* FIRAuthBackend+MultiFactor.m */, + 64B49B5F8E605A6F5C9BF8D67538ACEC /* FIRAuthCredential.h */, + FB8D594201E2A3CD9DB788A6BFEB40C6 /* FIRAuthCredential.m */, + D82B350FE552DD979778D22338B97844 /* FIRAuthCredential_Internal.h */, + 88FE70C39ECE4EB4D070BEF4B7E8DBC4 /* FIRAuthDataResult.h */, + AFA0932073EB862803118E9388E41568 /* FIRAuthDataResult.m */, + 8056129BB42BB8A301BBFC9868F500FF /* FIRAuthDataResult_Internal.h */, + 38A12684275B9D5C7A26DBD8B166DA60 /* FIRAuthDefaultUIDelegate.h */, + 9FD17393B859DE46E1080533C0098CEF /* FIRAuthDefaultUIDelegate.m */, + 28B6946D20F608276879EFC491621446 /* FIRAuthDispatcher.h */, + 42F00B779BE4131064537A7AA063A959 /* FIRAuthDispatcher.m */, + 8C28AE572B084E805FC97C3A52FDBDC7 /* FIRAuthErrors.h */, + 163E45064245760574DA929EED89C31C /* FIRAuthErrorUtils.h */, + 6A962E42CB2E85D86412FBCC1EAAA8C6 /* FIRAuthErrorUtils.m */, + CF9FEC5DCC48ADD32329D714C835945A /* FIRAuthExceptionUtils.h */, + 28FE4C74AC402ED8E3468FA8ED75D1BD /* FIRAuthExceptionUtils.m */, + 0BFC564CFBC92108450742085B686B61 /* FIRAuthGlobalWorkQueue.h */, + 32B482B5050E0C871CF6D5E46CC4B3FC /* FIRAuthGlobalWorkQueue.m */, + 01AB89E48B714BA03BBCF1BEA37A91AD /* FIRAuthInternalErrors.h */, + 1A00B39B81932371A65D921F3564445C /* FIRAuthInterop.h */, + B512DCE065414B45169DAEF6743A3CF0 /* FIRAuthKeychainServices.h */, + 9B6AEE4F0575AF6FDE1CA895A4622286 /* FIRAuthKeychainServices.m */, + D9FDAE5E07082977761C87EC8DC2300B /* FIRAuthNotificationManager.h */, + 2D5BB0A437F68942DB1A2CE047F403C4 /* FIRAuthNotificationManager.m */, + 42D5A7D67D3AF87D7C1DCD0B6097449A /* FIRAuthOperationType.h */, + 58FCF156E709CB29F0CD5181ABA44EAB /* FIRAuthProto.h */, + 4D7FB9A89A3B2FE62EB2D3DEB8CCCE2A /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, + 17DED0052153ADA251B3E7CC29DCC487 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, + C68A21979A5701E0762F785062A91715 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, + DEAC89160C738AE121B21FA17F172A5B /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, + C431A81DCBEB762F9F872E7D98714F3B /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */, + 368F2A04EFE284DCBBC4304CEB44558E /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */, + ACCD20269829B44942C9917B36030D3A /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */, + EE33EA484EA5D1FCCB7607A9789E69EE /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */, + 295F295ABF08248C16E6F599785BBDEF /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */, + C332ACE0A8730C8B7FB4F11680EDFB77 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */, + A57455D50771D3BF919897407F823BED /* FIRAuthProtoMFAEnrollment.h */, + B8B013494A829E0451B92A2F3A7252EF /* FIRAuthProtoMFAEnrollment.m */, + 4DDE341C0C662CFB3708633EB5FEAA81 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, + 013C0432B9F5891BF96DDB534DDA117A /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, + DD7081389EDF4F7B86CB272A919B7829 /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, + C431273A02A499F73F55EC86D643A06B /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, + 29841A8849154F1617DFDEDBC689BF2A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */, + FA2CED3DA8A1883FEDEBA1C245C7954D /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */, + D2A29097106400E4908968C3F14B9F0F /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */, + FB33917E300DE410AC67FCE517B4FDF7 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */, + 7B5AD5436AB55215ABDE756C907C07AA /* FIRAuthProvider.m */, + ACAAACD4AF9B293E5F739430F3D32B5B /* FIRAuthRecaptchaVerifier.h */, + 1CAE7237F1A69F67F571A94040BA0948 /* FIRAuthRecaptchaVerifier.m */, + 48D74CF56D91A2B240038CF5F3471ACB /* FIRAuthRequestConfiguration.h */, + F5731FB83409C6F8146F82A95F0906C3 /* FIRAuthRequestConfiguration.m */, + 0DE0FD018447CBDEFF6E6B3A71FA5FBA /* FIRAuthRPCRequest.h */, + A991A1A4D79B8510BC65EFC0194A1104 /* FIRAuthRPCResponse.h */, + C4DEBEDAE6EF18EB7BFA479DAB53780A /* FIRAuthSerialTaskQueue.h */, + 3337B80321856929A0BF4BD1417A3116 /* FIRAuthSerialTaskQueue.m */, + D10BFFF8DC539EC221A412CDB22DE11F /* FIRAuthSettings.h */, + 490F6E4646BA6F79A747CAFF0AA51868 /* FIRAuthSettings.m */, + 019B9DEB107A26E165C810946CA6822B /* FIRAuthStoredUserManager.h */, + A43B49AAFBDF98005B7C2B682791B5C3 /* FIRAuthStoredUserManager.m */, + D542CA5F720410B0FE50354118C4D5A3 /* FIRAuthTokenResult.h */, + 6907D0E81ABFD302CBD45E548610D242 /* FIRAuthTokenResult.m */, + 4C501701EC8AC193E12905BE390F338C /* FIRAuthTokenResult_Internal.h */, + 215BFB8F1B4D5D9C8D972BA8D02D8B83 /* FIRAuthUIDelegate.h */, + 408FA9241665959073B5923231510E57 /* FIRAuthURLPresenter.h */, + 777A32690C85A810E7DE44E2E4B37467 /* FIRAuthURLPresenter.m */, + 23A6BCCDC264AEEE575D9AA2CF782861 /* FIRAuthUserDefaults.h */, + 2E622A0A5DF921FBEF3A154910949346 /* FIRAuthUserDefaults.m */, + 95988AE0340FA8D6BA9DE455814C883E /* FIRAuthWebUtils.h */, + 62C393A52914E9058D4B544148307A3C /* FIRAuthWebUtils.m */, + 95E436AC20CD0EA3E556C099DA9E49E4 /* FIRAuthWebView.h */, + 99D5C3AFF6EE7278E4BCF504BB78F7F7 /* FIRAuthWebView.m */, + 49B2AE01B221780AB8E3C4E73288CD22 /* FIRAuthWebViewController.h */, + 82ACE4ADCDA03EDBA9D6A283C4759CCE /* FIRAuthWebViewController.m */, + 8E935FAC722C5EEF4B856CAA7B569500 /* FIRComponent.h */, + EAF17C3458788C05AFDB89EA3973139F /* FIRComponentContainer.h */, + E5566379EFEC203F8BDEBA8425B89849 /* FIRComponentType.h */, + 140B55EE0F08904AB9189D95F1919538 /* FIRCreateAuthURIRequest.h */, + ED99ECA6552A3BE582ACB7FA5E18FAF3 /* FIRCreateAuthURIRequest.m */, + 01D629DEE5B32BF6678BA8614044ED20 /* FIRCreateAuthURIResponse.h */, + 5C1320D11E28563CD14B966A491E5F67 /* FIRCreateAuthURIResponse.m */, + F1CAC756A33F60AED6CC39D61D425A04 /* FIRDeleteAccountRequest.h */, + 53DDA9667F6D2A374AB645A9A86C8313 /* FIRDeleteAccountRequest.m */, + 62D8819044C4B992CD227B30924B1B51 /* FIRDeleteAccountResponse.h */, + 0D893D71B01D389D520E3D9B84C5CCC2 /* FIRDeleteAccountResponse.m */, + D4311CD0D6322F4A5A5E61E304D44641 /* FIRDependency.h */, + DA815DE1E28DDC8928ED907232606E3B /* FirebaseAuth.h */, + 6DE84B4075B758F3A3EF9E696CB9362E /* FirebaseCoreInternal.h */, + 3FD4B529F53521CDAF833EBBCC3E898E /* FIREmailAuthProvider.h */, + D19EB59ABCA497A38E12AEB078BD84A4 /* FIREmailAuthProvider.m */, + 605A35141343112AA0F57F0E3101A62F /* FIREmailLinkSignInRequest.h */, + 9998CFC5324B900A8DC1F3BE33F8C12A /* FIREmailLinkSignInRequest.m */, + 88314B2FBA37493978F3A233B513A2EE /* FIREmailLinkSignInResponse.h */, + 5DA99E45F3B83375C7671E4E270C4E4C /* FIREmailLinkSignInResponse.m */, + DC4CB2532687F13FFF5D1C332FCCA20B /* FIREmailPasswordAuthCredential.h */, + AFA1C856D66D434A1353FE1B7FC28303 /* FIREmailPasswordAuthCredential.m */, + 9DA3E389EB3FBB407D5FD48F0B11905C /* FIRFacebookAuthCredential.h */, + C36A89B21E39F42EF3BC8D7DA2664CDF /* FIRFacebookAuthCredential.m */, + 84F3CE6F0DA1C6619373300B20115BF9 /* FIRFacebookAuthProvider.h */, + E2A666EADD66B11C47DAD02DF68906E2 /* FIRFacebookAuthProvider.m */, + 4A7C52667A1EFE88C651F7A9CD3DD9CB /* FIRFederatedAuthProvider.h */, + AC8AB68E2E9105A16B556B9879BBE844 /* FIRFinalizeMFAEnrollmentRequest.h */, + 150F8C7E54930C3B2291B393DD623289 /* FIRFinalizeMFAEnrollmentRequest.m */, + 9C5829A558FA18F71C179308930C7D75 /* FIRFinalizeMFAEnrollmentResponse.h */, + 57CC1572DCEB939C2F3F52272001C69A /* FIRFinalizeMFAEnrollmentResponse.m */, + FEE108C1B1CE93C8934E8E52DF5BCE9C /* FIRFinalizeMFASignInRequest.h */, + 8C48043DF5E169134B066C1CE391E7D5 /* FIRFinalizeMFASignInRequest.m */, + F2A01FBAB8673767DAB4D0879CBDFEBB /* FIRFinalizeMFASignInResponse.h */, + 00310AC6F20D302C9B9DAB44066C7ECA /* FIRFinalizeMFASignInResponse.m */, + A0AC6C0E74246B3B551206B61842A056 /* FIRGameCenterAuthCredential.h */, + 6A5BC19690D13544FB22C7890DB349A0 /* FIRGameCenterAuthCredential.m */, + 3B759622C8FAD450C21CC3594DDFC44C /* FIRGameCenterAuthProvider.h */, + 94264F84489991CBD0DDF7AF40225F8E /* FIRGameCenterAuthProvider.m */, + F31E87C8FFD63C857049BAE97EFA6326 /* FIRGetAccountInfoRequest.h */, + C6424967034F9432413FDA9BFC632E92 /* FIRGetAccountInfoRequest.m */, + A50FD2CD9DA54BFB51B4A933BAF1A308 /* FIRGetAccountInfoResponse.h */, + 65D39BBA998417A5A39BB7006E95E7AD /* FIRGetAccountInfoResponse.m */, + FBCA898BD66DF4D1B773FBF76AE82464 /* FIRGetOOBConfirmationCodeRequest.h */, + 197EF74DCC6C10F0370AA72AE730DDBA /* FIRGetOOBConfirmationCodeRequest.m */, + 367A03E236968DF5841D7B03B7EBCC1F /* FIRGetOOBConfirmationCodeResponse.h */, + A100E21A725F3BC7B77F2772EEB2376B /* FIRGetOOBConfirmationCodeResponse.m */, + E52D20AA78E0E3737273FA3B79FF1342 /* FIRGetProjectConfigRequest.h */, + 8F21BE0BF55B2F0591291154AB8E8031 /* FIRGetProjectConfigRequest.m */, + 36132476F8BE0AD71C0F772961DB9E08 /* FIRGetProjectConfigResponse.h */, + 2FF1123B104AF2A8A98416EB07553190 /* FIRGetProjectConfigResponse.m */, + 43FF56C7B76276422F3A359C14722A01 /* FIRGetRecaptchaConfigRequest.h */, + 6F1A545B92E3E8A5E75F3AFE78198250 /* FIRGetRecaptchaConfigRequest.m */, + 129B70BA0C67AD68E9E6578D0D832E46 /* FIRGetRecaptchaConfigResponse.h */, + 9DAA46B3D7839471D11A3F71D4FDA57D /* FIRGetRecaptchaConfigResponse.m */, + AB7D2CC606A12CE116FD07A90AEDB502 /* FIRGitHubAuthCredential.h */, + 7DA5D83A811767CB13F343D4235C605A /* FIRGitHubAuthCredential.m */, + 344D64D05B45BFAF5EFE30AADF70DE97 /* FIRGitHubAuthProvider.h */, + 1AA48D5F53F48C9670D5122BC174C914 /* FIRGitHubAuthProvider.m */, + EA301560FFBD8D0806484BC60AD3E370 /* FIRGoogleAuthCredential.h */, + D0BA03A259DC99B118B1DC1F948EE937 /* FIRGoogleAuthCredential.m */, + 1DDBA6D2D13B28B729444B0AC3BA07A9 /* FIRGoogleAuthProvider.h */, + 2595CCE0E8CD280C523468F5995341B9 /* FIRGoogleAuthProvider.m */, + 467BCE892AAD63B00197B319BCD60E54 /* FIRHeartbeatLogger.h */, + 9B8C53368528E1D08E87BF315E0E62CA /* FIRIdentityToolkitRequest.h */, + 28D9E5ED7DB6A7A8B207AA331F16332E /* FIRIdentityToolkitRequest.m */, + 6F9356C7D3F0B68EB6991F61E71A1CE2 /* FIRLibrary.h */, + AEA233ED2C54C8E2744A66184C64E8FD /* FIRLogger.h */, + 96B787C1FB55F6596D49C8E881CF0275 /* FIRMultiFactor.h */, + ED9AE210CDB58DF3B188D657E10BD461 /* FIRMultiFactor.m */, + 739DF6492F40A5ED04A4F44B9EACC02A /* FIRMultiFactor+Internal.h */, + 8D3EEA73197F5824ADAF02B79E594355 /* FIRMultiFactorAssertion.h */, + 78286B51C7CDEDF7AED2D5174EC7F26C /* FIRMultiFactorAssertion.m */, + C2DEFB5693085AB49883EF7EDDE68DF6 /* FIRMultiFactorAssertion+Internal.h */, + 03E5709C312886A58EBA75B096D9C077 /* FIRMultiFactorConstants.m */, + 374FFBA0BC66CDE87762F1656FF11B9E /* FIRMultiFactorInfo.h */, + 0B416B424358ADF3EC14EF8DAD967FF3 /* FIRMultiFactorInfo.m */, + 7314EC54EC8D4208DE9DF947EF991DB0 /* FIRMultiFactorInfo+Internal.h */, + 2A4308D3321286B78AFF80AF76255705 /* FIRMultiFactorResolver.h */, + EB93AD6AB72E1523061AD04CE84674E0 /* FIRMultiFactorResolver.m */, + 3C9BD439F7B917ECE19DE84F2F7CE84B /* FIRMultiFactorResolver+Internal.h */, + 2815B6447A5A0D71A50B82116E229AC5 /* FIRMultiFactorSession.h */, + C314694375FB1E4D6086EF5C217CFDBA /* FIRMultiFactorSession.m */, + 72EEAC21B14920F8619496D9147A4598 /* FIRMultiFactorSession+Internal.h */, + 6CF9CE052C31F873A4375E83B87C78AC /* FIROAuthCredential.h */, + 4FA9CAA64C36C87294B3D5C229A43003 /* FIROAuthCredential.m */, + E834F86FC7556FCB776E5725334BD53F /* FIROAuthCredential_Internal.h */, + F2BB0F5ED24363509F4BAA2F359DCA43 /* FIROAuthProvider.h */, + 50EB003993E8806E79731EEB8DBE9E12 /* FIROAuthProvider.m */, + FC41FCE9B55B88B9DE0B11BDADACE6AB /* FIROptionsInternal.h */, + 5DB89BDF996A8BEE0D9BFF17A7526E10 /* FIRPhoneAuthCredential.h */, + B2FA0C9AC2F95138B3B3325DF690AE15 /* FIRPhoneAuthCredential.m */, + F77BAD1E96623B113370BB5515C65984 /* FIRPhoneAuthCredential_Internal.h */, + 55205050371CD68706B1B6B1D1E619EA /* FIRPhoneAuthProvider.h */, + 2128B3DE5C5D7E3C9836F68E31F9EDBD /* FIRPhoneAuthProvider.m */, + B36F399DC1B9192E5FD5BAA0BDA5E3D4 /* FIRPhoneMultiFactorAssertion.h */, + F9F611FEEBB24244E57B16CE50E3F7DB /* FIRPhoneMultiFactorAssertion.m */, + DAF67EA6D91F8FCF85FC3F363F3C0045 /* FIRPhoneMultiFactorAssertion+Internal.h */, + F3D8BE91A336C4341E0BA634987877DD /* FIRPhoneMultiFactorGenerator.h */, + 4368E93AB60D22FFF172147A0F16AF1C /* FIRPhoneMultiFactorGenerator.m */, + A0D34FB095D42CF7A2E74C8B07DBC06F /* FIRPhoneMultiFactorInfo.h */, + FCCC047E666925BC4E4B77BB352C8106 /* FIRPhoneMultiFactorInfo.m */, + 1F46B02ECE16E4813203D0665ABF48D7 /* FIRPhoneMultiFactorInfo+Internal.h */, + 04002EA57154400FF38D51BA31B47E59 /* FIRResetPasswordRequest.h */, + 944CFCC2ABB9E8E5CD6497B4C44C4AF3 /* FIRResetPasswordRequest.m */, + 15672815D3F2BA8104B1776CB619A1BB /* FIRResetPasswordResponse.h */, + 1E93441E4D05780CAF8B0BE189FA7954 /* FIRResetPasswordResponse.m */, + A43FCE3FC500B05443D90B3BDEF1FFA4 /* FIRRevokeTokenRequest.h */, + D7C2D27ED9AB9F691988C1D75C86F9ED /* FIRRevokeTokenRequest.m */, + 2A48A4C5DFEFAF5FCD9BCA7A0AF9C143 /* FIRRevokeTokenResponse.h */, + 1B9788E1CB40144BC50DAC2585CF6B04 /* FIRRevokeTokenResponse.m */, + 83405120103B79BBF404D754E1264A06 /* FIRSecureTokenRequest.h */, + C67675B326D5A7272C2DF85C7000C0A8 /* FIRSecureTokenRequest.m */, + 1E6A3919878B89DD3E4BDFD4EF7BF0D4 /* FIRSecureTokenResponse.h */, + 0F09A7649D85B2D06EE1F22080019EE7 /* FIRSecureTokenResponse.m */, + 822F7BE1F1B468490A0A8EA4C8C26068 /* FIRSecureTokenService.h */, + 596B14C1C4C0E14A78F387CDCAC0C597 /* FIRSecureTokenService.m */, + 3A332BDF667A5BDC9C38990C4F2BB32C /* FIRSendVerificationCodeRequest.h */, + 24E73BA5F00AB6FA5A13594F037B9987 /* FIRSendVerificationCodeRequest.m */, + EBAA1E325151A98824754E7AA3D1AE38 /* FIRSendVerificationCodeResponse.h */, + D3EE654CC607E1716227A572320FF5A5 /* FIRSendVerificationCodeResponse.m */, + ABFA95D5A9FA6D08CEC342F1573409F8 /* FIRSetAccountInfoRequest.h */, + 94E2DA88BA72E62606C0785F2EED2CFD /* FIRSetAccountInfoRequest.m */, + 50215C4C8CD371F7C8D658A5F74BA300 /* FIRSetAccountInfoResponse.h */, + 8EAB217677E29B3AF81B16E8B90B0627 /* FIRSetAccountInfoResponse.m */, + C67A8F1B17E09F955E3B2DD7CC0936A7 /* FIRSignInWithGameCenterRequest.h */, + 03D2ECB2ED698DF05BAF4E1F12847303 /* FIRSignInWithGameCenterRequest.m */, + 7E95B0CDEF46083C8AAC38F337175A82 /* FIRSignInWithGameCenterResponse.h */, + E6128D992BCCB658CF2DBF3853A61483 /* FIRSignInWithGameCenterResponse.m */, + 2587AA1480BF27141052B195D3B8F132 /* FIRSignUpNewUserRequest.h */, + 80D3A2FCE400F13E82EA6DF678C73D27 /* FIRSignUpNewUserRequest.m */, + 408E4D64A1C3BE4CB228F8F7AD414577 /* FIRSignUpNewUserResponse.h */, + 1956E516F9F8D7A6EC0C4C793CB2AC3E /* FIRSignUpNewUserResponse.m */, + 48C351AA2DC47946B943DA8209501DDF /* FIRStartMFAEnrollmentRequest.h */, + 185EF3885299E84FDC0E27B2E3629D9B /* FIRStartMFAEnrollmentRequest.m */, + E2DF57EBAB2A1593559C0BA4A7AE31CC /* FIRStartMFAEnrollmentResponse.h */, + 45361B2BF4ECA4F437559E3BE2EA6082 /* FIRStartMFAEnrollmentResponse.m */, + 6102E5558CCA9C1FD3EEF9263FAF8EE7 /* FIRStartMFASignInRequest.h */, + EFCA10A6F2C50752B8B493BD94F379A9 /* FIRStartMFASignInRequest.m */, + 31DC1715C8EEEB3B79CCB19549FF2867 /* FIRStartMFASignInResponse.h */, + C31CA087009AC09B3938BAA50A4AEA85 /* FIRStartMFASignInResponse.m */, + 5DF03E03E3C6A3784224F32A42A5E2F7 /* FIRTOTPMultiFactorAssertion.h */, + EA587C38056FDA275BB0CD1315759069 /* FIRTOTPMultiFactorAssertion.m */, + 4CB4B6FB4024D158878A99A6FB8BC1F7 /* FIRTOTPMultiFactorAssertion+Internal.h */, + F9AB696449B6ACC4B116CC4B252CD690 /* FIRTOTPMultiFactorGenerator.h */, + 1806B9EB3A00F5741FC539C8F806BB3D /* FIRTOTPMultiFactorGenerator.m */, + 8E69672DDA59C4B3ABC78D1FE664F304 /* FIRTOTPMultiFactorInfo.h */, + 91AD644737A7EDD89CF5E1ABD6D24DD9 /* FIRTOTPMultiFactorInfo.m */, + 734CB1E708E685C239BC13CAA8BD76AA /* FIRTOTPSecret.h */, + 1AC533A5CBB2C1B2034F83CEF8A41BBF /* FIRTOTPSecret.m */, + A77E282C6D26DAFA71D7E241821B514F /* FIRTOTPSecret+Internal.h */, + 34A4AB9FD815B0446BDC5094B8AFFF47 /* FIRTwitterAuthCredential.h */, + 0EE05ACD2ABE8DAD6F089116A3D5EB45 /* FIRTwitterAuthCredential.m */, + 2B33D71A8C953DE5E9E366F5DBBCB2A7 /* FIRTwitterAuthProvider.h */, + C8502B033ADF6165A4EBCA4473E96E84 /* FIRTwitterAuthProvider.m */, + C7C755C35E92A951ED207A6856EAC0C2 /* FIRUser.h */, + 9AEC43A18DF22EFE5945C54A16426FDD /* FIRUser.m */, + 8C481153F32104DD44033856E29973F8 /* FIRUser_Internal.h */, + ED117AE8411A37F2100D9EB34C0E4BD1 /* FIRUserInfo.h */, + AA2FAD40416908BCB713E3ABEE6850F3 /* FIRUserInfoImpl.h */, + D46A5C8ABC50B206DF31028758BEB621 /* FIRUserInfoImpl.m */, + 447C23445A13E81B49A2419C87B4C559 /* FIRUserMetadata.h */, + 97A8109279929A8B5FCB3A69D0994C5B /* FIRUserMetadata.m */, + 175F457DC97277EF9BD809D6F97C9582 /* FIRUserMetadata_Internal.h */, + B7A4BC008EF3FE9C49C0C0BAE6C9294B /* FIRVerifyAssertionRequest.h */, + 7C925BCBA81C52E4EBE3E55AA7E45150 /* FIRVerifyAssertionRequest.m */, + D5880DB9493C765CDA0CCCDFFC4E8C80 /* FIRVerifyAssertionResponse.h */, + 8C22AD5B76706CE38F6C9DE4CA4CFC94 /* FIRVerifyAssertionResponse.m */, + DF54022A2C18CD8E0489BA46B21DFAE5 /* FIRVerifyClientRequest.h */, + ACCEF90EAF2427E7673A88BA8B4A200F /* FIRVerifyClientRequest.m */, + 896E5DB13A578ACFDDDE181C97742ED9 /* FIRVerifyClientResponse.h */, + 161781877AE5D81BE0D06E3AE6F1E367 /* FIRVerifyClientResponse.m */, + ECCC3FFDF2F272409A02D483A61BCA16 /* FIRVerifyCustomTokenRequest.h */, + 1D7B3F4FF6E614ECAA8E05123AD560DC /* FIRVerifyCustomTokenRequest.m */, + 919357667202CDF3A6D1A60AEFBA730D /* FIRVerifyCustomTokenResponse.h */, + 17D210328C7C59286770CF2CA6AFDC81 /* FIRVerifyCustomTokenResponse.m */, + 40E55321BF9E92214DE391FDE54C9472 /* FIRVerifyPasswordRequest.h */, + B821AB26C21BB052B34D5662A25C6D6A /* FIRVerifyPasswordRequest.m */, + 5982A7D8DA22E687F9A9E691A079444C /* FIRVerifyPasswordResponse.h */, + 9F06AE9491FF6D3251D4408B75CBB204 /* FIRVerifyPasswordResponse.m */, + 998064C628BC01BB1FA34C215C339C8C /* FIRVerifyPhoneNumberRequest.h */, + 211CE059666A5CFECAB2119A938BD9BD /* FIRVerifyPhoneNumberRequest.m */, + FBB5C9EA4B78F11644D1FD3E3BC641EE /* FIRVerifyPhoneNumberResponse.h */, + C00B7E2B969837EF6C7CCC66D9BB09EB /* FIRVerifyPhoneNumberResponse.m */, + F1568899C882C4568591F86CDBB1F8A1 /* FIRWithdrawMFARequest.h */, + 0FFBE7667C235F530A22443BEBE9C179 /* FIRWithdrawMFARequest.m */, + 1B67A89B9951B300C1D2101C6EE5A5AC /* FIRWithdrawMFAResponse.h */, + 6DED0030F4A4BEB47A740379B7F660AC /* FIRWithdrawMFAResponse.m */, + 275217AB5148412A8F3F75BC6D8A1F10 /* NSData+FIRBase64.h */, + AE4BEFF3F554E9CF4338BCECD21FF702 /* NSData+FIRBase64.m */, + C3EDE0A9D524408E8500A9B892C2DB4E /* Resources */, + F5B056A3DB680E883D566469D36CA154 /* Support Files */, ); - name = span; + path = FirebaseAuth; sourceTree = ""; }; - 31EABAD53BF1EE90107F7336273A195A /* RecaptchaInterop */ = { + 313A3989E9025850D652A58F4C9A2208 /* debugging_internal */ = { isa = PBXGroup; children = ( - B6D207CD8011C99BBA59B0ADA64AEA28 /* placeholder.m */, - 8C7AA1414B12A59ABA436BEC733861CC /* RCAActionProtocol.h */, - 042D82265AC86988C1A0624990D1D6E8 /* RCARecaptchaClientProtocol.h */, - 72A17E2030E667EE8546270C62AAFAB7 /* RCARecaptchaProtocol.h */, - ADCBFA8D3510208DD2CFD26121786CF7 /* RecaptchaInterop.h */, - E62B92958FC484F721257AFE68D9B55B /* Support Files */, + 4FE9A70EC114D58D8AB03A0789E2C97A /* address_is_readable.cc */, + 1987A908DFBA7A903CA9CF06E9BBF924 /* address_is_readable.h */, + A9D579E60B88798B2AABD0DCD66E851F /* elf_mem_image.cc */, + 3309249A31F1F80C8D7B86A739FAA322 /* elf_mem_image.h */, + ECC1320D6743CC5B8ECCA751D90D6E69 /* vdso_support.cc */, + D810BEE2A2B1ADCD657A1C38C5F2F9A4 /* vdso_support.h */, ); - path = RecaptchaInterop; + name = debugging_internal; sourceTree = ""; }; - 347DA1CBB873C09579A50EAB20EE7AB3 /* nullability */ = { + 32098C661D11CD2E2CD1AB10E2C3933D /* FirebaseCrashlytics */ = { isa = PBXGroup; children = ( - 6B4B1721405C4AD0A3C5779AB4CD08FA /* nullability.h */, - AB3838BE90465412CBF84986BF6610DF /* nullability_impl.h */, + 502292E681C5DAB555208DEC24177B97 /* crashlytics.nanopb.c */, + CA56E7C9DECB1E588D7A82DE5D4DE08D /* crashlytics.nanopb.h */, + DB34868700C724E633407B32688CABB1 /* CrashlyticsRemoteConfigManager.swift */, + A3009811B4B0EF9724FBF99936485B26 /* dwarf.h */, + 449707A1E0860C076EF471B917783258 /* EncodedRolloutAssignment.swift */, + 7F5D426E5D07445B2A1372356A755A73 /* FIRAnalyticsInterop.h */, + 8003C9147232BCB4B703D4BD90F19F53 /* FIRAnalyticsInteropListener.h */, + F231E5C46CD3475CEEDC6C366BFE4BE4 /* FIRAppInternal.h */, + C0171D55184326B25A02C54FB93C3287 /* FIRCLSAllocate.c */, + 89979B6C7FFCB6E4885282C2F03502C6 /* FIRCLSAllocate.h */, + 71AFF5D8526FCFBD96D653B2FA036BD8 /* FIRCLSAnalyticsManager.h */, + 149E4F99EE6E5DE2883DC700F9E5FFE1 /* FIRCLSAnalyticsManager.m */, + A1CFF9006318172FF875618996E243B9 /* FIRCLSApplication.h */, + 44AC6457C721DA445D18556884A2E015 /* FIRCLSApplication.m */, + 969ADACC72EB583B84A222BCB1F992DF /* FIRCLSApplicationIdentifierModel.h */, + 4374B35CFB1098543AA3E3F3ADDBE8BE /* FIRCLSApplicationIdentifierModel.m */, + EFC1032E8D3941D5A403C315E9BCC7BB /* FIRCLSAsyncOperation.h */, + F767A8DD54CDC6FF6B6E50760AAF34F3 /* FIRCLSAsyncOperation.m */, + 26D7918E08478D81148F308E5F17DFE8 /* FIRCLSAsyncOperation_Private.h */, + 64823E725C4E674E267401AF506F605D /* FIRCLSBinaryImage.h */, + 0B95EEBA957689BB36B8763199751CC8 /* FIRCLSBinaryImage.m */, + 7AFE71C72F29168C4FCED1DD85A71C88 /* FIRCLSByteUtility.h */, + 079397EBA607A7C9F53492A82CD84A96 /* FIRCLSByteUtility.m */, + FE2933D22A1DC119C3FC4A8045C5C43C /* FIRCLSCallStackTree.h */, + 8BF044AEB5B865F756E3A931F905DC4F /* FIRCLSCallStackTree.m */, + CDFE6E83FA53278155210B941169C98F /* FIRCLSCodeMapping.h */, + B9072B7042B9110B3651163E0ECCF74E /* FIRCLSCodeMapping.m */, + 8E9D0363D355B974E6A21B21101DB509 /* FIRCLSCompactUnwind.c */, + 4DA62ED86363AEEDEC469716F339B147 /* FIRCLSCompactUnwind.h */, + 47FF43C2A312C4743C70F1EB9FCEE51E /* FIRCLSCompactUnwind_Private.h */, + 86D3C7F0B14AC08313347EA946F5B9BF /* FIRCLSCompoundOperation.h */, + 0C50900FD7E10829D821A91ED3E138E1 /* FIRCLSCompoundOperation.m */, + ADC2D303E3791C4139CBA1DB42F88F93 /* FIRCLSConstants.h */, + 46CCD863ED9DD807612737C12052EF16 /* FIRCLSConstants.m */, + 56346665750C24E794DD9FFAAF3AE9A5 /* FIRCLSContext.h */, + 0DE9D0F3000E7273C3DF87C95C5BF979 /* FIRCLSContext.m */, + 4444C56DC5190B3A9CD9F2E1D1480559 /* FIRCLSContextInitData.h */, + CA4F0C1BDA454DF890A3D16551E4E1C5 /* FIRCLSContextInitData.m */, + 4C158FFC0625160CD8EB0D52A1063121 /* FIRCLSContextManager.h */, + 3ABDFA3F13CD993F7BF2C5502407559B /* FIRCLSContextManager.m */, + D93ACCFD670F354142E069BFDA358ECC /* FIRCLSCrashedMarkerFile.c */, + 8BD1FA479CAD51E692EE26EB2437227C /* FIRCLSCrashedMarkerFile.h */, + 5A0A3886093BB721C7A73A3EAE6053D9 /* FIRCLSDataCollectionArbiter.h */, + DC4C215147F2A604E06489DDDE845503 /* FIRCLSDataCollectionArbiter.m */, + 1D1D47F38A6DB71573DE26B09029BDFD /* FIRCLSDataCollectionToken.h */, + 4F86BC76BED8786E5BDD23013B218A03 /* FIRCLSDataCollectionToken.m */, + 5175F40F3CEF7F906FD6AC0124E886AA /* FIRCLSDataParsing.c */, + 6833056D8C96024AFF7198578D0244A2 /* FIRCLSDataParsing.h */, + B1DC8022568459FE71B141DAA3002060 /* FIRCLSDefines.h */, + 530698D5E17F7527617C8036FB48FE28 /* FIRCLSDemangleOperation.h */, + F3DC0634599FBCA7885AC86FF0AFCCAE /* FIRCLSDemangleOperation.mm */, + 67356227510B5F16F77B7CAE15711F06 /* FIRCLSDownloadAndSaveSettingsOperation.h */, + EC73EC871826449FFD09E9ED4CC7A943 /* FIRCLSDownloadAndSaveSettingsOperation.m */, + 6184AFCDA1596762F3A8B115D13C8CC1 /* FIRCLSdSYM.h */, + 79934793B31FEFB462548120AFE2B018 /* FIRCLSdSYM.m */, + 194CFE26D529ACB725C0E46591A2E464 /* FIRCLSDwarfExpressionMachine.c */, + 7EC963FF936222599527EAF16B48D379 /* FIRCLSDwarfExpressionMachine.h */, + 7F215D630BA3B93E5B41841445F1BDB6 /* FIRCLSDwarfUnwind.c */, + 2D17A57D1F8D771CD39B024700DBEBC6 /* FIRCLSDwarfUnwind.h */, + 261B4780EF6E4D6A906535C21DD2D7F7 /* FIRCLSDwarfUnwindRegisters.h */, + 09C8B65737B083563A8EB47277DDC3A0 /* FIRCLSException.h */, + 4E87D2EA3E527FADB02190981A1FED40 /* FIRCLSException.mm */, + BA646E1AAE412307AB1A21FF330C2EA8 /* FIRCLSExecutionIdentifierModel.h */, + 232AEEB6317B506F20D656FCA0BFD451 /* FIRCLSExecutionIdentifierModel.m */, + 4762C854BA9BEBE4ACA5BBDC14093855 /* FIRCLSExistingReportManager.h */, + 839B9BA6F51852D7957FA717C9D4345E /* FIRCLSExistingReportManager.m */, + F1555A406D34680516E29B7AD94F2A81 /* FIRCLSExistingReportManager_Private.h */, + 6C2E64955E1233D783AEEC378DC07FD6 /* FIRCLSFABAsyncOperation.h */, + D6EA1CF179983B9B68341E7D8BAE0980 /* FIRCLSFABAsyncOperation.m */, + 704E70B23BAA3899136D8116086B418E /* FIRCLSFABAsyncOperation_Private.h */, + 5277A88F40377DE52A4322D18007D983 /* FIRCLSFABHost.h */, + CCC175B60FAEF082C469565398D3B29E /* FIRCLSFABHost.m */, + 1552A4520AB3E274E867751B7F764B8F /* FIRCLSFABNetworkClient.h */, + 94D8C27A90F5A1D114AB7894C0237C24 /* FIRCLSFABNetworkClient.m */, + EEB9998EBC95031E4A952DC68F268355 /* FIRCLSFeatures.h */, + F384EE336F02F729D1F62CF993BDF991 /* FIRCLSFile.h */, + 5CF66FD8466567A90787CBA62F1DEAE4 /* FIRCLSFile.m */, + 33C08343B1CC02F2421BA3F58A251EF1 /* FIRCLSFileManager.h */, + E61D792700C41C25B66D4400FD601884 /* FIRCLSFileManager.m */, + E383118FE0F566BE2CB7C75C4A0F786E /* FIRCLSGlobals.h */, + E67E1B06C6E66CB7BE1E366C25AF3D5C /* FIRCLSHandler.h */, + 628347DD1268C3DB6DC9DB98B99D4A1F /* FIRCLSHandler.m */, + 9CCAFE38566B1B402B7F8853902D48B0 /* FIRCLSHost.h */, + CBBD18CB2920F8256BE800168085AD84 /* FIRCLSHost.m */, + 0FA45BFDED6E375B5E976AD08E9C2851 /* FIRCLSInstallIdentifierModel.h */, + 4D1F6D8A69E5930254ED23773B18A5E9 /* FIRCLSInstallIdentifierModel.m */, + C53DBF44197793C22DFB118F19789EAC /* FIRCLSInternalLogging.c */, + 6368608F57CD59C30A93E02757B0DD49 /* FIRCLSInternalLogging.h */, + CBED31DE9B9831B14C76D164E3A2B639 /* FIRCLSInternalReport.h */, + 548453F7D0C3D2CF89A4139403611799 /* FIRCLSInternalReport.m */, + EE71CC4EEED3898286A3F0D91404F7C1 /* FIRCLSLaunchMarkerModel.h */, + 44D187E4B832B2448E9BE0BBB1849F5A /* FIRCLSLaunchMarkerModel.m */, + 1117A23CA1FF731269ED88C74A473F22 /* FIRCLSLogger.h */, + 6B57865BDC504D350D45AEC3AD393B74 /* FIRCLSLogger.m */, + 34D9410D1A3AB9FEA26D5B43CFF171EB /* FIRCLSMachException.c */, + 3F04F413CFF2C63257AA42D87BBA8EF8 /* FIRCLSMachException.h */, + 6E4DD777D6F169B41890D3EE243D4130 /* FIRCLSMachO.h */, + 1842D368371AB6CA79162185CAAD0926 /* FIRCLSMachO.m */, + 8964F5373AEFEFD596E405632AFADA12 /* FIRCLSMachOBinary.h */, + 5CBAAD301C85759B9D710241CC6397BA /* FIRCLSMachOBinary.m */, + AEF15F915C0561104003BD8D387A4A26 /* FIRCLSMachOSlice.h */, + B9C44FF8FA280D675F54800E458FC98A /* FIRCLSMachOSlice.m */, + 8587461C8201D1ADB36F700DB65882AE /* FIRCLSManagerData.h */, + 478E44E81EDCB010AA2439B13812E073 /* FIRCLSManagerData.m */, + 41D56D1BDB3A1489A2DE34459F231417 /* FIRCLSMetricKitManager.h */, + 3666B4E706919097D7906227C64A231F /* FIRCLSMetricKitManager.m */, + D710CC83C6FBBABFE4C9ED45049AC55F /* FIRCLSMultipartMimeStreamEncoder.h */, + B876FFD7B34CC743E095C0BDAB587A89 /* FIRCLSMultipartMimeStreamEncoder.m */, + 6168A362B627177D842CABBEECED7B91 /* FIRCLSNetworkOperation.h */, + 6CB171A91B95B269945184CFBC9BFD24 /* FIRCLSNetworkOperation.m */, + 40C88EC663FF8B23A7640F2854BBE8C2 /* FIRCLSNetworkResponseHandler.h */, + 351D3AD35DDDC576F8EE33EE1172E759 /* FIRCLSNetworkResponseHandler.m */, + 4AA554F14CD6842A5EB7FA2394D44745 /* FIRCLSNotificationManager.h */, + 094C62316873FC622AA5632EF5EF1C33 /* FIRCLSNotificationManager.m */, + 682E7C1D8298560C9C8239FC5C4D62C9 /* FIRCLSOnDemandModel.h */, + 55CEDA7E0E064C9299B2163EAB53682D /* FIRCLSOnDemandModel.m */, + AB7487B883D58B9571CDB9D14E78229D /* FIRCLSOnDemandModel_Private.h */, + 9B2F7BA3CC0D5F7F45CD5618F2922C03 /* FIRCLSOperation.h */, + 1198C7546D5116D707D7C794F9A95CE1 /* FIRCLSProcess.c */, + F3DFC2095F229F3716675286A0B9E603 /* FIRCLSProcess.h */, + 35D7956846AFD0AFBA6D012B1FC43ACC /* FIRCLSProcessReportOperation.h */, + 0B7C89F9AB4FFDC74F0A16AD96EA8944 /* FIRCLSProcessReportOperation.m */, + 70196AD52E7C961DBBE8F0A756ABB14E /* FIRCLSProfiling.c */, + 2F287DA867598B6EB8605EBA680DCB72 /* FIRCLSProfiling.h */, + 916A17CB6C381183038FE7BB721C4844 /* FIRCLSRecordApplication.h */, + F7DF9F3F2116C179428698543E66EBCE /* FIRCLSRecordApplication.m */, + 4DB79697E5B67A2916F313E89F8189EB /* FIRCLSRecordBase.h */, + B026A628E054EE5E7C290F57E9AE6CAF /* FIRCLSRecordBase.m */, + 19291C6D5B8A6E42686156C56B21C330 /* FIRCLSRecordHost.h */, + DD49BD6EA5EC1ADFEFC4FAF6EB59C642 /* FIRCLSRecordHost.m */, + D7070A4008E086C580683291371F290A /* FIRCLSRecordIdentity.h */, + 13E7BE128FC039F0BB4960EB30357313 /* FIRCLSRecordIdentity.m */, + F3F9A5DF3E10E226910426BAB4B4BE25 /* FIRCLSReportAdapter.h */, + 83A7AA8CD27E0144A544BB502757B45D /* FIRCLSReportAdapter.m */, + FB84C52583A19832BFA2C7EFBC287E10 /* FIRCLSReportAdapter_Private.h */, + E3AD35E346BC8F98A1D7A050ABE5C359 /* FIRCLSReportManager.h */, + 07B7366190E38E5731583EA2A6827B83 /* FIRCLSReportManager.m */, + 742226AB19A802A5DCDC782D705D2E9F /* FIRCLSReportManager_Private.h */, + 4F0C0868CCACA33F1674DD39032B0EED /* FIRCLSReportUploader.h */, + 038C134CFCEB9E54F6B15AF1C3370A1B /* FIRCLSReportUploader.m */, + 954F8CE3B634FEB9CFF40FD7C962BF51 /* FIRCLSReportUploader_Private.h */, + 9BB71B4BD68AFB1A48C685B6E9BFFE1D /* FIRCLSRolloutsPersistenceManager.h */, + 1F04FFFC30B97B0FAC7FC1C9BC9512F8 /* FIRCLSRolloutsPersistenceManager.m */, + 6F1E77836DAE565631EAAF5AE6339A2F /* FIRCLSSerializeSymbolicatedFramesOperation.h */, + 14257E05ED29C4ABDA4B37032AFDC0AE /* FIRCLSSerializeSymbolicatedFramesOperation.m */, + ADC0B798E90EDF74D0F4767D9BA6878D /* FIRCLSSettings.h */, + 54E5DBE4C86A8077220295010033D540 /* FIRCLSSettings.m */, + 684B582A05244104B1FA1FB3D5E684FD /* FIRCLSSettingsManager.h */, + 24D70C4281F8E4EAAB910713E7701F51 /* FIRCLSSettingsManager.m */, + 07EA3A15DD453FCBFFB9644E4331982B /* FIRCLSSignal.c */, + 749F692094FB6B83EB53B8762DA3339A /* FIRCLSSignal.h */, + 82047259339C60585165B2200BB7FB57 /* FIRCLSSymbolicationOperation.h */, + F9221C2A87359430A172BD4E52BC3DE9 /* FIRCLSSymbolicationOperation.m */, + FA405E9557794C51F99420CA6C454441 /* FIRCLSSymbolResolver.h */, + 30DBB78398400E7750F775F5D88D6528 /* FIRCLSSymbolResolver.m */, + 8AD8A4AFDF26893BC8AD56BDC5D7FFCA /* FIRCLSThreadArrayOperation.h */, + 8D52358171B44E55E2FA1518AE8E7DF9 /* FIRCLSThreadArrayOperation.m */, + 46651ED3A21E9AD366A829124EE96C16 /* FIRCLSThreadState.c */, + FCA1D82411E411B3BC947AAE11F5DB4B /* FIRCLSThreadState.h */, + 0CA8718105C90B05F0517949C8D67307 /* FIRCLSUnwind.c */, + 14A2157D5EFC22C71086933C7C694B61 /* FIRCLSUnwind.h */, + C6536A171024F9A5F2CC10476E7A36D5 /* FIRCLSUnwind_arch.h */, + C6E8CC0B0AE2E513548778CA93C908D6 /* FIRCLSUnwind_arm.c */, + 5E1E00FFEFA186438864117EFD0D465D /* FIRCLSUnwind_x86.c */, + 39B8CF72AADBB85E061621EFD9D1865B /* FIRCLSUnwind_x86.h */, + B15F654D2B9D66123601CCE42C3B3336 /* FIRCLSURLBuilder.h */, + 0006CC9E2CF8515771893CE1D06D31EE /* FIRCLSURLBuilder.m */, + C6E020E1E84316E92D6E005259196D4F /* FIRCLSUserDefaults.h */, + EC1E8DB7444EA770E8BD585D227CD70A /* FIRCLSUserDefaults.m */, + C402DA860E2803F930F4AFE6E5347A74 /* FIRCLSUserDefaults_private.h */, + FA1D165EAF8947FBA92A5C323FFB2D46 /* FIRCLSUserLogging.h */, + 07C36295792D3376E1E4E0591C0074A1 /* FIRCLSUserLogging.m */, + 01EF8B97C6D98C23F24FFEC0E9AE4545 /* FIRCLSUtility.h */, + 36CDA47DC2A34710C987A23287F1D05B /* FIRCLSUtility.m */, + A0370DDB1679FEFFDC8ADB1AD2A2AB3B /* FIRCLSUUID.h */, + C372C1B84BBE4BF321C0E001A1A86BE7 /* FIRCLSUUID.m */, + ED563916417F6B8108AF8C920AEB6E61 /* FIRComponent.h */, + D8CF4B7A5B138751E298D6A3ADD917DD /* FIRComponentContainer.h */, + A03CD22C1B833F55A60BB8C4C96ED7D8 /* FIRComponentType.h */, + 8AA44D09040E8C978CCC1BCBD58BBFB4 /* FIRCrashlytics.h */, + ECBA82C9874542A400F7ECA31BEBF8E8 /* FIRCrashlytics.m */, + 673218C074E6450AC91C7E54A5860E0F /* FIRCrashlyticsReport.h */, + DB7E652541FB2ED16DEB7BA01A6CAEE1 /* FIRCrashlyticsReport.m */, + 10A2E8AFEDF20CDB9C2B5F2E12A081F5 /* FIRCrashlyticsReport_Private.h */, + 96EBB49FD2F8B263C527BF1CFFE4AF38 /* FIRDependency.h */, + 64EC1642A0DFED377462FFFCF1055E29 /* FirebaseCoreInternal.h */, + 2EFADDA3A669774EF989DAC7B2FED23C /* FirebaseCrashlytics.h */, + 045E577B58D9C87ACDA7F76AC26C7141 /* FirebaseInstallationsInternal.h */, + 8587314E20957263F25FAD86B196C7C7 /* FIRExceptionModel.h */, + A53824482579C66291E19124CED05989 /* FIRExceptionModel.m */, + 31A15B67B22B97248AB49364BF930150 /* FIRExceptionModel_Private.h */, + E8E9AAC4D16C91492B2CB11D23A78EAF /* FIRHeartbeatLogger.h */, + 6002A089B676FF0363DF15FAFC7D4238 /* FIRInteropEventNames.h */, + 882DE963604E1BC3243A722C3BEB32AA /* FIRInteropParameterNames.h */, + ED3037C6BFC7AC9A0D3F08EA8FE53CCC /* FIRLibrary.h */, + 478AAB730F5636516F60FFEC4D893353 /* FIRLogger.h */, + 3E0C2B5B87812829628BB6C3E0A86A46 /* FIROptionsInternal.h */, + CB6D2BF472CB0262C156FD3E260077B6 /* FIRStackFrame.h */, + F09B17F6502AAD87CA588DC5F5CB90F9 /* FIRStackFrame.m */, + 080C629D6C8C0F92790F6FCF487AE8E4 /* FIRStackFrame_Private.h */, + D872D4A90F06147852FDEFD7B889DF16 /* StringToHexConverter.swift */, + D8197D63497F86B3885ED92B82431A48 /* Resources */, + 82ADD324900416AC2CD80849E03C0491 /* Support Files */, ); - name = nullability; + path = FirebaseCrashlytics; sourceTree = ""; }; - 34FF14C420BE919725F23157BBFF3CF7 /* container */ = { + 3230F747ED78A137AF731E18A408D81E /* str_format_internal */ = { isa = PBXGroup; children = ( - 2422B5C9822E596122EDC29F4442C235 /* common */, - EE722DEFF3D24D930CF48B92B2C7D4DC /* common_policy_traits */, - FC594F66CA83D623C8FDA00FF7315857 /* compressed_tuple */, - 2C0CC899C608B802D3148F98C07CEBA4 /* container_memory */, - 4A451D1A2D3AC3386E266A08D82F7E3E /* fixed_array */, - F602FBAD3DD0E3BA15D80E1D1B725B5E /* flat_hash_map */, - 570EFC92D9C664365E78A06D76474A76 /* flat_hash_set */, - C2ADD78F275B62F262A0F0179F73C1FC /* hash_function_defaults */, - C13C5AE0F4C8792D5CF8C354F5F5E5C5 /* hash_policy_traits */, - D2271D27A068A9E6541533A5181B0635 /* hashtable_debug_hooks */, - DFD30013D6B99445B0B3383467732101 /* hashtablez_sampler */, - 293AC6872C1BD05B9F26570DFB1AE7A5 /* inlined_vector */, - D6C5F2C0F1610CE0AC4753CCA96203F0 /* inlined_vector_internal */, - 9FE20A5EFAA5B9B58447AE5C2661C01B /* layout */, - 91A5C12E9F4E07882DB8F1963076B4CC /* raw_hash_map */, - 25D829D4539F08C8B9F65F3F8C4E3C6A /* raw_hash_set */, + 7EF01C8B102C5AB0C8E886EA6BDD516A /* arg.cc */, + 687599ED1D37F4ECDBBC24DBC05121F8 /* arg.h */, + 8311A83B4A42F294416125953CCA6B7E /* bind.cc */, + 02D4BB88156BCA543178C396802206BE /* bind.h */, + 6D16E62719B115AD52A42B83245B825E /* checker.h */, + 287E08D975BEBFF671560DC81287AEC2 /* constexpr_parser.h */, + B186C0E69C8434F22CFB8767B7D0D5C9 /* extension.cc */, + 82BDC33B952AFE9EF82DCD5369B3B967 /* extension.h */, + C1F64784461183417EBCE6715CEC5CB9 /* float_conversion.cc */, + 974DE6903E46CE35E63457B26CD2BD99 /* float_conversion.h */, + E8EDC407D27259CE348B71F0920FDABB /* output.cc */, + 82EAB6287BD69D4B6161239F3AED83F2 /* output.h */, + 5CC9ED54F7B5C65311C45CFEB3801B0E /* parser.cc */, + A998CED494A840B340E5F0C208DEDB37 /* parser.h */, ); - name = container; + name = str_format_internal; sourceTree = ""; }; - 352C20B0DD9C62E89467704D7D7A9C27 /* time */ = { + 329475719A2916878363C72174159B99 /* civil_time */ = { isa = PBXGroup; children = ( - 16C792CC3C3F322ACED69A4B364DD29E /* civil_time.cc */, - 57DCD7A5C33CBE505720A257C349D55F /* civil_time.h */, - CB16C4AD6DD2392A4B4C9D648AA99CD1 /* clock.cc */, - D43D4E62B5168E61DFC104467622684C /* clock.h */, - 40651F5EC5DA11535C6A08248D9B1E53 /* duration.cc */, - A3E2B6A789CA4FE0A2D02A392D9D0EB1 /* format.cc */, - D21B25EC26AB97D7B7BFBC48F5C76F6C /* get_current_time_chrono.inc */, - 40842C5ABF3BEE0E81B1D2911603415C /* get_current_time_posix.inc */, - C20DA16B390B06BAA81E2AFAB7C687C1 /* time.cc */, - 8615671DA648778F043E54934D2ADBE4 /* time.h */, + 14AF35B8B79A4E6F7814F78C31091869 /* civil_time.h */, + 338CBA7027FF9F66F50C6EBF7483AC7F /* civil_time_detail.cc */, + 34DE205920796B4220744C496A612E24 /* civil_time_detail.h */, ); - name = time; + name = civil_time; sourceTree = ""; }; - 35A97853C5521AD7EFA81155CA7DBF36 /* Support Files */ = { + 32BBEEEDCA4226C018A7124D71198D2E /* Resources */ = { isa = PBXGroup; children = ( - 0F1F29CB20CD9B566E2986860C0324B5 /* Kingfisher.modulemap */, - 364A7966B1A072744B356C9B60A2CCFB /* Kingfisher-dummy.m */, - 4F2564F1B9C94BC047A4D43F38CF6100 /* Kingfisher-Info.plist */, - 6256A09623B56FC49FA62F1E81FBAE02 /* Kingfisher-prefix.pch */, - F8DB3A05AB997BEEFAE4E707FE0CB999 /* Kingfisher-umbrella.h */, - 705A70E62E7BC24BC07666641E3F5851 /* Kingfisher.debug.xcconfig */, - 034BFBB087CC0155EC63BEDDEF3277AD /* Kingfisher.release.xcconfig */, - E091657D1B268F3E5D6094B0B06F214C /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, + 4CD641701F99B8793587E3EF169BBBE4 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 35A843561B823AB21A4A0417491DB4F1 /* flat_hash_set */ = { + isa = PBXGroup; + children = ( + 38A3325E51E471CBE548D575B6B38921 /* flat_hash_set.h */, + ); + name = flat_hash_set; + sourceTree = ""; + }; + 36C4101ED9CDB4801D63DEBFAC76509D /* functional */ = { + isa = PBXGroup; + children = ( + 7B653271A6D5145BC8AFE1036A9C49B7 /* any_invocable */, + E5149420BEE2AA663340EE6F712C1358 /* bind_front */, + E3AF1C5B7B042222789105822BF3A5C9 /* function_ref */, + ); + name = functional; + sourceTree = ""; + }; + 36E3D7E174A0A629C539BDBDDE09513C /* leveldb-library */ = { + isa = PBXGroup; + children = ( + DFD6EB2057EFB79BF53B0598E782DCF4 /* arena.cc */, + 7D23F86E0F10A138211B2005FFAAB4B7 /* arena.h */, + C059A0BFCE76498885F4FF65EDF2B9A0 /* block.cc */, + 4E6D4E878299E6CFC3B1126C19168C30 /* block.h */, + 244C2DCB44C7ED74A6D79D6E1B39B667 /* block_builder.cc */, + 91FB5D68244698A65B3FAAA6986C8C53 /* block_builder.h */, + D1E44139DA3E017635E0EC416CE8C2C9 /* bloom.cc */, + 2587432C96D6FE76BC57FB8BE589DA31 /* builder.cc */, + 9A62C1A9EA99E6A84EE56F594D99ED7D /* builder.h */, + D3134EE8CF2B523D4C5E4156CF72552D /* c.cc */, + DD75442D06C373BD8C4FFEA8192291CB /* c.h */, + C82031B0255609EA7E40093773B2AEE6 /* cache.cc */, + E7BC35C3F8824BD157CA4850D5331BD4 /* cache.h */, + ABF0AE9534086FA1F906261D824385BF /* coding.cc */, + 5DA927B038E93914554708340629B971 /* coding.h */, + 0EDDD75DE2095EF065CF21179DEEE57C /* comparator.cc */, + 4DAB4F2AC03D5532E9F8A7B097F902EC /* comparator.h */, + FC1F19E403D6064E004529C4BD87CA26 /* crc32c.cc */, + 83469AB61424189019D3733898739017 /* crc32c.h */, + D1595D90D24245D5C32DBFC2F1A46F77 /* db.h */, + DB2A3357405A8167B0FB80BFAF58E249 /* db_impl.cc */, + 2D4D60F3E51DBA83A0D8E272C9F2887E /* db_impl.h */, + B30883073CF68E35297B32F1520F322B /* db_iter.cc */, + 1CCC10C5453F1D9595853DF751BCBFCD /* db_iter.h */, + 09F346D33E1CF722141FAD88CD734490 /* dbformat.cc */, + 25F439FB85B24117162638A4C1214C40 /* dbformat.h */, + 607CAD914FFDC24FE69C89ADB3E32DAA /* dumpfile.cc */, + 582D323078C09A4789E99E0BBD671DD6 /* dumpfile.h */, + 1A8EEF2A96629191931384C824A92A9C /* env.cc */, + D4F7FA593C883C1D1ED71631E2AD3024 /* env.h */, + BB220D966CE471E1C6B51F1E434589A3 /* env_posix.cc */, + DCA32FDDAAD1A05CA2C927AA0FC07E20 /* env_posix_test_helper.h */, + 7AA1F69292D3B09D720A65590247D04A /* env_windows_test_helper.h */, + F0EA2AB609574DB36A6E122F01F2A9DC /* export.h */, + 8506793237481CECD3F65763028F9400 /* filename.cc */, + 9D7932A2CF7AB9BD31BB956091DCE799 /* filename.h */, + DF12C38F3EFB2F2E4D72110D7CC68215 /* filter_block.cc */, + 8AB0A315986FF68A76E9FD650749B296 /* filter_block.h */, + A0BABA23FAE113FC89089D4843CF73F1 /* filter_policy.cc */, + AD869BB8BF39489293C759D4BBB92D2A /* filter_policy.h */, + 1884EF97DADBD1A0D6439EFE42B6D483 /* format.cc */, + 2E2FEE4494AB0D04CB9567FDB69C9159 /* format.h */, + 69384F6A81F9E340BEA95A0379354D48 /* hash.cc */, + BE2AA776829552D8EA7BE0D26D689C98 /* hash.h */, + 71FDDFF906267F54E702BD4F18F6161D /* histogram.cc */, + 9B698A607ECE2A19FC06FC65A1FE3ECB /* histogram.h */, + FD753E6276B965A1E80ED23C3A97AA9F /* iterator.cc */, + 72DBAA8B818B5D7EC873BF03BF72526F /* iterator.h */, + 0BF145C39D60187BF9ED0E515B896E63 /* iterator_wrapper.h */, + 0D6CAB970C9DC37128721F86BB1B9563 /* log_format.h */, + 8D20CE6416484D2F07679F313F4B3989 /* log_reader.cc */, + 3589FAAE7179A07184CE1D7C9FE1B8AB /* log_reader.h */, + 34F450EEA6A37787C36717E23C7A1397 /* log_writer.cc */, + 3F924A74D76F29D1496C24221FF0109E /* log_writer.h */, + B14E6D31859D5414F45A357823BFCC03 /* logging.cc */, + 306E898F40DC9AFE6F7FCFF9738180F9 /* logging.h */, + 8DE09F043A61FE2E06EE3ABCA13420C7 /* memtable.cc */, + BD280A40B6B219ADF30EDC76882BF647 /* memtable.h */, + D751E616CED0A39C6E84E04FFEADC999 /* merger.cc */, + E2FE16D66F4325B885CAEEDC9C254F2B /* merger.h */, + 9D923D330A83A59B1AF71E1C34F7A56F /* mutexlock.h */, + 31A4A3C97E2889BFF49C807A586C8550 /* no_destructor.h */, + 2DB89100600F1F85ACC29FFCF69EF675 /* options.cc */, + E2F18B201CE7AD0E47F0C9AC20D2179E /* options.h */, + 44518A9E00C4BE213AB9A43D27CF4591 /* port.h */, + 2122203842423B61F95BA75F4B280B52 /* port_example.h */, + 55A468266C4532B888704DBD2E64DA30 /* port_stdcxx.h */, + 2D394E544D23761F3E61C7884752180E /* posix_logger.h */, + 9EFE3804B2D745BF38D2CD849D66C38D /* random.h */, + 31020945E0A1F46FACA73EB08000473C /* repair.cc */, + 4466D9D382B38282ABEFB8E930070182 /* skiplist.h */, + 25DAB1482A21EDB7671405398CEDB0B2 /* slice.h */, + CD57637384AC9CE4FCA299B9BDFF96AA /* snapshot.h */, + BE35A3357F1E9BAD99DBBFFB30A0D290 /* status.cc */, + 2D1A34C3DAF6E0E27E2EFEEE2BD8DDC2 /* status.h */, + 84517DFA9BF5E267A99B3899818B2B39 /* table.cc */, + F498A6D36A4F329C447A4849FDADB0AC /* table.h */, + 0BB91C4A10711E66692E483AB45ACFC2 /* table_builder.cc */, + D4A22270E5371D3C8930058FC8449365 /* table_builder.h */, + C9A7A9CA0ADB1EEC84310329042FC8A1 /* table_cache.cc */, + 61068EE62F4F5779F4AC46C85624B64F /* table_cache.h */, + 1EE9D287043E11F521F958CD1AA4DB6D /* testutil.h */, + 0EC45B37CD9844D5B79D918083CEFA81 /* thread_annotations.h */, + 2E14CF4CAE503D64F537E71F22398969 /* two_level_iterator.cc */, + FBC1FBA6F0918D019593D12D0831EEFB /* two_level_iterator.h */, + 74101926C3595FDA31C74E0E4204B950 /* version_edit.cc */, + 1073C37B9043B745E4B6995922971EA7 /* version_edit.h */, + B1D48A38320C36603A5B34338425DD44 /* version_set.cc */, + 06FA486FFC91C406BBE365C1B9A6D2CA /* version_set.h */, + F593C429B124FDBAEEE79DC22172117B /* windows_logger.h */, + F97104ADA3A816E7DB13DE02A9E2D930 /* write_batch.cc */, + 7200826E96969B60CA9D4BB190F5CB3B /* write_batch.h */, + E93B9C701BEB399419B6428A72246E21 /* write_batch_internal.h */, + C6722423277E5017F763A1CACA3E201C /* Resources */, + 647F5A2FD7CA6311D58EE7ACCCC3ABE3 /* Support Files */, + ); + path = "leveldb-library"; + sourceTree = ""; + }; + 37A6AFAC5163018C48DED72A052F5078 /* Privacy */ = { + isa = PBXGroup; + children = ( + 688C2150B4BE8D29B183423D2C942082 /* Resources */, + ); + name = Privacy; + sourceTree = ""; + }; + 39127A528AAAE19EA57AD1AC337DDF19 /* Resources */ = { + isa = PBXGroup; + children = ( + 494E8342AEDE0972E737B5B0DD3605A0 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 3A23A74B36DA46DFD626958967876B82 /* pool_urbg */ = { + isa = PBXGroup; + children = ( + 41A212B47A780E54A02B2B08361FD976 /* pool_urbg.cc */, + E326D34296E21D7276601A310F814E90 /* pool_urbg.h */, + ); + name = pool_urbg; + sourceTree = ""; + }; + 3DF7CF21AF2F10ACCFCCBCFACE654AD1 /* debugging */ = { + isa = PBXGroup; + children = ( + 313A3989E9025850D652A58F4C9A2208 /* debugging_internal */, + 4940BCC62E60719FD76FF95F360AB20A /* demangle_internal */, + 123D994EF2C37366EFBEDE06D5E847A6 /* stacktrace */, + BEB1065BA457EE1F163DAB3A57068150 /* symbolize */, + ); + name = debugging; + sourceTree = ""; + }; + 3F1FA499A91EAF5BD795AB654767D25D /* Resources */ = { + isa = PBXGroup; + children = ( + D76E075AF9BD67DB4B6755994D278D5D /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 3FE8F6A9712F92DF136549FC049AEE21 /* SnapKit */ = { + isa = PBXGroup; + children = ( + F75B12BDFF0A7F7970AA586EE92FFE42 /* Constraint.swift */, + 47B9913383CBE472E71F347E0B3866F6 /* ConstraintAttributes.swift */, + 1170979C257561ED850C7CE2944683EB /* ConstraintConfig.swift */, + 76611FDEF7A5A7F2B9DA9BCC11E4F444 /* ConstraintConstantTarget.swift */, + 52B66D61138FF668B2B12CDFB7028ED7 /* ConstraintDescription.swift */, + 8AE58325C4B29B405BA281FCB706E064 /* ConstraintDirectionalInsets.swift */, + 2A1268AE50259C1C0BBFEB021891900F /* ConstraintDirectionalInsetTarget.swift */, + AF14715E92FED75042552BA9CDE794AD /* ConstraintDSL.swift */, + 7A3DECDBA0A075246E576A2026D28339 /* ConstraintInsets.swift */, + DC04A11B20488C32D5B5858D417D8495 /* ConstraintInsetTarget.swift */, + 426C11C02F24907B2CF9D9B94D0D8D5A /* ConstraintItem.swift */, + 9689A0E1F88AC6890457418F687046DE /* ConstraintLayoutGuide.swift */, + 99283EFC615EA504B06426610D3B34C1 /* ConstraintLayoutGuide+Extensions.swift */, + DBCF7AA560E14BFAB877C48C1EBFE58E /* ConstraintLayoutGuideDSL.swift */, + EB995BA9C117117E430AD2BD6470FF24 /* ConstraintLayoutSupport.swift */, + 42408F144924BDB439A0BAF526B54ADB /* ConstraintLayoutSupportDSL.swift */, + 45AA9F56498859B9E2D88FB705B92F54 /* ConstraintMaker.swift */, + 1D928CC44FDA4A45C83C941EB05E1AE6 /* ConstraintMakerEditable.swift */, + 50FDFAE03796BDE08C017541D73AA903 /* ConstraintMakerExtendable.swift */, + C2021B73E8FB399D99432EB4907CC38D /* ConstraintMakerFinalizable.swift */, + 998CCE13B75874C3C349F20D765DDA09 /* ConstraintMakerPrioritizable.swift */, + 9C103A6A8C5CBA809FCAB4870E85339C /* ConstraintMakerRelatable.swift */, + 305BB6E1941264F132EC87D3F6883686 /* ConstraintMakerRelatable+Extensions.swift */, + AC11F332316F4FF2E0EA6873E33655D1 /* ConstraintMultiplierTarget.swift */, + D8C724A5A9D933D624D89C9FD20CC7C0 /* ConstraintOffsetTarget.swift */, + 24D1A10803A28B542746264B524A254B /* ConstraintPriority.swift */, + B5CE102580802F51735077BE3F25FD88 /* ConstraintPriorityTarget.swift */, + A142A3D7BFF765357F86B1302DF07E69 /* ConstraintRelatableTarget.swift */, + FD6FA9E2354FD1E112C661A0A7FD4154 /* ConstraintRelation.swift */, + 1A06280367B42F0171CAD217D096DD81 /* ConstraintView.swift */, + 2C951F0880846B96A088CA60B509BEE2 /* ConstraintView+Extensions.swift */, + 8158655D46D24502A8F61C389A51D34F /* ConstraintViewDSL.swift */, + 8BE00A807CBA9B37168CF284F5F522EB /* Debugging.swift */, + 5F40E81656B80460A7776F3356BE9AA1 /* LayoutConstraint.swift */, + E34F2F1C75C4490A526A5B3A42DC831E /* LayoutConstraintItem.swift */, + AC4467DBD8EBFB64BB18755BB70CA7BB /* Typealiases.swift */, + 516561CFB2EB3E21D014A8CC90BADE8B /* UILayoutSupport+Extensions.swift */, + BBA9CDF9C62D2F4B11FFE3AB514662BB /* Support Files */, + ); + path = SnapKit; + sourceTree = ""; + }; + 409DEAE307A6652EF35212C9DD909FE5 /* raw_hash_map */ = { + isa = PBXGroup; + children = ( + 5E1D43E83F0B82354793EFEC4E99128E /* raw_hash_map.h */, + ); + name = raw_hash_map; + sourceTree = ""; + }; + 40EF92C9C9682FA0AB857F15663ED1B7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 92BCD9204C6C90103BD0932B6053CA53 /* Kingfisher.modulemap */, + 928E6A84C60E057F9CF5A6B251838E2D /* Kingfisher-dummy.m */, + 791D8C207813B5FE8984285CFEBA0752 /* Kingfisher-Info.plist */, + 3ECE5855CF44828C86E788F985AC7217 /* Kingfisher-prefix.pch */, + 6849FC25A4AA23051C48BE5E12D0415F /* Kingfisher-umbrella.h */, + 4210FF2774BA13285DC607DD5F7025C1 /* Kingfisher.debug.xcconfig */, + CD7B126596E51A56A5655760BF9C137C /* Kingfisher.release.xcconfig */, + 811DEC1FC90AE20E13E07A19CAE95688 /* ResourceBundle-Kingfisher-Kingfisher-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/Kingfisher"; sourceTree = ""; }; - 362DF59C3F4B465CC3A4B34EA8651CE3 /* platform */ = { + 4143DA11696468DF006C5CF56BAB84C9 /* spinlock_wait */ = { isa = PBXGroup; children = ( - 844EDF3CD9953DF1D9CF865C687B4650 /* platform.h */, - 2915223D9C09EF627C69E48C0C18C18F /* randen_round_keys.cc */, - BFCACAB9652BFD1C2C0335CBCC25FB3C /* randen_traits.h */, + CF961A7ACCF0EA44A601CAC7C12C70BF /* spinlock_akaros.inc */, + 9479426056AC9859E66265E50A717C76 /* spinlock_linux.inc */, + 02361B4228FF40FF56250802343DC604 /* spinlock_posix.inc */, + DDD572906B1C81B4638B6CD4F255F20E /* spinlock_wait.cc */, + 7FDC55353B8C70BC1E35BA2AE7CB36F0 /* spinlock_wait.h */, + 0C01B76116B510E6C490BBFE5C04C821 /* spinlock_win32.inc */, + ); + name = spinlock_wait; + sourceTree = ""; + }; + 41FD908ED5FBA9E313EE70364848189E /* Basic */ = { + isa = PBXGroup; + children = ( + E9A3E8311337F80C84BCDCCB7B0CCDE9 /* NSBundle+TZImagePicker.h */, + FEF65AFD0AA973DCC123D7DEDE341424 /* NSBundle+TZImagePicker.m */, + FE9744DFDA34D54AD55C06A4B257D4C5 /* TZAssetCell.h */, + 55F537134BF82AA569A90E9B62098B08 /* TZAssetCell.m */, + A42C98F161FD2FCE951D6FF5EBC3B379 /* TZAssetModel.h */, + 4D231913482767BD403643DD44A073DF /* TZAssetModel.m */, + F66598499130BC2E96CB4F67283AB59F /* TZAuthLimitedFooterTipView.h */, + E32250DD36BCB271621EBD0E54625A8C /* TZAuthLimitedFooterTipView.m */, + 9BC081A0F3415A7490FC42C6AED534AF /* TZGifPhotoPreviewController.h */, + 9E7C9D99F71A47F26AD82F5E63DDB2D9 /* TZGifPhotoPreviewController.m */, + 4E4BE8BC41F4476684B1DE2D6F2F8009 /* TZImageCropManager.h */, + F0899FDEC50690FA028C9D37A206B4EF /* TZImageCropManager.m */, + 793F027D795E0D79669E62CB54D5B27D /* TZImageManager.h */, + BDF4AB32156E5F8FA9C272D5AFD59B26 /* TZImageManager.m */, + 41C4CFFCAF63AF40C522F2E26F474D2C /* TZImagePickerController.h */, + 3B318E8553FC5E06FA3466A5A17F5341 /* TZImagePickerController.m */, + 1C4C710B0BAED0C7BD1EB589E68C17E0 /* TZImageRequestOperation.h */, + 5644A4B2A4C9D551C24EC149A991E9CD /* TZImageRequestOperation.m */, + 46883749FFC48C657703764895069431 /* TZPhotoPickerController.h */, + 959CE0C7C75487106FE57F47CC070CE3 /* TZPhotoPickerController.m */, + 526242049CACB0687720FA5509AE945E /* TZPhotoPreviewCell.h */, + 7629E094E923585B4B4012D56B2CE42F /* TZPhotoPreviewCell.m */, + D8B89DEE4040C99DEC18FD35F396D550 /* TZPhotoPreviewController.h */, + 01C724D095C5E266DF1C662E9B8095AB /* TZPhotoPreviewController.m */, + 148B7D7C596A0BF0AD38BC7472A8AD62 /* TZProgressView.h */, + 688EAF7F1F043778A7B80713BEA65090 /* TZProgressView.m */, + EFF7580EB6410FA6EF5D256B555B4461 /* TZVideoCropController.h */, + 5F22A086E67EACD5F24F3BF603BF18A4 /* TZVideoCropController.m */, + 58334F70531732D3213A914017084378 /* TZVideoEditedPreviewController.h */, + A7F1BAAB150385AE49F5F6F43AA42A95 /* TZVideoEditedPreviewController.m */, + 283514F0FD818F620F214A6249936785 /* TZVideoPlayerController.h */, + 8F05901FE62F5D2CE676EAB4468E829F /* TZVideoPlayerController.m */, + D680DABD214F3385D5FFCD4CE9FA2B22 /* UIView+TZLayout.h */, + 5475554C2C1E6BA7753376886994405A /* UIView+TZLayout.m */, + FDF2EF26966F58B790C18A34D7C9F298 /* Resources */, + ); + name = Basic; + sourceTree = ""; + }; + 42697A748A0768AAC15F660CBED3681F /* cpu_detect */ = { + isa = PBXGroup; + children = ( + B1A2CD8FA60CFB2836404A83141E1D67 /* cpu_detect.cc */, + 9A2A21C7EE44403993630D63E160AD06 /* cpu_detect.h */, + ); + name = cpu_detect; + sourceTree = ""; + }; + 4323C9B8D71C35998666DAFAF02CE3CF /* private_handle_accessor */ = { + isa = PBXGroup; + children = ( + 6CDC48DE4A8A024738B189B3F401F760 /* private_handle_accessor.cc */, + DD28DB9279798424D2D5B4CED181A712 /* private_handle_accessor.h */, + ); + name = private_handle_accessor; + sourceTree = ""; + }; + 439616BE73B6B013CC7B2E33D13B42B7 /* bits */ = { + isa = PBXGroup; + children = ( + 627F6A1FB0A264B491C706A18FEAA4AF /* bits.h */, + D1342F3908357D6B53C451703638E9A5 /* bits.h */, + ); + name = bits; + sourceTree = ""; + }; + 43B3C82AA95F6496D9A21FB332423EB2 /* kernel_timeout_internal */ = { + isa = PBXGroup; + children = ( + 89D61A08521EDACB201767459A2FC662 /* kernel_timeout.cc */, + C0F7911D65AE35ABB189D678A1B9C4F0 /* kernel_timeout.h */, + ); + name = kernel_timeout_internal; + sourceTree = ""; + }; + 43C4D439CFA4E2AA7A4C3A990D94CAFE /* encode */ = { + isa = PBXGroup; + children = ( + ); + name = encode; + sourceTree = ""; + }; + 43FEFBCFA3D752FC909F1D1D2089EE50 /* platform */ = { + isa = PBXGroup; + children = ( + ECAE2ADA81A8D75426B9F66DBB83CD85 /* platform.h */, + DA8FAF2953DE6C22CC34DB557AD4D064 /* randen_round_keys.cc */, + 4CAEF4EC7C93486445750D0511730C69 /* randen_traits.h */, ); name = platform; sourceTree = ""; }; - 3862B10BE588F95B5B45569052FE2900 /* Support Files */ = { + 446E76CC17B6A55B6C849AD8B4E7AB98 /* Resources */ = { isa = PBXGroup; children = ( - 69BA31745D2678CE07F8008E875DB336 /* GoogleUtilities.modulemap */, - 71EB06127398BE67F7823419E215880E /* GoogleUtilities-dummy.m */, - 806F791C61CB6D8C311348C5E0E6BDA5 /* GoogleUtilities-Info.plist */, - 38AF30BF0506F8BE275D747FFBD6FEC0 /* GoogleUtilities-umbrella.h */, - D4C1E4E424E5CCB7DFEB9669A1C774FA /* GoogleUtilities.debug.xcconfig */, - 9F32CEB0AD50C1710F57EB1F311E42B5 /* GoogleUtilities.release.xcconfig */, - 9224510BD068E297032D019C9CE51E93 /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, + CF42CFBE193CA55FC0F9C4EFA50F90CD /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 450C9D10853BB2F1671F219B234D5CA8 /* FirebaseRemoteConfigInterop */ = { + isa = PBXGroup; + children = ( + B6183D124184B22042FC1A65B9AFBDEC /* RemoteConfigConstants.swift */, + DA8C24EB003BE81E89AA229710F25CE6 /* RemoteConfigInterop.swift */, + 4FDC3A82ADCC8D010A0225D02B019356 /* RolloutAssignment.swift */, + 52D73DC74E170B5058C851BE12BDE03F /* RolloutsStateSubscriber.swift */, + 9A239FC8CB3F58A29329AF87681075FE /* Support Files */, + ); + path = FirebaseRemoteConfigInterop; + sourceTree = ""; + }; + 45F46669B007B5CDD2AEC8F5983B88F6 /* crc32c */ = { + isa = PBXGroup; + children = ( + 1025EFA1A3EAF2EBD76BEC609F17AFE8 /* crc32c.cc */, + 703728574293CC44C806F1BA183E0787 /* crc32c.h */, + 9E494C6DF99E643B057C1F4166455583 /* crc32c.h */, + BB176DCEC9060A52AF6A2701E59F8B03 /* crc32c_inline.h */, + 953F62C62D89975BF7DC366DF68C52C3 /* crc_memcpy.h */, + 0E3CCC92FBBF1845C38E35411C4FB340 /* crc_memcpy_fallback.cc */, + D6A97B0CC05DD116EA0598B85ABF8F4A /* crc_memcpy_x86_arm_combined.cc */, + 36627B2BD2C3669D66EA9507975A8437 /* crc_non_temporal_memcpy.cc */, + ); + name = crc32c; + sourceTree = ""; + }; + 47F3D1616F9E8ADF46E218AACC375799 /* internal */ = { + isa = PBXGroup; + children = ( + F6CA8FF62BFE3E664443ABD386726538 /* escaping.cc */, + 396E22B3321418E2FC734FC896EEB426 /* escaping.h */, + 12FE3EE3FB43582D2BC9933EC124BE8B /* ostringstream.cc */, + 87CD6D5BE2F3DF288DF4F844883F574C /* ostringstream.h */, + D42BC68F597656EBAB3B5064246A3D84 /* resize_uninitialized.h */, + 534F5BD6E93D5166281FAC383473608A /* utf8.cc */, + D837C84F7097C4C20B7EDE91E86A6280 /* utf8.h */, + ); + name = internal; + sourceTree = ""; + }; + 480DE5787187268CF246C0C5E970B9CB /* FirebaseCoreExtension */ = { + isa = PBXGroup; + children = ( + 56FBD1DD6F955865E4B9A69785F27326 /* dummy.m */, + 2236B3C70A0C88FE42642987F6390A15 /* FIRAppInternal.h */, + E076F15E4F0F3AA2FCF153B488A79AE2 /* FIRComponent.h */, + 54B06B56C3FD936658BAFE009CA5195C /* FIRComponentContainer.h */, + 6C73E5DDDDB59CD242BE63B5677304F2 /* FIRComponentType.h */, + 6ACE367D4E244F8C4050955061711340 /* FIRDependency.h */, + 01A572C71D6F801D0EBF42DC7FC47FB1 /* FirebaseCoreInternal.h */, + 321C2871D36D0D72CFF711B8FB84C026 /* FIRHeartbeatLogger.h */, + 08A5874ABBEA879E35596C057661A097 /* FIRLibrary.h */, + 66E16185C8F4FAFA5EFC1025E0963961 /* FIRLogger.h */, + D2DA6FD6559891572BE23E388615E634 /* FIROptionsInternal.h */, + 73B0847ED782CBF93FD553D04046D907 /* Resources */, + 7ED406352B1FED4ECBCDD2F8B41420B9 /* Support Files */, + ); + path = FirebaseCoreExtension; + sourceTree = ""; + }; + 48A429BF8BB73D9AEB4E080A7DFE6E52 /* Support Files */ = { + isa = PBXGroup; + children = ( + A16526EEC18C4F50DE93F2744CB67E1D /* PromisesSwift.modulemap */, + 348897630008E60693542001097803EF /* PromisesSwift-dummy.m */, + F24EDC42583EAF1EDB5C15A67A6DA88A /* PromisesSwift-Info.plist */, + E047FF0A22C14DF22B88FB930794D9DB /* PromisesSwift-prefix.pch */, + 885092B6A732680B6CE607FDB515E0D7 /* PromisesSwift-umbrella.h */, + 1378A528AC2A6B2572E220216F53F9FB /* PromisesSwift.debug.xcconfig */, + 676B2E401BB420FF915ECF9907D7D442 /* PromisesSwift.release.xcconfig */, + 877634C205AF1621E49C1569A844C0BC /* ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; - sourceTree = ""; - }; - 39095315938FB00CD312D211C27AA4BB /* iostream_state_saver */ = { - isa = PBXGroup; - children = ( - 7DCC95466F74C337B00EF32C9B1DA6AB /* iostream_state_saver.h */, - ); - name = iostream_state_saver; - sourceTree = ""; - }; - 39BB752F0A2E18DDD2AAAB5C6D659402 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9B023E2D425EB106B4EB4795AE0E4207 /* nanopb.modulemap */, - 34399B6F4297B786274A740C42112BF9 /* nanopb-dummy.m */, - 9FA86EF093A7DD57AF9A4E4EAB91DE91 /* nanopb-Info.plist */, - C2849D81547D03DF1077ED201F424FE1 /* nanopb-prefix.pch */, - 519D5A3BD8208FD5ADDA4658FFFC3C08 /* nanopb-umbrella.h */, - 4350220E42E1C777E39D127161265A6A /* nanopb.debug.xcconfig */, - B96E8E395524C881AFCB509C8643BC45 /* nanopb.release.xcconfig */, - D735AAE51696C629108CA7B7C2505FBE /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; - sourceTree = ""; - }; - 3A04BCD8B1098077F3DE67997D248A4E /* Resources */ = { - isa = PBXGroup; - children = ( - 59AC23C57BCB53BA1410CEED39301DB0 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 3A30DC4C5F42F4B12D2224677DAC767C /* randen_hwaes */ = { - isa = PBXGroup; - children = ( - 00F6F3F845FC155C25BE619DCC272B81 /* randen_detect.cc */, - E7DEACD7DC5DFC5774AC43E6273A3A6B /* randen_detect.h */, - 95B390F198735D7EF93C29CC3FAD6A42 /* randen_hwaes.h */, - ); - name = randen_hwaes; - sourceTree = ""; - }; - 3AB21D45B42E3B5B57D5AEC1FFB085D2 /* Resources */ = { - isa = PBXGroup; - children = ( - 239592782B3463FB9BF7DDF8EB4DBAE4 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 3AB56EDF44FFB375EE5A6EFD9352B1D2 /* pool_urbg */ = { - isa = PBXGroup; - children = ( - CBAA681CDA069CA1AEFB8A6C1D1EB1E1 /* pool_urbg.cc */, - 09D06D8382E762E2FA2876E6673AA5DD /* pool_urbg.h */, - ); - name = pool_urbg; - sourceTree = ""; - }; - 3D6A2D0D4E20E168559149EAFD0763FF /* Pods */ = { - isa = PBXGroup; - children = ( - 8C007BC559BC4DC367F3437EA2E465B4 /* abseil */, - 03ACCAFD62CA3A3FABF6327221044AC2 /* Alamofire */, - A545F295DBDE6433AB1D0424118899BD /* BoringSSL-GRPC */, - 80D3BC66C3ACEB394A1AC0455F2B64B2 /* DeviceKit */, - 6F07E9EC5A86D0D25B90EC0C12F067A2 /* Firebase */, - D1A3160C425BA3991CC18BE3573B1FEA /* FirebaseAnalytics */, - DB7954BF038F1935AD6AF68C6B63ECE7 /* FirebaseAppCheckInterop */, - E7EE837132D0C93BBDBA58CA8F34E1F1 /* FirebaseAuth */, - 9D6DBFFCAB8C43D04DCB48A6E1C7684D /* FirebaseCore */, - 29E717F0DE5C12D22952884419173F0D /* FirebaseCoreExtension */, - 1D51E068D1972A774D61E02253E4DCF7 /* FirebaseCoreInternal */, - 74AB3EACC02E18E0B76B1487FE67ABD9 /* FirebaseCrashlytics */, - 639E1F590127B26C670A1F793A91437B /* FirebaseFirestore */, - 274D55B94FA89A0CCE120B10144ED21B /* FirebaseFirestoreInternal */, - 5DDC6697C7C93A177465A4666CC9E421 /* FirebaseInstallations */, - B67F7C0B35ED3F7E2C737D140606A39D /* FirebaseRemoteConfigInterop */, - 9078C7D4053AA5F2AAB42846CE863757 /* FirebaseSessions */, - 284E6CC3289A20D8027CDBF472E29B7F /* FirebaseSharedSwift */, - D6DA9943C521E9A710B14889E4327303 /* GoogleAppMeasurement */, - 9A69381C445AA6D32413D7C0ECEEF1B7 /* GoogleDataTransport */, - D42ABC9353F75A10013F84B0614EE3A0 /* GoogleUtilities */, - 7DB401FB396D9CD062FD413A1E485DCE /* gRPC-C++ */, - B79179EDFDDAEBF93C94BD875A709A0B /* gRPC-Core */, - E2BE2A443486479099B20929EFAE5FDD /* GTMSessionFetcher */, - EDE7271653816EA5219A833EDF1476FA /* Kingfisher */, - 6CC51E7BD09A5DC2F78E1FABE5E796A4 /* leveldb-library */, - 0D67246B3EB0966B61A54CCF5C2150B6 /* LLCycleScrollView */, - F787AC4B99936F911CF3CB49707D3085 /* nanopb */, - 180A1F36203521A1EDA599F0E8FD3DE1 /* PromisesObjC */, - DB5E33459620A3B6ED2765CCFAB38A1D /* PromisesSwift */, - 31EABAD53BF1EE90107F7336273A195A /* RecaptchaInterop */, - DB64217437BE82563B664CB418E5502C /* SnapKit */, - 6E1DD3181D152BADBA8720FEB3C21DD3 /* SVProgressHUD */, - C7572177A8150DFEA973BFA0E1243ED9 /* TZImagePickerController */, - ); - name = Pods; - sourceTree = ""; - }; - 3D84BC1823BC2682687C3CFDA2C4609B /* Resources */ = { - isa = PBXGroup; - children = ( - 707188FCD02CC56636A1FAC646E6EF5B /* TZImagePickerController.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 3F605AFB431B0EA4E35EFFDCB3FFE7D1 /* function_ref */ = { - isa = PBXGroup; - children = ( - F8E6994AF94F5484A5221765F857F72E /* function_ref.h */, - D433A453F07E5BD47D42C3FC8D862318 /* function_ref.h */, - ); - name = function_ref; - sourceTree = ""; - }; - 3F95A549308781926A8E5391329C520C /* utility */ = { - isa = PBXGroup; - children = ( - 96214169AD6A018FF6B9A902B05C0AEC /* utility.h */, - ); - name = utility; - sourceTree = ""; - }; - 42B60A20AA6AAA1643094571AB77F096 /* cleanup */ = { - isa = PBXGroup; - children = ( - 7D777526849BCFFE3B15EB7799EE24E3 /* cleanup.h */, - ); - name = cleanup; - sourceTree = ""; - }; - 42C1FF13E0C399330D4894ED8A927418 /* reflection */ = { - isa = PBXGroup; - children = ( - A242314A5D887E04F6EBDE572E3C2FEB /* reflection.cc */, - 44A16214B3F2615E0BD65AD632713FB2 /* reflection.h */, - 2282AF84D17C15826DDAA3D0CEBB7FBC /* registry.h */, - ); - name = reflection; - sourceTree = ""; - }; - 442CC5F7A624ED57B6C07D01C98ACCAA /* Resources */ = { - isa = PBXGroup; - children = ( - FE84750E89CB9DCFC61A67D526AC697B /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 44BB6E7A12A9A1280DFA1F3374058C05 /* random */ = { - isa = PBXGroup; - children = ( - A3A3DA7D5F77D3DC47BCCA771A7A3EA9 /* bit_gen_ref */, - 6D602D24DD91D2C10906D81C6A086ED8 /* distributions */, - B8DC34CE18FC4F1B7239E9D6F9A0D4A3 /* internal */, - ED690A86AFC12495911FE12B5BFD7CB3 /* random */, - 2F660929E7F40FC16EB00B5EDC17E289 /* seed_gen_exception */, - 74ADDD3DC926997898B4CFA5AFD964B4 /* seed_sequences */, - ); - name = random; - sourceTree = ""; - }; - 4675B4D8F67299C3415864DD1C0A300A /* representation */ = { - isa = PBXGroup; - children = ( - 8D1B752CE7226DC1F51C0E87D8F68D8A /* representation.h */, - ); - name = representation; - sourceTree = ""; - }; - 489131B1F7DA341DC49CCA7E4EF65078 /* Implementation */ = { - isa = PBXGroup; - children = ( - 6A07B8D83C5E3A5C349564E4991DEA86 /* accesslog.upb.h */, - 8C92B38AFE785138E7173AD2973C2B0B /* accesslog.upb.h */, - FA6E7A7840ECD1F95DB967FDA070F228 /* accesslog.upb_minitable.c */, - 19877F7381A1D86A9F800366ADFCC60C /* accesslog.upb_minitable.c */, - F99F3A05E960789111192994D4ED27AB /* accesslog.upb_minitable.h */, - C9B7E139E5B065C5FFFEE3AA2C588871 /* accesslog.upb_minitable.h */, - EC6CD0A782621C63B39E27EFFD3F7ED1 /* accesslog.upbdefs.c */, - 030BDA3682289CE9C7687AC97FDAFC1A /* accesslog.upbdefs.c */, - 6BEE55DCC7F96E3D0678B0DB6C54F43A /* accesslog.upbdefs.h */, - B69505FABDCC555D6009945F12735ECF /* accesslog.upbdefs.h */, - 86C0EDCADBFEBDCC34F9434948A32FD4 /* accessors.c */, - B0C82587757B393931773699FB1C4BF3 /* accessors.h */, - ED8B5BEC2B605A4D6DFE286FD4CD62B3 /* accessors.h */, - 93761F0E89B96F7B6522944E2A721C12 /* activity.cc */, - 46DACB750B5D843F239A2DBEAF07BB98 /* activity.h */, - D0A2CEC4E173568BB8D012C330DBFC3F /* address.upb.h */, - 94C847BFA7F4BB377327BB82410D7D7D /* address.upb_minitable.c */, - E0160BE5EE30B679BF675FD5E3EE9C73 /* address.upb_minitable.h */, - 698C24A418B8E139981FB8841DBABB10 /* address.upbdefs.c */, - 518AAC019D56B05B910D626E6E5382DC /* address.upbdefs.h */, - A832FA5E8F32E3FAB862D793F85097B7 /* address_filtering.cc */, - DF5E239F02DEBC851CAE617D4F4A30D0 /* address_filtering.h */, - 755E56853DB01B7AA6C4D695C7CC6228 /* adler32.c */, - DCCC04BBB0F0D799EABFB32D41DDACA9 /* ads.upb.h */, - 650DA916690E4CC1218F454C802C7080 /* ads.upb_minitable.c */, - 3869F4838AD817E0363E585CA8E0A52D /* ads.upb_minitable.h */, - 4C6F33FC580EA4E6E5EA0B0105A30A77 /* ads.upbdefs.c */, - DD00716D5031E50820F3268D3824497B /* ads.upbdefs.h */, - 933302DF69557FD1A837AD4E26DF4F32 /* aes_gcm.cc */, - D0401649B70716E36EA103889818832E /* all_ok.h */, - E367C0AACF23A3BBF0F97329929041F7 /* alloc.c */, - F01E86156871E486A11E72F6AF85F970 /* alloc.cc */, - 79A127703EB3FB57B7460E9A97E17FEC /* alloc.h */, - 3C76D397E4A03B06F0C1A97BF2DA6CE7 /* alloc.h */, - 0755369CDE638A834DFC086DC45C700C /* alpn.cc */, - 7DA3D0F5CBCD7C8E82B5690D33489616 /* alpn.h */, - 9A7C17AAB8A5DDA234199AE761509086 /* alts_counter.cc */, - E7BF436C17C9BFB1C58741ADA9947AA0 /* alts_counter.h */, - 859CD5AFE74375E715062C0922FCC293 /* alts_credentials.cc */, - 03CF1A18028DFF3B011091047B8A3443 /* alts_credentials.h */, - CC0A7C77C515D20AF7DD7C98B121A3CA /* alts_crypter.cc */, - 26112CD5FD64DCFB2013B39A956FA0FE /* alts_crypter.h */, - EB65CE423B4F6ED903865D2544DEEE6D /* alts_frame_protector.cc */, - 974562F00B49FB233A38EFB5DE835BC4 /* alts_frame_protector.h */, - 2369399578915B80F309468253215033 /* alts_grpc_integrity_only_record_protocol.cc */, - 2EC06E81214C73BC3E44BCFAC98678B2 /* alts_grpc_integrity_only_record_protocol.h */, - 962F0665B492FB7F24434379A93FCAFD /* alts_grpc_privacy_integrity_record_protocol.cc */, - 4BF30C01D679DB1B8BBA97D64EB7BE4D /* alts_grpc_privacy_integrity_record_protocol.h */, - EFAEE4536374180ED87E264526BC42C4 /* alts_grpc_record_protocol.h */, - EABCBDE0C47112A312154FECCF86CC53 /* alts_grpc_record_protocol_common.cc */, - 3048EEF3925C8EC3331D51C085A6D1B3 /* alts_grpc_record_protocol_common.h */, - E89884DCC7204C424615F5773D6DE2DD /* alts_handshaker_client.cc */, - 35E9D4F5BFF2AB945E446A0A37BD952F /* alts_handshaker_client.h */, - B6331FFF94C86E2CB00F81EFD00A30AA /* alts_iovec_record_protocol.cc */, - 1088A96FA2026B7A2E492D18AB5CE10F /* alts_iovec_record_protocol.h */, - B9B0B69A39502F56DA00442D60175D9F /* alts_record_protocol_crypter_common.cc */, - F049D4FF25AA095F535A2F99F7AB2072 /* alts_record_protocol_crypter_common.h */, - 0186E1E0C8151BBDF067A8C403230824 /* alts_seal_privacy_integrity_crypter.cc */, - 0E3E70BCE8675834C96B69DFEDB90FDB /* alts_security_connector.cc */, - 31AD04EB140A67DF02B22AFA4848538C /* alts_security_connector.h */, - 6F6CEA1C03CE53AF17FF7034D244A548 /* alts_shared_resource.cc */, - ACDE537232AD9B5FAA5BEF758258B37C /* alts_shared_resource.h */, - E61C4740B15E957214E2C3ED02718EA1 /* alts_tsi_handshaker.cc */, - C318CAD301FC8E6FA4F89C31E9FAB941 /* alts_tsi_handshaker.h */, - 5C4A1837600C04A36125715A60AFA8AD /* alts_tsi_handshaker_private.h */, - 22D52111DA1EA4E3D38377E42D5E505F /* alts_tsi_utils.cc */, - D3CEA986BEE0630DE935B5BD72EBF53F /* alts_tsi_utils.h */, - D258F56C2C6D1D0AF09869636F3DE9BF /* alts_unseal_privacy_integrity_crypter.cc */, - A53EAD36073CC791855F3CD45046F243 /* alts_zero_copy_grpc_protector.cc */, - D09C1FFE07F0402D79CD918CBC943CB6 /* alts_zero_copy_grpc_protector.h */, - 2C8229CE6D281DA6692CADA64A104538 /* altscontext.upb.h */, - B7F7C42A756EB02970367E022E573296 /* altscontext.upb_minitable.c */, - 909E71C61BE354A4CE370A8D41D47C85 /* altscontext.upb_minitable.h */, - 0B3DD7C7E54915E343500C840A02357B /* annotations.upb.h */, - 96A098FB9F594A97C734F76154EE3DE9 /* annotations.upb_minitable.c */, - 93087C7807480537F2B5D1ECBCA2F797 /* annotations.upb_minitable.h */, - AE7B271237ABA3B085F81979F52FF6B2 /* annotations.upbdefs.c */, - 043AC1612D3A652A5CA624D92A734885 /* annotations.upbdefs.h */, - 196E301BA569EA301081B81CED1FDBF0 /* any.upb.h */, - 4178DCD3EC50E000A1B804894CC21FA7 /* any.upb_minitable.c */, - 76E4BA64E73FE7F1ABC120E935E7CA81 /* any.upb_minitable.h */, - 4BB441DC8CD27B25007EF8319C9F17DE /* any.upbdefs.c */, - BBE1BA96B00A3D7B394C3B7C958206D0 /* any.upbdefs.h */, - 0FAB60A59725870433FF8E96CADA4BA4 /* api.cc */, - 50299275AFC008EE750C97AD84718888 /* api.h */, - D4276A9182CA15FB9E2C4CA021B34F43 /* api_listener.upb.h */, - 2B0079CDA7191A303A972E7D87FA4FAB /* api_listener.upb_minitable.c */, - 2B2560E65CA816C50E92F03E5BC09355 /* api_listener.upb_minitable.h */, - D8789032841D0505B71CFB8605C82AFB /* api_listener.upbdefs.c */, - D6C0AC698547866C5AA129FFA0B9069D /* api_listener.upbdefs.h */, - F79D4980958BC2012117386CD69A6889 /* api_trace.cc */, - 862D93E2D730795ADD020CA403E6F609 /* api_trace.h */, - 41EE0819785CB1355E739542A02076E1 /* arena.c */, - 29A2A73A55E578D3D4FB89CA27144ECB /* arena.cc */, - 6B23C7ED5A87F875967BDA21FBC7AA0D /* arena.h */, - 983A79E7D46425FFBB965E0ACED3A530 /* arena.h */, - 149966A7E4C6ACA3278C0865A97201AB /* arena.h */, - BCC5A9A21BA2B753E2DD030AC9321BF9 /* arena.hpp */, - 797DA0435E5673ED9C6A868664FA4D56 /* arena_promise.h */, - D81AD87659F16F8C34A031330E99B5EE /* ares_resolver.cc */, - 916613FAE2DFFF02AA7947B4D283C63E /* ares_resolver.h */, - 6228E297671D3959F401D866C1A52DE2 /* array.c */, - 3DF4C34D1CB8CD3A607AFA203B19CA09 /* array.h */, - 2D987FA0DAAA553094A376CA23458520 /* array.h */, - 840858F950B899BE52E6F044B8D44683 /* atm.cc */, - B01785E081F3CB4BA0398E2D3B532C27 /* atoi.c */, - 2527209A6AAE2CA0E149E347D521BF0A /* atoi.h */, - 55BB65AECDCDF60BEAA79A0ED3098D6F /* atomic.h */, - 8C07FF2AB1EEDF57A9A1AC2E6238D2B8 /* atomic_utils.h */, - 55AD3D8BF86B511E65C5F2EC554CF98E /* audit_logging.cc */, - A2F26527CA3E171B8756B88D11D4D9BA /* audit_logging.h */, - 51DEC29333BEC95E8FA992C1D49D7955 /* auth_filters.h */, - 4078692B36DF6209FD5E89DA4065ED56 /* authority.upb.h */, - 00A6C05A097586B3751554BD52F98A2E /* authority.upb_minitable.c */, - 635EA521A6B2DF7F5E5FD79AC2F50061 /* authority.upb_minitable.h */, - DEDFB3CB39E6CBFC07707DF1F08EE8A0 /* authority.upbdefs.c */, - 4FB0146BD56619D704B4F7979C3E4E7A /* authority.upbdefs.h */, - E8DEBB9A5E026BA814C5BD1D36C98B94 /* authorization_engine.h */, - 79AE503692A32CB56DDCCDC8D7A62BC0 /* authorization_policy_provider.h */, - 9862A7FFEB93346F2E0C8C4E24D942F7 /* authorization_policy_provider_vtable.cc */, - 913028E3CDA96DFF21D4CEC3AE925A3A /* avl.h */, - CAB7C09D06A8D1E8005D38CBAAADCF47 /* aws_external_account_credentials.cc */, - 8DC5038D93F255479DF0D71025BD405B /* aws_external_account_credentials.h */, - 98AF77AA9F909A48008068327B3B6AC3 /* aws_request_signer.cc */, - 303F477FD1498538A8EC65C42549D9F3 /* aws_request_signer.h */, - 364E8EC0C18F8905E64B32063CABC324 /* b64.cc */, - 4C4BB4654BB09D877B222867D2415D84 /* b64.h */, - 8CBC48A9B7206EA3C39A921BB15F7411 /* backend_metric.cc */, - 7F56220AE62BFA95BCAB58A3B59DF77A /* backend_metric.h */, - B164E7E3843AE4B746223EDEB5DD1002 /* backend_metric_data.h */, - 9B68EE6B293046361ED83B44B1A7DC22 /* backend_metric_filter.cc */, - D7D22A92A07B1F81CAD7BAB7E848B975 /* backend_metric_filter.h */, - 9D64C6D5D43AD22D4B4DD6B8863316F4 /* backend_metric_provider.h */, - E6C25D39F9288DE48217D6E82B87AE05 /* backoff.cc */, - 673AB6A65EE5022F38625F73E938D499 /* backoff.h */, - FB3735C6F76766779697371BAAB8B52A /* backoff.upb.h */, - 14B76ADBDF546741E875F54ED2D34D97 /* backoff.upb_minitable.c */, - 8A87282BA00168A9B93920B6107A3538 /* backoff.upb_minitable.h */, - B5BCCD1A5FADB7D47772C839B7EF6B0F /* backoff.upbdefs.c */, - 8A5ABC2AE27C58056FEDF38A20D51F47 /* backoff.upbdefs.h */, - 1FF0F1EE50F51DA485948BFB966440A0 /* backup_poller.cc */, - 37D936843959029F76FDA25AAE5EDDB5 /* backup_poller.h */, - 7A558ECF43BD45DAAE5391DA665DA255 /* base.upb.h */, - 0DE606DF9650A210E082386156CD77DE /* base.upb_minitable.c */, - 98164156886D60F2B56C012B3FD5C31C /* base.upb_minitable.h */, - 83EC8B6D3F4B7AF5D5F2676F6C03324C /* base.upbdefs.c */, - 71C6CBF8AF3D699E0FB8CEC8D73D1574 /* base.upbdefs.h */, - BA768EACE534AE696AB4B30C436A92B0 /* base92.c */, - 11EC6DD53D771CF3D99C9ED1E4E0BEA1 /* base92.h */, - 62709978DD2380AD6E7F3D77F46ED584 /* basic_seq.h */, - B639D4CDF34B2843200DD34526E06E36 /* basic_work_queue.cc */, - 922FD7FB7A62F498334A7E365E91141F /* basic_work_queue.h */, - DFBE8E51FF48E22C616E897B93E3F997 /* batch_builder.cc */, - F3CCE5C1B0AB6197E1FAB3B3F71EA009 /* batch_builder.h */, - 45E355D4EA881EEA6DC29552D2FDE4A3 /* bdp_estimator.cc */, - 13BF653CA99AF258533B810C145002EF /* bdp_estimator.h */, - 224F6B97D216A04E4B96C6D3EC4C450F /* bin_decoder.cc */, - 7312E40A892CA3E19A266738EFDEFA3D /* bin_decoder.h */, - 514BA40D662C3702D90428853968AF71 /* bin_encoder.cc */, - 526A1E2B361D232DB8112E67236A10CB /* bin_encoder.h */, - C91AE58E8D6CE6F4C0F9BC4397840987 /* binder_resolver.cc */, - 496106E16AE4ABF2DBFA6D45F1DB0DA2 /* bitmap256.h */, - 4F62ACE71082FF74FE7C369D7388D790 /* bitset.h */, - F4FD2D93FDBBA2DBC02B44B78D76C6FE /* bitstate.cc */, - 1E23AFD25AF5704255A4ECE941ECD423 /* block_annotate.h */, - 9F8680DA681EA0ACF4724E648A343995 /* bootstrap.upb.h */, - FAF071F80E6E8FFA5999722823D24407 /* bootstrap.upb_minitable.c */, - 849A73096E117C4C99EBABDC11977FF9 /* bootstrap.upb_minitable.h */, - C3B8D7C37F77B3B2D5A6A4DDEA3F7683 /* bootstrap.upbdefs.c */, - D6E18FCBC9A467C0E85B1FAFA91F9C3A /* bootstrap.upbdefs.h */, - BE7AA58153FF634CAF517564949FB202 /* buffer_list.cc */, - 6F44B499886DD273F16C3057F5A95C85 /* buffer_list.h */, - 68B9EF12CD33D87E902EE7F8D2E0448D /* build_enum.c */, - 6AC47B95D3AEC68103499B0E04DEE8A0 /* build_enum.h */, - D12419DCFE45B055E9FB71786DC0D00F /* builtins.cc */, - 191F47AF36ACA071CBE778F4656CF72C /* builtins.h */, - 7135CA98D437410B452824815E4911CC /* byte_buffer.cc */, - 9E7FB64E75A6A79387CC1EDD779C47FF /* byte_buffer_reader.cc */, - 0E93D3531328F505831C0E03413691DF /* call.cc */, - 38AC8057E0552D610215BF9352B997F7 /* call.h */, - 63BD8F89A85CA70583D00AACA6915C5D /* call_combiner.cc */, - DC969C39B0193418BCC5F111650A48D0 /* call_combiner.h */, - 86C85D32DF2823DAF85035185374885D /* call_creds_util.cc */, - DA1CCF15838BA86151E97C8A1AAF08B2 /* call_creds_util.h */, - DF1605268D8D9487BD4DDEC1BD483B68 /* call_details.cc */, - 446EA1510AF119F37BD5A034AAFF96C1 /* call_factory.cc */, - B546916C9F81C13330B2DE0A35FCAC05 /* call_factory.h */, - 4F989FF9E30DCA94E3A2BEA65CB38D10 /* call_filters.cc */, - 4A22A805FF4AF82D235126A70C79152D /* call_filters.h */, - FB9B19BF4DBACA5660EA7908840773B2 /* call_final_info.cc */, - D717DCEFEC34714B43F9F0FC140F4670 /* call_final_info.h */, - CCEF25E20CF1F8729D99BD01C35FC0CF /* call_finalization.h */, - 1380AA16327674A6052213645AD3F597 /* call_log_batch.cc */, - 98341705993B8806734A9EE68A99B8D3 /* call_size_estimator.cc */, - 576A7D10356546E725923C67071AE0D6 /* call_size_estimator.h */, - 777A10606E212FF75E1CF6FAC242E032 /* call_spine.cc */, - A166A9CE67297B90D86C71A4A6A3CE79 /* call_spine.h */, - 900A505CE99C86C177908F564B73AD49 /* call_test_only.h */, - 8E3EC87106CB5C604A985518665201B9 /* call_trace.cc */, - BA1BF5ECECD45225890E75A208A3E976 /* call_trace.h */, - CBCC66DAE7C7C28C0E7B935D23B6D378 /* call_tracer.cc */, - F273C6BF8E39A0DD763D3930D94D127A /* call_tracer.h */, - 7BFCF90D36D72F90B3A49E25FB40B553 /* can_track_errors.h */, - 18FDFE3FCAE57B5A371A398792A524D2 /* cancel_callback.h */, - B39E31FDC2A8951A1258594074C0F931 /* cds.cc */, - 714DCFF92C91E6788487CC22B66264B8 /* cel.upb.h */, - 67D2FF27C96584D2CCB0DAD4B246EFB8 /* cel.upb.h */, - 9BCE53010DA0877FC42A08CC3A5B31FB /* cel.upb_minitable.c */, - B5B1D13E21BE9464AF6CEEBCA491EBFB /* cel.upb_minitable.c */, - 4851092C6D1B6739A428685EC946BA4E /* cel.upb_minitable.h */, - 289275905D7AC8A0F06F01CB001CBB0C /* cel.upb_minitable.h */, - 30883ACB3BDF437DFD716D9482BD9AF4 /* cel.upbdefs.c */, - 771DCFC459FD68A135E93D13909B0399 /* cel.upbdefs.c */, - B99F33156E9271B5B8424AEECCA63F76 /* cel.upbdefs.h */, - 9C28B18E886E55CFA250ACCFC3FABFFF /* cel.upbdefs.h */, - 7DEF977F835CBBC6EC9B6955E3F98935 /* cert.upb.h */, - 50E384BCD87C52A3AF382E08977303AF /* cert.upb_minitable.c */, - 53B488456A8B81B35D2F6A39FAD1DFB4 /* cert.upb_minitable.h */, - 5BC66CF966D99CA528BC6FEE02BAB9C1 /* cert.upbdefs.c */, - 305E05AC4BA4B3B5D2EDB20072C2B8C2 /* cert.upbdefs.h */, - 601DE7515730221890349E111F5AE3B7 /* certificate_provider_factory.h */, - DA49553357685EF124CA9888F8D2F5B8 /* certificate_provider_registry.cc */, - 008893870926896AD0E43D0CB385E0D6 /* certificate_provider_registry.h */, - 1FA17F033CE40AA35A1AADE2A3809091 /* certificate_provider_store.cc */, - 2FE14327E64A00A939E6BDAAD1159AD5 /* certificate_provider_store.h */, - 02974820FDAEE61436D133CABCA0EEE0 /* certs.upb.h */, - 1C8D38429829BACA4D495229633BD3C6 /* certs.upb_minitable.c */, - 296ECCF5CF73F4BD97E8D045D16BD9C4 /* certs.upb_minitable.h */, - A88C263BC53E240A3EDAA97F06DBA93B /* certs.upbdefs.c */, - 9F5FC482D074D516682182045CE37573 /* certs.upbdefs.h */, - C9554CB37A09911673688EF8E7694A61 /* cf_engine.cc */, - 6937C7DECA5473FA57C1A8447406A2B0 /* cf_engine.h */, - F92B7B16A7412C8AFFC40D49CDB963EF /* cfstream_endpoint.cc */, - 31651C337DDB5256B4F100ABFCDA9714 /* cfstream_endpoint.h */, - 18B7CABA4E0D0C7731F233E86A1E082F /* cfstream_handle.cc */, - 1B5EE1CEC0DD7D05828B8B7599E3784A /* cfstream_handle.h */, - 78CBCE748C627A9C3F9C7451C3F1BDE8 /* cftype_unique_ref.h */, - 565537A4A2A3F4A4FFDA1782252A4AE9 /* channel.cc */, - BD2820560C8578A0633E1BFA50E2E83C /* channel.h */, - 65F85343FAF6CDBC6EE038C03F1849C9 /* channel_args.cc */, - E277D6FD9EC317D3436C81869F09A64B /* channel_args.h */, - 0FB6C5FBE2A9DB288ACF02B4F674777F /* channel_args_endpoint_config.cc */, - 47341C9255AD26C6852632351A81EAF9 /* channel_args_endpoint_config.h */, - 5462061FE5EFDAAC24ACAC12EAF8A33C /* channel_args_preconditioning.cc */, - 027B1B88C205B99CE4AED1298DFF63AA /* channel_args_preconditioning.h */, - BA08F6EB7F0B75CBBA4E2EDD667E5EA2 /* channel_connectivity.cc */, - D505917CFD2AEA37A0886AF0AB8221EE /* channel_creds_registry.h */, - 9948FC594E1388DB7FE15065F80B6FE8 /* channel_creds_registry_init.cc */, - 052DBF58F4408C6C42362255CA08D4E3 /* channel_fwd.h */, - 7FC57B8F107DA69C5CCAF35F300DF699 /* channel_idle_filter.cc */, - F8A3310C1A069784323A0FF13D26B74E /* channel_idle_filter.h */, - 5050C1CD27ABD99282E8E6CDF286B384 /* channel_init.cc */, - CB2CEE074615DFDE09C4C218FF7DAD55 /* channel_init.h */, - 25B4898CED8A9CD6591A55083D76E905 /* channel_ping.cc */, - 71396C51CF9EC0D40A2898DDDD48FB63 /* channel_stack.cc */, - 44D0E511281BA138F8BEDACF48081A96 /* channel_stack.h */, - 5779A7B15292AC6D90EC25EE2D9DFE2F /* channel_stack_builder.cc */, - FEEAE857E0FA5D7527CF8FC8008CA226 /* channel_stack_builder.h */, - 721C8179D54302C3B4DCCA5700421ADF /* channel_stack_builder_impl.cc */, - 5B695CAC684C1B5CC64B48441F75F88E /* channel_stack_builder_impl.h */, - 3CCCF8E339BF233DB476ED5C959C2F60 /* channel_stack_trace.cc */, - 31CD10E7FF58DA289449568C540590CD /* channel_stack_trace.h */, - 30AA2D3189C89E25B6C053D2A22E204C /* channel_stack_type.cc */, - 99F5906CF6F6796E0EE52FAAF683DCE2 /* channel_stack_type.h */, - 63A52662861A0697FF111D33DDD599C2 /* channel_trace.cc */, - 635AC529B7712677600C18664502966B /* channel_trace.h */, - 8B982D0D5D012471B9E74360D906360C /* channelz.cc */, - CF0F7E6A6AC1723A43EEC56F5CEC073F /* channelz.h */, - E28486F024179AB0C0783A4A3206A92D /* channelz_registry.cc */, - ED0DCE95043CFC126F5AD157B759B385 /* channelz_registry.h */, - C38D555E419ED488644CFE9DDFAD6ED2 /* check_gcp_environment.cc */, - C262F2478788C7D087CCD51C01DC9B8B /* check_gcp_environment.h */, - 01E3D0F2F86E1F8A3A829780B2197E0F /* check_gcp_environment_linux.cc */, - 3CBFB900B3B6F14E9FAB0220A31FDEF4 /* check_gcp_environment_no_op.cc */, - 91AD93E569716F3C6B393D5CADA36CAA /* check_gcp_environment_windows.cc */, - D11A1286149543428F53EF885C73B81D /* checked.upb.h */, - CD481E2CEF62C81B59B13BB3A0BAE602 /* checked.upb_minitable.c */, - EA08C6EAFD54216AE5387F523B3AD65B /* checked.upb_minitable.h */, - E238573CCE3E841887E4B6587058CDCD /* checked.upbdefs.c */, - 660A439AC461D0606BDD564A7CAEA488 /* checked.upbdefs.h */, - 5EBF7B41CF364E6AD997BB065E26ADEC /* child_policy_handler.cc */, - 0D4D232A2968EEE702024D4C23948F5B /* child_policy_handler.h */, - 2DE3E536B49A29DA027E22F5D1F2D138 /* chttp2_connector.cc */, - 8643133904C4A64DDCAF880CE53C9719 /* chttp2_connector.h */, - D2D80F784A11F9F6E9FABFB2CFCF54FC /* chttp2_server.cc */, - 3D329B59D0D28AF155D25932347CA14F /* chttp2_server.h */, - 30D175B829F44DC6D701EB975987E85B /* chttp2_transport.cc */, - 78F589F964E045227EAB11A056EF9B4F /* chttp2_transport.h */, - C797A36D7686B718F26130C0A2584668 /* chunked_vector.h */, - 45532B655A2E523B0ED9112BCF0E60C0 /* cidr.upb.h */, - 0974B9D3EE9FD734B09C2A860E0F254B /* cidr.upb_minitable.c */, - AECFB02F6665D6DDD0AD5499AFA5CE24 /* cidr.upb_minitable.h */, - B244D261883B50E1C3C2083834C835E1 /* cidr.upbdefs.c */, - 66403CCFE9F8B97AEF3187E718BF6BF4 /* cidr.upbdefs.h */, - 0D7D576FB8333691D612AE6C44301383 /* circuit_breaker.upb.h */, - A700EF30A90FE6F4B10FABF1E7A282B2 /* circuit_breaker.upb_minitable.c */, - 5A454413DB81E07F483281EDE658198D /* circuit_breaker.upb_minitable.h */, - 26E76354B7AFD89714ADC59668184B4D /* circuit_breaker.upbdefs.c */, - C8CA7F81397569FCE09BB55D1F139501 /* circuit_breaker.upbdefs.h */, - E3907E8E74532FA1C84D8761AC79B2DE /* client_auth_filter.cc */, - 2D0A93E77401A6228CED871DC2078A53 /* client_authority_filter.cc */, - 406348FB675B6A7087B3E0556D1751F7 /* client_authority_filter.h */, - 704AC69F34A44390E2DAEB78D4040430 /* client_channel_channelz.cc */, - EAEABB13C38B300869C257192B1C3872 /* client_channel_channelz.h */, - C217F97186C55EF28BC07D46B8683D6A /* client_channel_factory.cc */, - B17A508793F5BC60CAA2726318F0F82D /* client_channel_factory.h */, - CF865F67308744FABC5588627B0486C5 /* client_channel_filter.cc */, - A674441CC0A9235681D164531F8477A5 /* client_channel_filter.h */, - 7BFC6A64209642FCF9EC79F3C5281960 /* client_channel_internal.h */, - 23304D6E7EC45891E214F943BA03BFB7 /* client_channel_plugin.cc */, - 1E630FEAEBD0381408C87772506593E2 /* client_channel_service_config.cc */, - 7F3DC42DF29831C5957CA5D772B8ED7A /* client_channel_service_config.h */, - 195C5805A597EA1F39A656AB33A145DB /* client_load_reporting_filter.cc */, - 9F336E53477D8798EC6CD45A76160B21 /* client_load_reporting_filter.h */, - 0ADAC606EFAC8D5E37E9F4E04EF9B9E6 /* client_side_weighted_round_robin.upb.h */, - 4F32C66AE2EB7344060053B74A6560F6 /* client_side_weighted_round_robin.upb_minitable.c */, - 49684D1C7B6FD283CABFCC688839AD70 /* client_side_weighted_round_robin.upb_minitable.h */, - 42367AC2928ADD73C3CB304E7A3C340C /* closure.cc */, - 4D1C774E829B4E4F5135E765B9B0F3AD /* closure.cc */, - 9438B22C77549D02468199AFAEA054C2 /* closure.h */, - 44DB17DFFA784892A79E3BBF03FDFD14 /* closure.h */, - 580D971E48192439E30ED565CD3E7BA7 /* cluster.upb.h */, - 09D2B47132EA5C267C300B0D90A7ACEB /* cluster.upb.h */, - 21D4C6A220C3652A75FFC8117764B13C /* cluster.upb_minitable.c */, - 99BC43F22ED5B7DF3218F64B6362667E /* cluster.upb_minitable.c */, - 7727B482374D53B779434792836F16F8 /* cluster.upb_minitable.h */, - 032F1ABFE35C8B3EB4DEE347F01D044C /* cluster.upb_minitable.h */, - 04E442AE9C9D320B25104EB8BF1124C5 /* cluster.upbdefs.c */, - A610A8661AC0420867C4885276308238 /* cluster.upbdefs.c */, - A677245B2F09B0FC161FFA4D1E25AEAC /* cluster.upbdefs.h */, - B72DF2E7F49B3504CC37B6C19B57E7A2 /* cluster.upbdefs.h */, - E95DFE311A1C04AA135F9DF97050768C /* clusters.upb.h */, - 45ED87289D5947B8407F6D0FFC49BF29 /* clusters.upb_minitable.c */, - 3E3921E27C2155E2C8A671AACADF422D /* clusters.upb_minitable.h */, - F444FA937E9721642D30B302CDF1DFE6 /* clusters.upbdefs.c */, - 566A1EE22B77DB78AB6118992654FACE /* clusters.upbdefs.h */, - 2EDED170EDEDF8EE718D4A4BBAEF0702 /* collection_entry.upb.h */, - 4DF6B2C84FD61DF47D14510E7307107D /* collection_entry.upb_minitable.c */, - 37F596706F8A11E4C268F73EB5B1E2BE /* collection_entry.upb_minitable.h */, - 683A0C183C0C2EA20726AA0909E98A78 /* collection_entry.upbdefs.c */, - DF2C20AF8CDF3DCB08773F34DC978D11 /* collection_entry.upbdefs.h */, - 662FA06FF7AD9BF417AB6A1E7C406BD7 /* combiner.cc */, - AB2777ACABE1F0005EAC1DD719D70E0E /* combiner.h */, - 04D3DAAA2F2EF4E43656F7542558DE87 /* common.c */, - E9357B4B2C647939E1AA94BF61A73255 /* common.h */, - 30CA2E709541EEFB1916BCCD36431182 /* common.h */, - 92272F41F223C887F814EE26F783E9C0 /* common.upb.h */, - 8ED90F18AC62C20B72217B5FC3EBE2BA /* common.upb.h */, - FA541608CBB1549A411B3E090854125D /* common.upb.h */, - A5CE65CF1C4C8E66E97FA6E88799BD00 /* common.upb_minitable.c */, - D88BF5E0F456965D1882FDC623B72BFB /* common.upb_minitable.c */, - B61545C812D657BCDF23F79314F553E6 /* common.upb_minitable.c */, - C90E462E6BD24B3C5EBC223D795FA37C /* common.upb_minitable.h */, - CC119B49AFD9E43E18347A60193AE67F /* common.upb_minitable.h */, - 1F0B753BB5AEB24805F940D15CAB07A0 /* common.upb_minitable.h */, - 49B87887879EFCF251D94665C64D1458 /* common.upbdefs.c */, - 2879443C41707A87E253975E1FD349E1 /* common.upbdefs.c */, - A236EC8D614D217C6949C6D2E3B26A62 /* common.upbdefs.h */, - 1AB0EB84CBD217EFB3FA4FC0FC46F7F3 /* common.upbdefs.h */, - ABEE3DB0C97380CEF6BEA23535FF0FFD /* common_closures.h */, - A575130EA053819A61C5FCEBF0EDBBCC /* compile.cc */, - 83AD3F950EEA35FBB403B74321E09C81 /* completion_queue.cc */, - 81D5EFAB7B9AA518982E390EC585AEB1 /* completion_queue.h */, - CC3105103C49EAD939EDA54B473E1DA1 /* completion_queue_factory.cc */, - 529F18E50990155F5D243C404A412698 /* completion_queue_factory.h */, - 43F76492E1B7571AAB0C628F9AC6A9ED /* composite_credentials.cc */, - 4D295F7867F51E55DA55C2D87FE2BE29 /* composite_credentials.h */, - 60DEB18A8A0DE1F79AE3213BD6992BD7 /* compress.c */, - 46AC3E7DAB8E40DAF78E1D885D8773B5 /* compression.cc */, - 914F908ACDA16EA3CDC787B93FAA1EB4 /* compression_filter.cc */, - EB7F111EA56A29C4F4E778A217A5E149 /* compression_filter.h */, - C42B842C7A7C5DFF718CB470313303F0 /* compression_internal.cc */, - CB72F5483B0C5091F57121C55C40E1BD /* compression_internal.h */, - 3868B0DFF6C209038C7822C3E8F9B5BB /* config.cc */, - EFD133054A08C540848EEBAC62B6C8F7 /* config.h */, - 07B169853212973D75D5F97B86EBAA82 /* config_dump.upb.h */, - 311B2F0020CB8374F54C219B9BDA3F95 /* config_dump.upb_minitable.c */, - 95751A275DA324D5831038BD76349D71 /* config_dump.upb_minitable.h */, - 3CB1CE92EABBB76C21D2DB0C2A01806B /* config_dump.upbdefs.c */, - 28A19E40BF715C1D2F2C59E09C2BFB16 /* config_dump.upbdefs.h */, - 0029552655B933124A357E9609E739FC /* config_dump_shared.upb.h */, - 1DEA5C5CCF38F363C4D7B73CC005A20C /* config_dump_shared.upb_minitable.c */, - D8B396C9D3C9E636813733B659E94755 /* config_dump_shared.upb_minitable.h */, - 9123B6081B15B70F0A0611BCD8603B27 /* config_dump_shared.upbdefs.c */, - 1A8E0C951A89D999F1B9CFF6CB43679F /* config_dump_shared.upbdefs.h */, - 56B7819AFB790A83695C868F08C8452B /* config_selector.cc */, - EF165546C5B78686C8DD7FE46A0AC3CB /* config_selector.h */, - EB77E8F0BDFEEC33E6698A8E4043FF6B /* config_source.upb.h */, - 3C2F1D3D0A294FA03143FE156C012DC7 /* config_source.upb_minitable.c */, - 90C8B7314F8B77EEB604C31EC5F3E082 /* config_source.upb_minitable.h */, - 3746F4A09EDA218C1F7386D46BB30711 /* config_source.upbdefs.c */, - 9C45318CA321F9F5A311656B3948B753 /* config_source.upbdefs.h */, - D4BE5C00ED57E745A174025D2E032406 /* config_vars.cc */, - FD5BB7191FCDFD3E12A4D764AC77D1CE /* config_vars.h */, - 3A0033434485F65359568B2F996C7C74 /* config_vars_non_generated.cc */, - B6A4208F1CC6AE33F12AB5C1189E3048 /* connected_channel.cc */, - 207FAC59107DB1FB56E4AAF2F1BAC7A8 /* connected_channel.h */, - 03834C961CBF10B3851B6FAD129AE156 /* connectivity_state.cc */, - 6344580C1A3229490FE1242C755285DA /* connectivity_state.h */, - 237B1E5F67235E102DE7CA3435F12A40 /* connector.h */, - AFB23442BC4CF254EBB15E48FB4EB0CB /* constants.h */, - A0D514CB522EB1EF54E03C74EF37DF9D /* construct_destruct.h */, - A56C4143E0243CDCCB29AE531FF9B387 /* context.h */, - 64F1FF7DEC5DC52570D921B211BCF3A3 /* context.h */, - 55CCB9E660AC8B3C5FF7AA4519064AB3 /* context_list_entry.h */, - 9E9CACE2E868B66028342FED1E68FBD9 /* context_params.upb.h */, - 4030A6830C258FE9DD1C53F38247DAB9 /* context_params.upb_minitable.c */, - 89F8E60B4B4A85F762C38C25AEE31F05 /* context_params.upb_minitable.h */, - 755D0AB7E4C55457984AC0E86E23DADA /* context_params.upbdefs.c */, - 849DE82718B41B9DC4B9515FEEE3FABE /* context_params.upbdefs.h */, - FCC5C35602871EFD79A54111BB2C756E /* cookie.upb.h */, - F3A6B3000342D453398E0AA93E4D6AC2 /* cookie.upb.h */, - E4F306BDD115D27C42FF0D27F86FB353 /* cookie.upb_minitable.c */, - 6C748F413DD8C977AADDC94C22D62C71 /* cookie.upb_minitable.c */, - 92C5FF9F2B15DA046552770EA5A24700 /* cookie.upb_minitable.h */, - ED8EAC0344E6545E4A41C6E2052250DB /* cookie.upb_minitable.h */, - 43B3FDD2870268D0E4C22D2782B75790 /* cookie.upbdefs.c */, - B33B91DC43B41C483F326871F83CD046 /* cookie.upbdefs.c */, - 829C862FCAC61C5B65D66543280F6C0C /* cookie.upbdefs.h */, - 63C7AC786FF69F22FC18B201B0FE4B89 /* cookie.upbdefs.h */, - 6EDADFB40B8BBAF315D8A7E71406A112 /* core_configuration.cc */, - 9E410A55F6A0A19FB89541AF68D43C1F /* core_configuration.h */, - A2DBF7809E36DEED8E8C5737361A4958 /* cpp_impl_of.h */, - BE715CF583A11C8BC6F95D26AFFEC8A0 /* cpu.cc */, - FE985650780BF9EB31BDBF7AD948A567 /* cpu.cc */, - B4447F50AFD996D792C21F631E370100 /* cpu.cc */, - 9A86E61CC5F4A5C984A931D4B0B2CCED /* cpu.cc */, - BDA45F0F1BDD15712167BA2F66FF05F8 /* crash.cc */, - D09E54D4F9460848903B23168D718F86 /* crash.h */, - 08F0E0151DF9EFE4B81FCE1D9EE79EDD /* crc32.c */, - 8CFC91CDBCECCACB99863483B4BBA5BF /* crc32.h */, - 951142A1009E9A2BFF35513BBAE9D7DB /* credentials.cc */, - 31323D1E69B1CCE4640BB54F66B782F7 /* credentials.h */, - 359C3370A5956F3140DB85F3ACFF6861 /* credentials_generic.cc */, - 0FAF35A0F7ACB65698F2BCECC8606366 /* csds.upb.h */, - 09EC93B3118B646302646BC6388A9F50 /* csds.upb_minitable.c */, - 89F61A9ED09C6D75EC57F8D984E4CC5B /* csds.upb_minitable.h */, - C42C3734FCDC583B3C656D4595E83F3C /* csds.upbdefs.c */, - 8A8763B7E32BE30E21E7655757377C75 /* csds.upbdefs.h */, - C14106A5AE9203A94DFF7F46CEC2AD8D /* custom_metadata.h */, - 8D72DA12CF54F264CA4F85E6677E100C /* custom_tag.upb.h */, - 750DA2FCFFCD9A3F463CF2EDF11347B9 /* custom_tag.upb_minitable.c */, - DA5C74FA320190F6D074569AB0D93CAF /* custom_tag.upb_minitable.h */, - 6B30DAB5953B9CF5BE3DFC3A37831B06 /* custom_tag.upbdefs.c */, - DC125F2A24CEAD47260DA56856362E07 /* custom_tag.upbdefs.h */, - 8CB5FD756C0423DCEB94FA537B98CA5E /* datadog.upb.h */, - 08EBDA96DA369EE4103C68DBD8044A6E /* datadog.upb_minitable.c */, - FECC76A9AC9BE86B3978BF23831C2B1C /* datadog.upb_minitable.h */, - 18D224D211D0FF7384B344C86D1CC83F /* datadog.upbdefs.c */, - 12BB5FAED5500705BF3C0B81985A0170 /* datadog.upbdefs.h */, - B25A34F5A362169DF84C7FAB3FE0EC03 /* deadline_filter.cc */, - F3514F18616F1F286E6FDA1EA810BAF1 /* deadline_filter.h */, - A7D154C842257A3383D505F471A639EB /* debug_location.h */, - 3B51F661AF78FD96392F98C1446FD0D4 /* decode.c */, - A552AAE6B58C3A105B23805999F0F46A /* decode.c */, - C93587DB406444D437C27FDBC98FA66A /* decode.c */, - 323FC9A426CCF9156C0EA1181A530B07 /* decode.h */, - 485BF2666AE10AD0282B1DF9C8577B85 /* decode.h */, - 3D6701255A45809DBF8E82CE47CA4556 /* decode.h */, - 84F6F639AB7D145395B3D295ECCF5C60 /* decode.h */, - B1DF0D8B0AFA264C9608EDA4DE116621 /* decode_fast.c */, - 5F20C0FE94696902FBF412C309B1116F /* decode_fast.h */, - 3317DCDA44E4F425C6A3D5C032333133 /* decode_huff.cc */, - 84170237FAF94476A3AA0ECD74429473 /* decode_huff.h */, - 93C87994E263577BA663E35A4393B445 /* decoder.h */, - CD088AF29CEF7CFBA187EB91BE7C3332 /* def.h */, - 383E4F563D7ACEDD5692B726601FC918 /* def.hpp */, - 45D0AA0A076A5C9B6DF7E3F99E3F0BD1 /* def.inc */, - E7540EF435F96E60D134F1A246C6952A /* def_builder.c */, - A56AAEA6F8331DB7199BE5C8444E1E3F /* def_builder.h */, - B068C4AC9256A5347976517581E9A478 /* def_pool.c */, - 2D537565ED91F073EDA2DAECC19D5956 /* def_pool.h */, - 4442F3FC3F394F063DFC75DC062FBC48 /* def_pool.h */, - A2C8C03A7084C851D625B22C2D6C1CCD /* def_type.c */, - B4CA3C31DF5098890F0353BBE40ADACE /* def_type.h */, - A95EB79462FB650FF21D508D7374D597 /* default_event_engine.cc */, - 73F08B4A884DC1ECFC11817BE2F332CB /* default_event_engine.h */, - A56BF3AB49941D318ADD34668A19197B /* default_event_engine_factory.cc */, - E47D90E1B806EE67B1DEA1F6C7ACDB15 /* default_event_engine_factory.h */, - 533696DEC7311E02C6554207E7C4B004 /* deflate.c */, - 2FD96C35BE308639A1D88F4EFBB63ED4 /* deflate.h */, - AAAC593E2DC16CDBC176A1991A486262 /* delegating_helper.h */, - 2071A2E83CAE3AD6BC5124A665CDEB85 /* deprecation.upb.h */, - 5A624FCE13EA7FCC3BFBA0B88575B757 /* deprecation.upb_minitable.c */, - 820BFD1204591CE64316E17C2FBE0C26 /* deprecation.upb_minitable.h */, - 8DC1553E5042B7DA524D469F3261DC5C /* deprecation.upbdefs.c */, - 143717EDEFF1DC176A514EFC7B01FFC6 /* deprecation.upbdefs.h */, - 860D7A21C9175EA91FB03E1747B093D3 /* desc_state.c */, - 5D0891A5579B7D278F33AF0528A217F7 /* desc_state.h */, - 8785D46349637527BCC4D9609403380B /* descriptor.upb.h */, - 6EFC0046E26496A1F9A26354F4B62C1D /* descriptor.upb_minitable.c */, - 7B127787BFD357023F68AB099C4B4ACA /* descriptor.upb_minitable.h */, - 4AEBD7AAB2048BD5EBFD6FBB922B93B8 /* descriptor.upbdefs.c */, - 94E53DC545353A2BBA8EA100A4E49CC2 /* descriptor.upbdefs.h */, - 3B7BE00CA778E215D245166FF7B02280 /* descriptor_constants.h */, - 2C2E79D2447D3E41A83EA9023DA308FF /* dfa.cc */, - C16E9323DA01F144A99A8ACB7C02E4DB /* directory_reader.cc */, - C9F785529CD693B84DD8B17D7A357096 /* directory_reader.cc */, - 79A10E49606DB0FE993A6C508CCBA1EE /* directory_reader.h */, - B750B2A7AAC6E334BF6E5DCF2CE682DD /* discovery.upb.h */, - A69437761F18F620768BDD43DCAF7751 /* discovery.upb_minitable.c */, - E635C530CFBAC2507E8770F884BE05CF /* discovery.upb_minitable.h */, - 6E73D9F004EDF84CEB89A6C1BF98F11B /* discovery.upbdefs.c */, - 9CB1F76E85898897D7D58DEC510A80A6 /* discovery.upbdefs.h */, - C9BB1FF8B9A34F5B5A8D2F60C0CD9624 /* dns_resolver.cc */, - C33178F43C6422FD7741547BE9A5C789 /* dns_resolver.h */, - 79A9B116357544560529D03A9D121263 /* dns_resolver_ares.cc */, - 0EBA2B9F4F74265B03863B0C37A82E89 /* dns_resolver_ares.h */, - EBAAE6F7E63570D6A6812FF538DF2688 /* dns_resolver_plugin.cc */, - E87169A1474CAB20AAF92E65BDDFFCE6 /* dns_resolver_plugin.h */, - DBB6815174E777EF1467CF74E90441D5 /* dns_service_resolver.cc */, - 07309D413B3E56407FA20F78F0F8EA71 /* dns_service_resolver.h */, - ECC8BFF10CE26C76B9D6D73028D7B5BB /* domain.upb.h */, - 869F6318321A1F569784D602870121C7 /* domain.upb_minitable.c */, - A16575B7C8865A44480E12AFFED6A0C6 /* domain.upb_minitable.h */, - 0D8DDC6ADDE85529A704DCE0D09B78B7 /* domain.upbdefs.c */, - 20122F08C97E7973EF2D680E77646A03 /* domain.upbdefs.h */, - 761CF092E4DD7B8C2E50A681DA4C27C3 /* down_cast.h */, - 5E8AE3E766BC7FECAF917A88C0932C50 /* dual_ref_counted.h */, - 38E62FCF4C81944CB64D200947A6A633 /* dualstack_socket_posix.cc */, - 1AD70F2563E3A929D07A390DE8C30F88 /* duration.upb.h */, - 6202B7E805A58A385C51A390B6E2A3D6 /* duration.upb_minitable.c */, - 667E1969FF83E644647830D04DBECB59 /* duration.upb_minitable.h */, - DCDB82906116EBD875D7BEE0161124B3 /* duration.upbdefs.c */, - 49C0709331C653B6BA0FCE3DF39ABBEA /* duration.upbdefs.h */, - 33E08E1B0BA7199D1ABBB5E96C14AF89 /* dynamic_annotations.h */, - 1056B0418B7716ED8930702D39AC56F2 /* dynamic_filters.cc */, - 86F6D1ADEA3FB1DEF90FE27AF3CF4BF6 /* dynamic_filters.h */, - 22B08782CD44D5915482CEC485490C8C /* dynamic_ot.upb.h */, - 91476579C3533B254CEDBD5096A91273 /* dynamic_ot.upb_minitable.c */, - 4F4B00689331B9502A8C60EA5FE3BD3A /* dynamic_ot.upb_minitable.h */, - 25A169F6AB894BF9BDB7E2A82D2DB15A /* dynamic_ot.upbdefs.c */, - 4EDAFAB13A996BE75B259AE48D861E65 /* dynamic_ot.upbdefs.h */, - CD19D861EFD0097D8403A664140EE277 /* empty.upb.h */, - 891EF656CDA92F98BF652AB7BEA755C2 /* empty.upb_minitable.c */, - DA04D0F43F0A0CC17DEC6D9C66F6A401 /* empty.upb_minitable.h */, - 56A41FB9A7377324D60C9C8DF86A9B39 /* empty.upbdefs.c */, - 6713B28A609A43A8215612174C7FA02A /* empty.upbdefs.h */, - FD5B91C5982995EB7FA409E9DCB15C97 /* encode.c */, - 1BCD02F979BBF262ABA4BA9831BF64AD /* encode.c */, - 50F984302C1C4B1F46BB2BF36C917D1B /* encode.c */, - DC87F76C67190D4D4CA52E2E234AF71C /* encode.c */, - 727E2038F35F9651E41EB274E7803A4C /* encode.h */, - 2FBB8C0129580F16C2F6AB16D79E5434 /* encode.h */, - 6AE965AC6C770CC4F199D482AC2F40E8 /* encode.h */, - 1F06975170B0BE23C4349ACAC89752E2 /* encode.h */, - 13CE54A039B189E4CD0FFAE3FB8A115B /* encode.hpp */, - F015C18F0712354900C78AF54F7162E1 /* endpoint.cc */, - 95FA23105FC71458DE5A4C240015F727 /* endpoint.cc */, - 7498F062FA23713711BF0EAEB3B348CD /* endpoint.h */, - 94161B9F7C680CDF87C6CAE625E4292A /* endpoint.h */, - 89112F0FB78CC36273D6F580D2F74B52 /* endpoint.upb.h */, - 1362F7BB2A665F6B18960BC249A46CA9 /* endpoint.upb_minitable.c */, - 80D4836B90A850D94BE1AA35C424300D /* endpoint.upb_minitable.h */, - AF34E449CD21237B1A2BF0FFBDF78A61 /* endpoint.upbdefs.c */, - 5FECCB8B8D91DB8E570C495E3C4F5F3F /* endpoint.upbdefs.h */, - 09111C960BD8C656DCF0997BE54C4353 /* endpoint_addresses.cc */, - 5C709546DBBCB67F9E90D1BE42AE0F1B /* endpoint_addresses.h */, - 023F2F0A584983F1FB42D36057D1B771 /* endpoint_cfstream.cc */, - 18928BED288FA394FC04DFAE39E39803 /* endpoint_cfstream.h */, - D3EE7ABE8F58C25033E4CCBBDDE0795F /* endpoint_components.upb.h */, - 11B5BAE8A47EEC1A5FA1255BEB0A6095 /* endpoint_components.upb_minitable.c */, - D3CA75E403DABC232D981178DB088BF2 /* endpoint_components.upb_minitable.h */, - 9D6BA393B226D6FA85D95501C452A8FC /* endpoint_components.upbdefs.c */, - B9D552B51138DE789C7D72A94491F169 /* endpoint_components.upbdefs.h */, - CBDC5F0507CCD701A09618811C663DDC /* endpoint_list.cc */, - 8A7BA22AB341ABA640C4A34E2483F5E2 /* endpoint_list.h */, - 4A2C4DFC73D50AF20C975AE0D0A449BC /* endpoint_pair.h */, - 45FE720D8C554BB3A4101EE294E32628 /* endpoint_pair_posix.cc */, - 08F3621B950AAC05296727D2E63A0421 /* endpoint_pair_windows.cc */, - 2FA84BFA8B69DCC6127FC229FCE4C676 /* enum.h */, - BFEAF585235931BD346A3FCE5EF84435 /* enum.h */, - 30FF8152BDB140F99184C4A21CC60368 /* enum_def.c */, - BC76A984AD47B0F691FA833447676F58 /* enum_def.h */, - 075FF71C687B5A4A53929A5031DAA050 /* enum_def.h */, - FAF0275F283793E8E447F42B0D56DB29 /* enum_reserved_range.c */, - 4C45B26F7BF05BF5BD9234088FBD3591 /* enum_reserved_range.h */, - 0815C0ED962673D91E67C5AB9242C394 /* enum_reserved_range.h */, - 23B9C9E655A6F1B9FC5C563338D93C64 /* enum_value_def.c */, - AA8E77561401C7E969C6BF904E4A4147 /* enum_value_def.h */, - 064D20A05CEDCA68D14CDF541766C3AB /* enum_value_def.h */, - 20D04045F3509BB99DC4CD860B11E8A1 /* env.cc */, - 476E123DFE3164535E4EB3F69923AA3E /* env.cc */, - B114AAE69DDAB950137057DBA057492F /* env.cc */, - 7A2619555BB683A6D074A85630EEFC06 /* env.h */, - 5591C970A21C35065752357275F57136 /* eps_copy_input_stream.c */, - D08180E1C44F0D5FB404AB3224A094F2 /* eps_copy_input_stream.h */, - 96D2E9115EB13753C6A40BAE06F4821D /* error.cc */, - 52D614D0800ECCBE32CAE34C0DBB1237 /* error.h */, - 11D884C5571A3355708F36E38B7001CE /* error_cfstream.cc */, - DAD90F70CD94AB2EF5425E9C7627EA19 /* error_cfstream.h */, - FDD355072C3B1C2224059F92CA1CF100 /* error_utils.cc */, - AE857BE4E180E7276141FFB2C2A4EA46 /* error_utils.h */, - 22549076D453F951EB86648210E200D3 /* ev_apple.cc */, - 7975526DB00F6FB0B8C9189E34958F81 /* ev_apple.h */, - 9D939B9691868A59B58BDC447AFA0D6D /* ev_epoll1_linux.cc */, - AADE114DBA7C3660DF2FF398E1E83AF2 /* ev_epoll1_linux.cc */, - 19B254C34025FC0096E42AEDF4B2FDDE /* ev_epoll1_linux.h */, - 4381FF76160861B8837B6EAF8D846F5D /* ev_epoll1_linux.h */, - E0F7AC97784E7FF99F6138ECFC06C626 /* ev_poll_posix.cc */, - 02E85A34DA39F62B392F3B789B7B1178 /* ev_poll_posix.cc */, - 323EBE9AC12186E4E0577AD20F12D0FC /* ev_poll_posix.h */, - C9B32D1586709778B640CDE8222CB5CF /* ev_poll_posix.h */, - 351D2E7ED8EB097F332A0CCE950ABF29 /* ev_posix.cc */, - F64526520B4D1F5C2061701A97D545AA /* ev_posix.h */, - 3EF83F4110E5DA8CA98E271EFB759CB5 /* ev_windows.cc */, - B6BBE5D19C512DF5DBFF672AF0DA2E4C /* evaluate_args.cc */, - B8882543926AC8B86E049FDDF461A92A /* evaluate_args.h */, - E8F326B243DF2EA18A2A181B950EE829 /* event_engine.cc */, - 246A516642BE55F7657074E2706D2D46 /* event_engine_client_channel_resolver.cc */, - 6093291C518985F63E4AA3711916B0E5 /* event_engine_client_channel_resolver.h */, - 24ABE8702AB439FC3B8B3ED3DC1B08A8 /* event_log.cc */, - FEB03B1E704802522988C23B60A84BE2 /* event_log.h */, - DC81278435E55B598D8E32AE74F048D2 /* event_poller.h */, - CAF399DC69F1A99BC086B6FF7668EA59 /* event_poller_posix_default.cc */, - DF3EE244A861D4E743F3FEB9E87FC639 /* event_poller_posix_default.h */, - 5839E5AF227C100E3C429EEB10DF36AF /* event_service_config.upb.h */, - 43F73EDF1EB8E3DF1F4C94CEEF9C4832 /* event_service_config.upb_minitable.c */, - 63913EDA1D3499038EDF265D957F4C5A /* event_service_config.upb_minitable.h */, - 4BA62110E09A9C639BAF7A0252EA9016 /* event_service_config.upbdefs.c */, - 2C8CC9BA18BB542AEF33EAEE7DC98712 /* event_service_config.upbdefs.h */, - 1F8E247C40A796B749428C291F8D7846 /* event_string.cc */, - A40F7714D2DAF0C998D2C77F9404C6A5 /* event_string.h */, - C03B470D3EC8B243D0FFF7F0CE5CD10B /* examine_stack.cc */, - 3CA8B309063C41A6F071437C07EAB935 /* examine_stack.h */, - 8F19D1D5582B9858C05AD2AEA56EA179 /* exec_ctx.cc */, - E9A3924EBAA56FD8B8D2CA1F4F483EDF /* exec_ctx.h */, - 16201745122473603DC1B63BBCA9729B /* exec_ctx_wakeup_scheduler.h */, - E2487586DB7A01E4E2DFDBE82223493D /* executor.cc */, - 0D872153303F70A539B3141A65F809EB /* executor.h */, - 1CAD035BB7E5694A0CD85AE16DF1F764 /* experiments.cc */, - D52A725E76FD4976195763B11B76F3C2 /* experiments.h */, - 37B6521E711FB954D237FCABFE225468 /* extension.h */, - 3803E9273AAA263DFEB83C3488D2CCE3 /* extension.h */, - CB442CF77FEFBB7CB158A6CDA1114956 /* extension.h */, - 3A3F6325BD5A04BCA518575952B2854B /* extension.upb.h */, - 74C5956682DC4E270CFB0AC290322015 /* extension.upb.h */, - A72E842C77BAD537AB856C3B72618C75 /* extension.upb_minitable.c */, - 7AD0EA6840C5A16DB2B6C73B3670817F /* extension.upb_minitable.c */, - DB2D05F324EBAA66152B869494AC1CF2 /* extension.upb_minitable.h */, - 9286DD712DADE113829F799DA4DBE4B9 /* extension.upb_minitable.h */, - CB736E1DFA46F3FF7994A7FFB6ADD683 /* extension.upbdefs.c */, - 45315DC3273AB37EC84B1367CDCE4437 /* extension.upbdefs.c */, - 370463A978FC241F8F8C24616F55853A /* extension.upbdefs.h */, - BE09FAD7341D06C4030F1B98B695A334 /* extension.upbdefs.h */, - 33F3A75CC6FD1EE992ABBCFCDD50F916 /* extension_range.c */, - 34740217E7051F7BB8B1538D88D7D62B /* extension_range.h */, - 1471341DC06CF1315B8B2B8A86095713 /* extension_range.h */, - F7535B3E4A8F0B2DB8EA3B43BD3A63D2 /* extension_registry.c */, - 09076119632E1F3EB44F770C1DE4B9E2 /* extension_registry.h */, - 0C291FC84528379E7852C6C24EBA3DF7 /* external_account_credentials.cc */, - 32342701343A3C06482D1D6C317965F3 /* external_account_credentials.h */, - F4ED5198E755709BC4050ACB828A2349 /* fake_credentials.cc */, - 604315A5D02AD41BA7F1430425A42CF0 /* fake_credentials.h */, - 025E22E4B3B2BFB7690310EB8935BDDB /* fake_resolver.cc */, - 339785CA4353229D8940549F7D5F3859 /* fake_resolver.h */, - B6607EA33BB1E93D61FB76288B32D647 /* fake_security_connector.cc */, - 5823AAD291779E478D23EE4ED14755E7 /* fake_security_connector.h */, - AFDCF905E2C34DBF10EA316C2D738E37 /* fake_transport_security.cc */, - C856F3DF27490E0D64FC46CAD27DB83E /* fake_transport_security.h */, - 7B19C041FDCA67B2FFD930028B686FDB /* fault.upb.h */, - B366CF55B8D8E43FA4A5E47FA8AF6EFF /* fault.upb.h */, - 190594A46C85E888181C800D9908D295 /* fault.upb_minitable.c */, - 04CD2FC99565433E7FCA33BB2E0D9315 /* fault.upb_minitable.c */, - 480AAA3EF2BAFFEDD689085135D33469 /* fault.upb_minitable.h */, - D08C038DBF34B891C2B20E28DBC1EA05 /* fault.upb_minitable.h */, - ED0F54099911F26AEBC845C20481123E /* fault.upbdefs.c */, - D0DF0CFC870A20A08A0126180A25D531 /* fault.upbdefs.c */, - E2797AD5652626B5A6077742D03EA7A4 /* fault.upbdefs.h */, - 4F4087257919B714B8A742838EDA6B6F /* fault.upbdefs.h */, - 04A1DD31D05F56D425D12B17F770FBB4 /* fault_injection_filter.cc */, - 44F42E3C3DA6B2CBD0C16D1D12436DCC /* fault_injection_filter.h */, - 6A55DCBAB50483536E64658B80939E74 /* fault_injection_service_config_parser.cc */, - D087BCE0E62DC8F528870274F35581B8 /* fault_injection_service_config_parser.h */, - B959B2B81FAA88AD48EE54F74298F222 /* field.h */, - CECFA812D0AA6972ABB66BBE3D2D4344 /* field.h */, - 8A51449AEF1774303FB6180394760BDB /* field_def.c */, - 204863ACC4A557F50611957FA468CAAE /* field_def.h */, - E01CAA0541E8BE0B2F21A56B6FB2BA81 /* field_def.h */, - E55BB4A190305DF1AF382D8A0A9B3BB3 /* file.h */, - 39FC6D7D0A2F55571F827BA81DF0EFBC /* file.h */, - E15C671F23E192E1280B33B9B5D1310D /* file_def.c */, - 7EAB287E4C5DAD7C148307E54FFB9B7C /* file_def.h */, - 58D80CB2A5AD66E6C453C525B0BC459B /* file_def.h */, - 6073788E49560E9C1B89FC14B4D7A777 /* file_external_account_credentials.cc */, - D9B5A1E5F9C53F5BA056227E3A0760F3 /* file_external_account_credentials.h */, - 3AF70D0C44F3344550673BAE9CDCA15F /* file_watcher_certificate_provider_factory.cc */, - 0C3F31D792AE9EF1B188F5AA953C0129 /* file_watcher_certificate_provider_factory.h */, - 1A2C3BE36FD990507C4DD6A448D3AF83 /* filter.upb.h */, - 91321B50457B9B51E1696D3B9E40F456 /* filter.upb_minitable.c */, - CC4C8AB9215099E18C0F83EF9256F4A4 /* filter.upb_minitable.h */, - 834864FA1DDDF96BA06BE6A2EAFFB0F9 /* filter.upbdefs.c */, - 5263ADB27433D6B94FE44493C4FE4C50 /* filter.upbdefs.h */, - EFF9BCC559813987D6FFC288FBFE6918 /* filter_state.upb.h */, - C601B5F13E6E8BB882A1167DD11D8972 /* filter_state.upb_minitable.c */, - E246159C3C6033AE78EBDB7F015DA955 /* filter_state.upb_minitable.h */, - 6D0F092AC739BFAF037F48C8485BE17F /* filter_state.upbdefs.c */, - DFDDAA0DFC31F08BF744C12483DE6448 /* filter_state.upbdefs.h */, - 73D13000A9EB2AFCCF72D49C780C5F70 /* filtered_re2.cc */, - E0364BC79A4355D9E17463ED12A4B6F3 /* filtered_re2.h */, - 2D5A00B158EF5AAE2C6A0A5AB6360224 /* flow_control.cc */, - 941E73E0ED8B27F66A42AEC3F17851DF /* flow_control.h */, - B00CDE5FD43FB743D491D3B2944AF9B6 /* for_each.h */, - BA926612EEE058989A060AAFA23262C1 /* fork.cc */, - 5DCEB4D9E7890B536E9189ABCCF8F6F5 /* fork.h */, - B655C3BAC19516D76C7F738CAFC71F8F /* fork_posix.cc */, - AAC12AF4EFD05507BE3CB061F019A9F6 /* fork_windows.cc */, - 9C8ACA02EBD27AE5C9A81E7DB10FF0AD /* forkable.cc */, - 61DDAD684FFE2985898FCE1352A625E9 /* forkable.h */, - AAFDE93E8F86CDE8F04EFB1C4CE652D6 /* format_request.cc */, - 7760F0AED8E4A1112F359D99C94F2DAC /* format_request.h */, - A8C41FA68BB2640F9DB7CD26DA20F5E6 /* frame.cc */, - 33E4F7E2523546253CD5054BE6ED22CB /* frame.h */, - 9D8D975E68811795DE86722ACB1EE5DE /* frame_data.cc */, - B5A1ACE6E799F3B9BD67FAC7E0274F82 /* frame_data.h */, - CB17A351687619B6E905C7F757A689B1 /* frame_goaway.cc */, - B9E014B0C58956043AB038223FD38811 /* frame_goaway.h */, - 0C2E1019859884E9A90C5D1E1A9830BF /* frame_handler.cc */, - 7E4A7ADCAA16E3D5344C1B2BDAB2ABF1 /* frame_handler.h */, - 168366E867C48CA928E316C666CE9B12 /* frame_ping.cc */, - 065E113B01BDD5D963E7CB9CF1C72C7E /* frame_ping.h */, - 11B1649E2296FBED0FA6DC432EE5ECED /* frame_rst_stream.cc */, - C62331A49FEF5B78C366AF4AEC34A5C4 /* frame_rst_stream.h */, - 127CD2C8CD55BFF848053AAFEFAC293E /* frame_settings.cc */, - 6140C8A561EC38A79B440F5B9B948A24 /* frame_settings.h */, - B89E1A52D42F9E6856D4AB10EE6A70B4 /* frame_window_update.cc */, - F7BDD352DE193C875FF6FFB8F289944C /* frame_window_update.h */, - E20493DE3421D89DAD82D41C14F5B101 /* generated_code_support.h */, - 528D3F1DE63EFD50B50BC884B78114AD /* gethostname.h */, - 65E702E998D967B906DC6303B431B98F /* gethostname_fallback.cc */, - 7CD8F12C728FF9924EB278DD822E39DA /* gethostname_host_name_max.cc */, - C8F31DD387F1B89BE48E2F37675F6045 /* gethostname_sysconf.cc */, - B11C0B3997386B33E4E9F736CF1FAB37 /* global_subchannel_pool.cc */, - 58FBAA4FE8E6281D16D1C5E888DD2EB5 /* global_subchannel_pool.h */, - 9034E9636D93DEAFF1220CBD7974FF63 /* google_c2p_resolver.cc */, - 0E27B39B4166399076D7A0E6EEF6BBE8 /* google_default_credentials.cc */, - F1DF06477CCE388E456BF05C201F4E8F /* google_default_credentials.h */, - DEA0A1B453A068B53CDC03075DCF2CCA /* grpc_alts_credentials_client_options.cc */, - AF0708D12E8B05F8595E8C46478E3524 /* grpc_alts_credentials_options.cc */, - F189553CFEB5E36F46945F034DF86191 /* grpc_alts_credentials_options.h */, - CC1CBC41D108E277644F0723ED22ED87 /* grpc_alts_credentials_server_options.cc */, - 5F4D45C2DA327E6AFE110B327575871C /* grpc_ares_ev_driver.h */, - 538F677A536A37E99B376E463558C7C5 /* grpc_ares_ev_driver_posix.cc */, - F75A4EB47448A6042AD86D0270CD9507 /* grpc_ares_ev_driver_windows.cc */, - 92D16D18A9BD44DC71BCA576A8B2E609 /* grpc_ares_wrapper.cc */, - 98297097A69F101B796C3E865069F3E8 /* grpc_ares_wrapper.h */, - 2C417A51FD4DE174B5F8991B6B3D9051 /* grpc_ares_wrapper_posix.cc */, - 1DFC967B3F8C93896DB2D3D61B769825 /* grpc_ares_wrapper_windows.cc */, - 31545E1B646163E49C4D59902E6D1C7F /* grpc_authorization_engine.cc */, - E25B04DA40FE40C6A2112939608245F5 /* grpc_authorization_engine.h */, - 798BF3A9881C7FD0079144EB0FEE6EF0 /* grpc_context.cc */, - 00D100C64635E1199BECAEA4DB0E5D4D /* grpc_if_nametoindex.h */, - 2E641F7BD50A16E01014256EF886A5CC /* grpc_if_nametoindex_posix.cc */, - CC5B017255A59AA372787C7F0A19AD3D /* grpc_if_nametoindex_unsupported.cc */, - 14E451E0886F384C404155572A0F5768 /* grpc_method_list.upb.h */, - E6919070A100A717A4E29826F1EB0CE8 /* grpc_method_list.upb_minitable.c */, - 6A0A33217505676AF2EEFD2EBD3A269A /* grpc_method_list.upb_minitable.h */, - 4DC75E418CCB893F39C675CF35AB7334 /* grpc_method_list.upbdefs.c */, - BE06E66781D730D676F15E77461C0F3B /* grpc_method_list.upbdefs.h */, - D02DCCDC30D1DC85E8819A36F7573190 /* grpc_plugin_registry.cc */, - AA75EE3C2D9A57E79B1385DA0B41CF23 /* grpc_plugin_registry_extra.cc */, - 80E737B633A88C64998C60BAD13E0970 /* grpc_polled_fd.h */, - FCEFA58C1FF69B2FA4109449E2E8B590 /* grpc_polled_fd_posix.h */, - 529935E520698C3988525AE65713612A /* grpc_polled_fd_windows.cc */, - 53507921216FE8096734A59E6A8B1C92 /* grpc_polled_fd_windows.h */, - 6557A6813AFBE429FE70F46B1CA7C10C /* grpc_server_authz_filter.cc */, - 6E8487FFBDF32AB2EB23543FD2A27F3B /* grpc_server_authz_filter.h */, - 46F9CFDC969A9A34291CE5F39A34C4AE /* grpc_service.upb.h */, - 7769C1A01B5B3D159F2B8D5975108739 /* grpc_service.upb_minitable.c */, - C7E2FA72302094E2A0D9CD2F104C1816 /* grpc_service.upb_minitable.h */, - 8C4566A8EADFF00BDE9167A8E29112F7 /* grpc_service.upbdefs.c */, - 88789BDF03D8B76766903F5EAF954B41 /* grpc_service.upbdefs.h */, - 0F1E23138C1A71278D613E56741F6BB1 /* grpc_tls_certificate_distributor.cc */, - AB03E51A506CBD2C0EFEF25A1ACF233C /* grpc_tls_certificate_distributor.h */, - AF8EFF69AAB989ADEBB256E5688E34DA /* grpc_tls_certificate_match.cc */, - C5BA764CB2485AF78E965904801F9BAA /* grpc_tls_certificate_provider.cc */, - F178DCFC0057BDCA337351C2DCC0BA22 /* grpc_tls_certificate_provider.h */, - DB4F4FF06FA6A07075020F172DF597A9 /* grpc_tls_certificate_verifier.cc */, - 2BC759B4F1E6F8A666C72B2E0A462C18 /* grpc_tls_certificate_verifier.h */, - 40CF5C96AF8C7B21946BCA7107A72C3C /* grpc_tls_credentials_options.cc */, - 86E60D1804B5820D7CC87945E3D38D60 /* grpc_tls_credentials_options.h */, - 486D2A79FEB47CCC342E8091647A5D80 /* grpc_tls_crl_provider.cc */, - 7561A0B2A4D2B4399C97BDC7179BC3A0 /* grpc_tls_crl_provider.h */, - D86C0F417D0CD588CF40AFDECB63320F /* grpclb.cc */, - BAF0F4EFEE6AACB08F9AC75DAFCFAD01 /* grpclb.h */, - 5B89FA24CB3A8004D9DD8742541B18E2 /* grpclb_balancer_addresses.cc */, - 43D8282DCD09D8FC58C61C2DBB43BF2F /* grpclb_balancer_addresses.h */, - 2EB08833A61D7CABB80975291060B03B /* grpclb_client_stats.cc */, - DB6624648695BB31AC4CE1A2CEC5E44E /* grpclb_client_stats.h */, - 8BA0DEEE5FAC175AF8E727C2C5619BEF /* gsec.cc */, - E56412EEBFE01D84A924C23C63C00C56 /* gsec.h */, - CD19B6939F55477063E47E7EBA003CD0 /* gzguts.h */, - D157E9921C3E718D11CF69A00E3E9E98 /* handle_containers.h */, - 06E5B63A21E6704711E1BCA3F717D5DA /* handshaker.cc */, - FBB08943C9EFCBB045A6D4221D4CA370 /* handshaker.h */, - F3FE100D39B8E2A9688CD3F41B5B751F /* handshaker.upb.h */, - 398A500983D8BF28501B1D46AA2DF897 /* handshaker.upb_minitable.c */, - A7D6C83CCA37B7118D05D6C0775E3340 /* handshaker.upb_minitable.h */, - 5BB389B6F723FEE0D0E430BF7F466913 /* handshaker_factory.h */, - 3DC903F20740CBA07F98BC4ADC32CCAD /* handshaker_registry.cc */, - 9FC52468AE0D976B98C158D816311B7B /* handshaker_registry.h */, - 28511D4E249249B60B14CF898F9A05CA /* hash_policy.upb.h */, - 9B984CBCEEF12BE83C876EA6F3C5E6B0 /* hash_policy.upb_minitable.c */, - E2F3C402B75AB4D3ED6D8BD1BEFFC0FC /* hash_policy.upb_minitable.h */, - A8817A850CB3D99FC0EB383EE647B5FD /* hash_policy.upbdefs.c */, - 0F523359C41E1C07D6179CC4E8BB7A24 /* hash_policy.upbdefs.h */, - 0FA06F8A3FD7D84E0072502B013B5BC4 /* health.upb.h */, - 45C94F2D0AAE59A33296B359229E7A83 /* health.upb_minitable.c */, - 1272E348F9989322B0AB5CF2D3118F58 /* health.upb_minitable.h */, - 47C96961DA4B81BB8359CFB479053B33 /* health_check.upb.h */, - 8D90B6DB0E24DCEB7816ADF3481405E3 /* health_check.upb_minitable.c */, - DE1E26D8854F1DE9DE3E859C91094E21 /* health_check.upb_minitable.h */, - 20816FB41B5E2C0E9C61DC5C8E4FE4DC /* health_check.upbdefs.c */, - DB7CFCBF61B9A322B7455375C50F9F8E /* health_check.upbdefs.h */, - 3883B0BD232B648327B92CC7A952AE17 /* health_check_client.cc */, - 648B36C28EACDF5FC065805D01219987 /* health_check_client.h */, - 31C399604159E4055004553B0562F24E /* health_check_client_internal.h */, - F2345E06F2F9C17733772735F3D7D440 /* histogram_view.cc */, - B9664509B3217AE336D905DFE8B6EA7B /* histogram_view.h */, - D1F9B587AA39C7268AE07F46CA65053E /* host_port.cc */, - 1DB16D9C65443E00FFA55C9F9D91587A /* host_port.h */, - C7E81F4F509597B27D0C8E47F7C949C9 /* hpack_constants.h */, - BA85E1310ECFB9C5E917CE779D43F7F6 /* hpack_encoder.cc */, - D976A4F62C0E8245822D7BC0830725C6 /* hpack_encoder.h */, - 1EB5433BD53C731953FB646EA95D88C9 /* hpack_encoder_table.cc */, - 7D7B7AD66AA1C4349E86BC4104DD0E05 /* hpack_encoder_table.h */, - BD1A4B5943FD1BB7F26D810BDBBA52A6 /* hpack_parse_result.cc */, - B07F26500D6EE123DD36971F43F776AF /* hpack_parse_result.h */, - DAFA4733763A7278DCC1D9B89B26A298 /* hpack_parser.cc */, - 802E646131CC406B51A64D71B8FB5157 /* hpack_parser.h */, - 902B39B9D7A0772E9C8AF5D45A2C23B1 /* hpack_parser_table.cc */, - 2E2AF5E4C96BDE980500043DBC965029 /* hpack_parser_table.h */, - 65D8EF522D6BC04C5DDE742D2132A4E5 /* http.upb.h */, - AB02B3DE3163633095F905A51D67C4AF /* http.upb.h */, - 4F766E58FDCC504A2097302AA586150C /* http.upb_minitable.c */, - D20EEA2BEB08A100CE834F9133406196 /* http.upb_minitable.c */, - 1D72D9209BC861FBA09B6E42F157152A /* http.upb_minitable.h */, - 1CBE4FD560A3863EF854BB10B60F7C5E /* http.upb_minitable.h */, - 6073F589F4AB9F8E838B08F601F147A6 /* http.upbdefs.c */, - C8944DE2EDBF57302FA1802C6FD7CC53 /* http.upbdefs.c */, - DC52C321879830BA38EF4FDDA7783D69 /* http.upbdefs.h */, - AC3D4F5A47BDB70F36B9822C7B3529C9 /* http.upbdefs.h */, - A19199735F0DBC03CC365F31D2DCFA87 /* http2_errors.h */, - B4205843BB8CEFF1AD4951B5312524B2 /* http2_settings.cc */, - D141EC253C650BA4A69C0500324004CA /* http2_settings.h */, - E55E5979986DCF814DDB037E773A654D /* http_client_filter.cc */, - FBC0AB4D0C3FCE524D2A0F4104395D5A /* http_client_filter.h */, - CC2ABAA39AA35F06F8BC0859882F8D8D /* http_connect_handshaker.cc */, - 8F4620B0A502479AEC0FE2534697000D /* http_connect_handshaker.h */, - C6D0DA33BEB53214E8C1844A491FC4C1 /* http_connection_manager.upb.h */, - 8D85D10D1A2F5B360933D1F8ACCF2826 /* http_connection_manager.upb_minitable.c */, - D7F559001D49534E78782A87F0766008 /* http_connection_manager.upb_minitable.h */, - E478C200F7075F0EC676DB225F5C1464 /* http_connection_manager.upbdefs.c */, - 557D475DDAED8EF223AB94D084C7FADE /* http_connection_manager.upbdefs.h */, - C959C5C96A164C98F71DFC3331CD075F /* http_filters_plugin.cc */, - 47B5E02C02A93695B48B2BF9DEC9B871 /* http_inputs.upb.h */, - 52F61BEEE0A8C8DAE414A6E35EF80857 /* http_inputs.upb.h */, - D3FDA73535E4733FB14E7A76EB7E76C8 /* http_inputs.upb_minitable.c */, - 092E015167A24CDA42213D5D1B463670 /* http_inputs.upb_minitable.c */, - 561A0FE594F50BDD07EDBBA070F4BC88 /* http_inputs.upb_minitable.h */, - E99C6602F022D7BA64D14FBE1CC465C7 /* http_inputs.upb_minitable.h */, - 0BD80AECE2768DD33F95C107DDCA7735 /* http_inputs.upbdefs.c */, - 4E5DDE18FAA26019917E88723404C95D /* http_inputs.upbdefs.c */, - 092B924C655848B8AA5D32684C6C8321 /* http_inputs.upbdefs.h */, - A1FE37D15DC00CD187F42F2B3250021F /* http_inputs.upbdefs.h */, - 93403E19016DCF3EBF6D4049D98282A7 /* http_protocol_options.upb.h */, - D526ABBF6EBDA082418D6BF6D9074732 /* http_protocol_options.upb_minitable.c */, - 83341C6057E85D9FE9044235E0F66A79 /* http_protocol_options.upb_minitable.h */, - 2BE1B60A5208D4DD16C550B6D1E5F34A /* http_protocol_options.upbdefs.c */, - 688CDD9CD61F8876BCF91E5F07BC25B6 /* http_protocol_options.upbdefs.h */, - CBE688B5FF839CC127019AE65C82ABCA /* http_proxy_mapper.cc */, - 67D23D1D7929FDBC289138987E008EAF /* http_proxy_mapper.h */, - B6A71F4A40D912CE4AC41FCA93E4F0D3 /* http_server_filter.cc */, - 1C4CF7D0BEDF032E294A57E4A442F24F /* http_server_filter.h */, - 4F6EF8F9C34530DD51238567230EE00B /* http_service.upb.h */, - 18C33E5A056F5C710CFD44B5FCABF472 /* http_service.upb_minitable.c */, - B318381DC199B7BB2F63DFB7FA74D04C /* http_service.upb_minitable.h */, - D8EE4A6DBCF9B5C176EC954D3240C23E /* http_service.upbdefs.c */, - 3FEB031226EF2F1E7BC5D97603E23DD8 /* http_service.upbdefs.h */, - 6A8251B09CAD5F1E9B8BE996128FA6DD /* http_status.upb.h */, - 38D4E52B8E98B3BC31A0CBC5F72984C6 /* http_status.upb_minitable.c */, - 41FC1BCDCCC3B3167652E3070572705F /* http_status.upb_minitable.h */, - A670993025AA4CDB4F59C201F66947B3 /* http_status.upbdefs.c */, - E3E908D3F5BE15DE2B75D64E186266B9 /* http_status.upbdefs.h */, - BDCC0B7B68761988D8D23BA57A352E60 /* http_trace.cc */, - DBB286C834AC9C61CECB22FF997F9D98 /* http_trace.h */, - 3DD32FAEB205E316EE3B385ED08A02D9 /* http_tracer.upb.h */, - 3FFF12F485358EF78BF62B812C3DD392 /* http_tracer.upb_minitable.c */, - 4BE57F722B50DC848DA9C5227F5630DF /* http_tracer.upb_minitable.h */, - 97DE95FB9C43FCCAE5FEB1742515AEB1 /* http_tracer.upbdefs.c */, - 6D921424096C898F7B9E464E9EE1593C /* http_tracer.upbdefs.h */, - 12C35711351F8AA1E6F10B6B53BEA400 /* http_uri.upb.h */, - 0938113CE70DC568EF7EC2A1460F7F98 /* http_uri.upb_minitable.c */, - AB8AD933D6930B1DAB620D880D5FB87C /* http_uri.upb_minitable.h */, - CB4FCCA197BF1E332F0DA61D75577EAB /* http_uri.upbdefs.c */, - 81468FEC8291566A0D03DE6BF5809C81 /* http_uri.upbdefs.h */, - F3CDAAD1C983B858DEEE9510207E2A89 /* httpbody.upb.h */, - 6BE3232DC012B728472576220B9644CC /* httpbody.upb_minitable.c */, - FE5CB6F82C84152291E3699DEAD83651 /* httpbody.upb_minitable.h */, - 5544AF018A2DD522242C31180BE4B939 /* httpbody.upbdefs.c */, - 54ACADFF14DA3F6D10CFACA4E9E72928 /* httpbody.upbdefs.h */, - 2500FA362F5732800FFDBAF5654AEAA8 /* httpcli.cc */, - B9CB09BB07D04D591BEE6C9EE0802A8B /* httpcli.h */, - 9D3E68C6C0C69814AF51E01144D8853F /* httpcli_security_connector.cc */, - AC0405CD6678F3BC476190E869950DE2 /* httpcli_ssl_credentials.h */, - D7BA0811B8FB991134042B29ED7937B4 /* huffsyms.cc */, - 36B3523DAD298C5E99198BBBA1A5BB21 /* huffsyms.h */, - 10393B6C69B9D3EA52075E94574EF86E /* iam_credentials.cc */, - B74392A73E6CF66B0F1D2B4C14D67AAC /* iam_credentials.h */, - 5F0A6C5CD33B08BF32056A4C9033989F /* idle_filter_state.cc */, - FBD2B6836CA113ED9A7041F95D64BBF9 /* idle_filter_state.h */, - E52369054517C82D8BCC21A66836FE4A /* if.h */, - A421F772C1EC941CC387BE7108568247 /* if_list.h */, - B5BE2686EF1613AB44AED448B2D97FAE /* infback.c */, - E17AB9739BE5C078569B38696F47032A /* inffast.c */, - D91E24B884DFD927F0FE166AE17A3E40 /* inffast.h */, - 91C4FF92C2B55B19BF647E41C9355E04 /* inffixed.h */, - 32164C5AFEF2A2C273B83CE0C5258484 /* inflate.c */, - 8BF3A3BEE2CA3A174EB796CC2D08C14B /* inflate.h */, - 278CECD1275E331C9E7020B720B32454 /* inftrees.c */, - 1761D804B03BFA57B2E8B369FAC1994C /* inftrees.h */, - F72135E5B06CBD9D0030F2369E3AB368 /* init.cc */, - 47CD7BF3E22A1E0605846860AEBABFAD /* init.h */, - 1831CDC5BA0E5FBCAACAF59D5AAAE455 /* init_dump.upb.h */, - D18539E0D7CB0261FF0AC73C3A6979CF /* init_dump.upb_minitable.c */, - E1800BF79EE0FD81077421EAF6B45AAF /* init_dump.upb_minitable.h */, - BD96704F414FF6DB1133FB672ACD980D /* init_dump.upbdefs.c */, - 54339C93391DF8A108489A6B187E60E2 /* init_dump.upbdefs.h */, - 52F846B3D74E05B8F3DCC2E16C724A1B /* init_internally.cc */, - C26E0D2533352F51DECF06D544D5B36B /* init_internally.h */, - 03405BE9BC3E546E06DA933435E5F566 /* inproc_plugin.cc */, - 07E7F3F3C504F7C27F38FFCF5A2A19A4 /* inproc_transport.cc */, - B7FDA09CA3A64833DF7180C2805CA000 /* inproc_transport.h */, - D792EE387EF0A20BA20A6B928E8336E7 /* insecure_credentials.cc */, - 4FA2B92D97F1F33BC52E0E89110C7831 /* insecure_credentials.h */, - 5D4DF1294FE5F8209C0412AF55888DA6 /* insecure_security_connector.cc */, - 0D6A34CD13FC3C3E265C0BBF9EA901EA /* insecure_security_connector.h */, - D23F1F8FB994EEA987CB9A86EF5B85B1 /* int_table.h */, - D8F67A4743BEBACDCA9F3192450EE6AE /* interceptor_list.h */, - D1F42AF2FED7F42A05FC1A0C0DCE7DF0 /* internal.h */, - 600106C9B6F709D937C5ED71C360C975 /* internal_errqueue.cc */, - E5A854C180A458BD8ACC3FEEDD2EE829 /* internal_errqueue.cc */, - E6EB8C2E9F30BB69814EE696EFCEF3FF /* internal_errqueue.h */, - 810AE8785719307BCF9CF1C8F7E6DE56 /* internal_errqueue.h */, - 69AB852E3D17B45D16A9F0EF5532EFB4 /* iocp.cc */, - 6B2EE59E0DDD8FA5EB89B5259E6F8B03 /* iocp.h */, - 0D05DD544BF5B2E3C73B877612718667 /* iocp_windows.cc */, - BE6583A7EAE3880DFFCCAB8F9B276766 /* iocp_windows.h */, - D4EA405A5CC4A3488DCD0AE1CEFC9E49 /* iomgr.cc */, - C6DECB56E4CB068CD40A65D3038479DF /* iomgr.h */, - ED5F8FB2D3AA39E3EDA4050774D3B5EE /* iomgr_fwd.h */, - F5C36D43A500CB446DE719933532AF0E /* iomgr_internal.cc */, - 2BEBBB9D2B980BF47E00221740634DC8 /* iomgr_internal.h */, - 55E41D9BC4029B7E9564595B1C82EC8A /* iomgr_posix.cc */, - B88652FE53E190C7C6E8B25C5C3AB78A /* iomgr_posix_cfstream.cc */, - 33BBD6CAA2A320FE9E6FFCCBFA0589B4 /* iomgr_windows.cc */, - 2C0C2F1B6913A8897B21C5466D637B8E /* ip.upb.h */, - 4AC202D88911FCBCDC1BC4409E331705 /* ip.upb_minitable.c */, - 665D83E73C3A63763C8E96898D7D3569 /* ip.upb_minitable.h */, - 0B620670449037DA21DF772D39887CCD /* ip.upbdefs.c */, - 0B24A607DDF42AA6CA67CC881C27CCB8 /* ip.upbdefs.h */, - 505BCD1BF7D4B69DF22FC71DBC8C1B81 /* join_state.h */, - ED84AA4AAEEC791C0F797EBA62EC3BC8 /* json.h */, - 2BFC12448776047F1419B137DF2AC10E /* json_args.h */, - B3E69C1F3348373C1CB7108D5BD6EE5E /* json_channel_args.h */, - 93CF1B653CA4E7E1EA8E6F4C360DF286 /* json_object_loader.cc */, - DB450E5A167A88D7CF5B38632315A2E4 /* json_object_loader.h */, - AA4DDC5837DB615EC645A2C5C4E20970 /* json_reader.cc */, - EA39B9B329BA65B9F9040478672FB0B3 /* json_reader.h */, - 6133C925EF08D7454F9C1B922B433E4A /* json_token.cc */, - 225FD5981B0B130B8F4DCF775AA76327 /* json_token.h */, - 4DCA765B443B3F5AFEB516E95C3ED608 /* json_util.cc */, - 4C0DAE092F849F06F45E365405C46DAB /* json_util.cc */, - 07426490B7BE7D6C59755D7500902C41 /* json_util.h */, - 580ECD3FD8803E638B099FBCE627FACC /* json_util.h */, - 09A33826993A8F0420791CAFED89F4D0 /* json_writer.cc */, - 6859ED0C989D05ADD19BCEEE30B5F7D2 /* json_writer.h */, - 6FC569B4670188B4BC1D87E4A971A27F /* jwt_credentials.cc */, - 4CB3AF1AE538FA86AED41AC853B3E331 /* jwt_credentials.h */, - ACF698AE5CC54C04A3BA0D2C7E3FAF50 /* jwt_verifier.cc */, - 05EC9D65819C536106DEA755BBE006F4 /* jwt_verifier.h */, - 1368D545D017CFF0877FB7C2A4E61046 /* lame_client.cc */, - 37B1F5C4F4D315D25F080986F4549F4E /* lame_client.h */, - 62B9610D9E06318A33473BAD3301973F /* latch.h */, - B9380EE01C6EBABF88258960220E2B07 /* lb_policy.cc */, - 05BABF2A88DE8AC6AD54C0809A1C3D69 /* lb_policy.h */, - 182B9B3439014993DF2CE3BFFE634019 /* lb_policy_factory.h */, - E9554D677BFFE8B2F8398AC47B6004CD /* lb_policy_registry.cc */, - 6B94482ACD1BAA2B73225243481A3591 /* lb_policy_registry.h */, - 6A60304B38388686F81E19A4389961C6 /* legacy_channel_idle_filter.cc */, - 6952E535AD069F00D60346953A66452D /* legacy_channel_idle_filter.h */, - DF7D6EFC9D31751CBB9A853A98CC994F /* legacy_compression_filter.cc */, - 932A64C0B2A8CD8F4E17F6B89AFDF9AA /* legacy_compression_filter.h */, - DC87AAEF9B58756A4CD02B94A5EDFE0F /* legacy_frame.h */, - 7289CF1A4B83CE1825662F2BF813B705 /* legacy_inproc_transport.cc */, - AD465F2A1DF637CBB3D74FDA9682444C /* legacy_inproc_transport.h */, - BDB8E1B32A77E4176C7D9BA6671BA574 /* legacy_server_auth_filter.cc */, - AD807151E44B72B3E51D456197AB0FF1 /* lightstep.upb.h */, - AA4208930C960CFD90F35864702BB05B /* lightstep.upb_minitable.c */, - D760DB2E2C5067691A3BD9ED4573139C /* lightstep.upb_minitable.h */, - BDBA6E466D725FDB0F9A993000627244 /* lightstep.upbdefs.c */, - A28E9B6EB25B958CA44C7528BF144B60 /* lightstep.upbdefs.h */, - C93F18BAD134A8746B93C25FC1574DAB /* link.c */, - 5A51083FA8BD487C3182E5EA8151D926 /* link.h */, - 30BE30EEF12306F0A5DEFE5AF66AFB17 /* listener.upb.h */, - E7059C777F52FB40E3270BB695A004B2 /* listener.upb_minitable.c */, - 253BAFBE1F4E02AC866FF34802C20DA5 /* listener.upb_minitable.h */, - FAF5E8415FD99930D9875DBA24F5E944 /* listener.upbdefs.c */, - ECC03D04C752055367014F5DFE5681C4 /* listener.upbdefs.h */, - 07F805C0ABC384F5AAB22C45F2A964D9 /* listener_components.upb.h */, - DDE28CEFDB3B6F34093DB026E57A6AD3 /* listener_components.upb_minitable.c */, - AABA9B78F40DD2E2152CED2435E01145 /* listener_components.upb_minitable.h */, - 0D54507454E4AB8DA1C5F04257DF4D29 /* listener_components.upbdefs.c */, - C5D853C737A2F31D574C9C31C9F441B8 /* listener_components.upbdefs.h */, - BBBB548A0AD301AEA06D6A3C08BC4080 /* listeners.upb.h */, - 63E34B3A57657777EF8D9C88E5172EC3 /* listeners.upb_minitable.c */, - 46D309A7EA3B1E8D1E0F08D35398E061 /* listeners.upb_minitable.h */, - 459D14BB70C18A3BA6EF148556B57EB7 /* listeners.upbdefs.c */, - 316A7163A7B4C17BAF25890EBB45E625 /* listeners.upbdefs.h */, - 8A0BE642591A0C9E5FFABF605CEFC1C7 /* load_balancer.upb.h */, - 8503A1F8B8E2FFDD5F490B76FB383EE0 /* load_balancer.upb_minitable.c */, - 80D907121D1D9BC6F9EBC6C528E435DF /* load_balancer.upb_minitable.h */, - 75280673915CA37BD7C49EDEFF7622FB /* load_balancer_api.cc */, - F07B34CB9208E2B74C307877AB3434AD /* load_balancer_api.h */, - 8C0C76BA78C6A6AB220801F058A41225 /* load_config.cc */, - 869D5F3DD075965EBC017C2964B14002 /* load_config.h */, - B5D62B52B457AC027B81B893FA47C34D /* load_file.cc */, - 85CCE29DAB5B83174F619BBA3204D505 /* load_file.h */, - 79D2846899A1BD87C1909395EDA20C88 /* load_report.upb.h */, - 6266FF2445AD9D3DFEF35A0BAC49F605 /* load_report.upb_minitable.c */, - 2AEC214A8DAE62F2FC2613742504C98C /* load_report.upb_minitable.h */, - CCA151A539D16C6E4FE9A2C6D787C838 /* load_report.upbdefs.c */, - D34B6A36A4D560A7237B4958215DF921 /* load_report.upbdefs.h */, - 6B4A77F016715A7243403A4C77D95820 /* load_system_roots.h */, - BD3C69E0A58DB99A9A386217EA250BD3 /* load_system_roots_fallback.cc */, - 199FFEB83D38BFB4884AE4998FB60B54 /* load_system_roots_supported.cc */, - 1C697EF6BFF30BEE3207C1EBFDF2240C /* load_system_roots_supported.h */, - D4751091C4CAFAF75C28E799762353FB /* local_credentials.cc */, - 50D518189286E1FD58EB792D61DC5A29 /* local_credentials.h */, - FC71C7FA9338B0E9E41CC71F6216EDD5 /* local_security_connector.cc */, - E3ECDC138F660C39B0B13D0C5BF85E6F /* local_security_connector.h */, - B4895C2230245A6A5AEA203CFB9CEE47 /* local_subchannel_pool.cc */, - 8E659591CB37CA0D2937AB09BD5B833B /* local_subchannel_pool.h */, - E2BD7AEC80C02FEC7746CD78635D099F /* local_transport_security.cc */, - BB4FC3C7C59C7CE5C50829AE94ED43D2 /* local_transport_security.h */, - 39EF061F6CDE280B5D94572D010C8B50 /* lockfree_event.cc */, - A2D5129B7C96ACE5A8A175A8ECD5FF8C /* lockfree_event.cc */, - 1C7162F2014886D43898DD8F2827D19B /* lockfree_event.h */, - 1F79E4CA2C72C286350814AC67719439 /* lockfree_event.h */, - 8B5F6557AE2E08359AD9849F86D0D5F3 /* log.cc */, - 0B2D06608DAB75BCC9E7327208BF82C8 /* log.cc */, - AC90F4E797C338514D5FA38A48AE1D54 /* log.cc */, - C3C6698CD9ABE53968B30B912BB9FD54 /* log.cc */, - 0FA7519495428D68EC4F1B92ADD4D282 /* log.cc */, - 01380D2F77DD7D2F2BE0BBD347157878 /* log2.h */, - 3974B0FE7DE49148F07F0893DEAFB05C /* log_internal.h */, - C0D7761792AF2FFCD70449B8840C6F71 /* logging.h */, - 6380DE7654F38F02FA7B0B8AFEAA1CCC /* loop.h */, - 713A4F254B672B87E5FC0C08527B84AB /* lrs.upb.h */, - D080DE20522F2A4FBCDFE7E876DBAF8F /* lrs.upb_minitable.c */, - C23D041B517F921790EB0C9CAD4BED7F /* lrs.upb_minitable.h */, - F4BF58BD3614CFC8B48BBCCFBBB05F53 /* lrs.upbdefs.c */, - 42317275C7C3EC6E4F3B15A961DBFD3F /* lrs.upbdefs.h */, - 55D14F7D0A29BB1778024B6D03EAFEEA /* manual_constructor.h */, - 96ABBEED7F94C87246BC1899F8029A8D /* map.c */, - C8AE9F4A8EF3CBECB506EF85FC60E63C /* map.h */, - 25B599CD8BAF7CA8FEBBF1C63E72F526 /* map.h */, - A6F714B9493145A81FED6D9058D14C92 /* map.h */, - A4DBBEC7361E6419640B703064F63EDF /* map_entry.h */, - AB2DE7A3B272C5DED88BDE5B71D0FE89 /* map_gencode_util.h */, - C4551155FB99BC8554E490BF2E8ECEAA /* map_sorter.c */, - E5300E0CFA08053FB865BD3D647B9628 /* map_sorter.h */, - 880264BF825768662058B7981F945A08 /* match.h */, - F5DA69FD707E0A6499D893FCF2851339 /* matcher.upb.h */, - 46F0EE1F6E9CC614324D5C3FFCC08996 /* matcher.upb.h */, - 93FAF27630A786A446361581B52C38F9 /* matcher.upb_minitable.c */, - 60F03147BEC00D98B11B1F322C1D0267 /* matcher.upb_minitable.c */, - 0E9957E7F6B48425ECF537BFC69F290A /* matcher.upb_minitable.h */, - DD689D670E52EDC7EBF1D9526AD40DD4 /* matcher.upb_minitable.h */, - FA520F8F121C04BF4F0EE496D9D9AC15 /* matcher.upbdefs.c */, - 69F49DF1EBD03B840E5A1085F80AA7B6 /* matcher.upbdefs.c */, - 659A55CEE1552846E03F599756DA98DE /* matcher.upbdefs.h */, - 0AE0DE861DF52CAF2D542DA106A58B2B /* matcher.upbdefs.h */, - B2CA26278F8057772A8FFEF0C113D89B /* matchers.cc */, - E673933B949E473516CB380A897FBE74 /* matchers.cc */, - 8C6480C95F39734B254282D5EE05466F /* matchers.h */, - 5E3ED2F1F4DDDC268CF16F2D83A0CBC8 /* matchers.h */, - E1E562D989F0217A0F9DADAAF594008B /* max_concurrent_streams_policy.cc */, - 9AFE36352B0C7AC26830253951651DEC /* max_concurrent_streams_policy.h */, - 920CF98DDB9873937E0D03CA0B45991A /* memory.h */, - 984B2E3EE7F4B9566CAFCD9668C19762 /* memory.upb.h */, - AE217028E33B974468AE83533B882FAB /* memory.upb_minitable.c */, - 21816F12823835230ED25751E5B3CAF6 /* memory.upb_minitable.h */, - 5C432973545BA04932F464AB412340AB /* memory.upbdefs.c */, - 6320A74A93095A55032DC70BA94AB69A /* memory.upbdefs.h */, - A0B4B9445261B17DA5A06BC42A4645F8 /* memory_allocator_factory.h */, - C76D27C82D0B8BB8410B36E9EB77CCEE /* memory_quota.cc */, - DA53F17BB71DE197260D6652C6EF46CC /* memory_quota.h */, - 4EB5209F888B627878D7145378B13FA4 /* message.c */, - 4394A73813C217AE431572BC314816F9 /* message.c */, - 75A2EC5C72162829EFEEC7A50F143617 /* message.c */, - 7D5B1DC0B357C38120E8FF0DF4B68AE0 /* message.c */, - 5766F85E2369E849405B65FD367F03FB /* message.cc */, - 5D2B80DA056FD147D2E84186E4DEB324 /* message.h */, - 0ACE7D7EE5380B0CE7E7A4145AE9F835 /* message.h */, - 1E460238BA3814C7507614732FF5323C /* message.h */, - 46FD8984516BB2DB3B892617BD469491 /* message.h */, - 32699098C26F5F65BDA29400B643C9B2 /* message.h */, - CD4B0C6CC665B5686D341D602F63C61A /* message.h */, - 512F42E55992DD16E9623E28016F124A /* message.hpp */, - AA31C8AC7EC6596D50FE386F8BE48833 /* message_compress.cc */, - 8799C57587C8AF9EAEBA09FD764819D8 /* message_compress.h */, - 112E8D59287846D2D045996244F98F00 /* message_def.c */, - 82F16679B0F2076A1B751922EDD997C2 /* message_def.h */, - D585C5656B9F8F7572D68804AF4F2897 /* message_def.h */, - 307EACDCF4CA3C5C4D7ED7000886969A /* message_reserved_range.c */, - 55F0AF43F3C29A7F4E66C9E55940BFC9 /* message_reserved_range.h */, - AB5C773B4A3B0387A6A9A6EBCAAD5071 /* message_reserved_range.h */, - 8284AC2E7F310FBF3DC4D3F96CA53F14 /* message_size_filter.cc */, - CF9D589CF43F430D129A40F19A36C985 /* message_size_filter.h */, - 46E554B333448DE7671B85C7270F8D15 /* metadata.cc */, - AF5425E2B69D1389735B227D37F6E085 /* metadata.h */, - 78A765490A7BB63493E0C223B0EF371B /* metadata.upb.h */, - 7873B0A0AF3EEA61C3127FEFF6972AC8 /* metadata.upb.h */, - D0B78E8FCF1F30ADD47ABE37E43B685D /* metadata.upb_minitable.c */, - 31885698473ED9423529AEE84D137AFE /* metadata.upb_minitable.c */, - 1254238D650F1DFC2070AAE152983E0F /* metadata.upb_minitable.h */, - 1D3ACC95F11E30093E5E8DFCC8AED40B /* metadata.upb_minitable.h */, - 7E3616F603F7625AABA9E279388EE2F9 /* metadata.upbdefs.c */, - 105DB998E777092AE75D0378C60FF747 /* metadata.upbdefs.c */, - E4C8FA1DB08391AE112FB9321988BD71 /* metadata.upbdefs.h */, - B86764008524C4DEB352A34F527C33C5 /* metadata.upbdefs.h */, - 72F4A893420923302362F3205B15EA5A /* metadata_array.cc */, - 4853C854E918EA9741958B5159B723AE /* metadata_batch.cc */, - F6864D29D015A79E4D22591907C54E93 /* metadata_batch.h */, - 3A39D0FCF3667494F40D2B9A13505DE2 /* metadata_compression_traits.h */, - A5F45A637E64C9FDC3C60C441A129FC8 /* metadata_query.cc */, - 92FFB678471DA1578A749126D64B316E /* metadata_query.h */, - 370CBE331219ED27985EFC31651F4771 /* method_def.c */, - 5ACFBFCAB763A1A8B6DA1B3A3AFB83F0 /* method_def.h */, - 89969406AD9F217E109A0A6813F85E55 /* method_def.h */, - F30192EB6DC6CD49A26525752083D5A6 /* metrics.upb.h */, - FE320D732F15AA38D6B602360B8B336E /* metrics.upb_minitable.c */, - E6376FA095F4B6F3CAEA14B6B2D3DFCC /* metrics.upb_minitable.h */, - FFBB4A9B3D68B820FB767743527A46ED /* metrics.upbdefs.c */, - 3D3650A7B18E2F5B9AFFD40A7E9BA5D1 /* metrics.upbdefs.h */, - 410B61C24139671163C90E2B00699737 /* metrics_service.upb.h */, - 3015CCA3E486912FD0066220E4064D9D /* metrics_service.upb_minitable.c */, - C632DD4E7C4574623D384D4058B461D7 /* metrics_service.upb_minitable.h */, - F13CE9E16166CB49E327400D2D07725F /* metrics_service.upbdefs.c */, - FAD4A92713F66DEB8509583890827916 /* metrics_service.upbdefs.h */, - 8190AD18593D3FFC85FA3E0CECDEFED5 /* migrate.upb.h */, - 37C75244C820AC8C899749EC66783964 /* migrate.upb.h */, - B43F0F0C2E0A71CA7C11F5A7C878BE69 /* migrate.upb_minitable.c */, - 7B647E7ED9BE7E7F0FFA736DEC7BD9C7 /* migrate.upb_minitable.c */, - 01BCC4F202CAB2F52EB6DC0382E52928 /* migrate.upb_minitable.h */, - 44B4DFB39DB20C371098EFA2F3F46654 /* migrate.upb_minitable.h */, - 89F55148400B26F33C142BA446D0A17F /* migrate.upbdefs.c */, - FAF64DDED404A8401C0E0E8E03A6F6FD /* migrate.upbdefs.c */, - 36E4AB9CD3F3979829C60C440268D678 /* migrate.upbdefs.h */, - 7F37CCFAF44306C7193337F9CB8C343C /* migrate.upbdefs.h */, - 45EDDED85395A7191744049707819A50 /* mimics_pcre.cc */, - 9021CFD21E8189F42EF3E9DC3BFF8A68 /* mix.h */, - 13B2086CC068F04B86888304FFD8C8D2 /* modifiers.h */, - 3BBAFF46B591784557A85FCC9C11EE24 /* mpscq.cc */, - 7C016B125D81F4A7DC7A5386808AFD9D /* mpscq.h */, - 076AB9DD52FFDDE8EB5A30CE89B48312 /* mutex.h */, - A6686F7B412E2588A47DE4EB61AED64D /* mutex_stats.upb.h */, - DFC85CA2E24FCB1F2A528BE6EA49B2A1 /* mutex_stats.upb_minitable.c */, - E24E2BCA5981D4F6CE2B917CF19F19EB /* mutex_stats.upb_minitable.h */, - 41358C1067631AD0BC59473CCB052A2D /* mutex_stats.upbdefs.c */, - AAEEE5E376AC099B4704F25673F802BF /* mutex_stats.upbdefs.h */, - 1FE3467EC0A4F9934549FAFA50D5119A /* naive.c */, - 17903AD2FF7E068B69BF743878CFA717 /* nameser.h */, - 99B99D4371C776066C19F10B5F240E68 /* nameser.h */, - E1B6A2674C2DF6006205B9E1AAD1AB61 /* native_posix_dns_resolver.cc */, - 8CB7014B8898ED84436114889F9C8B13 /* native_posix_dns_resolver.h */, - AA67E98EEC05A9A5884CFF9CC5523064 /* native_windows_dns_resolver.cc */, - 9E57DD5C73964EA2CA7F91C33ED492E5 /* native_windows_dns_resolver.h */, - DEF47744EB8E4479592F5533D162B5F3 /* nfa.cc */, - 07F072C3939DA3D426229A7DAFED4AAD /* no_destruct.h */, - D58F1AF9F39677E5AC233C91FF94E69B /* node.upb.h */, - E26C7D1815C3A518817C9A69C71CA78D /* node.upb_minitable.c */, - CA731C76A01BF178AB413A8B02368C82 /* node.upb_minitable.h */, - 159DFCD4BC0AE9634BBEE6F0BDB8B5F5 /* node.upbdefs.c */, - 5ECDF5690996FF085A50116017EDBF8A /* node.upbdefs.h */, - 8A940398DEF00EA1AB67316B4B139AA8 /* notification.h */, - 18D17BCCAF3A1900DABC20D91215D153 /* number.upb.h */, - 24E6A0B0AF09A63F0339124A717F22D7 /* number.upb_minitable.c */, - 3399446665F8D5AAE2C8F70307229976 /* number.upb_minitable.h */, - F983187B0FFA29B0AADDA13C4864C3CA /* number.upbdefs.c */, - 605352223FF1E1E1D53817EB67E3BD36 /* number.upbdefs.h */, - 29D1BAE83E3EB59550D6DD6AD27162F9 /* oauth2_credentials.cc */, - D579A93E0E5AD9762D35ACEA265FBA7B /* oauth2_credentials.h */, - 2F38D9D4941C715808FD6A2B5759FBD3 /* oneof_def.c */, - B48B5ABF007753289FCC5D5A76CCD2CD /* oneof_def.h */, - 6A2F2AB0912C081E8C6EC4C6A43AED5E /* oneof_def.h */, - C398907E8E553BFE759FB80854F33F13 /* onepass.cc */, - 4C6661CE2D12B5215016EAC749E6652A /* oob_backend_metric.cc */, - 216518456E8A882E5358AFE0C6AA1062 /* oob_backend_metric.h */, - 662630BC209E2CCF71B2FE3E22BB4844 /* oob_backend_metric_internal.h */, - C537D4BB561ACD0CA314DE83CFE7C2EE /* opencensus.upb.h */, - DF8214906600BDA8D6387E771DFDA5DD /* opencensus.upb_minitable.c */, - BDC46E1663E41F98816718667F5B378E /* opencensus.upb_minitable.h */, - 5CFF8BB6D7AA4C25E2996995B5C9C26F /* opencensus.upbdefs.c */, - A43F36F08EB3E41DC7E9E60DACB69BAE /* opencensus.upbdefs.h */, - 386D30109FA2324EB056598B8DE7BE64 /* opentelemetry.upb.h */, - 04BCC64CF54934754EB03A40D5313DE5 /* opentelemetry.upb_minitable.c */, - DBA4019EA241E02193679E07966AE8F9 /* opentelemetry.upb_minitable.h */, - CBF27F091BC0E0770EFDC68A308A13F6 /* opentelemetry.upbdefs.c */, - 35C63F1E14F8C3F5278E376D5B2E16B7 /* opentelemetry.upbdefs.h */, - 50282F52ABB75D1B3EFA4E1D1C3A912C /* orca.upb.h */, - 0124BC8BE353D158F45A38FDEB11B46C /* orca.upb_minitable.c */, - 4A6F1AC05068C1227393DAB9D214FFD7 /* orca.upb_minitable.h */, - 46D0A15FF2E154B8654AA395C1AA5F56 /* orca_load_report.upb.h */, - 6C7626AAE221E8FF9BF3D8CDDCC8DE4E /* orca_load_report.upb_minitable.c */, - 5E91BC802D2BAB27A3AAF7FB0A6A03F2 /* orca_load_report.upb_minitable.h */, - E915D0437CDBAD0A094880EB90D2E36F /* orphanable.h */, - 147D66F02F1AFA4EE185ED711D8E6FC9 /* outlier_detection.cc */, - 2D65384221304E2240E4FA7778BD2338 /* outlier_detection.h */, - 10BC9CBD2D974C970CCF9EEB674C6621 /* outlier_detection.upb.h */, - F059703F5F150AC2D23B9BABF8582DBF /* outlier_detection.upb_minitable.c */, - 14FD740B10535F9B76E33D73E0614B5C /* outlier_detection.upb_minitable.h */, - 9B0ACB901660296B54A3DD638DB14E86 /* outlier_detection.upbdefs.c */, - B599DCD01FDAD8E70471EE517823F4F6 /* outlier_detection.upbdefs.h */, - 66629A6211AF7A808B848869CA44539B /* overload.h */, - 647E7A084035ED55C68CC7AB24722687 /* overload.upb.h */, - C0D64E4DAC063D1D602D384192A1455E /* overload.upb_minitable.c */, - DA611B3C4771D06B6B0D201E1402A55F /* overload.upb_minitable.h */, - 78FA9E48D3FA76C6C691EF49CDF5B8AD /* overload.upbdefs.c */, - D389DF30FD84BA35AC067F4BECB1BBB9 /* overload.upbdefs.h */, - 9F793B8A0479E67F308098B03226F857 /* packed_table.h */, - 5568523A097E5FE06BBEE7AB62A2D765 /* parse.cc */, - AC9C5444A5F35869757075780EF3AA64 /* parse_address.cc */, - 2AC8672AAF1E85FF166E8FD52D1D4776 /* parse_address.h */, - A1F21650F0605DA1B03EEE743E5279AC /* parsed_metadata.cc */, - F4A357A608295126724028D4CA431840 /* parsed_metadata.h */, - 188348958A839C00E100BFDB7507BE09 /* parser.cc */, - 1F2FF53C8F35A3AC4E998129BDE7EF2B /* parser.h */, - 5A8A5F72E6596B167AFFC27CCFAB8385 /* parsing.cc */, - 66399A79B9D1A60DDE5A3140218904C2 /* party.cc */, - 4A8AAF2AF9AE3C15B23A7AA4D368C2B5 /* party.h */, - 3B88AB72E3A96481D3F8EBC9588518A0 /* path.upb.h */, - FABB772091A94CC5532A064F8F11EC36 /* path.upb_minitable.c */, - 49A3AC4534F22DD112DBC7FEA096D37B /* path.upb_minitable.h */, - A2341C0B7EC56E753FD33747D567D0BD /* path.upbdefs.c */, - 24CAD4B815321D1D6E7F123D31BEDB31 /* path.upbdefs.h */, - 4E123084C42A818352D17C6AA63744EB /* path_transformation.upb.h */, - AC172A73A5633B24948F44D69F36FE32 /* path_transformation.upb_minitable.c */, - 8D1D4F8F69FD926B37A0D4691E3958D1 /* path_transformation.upb_minitable.h */, - 2640B377DA7DE018132FA20FD17280FE /* path_transformation.upbdefs.c */, - 2886C70DF5B59B998B6C5C6B5B47A7A4 /* path_transformation.upbdefs.h */, - B80166F7597F6B4AD42FD62DA0E5E96B /* per_cpu.cc */, - 090070DE996700C15DD7A9F5C306DEB2 /* per_cpu.h */, - 3A1B008C966022D983FE7169899C89A5 /* percent.upb.h */, - 254416F4A171AD0E2EBAB05988A8DAF2 /* percent.upb_minitable.c */, - AEE16C8D0C391914F6DAD221B7BC0BF6 /* percent.upb_minitable.h */, - 8C84EAF901F8FFCE5692A83750DB7CAD /* percent.upbdefs.c */, - 810522A277DAAC03E9AC86949AE446C4 /* percent.upbdefs.h */, - 8603C33CCC3D37473187F000C2676D06 /* percent_encoding.cc */, - 74D10328EB7B9A0FA8886575D040E248 /* percent_encoding.h */, - AAC90C417882184137626F0336AFEECB /* periodic_update.cc */, - 218B693F0E08C29105F812352729567E /* periodic_update.h */, - BA2E92673230E43C9A533EAFAB98E749 /* perl_groups.cc */, - F9F1CD8416469A153FD9BFA9C9A001F1 /* pick_first.cc */, - EC97D5AC6F63F3E9327E8739AAB8D1BC /* pick_first.h */, - 73E171821360A39197AA87F5A2C552C2 /* pick_first.upb.h */, - 0FA6EA95FF44E5D9A68FD8F1697549BF /* pick_first.upb_minitable.c */, - 5FD6633180B347C55CB0F7780E057C9D /* pick_first.upb_minitable.h */, - F2D41C24C06D1A11B72E1E0821C2FD48 /* ping_abuse_policy.cc */, - C09D4ED674359662D57BE06B01974254 /* ping_abuse_policy.h */, - 18554F1B945EAD7A802B62C4850174E3 /* ping_callbacks.cc */, - E0BDE1EA1A0CB7C54D7C13341D37D2D6 /* ping_callbacks.h */, - 9B95406374B98E99B8730E9491731B57 /* ping_rate_policy.cc */, - 6413EC9272F72409AF37654B70F8A598 /* ping_rate_policy.h */, - F0449EAF14CCE3ACBD2242EF2D1FD913 /* pipe.h */, - 638E6C2530F9711459ACCD8BC4EDE2DD /* plugin_credentials.cc */, - 71B56F896B864F6404620077FCE0B56C /* plugin_credentials.h */, - 9FB225E8C65E38252EDA580FA8181FAD /* pod_array.h */, - F86B253B4523222CF9E4BB0AE46C40FB /* poll.h */, - 025DEDEAB299ED2B675319741AA9A1F7 /* poller.h */, - 052EB6FF93A7BE89C30E265237EA3E88 /* polling_entity.cc */, - 9856ED55C26F1F2DD150B258C22E4061 /* polling_entity.h */, - 036E2A7210471EA9E915A5B49B245A69 /* polling_resolver.cc */, - 667A66E6D5337C3A205A8A270F03F90C /* polling_resolver.h */, - 19CB79C22B4AECE6F2557B22B50B4E5F /* pollset.cc */, - 1B1FD2B477F2428D3CB77FA09DC50ACE /* pollset.h */, - 3392D35FCF998D30ADFE22B25FDCE0F5 /* pollset_set.cc */, - 94AF2DF11706D6F620DA9BB5B1D30F8F /* pollset_set.h */, - 5C3B3B608D843A67CA8C9835B7F42939 /* pollset_set_windows.cc */, - 367606410BDA2F06E2AB5F5F6E3A520D /* pollset_set_windows.h */, - F1A292B6B78088048C2B613331CD3505 /* pollset_windows.cc */, - A31E948DA64C1225742257A00CCFB19C /* pollset_windows.h */, - 0CE394902CF7DE17D6A106550A137727 /* port.h */, - A81F33CCA6355AEDFAE21447C11FD4BD /* posix.h */, - 65EB719048A63DFDF9C2997248DFA076 /* posix_endpoint.cc */, - BB28089A8D2B0AC3599F8CF30439F67A /* posix_endpoint.h */, - 6878878DC17BCD7D6DFD41529C825171 /* posix_engine.cc */, - D41154BA31BD6DC9E344E66D6FB9118C /* posix_engine.h */, - 07B3C24BA4CA8EEDBC51363F35675023 /* posix_engine_closure.h */, - AC8A63EE81C0A22AC537744778914006 /* posix_engine_listener.cc */, - 109A85439F51F56834D8F41DD599332A /* posix_engine_listener.h */, - 8127BA626D9B94220FB75A1FFC59A538 /* posix_engine_listener_utils.cc */, - 8BECB2B4513E012794A4232B8569AB79 /* posix_engine_listener_utils.h */, - 6F3A6625B18A30411B7675EE8630A38C /* prefilter.cc */, - 6BFE7D9ACA45A57C70EADB50E2043CF4 /* prefilter.h */, - 98F9289ACBD51C25F36630D7FD9A64A1 /* prefilter_tree.cc */, - F1F53F350549D32CAECBC975343828B4 /* prefilter_tree.h */, - 7E3DDEECFEA39616099BEF42F621791E /* prioritized_race.h */, - 710BC4914E5DC04CF0199AD4A5DCAFBB /* priority.cc */, - 5C77170995484A7AA1D513B6276055D7 /* prog.cc */, - 6FE14FC8CF9AD7841BA103189494604A /* prog.h */, - 4CA38410825375D61AFC7D9F5A3E2BB1 /* promise.h */, - FAB78A0CFCEEAE0700135A0BB3044A33 /* promise_based_filter.cc */, - 113EAD460563D7BF492D20F34ADD6A4F /* promise_based_filter.h */, - C0D846D2DBBC8F09A563A2AC4E3641AC /* promise_factory.h */, - 3C8B216EDED742F3F88E10F39EDF0FAC /* promise_like.h */, - 1023F15393C24C162D81295DAFCEC79D /* protocol.upb.h */, - 039D4098E75E2A19E0BB4FE38175452D /* protocol.upb_minitable.c */, - 9FDAD93F00209D8C389C29999A069F3F /* protocol.upb_minitable.h */, - 0BD7E9F7E3A6FC2AA6B99DB0E82F1235 /* protocol.upbdefs.c */, - 08826C4F17DBFC87C91473CD784B7C3B /* protocol.upbdefs.h */, - 9BB301C266F6D63580BE43FF1227ABAE /* proxy_mapper.h */, - 96191C2A5B93F2757BACF4AF71AEB772 /* proxy_mapper_registry.cc */, - 010D96541603B8BA1EFB5683C3E33564 /* proxy_mapper_registry.h */, - DC3B68CAF25F52193DD03FBAF736AAB9 /* proxy_protocol.upb.h */, - 9038F3949E837EAE5F7260D0A5A1BC14 /* proxy_protocol.upb_minitable.c */, - 33472150593A741653E9C7075B46E328 /* proxy_protocol.upb_minitable.h */, - 3F50E6A5149A61E80576C6DA9726ADC7 /* proxy_protocol.upbdefs.c */, - D8E6ABC16D28925E703AD0A0BCCC057D /* proxy_protocol.upbdefs.h */, - 87CEBEF68E3E5A09668AC13F02B7F3CC /* python_util.h */, - 2EC9FAEE89E7A615BFFC0A9EA3255C70 /* query_extensions.h */, - 6C8EE1D17D77DDDCFDBDCF32BD98E1FC /* quic_config.upb.h */, - 4D6004D8110BEA118866B42303DC2FE3 /* quic_config.upb_minitable.c */, - 088A255CE2DA1845596A10B881EC420C /* quic_config.upb_minitable.h */, - 731E60A2A2030247EF333A137E054570 /* quic_config.upbdefs.c */, - F07A1DB426F661400B76D1A257C925C2 /* quic_config.upbdefs.h */, - 7B22B1BABF7295CD069F18FA514E92DE /* race.h */, - 753E8A60CDFBD3B4A92D5B0A1F1E5223 /* random_early_detection.cc */, - DF0CA0275650C7FA9D1253A813DD07BA /* random_early_detection.h */, - E293D596DD9BFABD0A4A16909060067E /* range.upb.h */, - F515BB520E143DBF4B9576C83D0EA911 /* range.upb.h */, - F4FD7E7455DECFDE822918742C132956 /* range.upb.h */, - 3932A5149BEFA38DFC3080E856357D62 /* range.upb_minitable.c */, - 8C1ED01B464A40BE09622E687A560EEA /* range.upb_minitable.c */, - DA448C95CD91697F515E7F61F607640B /* range.upb_minitable.c */, - 9005173A8ABDCCC111100C21A05D0657 /* range.upb_minitable.h */, - A391284F9C8B7EFA6AE0C1DC084CAB01 /* range.upb_minitable.h */, - FD1AB45712654DA0168ED93381A293F3 /* range.upb_minitable.h */, - B99D3A1DFE0615E01EBFA20684D97E3E /* range.upbdefs.c */, - 0A945D5068838E5C564A9B49C219160F /* range.upbdefs.c */, - 631D6D2E8CC414F7E1A409B79DFE4C51 /* range.upbdefs.c */, - 3C5683B41085C4D0B22E83F9E63B37DB /* range.upbdefs.h */, - B235EB0FF176ADCD735F6E06B3370586 /* range.upbdefs.h */, - 62DC57E253D3CC7846B19D2CE06C731F /* range.upbdefs.h */, - 3AF919A82997DF797FACF68705F575BD /* range2-neon.c */, - 61904A4654D76DDE32175575588F8762 /* range2-sse.c */, - 7DB52EDE30981127AB51207567D7BF12 /* ratelimit_strategy.upb.h */, - 4E8DB2B91B24B61F1D5DCF8179D6D2F7 /* ratelimit_strategy.upb_minitable.c */, - 01C4D490D7EF8331D8A0056C11406A9D /* ratelimit_strategy.upb_minitable.h */, - 34D68A442D4B2643C3D7FE81A71BD769 /* ratelimit_strategy.upbdefs.c */, - 90A853077C45C0106CFDFEDC2A4F5CD2 /* ratelimit_strategy.upbdefs.h */, - EE66DA9F0987F41B7B55AA687B6EF714 /* ratelimit_unit.upb.h */, - 3EC4881F792C2EBE4260A55BB8870705 /* ratelimit_unit.upb_minitable.c */, - DB9D25318E9D36F3526E3037EAF46EFA /* ratelimit_unit.upb_minitable.h */, - 741DB157C681DAE64A487819E51B4621 /* ratelimit_unit.upbdefs.c */, - 77CC34C2E0202CD9E3301D8F94685098 /* ratelimit_unit.upbdefs.h */, - B796447A38FD30A677499B2A231EBF71 /* rbac.upb.h */, - 6C10CB09F5DA17AC2BFA5C5AF7D025EF /* rbac.upb.h */, - 31009C402EA97D28DCA984F64FEF86A7 /* rbac.upb_minitable.c */, - F7888EE1B8584E4A407EB6C17BC82E5E /* rbac.upb_minitable.c */, - F24CF537AFA5231136115B0CACEFEE06 /* rbac.upb_minitable.h */, - 88ACD2B1A963CF3372CDE2B108EC1B7B /* rbac.upb_minitable.h */, - C78376C5F1F8D300B8F47F31037DF507 /* rbac.upbdefs.c */, - 70B5AAB4740DAA7EDD629D8DFB536905 /* rbac.upbdefs.c */, - 49F18358069A6A6246DF67D3A886C73C /* rbac.upbdefs.h */, - 634124EB01F71DB8F00C9A6CCC58D12F /* rbac.upbdefs.h */, - 44A22B8687CAC4414D8B8F467C0973D3 /* rbac_filter.cc */, - 308E1F439F3A55103A6C5FA9547F8565 /* rbac_filter.h */, - 982CFA624065BFA276DCC7DB2C726BC1 /* rbac_policy.cc */, - 6182C414863367FC11C18885E7D84F7B /* rbac_policy.h */, - 19116B1329713AFED9FE456BB1EE7678 /* rbac_service_config_parser.cc */, - C13BFBC97033E026755A35681D9BDABF /* rbac_service_config_parser.h */, - 0063973BEBCBA43B519D5B381BBD53D1 /* re2.cc */, - 28B5885FB07A214CD54E7DD22A020EAC /* re2.h */, - B440FE0F34265799B65625C092CC12C2 /* reader.c */, - 1F895D9FBFDEB1AF2E3D7F4A7FD162B2 /* reader.h */, - 8576BFCD0ADBB15FC2FEB6FAF1DB6CFC /* ref_counted.h */, - B3BEAB3D4F986193F588A0770B05D9A2 /* ref_counted_dns_resolver_interface.h */, - B3820F542CDBC0B47721991A152940F9 /* ref_counted_ptr.h */, - C7C5DC24E1FA7C2AEEDC84D88F332759 /* ref_counted_string.cc */, - 6CF616062239FC0BF1E34E0A5B7DD8EE /* ref_counted_string.h */, - A08591EA957D2B6797343348568C484D /* regex.upb.h */, - 1D17D8551F558C301B8274B2C5F1FB85 /* regex.upb.h */, - AB248305748EEBF373C5D06D3821B607 /* regex.upb_minitable.c */, - F50E727CBEB856DBAD6639A8AA9D85CC /* regex.upb_minitable.c */, - 384685F623C7DB737B51601C49936276 /* regex.upb_minitable.h */, - 6F0C4E2FD751FCB73851D4AAD6035425 /* regex.upb_minitable.h */, - DE51914A11DE5B59DFBA687259272ECE /* regex.upbdefs.c */, - 50915976216DB1C7C3CB58E21FB94AEC /* regex.upbdefs.c */, - 0B001E53E4565B9763550A130311C6FE /* regex.upbdefs.h */, - FAEADCDEC1A285DF5CC68A1BB55B0F91 /* regex.upbdefs.h */, - 0B7BE8566AC11DF6D7B38EFA8F00727E /* regexp.cc */, - B4CEEC06277BA8BEE6E610849D3F9810 /* regexp.h */, - 9946845585EDBD8B46CBB5BB410DB01F /* resolve_address.cc */, - 857E5446EDA11C05E4B85AA17EF29A7F /* resolve_address.h */, - A6F6994781FC76951917B92F15849405 /* resolve_address_impl.h */, - 0D181C7F23811FCF1C5442D013333797 /* resolve_address_posix.cc */, - AB40D14D1051D1A3134E32573C9D9CEA /* resolve_address_posix.h */, - 086DB6599BB162ABD38B5AEB95882764 /* resolve_address_windows.cc */, - 7FF1A6455AA6CA687471ED72F52D597E /* resolve_address_windows.h */, - 21828441A5527BD7A226F5A07C5E5DC4 /* resolved_address.cc */, - A442805C210ED3A9AF422F716FD34863 /* resolved_address.h */, - D1299013B5C4CE24C2AC297382B82894 /* resolved_address_internal.h */, - E30AA59D0FDDCAF12445E8672E04CAB9 /* resolver.cc */, - 0435DCCDAAE3BBD2C5A9250CFF2AF618 /* resolver.h */, - 669BFC0BDC51A3E8373E62004EC6D077 /* resolver.upb.h */, - 18EC9D3BCD96DC361A7CA570D679683B /* resolver.upb_minitable.c */, - 9002B5813B9F71F325745C93D37550B2 /* resolver.upb_minitable.h */, - 029903066773722AF0DEA2BC89F2F93C /* resolver.upbdefs.c */, - A252816BC5CA6A7289611E56E66C467E /* resolver.upbdefs.h */, - 4EE15FCDF6A6A6FDA5241F5A7DD153C7 /* resolver_factory.h */, - E1563D8201F7423F9CA8567D4429595F /* resolver_registry.cc */, - FD9DBD99BDFC777A3EF2FEC5A9ED8E74 /* resolver_registry.h */, - 451D2078F9E634EAD58436F1A55BDAC9 /* resource.upb.h */, - 4C5E2024C729565E7BC4D7A871F51439 /* resource.upb.h */, - 5DA76C7E90EE8192B2BAB73402D26528 /* resource.upb_minitable.c */, - 53C88549AB8CE91EF5CA53B07D0FEFE1 /* resource.upb_minitable.c */, - A21777C9C040088AAB5C38064FFBD2DE /* resource.upb_minitable.h */, - 18CBB0C0A8857FFDD6C32E6247A35881 /* resource.upb_minitable.h */, - AEBE1A77189E6E23143E7AA6735DCADE /* resource.upbdefs.c */, - 42D964BDF3B165670AF17B1BC27F3B0F /* resource.upbdefs.c */, - C73CB90FDF89359C038EF121CFAD40E2 /* resource.upbdefs.h */, - 2D56EBBF5CC50E29BBAF0FBC3A9E5DCB /* resource.upbdefs.h */, - BD5ECB33CB36369E6C8047418480FC55 /* resource_locator.upb.h */, - BFAF277A9398EE5D440DAB8DB5675839 /* resource_locator.upb_minitable.c */, - DC0BAC021F1FEDE1F5F57E5A407C7C87 /* resource_locator.upb_minitable.h */, - A62E0AD9AC7D05E6118B8F795299F83C /* resource_locator.upbdefs.c */, - 8B2C5AA8275259A395629C3BF5D04E9F /* resource_locator.upbdefs.h */, - AD363B0BB99BBA01CE892B6DBA2DF353 /* resource_name.upb.h */, - 0B8CE1529C4456333FB8B36FD579A836 /* resource_name.upb_minitable.c */, - 8FD3E7753AFFF537D2D3D54C79DC679F /* resource_name.upb_minitable.h */, - D90373CC1DA02C73FD1431D220ACEF82 /* resource_name.upbdefs.c */, - 6F85AED924534D15520C25F1EF51D402 /* resource_name.upbdefs.h */, - D0414655CF9F1F82EAAF28B46C69510D /* resource_quota.cc */, - 9011234425A9297A0FEA0D27792EC7F3 /* resource_quota.h */, - 4FD516CF5067DDC0AF15ECEE6AFEA453 /* retry_filter.cc */, - 20DAB0D10357AC0467943847FCA16B69 /* retry_filter.h */, - B29744C2B19B1609688B88915F923ED2 /* retry_filter_legacy_call_data.cc */, - D147E8B27B2BB17670D0FECCB8938287 /* retry_filter_legacy_call_data.h */, - ECB34415817EE17001F0F1AAF7556FD1 /* retry_service_config.cc */, - 118CAE82C2AA524CCA0D737BB8A3E5BD /* retry_service_config.h */, - 303508E6BBFA12534A2964D513D41E8B /* retry_throttle.cc */, - F42102CACF269840F5A449BC646433B4 /* retry_throttle.h */, - BD5F717702501F2E983DDAB7D3948E37 /* ring_hash.cc */, - 8B663B438D0C53ED4C507479F080BAFA /* ring_hash.h */, - B2D048806C0A92924E04A004AC375B8B /* ring_hash.upb.h */, - 7A744EE03375AC3C8451F2FFF6073E40 /* ring_hash.upb_minitable.c */, - 3D9DE63503ABE59FCAC655FDC6BDC0AF /* ring_hash.upb_minitable.h */, - 4A92BD167D0B2C03AD81789D1D39BC59 /* rls.cc */, - 97463FD359774810EF65318109B3DE19 /* rls.upb.h */, - 65FE0176570CCAE14AC5BC65795035B2 /* rls.upb_minitable.c */, - D1320B11A6184E1B519FCC3704E7DF56 /* rls.upb_minitable.h */, - D44E6364890338DED8F68E5C6215435B /* rls_config.upb.h */, - A4462352704DCEA41BADC72E4519D83B /* rls_config.upb_minitable.c */, - 1FDF14D6B98E2FE2F144CB6F95541C56 /* rls_config.upb_minitable.h */, - 6D9EC57F938F8C7FB53F0539973204C3 /* rls_config.upbdefs.c */, - 97572B642DCD61FE1CD96E6D0F994BF3 /* rls_config.upbdefs.h */, - C7CCDD42E37FC29B977649D952A5DC8F /* round_robin.cc */, - E0531C4F78BA76F29EBD81182758B64C /* round_trip.c */, - 00CA6717C30CD4487F9BCB1353686864 /* round_trip.h */, - 0B3D7D42BF26F1735C773557890D19E1 /* route.upb.h */, - 982A4EDDCF9C593D717A0227651E7714 /* route.upb_minitable.c */, - CE44E708C224955B889548F1A0C392CB /* route.upb_minitable.h */, - DFCF89B8737A2D33970FD12578E356C1 /* route.upbdefs.c */, - 7355E0CF980BD0805988D4775BF13703 /* route.upbdefs.h */, - AB09D214FAD65ACC303422FD1D4FF3A6 /* route_components.upb.h */, - C643B6DCCF67B8EDA091ADAD8B33B217 /* route_components.upb_minitable.c */, - D9B702559CC1C852356562A30AAD13F5 /* route_components.upb_minitable.h */, - F98FAA67801F406D6286443C1783B1B8 /* route_components.upbdefs.c */, - 76FEDBAA38BFF86AA8D4653D88AF172A /* route_components.upbdefs.h */, - 3508CDF38A29719B8A3E88DF722473F7 /* router.upb.h */, - DC71238D75501C1909F6DBC339BDE977 /* router.upb_minitable.c */, - 84C760B88E15DB71323A3D54A4CE8359 /* router.upb_minitable.h */, - 88012E6BB7B3A8B2798DFF90E8D08435 /* router.upbdefs.c */, - 5A42E1B69D317C6C4FCFF9B5F6A2B35D /* router.upbdefs.h */, - E5CB2BF5358BFA506016826CF79C18B4 /* rune.cc */, - B02FEABF609569A6858871DDCCA7FD04 /* scoped_route.upb.h */, - 37AD959F2250AF4847A33FA53A1F3066 /* scoped_route.upb_minitable.c */, - 973386DBA4083747BEDEE17ABE8818FC /* scoped_route.upb_minitable.h */, - 3B0147D1FB689C7312D31478C9616CDB /* scoped_route.upbdefs.c */, - 5D896804604C19D34B9F0904945A881D /* scoped_route.upbdefs.h */, - 5753EE82D1E97FC7C2596EAEC019955B /* secret.upb.h */, - 656179D52489E747BDF2051E0A9D0953 /* secret.upb_minitable.c */, - 775E055252E6C94B1AB8CC15CAFB4740 /* secret.upb_minitable.h */, - FB894B9601326269EA632F8E211BAC9D /* secret.upbdefs.c */, - 5EC7B281E28F3D4D4E767A954D6E24A0 /* secret.upbdefs.h */, - E9BD717C2BDAE392A7AEB886AAFB969F /* secure_endpoint.cc */, - FD1BBB6CBE34419218877A44D2668B36 /* secure_endpoint.h */, - 12F42287787F17374CCDD6B4BFA0EAD7 /* security.upb.h */, - 1A46BB487CD517176F84857B23947E23 /* security.upb.h */, - 4121E920551736B0DA268F56A8BB7A91 /* security.upb_minitable.c */, - 7A46FD0684FA228959B2AA0C09D7A967 /* security.upb_minitable.c */, - 99B56440151F2A54C9D777EEF4030376 /* security.upb_minitable.h */, - 5C0A6B12C872298674E68931C00B91E0 /* security.upb_minitable.h */, - BD8AB57391CD01902AB44919952B3767 /* security.upbdefs.c */, - 1D4DE050DA6981D505D88154D5C78A4A /* security.upbdefs.c */, - 12F6B7C45410CCE61F9538B3CDB22A16 /* security.upbdefs.h */, - 729875D3C548AC8BABEDC37B598C9FA8 /* security.upbdefs.h */, - 146D2F8E15818A7347CD33C5CC9464E7 /* security_connector.cc */, - C61ABA763E3281249AF07800391747AC /* security_connector.h */, - 6CE4149E241BD37A1E831C79E4D54830 /* security_context.cc */, - 2DC0BEEE9D4672F2AE335D5E479F7305 /* security_context.h */, - 84A4F108105E8AC9F2FFA40B89A9F523 /* security_handshaker.cc */, - 0BE9B05DBD8A4539A515176D6B1A5D2D /* security_handshaker.h */, - 64AF84D624602C92473930A69C87D64A /* semantic_version.upb.h */, - 23792007C36234A6105C3ADCADC74389 /* semantic_version.upb_minitable.c */, - 41DCD5B7AB2FAA1E3A763966CC7446FD /* semantic_version.upb_minitable.h */, - 7225A14876639C344A8AAF5B67F3947F /* semantic_version.upbdefs.c */, - C01D818C25AD57E47812CC6D7958992B /* semantic_version.upbdefs.h */, - 253DFF0200F4DA1DE21A28BE1B2A98B9 /* sensitive.upb.h */, - 566E061C760340727B26B39F959288FE /* sensitive.upb.h */, - E3D0CC740858F5DA38999F6C2E5E47A9 /* sensitive.upb_minitable.c */, - B36FB913CA5D133749D3A42B7DA28950 /* sensitive.upb_minitable.c */, - 9AC7E49CEE0CFA1AEC01AE03BCBCEDEC /* sensitive.upb_minitable.h */, - 35F717D02A2AC49B312AC948E773DC4A /* sensitive.upb_minitable.h */, - B7F6BEAC736588D103E533B0B740DF59 /* sensitive.upbdefs.c */, - 72ADDC6289545ABA536D81A9196AF13B /* sensitive.upbdefs.c */, - 6856A54FAD9D3F4BCFC2CF359E26868F /* sensitive.upbdefs.h */, - 074EBF9B48B90B902C3F91229E1487F4 /* sensitive.upbdefs.h */, - 5902E6E3D69B0F17E693AFDB9A700519 /* seq.h */, - 49FB62B2036B8C387D2FFF0B70857263 /* seq_state.h */, - D6B3252CEA306CACB310DB7CD383AC15 /* server.cc */, - 84D7E84B4A1C99EF739E6B3AEF914E06 /* server.h */, - 859D7461662CCE7441B0DCBE6A36D78C /* server_address.h */, - 1B4C4B12A0E6E371A125A95CD7DCB66F /* server_auth_filter.cc */, - B3221FD57CB7278857D28E46F4B16C99 /* server_call_tracer_filter.cc */, - BE139C80441A192780C1AFC22D1E1986 /* server_config_selector.h */, - BFE6334F2D8E926E578CFC649DD375E4 /* server_config_selector_filter.cc */, - BB099864F7029C650924575A502C0070 /* server_config_selector_filter.h */, - ECEA1AF4F57EB0FB4DB9F8F79B20F8DA /* server_info.upb.h */, - DBC553DC0AA6CE062DB607F840B91AAD /* server_info.upb_minitable.c */, - 0481076B0511164B79A8E896ACD737A7 /* server_info.upb_minitable.h */, - 2D44E6BEB97300A04116B4901D6B6834 /* server_info.upbdefs.c */, - 705D852205C63AE70C0163AC86135C86 /* server_info.upbdefs.h */, - B849A930F12E15A515112A0995A06278 /* service.upb.h */, - FBE8ABC521C90C8363F57140BA9FAB54 /* service.upb_minitable.c */, - 3887A3EFEACA3D434B84BDBFD2840333 /* service.upb_minitable.h */, - B386F8406DDB7A34EB393D7DBA02E033 /* service.upbdefs.c */, - 234CCB12474FE1E2EF8608788AED770A /* service.upbdefs.h */, - 4AF4FEEC4DC2584C3B804DCFEA40153B /* service_config.h */, - 6D1F1D45E3E6040B47C55EE7D4AAEA9F /* service_config_call_data.h */, - 313D152B52C193B3486E8BD7D7C8F449 /* service_config_channel_arg_filter.cc */, - 1926C167EF3E5E6C57B4CB8FF4B37595 /* service_config_helper.cc */, - 6E68EDF258F08B208A4F59A36B3D276A /* service_config_helper.h */, - 36C54B8EB55FB9FA272AA302C99D0A2A /* service_config_impl.cc */, - 97AC81BAF5702D091A83160AC191DEB6 /* service_config_impl.h */, - 2873799BF644C9E9D973318A968F161C /* service_config_parser.cc */, - 880196E68F414A4C8988388778524B1F /* service_config_parser.h */, - 70D7F6BB153FE002007B30BE7E0390FA /* service_def.c */, - C04907A4708BC88E01BEBE0A3741E1E3 /* service_def.h */, - 0BE6B6E7F74397D01C1B8FC6011863D7 /* service_def.h */, - D99EB2123A339F585FF159309B17B28F /* set.cc */, - BED8E61BB5553A2E063537CDE673EA2B /* set.h */, - 248A1223D340B73A00D4C8B02ACB1589 /* shim.cc */, - 9939A46740D7C0810FB7060C6CAA232A /* shim.h */, - 94492CC75E30E66E480DE9D90780A21F /* simple_slice_based_metadata.h */, - E66903E7FA89178CEFF996A48BF353FC /* simplify.cc */, - BF2691A759F393A591D9D6E6504DA101 /* single_set_ptr.h */, - DCC37457FE884CDD61177060466CC527 /* skywalking.upb.h */, - 34CE5C57249F7C5B6A0708B47AB0F04D /* skywalking.upb_minitable.c */, - 316825C21B3507471F180F05301DF02A /* skywalking.upb_minitable.h */, - D7DD48FE8F719F551DD39ECDE99B587F /* skywalking.upbdefs.c */, - 5E402E8D5AE55F093E11356463F7201F /* skywalking.upbdefs.h */, - 8877387E27DF1330B8A70D940BA24796 /* sleep.cc */, - 0FC768C834722F0E5BD1BEEB6AAD4048 /* sleep.h */, - 1814C779C3A60600013E67E58AC4240C /* slice.cc */, - 169A2F9C680BE962FEE200B0CE82EE1E /* slice.cc */, - 74F03F08EC95FEFBA52A25A2640B308C /* slice.h */, - 764C8B6A8069BC81E8FF82D3142BE6B0 /* slice_buffer.cc */, - 5729E892537BA2CE6983AD959EB4C155 /* slice_buffer.cc */, - 59E1DE391ACC93A1EEDDF5FCE2C005A2 /* slice_buffer.h */, - 5796E2084EE002FF5A07646A2FC164EB /* slice_internal.h */, - 90128CDF82AB64062BD729410B1619FC /* slice_refcount.cc */, - A15A6A181E28B626E116A6FD1502B625 /* slice_refcount.h */, - 2601A94CCA2B27C2ED1B7813D960A432 /* slice_string_helpers.cc */, - 98BBE761BACC50EB0565DC8DB23F2CF8 /* slice_string_helpers.h */, - 0A1734B428DA8697D9A6C357B6164640 /* sockaddr.h */, - 79827532D61D258A3A501C56491CEC85 /* sockaddr_posix.h */, - 33C2CC761DC3F8763C2ACDB22C558F2F /* sockaddr_resolver.cc */, - FE82DA880AEBE9AA8EBFFDB9AAB226A3 /* sockaddr_utils.cc */, - 6215DDF82BAFEF494F492220E3E73174 /* sockaddr_utils.h */, - F8C4C82D9284A6CD4CB1E7049FC972E2 /* sockaddr_utils_posix.cc */, - C02BDB56DEC2AA0A1FA78A39B6AE6BC4 /* sockaddr_windows.h */, - 1B53910DDAB545C7A5371078CFAED74D /* socket_factory_posix.cc */, - CA31AF85377ABDA1CC7445C814D41396 /* socket_factory_posix.h */, - B13978A05460CA0DB0D7DC3C3D4305ED /* socket_mutator.cc */, - 86562D1A2B1EC4D647060831DB630F29 /* socket_mutator.h */, - 635C6A0C4AB4FFBB705D73E30F673700 /* socket_option.upb.h */, - 0E6EB9757ECA09D6BE4334A772838830 /* socket_option.upb_minitable.c */, - 5FDB564A31EB7C47B792960600726595 /* socket_option.upb_minitable.h */, - 2451C17659EBFFDC3771CE8CE3BE0FA7 /* socket_option.upbdefs.c */, - 59FA8D900B943C1678E75DAB6C9BCD58 /* socket_option.upbdefs.h */, - D7D1CF0222039D42B608B595682CE9AA /* socket_utils.h */, - 4D272A39D9AAC4EC10B8D127CC46B028 /* socket_utils_common_posix.cc */, - 74F18F280096CEBFA533483027281A0B /* socket_utils_linux.cc */, - 8087934DB9065E0DBB7A26F883AC8091 /* socket_utils_posix.cc */, - 1881928922A74D3CB71A794A862383A5 /* socket_utils_posix.h */, - 3B44C29FE4F618FF80E25ECCDA04C55F /* socket_utils_windows.cc */, - 158F249697755EE2B863125D2F7B2DC2 /* socket_windows.cc */, - 1E2BCFC74A7CEFADC76FD7EE93A455C9 /* socket_windows.h */, - E37B1E1F9D6C995F864BD2A29DFAC156 /* sorted_pack.h */, - 9C37B701028AEB0AB8E0DC872DA9CCA1 /* sparse_array.h */, - EA1225A84958BE55A9780FB29AC12B76 /* sparse_set.h */, - 6CA355611227ED3B28DB15FABA4011B5 /* spinlock.h */, - 512F6AC9AADD5C74CAE3871E51BE880F /* ssl_credentials.cc */, - 61FB43B964EF9E69412ED3FC3F8066DD /* ssl_credentials.h */, - 5391036A71F41C55B3D7D7D23ED317EE /* ssl_key_logging.cc */, - 91ADBF363E9176A0D1049EF5B9B49E2C /* ssl_key_logging.h */, - BCB234EAD6F2E04D29704D79229ECAC9 /* ssl_security_connector.cc */, - 3C83F796AF28C7F7C323F519C848A50F /* ssl_security_connector.h */, - C4D094A9575BDCE3EA33C90074F8253A /* ssl_session.h */, - 11DC1D4A743AD64095781E01AB63C969 /* ssl_session_boringssl.cc */, - A2D31B3A4F6D4BCE4A03220CE60F2061 /* ssl_session_cache.cc */, - 0FC6F9D9D23B71934FA25CE865E0B398 /* ssl_session_cache.h */, - F2307C782C5BC0B08248689EDD7B45EB /* ssl_session_openssl.cc */, - F514F275CA039658BDE097D5AD4FE884 /* ssl_transport_security.cc */, - 3F63BF407685F3E26B3810890154A130 /* ssl_transport_security.h */, - 8247BE0A7A56D2DA5FA8FF3B65608AFC /* ssl_transport_security_utils.cc */, - BBA6824C858E653609C7C55DCD4A8E58 /* ssl_transport_security_utils.h */, - 2E4717B22701E5176D2540877A70CB81 /* ssl_types.h */, - 725D660C34F059E7BBAF23F2E7740B08 /* ssl_utils.cc */, - 0F79E989E9A0D03C4BB9C2E4F21DEE8E /* ssl_utils.h */, - 752E781A745F67C96DB6980A34267797 /* stat.cc */, - AA90C620B486303C1A2AE190F4145516 /* stat.cc */, - F645F622D81A7CC0F583B3802BEE617E /* stat.h */, - 768AC917856256AE9AE3FBFC3398F830 /* stateful_session.upb.h */, - 3C612522CFDA41E333893542F344A585 /* stateful_session.upb_minitable.c */, - 7C0A88A540EEB59E912076519F5DEE7A /* stateful_session.upb_minitable.h */, - C0EAD7B32DA88EB518D791BDF40B1708 /* stateful_session.upbdefs.c */, - 0FDC1232A2D98993DFD0908A337C8618 /* stateful_session.upbdefs.h */, - 0B352AC3FE796521C810E9BAC8E3D72A /* stateful_session_filter.cc */, - 3AA980A0F3FBDFE330FF4F91FAA847C5 /* stateful_session_filter.h */, - E6E5A9697C0869681AD8C92B0CEE0578 /* stateful_session_service_config_parser.cc */, - B0526F9D4F0D27505D741F0CB3D5CA1D /* stateful_session_service_config_parser.h */, - 26EC7CED9F796EE81542C27ED042CFA3 /* static_stride_scheduler.cc */, - EC0BFD697A6B8287146EB166339357E0 /* static_stride_scheduler.h */, - D6C9B9343F81A4CFBA7BF3B708C43FE9 /* stats.cc */, - D3DFF65BF982EEF36B7377B51E3FB09C /* stats.h */, - BF3A75880209DFDB08997AED7F480E75 /* stats.upb.h */, - 489C92B2E08D3A15EA672024C0F6CD96 /* stats.upb_minitable.c */, - A85ADAE6CCEF0BD8CB443ACA3B15DD69 /* stats.upb_minitable.h */, - 4FDACF0023C9EF6DFD958F982B224E45 /* stats.upbdefs.c */, - E1FE93E2D84E2C090B368F0B66D459EA /* stats.upbdefs.h */, - 39967DF59374C522B5ACCE4ADF0D5B2B /* stats_data.cc */, - B0108297D325CA8348D69D878DCF02EB /* stats_data.h */, - A4E26A84D2C89FCCCE95E2BAB591F5B2 /* status.c */, - 46BA8B4C028211C3E13C528E6810B434 /* status.h */, - F7EF82AA9C2FCD10E63D18D41BF884FE /* status.h */, - 88B8ED6E0EFB2EA6FFDA5EA9126380BF /* status.hpp */, - 69EA0F5CEACC77859D6DDD5BE313D641 /* status.upb.h */, - EAD27F2B17B387D9F13318A65F38B672 /* status.upb.h */, - D8140E2AD6B8B5CF2E1340C080524620 /* status.upb.h */, - E1393849A066FB6865EF1D367DAB9CB5 /* status.upb_minitable.c */, - 04A03878E825793A63DF52566B5E4192 /* status.upb_minitable.c */, - B272F18B136BDB1DB05A03FADC107366 /* status.upb_minitable.c */, - 07037E4FB8345A70E266E4E994D2781A /* status.upb_minitable.h */, - 22D292C6288097A769A535E4E8BCA2C6 /* status.upb_minitable.h */, - 04D3CEC0C3833B25E88A3C7A0B0970CD /* status.upb_minitable.h */, - F149AAE9679BC1FFF4DC5E34333791CB /* status.upbdefs.c */, - 3908DC8460D292BD47EADAC9C3006B02 /* status.upbdefs.c */, - EFF1AF364678F20E3BF2C605381F13F3 /* status.upbdefs.c */, - 5EAEE78FE5778C8E624ABC71174E3ADA /* status.upbdefs.h */, - D45F71B842BB18F7CFC3C66FAC0A1EAE /* status.upbdefs.h */, - 1C3C84C42F35141EF9F44A36330A1B15 /* status.upbdefs.h */, - 5848DBC72136B098AF0634F7894771C4 /* status_code_input.upb.h */, - DA2BEA65620345EB5A69901AFF31E2E7 /* status_code_input.upb_minitable.c */, - 4EE884A2D11F77E08541760530B948C9 /* status_code_input.upb_minitable.h */, - 8477D579FEBAD0A04249F83680B01045 /* status_code_input.upbdefs.c */, - 500135B33B6EBC21AA5A4C225EAACCDA /* status_code_input.upbdefs.h */, - 59B46DB14F43E64D95DED2C93E82E6B2 /* status_conversion.cc */, - 5971D827D010310EEAF0F8AE350D4358 /* status_conversion.h */, - 440DE3E38291C3198B325B410DE8E11C /* status_flag.h */, - 347DE80DE90F8C31649BFB026040A0F6 /* status_helper.cc */, - FCD0A2F54C32A0D0E18D2F5368D95749 /* status_helper.h */, - 8212589566B0658397A2F98F67F07695 /* status_util.cc */, - 22CED4A49793020F0F866C96976D428E /* status_util.h */, - D678C098DA0362493A7009F70EDBB967 /* stdout_logger.cc */, - E106C972E97F13307B6FE29CCB6B2393 /* stdout_logger.h */, - 176B0012C0D28E080F3723E6076702F5 /* str_table.h */, - 3815B53762042253851FA31294983926 /* strdup2.c */, - 84C8184A0C5821D982EBF4C70632BB29 /* strdup2.h */, - 490F97E2E2107410F7EF11E85061BECC /* stream_lists.cc */, - AFEBA47434CBDA263BA9ECD88A3A17C4 /* strerror.cc */, - 329BAE694E1A92F13AB8359AF0F3A4F4 /* strerror.h */, - F86F37A39E17280830E90F93766D637D /* string.cc */, - 5F9CF494B0CDFBB51CF39A55ED96B444 /* string.cc */, - 1AAF3C4E0D0749D0383A88D986D7FF96 /* string.cc */, - 6A83C7D6A3692DA7DBBDD4B358C8ACE5 /* string.h */, - 789BC5A41F72446247B700D30848D88B /* string.upb.h */, - 5C7540704BA93D813D8B965BDC100796 /* string.upb.h */, - B475AB331E1C1237D3D1C1F6AA6A3762 /* string.upb_minitable.c */, - EF66E8645283D4AAEF2B795713E49334 /* string.upb_minitable.c */, - BEFE63DFBAF0FB4BF9EE8561C51CCD5E /* string.upb_minitable.h */, - 13F6C6F99480960F98A79420D93E305A /* string.upb_minitable.h */, - 904A6B63DB516966B1891D67BFB3D02B /* string.upbdefs.c */, - 76A8FBBBFEB238CD0C4631E2A726562C /* string.upbdefs.c */, - 2FE0E919955E2B82AFB8CB63D76D43BE /* string.upbdefs.h */, - 1DEDF40511D43CFC3335BD8322DC1A22 /* string.upbdefs.h */, - 9AD653830CB449EAB6DEF40A699B02B6 /* string_util.cc */, - 5B758D739C0D97A5B9D9DA0629D850F6 /* string_view.h */, - 3CC568764A308FBC6B04C43F97D87A28 /* stringpiece.cc */, - 2402BB02DA98386C3D9824022509CA70 /* stringpiece.h */, - BC068C14D3CFCBABB10C63F7F7A3DD49 /* strtod.c */, - AA128C73E577E73481942AB420A3386F /* strtod.h */, - D8BA1B52642A616868DA01AF1A26CC1F /* struct.upb.h */, - 7A5A298A993C621814772DE0E7D32E17 /* struct.upb.h */, - F62C282702792681B5F199D46DF2B022 /* struct.upb_minitable.c */, - 28751429FA611076D22E64EE85E1E71E /* struct.upb_minitable.c */, - D5E3860470DE4C6C6490631A1D6CC143 /* struct.upb_minitable.h */, - 3110B31D5A3DBAB888115B58C6220F48 /* struct.upb_minitable.h */, - 7221365584DFDD9C62C11EEFBCCC71DE /* struct.upbdefs.c */, - 80CCDF272F36CCBFC7503BDACD78A0A8 /* struct.upbdefs.c */, - 82CCD1AA314BE9F473658235B8DB088F /* struct.upbdefs.h */, - F63E02E2C8B474F0A006917F93DC6EAA /* struct.upbdefs.h */, - 0ED24819D3FB222CF74E0E36CA78DB30 /* strutil.cc */, - 7D48A28B29C08063BF74444E448FA84A /* strutil.h */, - 2959CCE459D1D600FC0BE513087C1FA2 /* sub.h */, - 3972F39724143066B743A4F253A6CEB4 /* sub.h */, - 1B60005A52F1B8446899A22647C838AE /* subchannel.cc */, - D4EF7B20C636CABE1A42E3A4372FEA19 /* subchannel.h */, - 8FE4D521A4BCB7206381FCFEF9E33E39 /* subchannel_interface.h */, - 6F5D3AB0DE579992FC7748081C7A224E /* subchannel_interface_internal.h */, - C8A47317E9CC2EC634C46C8406DA76B6 /* subchannel_list.h */, - 2292EEACA8793DD77748E660A3A4F942 /* subchannel_pool_interface.cc */, - C7E60F2027EDA9FF1DBFB9AF5A634EDB /* subchannel_pool_interface.h */, - 37260653E33A1A23E5FA6554EDC20BC5 /* subchannel_stream_client.cc */, - 789D8960DDFCB53FBC176AE7F9D4A10C /* subchannel_stream_client.h */, - 67E7EB2202587F6BBBFD3D2EBCFD64C5 /* substitution_format_string.upb.h */, - 74DDB2F920CC2CE00FCF5914456CBCDD /* substitution_format_string.upb_minitable.c */, - 51BDE107BBD7B8866BE54D2E45D671C1 /* substitution_format_string.upb_minitable.h */, - 55C7F4F35FB4941747E688ED651E6E1D /* substitution_format_string.upbdefs.c */, - 65A8452A78738B167CBD5A6510005ABE /* substitution_format_string.upbdefs.h */, - E684F9C7C2C3E8629E5D15A940314092 /* supports_fd.h */, - 70DF3BDA1CA2854B8E539256608A5302 /* swap.h */, - 2ABB363B7FB4B893620F044B3173138C /* sync.cc */, - ED6CC26D27767CBBB3DC207121DE413F /* sync.cc */, - B77A5287AAA8C7BBB426D35AFB8DE9BD /* sync.cc */, - ADF1EC55A7840D7D65334E05BB08ED73 /* sync.h */, - 3D8AD2384C418F2E9E55B0C2D2248AC2 /* sync_abseil.cc */, - 454D4B6605350A2DB408FC660ED45646 /* syntax.upb.h */, - 33203F2348F3ACFD38A5FD16D9FF6B5A /* syntax.upb_minitable.c */, - 162451E4934D48CC46DCD780F8C96DF5 /* syntax.upb_minitable.h */, - 2DCA1035CB7BDE8347288177BD192B7F /* syntax.upbdefs.c */, - 9FE8E5DDBE5A9E2567FC26FB23480A87 /* syntax.upbdefs.h */, - 1A5244514FA4AD1E1073E7156BDAD5A2 /* systemd_utils.cc */, - ACD1322F8672B8C26F63A3C806B2FCE6 /* systemd_utils.h */, - A4FAC17AD804A43DFA3B49BB117E176B /* table.h */, - AD58238889CD6D3D3A24AF12240E6579 /* tagged_ptr.h */, - A34BCA09CC61E363BEC9AFFC9D03FCE0 /* tap.upb.h */, - 078A49138A0CD01ABE0B9F5A7D6B219E /* tap.upb_minitable.c */, - 37B9578314C15564A01FD21A8BAAA346 /* tap.upb_minitable.h */, - 03DD25ADC357D23E546296B96C9DCBD5 /* tap.upbdefs.c */, - 82F9FCD0EEB72F6C2050E16B13208F72 /* tap.upbdefs.h */, - 62E2D099632FAB90CB4F5CF7B3F2B3ED /* tchar.cc */, - 6AD40EF545F900894B267FC816D89EAF /* tchar.h */, - 2B3FA302F3DD424D298733BD56E9A43E /* tcp_client.cc */, - D87A619620836FDA27B7DB8467B6BDC5 /* tcp_client.cc */, - 5CBD2614C103A2C8149F82E7CE1CD1A2 /* tcp_client.h */, - 4E42650DEADE076682C32B824585E662 /* tcp_client.h */, - 3CB47A69428318DE9AE6D0A0348B58F6 /* tcp_client_cfstream.cc */, - 578EA63E41A969FA1BE9EECDD3E5CAA0 /* tcp_client_posix.cc */, - E8EC163B26E63201542D4A7E14E3172F /* tcp_client_posix.h */, - 4C2771D3EAF2D4B3AEAF6CC7CDA7D865 /* tcp_client_windows.cc */, - CDE88D3F0B457DB280B44690677B57F8 /* tcp_connect_handshaker.cc */, - 7A30DE2BC7D0F5A24E5E0C5DFC767532 /* tcp_connect_handshaker.h */, - 8995D0D2266748DD2AA460E3608DA886 /* tcp_posix.cc */, - E9CA2296761C88D10EE8125E13CDB116 /* tcp_posix.h */, - 800B010B0BE61A517F1465FEAADB9CF8 /* tcp_server.cc */, - 247ADBC68E3C7E99AACA63B2A6DCF1C7 /* tcp_server.h */, - 3312A694DAB2D927D1152BD59B1FF4B6 /* tcp_server_posix.cc */, - D36BBFC80EC962C2079929ADE18A65C6 /* tcp_server_utils_posix.h */, - 6306652B6132A3A66A8EB204F1F0E596 /* tcp_server_utils_posix_common.cc */, - 9B5CE4D7880CE25BDE6E704C5842491A /* tcp_server_utils_posix_ifaddrs.cc */, - A8407CA71D4371781FC540D4FCC1A01F /* tcp_server_utils_posix_noifaddrs.cc */, - BD840DF2B922FEDD63B325DF6B86288F /* tcp_server_windows.cc */, - 78B7131E69310D4DC30C3EE16AC7C30F /* tcp_socket_utils.cc */, - EF22FD566AA712840C3FD315DA2CCE4E /* tcp_socket_utils.cc */, - CC8CF2386EAB31DFF03672FF26555333 /* tcp_socket_utils.h */, - BCACDE9C6D3F94179DE6FB8E62FD2CC9 /* tcp_socket_utils.h */, - E3D36163A5C640671A65E1C5F6468A0B /* tcp_tracer.h */, - CAD03E88F8434F776944F7E3240A0131 /* tcp_windows.cc */, - 7BBD88153FA56786F1C6BED767F80C78 /* tcp_windows.h */, - C3529F7C4123F373EEC72143ABC4B3BE /* thd.cc */, - 7FBF930A9F0EEE93D0033649121368A5 /* thd.cc */, - 2DD177B5D14DC4078D6D223F85FFDD48 /* thd.h */, - A708866792FB843C0F5BDC7E0F1289FD /* thread_count.cc */, - 99F1CDDB5A920BA239150FAE48D1C9A3 /* thread_count.h */, - 91C72A3C16A7FC4610EA6D516E466DEF /* thread_local.cc */, - F32BD03B96F34A0BD8C469F77B89B871 /* thread_local.h */, - 7BB0982BEABD5E3021AC98459796277B /* thread_pool.h */, - B3DF54E2B197A9FB111B3D52383E071C /* thread_pool_factory.cc */, - A62CE157F51D232C04BE0B63F1D82004 /* thread_quota.cc */, - 4254059D146289C1FAA0284CC41EFCA7 /* thread_quota.h */, - A47ED003D405DBB9B02A20AED9C03666 /* thready_event_engine.cc */, - CF8658E4F8900E2A0709E57C6A27BB0F /* thready_event_engine.h */, - C1FABABFC0D575D1AD76BC87D48CABD6 /* time.cc */, - 61A4FDBA4505C67A79C8B355F0749E4F /* time.cc */, - AA30E1E9C5B214D497E6EFA894021F52 /* time.cc */, - 9B9D671F22F4544631DF717BC494F352 /* time.cc */, - D95A0CF5C1E40A00E38F87B10D93D688 /* time.h */, - C08867BA63A421476B9EBDA61AD624F2 /* time_averaged_stats.cc */, - 69DF005007AEFE0CB841787D0698ADEC /* time_averaged_stats.h */, - 77C9D068A085A36294F93F8B08A83394 /* time_precise.cc */, - A5CCA80179E72B13B61D17AE65D5BD4E /* time_precise.h */, - A3A1D1705CF4F2070D9A8B7D94CCCC90 /* time_util.cc */, - 5B872DD3311C5AC58CD0011AA6BF1473 /* time_util.cc */, - 8A4AEAD8AE549395C593F6265A47971C /* time_util.h */, - 4924926305DFEFB1B0ED02E63DC991F0 /* time_util.h */, - AC4918D8AF65616BC5063D8E50B1B7A0 /* timeout_encoding.cc */, - 860476035CD3F219B33C187D47CD7913 /* timeout_encoding.h */, - B6FC6ED79FE10CF493A417115012583C /* timer.cc */, - 9F7A5EE5AE06EEAB1F1385FECF62880E /* timer.cc */, - 372677D7A65A0511831962CB834AAD96 /* timer.h */, - 85ED1CCAD3A5E9991950EF508816805C /* timer.h */, - FE6F8C90DC2A1875ED907B6A70BDC71F /* timer_generic.cc */, - 6D1DE938959201731BB35919CC5513DA /* timer_generic.h */, - 1D71EC6D6861D4D1352D7B48B9400E08 /* timer_heap.cc */, - 2D03FD014597C7BA5F39F49685A09A85 /* timer_heap.cc */, - AF940A0212B08D0D802DDABC3A6D9D9F /* timer_heap.h */, - 928864F925FEE1C35C292577A1E0B1DC /* timer_heap.h */, - F5834A13D5431644AFE28BBCC337CE68 /* timer_manager.cc */, - 6C98504F7B481B075F241EE4EE5A09E5 /* timer_manager.cc */, - B284799AF25F8EFAFE22F828B2A7C919 /* timer_manager.h */, - 527A01354EC384FC75B1F585B2CB2E53 /* timer_manager.h */, - EA2FDE08B9D84CBF648DFB63BB498ABC /* timestamp.upb.h */, - 43D8217AE5D4896A5B2130A2A69D2C7C /* timestamp.upb_minitable.c */, - 7318BBBC5B818BE2F5B9B8833F1CBE6A /* timestamp.upb_minitable.h */, - ADCDC06E113BC82E697022EAEC84C845 /* timestamp.upbdefs.c */, - 95EAF310EDC699B2DEC3E3CFD017FBE5 /* timestamp.upbdefs.h */, - EF8F226D5868966212C8495444C09AFB /* tls.upb.h */, - B22D22282B23C5B5BCFEE73E00BDC66C /* tls.upb_minitable.c */, - B32E391D981B9EC01C539196532A196D /* tls.upb_minitable.h */, - 0CD42756D0076D1756688126CD04DB49 /* tls.upbdefs.c */, - 0CBCBFFFC18F4E16AC2E307D6120E66A /* tls.upbdefs.h */, - 3F5652719CDA46E014B9D5F7D5FE95D2 /* tls_credentials.cc */, - 4203C03091C6FFD45F1E3C71E50198DD /* tls_credentials.h */, - DD65A20F213349A0EBD536654CE9409C /* tls_security_connector.cc */, - FA888D84D215A359138B2EC521561AEF /* tls_security_connector.h */, - E1E017ED370EA39926247976D0CCA1C0 /* tls_spiffe_validator_config.upb.h */, - 4E7C822600722688B84CF7FC39488BC4 /* tls_spiffe_validator_config.upb_minitable.c */, - 5845B2B48720F4D59DC841FEBAED9434 /* tls_spiffe_validator_config.upb_minitable.h */, - 8E65BB2C25FBF9AA958B51883D228B3D /* tls_spiffe_validator_config.upbdefs.c */, - 026F1699DB5C538D35F20AB275D2F3C4 /* tls_spiffe_validator_config.upbdefs.h */, - D68CCCBF909F5F162AE0783373D3FDF8 /* tls_utils.cc */, - 577984CAD9413088B9BB4E8390E7EFA2 /* tls_utils.h */, - B25C018FE7E033587EC9C05966287100 /* tmpfile.cc */, - E5AD17697C856BA55D15D9605CD349F5 /* tmpfile.cc */, - 80B2310EE41F97B123788FD609A47401 /* tmpfile.cc */, - 69FE79B348ED5AAF5BBA866EA2471587 /* tmpfile.h */, - F6632B2EC77B3304F3F628BFD638BC3B /* token_bucket.upb.h */, - 822E9B494745631909CEEBC2CB1C4107 /* token_bucket.upb_minitable.c */, - E03176AE00822C69C0848DF460742279 /* token_bucket.upb_minitable.h */, - 10F2260ABEFDC55F02F7C7DE3A622929 /* token_bucket.upbdefs.c */, - 100594D887CEFD33F8497D35AD1F7095 /* token_bucket.upbdefs.h */, - ECA2159DB1E67F1D99A25A3851E37D2B /* tostring.cc */, - E14F05852005D8A6BF1F0CCCE7FC33DB /* trace.cc */, - FE23747AAF0C55DD4D4BFF3B512ED839 /* trace.cc */, - D1350C279660E4598CD393BA935914B5 /* trace.cc */, - 37BD8E3F08E502A876ABE1D59738CB68 /* trace.cc */, - 3E9FFE7D102D24362D1C68CC364EF739 /* trace.h */, - 328EC8747FE93562C42508CAD7F80ADD /* trace.h */, - B8AA10F1EC870CD6DD24CD291DD7E796 /* trace.h */, - 06665ABF2501B60F035805072F63C283 /* trace.h */, - BC0F1199AD733CEABABF72E12EC87A95 /* trace.upb.h */, - 18978FF38968EEFABF58EAC61697E51C /* trace.upb_minitable.c */, - 91E956A136315DE3D786D3336048AC1C /* trace.upb_minitable.h */, - 75C42818EAE9EFDCC436D770255AFD12 /* trace.upbdefs.c */, - 328AAD5AC5A2AC6097932D27CE82EA20 /* trace.upbdefs.h */, - 7D710466B04F429F4760395A8A428F24 /* trace_config.upb.h */, - FA4AE4E4AEEE52C4F3ED3FEE4B5E807F /* trace_config.upb_minitable.c */, - 16777B6A8DAD11482EEB437A06ABAEEA /* trace_config.upb_minitable.h */, - B9A07F4899EE7483C7307426140DEDD8 /* trace_config.upbdefs.c */, - 3A99E80DED3AC3D1D646903CFD4F8EA2 /* trace_config.upbdefs.h */, - 0D217E30D783D35B10140D8E05326AE9 /* traced_buffer_list.cc */, - 5310CF377D9D5D2913BC997DDCB9CE26 /* traced_buffer_list.h */, - 86C24F51D7F0D273DA4D17F35E82194A /* transport.cc */, - C96CCB9A9363E938CADE5ECC455AAF94 /* transport.h */, - 506CB2C616E2B4BF8AB6B0117E061814 /* transport_fwd.h */, - EAA2CC3BB1D2FA9E93A62797D8730BB3 /* transport_op_string.cc */, - 933F431C4CFD081712C574A6290518F4 /* transport_security.cc */, - 15B1D11CE981C028CF61D442C691D84A /* transport_security.h */, - 629F6B649CD6F57074D0E091B657D868 /* transport_security_common.upb.h */, - 718F2FDAD76D01AE02B40C06910AB2BA /* transport_security_common.upb_minitable.c */, - 0DA67406F8B702773925514F4A8C57D4 /* transport_security_common.upb_minitable.h */, - EDBB8E3F841C0773C0880FAB4D36E21E /* transport_security_common_api.cc */, - 1F2F20F9190A3A1C78C0A31460C16EE5 /* transport_security_common_api.h */, - C8483BB5E2B6D577B5AEABB82B08441F /* transport_security_grpc.cc */, - B24EF83E43B5A3D6F25A6207DDA19E04 /* transport_security_grpc.h */, - 8A4077A31F58134456FCE916A1E18A3B /* transport_security_interface.h */, - 9733E4E05BFAA102B3F8C9E7FD11E906 /* trees.c */, - 7D0CC2F8E29ABEDEDAECEBC064D14267 /* trees.h */, - C165DD423D6DB27068B7AE1BB8D643C8 /* try_join.h */, - D3E674C6D3BB078AE0480205ED962493 /* try_seq.h */, - 7AF79400D8F98A1310F9B2F45D7028BD /* tsi_error.cc */, - 53A1ADBE10DADAFD5B375F80BCF5E7FC /* tsi_error.h */, - CC5C43FB3047699413CEE92B78EF7FD6 /* type_list.h */, - 754F54B05C1822233DD8FA9EC94D790D /* typed_struct.upb.h */, - 55C37B4EF62AD0E82093212661B674D0 /* typed_struct.upb_minitable.c */, - 5A44D1EB2AB7E778D3E0B3C5CAD12690 /* typed_struct.upb_minitable.h */, - 2BF27C76EABE04A85BE8054973EB9457 /* typed_struct.upbdefs.c */, - 9DD59509049398C0332C68094DBF92C6 /* typed_struct.upbdefs.h */, - FFB1E9BCEBADE2C8288A6F26C80C91E1 /* types.h */, - 41D3484ED8A82B07C2FEF3B16FBEAB48 /* types.h */, - E36DCC9E2104C542390C3CD6CE48E5FF /* types.h */, - 99D65E0BA204B0BF5923EA24AEB97711 /* udp_listener_config.upb.h */, - B13534074AB72464697C11E2B5F28428 /* udp_listener_config.upb_minitable.c */, - 2EDB2B5408726AEEBAE0A77A2048A56D /* udp_listener_config.upb_minitable.h */, - CEDE9C05DAC498E6036ABE073A2AD15A /* udp_listener_config.upbdefs.c */, - F6E54E90BC36D7751E2B731CF0FAE359 /* udp_listener_config.upbdefs.h */, - 90D435A5DC3265B7838260F5C4A59227 /* udp_socket_config.upb.h */, - 07F0A8AEABDD6FE95D6609A0FE847B48 /* udp_socket_config.upb_minitable.c */, - 474E3E5A01E52F11CCD11C03F5DB4411 /* udp_socket_config.upb_minitable.h */, - DE1BC870AED8F95F7A3AE8EEEED1F0B4 /* udp_socket_config.upbdefs.c */, - 17E68250FF58E0AEFA8FFBEC6B278B0B /* udp_socket_config.upbdefs.h */, - 045FFF6B223D3FFB613B878D9F0A1B8E /* uncompr.c */, - A569231358F2A69A54906D2EA6EF8C9E /* undef.inc */, - 463D5268620A83520CC5579393DC7D59 /* unicode.c */, - D303310AED998DD4A92667AA0F563C50 /* unicode.h */, - F1F2A0723D119B8BC097A9DE729F606C /* unicode_casefold.cc */, - 4C5096D01F9CFAA812ED9834E0E64070 /* unicode_casefold.h */, - E5B771FE05280C2B91D32BA3EAF9ADCA /* unicode_groups.cc */, - 251E472B65D83C09BB5FC0E294DAB1AF /* unicode_groups.h */, - F800EB3ED9BC3CCE6B95FFAAC90067ED /* unique_type_name.h */, - 78154587B97B7BDADDC3F357A4726EDF /* unix_sockets_posix.cc */, - 8F32A9B5A55C57578FBD61E09153B261 /* unix_sockets_posix.h */, - FE852F12F14417453E98A6E5CD50BA83 /* unix_sockets_posix_noop.cc */, - 7D56FA7FAB8981CB6914974717C9FB5E /* upb_utils.h */, - 751C408E971CD848E7B5C4DE89D3229F /* uri_parser.cc */, - 21AFA0901CF5DFD241413068F140FDDE /* uri_parser.h */, - B81D476BA254F9B6BA385FB4EEB8EFD6 /* url_external_account_credentials.cc */, - C9108CFCB84B8D97CB8355A2487FDDDD /* url_external_account_credentials.h */, - A6FD99979DD70A7FC25EF4CE3AEE755E /* useful.h */, - FE0070744901C1A1F58276448BDEDDBE /* utf.h */, - 7D58D409A88F98DCB241916B8CC88DAF /* utf8_range.h */, - 8423DDAF01D41BAE43DEEEC84F049AC0 /* util.h */, - 362346D8CB9F43A1EAB3C6D71B6CD0B3 /* utils.cc */, - ECBEC4775CCF9204F38641A35EDEE1F0 /* utils.h */, - 2459A7E3F9EEC7FBF0ACB8471C245DB5 /* validate.upb.h */, - 1C898B28E6D3D27E77CEEF2AB1FAEE92 /* validate.upb_minitable.c */, - D8A987A247F315171F67487859383D76 /* validate.upb_minitable.h */, - 6EFD554D8F4BC580569DA329F8164D3F /* validate.upbdefs.c */, - F42319F1107A7B2295B20F7E7A3FA7E8 /* validate.upbdefs.h */, - D84B22DD9FD2044BC1A75DCECFA400FD /* validate_metadata.cc */, - 2537E5E92E0F5C5E451C35E57FA32630 /* validate_metadata.h */, - DDF4AF65A7B78F5E24FE30B389CD797A /* validation_errors.cc */, - B22BFBFD3AE4C61B4DB60808662C10A0 /* validation_errors.h */, - AE5CE8535F193916A602F693915F5982 /* value.h */, - 0B6367F69FF137D0BA2B9596DB19F65F /* value.upb.h */, - C079B7F37EB75A88E9B5AC8A0020060D /* value.upb_minitable.c */, - 25F40E84B58EBA6B651C8571EC9E620D /* value.upb_minitable.h */, - 1FAEE9414C8DFA5DB1A4776C1FFAA006 /* value.upbdefs.c */, - 5D9DC4917F302A535FA08E0745B0396B /* value.upbdefs.h */, - A8D0BA34B5FB41C659B1174F26423DDD /* varint.cc */, - 4E5832E18E37644CA18F098D22227E35 /* varint.h */, - 0E6243618FC9FA43A543AA048CD82599 /* version.cc */, - 150287BAB29B0926F1C38DB737A7507B /* versioning.upb.h */, - CC2EB1C769307BD22C89242B10B4A9BF /* versioning.upb.h */, - AAB7FC1A7A95895377586841FCB841D3 /* versioning.upb_minitable.c */, - C88E817BA291176DE2E15D2C48D278B5 /* versioning.upb_minitable.c */, - 300C8EE52299C9DA0A18E47981EBA8DD /* versioning.upb_minitable.h */, - E8F8A399560DDA4C413745C9AA55C7DE /* versioning.upb_minitable.h */, - 250B1ECEC0805673DD6FFF1A6F1CA917 /* versioning.upbdefs.c */, - 4C1801D23257F3C9A9BB507EBCDAEFA7 /* versioning.upbdefs.c */, - 54BB13DBE33C8F03A2D6A77D705E3F8D /* versioning.upbdefs.h */, - 50E49093A510D0041B0A06FB8A8FC057 /* versioning.upbdefs.h */, - 3DC4D9FD58BA649EE553536251C67B09 /* vsnprintf_compat.h */, - C9BE8E16D3E7E028B77AF7A0CEC238F6 /* vsock.cc */, - 46C91AFE3A0DC40BEBE2F0D7BEA18359 /* vsock.h */, - A84B19F64D55E49D1D83AF50A59F4FB4 /* wait_for_cq_end_op.cc */, - 044AB2672741D6C2FCA20CC8B63B696C /* wait_for_cq_end_op.h */, - C175F75B38E43796AAECFA46BF6A7A1C /* wakeup_fd_eventfd.cc */, - CD689355E672EBDD1E7C9AB57C0C6102 /* wakeup_fd_eventfd.cc */, - B956BA04FBDAA20BBB7AB7E1BB902B37 /* wakeup_fd_eventfd.h */, - 844804A0F5B6E13C13459576BC6E9D66 /* wakeup_fd_nospecial.cc */, - A070BA79BB0F8483373D9B41CD9D145A /* wakeup_fd_pipe.cc */, - 8652AB01C13FA784A5D586725E165F16 /* wakeup_fd_pipe.cc */, - 9AFA3FE648DA7BB1F321EFB5CCC94553 /* wakeup_fd_pipe.h */, - 5212F7529C3BDD858981C6100388EDA6 /* wakeup_fd_pipe.h */, - E1CAECF7D4BA7340F5E4741AE10FBC4A /* wakeup_fd_posix.cc */, - DFC5EF68382C280AB564D81BE2CDF02E /* wakeup_fd_posix.h */, - 503585B4D45920D0AA6450D21D30C1B1 /* wakeup_fd_posix.h */, - 9EDCBE58F3750D75D2206DD2F5BC598D /* wakeup_fd_posix_default.cc */, - F484170A01C350DD0FF4C57CA8FD7A8B /* wakeup_fd_posix_default.h */, - A3770F98D78AE8E8845B4B4413E5DB0F /* walker-inl.h */, - 547438022665FCC189D6BA5B78E5293B /* weighted_round_robin.cc */, - 421DFB724BA851670481A5B8DDE66E47 /* weighted_target.cc */, - 645096661119DC43F4E18A822A28BE1F /* win_socket.cc */, - 74453525B29772D6691604D8D5F9817A /* win_socket.h */, - EC0B5391006E40B9E10475C2B1B3EDC9 /* windows_endpoint.cc */, - 43B79C59D1CEC53ACB9B3E5ABD119423 /* windows_endpoint.h */, - 201F56EDF90D11A4B2F59B68B686A5D4 /* windows_engine.cc */, - B67847E61B5D4BC44D7F34422D11C6F0 /* windows_engine.h */, - 0899E2B58A674DAB56775D7694EF648C /* windows_listener.cc */, - A9A446BEEB863C559EA33DE553CDB39E /* windows_listener.h */, - E38886A31898A9F91138DA5805CB96D9 /* wire_constants.h */, - 29C7F8112BADAE0F74CCE5464D10AD14 /* work_queue.h */, - DCA0E58C004BCB43FB66C95C1456D763 /* work_serializer.cc */, - 7D5EF29A1362F97EF59D667FCF33030B /* work_serializer.h */, - 1EF205845579055CB80773EFFBD3EC04 /* work_stealing_thread_pool.cc */, - 9FE5A6D97AADB60DF50E89B16EB18141 /* work_stealing_thread_pool.h */, - 93DC7E47D0869DBB83FF65B0057986FE /* wrap_memcpy.cc */, - 4AEA57D88B45735EF573349CCD5D291D /* wrappers.upb.h */, - BDA5B63FA5F746CA1C93CFE2C893ABF1 /* wrappers.upb_minitable.c */, - 2B77BFCFDDC106EE46D8B77A228756CC /* wrappers.upb_minitable.h */, - 98ED9F2600208326F3AC3D793C5A8E0A /* wrappers.upbdefs.c */, - 6D10A781C455DC429755686E70EBDDBA /* wrappers.upbdefs.h */, - FBDD6C978F9416E0BC7FB8E91538CF9E /* write_size_policy.cc */, - 03759A44F8CEFE31CF54223696BE6198 /* write_size_policy.h */, - 037560DA9B716322257A967D709CFA07 /* writing.cc */, - D0ECE025FFD0D39C3525DA468A1DA687 /* wrr_locality.upb.h */, - F74BBFD56C6FEC8F84A7DED2686D0CCD /* wrr_locality.upb_minitable.c */, - 19A3646553FF38262A9D3D7BD25DD0D0 /* wrr_locality.upb_minitable.h */, - 23284CEB679C8A8F97D340960EF4D968 /* xds_api.cc */, - 7E84A4DF28B1E51CEDC413EE2866ABF2 /* xds_api.h */, - 910ABA876E50FED1CC9291227650130A /* xds_audit_logger_registry.cc */, - 7E96D0652A099F9302BFF7E70C912985 /* xds_audit_logger_registry.h */, - B0AB138575D3C5AEA793BBC5DCA98476 /* xds_bootstrap.cc */, - 4C6D02958D37D28CB2CDB697812150F3 /* xds_bootstrap.h */, - 2BE8897428991EBBCC81ED2D2ACFB0BF /* xds_bootstrap_grpc.cc */, - EB539C8226F09333E0FE2AD080CF9E25 /* xds_bootstrap_grpc.h */, - 90671642C880A2B634E2B42299D08AA9 /* xds_certificate_provider.cc */, - FF839FC2B56CBE383EFFF74CFE02CE07 /* xds_certificate_provider.h */, - 436D524C2E39C8B15D9E5C17424E4F9E /* xds_channel_args.h */, - 5EC5143394310D99B0D1089752D504E9 /* xds_channel_args.h */, - 02C4DC1A8F0BF0E8EDAD9815ED9DF0CE /* xds_channel_stack_modifier.cc */, - 00BD37AB3537CA25C6FDE3AFE8F55BE9 /* xds_channel_stack_modifier.h */, - 7FBE6972E899C539F43CA1D14D22AAFC /* xds_client.cc */, - 8EC417763C719CCC0A3149FC25D2C31D /* xds_client.h */, - 9311926379A43C63741253ADA5BA7B26 /* xds_client_grpc.cc */, - 16E95CD7849EA3C68955762818BB771D /* xds_client_grpc.h */, - 74CBC7BB03C5AFBB7C70A2E7DBBB8B53 /* xds_client_stats.cc */, - 6CE50C51DFC4E46E67B47726FD6AF1FA /* xds_client_stats.h */, - D6E8FC561A4277F252AF4538BCADA1E8 /* xds_cluster.cc */, - B72BA1334F58A99C1B4046C005847A4F /* xds_cluster.h */, - E0F4B1B10FECA625E20F2A7806887C58 /* xds_cluster_impl.cc */, - 8916151EBCBF678F98EFB875BA0C0F70 /* xds_cluster_manager.cc */, - 741E791772384E141482B0CCEB1D9284 /* xds_cluster_specifier_plugin.cc */, - 12D31495032003E349AA7A8542626E7D /* xds_cluster_specifier_plugin.h */, - E209AB528B59E2F9D924D00E1581022B /* xds_common_types.cc */, - AC477B9C94AB7B22D9372D4F6434B943 /* xds_common_types.h */, - C6A9783A69751C35008780E0FDEC784C /* xds_credentials.cc */, - 8E2AE0F987A2B34BAA32D574B0EE9BD7 /* xds_credentials.h */, - 395E356F23859CDF9C6B8980C6E291B1 /* xds_dependency_manager.cc */, - B5049A699ABF27C3CEA148EB7156B777 /* xds_dependency_manager.h */, - B926FBF7A8FC1FFA18726BFD3E661991 /* xds_endpoint.cc */, - F2D1CE98B19ADB85E3AEBA96857ACFE2 /* xds_endpoint.h */, - 759A899795D3BD4998338AC05BBDB07A /* xds_health_status.cc */, - E9A4964E854CF697B328D04F7E8DD7F9 /* xds_health_status.h */, - 9D5DA6E47B73F17C0A8DD419F23DBFFE /* xds_http_fault_filter.cc */, - 7167BFC60892B8B55471E5910FB6EBE0 /* xds_http_fault_filter.h */, - AB22C23D79EF8DC546F54BD2DAA58CFB /* xds_http_filters.cc */, - 9A08219D354E1BB155157391DAF5702E /* xds_http_filters.h */, - EA13DCD3D10252E935E9A0D322D57601 /* xds_http_rbac_filter.cc */, - 0644C393372B0B7C2B0564E776267B05 /* xds_http_rbac_filter.h */, - AE24F5ED35B0F33BA8E747BDF38374BF /* xds_http_stateful_session_filter.cc */, - 00738290675AD91642CF06283DBB273B /* xds_http_stateful_session_filter.h */, - 81BEEC032D651755FC18234633A5564A /* xds_lb_policy_registry.cc */, - A9C645B1B3E678E1BE11792DFCD4F03D /* xds_lb_policy_registry.h */, - 24ECEA693EF9B3340975CF965BB0E60B /* xds_listener.cc */, - A3E809F4F199336624BBA3C5105B23CD /* xds_listener.h */, - 09B4E05541A4B39A93A39F97AADEC37D /* xds_override_host.cc */, - 46ACFFAA029F46AB6F26C261B652E396 /* xds_override_host.h */, - CA78AF9872652D1B13F77E82E8A07C96 /* xds_resolver.cc */, - 5E04F8EEF517DE7BC6D2258C490C49CA /* xds_resolver_attributes.h */, - 0F46733F958B8B39D38ACCC7EC2EC6B0 /* xds_resolver_trace.cc */, - 841DECC28AD0E66EB1C6F8B70A350357 /* xds_resolver_trace.h */, - 4ADB22C0931B25DB83C5F1429ECBBD2F /* xds_resource_type.h */, - 12DB919E4D466E111F24A3D9EF9E6F96 /* xds_resource_type_impl.h */, - F9168929A943354AB0ED299ED75094C0 /* xds_route_config.cc */, - 2382AD08504589A424FC98C8E7B57DAF /* xds_route_config.h */, - 6E1AF852A2377566F79A0870EF28F8D0 /* xds_routing.cc */, - 4745A3C2FA02F0F6CEDA05AC7A7682EC /* xds_routing.h */, - D8BFD3224BAD603B76415F0164BE8CE4 /* xds_server_config_fetcher.cc */, - 96C074EFD26EE90EC78D8F386B478914 /* xds_transport.h */, - FBFAA9D204D67FF799074455B5EE1780 /* xds_transport_grpc.cc */, - 470BA302E4B80C1032BDE9CC0EF3436C /* xds_transport_grpc.h */, - 13DB7BA6D3BA95A36CD94D9FD34871D7 /* xds_wrr_locality.cc */, - 78C26D3FDA1AC5516063E69DB14D2665 /* xray.upb.h */, - B2E820A1DA0CD3FD0C3394908ABD99BE /* xray.upb_minitable.c */, - 837750B2E39F6D7C60AA8B42F25A2805 /* xray.upb_minitable.h */, - C13F39064B7ACEF00E66EA5AAD5E631A /* xray.upbdefs.c */, - 6858AFB173774F4ABF21FFC4B4719C06 /* xray.upbdefs.h */, - E84AA880B8C08725CF45D2AC743F040F /* xxhash.h */, - E698C4E5C8762FE239FB35E7EAEAAF8D /* xxhash_inline.h */, - 2910749493940BFA09C87A267F956EB3 /* zconf.h */, - 918E5B1147C6D0D05210E97EE94C05B3 /* zipkin.upb.h */, - 2E3A4FCF7A011FCEEEE73D2278052322 /* zipkin.upb_minitable.c */, - 04445866C0C23656E74337105D2B8B4C /* zipkin.upb_minitable.h */, - AEA7E44094FF9C17BBFA81DC1E5E55C8 /* zipkin.upbdefs.c */, - 474C987110ACF513F3140F266DB234D4 /* zipkin.upbdefs.h */, - 033BB4355897EDA691AB20E14D08D38C /* zlib.h */, - 4F598569041AEBFB5F3F199DD53B0FA7 /* zutil.c */, - FFE6E2217F84A9D3070AEB7DCE9D9C02 /* zutil.h */, - ); - name = Implementation; + path = "../Target Support Files/PromisesSwift"; sourceTree = ""; }; 48A7B7CE1BC11DFAA128559A9ADA8564 /* Frameworks */ = { @@ -28566,3486 +27262,5578 @@ name = Frameworks; sourceTree = ""; }; - 4A451D1A2D3AC3386E266A08D82F7E3E /* fixed_array */ = { - isa = PBXGroup; - children = ( - EC484B0535EDB787C5039B111EDEAB25 /* fixed_array.h */, - ); - name = fixed_array; - sourceTree = ""; - }; - 4B76DE6ED19BD398BCCE57DAD3A50C04 /* WithoutAdIdSupport */ = { - isa = PBXGroup; - children = ( - EA063D925E294D6217C433E46966C1BC /* Frameworks */, - ); - name = WithoutAdIdSupport; - sourceTree = ""; - }; - 4EF2CECD62E4084789E3E7A38FFD617E /* dynamic_annotations */ = { - isa = PBXGroup; - children = ( - 87C21BB6766A21DB1DF2C3CC0233101C /* dynamic_annotations.h */, - CC978DFB814E341E054C378F1B3E06D3 /* dynamic_annotations.h */, - ); - name = dynamic_annotations; - sourceTree = ""; - }; - 4FA7D1CFAA0B78A6FDA50C6BF602B7B3 /* strings */ = { - isa = PBXGroup; - children = ( - 16205EFC6762435995E98C85E0CDDFBE /* charset */, - 9350F05F3E27F4E3ED5AD1AE8DF98342 /* cord */, - CEADABD13B89D3C9B92E549AA426C7FC /* cord_internal */, - D368AAD24CAA649D3779CCA6246BDF98 /* cordz_functions */, - 639ABFFDD1B3E98A0E5D16C90BFF03D7 /* cordz_handle */, - BE1513BFFB920032142FD2BCA566956B /* cordz_info */, - B531728192309098312215555F7B72DD /* cordz_statistics */, - BE63FB0B868397C2546D1D9154F492B8 /* cordz_update_scope */, - 79A0A47C57711B460E2F44902935AA55 /* cordz_update_tracker */, - 7E14A5F66C05117EF5576A6D4BD14AF6 /* has_ostream_operator */, - C6346153DA286D0F0BC08AF403014618 /* internal */, - B339D0CC10E97890C0C3FDA61568344C /* str_format */, - B1E5D5872399597AF027426B5C38E394 /* str_format_internal */, - 759199B100992A9185EDA39E9D9DB49C /* string_view */, - 29FA0B0A8BB47C8588B70699CC22C373 /* strings */, - ); - name = strings; - sourceTree = ""; - }; - 52EB0B2066F03CBF30BB659AAAA867B6 /* program_name */ = { - isa = PBXGroup; - children = ( - E529DE322D4458CF608012ECFEC8949D /* program_name.cc */, - F87206A074AB081D45C57FD9E9189D36 /* program_name.h */, - ); - name = program_name; - sourceTree = ""; - }; - 53003D8CE89BDE1C7A8D513A8F405168 /* Location */ = { - isa = PBXGroup; - children = ( - ABFBB3DC0A0FCDFD2C2E3396C57A9FEE /* TZLocationManager.h */, - 13DB2A62622C53DE32ADAA423884587D /* TZLocationManager.m */, - ); - name = Location; - sourceTree = ""; - }; - 570EFC92D9C664365E78A06D76474A76 /* flat_hash_set */ = { - isa = PBXGroup; - children = ( - 2DBE7C9F5F5ECBE292BC53CA6862FB05 /* flat_hash_set.h */, - ); - name = flat_hash_set; - sourceTree = ""; - }; - 578B15ACEB8B70F8E729EB66596BA030 /* Resources */ = { - isa = PBXGroup; - children = ( - 237D543D700C734F4B71B28BD2F757B0 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 579F84F8A037ED4B7F38329BE2BB5A04 /* Resources */ = { - isa = PBXGroup; - children = ( - 27D03EB17485CE1EFD77549564C067D6 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 57CD2359538A5034387A950DE01E3D13 /* Resources */ = { - isa = PBXGroup; - children = ( - 7C616D96BE44EE7B87FFAF3816706F1D /* SVProgressHUD.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 59D1F92E3C4C8BBD7ACAADD31FE2E908 /* crc */ = { - isa = PBXGroup; - children = ( - E8AC2CB39FE2DD35D5E158F4D6D99068 /* cpu_detect */, - 1898ECD0F11E8FB4B22C18E61C90662E /* crc32c */, - 3023B0614A0BA72329BE6C2D0DB51E09 /* crc_cord_state */, - FE1BE4246D0F52B4AF1018207ED4697A /* crc_internal */, - B06D0FC6DA41B59442B4E77A29C17FBA /* non_temporal_arm_intrinsics */, - 80343793BEC9D0501286E93F808868A6 /* non_temporal_memcpy */, - ); - name = crc; - sourceTree = ""; - }; - 5BA7C23577EF7773A59150122683B5DF /* Support Files */ = { - isa = PBXGroup; - children = ( - 1AD6D74CC0CAC2970FE5115A8B880CCF /* FirebaseCrashlytics.modulemap */, - 79FD8A9513A39CD6C41044FFF2CA7CE9 /* FirebaseCrashlytics-dummy.m */, - A8A291C0A39F4DF159EE49AF57219D89 /* FirebaseCrashlytics-Info.plist */, - D0B91C4DD31CEC54031B3B919A2783A2 /* FirebaseCrashlytics-umbrella.h */, - D7A82D5443FAF3636239E86DE1AA5AED /* FirebaseCrashlytics.debug.xcconfig */, - BD585FE1C41649BE87F51BA57352103E /* FirebaseCrashlytics.release.xcconfig */, - 1609B8F755C6EBC68129C8CC873F0F81 /* ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCrashlytics"; - sourceTree = ""; - }; - 5DB2A8F69BA7B7FE6853CF8D8365F76E /* Support Files */ = { - isa = PBXGroup; - children = ( - 922CF725BB45C83E6A56BA00160E25D7 /* FirebaseAppCheckInterop.modulemap */, - 173D4578EF7A0A55680C0D52973B54B2 /* FirebaseAppCheckInterop-dummy.m */, - 8ACFE87A20B360F9DB0F26F8E37AC5FE /* FirebaseAppCheckInterop-Info.plist */, - AC3AAE317E144938A56D1011932F5305 /* FirebaseAppCheckInterop-prefix.pch */, - 03B8831EC85E9585A64BC115197123C0 /* FirebaseAppCheckInterop-umbrella.h */, - 3B4EEEE47D6E58C6B6311CB9425BEE0C /* FirebaseAppCheckInterop.debug.xcconfig */, - DAA3FFAD0D51A937A7B710BA1E000A63 /* FirebaseAppCheckInterop.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAppCheckInterop"; - sourceTree = ""; - }; - 5DDC6697C7C93A177465A4666CC9E421 /* FirebaseInstallations */ = { - isa = PBXGroup; - children = ( - 30C49196FC6DD4C4C3C54902409FBE4C /* FIRAppInternal.h */, - 6040A2204CBC1B9C395C1007D0B5B6C9 /* FIRComponent.h */, - 2E261B98D045BFD5AAAB667058D574A7 /* FIRComponentContainer.h */, - 5BBB28C4A306ADE2AF12FA5490ACB0E8 /* FIRComponentType.h */, - 1DF5A39BFE01D0E2B26C6D43C962B164 /* FIRCurrentDateProvider.h */, - 5D2F4C74E09A733BA0D4D7CD3C19E5A5 /* FIRCurrentDateProvider.m */, - 2DCC2EEC2D2618B33C5C6BFF1501E553 /* FIRDependency.h */, - 24ADA36D08A5C45E95969103490DD536 /* FirebaseCoreInternal.h */, - 155960AAEC901EEDBBE13F17F3E570E4 /* FirebaseInstallations.h */, - A453B91078D61194B777704BC6A7DD0A /* FirebaseInstallationsInternal.h */, - 2002D045553D0BAC597D9C1CA5907FA9 /* FIRHeartbeatLogger.h */, - 91133CAAAAA344D89216D7F199D3EF87 /* FIRInstallations.h */, - 24CF4BBB8569FA57BF6103DFD65FF6A6 /* FIRInstallations.m */, - FCC3C026E8B60D21212C2D9B2F07090C /* FIRInstallationsAPIService.h */, - 266BF18C0697433B015646C062BBB528 /* FIRInstallationsAPIService.m */, - 9879F180640DC899A35DFC38DEA9879A /* FIRInstallationsAuthTokenResult.h */, - ED1D39B666D42800F16C5FB5C6A283CA /* FIRInstallationsAuthTokenResult.m */, - 22F7DA58E1E9C8EE542F6D2E4B6A40F8 /* FIRInstallationsAuthTokenResultInternal.h */, - 59C95133CF1C88F7BFBED72DEE24A265 /* FIRInstallationsBackoffController.h */, - CFA48981CDC388624CCBF7B59620ABC1 /* FIRInstallationsBackoffController.m */, - 8EF111846FC5120FAEA129EC8E216DA1 /* FIRInstallationsErrors.h */, - 41271D39CC964BFC4A6A6394F67473B8 /* FIRInstallationsErrorUtil.h */, - 028EED6897FFE902BCDC3FED0BAA1C8F /* FIRInstallationsErrorUtil.m */, - E5E470A32C365CC3366E4C27FDFEAD00 /* FIRInstallationsHTTPError.h */, - 4ECE443419F016DBEBEE6773E3CD4711 /* FIRInstallationsHTTPError.m */, - 0B2FEDD07D606A83E9F4989AFF5D7AF5 /* FIRInstallationsIDController.h */, - DF6092271B84334B21B68B0F300E2AA6 /* FIRInstallationsIDController.m */, - 3044137CE44488A15F008CCABC6DFCA0 /* FIRInstallationsIIDStore.h */, - 53CFBCE5F3AB47FF5CA432FE4158D673 /* FIRInstallationsIIDStore.m */, - 2D0D4710F284F032766A53AF4B65CED9 /* FIRInstallationsIIDTokenStore.h */, - DC5935CA6AF36E9658A45CC190FB56FC /* FIRInstallationsIIDTokenStore.m */, - 6ABCCF58FD69D3EEE2105F35B53B7E6F /* FIRInstallationsItem.h */, - 3ADEFF0CFA386AC8409480B8BAD8E5DF /* FIRInstallationsItem.m */, - 41EB6B8E02C955B877026B1DAC80C801 /* FIRInstallationsItem+RegisterInstallationAPI.h */, - 78F8D9440128C2E0DC3B44A57D495D78 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - 6A123B6DA590C02C80D01356EF7E6333 /* FIRInstallationsLogger.h */, - F31E82509A3F2DF86E33D4A1CAA929FC /* FIRInstallationsLogger.m */, - 3EF4CE324CA94D4CEE91EDE60D36ECFB /* FIRInstallationsSingleOperationPromiseCache.h */, - 18528EC0754A6AB121494C18B7CBB434 /* FIRInstallationsSingleOperationPromiseCache.m */, - 01A6B0FD8CE64F17F146CE210F16A4E2 /* FIRInstallationsStatus.h */, - FAD597624F322FA65AFC078BC876B924 /* FIRInstallationsStore.h */, - 242884B0F378096627EEF734C684A1B8 /* FIRInstallationsStore.m */, - DFFAB69EDABE0F6B19436D636EC55BF6 /* FIRInstallationsStoredAuthToken.h */, - 94E2B0602150230A62FAC6091F7C395A /* FIRInstallationsStoredAuthToken.m */, - 8F7AE7A9CAD2ABF357A9901B4C6FE9F0 /* FIRInstallationsStoredItem.h */, - 097DE915BBF1F98C914752D5920787B5 /* FIRInstallationsStoredItem.m */, - 1F2A6B5832808FED849EB6E8A5D8FEF3 /* FIRLibrary.h */, - 5DC61A4F806212307CA56E889BABBB6C /* FIRLogger.h */, - 88792C4715CF51DFCD4F3BAE876724C9 /* FIROptionsInternal.h */, - A522D304C9B3224A30E881FADF6F5741 /* Resources */, - 04DA3A90D761289F456EF726E9C4ACBB /* Support Files */, - ); - path = FirebaseInstallations; - sourceTree = ""; - }; - 5E570FABB7470D3A0DB1073234F609DA /* Implementation */ = { - isa = PBXGroup; - children = ( - 1B9C98371CB14C790755E51DC47624A8 /* a_bitstr.c */, - 4617B55E761BA582B923AAE6FD99A1EE /* a_bool.c */, - 0FD0A0DCF8D27B542EC7486900DDE3AB /* a_d2i_fp.c */, - 0CE9BC90653F3F4444B32114B5B447DD /* a_digest.c */, - BB8D7FA513EC470E9C6575D389B47F10 /* a_dup.c */, - 1B6994B246D2F56C17A880AC2E8CF1D9 /* a_gentm.c */, - 6A58FB6C09960C4D935CCEF0B9E1B2A3 /* a_i2d_fp.c */, - 4DA6BFD0FC1A06826DDEA320EC829AF2 /* a_int.c */, - 26E2E9702B18C6BBD974A398283644CE /* a_mbstr.c */, - B93F7AE4900EBBEA859D8D4B6EC018F9 /* a_object.c */, - 346F43381C6DD95C937C07DA2A0F3DBD /* a_octet.c */, - 7371AB91C6D7C37AFD56A1EF8FFC5C8A /* a_sign.c */, - 2BA4D6CC59095F6546A05043BBAA10DF /* a_strex.c */, - 8E4BC4649EFAE2378AE7A555BF6C2244 /* a_strnid.c */, - FB3D21DB8AD6D820A102A796A86DA427 /* a_time.c */, - F801C63750EED6B8A164B9502DD197E3 /* a_type.c */, - 538BA6CBD7B74E20E5D8966F58C9964A /* a_utctm.c */, - A5D454BA0A1832F5609DE52C7F531235 /* a_verify.c */, - FDF2B3B35A94824E9EBD443566E0418A /* add.c */, - 470EEF3E84292489A1CCAAA0D79A35BB /* address.c */, - 2F532C5F1DE023FC07C442B4020E193D /* address.h */, - 381AA3793BAD52EEABA59871059229E0 /* aead.c */, - F1F5C05DCECB4881578EFDA93DB96734 /* aes.c */, - 30C4D29006DDA87A721D6B139B88D96C /* aes_nohw.c */, - 67CAA00E44F05BDF090828F8771D41FC /* algorithm.c */, - AE5D85ED5F0FD62C4963F5BAD8BEED77 /* asn1_compat.c */, - 5B18ED09E4AEE80B5A47CE1E5A390E8A /* asn1_gen.c */, - 9C40782309221F2AF548618C926D57BE /* asn1_lib.c */, - 65DE18467693B644C90E0788AD701BAC /* asn1_par.c */, - 87DBC2AEA6118085E60E996255FF8A81 /* asn_pack.c */, - 72DA6ABEC05B309F2FC06C1515064260 /* base64.c */, - B53B8BE9577FC6EAB8C88FA80416E954 /* ber.c */, - F5027A68721D70B93A90574340115C6B /* bio.c */, - EA2A9439E140B4D24E6A13FBF8F61C1E /* bio_mem.c */, - 2878D381A0EF54A671A6F57C2B8C0E58 /* bio_ssl.cc */, - 8D0B5115BEE490A159D58166B7036781 /* blake2.c */, - 4505B75B6C55DAF259B99853357D4134 /* blinding.c */, - B3775A68305B57212A7ABBF5B3A757CA /* bn.c */, - 36D11B55B4DF32956F0120EC54D08DC6 /* bn_asn1.c */, - 3466C10A86BEE1BE4C84F4E33C80BFBC /* buf.c */, - C4E82EEE9943E67E99F4FA87863B2C45 /* builtin_curves.h */, - 4EDF2389C92719DA48C4DBB3AC7A7B60 /* by_dir.c */, - 48D3752C7C2CDF9E853AB021F901A377 /* by_file.c */, - 6C0D9CEE135B34E64E73FDD5A39EA64E /* bytes.c */, - 6A23199FF92FAD05C08ECA8439DB1547 /* cbb.c */, - FA8EEA5B633F10D23BD02BE10E6D5560 /* cbc.c */, - 79D5FE1212EB83F0F52F770F9C87E246 /* cbs.c */, - 932171988474973CF95276969F1F42BF /* cfb.c */, - 83B857123CE3551ABE40FC141E8FBB8F /* chacha.c */, - F3033D4C7D8BADCB91EBFABAAC1A1B6C /* check.c */, - A26C730435E710CD4C66CB72B55D2CAD /* cipher.c */, - A16D56F10C5B7F24AEC0C25D843C8B3E /* cipher_extra.c */, - AEEC058B5C99283526322F770386C56A /* cmac.c */, - D9E4CA51EC76CC71DCC14DE9CC3974DF /* cmp.c */, - 64B13B5FAB3C49579B12AC88B29E51BE /* conf.c */, - E914DE0D9527194924998EFA6FCEE623 /* conf_def.h */, - 27927E7E0F16B228559681A2AA205959 /* connect.c */, - 8050FEBED1368D3C499C1BA15AEBF8E1 /* convert.c */, - 7D1251FF903F47F2D9FB1799E72C472F /* cpu_aarch64_apple.c */, - 6E887EF0262348242703FEA5B0C4F297 /* cpu_aarch64_fuchsia.c */, - D96E12830212B75832155CC8549B2DDA /* cpu_aarch64_linux.c */, - 47B804916692B6CFE6B6B4F1506A16C9 /* cpu_aarch64_openbsd.c */, - C9E035A37F58FA10D5CF67053544A588 /* cpu_aarch64_sysreg.c */, - 011C7C1D1ADD0E700A761ED69A807509 /* cpu_aarch64_win.c */, - E2F2FA5AB4D561422F913133EEAC8B46 /* cpu_arm_freebsd.c */, - DB9C28F85B9E16EAEC2C6FD14040C96D /* cpu_arm_linux.c */, - CB537A2B3D8A1EFC2409FFB0CC695BF3 /* cpu_arm_linux.h */, - 69C236FD5DF2AD9D2FB6579150B0B093 /* cpu_intel.c */, - 020B5791475B7825476834230ABF0C58 /* crypto.c */, - 41A5DA42917F4F10ADC61953D2B03336 /* ctr.c */, - 3A3474E3553A9554F6108CFF45822426 /* ctrdrbg.c */, - 68D3A7438C1992CF9EBED8A918145180 /* ctx.c */, - 34B175795896525BD2D847752F383939 /* curve25519.c */, - 38209C1FC2EF87EA43B2CE7BD2C5B387 /* curve25519_32.h */, - 74176EFC8797E5255BD3939DA4BFD2E0 /* curve25519_64.h */, - 342EDC1497BFC2DAEA536D2DEF50B0D3 /* curve25519_64_adx.c */, - 1092CCBADED9F1381639D4CA0F8DF203 /* curve25519_64_adx.h */, - BD3E252FD455E57F17525D84AE0780E4 /* curve25519_64_msvc.h */, - 9767567BEC465EC5518CD9ECFA0396D7 /* curve25519_tables.h */, - 15CD665576FA69EAD79674546734FA22 /* d1_both.cc */, - 88475B30E3A1182BC3FC1EC476EA050A /* d1_lib.cc */, - 89125DDD119BE0FF7D43870C8458C4C2 /* d1_pkt.cc */, - BC8466D4CF6F212C26336B6B2F84D2BA /* d1_srtp.cc */, - 491ACE41D3FCF43024B6A01EB4D87312 /* delocate.h */, - DF978AA0D06A95087A29D5B0C8E44E66 /* derive_key.c */, - C4AA00EE60DE5CD3B58CF22CED0E5DC5 /* des.c */, - 6BF2A54207E90FB4C3EC40E9D1660CEC /* deterministic.c */, - 5FEB4B9A51E044FD4F7EFA573DC5F309 /* dh.c */, - 01F752423C98FD2D6F7B535BBBA9391D /* dh_asn1.c */, - 4E3D2F29B22AEB5A76BE66421D2D7EDB /* digest.c */, - 64ACB3B293C309E6791CF2E33B382D7D /* digest_extra.c */, - AE1F206BD93F146348A18FEFA2AD9D62 /* digests.c */, - 5A3779D7D2CE20041DD8AF3514FD9F5C /* digestsign.c */, - E170DE80FC9A57A810D09A23977D4A9D /* div.c */, - 5FEDDE62CDC131622500059843FD14DC /* div_extra.c */, - EB99F12636EC7644C58AB333C513B6FB /* dsa.c */, - 123E43608EE4BE7216BE06D62F4286BE /* dsa_asn1.c */, - C585307E7AD431B5049797C9C6499ADF /* dtls_method.cc */, - 8172E0292B05BC1897F7CB2360BB284A /* dtls_record.cc */, - 3F295BB9CE1CC20543E81986D7E000D9 /* e_aes.c */, - 3E8FB091A06DC2F35A85EC3338451D94 /* e_aesccm.c */, - 3DE57794754EE12AD59F794DE148DBB1 /* e_aesctrhmac.c */, - 70A2D7C6F0C80068ABF84BFE596C73EF /* e_aesgcmsiv.c */, - 8CB2A81B987A2431D7A3CA58309098C4 /* e_chacha20poly1305.c */, - EC7954EBDC0B400A492C5C533FFF7A18 /* e_des.c */, - F7935E212CFCAB7A2FC4C8E3AD32CAEB /* e_null.c */, - B1BF08162129789B1D2F668A1062877B /* e_rc2.c */, - 476680B32A51B2F34A384D90C2D71C8A /* e_rc4.c */, - 2AAAA6B30B2C693F6B35BED9862DCFE7 /* e_tls.c */, - 747CCC7DCD4C7058615E6F4BC3A20CA9 /* ec.c */, - F57CB85BAD1F84BE859E953CAD787D3A /* ec_asn1.c */, - 40027A3D23A2145C79DC4116FBFA9FDD /* ec_derive.c */, - 73F0BEDDAF3B410D7B8F4AA9545C8ECD /* ec_key.c */, - BABDF221F3E19F26DC0CF590AEAD01A1 /* ec_montgomery.c */, - 57219C864CE0804FA7C4156138A9556A /* ecdh.c */, - F4A34B8B9A73B886C1E350084A4A3FD0 /* ecdh_extra.c */, - 9B4C52E628ED143ED923780D4D8D46E3 /* ecdsa.c */, - 05A1949D89E9D3DE0FC77F6929238DE0 /* ecdsa_asn1.c */, - CA8C9158B9179EA8D5891E5BC0C8CBF4 /* encrypted_client_hello.cc */, - 8B231395AB18255A2E6529CF6C8FB00D /* engine.c */, - 22DB72CB33E68909BEAD45075FA43F36 /* err.c */, - CFD799E503F72BE0729177C88CE584CD /* err_data.c */, - A21595FCC0F8B44453EA5B11553559D6 /* errno.c */, - 54CC412E0B97C216DB86D2B27938F4E0 /* evp.c */, - 0A28D2B916BA8AC8431B477AFC512016 /* evp_asn1.c */, - 650B32B278E98AA1EC0666EF2CF43C16 /* evp_ctx.c */, - 43C4F85BEC42EE626891348BD0BEF690 /* ex_data.c */, - A496B4BAC0E4E3C2E00D5653AA23D685 /* exponentiation.c */, - CAB8D853612A0DB63DD4CD996E83FFE9 /* ext_dat.h */, - F97BEBCEF041CDE29683E1D63BB1E217 /* extensions.cc */, - BCB44B6F88E1A9CBC21CFE59F54D67BD /* f_int.c */, - 6B0E0E03CECFBBACBEA8BA51C4771FBF /* f_string.c */, - FACCA73A21F698DDB49F22A7A7F9004D /* fd.c */, - 7039C785927D38D9F7D00DB8BC077588 /* felem.c */, - 9585827E8F6FBEA46CEA44F3E100BDEA /* file.c */, - DB64E6D145FA402BB4CB5A31789ECDD2 /* fips.c */, - 5623B06A4EDC26221E89232A0D8FB8F5 /* fips_shared_support.c */, - EA4C0708C24276B87CB9CA08ABDDC5AC /* fork_detect.c */, - F5E0141B5338DA4E7E182FFCD1783F22 /* fork_detect.h */, - 6DBE64BD16AD44499BCD197F4E75BC85 /* forkunsafe.c */, - 0576077D5CF567B8A76E848449A409B9 /* fors.c */, - 1797F21634F70AC2464C57050CA5CF52 /* fors.h */, - 0EB9CA7A8931FB99B91B6DFAD92945D9 /* gcd.c */, - A052D55197E3539A78A73B4CC6633AB8 /* gcd_extra.c */, - BAAF37D625AA0C9D73C74B2C43D061AE /* gcm.c */, - 87CA6D148D620F53BF6955CAB694A9C1 /* gcm_nohw.c */, - 6EB99588AB7781AA3499FC348C11A341 /* generic.c */, - 15EC208DC675464D9933B0FC4983524B /* getentropy.c */, - A020ADF93B391914809484729DBD2769 /* getrandom_fillin.h */, - C0EB179AC98D0078EF4330CEF6B927D9 /* handoff.cc */, - EA1253F3C8808E22E519FDC053FA9464 /* handshake.cc */, - D4F8E4BC2426CC0AA8478E89F8AE468D /* handshake_client.cc */, - 532C1CB41082AFE90005245EB3A046F8 /* handshake_server.cc */, - F96BA99EBC5996E8EB99DD599810887E /* hash_to_curve.c */, - 704C8F3179B2E13AEF8509341B3FF9B3 /* hexdump.c */, - 0D4F5FD51C35F382DBA3015D89439EB1 /* hkdf.c */, - F0A2ED66F0E55D419D97B12892BAF2E9 /* hmac.c */, - C24F05A03B093E8D96B6C92E6983B4C7 /* hpke.c */, - CE04A798373BEC75176E7D1FDCCA00FA /* hrss.c */, - D37576FC7608079597BFC4852815AA2A /* i2d_pr.c */, - CCFD66366FD4ADAA9A668BBAC511C88D /* internal.h */, - E2D40A1A16637FE08B870E3E1DC3B1F3 /* internal.h */, - 4190C111896418697CA40682B4383BA9 /* internal.h */, - D34787CE3E5EC4DEE24AF365FBAC930E /* internal.h */, - D6005FA3740E47FD53677C3EE6C177F4 /* internal.h */, - 37C36A2EB5A02478D60CC424D10E45F5 /* internal.h */, - 14B3CDC72ABBF386974A7952F8243DE6 /* internal.h */, - 6E2F2D49D79E1DE69800C84447BE69E8 /* internal.h */, - AAE65AF25515E97B47AF3638F6BDEB23 /* internal.h */, - 3CA967BF479E9A39BB40F0D6A7CA8BBD /* internal.h */, - 0619052C91940B939D3D649168F21388 /* internal.h */, - 0B6D0DFF352114DC0B0C28ACF2CDBDE9 /* internal.h */, - 3F488C77C85C1FC19FA2EB67E4AB1CFB /* internal.h */, - 76D0689D15775B592D106AD580953C4C /* internal.h */, - 97278EA56DC568539320DC45D4735326 /* internal.h */, - FCE381E3CE33802715B65A67B1572137 /* internal.h */, - A33D82D64ACBA6E825512F1BB1E67AB8 /* internal.h */, - F41B63D8617D03EA68F2F22FF7759A2B /* internal.h */, - EB94B717377CC1366DA46A6B02E66074 /* internal.h */, - 96D06C32649D374D4A5DD56AE535AA7A /* internal.h */, - 1ED71A0C3595E6ACC8811991BA00F1D2 /* internal.h */, - 576B73EAC7D5EFBADD55DD0574146E92 /* internal.h */, - C4C324721AD34CBA506C50F5B58337EB /* internal.h */, - 41B4C2551DD7DE706587B2CE363EA503 /* internal.h */, - 4858467CEDBE2B1316B0CAAFB5A3A04A /* internal.h */, - A76578DA18542DD873F446677E6FC26E /* internal.h */, - 6D059841F5C4BD6EE2037DEEF318DA95 /* internal.h */, - D31B30E15A3DB3C61CB15B20AE0F19EC /* internal.h */, - 930A48BA362DB99CACD317A972F85185 /* internal.h */, - 08CE8E4B2CDF664E40FF245F34E0F716 /* internal.h */, - 9C233C387BEC4584B732401F25B53513 /* internal.h */, - 30B4CD7C67E3C223657DBB6C5404445E /* internal.h */, - CCF28902184B3DE8CE38324C7B8E093A /* internal.h */, - 158B4C46D8FB1F0A3CD12B7EEEB92DB9 /* internal.h */, - 10F8DAB13CE3C5A3C5CC3C2E67BA876D /* internal.h */, - 550CCBFBD6EBE331F60E57A4B6A6208B /* internal.h */, - D1656F9E0EA7130C86BD001BDAC3F96B /* internal.h */, - 88D766291ED4080DBAD9158A4068397C /* internal.h */, - 720990B293DCEAA3FB8A81FB3E3F4DA2 /* internal.h */, - FDDD746993DBFB96A3C5B9E951A0D448 /* internal.h */, - 5125A58DCD2E83F8110EE714E7B78CD4 /* ios.c */, - 5F7E761329028A673283FDBD342F61E4 /* jacobi.c */, - 2CE0FF7E077B725803EBA156FE40D621 /* kdf.c */, - 3513C10D08F2D3C36C9EE5FF330116E6 /* keccak.c */, - C91DFB2A46C3063B7CDDE38702F1498C /* key_wrap.c */, - D5F83C5923AA7E3D80E9640864FD5F1D /* kyber.c */, - 86B54DE1981D5C1740D09C8E578B29FF /* lhash.c */, - C6918F11A288B77C93095EC1C2F84B23 /* md32_common.h */, - A2E769BA49E88961ECDE47D88A7E69CA /* md4.c */, - B147BC8F2062C8D65F2F866A2E44EB92 /* md5.c */, - 6AF76BC7EA47FB3EC4BC8C3488952B00 /* mem.c */, - 9334412C33923B5F9305141595F1C34F /* merkle.c */, - B53B60727CA739D5076A8C0D59EA142A /* merkle.h */, - E32DCCF20B1B99D4E2220D9FF791B1E3 /* mode_wrappers.c */, - 15C1A487B00747A031A320769E29550D /* montgomery.c */, - B066C6C9177DFDB76F552DD31627279F /* montgomery_inv.c */, - 48C5B2306E604A0F7919AA7891A85B08 /* mul.c */, - B2670F48828D3BC8B0E815CBDE2DB3FA /* name_print.c */, - 2039A4990EECCEFCE53AAD3041692D71 /* obj.c */, - 5AFDA4F2656B3C6EC2B87DF8BB5C4BEA /* obj_dat.h */, - 60046A7DBFAF1D73778B7BABBBF8922E /* obj_xref.c */, - DEE0E340719971AB8352F71A454470B1 /* oct.c */, - EAE7BDB67D5F4B0984AAD04B0396FC34 /* ofb.c */, - 22123E72E91C952F1F45CE87E9BBAB92 /* p224-64.c */, - CEDFB42BB6C2E136F6BEA743B900CAF5 /* p256.c */, - 69D7FE8266F812707BCD50A1B3DB7E72 /* p256-nistz.c */, - 6A2D4E339BC4234B7A040AFAA8B0A758 /* p256-nistz.h */, - BF0A63226F2EEF6FDE8193BB2C443076 /* p256-nistz-table.h */, - 85BC386546AF7DD29EA582A3FC13832F /* p256_32.h */, - 2DA5D9A66210D7C3F5F3EEBB207EAEE1 /* p256_64.h */, - 0133C914A92F7F71AD03098BFB501D40 /* p256_64_msvc.h */, - 7DB9CF7695B65BD4C7B432F0CD635F0E /* p256_table.h */, - 78E356E04537EFB863905B3734296FAF /* p5_pbev2.c */, - A2C2E31ED1586A8DCF32F1E90E5442CE /* p_dsa_asn1.c */, - 346FD7B455ADD25A4567DF91C5082011 /* p_ec.c */, - 1E3EB439D3516FB855ECA8BFAE2BC7A8 /* p_ec_asn1.c */, - D639C5EAE7949D2BA8C5D98A955711CE /* p_ed25519.c */, - F0D439E14E76F41FACB3B0E8B5962178 /* p_ed25519_asn1.c */, - 45A6C9670B67969A187F6C51F7D8811F /* p_hkdf.c */, - 59C594EB03B8FBDB303CCF2FEF28C6B5 /* p_rsa.c */, - 889843C733F18FF1A18FC2BA6BA2F790 /* p_rsa_asn1.c */, - 30EAB430BD33A00130609AB844A804BA /* p_x25519.c */, - F925EB4F5D79409E721CFBA5ECE67F64 /* p_x25519_asn1.c */, - ABD84845D8A0EEDF18B9FEF09E745FFE /* padding.c */, - E14682591BB46F02503A2EE327446083 /* pair.c */, - AE4EDD599AF79A7B6FA3B5B64C2A2914 /* params.c */, - D2C263261239CCFDC4B3BA10C4423767 /* params.h */, - 2674071F8CEF25C7C9395B07678334AF /* passive.c */, - A22F7947B101D362448812554A639FA0 /* pbkdf.c */, - 80396FF0BF85271F1F0ADE84805BA235 /* pem_all.c */, - 6493C8FB704DB851C08D93A635ED0B36 /* pem_info.c */, - C0D9BE8D436FCEC974FDEA660A5506D3 /* pem_lib.c */, - F29CE3A89222D7B7BF6CBBD6736DFB57 /* pem_oth.c */, - DD4CB51F7B2F26C53ECE572D193CC324 /* pem_pk8.c */, - 4438EF6185365E9F0BF79A1E7166B47B /* pem_pkey.c */, - 908202D55C963B79920D7557DA291BD9 /* pem_x509.c */, - CAF1125A760F02794A400E0C5C07A1B9 /* pem_xaux.c */, - 5A07975C595DE74393B9FD318D9A6C07 /* pkcs7.c */, - 84F306197C835F480D5349792CE0C426 /* pkcs7_x509.c */, - A96CB6983BCE6F00AFF6EA9D7833A05D /* pkcs8.c */, - B06666DF1F14DD98B59924FA59FD9113 /* pkcs8_x509.c */, - 27B02BF9D9C2B97021E950C35D5A1452 /* pmbtoken.c */, - DD0B5C1B0AB5B76E8B9308F6B66241C7 /* policy.c */, - 1C87E050192AE6D2B706422BE3552F48 /* poly1305.c */, - D7487704062C461F26E3B9F0572CAB9D /* poly1305_arm.c */, - 0373CD8B488CFE88CB7138ADDDDDB854 /* poly1305_vec.c */, - 39995D44F97EA9746E5346D6BF637910 /* polyval.c */, - F3BB762B958A8D439F252FD2AC8EDA7B /* pool.c */, - 52A8B91E9A9704653E4581A22F5EEE85 /* posix_time.c */, - 1B744B4C1062998DD8ABF8A3D92C51F5 /* prime.c */, - 01CE3ED016EC661DEC52F44FD61481B4 /* print.c */, - 0C9A8A063C81EBBBB51D08FE446233DE /* printf.c */, - B370D65D7C04922AF4979722B0D4820D /* rand.c */, - 5815FAD03F2E911F058529FEF856262B /* rand_extra.c */, - 9BC809DD1FD6A1212AABF433A544693C /* random.c */, - 7FCE710FF53A3231892F92841B5D2980 /* rc4.c */, - 2F313D31660106ED75D753131C795BCD /* refcount.c */, - AE17B84D968AF86C253DDAFBEDBE055E /* rsa.c */, - 6B3BCFDD6AB64B8F5BE9E9D57BA3927B /* rsa_asn1.c */, - EC6EEE58D8BF297DA9F08E57CBFEAD9F /* rsa_crypt.c */, - 3657E5765FE50ED544168062BAC9A9EC /* rsa_impl.c */, - 91825CD2F44B0D191BB589FE81D99A3C /* rsa_print.c */, - B63B07D2C4640022852C0F751C72B1D0 /* rsa_pss.c */, - 5E08493A3F0510873B09A764F56F88A3 /* rsaz_exp.c */, - BA3238D7277EE5A3144781EB139AE850 /* rsaz_exp.h */, - E7E223C61A74AF0204ABD50FA142C086 /* s3_both.cc */, - D994AECDF2F721A8D73C4B221D28FADA /* s3_lib.cc */, - 6D1D72EBC128AFA77E48A71E1D43A5C9 /* s3_pkt.cc */, - C2AE611B64D63D65987590265E5C9D64 /* scalar.c */, - 18B92839692D8C8573E34D97F502F83C /* scrypt.c */, - 56FFB5EB474A61D5275EC6FC48FFDB6F /* self_check.c */, - DF9C520F59788069A09789BCB8117D9A /* service_indicator.c */, - 787332266166A4E1D128604DA65EC195 /* sha1.c */, - D001FC5FC54190835D47F85A15807E1D /* sha256.c */, - 95C161A577886DAA3AF5E494BF278046 /* sha512.c */, - 408F897A312B2EA58C707C7974AE173C /* shift.c */, - 83079BF11AF2BE4BB2B045784AC1B655 /* sign.c */, - B93736FBF978B657C4DE3B5FF78EB843 /* simple.c */, - 16468FB3A02189A66B735CE5FB8B5924 /* simple_mul.c */, - DCF8441543F763A93D9A5322FF59717D /* siphash.c */, - B53A1D64F3396C7423A80824D6A841BB /* socket.c */, - EF6A57876AB7AD2D5B090FA5E637114F /* socket_helper.c */, - 293AA3E22649FFE1F7A6B3E94EF36BEB /* spake25519.c */, - 4B9913FAC52B2B88456FE46D043E83AB /* spx.c */, - 0D096C76DEA842A5178132ED27BB4C66 /* spx_util.c */, - 319C9A4FA4B28FE78C7617331F891726 /* spx_util.h */, - EDAF5FA720321D107F9AD4C5B6A868DE /* sqrt.c */, - 7F5EEFA0966523A0B516EB48B275B85B /* ssl_aead_ctx.cc */, - 930041BC4D8CE62F91BFFD41FC7A5E1F /* ssl_asn1.cc */, - 1ADAD8119E10A19BF3A1862FDA4956D4 /* ssl_buffer.cc */, - EF8AA48265ED8CA1F49C4CBEE9116372 /* ssl_cert.cc */, - 85863E9063D5A2ED9935B938EEBE1298 /* ssl_cipher.cc */, - 982A9AD460EB83AA4B01B8EB17BD7771 /* ssl_file.cc */, - 7C93B8889B1EBD80E24D17AC9EB5AA1B /* ssl_key_share.cc */, - 6B1221A87B06C40AC2F7C4FC41A4EE61 /* ssl_lib.cc */, - FD99E0603B1B6EC1453F32B9AC617705 /* ssl_privkey.cc */, - 4859F854E973BCDD9FFB2CE1D3AD7E69 /* ssl_session.cc */, - B6155A3F627FE414F539B899A33C99F3 /* ssl_stat.cc */, - E8BD465C7E45C388393356042FEB59AB /* ssl_transcript.cc */, - 90B488376D0A2761F90A5AE80D003589 /* ssl_versions.cc */, - 2F26278F2A13D9F0BD26B30FE2069B7D /* ssl_x509.cc */, - 7BC6BC6826400E86E886E64F86FF6C06 /* stack.c */, - 8CA8E057DAF25B87BBD524AC71447E45 /* t1_enc.cc */, - 85B0DE5999CCE6D6F4C53F997BA3E38D /* t_crl.c */, - B879DFE8CF2C6BE7B5B44C431BD20981 /* t_req.c */, - 5089E56C920D72572AE1E6BDD4DBC418 /* t_x509.c */, - 228857644EF34E6CFFDCDFE81FEC9F6D /* t_x509a.c */, - 93FB7D0A827F74FCB07A2AEE5CC3195A /* tasn_dec.c */, - 9D114B42C57477DD4AD2A9780CD30976 /* tasn_enc.c */, - 0A0F2D53BF2F92DE065DD815132EBE70 /* tasn_fre.c */, - 872EACA1595161C2B7F7A1E4C212D68E /* tasn_new.c */, - 94F5BFD988E49E321C7427532DAD7BE5 /* tasn_typ.c */, - 284CD913B42BC19548BBF62F11D9FD8C /* tasn_utl.c */, - 98FC7B2356B924F6BD0A16FD5BE7536D /* thash.c */, - F074BD62076EF7EC5C0F454BC691EC8B /* thash.h */, - C04F1A564DFA3EC956C17787811AB427 /* thread.c */, - 3A55C25A2F00018CDF8DBED24A196F78 /* thread_none.c */, - 98B1E05C12FD5E0321FEAE2C375DFBC2 /* thread_pthread.c */, - DFE149692A91C8CC5A0E81BEB7221484 /* thread_win.c */, - 1404266CD277BC508150DCAEB1628617 /* tls13_both.cc */, - 4A710F23FFA1903844BB84E7C104D208 /* tls13_client.cc */, - D3D544C8812675ADB181FD1FF97C0251 /* tls13_enc.cc */, - 14A0064000565EF4278A230F64BA54C1 /* tls13_server.cc */, - FF090CAEFB6D3BE5D29C9996532E89F7 /* tls_cbc.c */, - B8F1AE10D29F73FE99C8B4AA0998DFBB /* tls_method.cc */, - BC4D272401FCBA26F53BCDF7DE571463 /* tls_record.cc */, - D53037559E49EE93918B7E3624D00DBC /* trust_token.c */, - 995E26ABE41E4D8123EB84A959C94E7D /* trusty.c */, - CDDAC9D44615E8E6FCDB62B361DD268D /* unicode.c */, - 6BD5DAC38E85AA3701E93FFDA9EDFF12 /* urandom.c */, - 15F8E8B4545CCF65CB978AD2BA66BE6B /* util.c */, - 8CD8E002B5F1EC4242D04E99BC06BEB6 /* v3_akey.c */, - 9208008E4D5CFFF4FFF21A2D43BCAE3C /* v3_akeya.c */, - D4C306DCCC148AB275F79448FBEBFC9E /* v3_alt.c */, - E9B92F70BB03414F3C1F6317C95C9C5C /* v3_bcons.c */, - D7E837412B9B5280E47F78B5FA7999DC /* v3_bitst.c */, - DB8F4E6CF4BE9C6453EB552FCD81B8D7 /* v3_conf.c */, - BE6DC61165256E70946269D20C560E6E /* v3_cpols.c */, - 305A998C95A7D3441B4B4EF9EB6D9AD4 /* v3_crld.c */, - 8C13D48224FE8D01C7ECD8AB11AF982B /* v3_enum.c */, - 3FF9C09A86715BC07D4E7BBE3F222098 /* v3_extku.c */, - F542D6071E44736DA1954BCFFA599565 /* v3_genn.c */, - BFE58016C7653BCE59599949EF685280 /* v3_ia5.c */, - 69D8952A1C95830A85712A8B279C8B74 /* v3_info.c */, - 316D99FD3A62BA99245F115D6582C569 /* v3_int.c */, - A055B0758BF31037229CA728F6323A9B /* v3_lib.c */, - 98E382C8400749C05DE2A7EA46F46C87 /* v3_ncons.c */, - B4BA5BDC81911C99602143D0582AA47C /* v3_ocsp.c */, - 8BCC5DA45182727B05845450D619BE13 /* v3_pcons.c */, - D5CE965264C63C50595AB576193FF81D /* v3_pmaps.c */, - 4C5C54AC33E2E1780B73178C289492D3 /* v3_prn.c */, - 0863F11F2B67BC00FEE850B989465C69 /* v3_purp.c */, - A5D336D03823A075C1269BA21331476C /* v3_skey.c */, - A996C503692004A24CDE9DEB88BA1A06 /* v3_utl.c */, - A8A239BB4D029E152C87236DABCE8D96 /* voprf.c */, - A5D78A12FF458B4256671B20567E1741 /* windows.c */, - 2AC9CF5ADEF3646F11121258357436A4 /* wnaf.c */, - F4980AD37ABD0CA1787C9329EC2EF1E5 /* wots.c */, - 32947AF78BAF6898A12D50DCBCFBC211 /* wots.h */, - 9D77403F573C04D1FAFABC09E206BA71 /* x509.c */, - 8F7D855654CB830C2818788FC9B1DFE6 /* x509_att.c */, - E5237AD428418E060CBF95F12CC24F5A /* x509_cmp.c */, - 7F92A88A6564CDBA2D4034F9AE0E5F19 /* x509_d2.c */, - 3FF94CDD8D99E94C616357087375F0A6 /* x509_def.c */, - 7C5BF6354889355A89F9E207F0EED682 /* x509_ext.c */, - E438820C6D52231CDC7A286BE35D989B /* x509_lu.c */, - ADBCD08925735E31B400A6264B07A6EF /* x509_obj.c */, - 2481A3CB14D0436BBED2326A9AE07492 /* x509_req.c */, - A3957DC8A3A9269B0894E8849F2F3478 /* x509_set.c */, - 5E0BAE6145CA19ECCBB6E1975F52A0EA /* x509_trs.c */, - D8BE91B60E6169CA0E0736C630746A64 /* x509_txt.c */, - DA409C85BE624D2FE8FC85180348606B /* x509_v3.c */, - DB2DFF9874469505C0DBA26FCD1D8071 /* x509_vfy.c */, - DC33F6E9AF1B0308309FE5DBDDB3619D /* x509_vpm.c */, - 5707429E42CC2CFBDCF9AA279B357896 /* x509cset.c */, - 10D6DFE5835AEF491ABE20DFD7E5043F /* x509name.c */, - D633208ED18462CD1DEAB7634DC34B08 /* x509rset.c */, - 9524A473FCF277BC6952F5DA1E777D39 /* x509spki.c */, - 1EFB1734A535BCE10BE0F8A34D8A3331 /* x86_64-gcc.c */, - 7343BB0FC4A3961176E2607634F6A7D2 /* x_algor.c */, - E8A8198B1FCE5866D07C533FA978E9F0 /* x_all.c */, - 89225BDF4B49FFFC1B32B26E5676CF13 /* x_attrib.c */, - 3BD882540628B9FD13CF7B92737AEAAD /* x_crl.c */, - 30221A4E36E3CA0FD8D0754D5E01D350 /* x_exten.c */, - 1ABD7573C3946D960B1487DBDA5C8B4B /* x_name.c */, - 431ED3E3ED2FFCFA021ED46167BC5AC7 /* x_pubkey.c */, - E0C98D273184325905E1BCB4CFB10E9E /* x_req.c */, - CB060A9401770D78AE99D19F78E462B8 /* x_sig.c */, - 7BFF47091CCE6995354DE8C1321E1D9B /* x_spki.c */, - 2503E871F153EADC4B02D39E0499D7B5 /* x_val.c */, - 87FF84D1414980F1FBA71D99C3F43C94 /* x_x509.c */, - 64FB65EB344C6A961F74159F26002913 /* x_x509a.c */, - 8EBC4AFB07C931486769EAF393EA0561 /* Resources */, - ); - name = Implementation; - sourceTree = ""; - }; - 60521C329119ED268F68E777FB3A880F /* traits */ = { - isa = PBXGroup; - children = ( - 011D2D4DDCA3019C20F784784CCFA356 /* traits.h */, - ); - name = traits; - sourceTree = ""; - }; - 60F45BED43CCB82C8485123275D451C1 /* Implementation */ = { - isa = PBXGroup; - children = ( - 596871A81894B7D0E061C4DFFC09A7B0 /* accesslog.upb.h */, - EC33F6C69806CDC2D06AFCCB46E1302C /* accesslog.upb.h */, - FC281F5D14A3758FB257539BEC91983E /* accesslog.upb_minitable.h */, - 46B6E5743008445CF6B683722EA5C6EB /* accesslog.upb_minitable.h */, - F27CE6B17789B9906604A2313469DB46 /* accesslog.upbdefs.h */, - 43AE7DB7D5AB9477FBD3ED31C866BD41 /* accesslog.upbdefs.h */, - 064ADADF8BF25B35C62A1D77F32C3DFC /* accessors.h */, - 7A31836D90E2EE5D9E47CE4AC2D252E2 /* accessors.h */, - 6A9EA9BA889DBC17CE842E105EA1411C /* activity.h */, - C7BC8510A195B2F5B0B92A42867BA859 /* address.upb.h */, - EF549E857D33F1BC3659E1353006A6E9 /* address.upb_minitable.h */, - B301C71439E619547A869FD4EF8C46C5 /* address.upbdefs.h */, - 510A582E5F246F26A1E4389151F2EFCD /* address_filtering.h */, - 35781A79E80F6BBA410DE8627E634EF1 /* ads.upb.h */, - 32FF8DAAC8C433840DC1923D64F528B7 /* ads.upb_minitable.h */, - FA55054C90A3DDEF6F8F6FA4E1711290 /* ads.upbdefs.h */, - B8A2154B8378D0D84ADF1C0C42E34B60 /* alarm.cc */, - 607CAA4E0E074F78849083A01F106CA0 /* all_ok.h */, - 6FF85DFCB01E03246F176424A2CDB9A1 /* alloc.h */, - F2D0FCDD46A69F23644603D55B2D7545 /* alloc.h */, - 59567B37CDD79AFCD4D50D261B592FC1 /* alpn.h */, - E82CE32763DF6059CAED4F3754135B26 /* alts_counter.h */, - 80EA0DE0BCBFB0415B735D9F59AB8E43 /* alts_credentials.h */, - B832EBBFE9B638340EECD1E3DEF6D0C5 /* alts_crypter.h */, - A12E517EC84F573B01F2EA4BB568B565 /* alts_frame_protector.h */, - DD1999DF8AF105D553FDDE8D78048DCC /* alts_grpc_integrity_only_record_protocol.h */, - 33E32CE2E46FAFF3CC2C0FCE8C76F9E0 /* alts_grpc_privacy_integrity_record_protocol.h */, - A9B32594FF0F397FB09967C06EDEA493 /* alts_grpc_record_protocol.h */, - 0326A1D3B2F48B97C7D37A4E06E2E1C8 /* alts_grpc_record_protocol_common.h */, - 9248F2A6BCCEE8028302281C51F3317C /* alts_handshaker_client.h */, - B8D959EEC5E7C9FC70BC75BE42EAAFB6 /* alts_iovec_record_protocol.h */, - E467AAA73A01DADA494B175229EF6B41 /* alts_record_protocol_crypter_common.h */, - F6BA093AE1072223EDF8CF10780596CF /* alts_security_connector.h */, - E0D7FC2BAAD7FAF98E860412A3042837 /* alts_shared_resource.h */, - DB93866588EDA352FB85C85A1287FA7E /* alts_tsi_handshaker.h */, - 7457123E7D8527A87BABB886D345CC52 /* alts_tsi_handshaker_private.h */, - 62B2C9A74DD0EC6272231753BE1D5251 /* alts_tsi_utils.h */, - 9530D53BCEE8C160EA57F0B7C79B5F8E /* alts_zero_copy_grpc_protector.h */, - 7BA0C9ECD27C268A7F8EDFDEF0C6E104 /* altscontext.upb.h */, - 3A9A2D4F9C5B4408CFBED9A06D23B714 /* altscontext.upb_minitable.h */, - 9AFCA097D32BA82AD38BAE6CDAD9A544 /* annotations.upb.h */, - 19A237AED07CC23A1F800A371068DF05 /* annotations.upb_minitable.h */, - 223BF053A32707A6F84F0650343ACC52 /* annotations.upbdefs.h */, - 62F28224FD5D5627C9A6727494EE00CB /* any.upb.h */, - A5DFA413BFBF731CF0569E3E494677BD /* any.upb_minitable.h */, - D61BF7976D6D1CA1581438FF62176576 /* any.upbdefs.h */, - 2359CE57FB3A76C331360B404B212E72 /* api.h */, - 099131BD6205EAB615A7671BE69045B9 /* api_listener.upb.h */, - DE7D3CBB7F034841D87009205AB611DC /* api_listener.upb_minitable.h */, - 0015B3A0C65E2E6A644C56E7BB547B98 /* api_listener.upbdefs.h */, - CE2BFA5DA10C49E4D193D714615E569D /* api_trace.h */, - B6876F418B49F4FA7DFFD224E006A7C4 /* arena.h */, - C8496FCB62F80ECA26094B1A49A54E69 /* arena.h */, - 4D016C4023C67F6BCE08A5B98D81D2B5 /* arena.h */, - 72D6A644BD7657DDE516553B99B159D2 /* arena.hpp */, - 7E4540FCB063D3F1843796B6A61F7CF7 /* arena_promise.h */, - 46DD463B0BC80D4F26519A8DB70BCA05 /* ares_resolver.h */, - 9AFE433B249C9F9554EDC97CA02434A0 /* array.h */, - E33A753E47FB73482C025898990CACC5 /* array.h */, - A8FEFA7E046AC2E279283C6B9D576ACD /* async_generic_service.cc */, - F352E68ABEA37482D8839ACC09115A35 /* atoi.h */, - F9581832439F67F58CF3A34E91B9D05B /* atomic.h */, - FC089BE5909835E906AE70D8930151B3 /* atomic_utils.h */, - 18EE827AF0F158269B882581735EAC4B /* audit_logging.h */, - EDDB53D53472AB106C5EE2542444B904 /* auth_filters.h */, - 49049DFD3C7B63E7C58E8AB879FD4E0C /* auth_property_iterator.cc */, - 777AAF2D67C0DE7495DCE4A0F1B74E0E /* authority.upb.h */, - B87DEA8F96C32D76C94AF6DDB75778C8 /* authority.upb_minitable.h */, - 6F4C9F71DDF72EFB38649203364C2E9D /* authority.upbdefs.h */, - 0ADE2BC0622143B625017F10281E650D /* authorization_engine.h */, - C038BB4467DCBA2D7F72A05FF197A4BD /* authorization_policy_provider.h */, - 9F85BD726190168AC84594C57B0DCBE1 /* avl.h */, - 4863CAD719A4359A2ADC342E14049B0E /* aws_external_account_credentials.h */, - 1FC25FDC9C397785DE6842F9FFFAF2BE /* aws_request_signer.h */, - 1BB6E91B5EDB4A51E08ECCAF1F20C1D1 /* b64.h */, - 73793FA1C770389887981763EFC40B11 /* backend_metric.h */, - D80E1FF3939A08E9D696A133435E328A /* backend_metric_data.h */, - 90D227FC4FD66372393D002D55EA59AB /* backend_metric_filter.h */, - 8EBC24457286FC80CE9F26C23CE6B9AE /* backend_metric_provider.h */, - FEFFC3A3C0F651281DCB05CE0891848A /* backend_metric_recorder.cc */, - EE83EFAE45C51FE6D74CFE526F0A401C /* backend_metric_recorder.h */, - 47B0F93AAC170D867FD8DEE2708C242D /* backoff.h */, - 735450F672E18407B4BCD3878A6593ED /* backoff.upb.h */, - 7B66DADE975874A3A38B8A996184055E /* backoff.upb_minitable.h */, - 0585B94CF1B21DD374B96ED7AF14D2C6 /* backoff.upbdefs.h */, - A7B113DCB4788AEAEB54CA0BD2E4E2F0 /* backup_poller.h */, - 23CD5AE985A157AA7563840D63B2151A /* base.upb.h */, - 4AD4A7C8AD5D0DF53E3763DAF1C546F8 /* base.upb_minitable.h */, - D23041D7B6BC2DEB1E4A9F73EE967A9E /* base.upbdefs.h */, - 52B3336DA156ED730A3F20B6EB785FFD /* base92.h */, - 1243035B194E2ACABC9418D979EFDEA0 /* basic_seq.h */, - 82D04060858C4489E664BCB8FC36FF44 /* basic_work_queue.h */, - 99DB7752FA7D58CB4C37CED6B48D1568 /* batch_builder.h */, - 88CE413EDBB75A32943B9160D9FD2456 /* bdp_estimator.h */, - 3155C8551CCEB67F27E2A259A276C7C2 /* bin_decoder.h */, - D9238DA04C8440417435DC8CB8454FE7 /* bin_encoder.h */, - 36DE5BD7F8F24AC476ED7D049B40A243 /* binder.h */, - B9390A7A7133D1CFF365869896963004 /* binder_android.cc */, - 759FE8B95FF6A61D1A0A1D3DE2AE9872 /* binder_android.h */, - DEC5D8BFB0D796A24378693E392DA59D /* binder_auto_utils.h */, - B52413AEE015A1986F76002B7A28FC10 /* binder_connector.cc */, - D21A4540798184626B9B40F6B30F0897 /* binder_connector.h */, - 3C73D4EB83AA820E77D60039B96FAB13 /* binder_constants.cc */, - 876DC05DD20E06CF575640EF4AFE2C3A /* binder_constants.h */, - C900601CD49D34C4A66BCA6D014EE095 /* binder_security_policy.cc */, - 520B358953A032D1F3D829B452983FD8 /* binder_server.cc */, - 2C22955271F4C8B2AAA4921E3DA45805 /* binder_server.h */, - 268FFD29C3249411894B8E18737CC0AE /* binder_server_credentials.cc */, - 66B3CCFD6EA9D6583E7FB73904FA305B /* binder_stream.h */, - 792651E5C12C1AAB8C91FB5C0CD3C727 /* binder_transport.cc */, - 9DB20F29D8E1A266F5C0F3782BBD476E /* binder_transport.h */, - F8B0EFF11EF5FDFAFCAA63B7271EA351 /* bitset.h */, - 994204E70EB77D424524E0058FCFA5AE /* block_annotate.h */, - 0ADAA5E1DB8979E4E6CA66F67FA5522E /* bootstrap.upb.h */, - 54EC04B63006A940542A3047AAE353C5 /* bootstrap.upb_minitable.h */, - 37975AFE65765C6DAA35506A2E20D9D7 /* bootstrap.upbdefs.h */, - EBC7DD516C2D1301FD499D56E6140217 /* buffer_list.h */, - ABCE99F0D6AEEA6EC4AD39608F997CEE /* build_enum.h */, - 6AD5DD5F94140ECAAB85DC0DFAE90E6C /* builtins.h */, - 1B168568A13963E7033CCA8DE91A415B /* byte_buffer_cc.cc */, - 722EB1158BF0A16988B08F3CF6FEF649 /* call.h */, - 1F1D48A2EA4A940A6C3CFF7D9C4B894E /* call_combiner.h */, - F4A13DC8113CD0649CE777D83E912AD0 /* call_creds_util.h */, - 4BE648E53F9A55AF9339B9985EC4CDFA /* call_factory.h */, - 843EF13431F0B75109D89CED49A02D43 /* call_filters.h */, - 7E9E1757F0C7774A4BC0E13D43A3905B /* call_final_info.h */, - B2DE43F34868D1CB0DB5565EA4E9E52B /* call_finalization.h */, - FACC69F5E008BE484AE7F0E1CF3DBD53 /* call_size_estimator.h */, - 8094DFC3A46899E473DCA84886819184 /* call_spine.h */, - 32869D974334B51884EAB22C6B79C705 /* call_test_only.h */, - ADF82B364DFA6C74FA42B2B500AFC65E /* call_trace.h */, - 20C03FA7839059434B41EC36123D4977 /* call_tracer.h */, - 8C3D0005F7CD21EC248C2E41F247B7F9 /* can_track_errors.h */, - 89846A6FA00470A1521682B1DB026E80 /* cancel_callback.h */, - 551EDF3F3D789F3E316B36ADE9E5B347 /* cel.upb.h */, - 88E1A70F2F45CE05E01C0F4622E8B60B /* cel.upb.h */, - 1CE5AB2D00BC42F6F6314E060A612B2C /* cel.upb_minitable.h */, - 50B7F551549B2AEF68F94901ED208ED3 /* cel.upb_minitable.h */, - 03D2374B34A1A33F62E2B32152BAC396 /* cel.upbdefs.h */, - EB96E55E21CF757A3A266919047B79ED /* cel.upbdefs.h */, - 9414CBCFBF80441730354A9235CE0CA2 /* cert.upb.h */, - D2D738C8BFAA82728ABDEE46507B53A2 /* cert.upb_minitable.h */, - C811D756A27952756B93119E0BB1B395 /* cert.upbdefs.h */, - 9732A2625BA75625D71B2B2AC2B435F3 /* certificate_provider_factory.h */, - 56996C5AB7D74CFE4000D5E1C437FE25 /* certificate_provider_registry.h */, - 02608A5BF2F4604CEA7B86FAA91B91B4 /* certificate_provider_store.h */, - C73F1E9F5635FCC7AAEED4F49F790A46 /* certs.upb.h */, - 51EA9C09FA84EF47631ED397C6C5EE92 /* certs.upb_minitable.h */, - 5B6DEE53045506C21D1A54BFEC09B706 /* certs.upbdefs.h */, - C12073903949CDF9D950C6B1CC4EA24B /* cf_engine.h */, - 204A5B18A09FF3F1CFCECBD61653A8D9 /* cfstream_endpoint.h */, - 3D5F9296C14DBFF81B04B16BA70F8103 /* cfstream_handle.h */, - 5D260EBBE32646BD3D02735A04DEED34 /* cftype_unique_ref.h */, - A7D0AC4B0CD11D6DD88E78AEAD7B974B /* channel.h */, - C0D9FB45BFBD628C64E9D8D6D1A6831A /* channel_args.h */, - 6306681AD6976A24015AA25D5CFD9665 /* channel_args_endpoint_config.h */, - 63E7389081392986B9A983813C96642D /* channel_args_preconditioning.h */, - 1E5392809BAFE8E75DC203D2CA27C6D8 /* channel_argument_option.cc */, - 74EA57AD4B5807578799FDECE437BCF6 /* channel_arguments.cc */, - 9CB12A11BEFB942EEEFC5C257C6061F7 /* channel_cc.cc */, - 82A90620CAF80A06E0991CCC3B8503D1 /* channel_create.cc */, - 6FB86724F1CA0BE30F68FDF289F975B1 /* channel_create_impl.cc */, - C51027A952F55B245D7983C522D85A2A /* channel_create_impl.h */, - 44C2949859712A62B5BA7E1212AD5108 /* channel_creds_registry.h */, - BB96F74542638ADE03255F0D22F61047 /* channel_fwd.h */, - F5376881BC616F39367790627D713123 /* channel_idle_filter.h */, - 0B3A5211D60DAEF9CF488FB14FFEBE98 /* channel_init.h */, - 8C9D5F8701EA35AFB82F6748DDAB48CC /* channel_stack.h */, - DA885DA9E66CCA8F681361E9D68CABAF /* channel_stack_builder.h */, - 08963ADDE2AE3E2235C5A6607F406B90 /* channel_stack_builder_impl.h */, - EB148091F7419ADF44FC8C732666293B /* channel_stack_trace.h */, - 525D7E3D3D4DB52EE7E26852A33EB3D1 /* channel_stack_type.h */, - F6042CAE113C4981EB8B5004E0478A66 /* channel_trace.h */, - 14B82393F86944C1986FF334882CA313 /* channelz.h */, - EC2235779BC4E636A469F05F4B67571A /* channelz_registry.h */, - A297D3378BC4DFA19F8DFFE9F9362E0E /* check_gcp_environment.h */, - F8EF10C8F869DC0EB43E9384A3FFB56F /* checked.upb.h */, - 4D639BADFF8903D3D345D283B3A4BBE5 /* checked.upb_minitable.h */, - 8E70A2F25B5090AF6F56161675F3CF25 /* checked.upbdefs.h */, - CC6AE4DFFBE735486D703300C5C10B54 /* child_policy_handler.h */, - 2A81AD8E6BB5E0BB3AE8ED551ECD23E4 /* chttp2_connector.h */, - 5250C243D467FCF26BCD9437C66D4B67 /* chttp2_server.h */, - FDA34E8C8A8FD3645EE0875F4A265C4B /* chttp2_transport.h */, - AD0DD2D60E036CF04D2768655870DD4D /* chunked_vector.h */, - B2937658A84C4EA9BAAFD51052180EBD /* cidr.upb.h */, - 1B18C74F4E539C78DB9E2CA0C7F93E9C /* cidr.upb_minitable.h */, - 2A8EEE0EDFD3F779B2C02D5E13A04344 /* cidr.upbdefs.h */, - 3506714A0619609E55545B209725CAEE /* circuit_breaker.upb.h */, - DB95911FB10F4D96EEEF7663EC7A394E /* circuit_breaker.upb_minitable.h */, - C6255BC71C9567AC99FCD523E9C9E06B /* circuit_breaker.upbdefs.h */, - 066B725709D49D7394CE004D0D7610D9 /* client_authority_filter.h */, - 19964ABA08F6DF9471DA52962B44773F /* client_callback.cc */, - 090CA4031B145C1D83FEF73AD0555C8D /* client_channel_channelz.h */, - 09554B85B9BB9D3E4261E19A129ABA3B /* client_channel_factory.h */, - 44BDD25932F1FB318A5891275D79DA21 /* client_channel_filter.h */, - 06E65987F807334755555B25BD4EC745 /* client_channel_internal.h */, - C15BC6BBA4B13D028495C59B8183DF55 /* client_channel_service_config.h */, - 8EA97E014B43448A19CDA616DE37454E /* client_context.cc */, - 816D0E76672D39B73BA683528F5C6573 /* client_interceptor.cc */, - ABBA0CDDBD199E403CB1C9D8B952F0B3 /* client_load_reporting_filter.h */, - 3028B86698D2E73380CF642C444F68D5 /* client_side_weighted_round_robin.upb.h */, - 316B3FCAAE0B3AF1BFB4FAA62A1B067F /* client_side_weighted_round_robin.upb_minitable.h */, - 400E4758FA88E5BD8FF8C6FD0B82365F /* client_stats_interceptor.cc */, - 5A2DFC0E2BD9E9010DB70F09AE5301A1 /* client_stats_interceptor.h */, - 7B5F05E41DE039472CCA4A11F3BE6645 /* closure.h */, - 805300EC5BA6E61D4CEACA611464918B /* closure.h */, - 450469BC00269B6B311D8568C8160385 /* cluster.upb.h */, - 2285CC684E259ED8843E937053F54C0F /* cluster.upb.h */, - 5FC6312697F519FFEF2FC4CB61C4E170 /* cluster.upb_minitable.h */, - A883DE7BAFB692AF3A1014C7C0B1E0EE /* cluster.upb_minitable.h */, - 416D757DB3A6C784775D66646C54DAB4 /* cluster.upbdefs.h */, - 3F7B79FF6039EF2E8F913007C8531966 /* cluster.upbdefs.h */, - E4CAC3B87755E5519961792D880E5EB0 /* clusters.upb.h */, - AA010FF617600E09D21D27BA7ED3B8FE /* clusters.upb_minitable.h */, - B695F3436FE543F7B7890CECEDF7D58D /* clusters.upbdefs.h */, - A9F0B52F2D4AE37E5BF3C8C7AA45C037 /* collection_entry.upb.h */, - A004F91BC985223BFD5AE59E1EE186E3 /* collection_entry.upb_minitable.h */, - D2CE4C141264DDDACAB7B96397637A7D /* collection_entry.upbdefs.h */, - E9F126D64AE0D4DF51E1293D97D882BF /* combiner.h */, - 3F02AAC8A8312352AEAAC544EF34AAF3 /* common.h */, - BAFDF37A5E735417E9FE5F6910D630D8 /* common.h */, - CF1D558CF265BA447E16972082C9E550 /* common.upb.h */, - 02370FC173FD6565B97E06DE60DAF3A9 /* common.upb.h */, - C25108AE849257D59DB306896F9F7341 /* common.upb.h */, - C34D1A594697A7519492E80E505EB6C2 /* common.upb_minitable.h */, - 057B1493136BF2D604E1110272462085 /* common.upb_minitable.h */, - 8AF8B4B37CBB5DB73ECE444258B43A01 /* common.upb_minitable.h */, - 361F7680B677C6C76B1ACAB60B6C28BF /* common.upbdefs.h */, - 886DC0DF1A3369931E7C1C9E3ED6CFBF /* common.upbdefs.h */, - 2D3076A778DE881543328D424F6F6C6C /* common_closures.h */, - 422BC350A7A010136889D10AA799CAA7 /* completion_queue.h */, - C7727E0EFE169FE5670BA681B4890264 /* completion_queue_cc.cc */, - 20ABB2EEF3A7AFDE2B5599A25A4342C8 /* completion_queue_factory.h */, - F2C652F30BC541C5FF4A2E380EC1BE7D /* composite_credentials.h */, - 159320A4725990DE64E734FB5005E364 /* compression_filter.h */, - DF47AF8B72DDC76FBC9F1C4E02983951 /* compression_internal.h */, - 646967285927192A134A69D1325DF14C /* config.h */, - B5E387CDCDD8E5A46ADF1EA0BFB2A6B0 /* config_dump.upb.h */, - 961EE1349B1C94B683BD8DB06522704A /* config_dump.upb_minitable.h */, - 1F32B0202D7BA5E13B6F6CDB085F8978 /* config_dump.upbdefs.h */, - C6866434CB12F8825030054F80D6C7D8 /* config_dump_shared.upb.h */, - B56599B8C49C23ADBDADEF383DCDBE22 /* config_dump_shared.upb_minitable.h */, - 16EBE960F061427AC986A47CE6DE34DC /* config_dump_shared.upbdefs.h */, - 9EF03DEE324CFDC0D447AAF6A6D3EC56 /* config_selector.h */, - 97925A0646CB37A270D701216C05B920 /* config_source.upb.h */, - 293A9C684DB4416A7B66B15A7D848572 /* config_source.upb_minitable.h */, - 3D8E1F8A2C966F41AE032156EEB5DB54 /* config_source.upbdefs.h */, - 9BCF232D851CFEFE0A5524BD03CE97B1 /* config_vars.h */, - D586F0CFC605E254EB03F9B125C920A7 /* connected_channel.h */, - 212B866DF19AF07C5012C56326CBAC46 /* connection_id_generator.cc */, - F28EAA9862F626FF694B8A33F35774A1 /* connection_id_generator.h */, - 45001CB3820EEBF5AC7D7D67995EBB61 /* connectivity_state.h */, - 76348806DFBEEB3A6C694308256DF53E /* connector.h */, - C14D15B4E140A571E5B153F7FC78C5BE /* constants.h */, - A2FCC0D18882EBB05A32D736011691FA /* construct_destruct.h */, - 4D1FE712602E3AAF9B54D6A9177CA687 /* context.h */, - C60EBD02DC4B04EAB5A194FCD1881FD0 /* context.h */, - F0456A529BCDE9BC38DECC656B2AF0D0 /* context_list_entry.h */, - 1FAC671866AE6A631EC03E96F185D55F /* context_params.upb.h */, - 9BA928E2FC3D26C7DDF29A33CD599EFF /* context_params.upb_minitable.h */, - 606E5C0F28DD7ECB2BBFDA894019FC9A /* context_params.upbdefs.h */, - 4BE8E737CFB4101CFEA57DD622DFECDA /* cookie.upb.h */, - C568CEAEA758D82FA8B2BD71011E8E14 /* cookie.upb.h */, - 1B69A2881C2F6934F6CE85BAE4029739 /* cookie.upb_minitable.h */, - AFB98DEAD8BEE879F834C9642D41E992 /* cookie.upb_minitable.h */, - CEF232C1F59BD57815D3684D515BDF0B /* cookie.upbdefs.h */, - DAC4DF1581F815924BF9CA44DA875F43 /* cookie.upbdefs.h */, - 0EE1AE95FD0C137A7D3EC108C64356A6 /* core_configuration.h */, - 63F190A66993AD73D3268314FF1D85F7 /* cpp_impl_of.h */, - 9F3C788730AD4E301C98EE69DE9EAC18 /* crash.h */, - 4CF2AA64FC7D27F5301816B28DED7E36 /* create_channel.cc */, - A4602BD05701B9A1D4BE341519D8E96F /* create_channel_internal.cc */, - 5B75ECC7FAFC088BE5A0E6054D265545 /* create_channel_internal.h */, - A163CCDCD2D206124B0A38356570EA09 /* create_channel_posix.cc */, - DF50CED74D60DD7380C1D1479CD40E0C /* create_default_thread_pool.cc */, - 2BD9EA1FD2FFEABB7AB03FD37E506B9E /* credentials.h */, - DC2EB2850CAB204464174A0459ED404E /* csds.upb.h */, - 427E7DA65B0D898F87326EE4DEED68E6 /* csds.upb_minitable.h */, - 5B386EB39ECA224E535492F7164C080D /* csds.upbdefs.h */, - B4AAB28F2DCEC55FAFED1B4A00631FD4 /* custom_metadata.h */, - 91FFB927E66E7D2E50FF866257919373 /* custom_tag.upb.h */, - EFD0E53D784052051AF2BE53FAF1AB44 /* custom_tag.upb_minitable.h */, - F91BD6E9A28F7FFFFDE86B52B6EEC232 /* custom_tag.upbdefs.h */, - F71D0F63AFB60BABE18B3A18391ACAAD /* datadog.upb.h */, - C3B0465EB4AD0139CE149C90B77EE9D8 /* datadog.upb_minitable.h */, - 18114A7F197EBE26F17421EE306B5731 /* datadog.upbdefs.h */, - 338AF7B3269FFA8E6D2E535054329AD9 /* deadline_filter.h */, - 002111222DD06B0B7E47C7219378342D /* debug_location.h */, - F7BFD805C03093816E4101E628B7FFFA /* decode.h */, - 59E525D8B736394E67AB1BCBB9C6A133 /* decode.h */, - AAE3D8A5040F1E8C81A2DD7C8993B558 /* decode.h */, - E6378CC56E2A6FCCD03F54631B4CC9B0 /* decode.h */, - E99110AC46DD249664A5211EF7643FF8 /* decode_fast.h */, - 64104CF882B6F7A79F0B8AA5D4C4F86E /* decode_huff.h */, - 5EA70F6F9014AD7A5694C5C59F234C9F /* decoder.h */, - 465ABBC7A794041A8BCA697471C590CF /* def.h */, - F28326479C2A67563E5108B8EBFFF629 /* def.hpp */, - 576625AFAAC0213ACAA8763C73C2B58F /* def.inc */, - AC8CE9F3DA1F55533F35D78615D252B6 /* def_builder.h */, - 2BEF65A1FA5ED0E47C890BDD1BC0D9EE /* def_pool.h */, - 3B33CAE0F4284E64DFFD59B568CB2280 /* def_pool.h */, - 386BE81FE675E1BBFB4C3381D89E328D /* def_type.h */, - 2630243A8CC9E5A439C11474299EB0D5 /* default_event_engine.h */, - 5EB205E45ABFC8FCA0893D71413829A6 /* default_event_engine_factory.h */, - 72AA78B9087ECF5D45586137FDC682F2 /* default_health_check_service.cc */, - 05CE6B2C57F4449471263737EEA57FF5 /* default_health_check_service.h */, - 4174064B37FD5F2E7BC6604177BDE1E0 /* delegating_helper.h */, - B99BE5C6D4D361D6398606E1F9539244 /* deprecation.upb.h */, - 329130D62C4DC761A4BE6DCB77EEFEA7 /* deprecation.upb_minitable.h */, - 7C98B8B79581F0A4A816C7DF9FC1F46B /* deprecation.upbdefs.h */, - D0179DAED2E93AB9AD16C3EA4BB6B6AE /* desc_state.h */, - AF333E551621E760F0FA3D0CE50A1899 /* descriptor.upb.h */, - 9D5414C7BA1712802DE6276857E39FA8 /* descriptor.upb_minitable.h */, - 5416FA1236D1C74288FF095DDD742F31 /* descriptor.upbdefs.h */, - 47F80AD5385F3B91700ACE5F70886148 /* descriptor_constants.h */, - 57ADE961A9D3C60F438B92C935ED87F7 /* directory_reader.h */, - 0B7117987C3863B46F851DDF3338A549 /* discovery.upb.h */, - BBE01F266AF7DADD778E7233772FFCDC /* discovery.upb_minitable.h */, - E234CC3BC5776A60498715C767DEC200 /* discovery.upbdefs.h */, - FBFB034D942D6AFFA7007C1F74354E36 /* dns_resolver.h */, - ED3AEC157989C69FBABD74A301A1086D /* dns_resolver_ares.h */, - C0806A278269DC9785FCDFFC38AFAA14 /* dns_resolver_plugin.h */, - 4F9DD31D44C2F344EFF104D1620863F2 /* dns_service_resolver.h */, - 37AAD9BF600CC8454D9D5FADFCA2C00A /* domain.upb.h */, - 92F99239E04B31FC6C58370CD99F94EE /* domain.upb_minitable.h */, - D286124B82F835FE28D3A47496603508 /* domain.upbdefs.h */, - 06348E15D4F46326849FA9DBACF1ABEA /* down_cast.h */, - DEEEC0433BF1386306BAB8DE91A503E4 /* dual_ref_counted.h */, - 2EA71B7B69AE32082F0CFF468E7DDA34 /* duration.upb.h */, - F681F2978E644C27A87A24A4F0B5D0C4 /* duration.upb_minitable.h */, - 760AB1E3EF12F00104FFAB0D814EFC01 /* duration.upbdefs.h */, - A9D8E488AD8ECBB44EBAF2BDEBE69C96 /* dynamic_annotations.h */, - 3D705033E1B400512C16EA03A9DF234A /* dynamic_filters.h */, - 7402DC4F03227FB0F767AEEEFCC29633 /* dynamic_ot.upb.h */, - F50FF556B755B7A4C72D38ED8314CB18 /* dynamic_ot.upb_minitable.h */, - CAE774C59DD71AE8E9FD62A5C2A05726 /* dynamic_ot.upbdefs.h */, - 2F58168BECA982741D45FA26DF8ED64F /* dynamic_thread_pool.h */, - B9F0393E5438B29ED5BF17EDA12AB0EF /* empty.upb.h */, - 486E58D52C505317D9DA124B0982D88F /* empty.upb_minitable.h */, - 619FB9E8EA788E351EA5252F0C11364B /* empty.upbdefs.h */, - 9B96A84D6567AF3DAFEA5F0D585FD7E0 /* encode.h */, - 68F6D9AF88B88F97CD21D89F93542452 /* encode.h */, - 73A99A135B7B6299E17400397D149EBF /* encode.h */, - 1F375D3660D03697E2762A691FB90299 /* encode.h */, - C9BAFF4928197B0497CF8A2BE368A5CA /* encode.hpp */, - 9EDBF1A11DA6467FCD22309D006F6134 /* endpoint.h */, - 7EF06DA41060A6A82B91BDBA1EC7F908 /* endpoint.h */, - FCB1F0C58F51B70481B2251EBBB9B75E /* endpoint.upb.h */, - CFAA31B8D8F3F7CFDDCF88ABD6FE34E9 /* endpoint.upb_minitable.h */, - CB271E0FC5F5B8F86534B7BB27969AC8 /* endpoint.upbdefs.h */, - E8B51CA5EE0C9EC5E11483B9B703CEA1 /* endpoint_addresses.h */, - FC529BEECBF3B5304BBE89D6DBF52248 /* endpoint_binder_pool.cc */, - 2AFA03F02AB27507DBFC5017477FD8C0 /* endpoint_binder_pool.h */, - 5C35C2AA702A2DF483E0F26B2F1D36C3 /* endpoint_cfstream.h */, - 13A3B15F514200A0C3103B20DBDDEFAA /* endpoint_components.upb.h */, - 3EF7B924804E8138987B5F66EB337B66 /* endpoint_components.upb_minitable.h */, - 7F12F6E61802A2B7FFA3CAC97C54F849 /* endpoint_components.upbdefs.h */, - 7642E133E72BD6830A416F9C2238A77D /* endpoint_list.h */, - FBF473848E4B0E39D09045F8B5FACA7B /* endpoint_pair.h */, - CEF986F2795224295490BD4588C5AE49 /* enum.h */, - 9DD6EF1D617CFCDD0C718506CC6FEF7D /* enum.h */, - CD048622FAF320DF935A0EC18FF0EA3C /* enum_def.h */, - DF9BCA34E54DE698FDA4E2CF26C51241 /* enum_def.h */, - F1A1CE2B12E88D83CE209416CE7519AE /* enum_reserved_range.h */, - BC6231376504776EDD4532A76C7BF58B /* enum_reserved_range.h */, - C0EC18E2ECC9049C07F6BBB45E18E18D /* enum_value_def.h */, - 803F3065AAE2833F59ACA221B6B3AD51 /* enum_value_def.h */, - 03B8270A4870CFADF5AC4DE4E1278F28 /* env.h */, - 34F9E2C0A6B306707B24DF7BD4F5B319 /* eps_copy_input_stream.h */, - 0CBA11C0248442186E1BAEFE620031E8 /* error.h */, - 5B16C75FB519B32BF42EC5C0EE71100B /* error_cfstream.h */, - 43DFBC4F50D23FB23B4E85B33D1AB548 /* error_utils.h */, - 68B6A63BC3D115EDFD3D88BAC89D449C /* ev_apple.h */, - A4AC82BEAE2F8E1F2200BE4B6FE842C1 /* ev_epoll1_linux.h */, - 6692D4742E3B3D8C6360F50603042D49 /* ev_epoll1_linux.h */, - 3ABF602B2A68B996C51A4697A74D1400 /* ev_poll_posix.h */, - 9FE9D1E799EB73C935D56EEA803D97A6 /* ev_poll_posix.h */, - 300955CA4E742DBE537D82AC315DAE2B /* ev_posix.h */, - CF3D4158E2C3CA6FDC336D905848CC22 /* evaluate_args.h */, - 0738D0D2DBF3FAFE8976B7BB9CC9D7F3 /* event_engine_client_channel_resolver.h */, - 4B276B96134FF03D1DA506D13CC612A0 /* event_log.h */, - A70BD25C21328A26461B8BFBB2BA9B36 /* event_poller.h */, - 5294276CB064C84551F162E43A41F4EE /* event_poller_posix_default.h */, - 6B5BD3BEC24B27CF14E15C25C99D0D2D /* event_service_config.upb.h */, - 36CC799104022BB5D4F40060E4C08FB0 /* event_service_config.upb_minitable.h */, - 24F0D6E9C7745B8565D13EBE4F134A26 /* event_service_config.upbdefs.h */, - A08E99ADC3971463ED36EDFEF8B4B07B /* event_string.h */, - 43CB6F558A14CCAE690A45C498CECFC2 /* examine_stack.h */, - ED3803D062079F64B1F1AD1F5B58AF2D /* exec_ctx.h */, - D8AFA201470165110654B0385209B83C /* exec_ctx_wakeup_scheduler.h */, - EE27965D7FCC1A18A7E04BFD13C46706 /* executor.h */, - F89BE8687F0505920BC07232F4612DE8 /* experiments.h */, - 0021800EE727D90A7B806CCBA93BF0EF /* extension.h */, - 4BC96290F440688833A9AAE504097BB1 /* extension.h */, - 1975375212597D88CEFD9713A6727491 /* extension.h */, - BE889FC9969BE3D0EF86761C518F1E15 /* extension.upb.h */, - 23DCA865EC9B6BA254118E99B227C0CE /* extension.upb.h */, - A0C528BB2B8142B1B7599784F60CA69B /* extension.upb_minitable.h */, - E1F62805561AB9B0E9709B248103F7EB /* extension.upb_minitable.h */, - B9A9AC36429D6FE5F37E04FFC9BC294E /* extension.upbdefs.h */, - 1F12158875D197C9FE823EA0623FA59A /* extension.upbdefs.h */, - 3632EA6E31DFE932E64ECEA3CC717CF1 /* extension_range.h */, - 26445F19C29D86B8E3042E0C087C0C6C /* extension_range.h */, - 86F7BC8A1970864443E71F04B45F3A0F /* extension_registry.h */, - 51CC75871E2D81C3671959942E99A088 /* external_account_credentials.h */, - E31F098239FD8BF3E8CF1BF1FC8A3D15 /* external_connection_acceptor_impl.cc */, - 5EA821AE1EAADBDAD65B61A542269C61 /* external_connection_acceptor_impl.h */, - 6C4E6F9792D1AF7FAF739D4FF3DC0F12 /* fake_credentials.h */, - FFB0C464E44E29F08FC8D6EAAE45A04B /* fake_resolver.h */, - 1C33B9770A48F21CDCA9C1D8AEF36187 /* fake_security_connector.h */, - 5B09556B502F7609ED5C4F3327286FFB /* fake_transport_security.h */, - 4508903E0CD8E90E2456C0B0B11F2E3C /* fault.upb.h */, - DB581C06827D37B915F6796556340A91 /* fault.upb.h */, - 76D93F0479D367602D7FA1737DEEDB39 /* fault.upb_minitable.h */, - 71BAD8EF932CEF7D33D919F12AB9DA15 /* fault.upb_minitable.h */, - 403D8D64A43E4E5C1CD0F19CFDD6AA05 /* fault.upbdefs.h */, - 2BFACF01D5166A3A9790299D15C9BFFB /* fault.upbdefs.h */, - CFBD44CC220A1BC0BEA73F0AF1282358 /* fault_injection_filter.h */, - 00BA2D12B4083EA3261EA23BB481BA57 /* fault_injection_service_config_parser.h */, - 280A08541D398152A40E2342E751F5E9 /* field.h */, - F14520324794E4C2C7B4F6180D311EB1 /* field.h */, - 9B2AADA54DD3E608FF86385740D8EC63 /* field_def.h */, - DC9B0F89CB786523B923AF344C23DF69 /* field_def.h */, - 64B783F76935504F20E497D21A13C190 /* file.h */, - 91B01E8740EEBDA5EB570C4B42AB7532 /* file.h */, - 444B335966749FB38726138EBA40D15D /* file_def.h */, - 39DAC8169FEFB7642CA9242D4F5E4CE4 /* file_def.h */, - DB4ECF2635F0FD4715A3BD39CE27157A /* file_external_account_credentials.h */, - ABF05FB07E97C1B83849AF556B87C859 /* file_watcher_certificate_provider_factory.h */, - E99E4F266EA24BC5904E50FC5BBC4E17 /* filter.upb.h */, - 37C6FCEB9CBECEFAC940899CF008BE3E /* filter.upb_minitable.h */, - 48C557AF7BF1CB5D2176A95EF700918D /* filter.upbdefs.h */, - 504544840BF8634866E9C200F8FEDFDF /* filter_state.upb.h */, - A70DB36A62A1E82E966D88A365181EA0 /* filter_state.upb_minitable.h */, - C8866AA1151878CA8B3F983C81F3BF2D /* filter_state.upbdefs.h */, - FC73E94DFFCB3C4C7BE6CCBE3DFBFD0A /* flow_control.h */, - 0577A00D3B0F2F6F1C5BBD6B2769E181 /* for_each.h */, - 3B35CC8ED7EFC19F4222AAD9512F1D89 /* fork.h */, - 85D172B924BF6172462B2D5C2DD98029 /* forkable.h */, - CEF3916D31EBC6EAA9EF6DB3FED38E32 /* format_request.h */, - C619A52FD85BD46515C74A5A00CD939D /* frame.h */, - 148D3CDDBA3D6BDCFB7E34B5483BC29B /* frame_data.h */, - C2595F47410E1895173C38E900BB0642 /* frame_goaway.h */, - FB5CDA8F44599B1283B45828F31AE472 /* frame_handler.h */, - 729297571762C5DDDBBC99D175629301 /* frame_ping.h */, - AD899BD5B8237E6163479C8380F7D16A /* frame_rst_stream.h */, - 1AAE9BBA29F0990AE5B54803236B88F4 /* frame_settings.h */, - 39FB90DF969D1636D1D318AD291FC654 /* frame_window_update.h */, - C624EFA3F41088EAE00EACB60FF1076F /* generated_code_support.h */, - 90BAE62CE723BCE1B68F51DD632C8ADF /* gethostname.h */, - 3012845835BB46D2FE3D62C6186836E5 /* global_subchannel_pool.h */, - 475759045F39CC973CC54DED35DAF5FD /* google_default_credentials.h */, - DB98EB7456A2A85B0E880556467ED50C /* grpc_alts_credentials_options.h */, - CF7986B36BEC04E26D990D9B5588B3D1 /* grpc_ares_ev_driver.h */, - BF0EC1614C31388E5CDB2395C147DBB2 /* grpc_ares_wrapper.h */, - D5E24C87B1CDBC767744A43CB0F0D24D /* grpc_authorization_engine.h */, - B7F242D76852D0ABFB929DC1A5FAADA6 /* grpc_if_nametoindex.h */, - 96088310E27B0EAB04288825FB6FDC15 /* grpc_method_list.upb.h */, - EF54BD9CCF2460EC04DCEFFCE03B1754 /* grpc_method_list.upb_minitable.h */, - 3207D56A7852BE37898F775FF3D8A1C6 /* grpc_method_list.upbdefs.h */, - 6B3DE30F51966541462222980CE1B4A0 /* grpc_polled_fd.h */, - 5ED2ACB72812D2F7EA26E66C4D15DFAC /* grpc_polled_fd_posix.h */, - 7B149B26C6F0E2EDA026E161F7DB1C64 /* grpc_polled_fd_windows.h */, - 15F27C3C371B2D0301725F8BC353B4A5 /* grpc_server_authz_filter.h */, - F4F4A0B3946208326C941D1DDC10AA0B /* grpc_service.upb.h */, - 87F510A6D696CD28CB73FBB9EC520AD3 /* grpc_service.upb_minitable.h */, - AC887B244F51694268AFEB3F0545D48D /* grpc_service.upbdefs.h */, - FD7744CA35FB672C45C0510E4C8C15D8 /* grpc_tls_certificate_distributor.h */, - 95E47DE62C1F23A8F359FF7B56738015 /* grpc_tls_certificate_provider.h */, - 3E9D61FF3949EACE0949F8423B9FA1D4 /* grpc_tls_certificate_verifier.h */, - 023E932E9549394B6AA67327690E43E6 /* grpc_tls_credentials_options.h */, - C18E15BF99BBDE85CAB8C047205A9CA3 /* grpc_tls_crl_provider.h */, - FAF9E2120FBF75CAB514C886061CBBBB /* grpclb.h */, - CCBC2B00A15F794060BFA1E09A16B346 /* grpclb_balancer_addresses.h */, - 9295D6C24A0BBD768B8A09D1C33D8431 /* grpclb_client_stats.h */, - 0A0B09C9C37C26D07E52119AB0197BC6 /* gsec.h */, - 9DC1ED9EDC359578761170A6FA3CEF84 /* handle_containers.h */, - 2D6073E521570552A997C9479C28FA3A /* handshaker.h */, - 81E0A2CE06D951259EABCA38895295CA /* handshaker.upb.h */, - DF41B1443E368F9F1F07DEA4A1680BD5 /* handshaker.upb_minitable.h */, - 3D859B5A062AB1920F2AA5ABB9CBD8D1 /* handshaker_factory.h */, - 7D7CD4BAD2A97D0309D7EE219B7F6F82 /* handshaker_registry.h */, - C03F6349BA146B9444A36F1B2A77ED50 /* hash_policy.upb.h */, - 59849FA3745D828423CB41709EE8B651 /* hash_policy.upb_minitable.h */, - 4496A35C2BD0510FCF3C465587E5E9EF /* hash_policy.upbdefs.h */, - E6FB24948A4D8D3623FA684ABE2A3EF2 /* health.upb.h */, - A9AB458C4D9667A2984515DEE690B491 /* health.upb_minitable.h */, - 04CD4160703BA01D769DEA69A4238F1A /* health_check.upb.h */, - 4A47CE4523EA1C6CB3AC7141BA0E9D11 /* health_check.upb_minitable.h */, - C348FDF926C27AE9A1898707E2929002 /* health_check.upbdefs.h */, - F8CF92AC56140F7C99E3B5E5D2421668 /* health_check_client.h */, - 91207A3ED8394275AC6CA97ED02B3D54 /* health_check_client_internal.h */, - A1172B30EA38FFB2C74BEBDDDCB5BB8F /* health_check_service.cc */, - 4D35B3942BCB336E3EB7DFC3682F915B /* health_check_service_server_builder_option.cc */, - 96D09E2D03E609ACCB2A4E16CA5569C2 /* histogram_view.h */, - 367AE3FFF3B5B73A808CD7356F9E7740 /* host_port.h */, - F25580AFE97D709780A7B2A021292734 /* hpack_constants.h */, - 779FB89D51C1A39770A69D5B60D5D0B6 /* hpack_encoder.h */, - B7C492571D73D1017039470FBC604782 /* hpack_encoder_table.h */, - 540CFC326E8518F744DF9A930D017993 /* hpack_parse_result.h */, - B76C841B027D0497AA39B01AAC696295 /* hpack_parser.h */, - 6F27A61CB671B5B3F2CBD8A92E843AA4 /* hpack_parser_table.h */, - 226917686FE46B844530C10023AEFF0A /* http.upb.h */, - 9C4E5B48E882D94BB69D26350E416866 /* http.upb.h */, - C47FE53539A219E4F16D3707F8B7B749 /* http.upb_minitable.h */, - E1E1A4A500B58E579720FD544CA53887 /* http.upb_minitable.h */, - 94D52B6728C2A28FADE6667EC7A3FE4F /* http.upbdefs.h */, - C74D6674677DF5A60E601B07911724A8 /* http.upbdefs.h */, - F37EDFAB4D2E0B90CD0F66B38AA19891 /* http2_errors.h */, - FC2C28E8FAC22DE203D9843619402081 /* http2_settings.h */, - 4D04BF7D5899CC58607D375D880CFE1A /* http_client_filter.h */, - 0179B77E575EC292242B73578555FD8F /* http_connect_handshaker.h */, - 834DCA5A1C83A912DA182C06F223E8BC /* http_connection_manager.upb.h */, - 6255881C8AB52F7E95294D7AD49A3F64 /* http_connection_manager.upb_minitable.h */, - 809BCE39C8B6AD5F6EACD1626B44AB16 /* http_connection_manager.upbdefs.h */, - 634A0F6B29123750EE8AD30B9374EF29 /* http_inputs.upb.h */, - CE85A4E0500DB7C9ABA1CFEE48EBEFE2 /* http_inputs.upb.h */, - A5A6EB36ED216E7F83594A86B2DEAEA7 /* http_inputs.upb_minitable.h */, - 2B6A95E86938C3CCE0E01448BA9A8C5A /* http_inputs.upb_minitable.h */, - 6348977877DD6A40971788DA03A70999 /* http_inputs.upbdefs.h */, - 8C4D69FAA3E1698D2B7AE0C59B070E00 /* http_inputs.upbdefs.h */, - 0BF87E2A124B4C02629642779542A621 /* http_protocol_options.upb.h */, - 00D945935FE5B90BA76DB73D7BE0D12F /* http_protocol_options.upb_minitable.h */, - 5C354A7C6C83A549B636BC98126B4E02 /* http_protocol_options.upbdefs.h */, - F12F4F732B1049BCC0761E0DFB93D97E /* http_proxy_mapper.h */, - DD2AD8FB658EBD78470127324F86A366 /* http_server_filter.h */, - F89A58CAC92FB2553634011F46A4C803 /* http_service.upb.h */, - 1E19E28CB4D8F7BB8958CB5C21800C19 /* http_service.upb_minitable.h */, - F55617C3B7C11660885C7E345921FB64 /* http_service.upbdefs.h */, - 5DE6F936F16D4AF7CC505AEA81DDB0DD /* http_status.upb.h */, - A051E430E605EBF8184F740974499337 /* http_status.upb_minitable.h */, - 1BCD73E31D5EA8A499E6D985F96CE1C6 /* http_status.upbdefs.h */, - B01CB988D7B74C259CF0001B34E8B140 /* http_trace.h */, - 941C2D84670D0815466CAF7CD7A12221 /* http_tracer.upb.h */, - 0EF0183ABC76B3DFAE0C0FBC525D8D63 /* http_tracer.upb_minitable.h */, - 367D36B5B5F7A428F816FE68F34C06C6 /* http_tracer.upbdefs.h */, - 7954AD846BC13CCE0078B774592D0812 /* http_uri.upb.h */, - 21D84C26C58981D3681C74CC2201F346 /* http_uri.upb_minitable.h */, - B4D21D691BA51E06383EE19C771D87C7 /* http_uri.upbdefs.h */, - A26D375351A72F0BE6B72CEF32619B4B /* httpbody.upb.h */, - 2AFBF4E49E7FE6E87EE84576980EDB28 /* httpbody.upb_minitable.h */, - BCD370114BDE3DF743F3F64F6A334E74 /* httpbody.upbdefs.h */, - BB9D5F7EDAC23AC46908C7A2CC1B9187 /* httpcli.h */, - D25132631F045BD2607AC219E9BC1694 /* httpcli_ssl_credentials.h */, - 75536C31D327C12A3ACC9E73B206E200 /* huffsyms.h */, - B0D2C5C0C00806766B0991291F67CF1F /* iam_credentials.h */, - 9C4D3684F554BC8D770981EB0E07C7B5 /* idle_filter_state.h */, - CAC1A1BACCE579E33672F8927136D636 /* if.h */, - F1BE8EA1E4BE29E4AE8BB7F10E99813E /* if_list.h */, - 4A3BD250065FC38900E68B2A6D8370C9 /* init.h */, - D41C5DF3FE1FF88A5868B805E7C67213 /* init_dump.upb.h */, - 3CFAE8526A4FD727D2A163741F2280BC /* init_dump.upb_minitable.h */, - 34100FD6875F6B0F22FF1F99DCA980EE /* init_dump.upbdefs.h */, - 2024F968E8DE2C54DCC25FFA52FE9C83 /* init_internally.h */, - 163BF052754DD3CF24C2D34AECC920FE /* inproc_transport.h */, - 92C36DEB15669BEE146A6810A4D23C7C /* insecure_credentials.cc */, - BD91921AFBC294590C0320D87D439530 /* insecure_credentials.h */, - F2E016B11F0B041E81596B7AFACF5402 /* insecure_security_connector.h */, - 2DC51F02CDB3827326A44E8CDF019A45 /* insecure_server_credentials.cc */, - 149A0529CDBD5AD07EE3F021D1457F64 /* int_table.h */, - 6397412FEBAB4F7B662F76397A7715A6 /* interceptor_list.h */, - B5B7ACC6F826C6F4818520D0DE533DD6 /* internal.h */, - C25B51A0C4B53577BDC21E2AD8D56E51 /* internal_errqueue.h */, - A42F03C168209B36645006F0E5A23A03 /* internal_errqueue.h */, - 0CC565DA76B1E24393702467C8724253 /* iocp.h */, - C7282473988DCD943BEB870737824236 /* iocp_windows.h */, - 0478AEC8FF31FC553417B47811316164 /* iomgr.h */, - AF3567D551D26394B659FF290349BAA6 /* iomgr_fwd.h */, - C0A7CBE4F4DAAEE70ED3AD599A860152 /* iomgr_internal.h */, - ECB0F5D380FCE2654CB49D72D600AF7C /* ip.upb.h */, - 32CD955C37FBF57D6059FFAAA85C0BAC /* ip.upb_minitable.h */, - D2679660CB39D01D955AABD441C9AA52 /* ip.upbdefs.h */, - A3DF7CE1C2A099584E53E9B5FA86C02A /* jni_utils.cc */, - F86596D72E1D41483FD703079552D969 /* jni_utils.h */, - FA6D240B644328F2FA6ECD290D874CD1 /* join_state.h */, - 93A2D06FD7B37093AFC02DF7B81FB679 /* json.h */, - E5CBAA17FC51510492CEC4FF7EDA4E6B /* json_args.h */, - 311DE58A245FE497704D084D2EC99514 /* json_channel_args.h */, - 48C836880CF27D45A8507DB4670CEC6D /* json_object_loader.h */, - 5733D582CF05AB54CF9AFA14F7771F99 /* json_reader.h */, - 6582A7298915CC7AF0E476125466391E /* json_token.h */, - 95CA2356F945F30F886053EED3D53027 /* json_util.h */, - 83D5F8EADAB4331E40230DDA8556F3FB /* json_util.h */, - E6A60726A577D8F82B8E2F38F13E8A22 /* json_writer.h */, - 773D2A43CDC789EFA46F28A62ECDDAA1 /* jwt_credentials.h */, - 476E95AF619D3E76128B98DF3BDBDAD3 /* jwt_verifier.h */, - 7C54CC2D4D2D74542D65B73AAECC8DE2 /* lame_client.h */, - 75511C0F7DC0A923114F1A5E40B39976 /* latch.h */, - D6BD9B40A624D3AB6CBDF096BC0CA2A9 /* lb_policy.h */, - F8A58956F244756D5C78E1575B741151 /* lb_policy_factory.h */, - 5632E72CC99A204206E3F97354316083 /* lb_policy_registry.h */, - A6D38E4FB67021D76521E3CC3C98061D /* legacy_channel_idle_filter.h */, - CB6B880940B27AE1554CB9B61A998EC6 /* legacy_compression_filter.h */, - 0006A7B06CB205C3AAE4F3203CC99B3A /* legacy_frame.h */, - B1EAA66CBE5438D725BA35266F95D8EF /* legacy_inproc_transport.h */, - 3217112B6747670F99C1C88A0A7D6A2F /* lightstep.upb.h */, - C0D41D7E20BD2AD96EB9F9159E7E3629 /* lightstep.upb_minitable.h */, - D659C3CA28F35BA64B8A73A0F4174DC6 /* lightstep.upbdefs.h */, - 2166B37D6904F10140F80A9B98CA92F2 /* link.h */, - 48A4E381CF9AC187A27618384EDDC74B /* listener.upb.h */, - 1D8B567A446427145E552DDE1987D6AE /* listener.upb_minitable.h */, - ED2E43968B1640944B2854F0255FD247 /* listener.upbdefs.h */, - 709F5F4E5D479CDDB0A2AF787BB0A5AA /* listener_components.upb.h */, - 219D19559EE5E46EE8DEB2B1213EF276 /* listener_components.upb_minitable.h */, - F0F8FCCDB8B21DF87268D52B6616B364 /* listener_components.upbdefs.h */, - 8E079C391F7AC4817A8FDCF9C3111252 /* listeners.upb.h */, - EC29E264879920FAA94BB9927664FDDE /* listeners.upb_minitable.h */, - C1DE5C2A6D35CB25745BFDB7A48CA438 /* listeners.upbdefs.h */, - 48B2390656BCBCADF144D787121DF157 /* load_balancer.upb.h */, - D57FCC2476F1D97C36CD2DF42FBBCF2A /* load_balancer.upb_minitable.h */, - 010E33038D703981BD9B1B3BA67113DE /* load_balancer_api.h */, - 33A9E993269AE56C8A59CEBB6A005A14 /* load_config.h */, - 20D092D9E58465768DE9A5794E297098 /* load_file.h */, - BA3C9A268887B1341C38EF19953CF38C /* load_report.upb.h */, - 6B6ADD87208E9EABEDCD423DCD278AEA /* load_report.upb_minitable.h */, - E069F621B9A559B83CC71B0567C55F3B /* load_report.upbdefs.h */, - 85C1065F1E836E6B90EDD1B515F0A0DA /* load_system_roots.h */, - 0C0838D32D479807FC6AD1C9657D95E4 /* load_system_roots_supported.h */, - 84D2B39DB713BB9C293A72DA6BECA38C /* local_credentials.h */, - 1C6D197FE7A1BB437B4F2093B87A964F /* local_security_connector.h */, - BD38318973AD176A821C2F3EE6149E5A /* local_subchannel_pool.h */, - 9164DA1EEDE7B52B1D659DEA1823860C /* local_transport_security.h */, - EFCD326E9E72F726E8EE9EC7E20CCF28 /* lockfree_event.h */, - 5C6CFE7FF67C34A127FE34AC261BD95D /* lockfree_event.h */, - F86F04B64CD41B22A97D7DDE672D4467 /* log2.h */, - FCE264E6D1F44D1A75536B0C07E31931 /* log_internal.h */, - 19385E4216E0C9F1961295E3CE55E56A /* loop.h */, - 473BF06FC9D94C0D3F80FACA43EF44D6 /* lrs.upb.h */, - 1D3635215E857462276736978F4811F6 /* lrs.upb_minitable.h */, - ABF16F31952F2A8B12F31E88EED76651 /* lrs.upbdefs.h */, - CDDB5D6BD165D5FAC7D5DDE793F674EF /* manual_constructor.h */, - 988B3CDB895DAD25658224E0DCE54A79 /* map.h */, - 041D7B4C3F3B222CCBF641A87224B386 /* map.h */, - 92506842AF23EF6772D8E44E3CFDC613 /* map.h */, - F1523A4C920EAF44535D2CBBBE35BDFD /* map_entry.h */, - 886713718FCADF8C8CC23FF2BF7EFDD1 /* map_gencode_util.h */, - 6D415A6C2F9B61D668C9E23B59933045 /* map_sorter.h */, - 5B6785212FECFF4C33286F2F1FF23C8C /* match.h */, - 9714C2AF014358C35ECA5390C08EFA0A /* matcher.upb.h */, - 677DFB0EA22CBBEE9F273A67633D6AA6 /* matcher.upb.h */, - 222B5361B20C3CC2F2DC81CB9DBDAEF2 /* matcher.upb_minitable.h */, - E288CF607F06884B9EF5A65DAF7391F3 /* matcher.upb_minitable.h */, - 4998E9C6B005849519D17619CF5DA05E /* matcher.upbdefs.h */, - 0B4216FAB27FDA8EE029FC7B688C1E78 /* matcher.upbdefs.h */, - 70EE2BE7DA42018B6F3564D3D1A98126 /* matchers.h */, - 25DE4717CD896D11903E71B9340DD714 /* matchers.h */, - 22BE5B8C964AF111A103A6CD1C0645DB /* max_concurrent_streams_policy.h */, - 66E0B51AE99AD63B6A13F50FDCDA456B /* memory.h */, - 497ACF4E1ED7F22EF93E88A828356EA3 /* memory.upb.h */, - 9D07FC1B11A6BAF447B5727B19410FAE /* memory.upb_minitable.h */, - F617FD44E3AD467C65A0DDC903F207F5 /* memory.upbdefs.h */, - D7FB426A8C3DFC11EF76C4DAA8B82DBB /* memory_allocator_factory.h */, - B20C2DD31BCCAC02D21F2C4B63E6DA9F /* memory_quota.h */, - BA78481929C898206BA67720594EC5B9 /* message.h */, - A0744F09230C6414EAC22E8C49C6B260 /* message.h */, - 8EFD1FE92210CEBB77ED2D4D91939A8A /* message.h */, - 0BFD21C400BB819BE1699D2771B54F29 /* message.h */, - 42AB9916BD6536B23EACA9E4939AF1E1 /* message.h */, - 4314E2133E06E05721C34D2DE6F8DE3F /* message.h */, - B1A920B1174F03E08228E8AAA74B9A1F /* message.hpp */, - D2176FBE839C998AECC824CD189BBC45 /* message_compress.h */, - 4E7943963A1ABB6BD689631EEBB9FB49 /* message_def.h */, - C6E54A39517DF2E951E70A3E768C6800 /* message_def.h */, - 6FF776B8EC2B81C33030358C75E2555E /* message_reserved_range.h */, - 4EC1F6AAAB906C1F20A113D2C2F95195 /* message_reserved_range.h */, - F3C8509D067FC2B7A776F7F926F73068 /* message_size_filter.h */, - 5B95126D1C097DB1144AA079B89C5475 /* metadata.h */, - CA94A9C563D450B6E0935837476E0E36 /* metadata.upb.h */, - 90DB3951B3AC8E395EE7E5936DC5796F /* metadata.upb.h */, - 6229DD42A5984CD8F71C568FB4B6C3CC /* metadata.upb_minitable.h */, - A9AE6E44D3E5F85CEEC6BFD73D8D1144 /* metadata.upb_minitable.h */, - 8DC2C376952090A2EB3BF3B33C5F1F12 /* metadata.upbdefs.h */, - C1D289F69EE14CC82115272DD58D44D1 /* metadata.upbdefs.h */, - C1F3CDD8294396447F0DD8804D68E14E /* metadata_batch.h */, - DB052CF89343201C6B80B737BAC572CB /* metadata_compression_traits.h */, - AE0ABA6C039FCBEB3CFCE9CE1D897159 /* metadata_query.h */, - 8565ABA6E0F2BF90E8068DA4F14EDCD0 /* method_def.h */, - 92DDCC6F3B9BF1D5EAC672C494C60FB1 /* method_def.h */, - 422050A9B8FC3DD6BBC1071002702FCD /* metrics.upb.h */, - D870399210F269EF8E79468B2C83EBE4 /* metrics.upb_minitable.h */, - C2E5DF80195DBAE01CD47E699E0AF3B0 /* metrics.upbdefs.h */, - D6AE22C112F54943D06BB604076B7EA5 /* metrics_service.upb.h */, - CCD084EDDDE0DA7F15AE22D2F8822EC3 /* metrics_service.upb_minitable.h */, - 559991CA990EB074C0243DDDC0A5ECED /* metrics_service.upbdefs.h */, - 479446E9C7183634DC97228A6679EAEF /* migrate.upb.h */, - 41F9033A6DBE1456C4181CA7F9F7B6ED /* migrate.upb.h */, - 2CA85C4866CCE1BF1EA1440E70E77D55 /* migrate.upb_minitable.h */, - 59821C8E6E0741D882F9D96BC5C89AFC /* migrate.upb_minitable.h */, - 92F0800D6EC34F7321887A8B957897DE /* migrate.upbdefs.h */, - 43D787E52F867D44C4B1F83691D348E0 /* migrate.upbdefs.h */, - AE47A5A1D31DBCFCF671036F3B85179E /* modifiers.h */, - F53DABA219B04C15BA666DC81704FC1E /* mpscq.h */, - 776629B8C0D860B526F246833E089BB4 /* mutex_stats.upb.h */, - FC47EF2B11739FC6648D07B7ED74C03E /* mutex_stats.upb_minitable.h */, - 1FEBB546464B83A5561581C760030843 /* mutex_stats.upbdefs.h */, - B189353CB9C3D3FB4B1E9734F31BEF48 /* nameser.h */, - C269E8B7D1B059D3155601A01F1D00D3 /* nameser.h */, - BC60FFD97DEEFB6F65CED23BED52E344 /* native_posix_dns_resolver.h */, - C1915F6A68C01E325ED7B52368994D1E /* native_windows_dns_resolver.h */, - 189D9A8B34E46284B81135E8937DC22B /* ndk_binder.cc */, - 1BF8D2A6267FAB6975A3BD3DDF64A3B4 /* ndk_binder.h */, - 90F03081A2FB31930020C49FDE51AB53 /* no_destruct.h */, - EF4AFDCEBA0F18491C1CF0338549B105 /* node.upb.h */, - BACF1B1712B2FBE05EB787E12CC07043 /* node.upb_minitable.h */, - 1894C60BD67C777DB430A9CA9A2A07C5 /* node.upbdefs.h */, - EEBB5E7F110964667A2BC5EFA32580AB /* notification.h */, - 9E25FC40708787884D496D029637CE8A /* number.upb.h */, - 8C5F0316E1207F13C99E59889B653CF1 /* number.upb_minitable.h */, - 56DC3A306CD654D2458FAB8662A5781B /* number.upbdefs.h */, - C4DA08743B49E4190F1B319B59C7EA31 /* oauth2_credentials.h */, - 657E9BC62DBEC8239793BFE7B8C1494A /* oneof_def.h */, - E7D94A4CF16D2A990078576385B327E9 /* oneof_def.h */, - 27F13B615C240933AE43DF59AF26FC6F /* oob_backend_metric.h */, - B84241F66D312631828D886F899DD954 /* oob_backend_metric_internal.h */, - 96E85054D8F704993811EBA5291733AE /* opencensus.upb.h */, - 4BDEE03624F3ABFE3C4699D9D991C403 /* opencensus.upb_minitable.h */, - EAA08ACE8BDAE2D86283E3A7C321262E /* opencensus.upbdefs.h */, - 91EBEF906384E65F4396B93106DAE030 /* opentelemetry.upb.h */, - 501E5DDCD16727063BBFDF3F0573E1FA /* opentelemetry.upb_minitable.h */, - F7A83329568B52232C0293114C57D873 /* opentelemetry.upbdefs.h */, - 895FC2487D455C64633ED2D339429314 /* orca.upb.h */, - 5EC2FE495A27F500B3C2D60C4C5A8DAD /* orca.upb_minitable.h */, - 89F8738E0C147F4E88C62DFEB4B586CB /* orca_load_report.upb.h */, - EB5CCA28FA8FC566AF7DB3DF49DFB8D7 /* orca_load_report.upb_minitable.h */, - 95FAAE3F0AD6860F0787B1E5EC83F185 /* orphanable.h */, - B8EA3B49540E18C349890B469FC810F5 /* outlier_detection.h */, - C4603A0BAB75FFA1E81801422D6ACE79 /* outlier_detection.upb.h */, - 5BB32A2A8BFB2B42ACCC7721D821A35A /* outlier_detection.upb_minitable.h */, - 2AE0D1430EC983E9BE4082BC9614CA4C /* outlier_detection.upbdefs.h */, - 26CF7F052AECAC91833DAC832BC6CFAE /* overload.h */, - CC83E42C95FEDB25AD89353288B3F8BD /* overload.upb.h */, - B4C28296BD51C5EA60D61560B27D21D3 /* overload.upb_minitable.h */, - 1CBCF93ADA7EDF481206D23AD7F633DE /* overload.upbdefs.h */, - 3D44480D057B5634DDDC7A39CB431A49 /* packed_table.h */, - 05210DB21890E691DC3488EE05B32C8C /* parse_address.h */, - 8E65093A641FA101D246F602CBC224D0 /* parsed_metadata.h */, - A9B5EF7FCA35AB0228443A4C7D0CFC3D /* parser.h */, - 942563C1A95510BBC8BE0834461E9451 /* party.h */, - 42CF1A50523AF025EE8B6510F5A35551 /* path.upb.h */, - D818E260DDB01A1AB476FE19FF5E9C05 /* path.upb_minitable.h */, - 3881E0475DAE22F55C1018E409196394 /* path.upbdefs.h */, - 705B37E7BE0FCCE290FAE9CBFD1A740D /* path_transformation.upb.h */, - 8A8D7A7E60F1733C41CD1DE080C6243B /* path_transformation.upb_minitable.h */, - AB089C388259AEC6158D877CEE6FCD68 /* path_transformation.upbdefs.h */, - 201E1D5C24DF63BEE55739B6E2BF65AC /* per_cpu.h */, - A61E14B3002DB6042226A85F2D2292F2 /* percent.upb.h */, - 632FF3B0CFB03A0E62EF4B22C7B0045F /* percent.upb_minitable.h */, - FC6ECDCC70618803F59DE29DBE429032 /* percent.upbdefs.h */, - 18E5913122E6B3C6BCF0C1EA1BEFF459 /* percent_encoding.h */, - 0B66DD403FC65637B4E716868ACB1AB6 /* periodic_update.h */, - E4489B92A4ABC7C5E0D153B008267108 /* pick_first.h */, - F00638BC181AABAFDCC38EEEA7F1A0CF /* pick_first.upb.h */, - 263FF972B1AC579DA706252E41529D20 /* pick_first.upb_minitable.h */, - 9254B411AFA07B5589884D70D84DB1F1 /* ping_abuse_policy.h */, - D9C2ADD010939669508828F97BAF7954 /* ping_callbacks.h */, - C6F95F8143FE8EB12B2E42D9D655B99B /* ping_rate_policy.h */, - D67B56314DE8CE5E49E8EB9F4A0EFE5B /* pipe.h */, - 1CA5FF935C4CD6686F0C0466E9ABA34A /* plugin_credentials.h */, - E7725D1B1FB2BBAECBB74183689ED610 /* poll.h */, - 9B029FC91D87F6E65C6F15E72754F253 /* poller.h */, - 61B90F09D2D6C1AF2194F9080FDA213B /* polling_entity.h */, - B93F9F1ABAF25D907F2F784D94263067 /* polling_resolver.h */, - 161D52F2794300431E6C677A995F9F35 /* pollset.h */, - A0B981440B0317AFC154749F87D0D80A /* pollset_set.h */, - C1780812A548FD1C7CC9A1B66E9D7ED1 /* pollset_set_windows.h */, - A83D4EA98E182B40FAA9E2AA1A191071 /* pollset_windows.h */, - D6C17A8997B9B181AF2AAF934EF99858 /* port.h */, - 7C2E639EB65BEBA95967AAEF9F95A4FA /* posix.h */, - 87262ECF8F2F02E371745C61DD88B00C /* posix_endpoint.h */, - BB0D6854E8FD372EA5F5BFCBA01464E6 /* posix_engine.h */, - 345749E9B085C56C0A5DFA4C6B09D370 /* posix_engine_closure.h */, - 66FF7A7F57ADD24DD445CC42E2F67FB1 /* posix_engine_listener.h */, - 8BBC283693E7D65C7BF998AC8BC5411D /* posix_engine_listener_utils.h */, - AB85944D59E911F989217BB40D67CCEB /* prioritized_race.h */, - 9207B49AAE4487FAE2FF0EFB4351EE07 /* promise.h */, - C24B56C810848E6A9C295D018754D8AA /* promise_based_filter.h */, - A243920B2C85FD3EF8C007CDEC353AEC /* promise_factory.h */, - C9C1084866662B12A9210105BA47B2C1 /* promise_like.h */, - 89384998CC669C7FFF93DAC3C853E811 /* protocol.upb.h */, - 5BE82615689DD552F4520E2C4722B799 /* protocol.upb_minitable.h */, - 843C6D8A6F7F13AF30F7364B73158E5F /* protocol.upbdefs.h */, - 528C92DEDD1A070B225A259281572E82 /* proxy_mapper.h */, - 2E2B154AA2719F04F9E03EC5B14260DC /* proxy_mapper_registry.h */, - FAF773B18E6E487046FD872DC5044247 /* proxy_protocol.upb.h */, - 4348B363AA6783618F03462C598D8FAF /* proxy_protocol.upb_minitable.h */, - 2D690A943685D4B89E1A13D032667498 /* proxy_protocol.upbdefs.h */, - 35B06EFB3F9B3CB2557EC8CCDF6423EF /* python_util.h */, - 53A469B173E26F2068C5D90E1A9CB894 /* query_extensions.h */, - 67502D055648B87D6FDAE48DF59B6626 /* quic_config.upb.h */, - 54C6B58E7F23D33E2466C8648C7A1274 /* quic_config.upb_minitable.h */, - 12269A09350B211D1D4ACB44062055C5 /* quic_config.upbdefs.h */, - E6A0E7C7BF44DEBD779A4BB4BD4ABF4D /* race.h */, - 719A8A1DAF5B5EBFCAB94F31A53D3633 /* random_early_detection.h */, - 456224646C705846CBE832F3A42F39B7 /* range.upb.h */, - EB53127D8951AB1961F02035175F6BB1 /* range.upb.h */, - 0E4583F2C88D06EE6A22441FDDEC55EE /* range.upb.h */, - E7970DFB6AAAE62D0072BFA026DB3836 /* range.upb_minitable.h */, - 1EFFC39A61E4EADF61BF8B75579481F1 /* range.upb_minitable.h */, - 9E048134B3F404280AEA150DE6BEBE61 /* range.upb_minitable.h */, - 9826265A4F6F1DF7747365C2CF3F612A /* range.upbdefs.h */, - 1703F7DCF5F3EDC2689BD2AC6ACC2EA8 /* range.upbdefs.h */, - EA4419CE289B8734E02543556B9A0385 /* range.upbdefs.h */, - 9964AAA6CEC1E206C42DEB1A451A72C6 /* ratelimit_strategy.upb.h */, - A614B5F1BC1257CECC9B6B10D3874C2D /* ratelimit_strategy.upb_minitable.h */, - E851D8F9C5AF90AA68534DA5E7C63B05 /* ratelimit_strategy.upbdefs.h */, - D5D0A94981A10A14D143BDB2CC307BA7 /* ratelimit_unit.upb.h */, - 4308C383E379367BC41410AD2C702E72 /* ratelimit_unit.upb_minitable.h */, - 1F0175C739415B6FA900A91500625012 /* ratelimit_unit.upbdefs.h */, - E77A7E604E0D8C5BC83F3A84CDA81E17 /* rbac.upb.h */, - 9457543ADD65F1933ADFDF9BC7664195 /* rbac.upb.h */, - 012782C2DDE1AE0F0AEE32FEFB6D72F0 /* rbac.upb_minitable.h */, - 619B9DF9E6106E19FA7E35277E2BCB4B /* rbac.upb_minitable.h */, - CA570878CFDB7BD59897DDB87FFB43BE /* rbac.upbdefs.h */, - 77BE0747E53CE0E3552279DA86F27702 /* rbac.upbdefs.h */, - 6A0A3AA971A988B2A5E579A77EBCC7B9 /* rbac_filter.h */, - FA46FC026BBF69EFD084DB5938011F58 /* rbac_policy.h */, - C35C2652375DAB2F10E27B4AE1E11D47 /* rbac_service_config_parser.h */, - E54D5097D5238C67E534F133B86D9352 /* reader.h */, - 45CAA698758924DF994C9611EFD21890 /* ref_counted.h */, - B2770159786DE653FB3D3B87BC458B0E /* ref_counted_dns_resolver_interface.h */, - 0413254134D0F7CC1B14052ADB4F6520 /* ref_counted_ptr.h */, - 8BFC4B2CAECA251381352554EF79A20D /* ref_counted_string.h */, - E0C9D1687C114554133216DA12EF6D56 /* regex.upb.h */, - 2235EB1743BB1FBE4FE529BA44151F4B /* regex.upb.h */, - E914C1AB3867B426CB1076E298764D6C /* regex.upb_minitable.h */, - 7A346F61894BF622AF70DB5834254205 /* regex.upb_minitable.h */, - CD2D8617212F8049BBF3AF6FB143DA1D /* regex.upbdefs.h */, - F74E9C5BB1BD18EC70FB2E2EB26536B0 /* regex.upbdefs.h */, - 874AD7243B524399290D3C2E43FE8B9B /* resolve_address.h */, - F2E303DE36FDBC0C3CAE89284531C70A /* resolve_address_impl.h */, - 5331D0BCD321C46E1DA411F7513EBFE5 /* resolve_address_posix.h */, - F05A8343FA2C2F660BC6EA02580BAE44 /* resolve_address_windows.h */, - 71C1164997A880963014A0A965B6310C /* resolved_address.h */, - CB6C825BB1326BDEEAACCEBDF2599EDF /* resolved_address_internal.h */, - 261BE7324BC8DC968AB5C3D8B03DB128 /* resolver.h */, - 7776435A96C3EB2D82CF371E3144C378 /* resolver.upb.h */, - 55EE6AB6B08E44479884261FA747F226 /* resolver.upb_minitable.h */, - 1D7070E2C9FDBB1E8BFE04AA62A7DCCC /* resolver.upbdefs.h */, - 0FEB9101EAC44FFBCE4F59F48B1BFF34 /* resolver_factory.h */, - 1DAC3B66A3F3F6464FF427ED3E4078D7 /* resolver_registry.h */, - EF73DB7312DBCFB64C49A10B7AE96C41 /* resource.upb.h */, - 60A27D38DD1FC1F6FEFCBA39AE178B2E /* resource.upb.h */, - BD643AF3B199FA18A14BDD4996383F72 /* resource.upb_minitable.h */, - 6AC68519952E33CB5E673538428790D5 /* resource.upb_minitable.h */, - 1D92AAA7DFE3B92B2C91F392283AF434 /* resource.upbdefs.h */, - 596C294122411236161F77158BDB0F88 /* resource.upbdefs.h */, - 310E4A228602FB184F9F75A762DEE768 /* resource_locator.upb.h */, - 92A537D4AC3D57E5B94F256658DA8850 /* resource_locator.upb_minitable.h */, - DFA6A57A3E5090508A8E61C4AA5BE92F /* resource_locator.upbdefs.h */, - E03B6D8EA7EF47791726AF72AE7CEAF8 /* resource_name.upb.h */, - 948F8698C35EBB05F513A0DD984E99E5 /* resource_name.upb_minitable.h */, - 84A456DBCA5952D8ACD59BD0C5949C03 /* resource_name.upbdefs.h */, - DAF784ED2F2E10CF7E1B50E36C215568 /* resource_quota.h */, - 3EBCECA327301271EDBD88D65C28DA0F /* resource_quota_cc.cc */, - BB0DD1BB5FD2124ED992F133DADE457D /* retry_filter.h */, - 1120696D43B3ABE7671A077E39486C4F /* retry_filter_legacy_call_data.h */, - EC6360712D92D1C09822D85D47E7C764 /* retry_service_config.h */, - B48463E1C4B4A665F9BA36BDD1C76F03 /* retry_throttle.h */, - 346DDEEEF2F10DDF4EA0B42C6E345AE3 /* ring_hash.h */, - 2120944D48FFFE005EE3978F14F8E591 /* ring_hash.upb.h */, - D89732E643C43A6697E3C7C7A9996A00 /* ring_hash.upb_minitable.h */, - 34E8D749DA4ABDB6811420B471A05072 /* rls.upb.h */, - 5366735C4B1E27870DBC3B7C162609E0 /* rls.upb_minitable.h */, - 2F938F65EFE5A3CD3965B2534461E05E /* rls_config.upb.h */, - 232586A2B599A8F8BA5C0B9E60CDCA30 /* rls_config.upb_minitable.h */, - 4B9129B66AE5ED3CDDF6CF9D6808EB2D /* rls_config.upbdefs.h */, - DD467912506269D32A50849BBEF54F1A /* round_trip.h */, - 40207359C0D668DBC250FDAE44DF152E /* route.upb.h */, - 208ED97C6A6A5F2C67C7736EC4B8A7DA /* route.upb_minitable.h */, - B4E6A6E25D19DCBF5646D240BECC0C10 /* route.upbdefs.h */, - 1478307A13B4C5B4E96B233D177CEACB /* route_components.upb.h */, - B896495106A346C3E4E1F794210F5D0A /* route_components.upb_minitable.h */, - 4D0CCA4108F253C616C787A9B4036374 /* route_components.upbdefs.h */, - 0AE2B3B268D379DA5B4901FFDFECFF98 /* router.upb.h */, - D0983B80EB433848285802BF2FC2C48C /* router.upb_minitable.h */, - 72E3E645F001853F3514CC741679FCEE /* router.upbdefs.h */, - 01716956170A187FC560D6D922059E04 /* rpc_method.cc */, - FEC48AB17D6584A42698FACD7F414C4E /* scoped_route.upb.h */, - 3EFF90C108636B555C6205470D5323C5 /* scoped_route.upb_minitable.h */, - C4599F8974367F8CEB413CA837AED928 /* scoped_route.upbdefs.h */, - B9E526BD931B4B1B89E12CA440F98673 /* secret.upb.h */, - 977643B9A36BBE1E1647A1F2CBDEA9F2 /* secret.upb_minitable.h */, - 8E32E6975C0C22CD383288B27CB76212 /* secret.upbdefs.h */, - 576CB3570463E97DD5EA01039D58C44A /* secure_auth_context.cc */, - 79C4BADED359B92CEB1FB4A1107F7B4A /* secure_auth_context.h */, - 4E37A80801D984601B35C6E618E040A8 /* secure_channel_arguments.cc */, - F4F45FD108EEF88CB4A77BF84FFEF8CF /* secure_create_auth_context.cc */, - 4C9C9F5BE805D2A5A498D7B39270CA8F /* secure_credentials.cc */, - 68977D4FEEFC97EA172DAC24E9ED3176 /* secure_credentials.h */, - 778403589630D1CA5272D39F429BFDCC /* secure_endpoint.h */, - 774DDE21EC64FC87A74B343B30C61A8D /* secure_server_credentials.cc */, - 95C46FF9CC1195D12A51E78D9A4BC4DB /* secure_server_credentials.h */, - 89E95E4E3172E1D47B39604FEDB90304 /* security.upb.h */, - 4547E7D9F448F858FD16D15DCAFC8247 /* security.upb.h */, - 03B4880EB0DC9B8C191BA7136EB85707 /* security.upb_minitable.h */, - 71C6A6E8F0C0130C9BB469BC89330E11 /* security.upb_minitable.h */, - D77665CC3B31C3E37ADA010FE121403E /* security.upbdefs.h */, - 07835A921FFE99D04E58046C46F9A8B4 /* security.upbdefs.h */, - C1D4FE31E80C8C0A0A7BFC7DF6C05F8F /* security_connector.h */, - C684FD7B093D5925DC786A6380A9C109 /* security_context.h */, - EC66EB135376BE3ED5188301BB7C7F7A /* security_handshaker.h */, - 87FC5427C5AF02CA8214F18E2E57EB09 /* security_policy_setting.cc */, - DCB052F9DA7C0514242BF993DDF4EE10 /* security_policy_setting.h */, - 83E62B6D7D9FEFB3814813C86F4061EF /* semantic_version.upb.h */, - 3356F56CCB8112776C72B8CB5FC02265 /* semantic_version.upb_minitable.h */, - 6F75CF31259F642F18DF4DC6BBA20D2B /* semantic_version.upbdefs.h */, - 2655D87DAF5D286F57BF1BA162891B7E /* sensitive.upb.h */, - 705E53EF093D33CA407FDB957E5EEFD3 /* sensitive.upb.h */, - 055C219E6C93736F6D04F8CDCE0A9D70 /* sensitive.upb_minitable.h */, - 0865506B4A627A56FC227E85D966FBB1 /* sensitive.upb_minitable.h */, - 09153E8FFDCAB6274B1D2960BFAD25CE /* sensitive.upbdefs.h */, - 1BE3902B533722A230C98831CACB6E30 /* sensitive.upbdefs.h */, - 96212E0082AB7FF09B6B4C3A92AA1391 /* seq.h */, - F3991EC455A1E6DF6F8026CC7389E88F /* seq_state.h */, - C58B05232C8BF28153518A07E8845C0F /* server.h */, - 7250AF0CF9F7118D7D07AFEFA04C95E7 /* server_address.h */, - 21B16EEECC2F6B21902F34A2AE4A2D3A /* server_builder.cc */, - 0AF0E66BBD1E346CABB54F502EBDAF0D /* server_callback.cc */, - 9758CC87813536A78F1FC54973F4D83C /* server_cc.cc */, - 82A6BBEB072238D2059A3B2C946E7AB5 /* server_config_selector.h */, - B9F5AAE303D46A3C45F4E4531C44AF6A /* server_config_selector_filter.h */, - 499F47899CE9F652A96C724966ACD1B6 /* server_context.cc */, - 5C0456A89B9CC6612F39E0D43AA78F19 /* server_info.upb.h */, - FE5355726EBF4B762CBC4FE5A0CB8DE7 /* server_info.upb_minitable.h */, - 36028D163EA6A9DF9893EE590AF0D49C /* server_info.upbdefs.h */, - 5F4B94D643F2CE97E6D44E4BBDD5371B /* server_posix.cc */, - FD2EE889B380D4CCD6EA0423DCF4F147 /* service.upb.h */, - 9F3B2A8F5A9C2B96D84AF1C0C9FF02A9 /* service.upb_minitable.h */, - 2798F8C0005C7684EFA41A9A04C43C8A /* service.upbdefs.h */, - 670AF1EE8C59932255BDBD53BF84AD20 /* service_config.h */, - 4CB6F14CE9DF7B51111A2E82040C151F /* service_config_call_data.h */, - A758156457C5411D5001F1A1FB28C414 /* service_config_helper.h */, - E78C34C9D3FD4EE555F5761F7B50A790 /* service_config_impl.h */, - BD0C71C263E910955A3661941FEB7B18 /* service_config_parser.h */, - E21DB309D4AF7F0D7F95121D7D2CE305 /* service_def.h */, - 1FA727A5DF6400B1BD47F5FE98F9494D /* service_def.h */, - C0E4C8B35ACCA6D12E460117B8678DCB /* shim.h */, - 206F54EAA2B8A938FDDD394F9BDEC87B /* simple_slice_based_metadata.h */, - 490DD9278EBE747AC1EC28949C858C77 /* single_set_ptr.h */, - AE2EBA3DE3FE1EE6AD0AE440FEE89EC7 /* skywalking.upb.h */, - C95A2DDB39D010A65B8C19BC910BC74C /* skywalking.upb_minitable.h */, - E4077F2B60ABCF7857C4DFF87BF85158 /* skywalking.upbdefs.h */, - E45E5665FF6AE072FD4E1F8CF4E524EE /* sleep.h */, - 307E88D360C866329865734A99EF433E /* slice.h */, - BE180DCC5695A1562C44BDAB79E219EE /* slice_buffer.h */, - 523B1168418A40F254E68E8EB0DB380D /* slice_internal.h */, - 83B85BA075A32E77AC9B46823F9AA2DB /* slice_refcount.h */, - D92D8001855EB1168E78937A378E66AE /* slice_string_helpers.h */, - 62B1C80CC08BC5D5EFCA04BE552FD512 /* sockaddr.h */, - 22D67E0684451C583C54316187006449 /* sockaddr_posix.h */, - 30DC697FDA9F9AD419D6386096D4AA6E /* sockaddr_utils.h */, - 8F7577E6082576E39219D2A5CA43E871 /* sockaddr_windows.h */, - D710C7D011AB9FB51546F67412FEBF9F /* socket_factory_posix.h */, - 61C4AC591D69D2E09C4C841360833D46 /* socket_mutator.h */, - B4624AA2AD696D60F6B609D3309A3648 /* socket_option.upb.h */, - 779321B678294D892E121844F28E486F /* socket_option.upb_minitable.h */, - 8B2D6349967415EF84F05A6AF4BE4DDC /* socket_option.upbdefs.h */, - 63932561A7E4C89F350741C46B554F44 /* socket_utils.h */, - 9A947F14CD44BE8B8145F745BF8978C7 /* socket_utils_posix.h */, - 39711045BA516A440F17EA389C3F031B /* socket_windows.h */, - E70296D3D8A6B35D69E50D2FFBCDF34B /* sorted_pack.h */, - EE5E9127F8583D9C86580AE986E2BCB4 /* spinlock.h */, - 5DD69A21784C4ED429F86EA763023B04 /* ssl_credentials.h */, - 260206AA12B46A154D59BBC01F2E6054 /* ssl_key_logging.h */, - 2CBF786A43D1B5120AF704E3DF28ED53 /* ssl_security_connector.h */, - 0F77051EAFE649737E970C9B94FD25A9 /* ssl_session.h */, - 74D242618042926254ED4F8793D238B7 /* ssl_session_cache.h */, - 220AED87ABF8C858FCF68FDF7EFD8E51 /* ssl_transport_security.h */, - 471813ED1736D58049F8B203826F26E6 /* ssl_transport_security_utils.h */, - 2B70BA71C266A60599ACF7FE7CE259E8 /* ssl_types.h */, - 79C011F7488B621868412F0C9D5BC605 /* ssl_utils.h */, - 48E137B3CB080CB819FAD89342C90B43 /* stat.h */, - DAF310B2B579534CAC460773A9085126 /* stateful_session.upb.h */, - F923A2E0F49C5C346BF2DA9B978FAE64 /* stateful_session.upb_minitable.h */, - F3CCD933B85AE540284E84AC83B2F04C /* stateful_session.upbdefs.h */, - A66E6DF029007510CCF1A2E2E76F5159 /* stateful_session_filter.h */, - 1FE033E19FD7E8FA4D23D4AF9EF0A849 /* stateful_session_service_config_parser.h */, - C4592A13AF3ACE60F08D9B79788442AE /* static_stride_scheduler.h */, - 98DAFA07D7BE5A56B8B1AFAB2FF0387F /* stats.h */, - 7B4FEAEDDA2619958DDA461465DC1B5E /* stats.upb.h */, - 9D43BD3E658FC54A946BD1B0CA51506E /* stats.upb_minitable.h */, - 958730C2973972898C513AA1420D0FB6 /* stats.upbdefs.h */, - 1ECECDD9DAC840149B493B0D420EFB35 /* stats_data.h */, - 8831706ADAD1EDA590ED81BEED2CF171 /* status.cc */, - 294C88E9926D3DB5BF67EDC29F365B30 /* status.h */, - C0D14788684802295667C4E2D8E7ACE2 /* status.h */, - 670387A0DB7884DD1F1B9AE7EF2B30F9 /* status.hpp */, - 6FB077B5F55D95D0E57A224C18D5198E /* status.upb.h */, - 3A90F6564ACC5E89392479A3C202E476 /* status.upb.h */, - 18A1ABB64D2A1C6361AD1E2CB5000B03 /* status.upb.h */, - 485672D460099702E12EB1CE47919B4E /* status.upb_minitable.h */, - 6704AB21BEFC2E7EEAB65872C328BFC0 /* status.upb_minitable.h */, - 86547757E4666A01D350FB70EBE9A064 /* status.upb_minitable.h */, - A09403A69693A1DCD3666BA458BB041E /* status.upbdefs.h */, - 230D3A293F1E7BA490605CBB81C7D32B /* status.upbdefs.h */, - BCCA2C6ABCDBDECE392301E8D32576F4 /* status.upbdefs.h */, - 8D2434F127AA3C49B95542946D998897 /* status_code_input.upb.h */, - 0AF987CCE5DF3B9E77B95A2CC9F8190A /* status_code_input.upb_minitable.h */, - B88E0826F4D6B99E3700EA8D11303104 /* status_code_input.upbdefs.h */, - 8BB9281190DA17390FDD4317F0297108 /* status_conversion.h */, - 28BF5288BC2283BF5920988A13A1C16A /* status_flag.h */, - AE5BF4282C085DAD045C3AADB7BF92BF /* status_helper.h */, - 65D53BA40B7C7A6962999091978AD6D4 /* status_util.h */, - F5E42DAFBB2D82F8296E8C5BE55F6D38 /* stdout_logger.h */, - 9D1175799C832D620404D7D519750107 /* str_table.h */, - 8681CBA9E444AA66B2CD00CA2F789740 /* strdup2.h */, - B158402490EB5CEB3B93AFFCDBA5B45B /* strerror.h */, - 235BE8323E4A0454A229CE2E0DE9D888 /* string.h */, - 1422736621A715D11572E983043F33CA /* string.upb.h */, - C20F999F457E62DAEC67EB2013A171E0 /* string.upb.h */, - 18333D71ED8DD4C18EE70C484B7AE60E /* string.upb_minitable.h */, - 2007CCC3F13365C4BDDD7CF8C2650714 /* string.upb_minitable.h */, - 5836E877B7E157B4F298AB138C9894FE /* string.upbdefs.h */, - 06DE69DE44B0C05AC4E70D6305682C63 /* string.upbdefs.h */, - C54F2919849C10B8592EC5F87734035F /* string_ref.cc */, - 6DCFC5F7A193AD34D76B2D6A46683251 /* string_view.h */, - 27BD1676EC6CA693FF0928DA27D8D1B4 /* strtod.h */, - BA8B9521AF875C04F9B44B8E062D991D /* struct.upb.h */, - 1CDBC2FE4BFC4F4F83B2D0F0AF1E2CC5 /* struct.upb.h */, - DE0D6F4C85A7A6AEEC4A1304E1920781 /* struct.upb_minitable.h */, - EECD48FCFC73BD053B0867244E74D12A /* struct.upb_minitable.h */, - FC1C010766A87AEEF3BAD8191296D589 /* struct.upbdefs.h */, - 1B881114DC44A1D534B3516C18CD70E9 /* struct.upbdefs.h */, - D493D5FA73B39244BE1161948352AD42 /* sub.h */, - B231B1BDA8614467FF05E7411E302218 /* sub.h */, - 65FA4564650F8DB6CF4E4C0BCAED7587 /* subchannel.h */, - 84F63E7D5A3F3FAB4CA7C9A3C5BAEEE8 /* subchannel_interface.h */, - FBEC17AAF6225FA0FB21AA05846083C5 /* subchannel_interface_internal.h */, - DF7B1E86CD9B881A9DC4664F8C0061DE /* subchannel_list.h */, - D9CDC3F5CCC1B4E83CAD482BA8D41C6F /* subchannel_pool_interface.h */, - 88C8F2A8BA9F8AB35C24657A73B2C89E /* subchannel_stream_client.h */, - D82FD0CDD93342575E1BFF98E861B138 /* substitution_format_string.upb.h */, - DBCF9FB6E0928EB9D64073A277976D0D /* substitution_format_string.upb_minitable.h */, - 28571AA2AA642796D6FC33142DFF24AF /* substitution_format_string.upbdefs.h */, - 995F507F4449A70D11B99C134B0E4345 /* supports_fd.h */, - DCAB555D0069C49F88B07DD94BF7F483 /* swap.h */, - BDE96647CE4EEF1306B7068A64436309 /* sync.h */, - 996A200A69247F5203CB01EC2E265B6F /* syntax.upb.h */, - 912DCD6579D25189F0E2DA27299D450D /* syntax.upb_minitable.h */, - 1AAB428CA4F461B94421099680BC390E /* syntax.upbdefs.h */, - FF93CE6164A76770933CBFEE9257304C /* systemd_utils.h */, - 7C28163E93826BCC1B6FA52022ADDD26 /* table.h */, - 2396142431D680935936F6A3D40E2498 /* tagged_ptr.h */, - 5A49A42A540EC414DCB10E2C0C660C43 /* tap.upb.h */, - DAE9E04B87CC48A4A0ED6C78CCD9739A /* tap.upb_minitable.h */, - 78CC82A32434761FFB1E07E584418FA6 /* tap.upbdefs.h */, - F2BEF1216214FADE8CC634BE998EFB49 /* tchar.h */, - 0AEA2570C6BC58EE3356FF9BF456CCD3 /* tcp_client.h */, - EB1EDCD53E124BF489D7C7628A806F45 /* tcp_client.h */, - A2E36C97179852368A2AAAB8739C3DA9 /* tcp_client_posix.h */, - 52DEAC978A50674DEE3C92CC23EC1061 /* tcp_connect_handshaker.h */, - 637CC0C421F0675015A89EACFD04D34A /* tcp_posix.h */, - 20BFA869D8C9227B8F2A124484BFB3C3 /* tcp_server.h */, - 99C062D15CE80005D21D097E6B5895A4 /* tcp_server_utils_posix.h */, - 8C9C8BEA52AE05A70FEAA9C46C68D1F9 /* tcp_socket_utils.h */, - 4333C78F79817D0EFAFA3C5B290B757C /* tcp_socket_utils.h */, - E7F43C9EDCEEBCA50227AE6DBE493596 /* tcp_tracer.h */, - 9D6CE426FBA947DEA52644F5F89FFDFB /* tcp_windows.h */, - BDF7F2C02D7661162754CEF9BAD13BEE /* thd.h */, - 3C85BEC84820E0EF2F58B68255A7CB1A /* thread_count.h */, - FF099BCEE42C47A7B7A5E64CC0739DB0 /* thread_local.h */, - B747659E4FC150C7430B7A5B31CA7653 /* thread_manager.cc */, - 4C51E3F4040187E0C7A8F4815FADBAD6 /* thread_manager.h */, - E41DA07E35B2EA032CA8AF3B5647FA7E /* thread_pool.h */, - 952962395600A8B84129B1906FC15F90 /* thread_pool_interface.h */, - 35874B4D86FE75070E6F86018CFA2F16 /* thread_quota.h */, - 54C7647DD168FC57C53936ED70088F58 /* thready_event_engine.h */, - 1AAF216B717CCDDFC2F92F674F290AE4 /* time.h */, - A85B143BE17B11B55D7D788F62BDF023 /* time_averaged_stats.h */, - 9CEB16F1717B716957471FDA777EE9D9 /* time_cc.cc */, - 6A1322C154D113DC4A53DAE550481BDC /* time_precise.h */, - 2337DDD1408F4EFB2A5757171E9F429F /* time_util.h */, - 192FCDF2D7B68DEF8526DBACF7EE11E4 /* time_util.h */, - 731ED4AD0FF2E8B4320401606ED0E31E /* timeout_encoding.h */, - 0FB1FD9E212279AB3586C3F95DDD79D8 /* timer.h */, - 9B82E113672352A4CDAA701BA4018C29 /* timer.h */, - 5CE88DA66541FBB708C55C91912017C7 /* timer_generic.h */, - 2CD518FAD48EAD343479F308A13691E3 /* timer_heap.h */, - D50FAF4EBF3B474CAEBD93D15AC9C06E /* timer_heap.h */, - A32880955D94FB6982150FE42C323D81 /* timer_manager.h */, - 4A939104FE03B00E960F1067FEA3003D /* timer_manager.h */, - 01C3432304325DEB517878A4783BAB48 /* timestamp.upb.h */, - 41C9EAE5A8B15C985867C5CA8DE120EC /* timestamp.upb_minitable.h */, - 9DBED2E07AD729D10BFE5F3E807C05AE /* timestamp.upbdefs.h */, - FF151CB997F69162A18D10A7283C87A6 /* tls.upb.h */, - BBDA447F723DCDF10E392F71AAA50339 /* tls.upb_minitable.h */, - 8C6115A5F064E4A38A8ABA256EA284A5 /* tls.upbdefs.h */, - 847F43032A927BF1E913D2F00AFCDAEC /* tls_certificate_provider.cc */, - EB5C6AFEEF55C47DE5E84D7C6420B05B /* tls_certificate_verifier.cc */, - 2B874719A4AC4E9B0252D10625E06841 /* tls_credentials.h */, - 2CD8954C3E6FE49DE37C55BD19781CB1 /* tls_credentials_options.cc */, - 065F346BC1B1578431F4E47528F3269A /* tls_security_connector.h */, - 0AA008321352369CD72CB38BD9B2F615 /* tls_spiffe_validator_config.upb.h */, - 3AB1E1C8030FABADA78FFF89A78BC3B2 /* tls_spiffe_validator_config.upb_minitable.h */, - C35C85E93AD53C6EE61E93D656B58DC1 /* tls_spiffe_validator_config.upbdefs.h */, - EA13F1E67FCAD03A86293A86E1622A9D /* tls_utils.h */, - AC396AEF6746FA01BB0C89657FF942AB /* tmpfile.h */, - B6DC60A8A6D8F923108B09A78B27F4FD /* token_bucket.upb.h */, - 2B00A45DB09EB334EC29B2593AAB728C /* token_bucket.upb_minitable.h */, - C71CCF03FA0DEA38FE829C5B831D0FB7 /* token_bucket.upbdefs.h */, - 2BC8FE01BEF4277D5A3C7B65B70A1768 /* trace.h */, - 4BA89EC8E54AB0BC2B88D805A3E27C0B /* trace.h */, - 03ECCAEA46AAD5C1DFB47D795572681C /* trace.h */, - 7CF5E735402A7DF50344C28B7E5A8D97 /* trace.h */, - BB77408A39B7311844ED55FBD14BBA93 /* trace.upb.h */, - 27AB040E47F1BDD7128345EF020BA2F3 /* trace.upb_minitable.h */, - E6F3D3CAFFC238B3202D99A12F3E263A /* trace.upbdefs.h */, - 909609CA0E5DE4BD2DBF858FEC02F52B /* trace_config.upb.h */, - 0B64D6CCF053B26FC0F13B47C3D90D6E /* trace_config.upb_minitable.h */, - B12C3BF47A010032C7302640546A8A34 /* trace_config.upbdefs.h */, - E2CCD592A6EE4D8FEFD6421B7BDD68FF /* traced_buffer_list.h */, - 3FE1724D7C7C160F2819A6A7A2341574 /* transaction.cc */, - 4560CA607C7FA62D10093B638BF2B591 /* transaction.h */, - 1D89369F0B5FEE7E7A5255BD5E138653 /* transport.h */, - 3A59B82A2B65E875CD833821AB08A3B5 /* transport_fwd.h */, - 90F528CE0EAA9E192F439FBA6905EFBD /* transport_security.h */, - 0306FAA8F05CCCFC3303BB9A6F9EAC00 /* transport_security_common.upb.h */, - 9B1D88E21DB54ADF02DA9C138E5537E6 /* transport_security_common.upb_minitable.h */, - 97C8509120196AC77C6BF704A5E1DFC1 /* transport_security_common_api.h */, - 10B177ED0E555FD5E96EB59C8AF09685 /* transport_security_grpc.h */, - 4A7C64939D0AC67DF4ACF4009701520E /* transport_security_interface.h */, - 80C67396586E7D232483F6E2E2038624 /* transport_stream_receiver.h */, - C33F2DBC2170BAFFD950AF0F3D41415E /* transport_stream_receiver_impl.cc */, - 62341EB4CCF010E229D49725D9CAC773 /* transport_stream_receiver_impl.h */, - CF61CBA82DF5F7A04844E76945DFCCCA /* try_join.h */, - 7BCD6239CA5D1A6AF7E6446E999A52D3 /* try_seq.h */, - 0910C9806A29211A8C1FA34E81BE12C3 /* tsi_error.h */, - 8A082963AFB387C13673FE90E6C69D06 /* type_list.h */, - 2C778AD51111C1E7C10AD4DF76BC6E1C /* typed_struct.upb.h */, - CF8AFCF10E6174A486CF83B766F792D8 /* typed_struct.upb_minitable.h */, - F687683628A80CF299A714D165BE2D3F /* typed_struct.upbdefs.h */, - 60CE4E3DDC8196FE4E57A14A98BA5790 /* types.h */, - 2F51B6E80CCB08F68BE055BAD3CBA575 /* types.h */, - D51BF0027B9A5DBB0F4715FBF6E6FFB9 /* types.h */, - FD37254E09FA503C555EF338E3C3524D /* udp_listener_config.upb.h */, - 696D844BC82B6058B8E138511BCE0905 /* udp_listener_config.upb_minitable.h */, - B7B3A888A4C5364208181072275F9B7A /* udp_listener_config.upbdefs.h */, - 799D3DF7980697B3529D224A07B88557 /* udp_socket_config.upb.h */, - 0371E084AFF469696B44928C6AF9F9F1 /* udp_socket_config.upb_minitable.h */, - BEB6F8DA81993094A19FE38374E716A7 /* udp_socket_config.upbdefs.h */, - B825C02D651B1866097D0907D657175F /* undef.inc */, - 180046154D14B8B3057977F5DC3829F3 /* unicode.h */, - 7B6B3D1C6684B5CBC279BC8F4249BA76 /* unique_type_name.h */, - 819C99AAFCA8EA438E85DC0517D8F1FB /* unix_sockets_posix.h */, - 9BB3952EB8175A7A7945F0166F33EF2F /* upb_utils.h */, - 8076E629B1AD63CEC0F648DFB553848B /* uri_parser.h */, - 101479E2ECE319C568F741D16D6621AB /* url_external_account_credentials.h */, - 70DB96354A476EDA18F370242835CF92 /* useful.h */, - B611762C26372A86C6E4B7BF14EE3BB3 /* utf8_range.h */, - 86ADA4DBDBC1905DBFFB39528BD30190 /* utils.h */, - F189C1DB1B380A2723FE8DA48A5220AF /* validate.upb.h */, - 3FB4ADE843B527126F630AEB1414FC30 /* validate.upb_minitable.h */, - D0644E04101028FF000B98AB2A09188B /* validate.upbdefs.h */, - 013D237986207FA9A0A124776BB201C5 /* validate_metadata.h */, - FED67B7873941AAA26BD44CBC236B68A /* validate_service_config.cc */, - 60F92842566CD35A1DD467F9D238C454 /* validation_errors.h */, - F429A1A8B29C0AFB8DE198B3781CC3D1 /* value.h */, - C0BE9610CA9A80B912CD6558426E539B /* value.upb.h */, - D0F71F5C56BA365B656C454E10774833 /* value.upb_minitable.h */, - CB5F7243AE4E43C58A532B75CC26791E /* value.upbdefs.h */, - 8D969196E294DC1D00131EADFE479678 /* varint.h */, - 24CEFD5C3D93624DC58F79552DF2E9D8 /* version_cc.cc */, - 61D4739B8FB20C12274D8FF0F875E066 /* versioning.upb.h */, - EAACCF7A3CED5055F79C16E65F68637E /* versioning.upb.h */, - 361821109C93AC2A89A45B5754A2E9F0 /* versioning.upb_minitable.h */, - D887F8DFACDE95AD548E4E7FFCA37967 /* versioning.upb_minitable.h */, - 14A801A50CB75FC85B6EFED23C98A582 /* versioning.upbdefs.h */, - 7E83CF6696072013AC704295715423D2 /* versioning.upbdefs.h */, - 59ED0E489755338469587750C00329E8 /* vsnprintf_compat.h */, - 1173D073CA7A8B25548500878CB9F98B /* vsock.h */, - 88B0FC4262F21FE5B285CC64E5ED85CE /* wait_for_cq_end_op.h */, - B5B2CD51FBDCDE6C2C718C595CA788B8 /* wakeup_fd_eventfd.h */, - F959E6F318B889AFE54CB76494B5AE42 /* wakeup_fd_pipe.h */, - 9B10EDD931371AA1F27BF21A680893B2 /* wakeup_fd_pipe.h */, - F6FC1106FB1337EC4ACA9437A1812F37 /* wakeup_fd_posix.h */, - 32E83E0FB1877602D9278D293DC318D5 /* wakeup_fd_posix.h */, - D3ADE1B1CCB6C1DD93795B6C1CB0F505 /* wakeup_fd_posix_default.h */, - F2A8DC87B8A157E41C83F18FB230E728 /* win_socket.h */, - 3A07F4C291140D065D094F128C692B64 /* windows_endpoint.h */, - 8ECEFA014D22F16D7DCD9AFB7C4D3E91 /* windows_engine.h */, - DDCA634ED13903EBDB7699B5362F50A3 /* windows_listener.h */, - 35D20BA7954889E29E34FB1BD255D57D /* wire_constants.h */, - 360762E34447526C744C1CE22899908B /* wire_reader.h */, - 6D173740F620C46A684B9716B22737E1 /* wire_reader_impl.cc */, - DECEABD4206226AB14F87D8855BE4CAD /* wire_reader_impl.h */, - 583FBDFFD2FFB7D4AE6248B0EA06429B /* wire_writer.cc */, - 3579F694F6A1F78F99DF942C2572504C /* wire_writer.h */, - C45467330737E951569EBB61BA39D291 /* work_queue.h */, - 51DB119CB658797BA2A2327D1317896F /* work_serializer.h */, - 426BA6E36457F08D42BB306DD1A29A6D /* work_stealing_thread_pool.h */, - 48EB8CC18BED98A0ADD5D29587DC432E /* wrappers.upb.h */, - 27BCC071053C4324552FC55199407F88 /* wrappers.upb_minitable.h */, - 812BFA2B6C3FB4F8FA96351F8148F275 /* wrappers.upbdefs.h */, - 3CD472CF83DEDA02082B07F074B36AFE /* write_size_policy.h */, - 4A1B0E9CA16046304FB65868E799435E /* wrr_locality.upb.h */, - B8056AC953FEA527BF1D993A6598A6B5 /* wrr_locality.upb_minitable.h */, - BB05A19C27DBDE7AEEE978BF39437BFB /* xds_api.h */, - 98BD93F0371CD66817E9CA25FF43EBD2 /* xds_audit_logger_registry.h */, - 6239A6DBDD0FEF592ABC7854D16220CE /* xds_bootstrap.h */, - 90A8A908D411B21EA15520CC594D3F87 /* xds_bootstrap_grpc.h */, - 71FA7BAC9911ECABB27E3AC83B632264 /* xds_certificate_provider.h */, - 1CCAA9072A6DB57F64579C4EC44E2AB9 /* xds_channel_args.h */, - 4B77B11683510E8116965F762A5EFF50 /* xds_channel_args.h */, - C94E974D34976B7FB9F076236BC73521 /* xds_channel_stack_modifier.h */, - EA3FDE161CDD9729683985698882FF47 /* xds_client.h */, - FA1581533CE6CB292BEE4AEB51E7D84C /* xds_client_grpc.h */, - 5E2DCB8637E8981241E03FD4A05F22E4 /* xds_client_stats.h */, - C732411E52EF3E4DC8D15025D94AB4F1 /* xds_cluster.h */, - 2084478FE25E4A5CDF71B8BAC7966243 /* xds_cluster_specifier_plugin.h */, - ECB675CA57F41F80A88EF5B1B349F25B /* xds_common_types.h */, - BD98CE3E83B14EAC5678E47079A30BFC /* xds_credentials.cc */, - 5D5D0D43B9F8F7C85786F87F0AD66472 /* xds_credentials.h */, - 0B42087EE8D983859D449C4459473459 /* xds_dependency_manager.h */, - FA7B8FF2095FBAB5EE5A3DC2EDDB966E /* xds_enabled_server.h */, - 100022F75B7CE259D3DF2518920E1133 /* xds_endpoint.h */, - 0FE4641BF4344C84E8ED7B4EC587B38D /* xds_health_status.h */, - 2770AC4D301B970BDFDC46136F81D919 /* xds_http_fault_filter.h */, - C73A92A3D269F85B5F08B3DAF9FECABD /* xds_http_filters.h */, - 3FCC3F04109CB34B00001FFB2EF099E9 /* xds_http_rbac_filter.h */, - 39ABAA7B5E372A916B101CD3A6505235 /* xds_http_stateful_session_filter.h */, - 915D6F1B41876A716316AEE5B4287689 /* xds_lb_policy_registry.h */, - D8C4EFDF6A16E27202682314213CC216 /* xds_listener.h */, - A166E29FC21D0E06B30532680B0906B1 /* xds_override_host.h */, - E2C2287B0CA2EB81871504CAFB82D7DE /* xds_resolver_attributes.h */, - 594409D0BB19CE2A81906EE173054D5F /* xds_resolver_trace.h */, - E644DBC0E8CB42073ED42ED597FA5C9D /* xds_resource_type.h */, - 79D28D31D68376BD4488E418F585237F /* xds_resource_type_impl.h */, - 23AB3EB4DF0474D85B420E506E85DCB2 /* xds_route_config.h */, - FF78724F347DDF3D347E42FB0B5D6C38 /* xds_routing.h */, - 361796B9FAE16C7E8B7DDA1EB49B5C27 /* xds_server_builder.cc */, - E902ACA4DE0A653F0D5A82EDF158B9E8 /* xds_server_credentials.cc */, - 3E1C09ED086985A19DF20EA4DF4F7811 /* xds_transport.h */, - FD7A135F69389BA089892887FC2D8416 /* xds_transport_grpc.h */, - BF4CD0F3AAD5DF973CCFAEAA4341FC7D /* xray.upb.h */, - 80404A77ED495DB1C1CB2CC2CE4B974B /* xray.upb_minitable.h */, - 8B04F46FD7592A390BC0B0F834700089 /* xray.upbdefs.h */, - 0329FEB953D7FB4396E13A125BEA521C /* xxhash.h */, - 7229EF69FBA5207DBEEE1D38AF23773B /* xxhash_inline.h */, - A647D9FEBBD5B09EDE48EF529739692C /* zipkin.upb.h */, - CA138C2C40C5D5FD1A932A10BBB8316E /* zipkin.upb_minitable.h */, - 7E4788C1848D3046321F6C98B711363C /* zipkin.upbdefs.h */, - ); - name = Implementation; - sourceTree = ""; - }; - 628163B2B3674D79DA26E0227FDDC13B /* config */ = { - isa = PBXGroup; - children = ( - 540DCF70744C6D2A6E204EF01013B3F6 /* config.h */, - DB34A32D7894610C2E780D1838B4E797 /* options.h */, - B94B6250395B0EBB6C62CE20A747C2A9 /* policy_checks.h */, - ); - name = config; - sourceTree = ""; - }; - 639ABFFDD1B3E98A0E5D16C90BFF03D7 /* cordz_handle */ = { - isa = PBXGroup; - children = ( - 281C309785243050DE503FC0FC24DD18 /* cordz_handle.cc */, - 597347D12C9600922168CF804E260736 /* cordz_handle.h */, - ); - name = cordz_handle; - sourceTree = ""; - }; - 639E1F590127B26C670A1F793A91437B /* FirebaseFirestore */ = { - isa = PBXGroup; - children = ( - 7297F9EC842EC1DF4E63735A5B1BD8D2 /* CodableErrors.swift */, - C17DA96EC950647B5D72426D1E406CD3 /* CodablePassThroughTypes.swift */, - C627B69D67B384A1062421C727B35751 /* CollectionReference+AsyncAwait.swift */, - 061E8ADA5B7705F451C5F11DF2805104 /* CollectionReference+WriteEncodable.swift */, - 17BBB1F477E2641A8D8583CB94431F61 /* DocumentID.swift */, - CA5578246CD26EF9D756E304A26C6673 /* DocumentReference+Codable.swift */, - 91F01DBBCF9F49E13BAA932AF0884FC7 /* DocumentReference+ReadDecodable.swift */, - EB488FB949E1CD3908A5CF784915F2AF /* DocumentReference+WriteEncodable.swift */, - 84B04BAAD02702E44D78A03679F4ED5A /* DocumentSnapshot+ReadDecodable.swift */, - 7441A5B899D5BC3CE16CFAB9B50D8DBA /* dummy.m */, - 78F050A2FADA8A0D79ACDF9E8DB86F9C /* EncoderDecoder.swift */, - 052DCF0F784245D1C018C5113D2830A0 /* ExplicitNull.swift */, - 212D6E06A3EDC133FA15680D33AAB2B8 /* FieldValue+Encodable.swift */, - 97A0F926758707A3479472D629BE4339 /* FIRAggregateField.h */, - C5E5753156238D4D54BA97C023B5A87C /* FIRAggregateQuery.h */, - 05BCC8B265475B2C73D19EE7FF29110F /* FIRAggregateQuerySnapshot.h */, - C59F0C46E2BB0C4917C75289013369DB /* FIRAggregateSource.h */, - AB82095AD610BB5C63FDC780A306A6BB /* FIRCollectionReference.h */, - 4D07CC1319D77DC16ABDDFE289FDF0CF /* FIRDocumentChange.h */, - 106AF318A52081DC5AF3426EDBC022EE /* FIRDocumentReference.h */, - 4564DCFA45EB5FBD4572E21D76D3A663 /* FIRDocumentSnapshot.h */, - 5D4309668E6EA95D4453AC4CB14786E7 /* FirebaseFirestore.h */, - 9E48454D8CD2A9D806B0CC027001B156 /* Firestore+AsyncAwait.swift */, - B01008C3E88B365E3BF2891044F5E953 /* FirestoreQuery.swift */, - 5E1225E020AB532A64E4B8B03C455B42 /* FirestoreQueryObservable.swift */, - 2531740A4BC02C5CACBBABEE9ACE0ED1 /* FIRFieldPath.h */, - BADA253FF641E248957D7A90BB17F4D4 /* FIRFieldValue.h */, - 61CE11EBF6E62DA39B16CC51E534720E /* FIRFilter.h */, - 8C20A34A60862DB9E4160690FF3E446D /* FIRFirestore.h */, - 41A9FE09D99E42D1A346F2A85C6B1AFB /* FIRFirestoreErrors.h */, - 50AC7A49F182CEDE4D3169A0D57E9A70 /* FIRFirestoreSettings.h */, - A1FEAAD1F1780E477EA3C49295A0850D /* FIRFirestoreSource.h */, - 49944F8B9DA9B718503EFB179F01819F /* FIRGeoPoint.h */, - D44BBDEA9B2A49D24ABB225B31A5B173 /* FIRListenerRegistration.h */, - 3B4F1716FB66EC3723096784C15FD1CC /* FIRLoadBundleTask.h */, - DBC4009FB958B4AE743A08D6E6206E3A /* FIRLocalCacheSettings.h */, - DBE31B8AF325526F591ED1447CFC6D50 /* FIRPersistentCacheIndexManager.h */, - AD99245A7658F3B1E7383B357E505902 /* FIRQuery.h */, - F2A4AF31BB7B419D585BF10753280A37 /* FIRQuerySnapshot.h */, - A201DC3FA00CD775348851F5E4596967 /* FIRSnapshotListenOptions.h */, - E62B17FA3495E736DE3B9DA3E4342D29 /* FIRSnapshotMetadata.h */, - FB6F6C615F9DDBC789DFFCF27A5A4D6D /* FIRTimestamp.h */, - 7DE3F12A4104B95ECC5D33585F2B19FC /* FIRTransaction.h */, - 723670DFB99CB45F1A29AD05F5655386 /* FIRTransactionOptions.h */, - 8DE6AB5CC3EE9A3BA6B521585F1461BA /* FIRWriteBatch.h */, - 2552CB02B0573E980CCAED11A00631C7 /* GeoPoint+Codable.swift */, - 3F531A6D2AF79F2DF20A587C0ED54AD2 /* QueryPredicate.swift */, - 666D51C7F3F97850D0AA6E1DA1DAF4E8 /* ServerTimestamp.swift */, - 9EB4B8EC4F3F2CEF67230AA16D378EB3 /* SwiftHeaderWorkaround.swift */, - 271AE5000ED7591DDAD46E197FE4C244 /* Timestamp+Codable.swift */, - 5C6357C4C2B37828068602F6AC47F45A /* TimestampDecodingStrategy.swift */, - 4881A7D2577D907EA8E4A60CCE2AB58E /* TimestampEncodingStrategy.swift */, - 21D241936E3D8C37A7A1808E4AC56341 /* Transaction+WriteEncodable.swift */, - 9D479250A1B38BDAA17C260830910FDF /* WriteBatch+WriteEncodable.swift */, - 3A04BCD8B1098077F3DE67997D248A4E /* Resources */, - 0B5A55375DE3933EC9F1681AEB6A2F78 /* Support Files */, - ); - path = FirebaseFirestore; - sourceTree = ""; - }; - 63B5020F8E8AB95B834B75D13A0506F3 /* symbolize */ = { - isa = PBXGroup; - children = ( - 814FD1BD56BFD5F9AF8EC2D62D084556 /* symbolize.cc */, - 6940CBE161A77C4573609F2454399AFD /* symbolize.h */, - 16C55C66D955EB8A867218F6EAF96DE8 /* symbolize.h */, - 471878165A1D90D55201DBE951BFA535 /* symbolize_darwin.inc */, - 8C244B2822C6F8E354631B271CE20E83 /* symbolize_elf.inc */, - 8968F4C0557CCA747924B3DD1823D1D3 /* symbolize_emscripten.inc */, - 5DF66492744F0F71B3BB61A61D5DED6D /* symbolize_unimplemented.inc */, - EA036AE934DAE90256888BFE6A34479B /* symbolize_win32.inc */, - ); - name = symbolize; - sourceTree = ""; - }; - 6641D86F17AEA94862F4F400746B1765 /* synchronization */ = { - isa = PBXGroup; - children = ( - 225A8B69D67E408B3FB2F67D6BF4D416 /* barrier.cc */, - 31BD454A2BAA1C264F35CC1FCE8B2CB2 /* barrier.h */, - 773079667F8A6819C33E2BD9C8087845 /* blocking_counter.cc */, - 1BCC80375CCDCD84BDC421B65D96B24F /* blocking_counter.h */, - 5A3CFB979B4D0F488E3FDB38D0839482 /* create_thread_identity.cc */, - 8A35364C377E8FDFC06BCD398D799554 /* create_thread_identity.h */, - 647F18AE81EB7B94400A3EE8335F499C /* futex.h */, - 3AA9456118AC11E10C746FC88554D3C5 /* futex_waiter.cc */, - 80C1FEA37B954E24A5EAE6965C8AD5F4 /* futex_waiter.h */, - B0C107E53C8C5BFAEB99A72D7F41694F /* mutex.cc */, - 03095AD9BB5250002B15B7ECAE5F38CE /* mutex.h */, - B9D52662045EE1F747EE72DB39052FCB /* notification.cc */, - 699D53B25E3969069B7BEF20E6E44A57 /* notification.h */, - 5F7D8845B3F3A0B2CE11CF5D9BCEF933 /* per_thread_sem.cc */, - B48AB02D0B00ABD75D07444A1F748E33 /* per_thread_sem.h */, - 66A11D7AB916FE02BAF0A2EB0938CADD /* pthread_waiter.cc */, - 555596575EA2254EC48D22553D6BAF88 /* pthread_waiter.h */, - 653BA8BE79F5F3572FB03321B39B1EB8 /* sem_waiter.cc */, - 11B89B6FB3D51204C9D6C4FF1EA5EFC4 /* sem_waiter.h */, - A3F114CE9B633564BCF708BB59BF66BE /* stdcpp_waiter.cc */, - BDC287F1C548D1BB52948EAEFE4CB38A /* stdcpp_waiter.h */, - 525B843E2307084D8AD49AB7D9829353 /* waiter.h */, - 1F88A409A6669CA9BE5D820AF941419E /* waiter_base.cc */, - E59A487B3E5B45F0C7A53999F80460DE /* waiter_base.h */, - DFB03DF2C9ECBA156F4CA31A01F5A448 /* win32_waiter.cc */, - 9A50E557A2EF4E9E9125BD2A9C3A6299 /* win32_waiter.h */, - ); - name = synchronization; - sourceTree = ""; - }; - 6A997A54CCD1A54DB9CF3A94622E3D6F /* stacktrace */ = { - isa = PBXGroup; - children = ( - 49C5DAC0E6990A9B6DB03260F874B1E9 /* stacktrace.cc */, - 245D595BCA2FDE6C28A36FBED6C420BF /* stacktrace.h */, - DA76DFACC30E6BDFA99A8EB43A3314EF /* stacktrace_aarch64-inl.inc */, - 8B0DC906BC2AC0AA17F22F6128432AD4 /* stacktrace_arm-inl.inc */, - CF5ED980F8CADD8CA7788403169B0861 /* stacktrace_config.h */, - C2E2BCCFA2B7BCB1FCA78A5DD204A9F0 /* stacktrace_emscripten-inl.inc */, - 6CBA20175DA726772DFBB285762F0FC2 /* stacktrace_generic-inl.inc */, - 34887DD7F0841ED43062C53A76C0AE87 /* stacktrace_powerpc-inl.inc */, - 320814AEB4C3B9E4465BE1D7F91A278A /* stacktrace_riscv-inl.inc */, - B988DB7D30B0AE7437E2C03324BEF55E /* stacktrace_unimplemented-inl.inc */, - 69B9F81F195DA892045916E3D81474CF /* stacktrace_win32-inl.inc */, - 7E0A3ACD9BB97D9FA957E960E37BFB1A /* stacktrace_x86-inl.inc */, - ); - name = stacktrace; - sourceTree = ""; - }; - 6AD1B01237D46BFBAF3EBCDB7596F66C /* city */ = { - isa = PBXGroup; - children = ( - 1A47D00AA45AFBCC540977B69D819BF3 /* city.cc */, - 0E4567D5E4DBFECB694CD4210682E4DD /* city.h */, - ); - name = city; - sourceTree = ""; - }; - 6AF34A169CE1464CC41B69B87A2A62B2 /* encode */ = { - isa = PBXGroup; - children = ( - ); - name = encode; - sourceTree = ""; - }; - 6B00423BE5DF8BD672323AD5E53D9F4A /* sample_recorder */ = { - isa = PBXGroup; - children = ( - 141D683E3C6700E7532C23EA0EB9CE21 /* sample_recorder.h */, - ); - name = sample_recorder; - sourceTree = ""; - }; - 6CC51E7BD09A5DC2F78E1FABE5E796A4 /* leveldb-library */ = { - isa = PBXGroup; - children = ( - 480F5224DFBF86913665D6E13339AC0C /* arena.cc */, - 3C728E3020B06F6CAB3DB3FAD0BF906D /* arena.h */, - E91C032FA93DD21F0BD17B8104FD5BBD /* block.cc */, - 980E233CBBC5D8ACC847ABB330406CE5 /* block.h */, - DFD553CBBB2C9FDCCA650778BBAF200E /* block_builder.cc */, - FA65548EC8F192591889DD41A0B84D6F /* block_builder.h */, - 035E72673CDE20631151671BA55C298C /* bloom.cc */, - 5466BD215FF585DD731B89616F3BEA11 /* builder.cc */, - EEEABAAD9E73FD2740E879EF4CE368D7 /* builder.h */, - 58ED0090FBA5948F913DB3757FB9E8B2 /* c.cc */, - B3A7DE1D28003AF9437D573960C616EE /* c.h */, - 3E4A358E82619F552C4DD27A89130AFE /* cache.cc */, - 81D094A0D7334E880AA652CE915F752D /* cache.h */, - B70CF70BDAC0780AF60E01692DCE7E92 /* coding.cc */, - 790D7EAAF52205F72B1A52F9320AE170 /* coding.h */, - FB68221E8E4BAA917D1D052E90433310 /* comparator.cc */, - AA649EB6E423897080FF675EFF8F904E /* comparator.h */, - 5888E6984CA7E97FD8D4A960427015AD /* crc32c.cc */, - E381019C7CB6FA208B05FEA9CB6DE715 /* crc32c.h */, - 4F2C3E6E52A04136909458121624FCE2 /* db.h */, - 4B6446551CB28B6CE354E94294B0D6F5 /* db_impl.cc */, - 185E5E41334B0B28D1168C0C6AF102A9 /* db_impl.h */, - B9EE0AFD542A3838411A97FCA585B5C7 /* db_iter.cc */, - ECA9A081CF9A097273D03822BB820BBE /* db_iter.h */, - 21CCD26320401BC5D647DF80CC3264C5 /* dbformat.cc */, - 68F939F9B85C3E40044A7494ADD3C3FC /* dbformat.h */, - 0582A0F8DD2672A4EDB376B7325392CD /* dumpfile.cc */, - 518562F7B0AAB615BC5E2CDDA5944150 /* dumpfile.h */, - 27D6555784EBBAB6FBF29431A2809B19 /* env.cc */, - A6091CE2A7ABE8C0E833346D011AA42F /* env.h */, - 5C39D82CA92FDE9ACF5AEDE91070E1E8 /* env_posix.cc */, - 3A3FBCB7529A7BE0204C9C96A2F6742C /* env_posix_test_helper.h */, - 049E42F07C50A318EDB6F3727B48D740 /* env_windows_test_helper.h */, - C6EF64F064B15AA63A654922071B0EF3 /* export.h */, - 215B5819E6BA14A6E0CC1F70205C64B8 /* filename.cc */, - 7348E7ADC62324AC8CBC8EE3CAB0EF11 /* filename.h */, - A20A9F709789F8795BB53C31C9E1F450 /* filter_block.cc */, - B53F2DA90948F2C4A6093179B05FEF74 /* filter_block.h */, - 73DFA33C6BB0BA1D4754FC37AED81FA6 /* filter_policy.cc */, - 334E09D644A26D6D3ED793E245B04B12 /* filter_policy.h */, - E809C3B836CC6FC3406D1FBDC7024CF5 /* format.cc */, - B9019D5AFF0EEDB1C6CD4D8C43AE575C /* format.h */, - 3A32C036DD3AD5A5D7A56C08C8FD12A2 /* hash.cc */, - 29B5C3AB40E68733A78598DE88A3B3A4 /* hash.h */, - DCF9475AEEE597A575C32D2855977A52 /* histogram.cc */, - 134840C7D0D0603AAEAA49C588652098 /* histogram.h */, - 2D5D84AD79A6230C543A2B0D6D96237F /* iterator.cc */, - 8D8C69E2BF54206031457C69AC5DF92A /* iterator.h */, - F3CE9412F2A90EAEBF84CBC0CE8F2821 /* iterator_wrapper.h */, - 677D68E7D070231927304F8F8D4EDBE1 /* log_format.h */, - 295B98A6A813F5792654CB2387ADD67E /* log_reader.cc */, - 14468A2427543CDEF697D838BB82834F /* log_reader.h */, - 6A0ED6655C2A724627F62869A0B808B2 /* log_writer.cc */, - BBBCAD8F7E1FBE06AEF65E96A7346B35 /* log_writer.h */, - AA5B3A3069C91D5089B50800F74BE4D6 /* logging.cc */, - 4DEA4516A4EA4A1477F8EB12DD551489 /* logging.h */, - 485F7973D1BD72F32A19A3D38784AFE0 /* memtable.cc */, - EFD72C40E9CD9C4693CF07898A33B59F /* memtable.h */, - 94C5A5BDB13AA6DE1790E6083C140F3C /* merger.cc */, - FE44E1E32D1BAE72F8532575EDE31C5D /* merger.h */, - 9CF5B4795B0EC0B78329045F16EF400B /* mutexlock.h */, - 049E32B76FA13134E08C57B6186A7F23 /* no_destructor.h */, - 986A4789A7C9328FBF891969A1E85431 /* options.cc */, - DA0FD2904EEE9645ABB8A3B73979E2AE /* options.h */, - C2DB7FCEC58C74894DB824381DD8248D /* port.h */, - BBB88857142E95504AB1DDB4601E4CA2 /* port_example.h */, - B14C077E2D227F6200413E5BA1DC7F84 /* port_stdcxx.h */, - A4E940DCB0EEE2E3A7B7546DD74E6C9A /* posix_logger.h */, - C3E84A810B922C5E5935039DC365ACC1 /* random.h */, - 4BFC8237077EBCE1518505C28091387A /* repair.cc */, - BE6D66DB900221E4BDF80B1A5D5A372F /* skiplist.h */, - 655EAFF8532D772E7ED748CE96E0E0B2 /* slice.h */, - 40E3EDEA4551A74281832A6BA525C702 /* snapshot.h */, - D6D239552CD811E20244E26BB616F08A /* status.cc */, - E24AFDF47D803630FD14FD6C9F862657 /* status.h */, - F550FD3AD7B46A24694AC4C46D290CB0 /* table.cc */, - 90BB263A6820C1D0DE614AA5A4F17ADC /* table.h */, - 0AF7CF301381F42935D77DF371945126 /* table_builder.cc */, - FD24DF6EC143779410BE4E8448F1EF65 /* table_builder.h */, - DD807C0E6305A0567973C80989D2EE1E /* table_cache.cc */, - 8A880624FA29148BD175E18911D13A75 /* table_cache.h */, - 62FB710546C7F9765D9525DD5879D3B5 /* testutil.h */, - CCAA3E72926582C0B2C5883B07BE6229 /* thread_annotations.h */, - 0B9F2C90A1C8D2544885FCDDD5A9E983 /* two_level_iterator.cc */, - 183DC523ADF123FDC1D135AEE622BE7C /* two_level_iterator.h */, - 949699F686551496E0DD26B33850AF33 /* version_edit.cc */, - 7823CF5F7C76207F91552F86BAD252EB /* version_edit.h */, - A9B76DD8640345C6A41FBDDFF76E558C /* version_set.cc */, - 10A6CAAE1A2B8DADC9FF51F6FA44F56A /* version_set.h */, - 81FC4644FBBC5CE0543087F33D0D9C15 /* windows_logger.h */, - 9B5648D2A64C89BC0868077DBE0C33B2 /* write_batch.cc */, - AAA572C6A388CE8ECF77CCE4E0A371CA /* write_batch.h */, - 98C22C0EA2011D0EBCB4F76A04ECACD8 /* write_batch_internal.h */, - 8B0A2FF996C2CBAD33B1BA45EAE75F5E /* Resources */, - 2F2C3FD3D66B77A9F1BB49788A0EB7EB /* Support Files */, - ); - path = "leveldb-library"; - sourceTree = ""; - }; - 6D602D24DD91D2C10906D81C6A086ED8 /* distributions */ = { - isa = PBXGroup; - children = ( - 3F63F8F026478B0D6CC88861FE70F74E /* bernoulli_distribution.h */, - DB22B5965687EE84D1C2CC5B2FF2C42A /* beta_distribution.h */, - 429E57C5FAFF1A8A7078A12812786436 /* discrete_distribution.cc */, - 54F6D782C4787A708D1AA3C1246C4BDB /* discrete_distribution.h */, - 31DD511EA4F209439E9E6C990100DBD6 /* distributions.h */, - 772B3DD16BA9C4C2298E58C933898B31 /* exponential_distribution.h */, - FE6C2040B420513CA7C9174EDEAA6472 /* gaussian_distribution.cc */, - DBFCA5F1C373109B2AFB12B2FCB779C1 /* gaussian_distribution.h */, - F733A4F23582D63CA92CE1B68C7DD2DF /* log_uniform_int_distribution.h */, - B8AD67E13087323426D2E64BE8A8894F /* poisson_distribution.h */, - 96C25883D883BF9E1646A4DE81895132 /* uniform_int_distribution.h */, - 9D138605ED78A5D37B233341E030A1E0 /* uniform_real_distribution.h */, - 30EA548B6BDF330CC26B59E726325DF6 /* zipf_distribution.h */, - ); - name = distributions; - sourceTree = ""; - }; - 6E1DD3181D152BADBA8720FEB3C21DD3 /* SVProgressHUD */ = { - isa = PBXGroup; - children = ( - 6A559BFA6F00F83BEBAC3C38D228CAA3 /* SVIndefiniteAnimatedView.h */, - CA338B4AE4EF61D296AE0C8748532C70 /* SVIndefiniteAnimatedView.m */, - 81D7B45C294884A22E759AB937721BEB /* SVProgressAnimatedView.h */, - 616920BBF6C40C6A9F8BDA0F528963D7 /* SVProgressAnimatedView.m */, - CDA60357B4D46E26032ACB4251D97212 /* SVProgressHUD.h */, - 275FEDB9C39EEC8333E7EF0A4746E923 /* SVProgressHUD.m */, - FB8F8191E1A36940BF4383AD856E9FB4 /* SVRadialGradientLayer.h */, - DD25B8FAAD8A918B9E77BBED2ECD8D0C /* SVRadialGradientLayer.m */, - 57CD2359538A5034387A950DE01E3D13 /* Resources */, - 0A62FC0091EC468EB57BD4E8D30EC033 /* Support Files */, - ); - path = SVProgressHUD; - sourceTree = ""; - }; - 6F07E9EC5A86D0D25B90EC0C12F067A2 /* Firebase */ = { - isa = PBXGroup; - children = ( - 13F048FA4C107A026F6497CB5EAB6ECF /* CoreOnly */, - B44D76BB6014F4C851B413C687117138 /* Support Files */, - ); - path = Firebase; - sourceTree = ""; - }; - 709B435A2CCDF0D64F96A211EB01845C /* Core */ = { - isa = PBXGroup; - children = ( - 64ED43DF3F74D112C447D90F78752B6F /* GTMSessionFetcher.h */, - 7E8A3242FE3C9A5696BA654462C49499 /* GTMSessionFetcher.m */, - D8AF2CE2FE92DE9FDE3082B617ADC6B7 /* GTMSessionFetcherLogging.h */, - F4E81B55416E18B6BAFA901708B3F6E1 /* GTMSessionFetcherLogging.m */, - 817E79FA2A0122F11C686EA62F93716A /* GTMSessionFetcherService.h */, - BDB235502D6D11BC502CEBF7FF8A457D /* GTMSessionFetcherService.m */, - 36A7955A1BDC65EC0B9461673F12D08F /* GTMSessionFetcherService+Internal.h */, - B079B63B5B748E49CCF3086A6ED2120B /* GTMSessionUploadFetcher.h */, - AE0D56A47912A9FCA2EE667A828A8053 /* GTMSessionUploadFetcher.m */, - BF034EDBD4331D15853B103876A63113 /* Resources */, - ); - name = Core; - sourceTree = ""; - }; - 71F816FD73E33BEA28D3101639A6DEC7 /* core_headers */ = { - isa = PBXGroup; - children = ( - 6985E67F9F9BAF9D848A6D8A9D53B6E1 /* attributes.h */, - B37E9DE4395ED895AF8C88D4DE4C90E0 /* const_init.h */, - 4D0B9B2FE37F43B4F25A2BECF4735F07 /* macros.h */, - 66C633050ED284A82E1EACEF72B68595 /* optimization.h */, - 540B41F89BAFA3F34B2C71EB167A0035 /* port.h */, - E238E7B3F245300749B6273232A5AE54 /* thread_annotations.h */, - ); - name = core_headers; - sourceTree = ""; - }; - 74AB3EACC02E18E0B76B1487FE67ABD9 /* FirebaseCrashlytics */ = { - isa = PBXGroup; - children = ( - BC977C9DCFC36103E97AED1529C22521 /* crashlytics.nanopb.c */, - 3DF9BFEBA9E5D2514AA367CFFB5827F9 /* crashlytics.nanopb.h */, - CA6C07109E071FA6F5847EF4BE130E9A /* CrashlyticsRemoteConfigManager.swift */, - 14785BE7D14964A090C7361A39B3C002 /* dwarf.h */, - EA0B9D2B13E412C8C21E8095C073F2E6 /* EncodedRolloutAssignment.swift */, - 7B8C784A706BF12261DC559AB2BC18F5 /* FIRAnalyticsInterop.h */, - 5C3AD1A4A5A3AF2CB48C16F61B21809B /* FIRAnalyticsInteropListener.h */, - 32116F7AE9C9FB401D3C67428751ACE5 /* FIRAppInternal.h */, - 1B21CCA5C4CCE632749692B46258034E /* FIRCLSAllocate.c */, - C482D451BCF333482DB5BFCEA19970FD /* FIRCLSAllocate.h */, - 543CCFF0298B46D95E0DD348E8647127 /* FIRCLSAnalyticsManager.h */, - BA973D279F00455744D1BCCF98248AFD /* FIRCLSAnalyticsManager.m */, - B964CC1CBFA6CF6CFB29F3D07D6EB4FA /* FIRCLSApplication.h */, - 7466136C0FF3925EB2E4D5B171D132D6 /* FIRCLSApplication.m */, - 54A2561A106348D7495F55FD8427147D /* FIRCLSApplicationIdentifierModel.h */, - A6F8C38A7F68C40E0660CEB9DBD02DBF /* FIRCLSApplicationIdentifierModel.m */, - 104923947A2F0862D3AE3029F8995CC6 /* FIRCLSAsyncOperation.h */, - 86F6ED6CC53DF9ED048C3195D85BEBA5 /* FIRCLSAsyncOperation.m */, - C6DF9341678074928BCC2DFE10495C02 /* FIRCLSAsyncOperation_Private.h */, - BF8E30C19C12C72F0E35DFCDB40BBD15 /* FIRCLSBinaryImage.h */, - 45BEBB6AA9731FA724230DED5D41072E /* FIRCLSBinaryImage.m */, - AA89A569C790F3C2FFA41763333C8C9E /* FIRCLSByteUtility.h */, - A9B3FE469DD0B5A1276789ACA9AAB685 /* FIRCLSByteUtility.m */, - 883F768208538163EC1A5E93E57ECBB1 /* FIRCLSCallStackTree.h */, - C44019501FF2F21C08D2ED5F9C53DBFB /* FIRCLSCallStackTree.m */, - 2049B8C4F1747E3F69D27F3B117169C0 /* FIRCLSCodeMapping.h */, - 34DB006E2CFF708BD8173C3874A65A9B /* FIRCLSCodeMapping.m */, - B93A2E707AC52AD71684F62FDF71230A /* FIRCLSCompactUnwind.c */, - 8CBA604D93760F312A6A90A71A90F216 /* FIRCLSCompactUnwind.h */, - C179F184CD9E03E11DF9E1B86964DB99 /* FIRCLSCompactUnwind_Private.h */, - B621AC370A6E3D28514C79CCAE9B99C5 /* FIRCLSCompoundOperation.h */, - 24332D51B5024AD7171FB9A93FD65416 /* FIRCLSCompoundOperation.m */, - 3EB8E9489AB4CAC23FCC5179F97020B5 /* FIRCLSConstants.h */, - 1A33A1E5D20B8477CB9A4F90A60936FE /* FIRCLSConstants.m */, - 98931D8E1E59C07C242C77FC6EBA71A5 /* FIRCLSContext.h */, - A82A877BFCE716D5F48A37F125C1250B /* FIRCLSContext.m */, - DA70BAB941C57EFD0621E670A1D93E6D /* FIRCLSContextInitData.h */, - 668C92575D4E6847B5462460C7686A8D /* FIRCLSContextInitData.m */, - BE084E00520104B22C5354E4F03F42F3 /* FIRCLSContextManager.h */, - 87011C25E1759C3DDD2F624C0FDDB622 /* FIRCLSContextManager.m */, - E4C1B1E4F10A5E5AD43039CB1713460B /* FIRCLSCrashedMarkerFile.c */, - 7101CAE41E32679BFEA4F6E4F787A5D3 /* FIRCLSCrashedMarkerFile.h */, - 48E030CA1DBBB8F76F7250B9547A537B /* FIRCLSDataCollectionArbiter.h */, - 533A3F058CD229E527B926D584E2DC4F /* FIRCLSDataCollectionArbiter.m */, - 46A5DA72F06B8E51E5DE4ACDED3F979B /* FIRCLSDataCollectionToken.h */, - 72E222B117AFD17335D09F472DB13860 /* FIRCLSDataCollectionToken.m */, - 282CA64FE46A8D2AC36F6CA8CCFAC0CB /* FIRCLSDataParsing.c */, - F395321142D6CDA9A611386F56D4A221 /* FIRCLSDataParsing.h */, - 174ACD16B7981F8C46CF7BAF95875B7B /* FIRCLSDefines.h */, - 62BBC750A21E60EDD5F15CC56B207B48 /* FIRCLSDemangleOperation.h */, - D1B913C6176C39A65BC7362F2C82766F /* FIRCLSDemangleOperation.mm */, - C2FAC50D6B78B4D9FEAD39D3DC3563D4 /* FIRCLSDownloadAndSaveSettingsOperation.h */, - ACCF12F06E22F7FB1B9CB3B580BFAEE5 /* FIRCLSDownloadAndSaveSettingsOperation.m */, - C32B62C808355183D0EB0B124102FCA5 /* FIRCLSdSYM.h */, - E63352C0FD8FC0F0CB0E6887931BCD0A /* FIRCLSdSYM.m */, - 11A3E6FDA466ED1263CC76825612963E /* FIRCLSDwarfExpressionMachine.c */, - A4C42CD51ABAFFCFC32FA5BEE570463B /* FIRCLSDwarfExpressionMachine.h */, - B618EA555AF34BE7E009BFBF967B19ED /* FIRCLSDwarfUnwind.c */, - 528DCF32D6BFA6C44CF67FCD70C31AA8 /* FIRCLSDwarfUnwind.h */, - 2FFCE82F95B7D25A8CFE76C42FB60706 /* FIRCLSDwarfUnwindRegisters.h */, - B5B4BEF93513FC20B1B96C083FB60D26 /* FIRCLSException.h */, - C3CFCE66FB4F00FC2DB631AD1F92891F /* FIRCLSException.mm */, - A7286A79533D55205A3008D930E519C8 /* FIRCLSExecutionIdentifierModel.h */, - 134CB4CDAA98768B33C5872A9E382FC5 /* FIRCLSExecutionIdentifierModel.m */, - 7DEF5B9C507DD9520547070C0495D7AE /* FIRCLSExistingReportManager.h */, - AEA9A642C5AB014E46B6B6AF751EC236 /* FIRCLSExistingReportManager.m */, - ED57507E96A306F291F12852ED022D14 /* FIRCLSExistingReportManager_Private.h */, - BD761AB1271AA95FBDFF50E6D4986BAB /* FIRCLSFABAsyncOperation.h */, - 043FE77117A8723FEEF1C562E4296120 /* FIRCLSFABAsyncOperation.m */, - 5929E7AACC00D2B84ACA8998EB1EDE86 /* FIRCLSFABAsyncOperation_Private.h */, - 098FFED98E690B7546A0AF161BD0A22A /* FIRCLSFABHost.h */, - AD4139BF94555B0D8B8FFADC80D07DFF /* FIRCLSFABHost.m */, - 39530BECEB7DC82CEF4C49E1405472F6 /* FIRCLSFABNetworkClient.h */, - DAB2B3FFC2ADA18DEE3A9DD9041E3F7A /* FIRCLSFABNetworkClient.m */, - 38451210B32A429AF18C08E5E840DD0F /* FIRCLSFeatures.h */, - 19BD5D0CE772AD041A5DF08A1A6B6B6C /* FIRCLSFile.h */, - 5946CC9409641098A46E5EF5CABFDBD1 /* FIRCLSFile.m */, - 000A488243591DDD27E9466344E34382 /* FIRCLSFileManager.h */, - 4E53EEB8701A551222C0713F956847E9 /* FIRCLSFileManager.m */, - FA2F98EBA8D61A7FFBABD405666046CA /* FIRCLSGlobals.h */, - 2ADF4FFF4159C231B7B79C3445CEC495 /* FIRCLSHandler.h */, - A9ACEAFC24190BF54454B99BAC69B7C4 /* FIRCLSHandler.m */, - 9EEAA2E6F49A772854306257A0A69E15 /* FIRCLSHost.h */, - 53022787AA4C2FA7717396CF30C3B88B /* FIRCLSHost.m */, - DE9F22DB1F0471DF342F5F9CA90466D8 /* FIRCLSInstallIdentifierModel.h */, - DDAA9B6C2AC94635766B7B3BCF3EE0E7 /* FIRCLSInstallIdentifierModel.m */, - 04E6A19DC49EEB947A6CB9068FFC1BCE /* FIRCLSInternalLogging.c */, - 4F6E8BA159864A5693FD54D42CC8E870 /* FIRCLSInternalLogging.h */, - 22C6B4E7E2B46974DE058592B1DFA0EF /* FIRCLSInternalReport.h */, - 84E17B108444DEAD973992DCF69AA1AC /* FIRCLSInternalReport.m */, - BE97BB56ACC410C93311B4E56EF30AE8 /* FIRCLSLaunchMarkerModel.h */, - 79201FA101A8FC3670A3149E43C1BC4B /* FIRCLSLaunchMarkerModel.m */, - 2F961FF3A9FE42273D2AB0CDE2D478EF /* FIRCLSLogger.h */, - D0C84638E91F8DC5F8C21B38F4F5D964 /* FIRCLSLogger.m */, - 49FFFB1F48FB5414361D7103A3B727F2 /* FIRCLSMachException.c */, - C09B2F669DCEB0F2B72D29D502861FDF /* FIRCLSMachException.h */, - 184D0F1D2CBBCE530C969D61C3148193 /* FIRCLSMachO.h */, - CB75970F75C3611B83EA9301E25B7A41 /* FIRCLSMachO.m */, - 7139A52BAB39FB896881E85749222BE7 /* FIRCLSMachOBinary.h */, - 124DA91942EC9EDED9C0E35980E7D45D /* FIRCLSMachOBinary.m */, - 9896E0A6899B178D38E0E7CE0420434E /* FIRCLSMachOSlice.h */, - 08BBBCDDB9393F9A5A5A3D189CEADC6C /* FIRCLSMachOSlice.m */, - D8DC41AE046B5773474D1D79CCD11234 /* FIRCLSManagerData.h */, - 596911898B1116E1F806F4BF24DC0E28 /* FIRCLSManagerData.m */, - F74D29F19DA3AC281172E32A6A5B041B /* FIRCLSMetricKitManager.h */, - 0ED1044B5302231CCA6BAF17446E983E /* FIRCLSMetricKitManager.m */, - C351FAB6D0438CDA0C91B19D1DD94F7F /* FIRCLSMultipartMimeStreamEncoder.h */, - 105A4DAB33F487045ACE6D834A5A73F4 /* FIRCLSMultipartMimeStreamEncoder.m */, - A00E6C612EA0D1DCE156920BA73E1CDC /* FIRCLSNetworkOperation.h */, - 593DCFCD42CCD39D230AB33B63B17DFD /* FIRCLSNetworkOperation.m */, - D12482B8C7FB36C95BAB546A811ACF7A /* FIRCLSNetworkResponseHandler.h */, - 0BD950FAD8F0D263C2C406F9D6C33F19 /* FIRCLSNetworkResponseHandler.m */, - 939D524C38100F8303FF198514B148BC /* FIRCLSNotificationManager.h */, - 5ED67CB8C5776AE230AC50697A8B757D /* FIRCLSNotificationManager.m */, - F2E219CCF3C3C2C97A2B74C598B5D036 /* FIRCLSOnDemandModel.h */, - D0451B9E2379E68A456E903A0B500C22 /* FIRCLSOnDemandModel.m */, - 34028752B8769DC313F80DF0AE124C7C /* FIRCLSOnDemandModel_Private.h */, - E45B8B4DE103400D00478ADB1BC889C6 /* FIRCLSOperation.h */, - 9E297954265022E3BC74E4DA17BCE56D /* FIRCLSProcess.c */, - 0621A4A5CCDAF62288BA5D7C16F59692 /* FIRCLSProcess.h */, - AE0F8B68EBEACD09E471B19186128B02 /* FIRCLSProcessReportOperation.h */, - 0E574C58E4F00B56C54201264F16613D /* FIRCLSProcessReportOperation.m */, - 3D683222EADB3B805254E0924BA18FBE /* FIRCLSProfiling.c */, - 9965819348BECCC8796F16244D88A007 /* FIRCLSProfiling.h */, - 19C13FF01C66F51825794CD24244F00A /* FIRCLSRecordApplication.h */, - F1646B82A6B890614F9861D5502A3479 /* FIRCLSRecordApplication.m */, - C19D2B0B2DD1F22EAA581FA16022A730 /* FIRCLSRecordBase.h */, - 483801BC67853449A59C94FC58F717B3 /* FIRCLSRecordBase.m */, - C301D3C25F08154CEF930E86CEA15211 /* FIRCLSRecordHost.h */, - 057AC81F3A4A3BC698221A8438A798E5 /* FIRCLSRecordHost.m */, - E0F5CA0B9C9BCAD27A3B7A56970AE61C /* FIRCLSRecordIdentity.h */, - A9A650C982DC2FFF0F18F92C613162FC /* FIRCLSRecordIdentity.m */, - A27829C72F9612DAEF484A5ED39A3225 /* FIRCLSReportAdapter.h */, - DDAB802048E62E0EAB4B6C1DC021AFC5 /* FIRCLSReportAdapter.m */, - 3367105CBF858FA11344940809B977E2 /* FIRCLSReportAdapter_Private.h */, - FA8454185AABA824F7F99D112380AE56 /* FIRCLSReportManager.h */, - EC866B1FE4AC7A2D4D5E98C14D6D5BF4 /* FIRCLSReportManager.m */, - 905624B87CDF0A6866A9919680A130CA /* FIRCLSReportManager_Private.h */, - E15F03B4EC78BA15BD2526D25D8E2AFA /* FIRCLSReportUploader.h */, - 0B313D9447AEDA32DF3046A1B58B70DD /* FIRCLSReportUploader.m */, - 4F8AF5FAB3F44583218E890679BD51FE /* FIRCLSReportUploader_Private.h */, - FEBAB354F0C19921E2EC8B159AA1B6D2 /* FIRCLSRolloutsPersistenceManager.h */, - 24AD98ABA935C1301785802C1305A91E /* FIRCLSRolloutsPersistenceManager.m */, - 523DF9DE0AC5FDBD77D7C992E9094BCA /* FIRCLSSerializeSymbolicatedFramesOperation.h */, - 12DAABAF4A6BA8C7B3202093E04F4BB9 /* FIRCLSSerializeSymbolicatedFramesOperation.m */, - DA4B4193E71B3A6C6EA3CB751ADFFAD9 /* FIRCLSSettings.h */, - 03B98F20E5478D679A5C838AE3B998E8 /* FIRCLSSettings.m */, - ABF98F0DD1CFA2A74F2731004493718A /* FIRCLSSettingsManager.h */, - BC3CACC388D0FEB778FBBB52BAB3BBCD /* FIRCLSSettingsManager.m */, - 994C92B6C8EF13F1B02AE6B98BF69C31 /* FIRCLSSignal.c */, - 32ACF4C32A486D6DCB2ACA733E6CF816 /* FIRCLSSignal.h */, - 0B55289F2CF8DECFA78C7DC277C6037A /* FIRCLSSymbolicationOperation.h */, - 4668CBE38C4B8D4B2B38B7FDC108B964 /* FIRCLSSymbolicationOperation.m */, - 8808350D4AB4E9979836454BE8BED12A /* FIRCLSSymbolResolver.h */, - 636BE31955BC8052A67AF0703AAC1583 /* FIRCLSSymbolResolver.m */, - A2AF1F27FF94ECA2A39C0C52BB780388 /* FIRCLSThreadArrayOperation.h */, - C6A52AA6EF52C19D5A273312A4DB9E84 /* FIRCLSThreadArrayOperation.m */, - 620DAE10F967B7FB8673A1CB378B91D5 /* FIRCLSThreadState.c */, - 177AF513C4B5E6E524CDAD1A5F6F3421 /* FIRCLSThreadState.h */, - F31DAACA30C2A66CC1EDE7E6712214ED /* FIRCLSUnwind.c */, - F0D38774D8A3C67B277D173F84A00A00 /* FIRCLSUnwind.h */, - 817F3C8002AAB7488BB3F4E01ACF36DB /* FIRCLSUnwind_arch.h */, - AE25C6BC09D11A6EFE958A15BDB92F5D /* FIRCLSUnwind_arm.c */, - A1CA09DEACB4D4B165926367BB3D4005 /* FIRCLSUnwind_x86.c */, - 4B3E3CCB86C9341E6317CF79D27633B3 /* FIRCLSUnwind_x86.h */, - E35C3F3CC723E919C3CF8C1812245F1D /* FIRCLSURLBuilder.h */, - 9E518A19114C10A68E28DE2975FAB0D6 /* FIRCLSURLBuilder.m */, - C90C398B456A6033B1210F26E251B471 /* FIRCLSUserDefaults.h */, - 0D9F2B8A4E863C351E9BE537D8D1248C /* FIRCLSUserDefaults.m */, - 821E26753FFB4CC5BABD7C9DDA170905 /* FIRCLSUserDefaults_private.h */, - F371E301E46A3B0AE1778D00BE3F8F59 /* FIRCLSUserLogging.h */, - 54751C93D2109661693F6700D3F4CD01 /* FIRCLSUserLogging.m */, - 9957BBD89DD92135DFA9B09609D65C6C /* FIRCLSUtility.h */, - 65180895495218B189CAF4E8418A4439 /* FIRCLSUtility.m */, - B6177EFBB40644B65755BD1CABB1172D /* FIRCLSUUID.h */, - F1D37B924EE99416F9872D7628505B2C /* FIRCLSUUID.m */, - 02E8151877F9DB73322F11737CB5A700 /* FIRComponent.h */, - 6C005E022D754437F80965CCF88E33A0 /* FIRComponentContainer.h */, - 92CB3F9044CB91BD0E927408F5BE5664 /* FIRComponentType.h */, - A2ADD0B7C6006D2F704FA4F28F09C772 /* FIRCrashlytics.h */, - E9D6CE07524773BECC31629CCFC4EDE6 /* FIRCrashlytics.m */, - 6368BC1DAAE96CD0FFEF8B063DACFA8B /* FIRCrashlyticsReport.h */, - 5B421109535ED3EDB1A347D271165752 /* FIRCrashlyticsReport.m */, - 4F0702C55C3328F13C3152C0EBBF72C9 /* FIRCrashlyticsReport_Private.h */, - C52F2C782EF863DD3EF0A42593DBB377 /* FIRDependency.h */, - 8E749E738AA3F2E6E80A6A239A940EF4 /* FirebaseCoreInternal.h */, - 128460CA611D9E3076AA2B9EA1183A43 /* FirebaseCrashlytics.h */, - 19CCD4B9BD83A311A541DF2B3B70C0B3 /* FirebaseInstallationsInternal.h */, - A5F0AEA0E5657962FA349FA5F57CEDA2 /* FIRExceptionModel.h */, - 4F498B9F986381F36753D0C8D81A3A6E /* FIRExceptionModel.m */, - F6D92F906E037E391DBD7DC8B9B88CA9 /* FIRExceptionModel_Private.h */, - BE7293D29866A8E78748CFCB74C84DF2 /* FIRHeartbeatLogger.h */, - 9A47160F3FE49EA34A3B1DC3D08AFA39 /* FIRInteropEventNames.h */, - 23290E311FC66A357367C44883F62C3B /* FIRInteropParameterNames.h */, - C3B81B2F9699D14C1D4919A74F949E47 /* FIRLibrary.h */, - 101A67AFBAA99A5626FFE6E69F491C95 /* FIRLogger.h */, - 45EF5FDCBD21BEAFFC5381F26C50FD3B /* FIROptionsInternal.h */, - 4BB8F11689CC32F34D2631A80E7D9D1F /* FIRStackFrame.h */, - CB0EA04DE1EF452033480844DA356595 /* FIRStackFrame.m */, - A973544F3E56E140D6043602A49B7BB7 /* FIRStackFrame_Private.h */, - AA8C86F0A325CFEC1BA870C8FC8DC539 /* StringToHexConverter.swift */, - E087B6AE9E0E9EA4B1694AABA9ADBF20 /* Resources */, - 5BA7C23577EF7773A59150122683B5DF /* Support Files */, - ); - path = FirebaseCrashlytics; - sourceTree = ""; - }; - 74ADDD3DC926997898B4CFA5AFD964B4 /* seed_sequences */ = { - isa = PBXGroup; - children = ( - 4BBD474D5EE322968E2AF8A2C3F31C2E /* seed_sequences.cc */, - B027159E4C3BF871FA7457D3A4C542D3 /* seed_sequences.h */, - ); - name = seed_sequences; - sourceTree = ""; - }; - 759199B100992A9185EDA39E9D9DB49C /* string_view */ = { - isa = PBXGroup; - children = ( - B958294CBA68C5295BC2E314779BE8FA /* string_view.cc */, - E610A9E142E5F041F6267D8CE495C9B3 /* string_view.h */, - ); - name = string_view; - sourceTree = ""; - }; - 76AB232529A5F5794CB14CA6FA3CCEFD /* status */ = { - isa = PBXGroup; - children = ( - EE648F003AD492162F8CD40A9497CAF2 /* status */, - BE60B4EF0D801293BA2E2817969DBACE /* statusor */, - ); - name = status; - sourceTree = ""; - }; - 76CF7E024F88B38083C552DBAFD861CF /* private_handle_accessor */ = { - isa = PBXGroup; - children = ( - 6B56ACEDE1FFC7DC50D87477D39B6CC1 /* private_handle_accessor.cc */, - C3DB0CB5BA6B82ED5AC30036F6A10343 /* private_handle_accessor.h */, - ); - name = private_handle_accessor; - sourceTree = ""; - }; - 79A0A47C57711B460E2F44902935AA55 /* cordz_update_tracker */ = { - isa = PBXGroup; - children = ( - 0ACBAE3969A3D1702571ECB0997BBDD3 /* cordz_update_tracker.h */, - ); - name = cordz_update_tracker; - sourceTree = ""; - }; - 7A79597CEF1422503E6A6A26BDEDA96A /* Resources */ = { - isa = PBXGroup; - children = ( - 6454242E33ACEFA7663F3523F6830DD5 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 7B83BC828D1E878E1A2FEDEB3E178484 /* prefetch */ = { - isa = PBXGroup; - children = ( - EBFDA5E489683EDAA72BE5A16AF92078 /* prefetch.h */, - ); - name = prefetch; - sourceTree = ""; - }; - 7DB401FB396D9CD062FD413A1E485DCE /* gRPC-C++ */ = { - isa = PBXGroup; - children = ( - 60F45BED43CCB82C8485123275D451C1 /* Implementation */, - 93FC541863280F33D64A5073E68DA9E8 /* Interface */, - F67B0A2245469438CCF26569FEE85ABF /* Privacy */, - EC00EE5D8F4AC3506BFE286F26208B03 /* Resources */, - 11FDDEE0C20FF1F7441D94086ADF7797 /* Support Files */, - ); - path = "gRPC-C++"; - sourceTree = ""; - }; - 7E14A5F66C05117EF5576A6D4BD14AF6 /* has_ostream_operator */ = { - isa = PBXGroup; - children = ( - 687F7FE1B0F72E08BAFF3DBC67D66902 /* has_ostream_operator.h */, - ); - name = has_ostream_operator; - sourceTree = ""; - }; - 7ED1008FCFBDB2C8A72FDDEA2177A397 /* pcg_engine */ = { - isa = PBXGroup; - children = ( - 25BEEDBD97ED202DB6B60D1D95C326C5 /* pcg_engine.h */, - ); - name = pcg_engine; - sourceTree = ""; - }; - 80343793BEC9D0501286E93F808868A6 /* non_temporal_memcpy */ = { - isa = PBXGroup; - children = ( - 4253748157F0B01577CAC8A47A9F6181 /* non_temporal_memcpy.h */, - ); - name = non_temporal_memcpy; - sourceTree = ""; - }; - 8087EAB4A4AAE868871BFAE6267F0ECB /* pretty_function */ = { - isa = PBXGroup; - children = ( - 9FEDB7210C3BB15A78710859E3DD9FDA /* pretty_function.h */, - ); - name = pretty_function; - sourceTree = ""; - }; - 809CED40D81E41E7AD73732DEF4048E9 /* any */ = { - isa = PBXGroup; - children = ( - 995BF4F9223E8AFDECEBF12CD550AD29 /* any.h */, - ); - name = any; - sourceTree = ""; - }; - 80D3BC66C3ACEB394A1AC0455F2B64B2 /* DeviceKit */ = { - isa = PBXGroup; - children = ( - 79A77DDCFCACADBCDC6D0B7F242C5D95 /* Device.generated.swift */, - BD9DC31901641D8DEF8F10107B96EF1D /* Resources */, - AAE91EF628115B394F8AC19FD4FF8D6E /* Support Files */, - ); - path = DeviceKit; - sourceTree = ""; - }; - 82C4B160B9C097AC9D2D57CBB95E5460 /* Resources */ = { - isa = PBXGroup; - children = ( - 62DC48D696D2621B19973B10E864FC27 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 83FA450EEBC748A154C7CBDCB5D35B5F /* int128 */ = { - isa = PBXGroup; - children = ( - 23815C7C118EF39286F46E14E56C948C /* int128.cc */, - 5556A6E2EC4BED747653E4452746BF9D /* int128.h */, - B05FDF1E1B8ED92C92E1E2C79FC64BDB /* int128_have_intrinsic.inc */, - 565D70687AD84A382FE6AA9F4BCF2556 /* int128_no_intrinsic.inc */, - ); - name = int128; - sourceTree = ""; - }; - 84CDF1E538E5F3B6F56244B2542E5672 /* profiling */ = { - isa = PBXGroup; - children = ( - 0B092806B88F7D1E2859138C25AD33F2 /* exponential_biased */, - 6B00423BE5DF8BD672323AD5E53D9F4A /* sample_recorder */, - ); - name = profiling; - sourceTree = ""; - }; - 84DC6CAFD55B518415E79D0132A3C5D3 /* flag_internal */ = { - isa = PBXGroup; - children = ( - 57CC8161E59ED5D03D64912E9103408D /* flag.cc */, - 22DA1B34299944DC24BE5C4C7C844A27 /* flag.h */, - CC7045D2197583946A8585A194A2B9C2 /* sequence_lock.h */, - ); - name = flag_internal; - sourceTree = ""; - }; - 8561122545DBCDE6D143CFC4AFAE54ED /* Frameworks */ = { - isa = PBXGroup; - children = ( - D89538E8807A04ECA0F12E0ED747DEA8 /* GoogleAppMeasurement.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 86EFC06F519017A22076A581DBF414EA /* WithoutAdIdSupport */ = { - isa = PBXGroup; - children = ( - 8561122545DBCDE6D143CFC4AFAE54ED /* Frameworks */, - ); - name = WithoutAdIdSupport; - sourceTree = ""; - }; - 87ECFED947FAD8ECC540986360FE0AEC /* Support Files */ = { - isa = PBXGroup; - children = ( - E14DE2B844735E627FA7B84C737503ED /* GoogleDataTransport.modulemap */, - F9CACE432EB348B27424E3D2320A5338 /* GoogleDataTransport-dummy.m */, - B9D47456F07C85860008CE98E0CCF5BB /* GoogleDataTransport-Info.plist */, - 76B380EFA2A0B6164689FAD035A99C91 /* GoogleDataTransport-umbrella.h */, - 6B664C5392BE1DABD8D28D72E8CF4559 /* GoogleDataTransport.debug.xcconfig */, - 4DD0B7726C4CDB8FF0A2899DB2A58E0A /* GoogleDataTransport.release.xcconfig */, - 71B87D00F1EAD4F4DA193EAC17240AE1 /* ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; - sourceTree = ""; - }; - 88EE1B6506783E7ACE85ACA4DBC7A154 /* base */ = { - isa = PBXGroup; - children = ( - 0FE8200BA06510CE8BD9B1ED16FA6574 /* atomic_hook */, - AB1612DE747EE572C3CD337B35F2F829 /* base */, - AE8175ED75D14F543689A621E42D9138 /* base_internal */, - 628163B2B3674D79DA26E0227FDDC13B /* config */, - 71F816FD73E33BEA28D3101639A6DEC7 /* core_headers */, - FFA54F3908F7A7AE837B34B0EF8F8978 /* cycleclock_internal */, - 4EF2CECD62E4084789E3E7A38FFD617E /* dynamic_annotations */, - 1C7F190B74558C92133989C5BD45764E /* endian */, - CB8C25BF13731192EFCC1A0155896F93 /* errno_saver */, - FDE2E7D22010417F32A72587B9CC9385 /* fast_type_id */, - 89FC1E131F98F0FCC75CCB10776A6BA2 /* log_severity */, - CF853B5CA208D4E6DA78B0FEE8C5AC1B /* malloc_internal */, - BBCE7087B2B78D7BE53F6C154F42149C /* no_destructor */, - 347DA1CBB873C09579A50EAB20EE7AB3 /* nullability */, - 7B83BC828D1E878E1A2FEDEB3E178484 /* prefetch */, - 8087EAB4A4AAE868871BFAE6267F0ECB /* pretty_function */, - E9090E1950A827F70CA9D0DF53E0E90C /* raw_logging_internal */, - D546780D0FFAEB58D78C94CAF5E3A93D /* spinlock_wait */, - CF465A6C412357093B7A2847E6FA835A /* strerror */, - E85388C1CF475681434B6AF2D3136A5D /* throw_delegate */, - ); - name = base; - sourceTree = ""; - }; - 89FC1E131F98F0FCC75CCB10776A6BA2 /* log_severity */ = { - isa = PBXGroup; - children = ( - 12A96A7A5F39BA73F934F9A4AC086BDD /* log_severity.cc */, - B4D800219185881FA740C21EB1E91B39 /* log_severity.h */, - ); - name = log_severity; - sourceTree = ""; - }; - 8B0A2FF996C2CBAD33B1BA45EAE75F5E /* Resources */ = { - isa = PBXGroup; - children = ( - 38EC6592AD614E17FD3C58B642119AF3 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 8C007BC559BC4DC367F3437EA2E465B4 /* abseil */ = { - isa = PBXGroup; - children = ( - B0FFA5B519649DE2EB4A0F96BB605282 /* algorithm */, - 88EE1B6506783E7ACE85ACA4DBC7A154 /* base */, - 8C29EDDB5882D9A8AF216EE03308B255 /* cleanup */, - 34FF14C420BE919725F23157BBFF3CF7 /* container */, - 59D1F92E3C4C8BBD7ACAADD31FE2E908 /* crc */, - 08FD27BB773444E9B33986DD39FB389A /* debugging */, - DCF2EE2D4790ABD95ADCBB7F26AAC229 /* flags */, - C277C27F31E041499F9194CC3C396072 /* functional */, - C3C444CE83363451A243C67977E6A062 /* hash */, - 98B74A57F9C877982F8C4467B659203F /* memory */, - CD06BE6EA05AB123F9A584E8F2014B57 /* meta */, - 9634228C70D8F1D605FD39D7871EE3CE /* numeric */, - 84CDF1E538E5F3B6F56244B2542E5672 /* profiling */, - 44BB6E7A12A9A1280DFA1F3374058C05 /* random */, - 76AB232529A5F5794CB14CA6FA3CCEFD /* status */, - 4FA7D1CFAA0B78A6FDA50C6BF602B7B3 /* strings */, - 8CD5B01469AA68F9E23E23FC6DF5C1EB /* Support Files */, - 2F0033928F333EEA0396398E9E295171 /* synchronization */, - AC8A08360A28A5D661238E53915212C8 /* time */, - A109AF8C91BA43F1058E44C5B7A8EC3F /* types */, - E318D324496DF2BC329960DBEE9417C2 /* utility */, - ); - path = abseil; - sourceTree = ""; - }; - 8C29EDDB5882D9A8AF216EE03308B255 /* cleanup */ = { - isa = PBXGroup; - children = ( - 42B60A20AA6AAA1643094571AB77F096 /* cleanup */, - E77015BC1C6F47A0E9367807B2FD847A /* cleanup_internal */, - ); - name = cleanup; - sourceTree = ""; - }; - 8CBED1F42BAC4810C98C7F7EE56DBB58 /* any_invocable */ = { - isa = PBXGroup; - children = ( - D248384B85F4B29D7DE2F886429B1879 /* any_invocable.h */, - DC832F91EF1566B9F7E45C1CA9C23731 /* any_invocable.h */, - ); - name = any_invocable; - sourceTree = ""; - }; - 8CD5B01469AA68F9E23E23FC6DF5C1EB /* Support Files */ = { - isa = PBXGroup; - children = ( - 53034201F24E6A988FDD967C2C4AFA23 /* abseil.modulemap */, - F43FC1E43EAB8366660355326A0C762B /* abseil-dummy.m */, - E99C041136A5FC4F735CDAF791863357 /* abseil-Info.plist */, - 38FA55C34B1B14CE770E10C129BD0012 /* abseil-prefix.pch */, - 8D711FF2F1BF981B416F4C6D9BEEEF24 /* abseil-umbrella.h */, - 09D9CC526173F5397422CB9D38B3E587 /* abseil.debug.xcconfig */, - B15D382C18A7B0A563FEDFE6362627A7 /* abseil.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/abseil"; - sourceTree = ""; - }; - 8DD037F54F0245A3008427DA841DF29B /* internal */ = { - isa = PBXGroup; - children = ( - FC8F32A28491BECCDDFB3CE9050CA7EF /* cctz */, - ); - name = internal; - sourceTree = ""; - }; - 8EBC4AFB07C931486769EAF393EA0561 /* Resources */ = { - isa = PBXGroup; - children = ( - C64AB1511BAA1C03B21F86C06CA0C925 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 9078C7D4053AA5F2AAB42846CE863757 /* FirebaseSessions */ = { - isa = PBXGroup; - children = ( - E11255F5ED99F53CDFD8159D47310FEE /* ApplicationInfo.swift */, - 38CD663E604F7EDA04C028885B02301C /* DevEventConsoleLogger.swift */, - C7DCC04AF1C810FD42FA6AEF28D75636 /* EventGDTLogger.swift */, - 7E3465FFD7CCDAF0552FDBB61E23A525 /* FirebaseSessions.swift */, - C6B060F4B72C6DEF7D02698AB6AFFB4E /* FirebaseSessionsError.swift */, - 439A96E738E2C1A9A3CE7E126671962B /* FIRSESNanoPBHelpers.h */, - ABDDD1EC3169179A286412CA8CDF8397 /* FIRSESNanoPBHelpers.m */, - B398D7F9DAF5742A47B0095A04F8019E /* GoogleDataTransport+GoogleDataTransportProtocol.swift */, - E2A2E3360FF1BA7E16E385F93D9A9329 /* Installations+InstallationsProtocol.swift */, - A3F530D5F4B6665D2C5FE909D32CB88C /* LocalOverrideSettings.swift */, - CD34B4294FBA7A5A20C38BC3C499E343 /* Logger.swift */, - 1592AADACC4BAC73E2F3912015195960 /* NanoPB+CustomStringConvertible.swift */, - 2FD0BAD52987948A01F3D9271138399E /* NetworkInfo.swift */, - 8A9033E9660078E72281854E57DA5AD6 /* RemoteSettings.swift */, - 947826FD7178E560D05329D09B70A7EE /* SDKDefaultSettings.swift */, - D9673F54ADCA77A6A0BF04717406F7B2 /* SessionCoordinator.swift */, - 79BFD3C9B4E1B96B2663AB37D1429E2D /* SessionGenerator.swift */, - A7A049EF8846EF80ACA20554D039125E /* SessionInitiator.swift */, - 3C92618D674FE6EDEFB36E41C8C84393 /* sessions.nanopb.c */, - 1BB7C4DDF888DA04384630EC6B298CE8 /* sessions.nanopb.h */, - 6D310CF84F8403431E9F06EF63F3DB6D /* SessionsDependencies.swift */, - EBE8FA21C4E297C5153BCFE10BED9FF3 /* SessionsProvider.swift */, - 3C4BE3A28EEF0B84B90F17E229F0C32F /* SessionsSettings.swift */, - 5FB6B8B48E203DEC26BE7C89AF1D3D09 /* SessionsSubscriber.swift */, - 42496CD02F67640B1C66ECB00B5EB3D2 /* SessionStartEvent.swift */, - 3BAF28F9D19453E51E0AAD259D94395C /* SettingsCacheClient.swift */, - CFB264982C796B8BB7A01C1041CD9FBB /* SettingsDownloadClient.swift */, - B7094565A6DDBEE4761F50426F9DAD47 /* SettingsProtocol.swift */, - 20CC57A6199C1F3F58318928A2B6F949 /* SettingsProvider.swift */, - D9E34E416F8943B0A01CD476D0E5D40C /* Time.swift */, - 14C983AB25961CF9C8ACDF8C87E61B0F /* Support Files */, - ); - path = FirebaseSessions; - sourceTree = ""; - }; - 90AA401F35C509CF546814EAFCC0227A /* Resources */ = { - isa = PBXGroup; - children = ( - 1A990163483384282CF8330CD84B4BF1 /* LLCycleScrollView.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 91A5C12E9F4E07882DB8F1963076B4CC /* raw_hash_map */ = { - isa = PBXGroup; - children = ( - C14A063B8246E70787AAC32CB64289F6 /* raw_hash_map.h */, - ); - name = raw_hash_map; - sourceTree = ""; - }; - 92FEF9B8EF667B17431DDB7E5EB88754 /* bad_variant_access */ = { - isa = PBXGroup; - children = ( - 799CD2D0596A1C47CBCBEA171B6C3517 /* bad_variant_access.cc */, - 3490402352A8F49AF999964E757FA378 /* bad_variant_access.h */, - ); - name = bad_variant_access; - sourceTree = ""; - }; - 9350F05F3E27F4E3ED5AD1AE8DF98342 /* cord */ = { - isa = PBXGroup; - children = ( - FAFB357736092443CC8F7869843B4121 /* cord.cc */, - 843095ED1C736575EF04A39C1A095DEB /* cord.h */, - 30048C805431D4F8D839DEB8A7E07302 /* cord_analysis.cc */, - F01505A5CFF6B8D0E57A60209DCA8082 /* cord_analysis.h */, - 675D883ED4C6C2BE90C617F717C41EBD /* cord_buffer.cc */, - 61527BDE29FF74826AC19B82E2C8CD57 /* cord_buffer.h */, - ); - name = cord; - sourceTree = ""; - }; - 93FC541863280F33D64A5073E68DA9E8 /* Interface */ = { - isa = PBXGroup; - children = ( - 56ED09848C607A06A17723386D5755EA /* alarm.h */, - 43CD1752C2761A8AAD9EE766CA978089 /* async_generic_service.h */, - 38CA568AB123F0948CFECD5CFCDCE3EB /* async_generic_service.h */, - F1C571B3AD28C265AD405D5988EA7D64 /* async_stream.h */, - 11000792191C163AACE3D6FEF1D5409E /* async_stream.h */, - CEBC4B67799FC96BF05E4E4479588E44 /* async_unary_call.h */, - 3EE36ACCCE06FF0BC26E61410EC28144 /* async_unary_call.h */, - B5BCF0B29A39BB54A85D471A83DFB4A2 /* audit_logging.h */, - D3D33888A40609DE9EF7CEE232F10326 /* auth_context.h */, - 908615A9B249DA25C1DA7AB7518B9CB3 /* auth_context.h */, - C27968FB484E22487BB5EB684E5EAA26 /* auth_metadata_processor.h */, - 9CF9CDF8B7BD057A186F9E38DCCE87CE /* authorization_policy_provider.h */, - 4C6EAE0B00B431105BCE7283261B3F8E /* binder_credentials.h */, - 78B6EF7FDFC28912741C281EF068379D /* binder_security_policy.h */, - 5C07CFCBE60D402638219D8CD0350339 /* byte_buffer.h */, - 2A614AE73ED85F1962EE8762770F904D /* byte_buffer.h */, - 5BC4225C95354197AD862933C96ECEC7 /* call.h */, - 4C941B7124304D06FBF53B4DCE656DAF /* call.h */, - B9A81380A8385C0DD78EC00D30758649 /* call_hook.h */, - 1F4C87B65B3F8A832019B54D04A5B442 /* call_hook.h */, - E7BFD0A3D693116E6CFB1A848E29B6BC /* call_metric_recorder.h */, - 4FB4F563C5945BCD2F47AF757E8E7EA7 /* call_op_set.h */, - 70D68C3C3EA99B305C08246903640806 /* call_op_set.h */, - A10ADF18D1B77FDEC407C3033B2A72A0 /* call_op_set_interface.h */, - 863486688E8195BC916D92EEC7B05DE6 /* call_op_set_interface.h */, - C7A031356235358DA66ABC273C15376E /* callback_common.h */, - EDE4B98853AB6EF93B06D43C3199354A /* callback_common.h */, - 9572DF590AA7017E54B253CF02A726F4 /* channel.h */, - 511C5D0A3891A67D4232826B9379CFAE /* channel_argument_option.h */, - E60E9A085139B2D3B1857F382D5C6E04 /* channel_arguments.h */, - 1A750327C3915775D2CF5D70B32B179A /* channel_interface.h */, - B3A3E771518CF728A4E77F87206B70CB /* channel_interface.h */, - B33F58048DE87EABE6BB2926AB523372 /* client_callback.h */, - FCB07890D9F10903856F7563BFFAA3E9 /* client_callback.h */, - 08D388313978ED744D2E082958155869 /* client_context.h */, - 01D0F9CA543A89CA9EA719F1ABE27CA9 /* client_context.h */, - 984B52616B4E1D7F648AC3A0E08742D6 /* client_interceptor.h */, - E4B2731373CB55F5F97C55C4F275B2FD /* client_interceptor.h */, - 1DBAD11703F8C6EF4501BBD89438CC22 /* client_unary_call.h */, - A0FBECA10C13B221EC9DDADF7FAE5A6D /* client_unary_call.h */, - 5CA2704741A71019D0A6D7F54A2FC42F /* completion_queue.h */, - EC806D78A55218165977E673D2892644 /* completion_queue.h */, - 44946B9C254C2E04C87F4E96EEBD71C5 /* completion_queue_tag.h */, - AFEDD2A9D6D12F1B2491FF874A314536 /* completion_queue_tag.h */, - 20DCB78FD795C212CFFD62FCA5E4C8E0 /* config.h */, - 04E7F4D5B50F810E407AAB68AC4EB1E2 /* config.h */, - A9B3DDCE91DCF9B4286A8D607FDC951D /* create_auth_context.h */, - 3CF963187214685F8C9991A1E5193EC1 /* create_auth_context.h */, - 80F93C0B326FBCAC7C7E10C5AC7F4FD4 /* create_channel.h */, - 0B898F81F9210A5FA081080224D4CF62 /* create_channel_binder.h */, - EB7428C8B5CCC8922D0E59D2E9236825 /* create_channel_posix.h */, - 260F084485A6993326594889EEBD9D49 /* credentials.h */, - A7427F89621B2911CF4188A2AF95881C /* delegating_channel.h */, - 42AD8675CDEC57DFA0DC4E045E884EE5 /* delegating_channel.h */, - F75EF6D3B654F578AADCFFCBEA8A0D5B /* generic_stub.h */, - 3D6B7165F77657104D413B7FF0FCA729 /* grpc_library.h */, - 0156D20A9A82BC34E1CFD7D2E8EC6588 /* grpcpp.h */, - 0995C5461F807FD7AC19145E9C1EDEF4 /* health_check_service_interface.h */, - 97F28F7542DCDCAEC658FD23E7F1AA15 /* health_check_service_server_builder_option.h */, - C3C77A805EA36913262D0D0D15BB81F6 /* intercepted_channel.h */, - 4E03DAF2B7031999C6C11E871A572302 /* intercepted_channel.h */, - 6C1B91F69198E80F6CC47F2117DDFB73 /* interceptor.h */, - D73F6A4FEA15C1EDED3195027F787912 /* interceptor.h */, - 8CC9163E271E6243DBCE2FD302F096DC /* interceptor_common.h */, - 8D865F5AED97237E29494FC5DC655886 /* interceptor_common.h */, - 4087803685CDB7440B339D1372134AFB /* message_allocator.h */, - 969FD5E363C430184C5200B8FE207041 /* message_allocator.h */, - AAEA5226691F329AB0BCDABCC02D1473 /* metadata_map.h */, - B11633FDFBFB52E1505533DDD53B847D /* metadata_map.h */, - 0AD4F04D238507DFF08B7B8D55C90495 /* method_handler.h */, - 0016A656F1FE437D43D61C33598B7B12 /* method_handler.h */, - BF44825C602E05ECEC0B36CBA2F0D60C /* method_handler_impl.h */, - 42716016493C37BCACA2F7CC5BB85A29 /* method_handler_impl.h */, - D9EC23A6BD58AB4E42720C2CBC5DE893 /* proto_buffer_reader.h */, - 9D21EC8AF85719B4418B4A8D39A38A58 /* proto_buffer_writer.h */, - AF0589BB1868031242E6E43AE46B2AAD /* proto_utils.h */, - 5E4A692DF5F1B0142847D7CFBFCEA85F /* resource_quota.h */, - 7A826815122831E69A31E7E1F3C4995D /* rpc_method.h */, - 16D93BD857E744573C6ADE1B41EADD67 /* rpc_method.h */, - 1ABE55DD027D9C864A0C77523C75D100 /* rpc_service_method.h */, - 04DBB9F1B05AFEBCBA403120A4F4DE43 /* rpc_service_method.h */, - CEAF681F9E869183CE6185F3C796DC35 /* serialization_traits.h */, - E4E7F0E67A185AFC6692D82CB641FF90 /* serialization_traits.h */, - 404F39AD5C3233120802788A0312B689 /* server.h */, - A9B1C837D869838993126B2B46CF5182 /* server_builder.h */, - E414256B58D4C3A49CDCEB5867E35D73 /* server_builder_option.h */, - 67945CFEA190F5F4CFF78E01CB46E9BB /* server_builder_plugin.h */, - 3DE2D1C0683BBE926F7B838AC5F2E317 /* server_callback.h */, - E6899D2A0E524989E8DBF863378295A6 /* server_callback.h */, - 05A84E2D9BAE85816BBC401D95A61E3D /* server_callback_handlers.h */, - 896B004BB65913CDE0E15DA7051D6E9B /* server_callback_handlers.h */, - B6ED5395BE44F2D16B34F85AB98BE6A4 /* server_context.h */, - 3C53F2BE338B4F6E2A28992FA0A33D47 /* server_context.h */, - B303A5C1D13F5BC3E0BC6E640492FF05 /* server_credentials.h */, - 2DA336E705E4C8A048DAEB1CDE1E8FE3 /* server_initializer.h */, - 423389BF9F3873D6A8D1DAB8AC107CC3 /* server_interceptor.h */, - DA48688C41B1092CA45AEC0DA73BA18E /* server_interceptor.h */, - 4A7EC175EC99AC0F37B86B996DAE8C53 /* server_interface.h */, - 9C1B68446DBA73260839F3F4151994CF /* server_interface.h */, - 5D7A8C59A4DC7A737979F96E533C1C4C /* server_metric_recorder.h */, - 3B1B976FB0540F9F4001D2CFC90DAF0A /* server_posix.h */, - 5F266A62B4CCAE841526F9D9FC5008D0 /* service_type.h */, - 11F129EEA5B95F1089E22724A844120E /* service_type.h */, - 00A3310EBEC3EB62D858EBC2873E6EC4 /* slice.h */, - 7EEB367A2887445CDBFA3CAE817AD606 /* slice.h */, - FD6723992C14AECA3595F92398724150 /* status.h */, - 080EA6A47C9E27149530F39654EBC700 /* status.h */, - 0C6C3A93D680AB8D69959687EE085AFB /* status.h */, - C15D77034C4C497C977934CA2B074882 /* status_code_enum.h */, - 75B81C9F886C85C2BF0F896D880D6458 /* status_code_enum.h */, - 1232E14C1DA296B1CD500BB8DE10CB3B /* string_ref.h */, - 7BB2B1D619DCF65D5B83A35D169F0AB9 /* string_ref.h */, - 18DFD175D21D04070131E2FBA2D1E4F4 /* stub_options.h */, - 1E084C6DA92D309BF98F4FA13C8FF9F2 /* stub_options.h */, - 885C0589F2AA6A9A391C90CDE25AB160 /* sync.h */, - D7B01E721D7FE3C91B234C49898A0296 /* sync.h */, - 5CB6330933658E520FD011074E2CB805 /* sync_stream.h */, - 3E78A66CE047D30527C3E4263485269F /* sync_stream.h */, - 414FF90AF25776506F81767606359F6D /* time.h */, - 1D67BECA8FA61CF80FD537EB9BB74337 /* time.h */, - 38AB6E692EA5619283B58A8FA146ED42 /* tls_certificate_provider.h */, - 86664BBF1105BF456CD8F60D9C5D1DED /* tls_certificate_verifier.h */, - B31981322C27D274AA72AB8536896007 /* tls_credentials_options.h */, - 27CF1D81A68D47EDF6B1829E38115047 /* tls_crl_provider.h */, - 4BE264681665B427608BA6D3B5D79431 /* validate_service_config.h */, - 1370B72B38F87CDBD732E9B537B8D924 /* version_info.h */, - 38A5D4A2139A36A00C217BDEB2A447CE /* xds_server_builder.h */, + 48BFD7FAD50A0254D0BC0B99EA2F820D /* Interface */ = { + isa = PBXGroup; + children = ( + B9F7746F5C489019CAF221A920115092 /* alarm.h */, + C94BAF0E58BDA25270CB95F46DC58A2F /* async_generic_service.h */, + F9558E220DA0BCF65B48C3A33762CB1D /* async_generic_service.h */, + D43B37EAB758CF76353816E525E6D794 /* async_stream.h */, + 16BBAD8193C97D725670D7EFFFBEE56A /* async_stream.h */, + AA29F1DE0A895F2ABC09AF7D8647F873 /* async_unary_call.h */, + 5176A1ABC323558D63DA0E41EFD544CF /* async_unary_call.h */, + FBB5CC451BC324EFC14CA5EDD9918532 /* audit_logging.h */, + F1129083D76882906087CE9241249D20 /* auth_context.h */, + E776DF48869A6C5BCA25F9A796F2CF22 /* auth_context.h */, + E8C5ADC0757EB867BCA46528AA81A02A /* auth_metadata_processor.h */, + 9AD285FC3ABC3D0B986664959EA6DD12 /* authorization_policy_provider.h */, + 7F1119FF603772F68F0EF43F859CB6BA /* binder_credentials.h */, + D7DCA06EC936BE11ECF451031CC26AB2 /* binder_security_policy.h */, + CB330D624113B5BA45CAB97D76B425CB /* byte_buffer.h */, + ACBBFEE7E089AAB61CD6D340E05BB18F /* byte_buffer.h */, + CA35DCD18E305A1F2DC4885E6A86F2ED /* call.h */, + E54DB0ADF1DE0E5B1DC3B88269DA1A6D /* call.h */, + 366B569E9EEC2758871393493E82847C /* call_hook.h */, + 468461C78912993F93DA5214AB956DB5 /* call_hook.h */, + 16D583F498D5A8ACE0493107B23DDD28 /* call_metric_recorder.h */, + C4C556FED90344CED6449DFFC8B6197E /* call_op_set.h */, + 6525389FA7B80AEA234429F128D2F1E4 /* call_op_set.h */, + 9C582EF63811775D3F0EDA9CE3EA0F5B /* call_op_set_interface.h */, + 10353F3E64A8944D8776E8F14D7EFC94 /* call_op_set_interface.h */, + E15BA16FF99C789ADE72FE8D0E9719F6 /* callback_common.h */, + 289FFC48E65C33597D6ABF494EDCFA79 /* callback_common.h */, + 52446B53C1125C2A9A76B588D69A051C /* channel.h */, + 2A5F2D23C39D8ECF783244317E257876 /* channel_argument_option.h */, + 9F7BCC45CB7F626AD4CD01C37AC4FD77 /* channel_arguments.h */, + 7744EE707F4E650DDC601B78742F8A8A /* channel_interface.h */, + 033E5BFC09045F1B45F5F72E9BF5E825 /* channel_interface.h */, + 96CB5CEDBD3FE184075B979A6D3F253E /* client_callback.h */, + 422007526CC47B38FC560E95FED3D4EA /* client_callback.h */, + DCC79DD562693D4773E5B6E18233416A /* client_context.h */, + 3839C8671F503EB6E49E49EC80D16612 /* client_context.h */, + 875DAC23D3D02534E4D5C74AF10C54F3 /* client_interceptor.h */, + 00592B8AED1D500F58C5677BAA38DCFC /* client_interceptor.h */, + AA85465C87E5CA3FCE9B08A996CC982A /* client_unary_call.h */, + 8F090E4E64880CA6F0D5ECA8E3C21542 /* client_unary_call.h */, + 733B3E2E4276285784AFF6035005E621 /* completion_queue.h */, + 25F10C4FDEB0EF65CCC8CF029CC34D08 /* completion_queue.h */, + 988B28A5A73BE3421704B5CF2E5A7B85 /* completion_queue_tag.h */, + 59A9D93CA6C1501391B4F4BEF8FAF995 /* completion_queue_tag.h */, + 48111F1C5F1E4F7F728A9C4FEADACEA0 /* config.h */, + 1525996841248040C425788CD292A814 /* config.h */, + 164B9FA298A66A34CECEB7506DEB40AC /* create_auth_context.h */, + DDB19F16F72E32C61ECCEF088FD30255 /* create_auth_context.h */, + A8DB77783FF298DCEA70F5D256189DC2 /* create_channel.h */, + C56A8E8C3806C4028DE7E265DD9E52DF /* create_channel_binder.h */, + 683D89C38B3FB188E794D07332F7A1F2 /* create_channel_posix.h */, + BB6078B1F1F1385EF1D7F77BCC9C9087 /* credentials.h */, + 569935E2CF18756CE4508CBF382F6575 /* delegating_channel.h */, + 29AFB371BB2DB579C041A99173C17F36 /* delegating_channel.h */, + A4F9DFD1621AD255EAFB1DA3554DE62D /* generic_stub.h */, + CE57A3E9106A6C13E5339161379E413D /* grpc_library.h */, + F9CEE9DA45EBCA53AA803E0D0F863BDF /* grpcpp.h */, + 3F3A787A0D452103D9A7AF5DCB876E51 /* health_check_service_interface.h */, + 7A88626F9F093AF61981A6F56D3B8143 /* health_check_service_server_builder_option.h */, + F06C10FFDD32BF8CF414EE12D7CA66A6 /* intercepted_channel.h */, + FB2ACCEBEBB64B45B9BDC43DCD6B707C /* intercepted_channel.h */, + 1EBF0AEA85DF190171C15DE6717E446D /* interceptor.h */, + F19D3FB9C0867E24D22CC3ABAB956314 /* interceptor.h */, + 87D7F632338A598BFDFEFF5BF6344E83 /* interceptor_common.h */, + 24F7FDCEFBA540A7C52ABF77C8EE2173 /* interceptor_common.h */, + 63AF4DAB70CEE3D3B20696D44BD32666 /* message_allocator.h */, + 2C04E528FA54897997FE521CC0C14B36 /* message_allocator.h */, + 916A1D6ED8224675F79AB4B8F5327153 /* metadata_map.h */, + E720B97DE378444176CBEFCBE49E7C61 /* metadata_map.h */, + D4D18C01450834E4074D7269CA5551EC /* method_handler.h */, + 94A44ECF8F3488CFBDEE21BD37288A61 /* method_handler.h */, + 1E052C7ACA7A6848D29E42764B8483BE /* method_handler_impl.h */, + C7D3D265F8B66869730FAF0B2C1FC2A4 /* method_handler_impl.h */, + 4F9BD488AA18A32470D5D6F8B023473F /* proto_buffer_reader.h */, + C131EC6553F82A696D462F344470A836 /* proto_buffer_writer.h */, + E3A6B4C0CC047A76AE4F8180CB7DC1D9 /* proto_utils.h */, + 2B46F7EA5C5868573CBC8FA2DCE24F96 /* resource_quota.h */, + FC2256628ADD6E35E059E746C33E5849 /* rpc_method.h */, + 7A7025069235CBE4CA97133170E1C9DD /* rpc_method.h */, + E8CD8D1E0B764FE6FD32B0D36BEDB9CD /* rpc_service_method.h */, + CF6BF028719FE334344FDC48D7418BD8 /* rpc_service_method.h */, + 5993762CD361C4B69D3C4D4BE26EB5FE /* serialization_traits.h */, + BBC5162027A21C623B7904DE915D42FB /* serialization_traits.h */, + A3CBB2E29ECB9F97B67FCA937470CDD0 /* server.h */, + 2A6F1DADD0D28E1532E5C3EA32770BA1 /* server_builder.h */, + A7E3A7BB23504331E7CE7B9EF2EADCD1 /* server_builder_option.h */, + 56D1B9696F1DAFBEB3D98CC490B48673 /* server_builder_plugin.h */, + ECFD3097CA6CFCA07921BE6F5AEEB485 /* server_callback.h */, + C22D0F91DCF92AB6C35551796C84E5BA /* server_callback.h */, + 300A7826C574AE3B030BDC8CCBEE6AAB /* server_callback_handlers.h */, + FC8CC8F53717C02C96DE8A5C534716DE /* server_callback_handlers.h */, + F834BE96D99E048F8A2341C441D35967 /* server_context.h */, + 447B321D5D636755C973D81B6ADA45D9 /* server_context.h */, + EC5D3A10D4C075B5B265E81FC6EB95F8 /* server_credentials.h */, + E8DCACFC67253E0AD9E2C3E795F4A6E4 /* server_initializer.h */, + BD254CBC5B235C9F594934A8CF6E6D4F /* server_interceptor.h */, + B8C207BED72A28306D7CF2BAABB1A1AA /* server_interceptor.h */, + A7E4A2B1C71DB6E19727046CB35419EE /* server_interface.h */, + E10FF5F6EF3B317B65FAE8265CCCAF89 /* server_interface.h */, + EEB34D251FCC3F24B3CA4D358794CC2D /* server_metric_recorder.h */, + 5CB6BE008040FBB8075B1DB1E2C2ED43 /* server_posix.h */, + 97174F925538EF9C11ECC9DE94112BE5 /* service_type.h */, + FE44FBEFF3111E26D5F60EFF38F8145F /* service_type.h */, + 231E95ED7A7D133B95FA30376DA15239 /* slice.h */, + 600F2054D5E8D8D66BA21B29001A8384 /* slice.h */, + 0B4A31B54E889A01506F338FB81CC418 /* status.h */, + 2F29A4111573F984F14996E8689D9AC3 /* status.h */, + 24C7ED2D5293534E5D6A8B5A97DA13F7 /* status.h */, + F207AF8306F8813F4F465D06C879E7DB /* status_code_enum.h */, + 6C5BAE8FEF00FEC2AFE11F5BD9574729 /* status_code_enum.h */, + 344023CAD2B4DAAE09F010F3F36FE020 /* string_ref.h */, + 10385F0BE97FDBD9CCEA5F03BE1196B1 /* string_ref.h */, + 7FC0E2E343DA748C6C5DFEAA152BC0A5 /* stub_options.h */, + B1C97D4C10CA968AE9816A4BD2393949 /* stub_options.h */, + 73A449B6A79660698F489DF7E3E2B179 /* sync.h */, + 6DFA8D18FB0263DA1A408EBA8D850BC8 /* sync.h */, + CFD7D692823D1143AD2670A6781D272D /* sync_stream.h */, + C522D56640F59B47D49F3A0BFE65D7AA /* sync_stream.h */, + CD664630EC279AD48D7A2DC36F2EC5E1 /* time.h */, + A08A3C8C8F72AEDE1CA7692285F6E8C4 /* time.h */, + 4EB22D8479953C385023C703888B32AD /* tls_certificate_provider.h */, + 9FE96638582EE7A76411ACAAE0392254 /* tls_certificate_verifier.h */, + EC7C0229301F79AED3A36199B04A58B7 /* tls_credentials_options.h */, + 1EB42D0E4B3AA5FA04F1FB0B270FF678 /* tls_crl_provider.h */, + 3DD33EF671355E4D225ECED020327AEE /* validate_service_config.h */, + 319A9686A895CC8629E9E92A607A3932 /* version_info.h */, + 4D6A86A243A7CB1AAA545CF7EDFF6799 /* xds_server_builder.h */, ); name = Interface; sourceTree = ""; }; - 957763B794D0404F5A7721A2093A5F5D /* Support Files */ = { + 48C5AF2A979732557799037161576AB8 /* gRPC-C++ */ = { isa = PBXGroup; children = ( - E0F0F98E20DBFF1E30B10223B3B0CD95 /* TZImagePickerController.modulemap */, - EA00D7F2388C39EB960CF37BC0A7AB24 /* TZImagePickerController-dummy.m */, - 60C6CEEE6DF9836F38F7630D0EB4CF14 /* TZImagePickerController-Info.plist */, - B59175097FC39FE4CF1A13F2E983B906 /* TZImagePickerController-prefix.pch */, - E6008F4B03A64576334FD4A984B73B4A /* TZImagePickerController-umbrella.h */, - CEFC07196C0C682F140665A751FB9FB3 /* TZImagePickerController.debug.xcconfig */, - 3127D690DD4CED5561D22FE1C78E2CCC /* TZImagePickerController.release.xcconfig */, + 52DB397C2F47FEECF90D0B114E0E0994 /* Implementation */, + 48BFD7FAD50A0254D0BC0B99EA2F820D /* Interface */, + 37A6AFAC5163018C48DED72A052F5078 /* Privacy */, + E26F1B1DCDBAF50435D96B5E8B5FC247 /* Resources */, + BAF32292B377ADF907251036C9B38903 /* Support Files */, + ); + path = "gRPC-C++"; + sourceTree = ""; + }; + 4940BCC62E60719FD76FF95F360AB20A /* demangle_internal */ = { + isa = PBXGroup; + children = ( + B26FD1D1598465E5DE00588FD86A9041 /* demangle.cc */, + 940EBE2FC58F17129D52BC5CD93E21E2 /* demangle.h */, + ); + name = demangle_internal; + sourceTree = ""; + }; + 4A3ADE71FF985AEDDD5D37847C947A58 /* hash */ = { + isa = PBXGroup; + children = ( + 93DFAF18F9DC395353EBDB6E17036466 /* hash.cc */, + AA7617462D6743F53C120D48C7860AA7 /* hash.h */, + C0B8A7D90FBDC61E51E7197024F6C75B /* hash.h */, + ); + name = hash; + sourceTree = ""; + }; + 4A68696B9D5EC101F1CFDAA4398C28F4 /* Support Files */ = { + isa = PBXGroup; + children = ( + B5B097C034677935888D15E8E4D275E7 /* FirebaseFirestoreInternal.modulemap */, + EA6E852105B8DCC0A16FDA1BEB594176 /* FirebaseFirestoreInternal-dummy.m */, + 32220A163FE230655EDAC5298118BF23 /* FirebaseFirestoreInternal-Info.plist */, + 6FCEBD25713685CDADDD9C66D3A37FB3 /* FirebaseFirestoreInternal-umbrella.h */, + 6B427E20119DD4322D291935894567E3 /* FirebaseFirestoreInternal.debug.xcconfig */, + D91137E3EED6CF46B401F85E76D6C137 /* FirebaseFirestoreInternal.release.xcconfig */, + 7D02723A58EE3F16948BD4F6F5322C7C /* ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseFirestoreInternal"; + sourceTree = ""; + }; + 4E6F680F6889470057F539295AFAC45C /* cycleclock_internal */ = { + isa = PBXGroup; + children = ( + 6FB58FCE4E2F127143D55869727AB2D6 /* cycleclock_config.h */, + 91D1CD83F62705A6D8AE4FC386BB6617 /* unscaledcycleclock_config.h */, + ); + name = cycleclock_internal; + sourceTree = ""; + }; + 4FC4857390AFDB75A707AF27069A991F /* salted_seed_seq */ = { + isa = PBXGroup; + children = ( + 5B12F16CC2967047916D46A8F0016938 /* salted_seed_seq.h */, + ); + name = salted_seed_seq; + sourceTree = ""; + }; + 51239B3BB39FDBE545CBE0ED16C11687 /* pcg_engine */ = { + isa = PBXGroup; + children = ( + A8EC6E94B958ABC6BCF2B6812528B0D3 /* pcg_engine.h */, + ); + name = pcg_engine; + sourceTree = ""; + }; + 51B6A5E54DC0FED5FFE85F20E2E4BF74 /* representation */ = { + isa = PBXGroup; + children = ( + 231E225200B7B4B26138CDAC2C61E4D0 /* representation.h */, + ); + name = representation; + sourceTree = ""; + }; + 51DA2361675EC66DA2637AED7DE50179 /* base */ = { + isa = PBXGroup; + children = ( + B420AF55C6C4A5F5E630D59822748875 /* atomic_hook */, + C2771B3D9953C5C0AA9A4E4B92F90A84 /* base */, + 9E09BFD37340AF7697D5FB3730AE482D /* base_internal */, + 7E8EC343C143B4DC744E9164E03B250F /* config */, + DCE7AF17CC66563BBBB73EDC30F54642 /* core_headers */, + 4E6F680F6889470057F539295AFAC45C /* cycleclock_internal */, + 65841A29AC4402A3017691932FB6567F /* dynamic_annotations */, + 1A08F8D067D3FCEF793A9AAB75B4AF25 /* endian */, + 875AB9A9C2E68361439442BAC23FF235 /* errno_saver */, + 1CB4A10D6F09B631C2353678AAC0A77B /* fast_type_id */, + 88B32A85885684A36A3E46B6F10D9A8B /* log_severity */, + 849070065BD859B818178DE10D05DFE4 /* malloc_internal */, + 8E0C82D590A082F18B35143F4696EE36 /* no_destructor */, + 1B4BB927B76E609A9E831BF7F300F2D3 /* nullability */, + F7539BFCBB7650FF92C07EBC7FC76E2B /* prefetch */, + 6E7D489EADB58E75B71325FBCF1F12E0 /* pretty_function */, + 12C5C8515014B334B6789793E42540B9 /* raw_logging_internal */, + 4143DA11696468DF006C5CF56BAB84C9 /* spinlock_wait */, + 7779CC74D4F01766B9C69A840B03F3EA /* strerror */, + 660434A535B7FEABE3180AE246258E36 /* throw_delegate */, + ); + name = base; + sourceTree = ""; + }; + 52712C66049BE160D125EF925DCD2FDD /* Location */ = { + isa = PBXGroup; + children = ( + 89F3AE384DCCF488BA650BDC2E0621D4 /* TZLocationManager.h */, + 1E89FA969C4CBC802392349403AF83FB /* TZLocationManager.m */, + ); + name = Location; + sourceTree = ""; + }; + 52DB397C2F47FEECF90D0B114E0E0994 /* Implementation */ = { + isa = PBXGroup; + children = ( + F9E4FB23F9ED638C4577C26488C28045 /* accesslog.upb.h */, + EB94D7D589D2914918BA4D47D3BF3FAB /* accesslog.upb.h */, + 4CD410E6433804F3F8764712893961F6 /* accesslog.upb_minitable.h */, + E9870A3ED4F09056DA3390765240BE04 /* accesslog.upb_minitable.h */, + E33B9DC8286E7D7622541ED644366CF2 /* accesslog.upbdefs.h */, + 48D1C7EA2FCD37DE5A3E3E89148F4AA0 /* accesslog.upbdefs.h */, + 8612E8103987A169A4B9B36802CCFCEC /* accessors.h */, + 32FAB22096D1C7A4B4E67189890D6E98 /* accessors.h */, + 7513E5C5AD21D97727C49ADD4472E4BE /* activity.h */, + 10EF5DCC84E169CD3E5CD443024AB085 /* address.upb.h */, + A99EFD40212F40F029BDD3B6867115B5 /* address.upb_minitable.h */, + 3C9637CD1641A6C72173350632E1040D /* address.upbdefs.h */, + 2942A465403889B09A1170673A09ADD8 /* address_filtering.h */, + 17E35F82579065A021A5CF6DB45F2162 /* ads.upb.h */, + 3AC3D4F575386A941488816EAB2BCE51 /* ads.upb_minitable.h */, + 032CA1D87CF17D180672A991E4DCD552 /* ads.upbdefs.h */, + 2F2CD8D5F8F668B9472EDEBEC5F04405 /* alarm.cc */, + E5F4EAEA37811DC82A6F9825FB5C7E87 /* all_ok.h */, + 159391DFFF381F80A94841EE3E66ACE3 /* alloc.h */, + A142890662C0F81E0482E2511050E3AC /* alloc.h */, + 87925EA2BB76D59A622DB9A5D88E1884 /* alpn.h */, + E9C872351956896144B8026A89DFC964 /* alts_counter.h */, + 9C8E6CCBF3D64A0D02C9336F9AB124F1 /* alts_credentials.h */, + 70726503CF283EA471A14FE18BBAE3D9 /* alts_crypter.h */, + C44E43E9177CB83760C6C8163F86C3FC /* alts_frame_protector.h */, + 8E88BB8E982D064DB4DFA2F15F39AA07 /* alts_grpc_integrity_only_record_protocol.h */, + A88C96BC25D9E121CD1E6773737B14D5 /* alts_grpc_privacy_integrity_record_protocol.h */, + 1DCEF48D8B279114F23E33CC3FB6E0CF /* alts_grpc_record_protocol.h */, + 2A9ABAA5A49EAEB6636D9D2448408FAE /* alts_grpc_record_protocol_common.h */, + 5A0B210E5D7498AFC73473C794A8037D /* alts_handshaker_client.h */, + C0C2DC200C22CCBBEF8EB083FA2B9D44 /* alts_iovec_record_protocol.h */, + 2F14490AC2054D988C8838AFF59866ED /* alts_record_protocol_crypter_common.h */, + C167C10D459E66C58FF34A745A8FFA10 /* alts_security_connector.h */, + 10B0F97002999878182339D58EF7A694 /* alts_shared_resource.h */, + 75FE3FE99262515E649DDBA2B3D4894A /* alts_tsi_handshaker.h */, + 6442569F1CCAECA8B217F4F002D25E7D /* alts_tsi_handshaker_private.h */, + 42D31A6D42386A8B38EAB70FE4DA55FB /* alts_tsi_utils.h */, + 0432C18E76864F5A4842908742EB4FE2 /* alts_zero_copy_grpc_protector.h */, + 984D7C34D66154A159CDBA59C739BBFB /* altscontext.upb.h */, + F388EBE66D442CA345A28570094C8BA3 /* altscontext.upb_minitable.h */, + 7575567F5AEC1B26A7F478110C5B7316 /* annotations.upb.h */, + 867DC603C45784104AB436154E4093F0 /* annotations.upb_minitable.h */, + CDA6FF5BF576563347A792AA308F1C42 /* annotations.upbdefs.h */, + A1212CE60092825327BBBC84D7F91ED5 /* any.upb.h */, + 2F1B438A3A2BCFC10FA2F781CE17EB63 /* any.upb_minitable.h */, + 21C4B2108DA657E892FD8F68220EADE4 /* any.upbdefs.h */, + 3D321208A0545171E6E7520FEF3E7D40 /* api.h */, + 41566A93184D41C4B6618F78A566CF5F /* api_listener.upb.h */, + 1524006C14DDA5D14AB703813AFC364A /* api_listener.upb_minitable.h */, + 8C8F047EC3B8419CF9FAD9744AB1A2F6 /* api_listener.upbdefs.h */, + 82D16CD495A3998B57BF573BC453F5D9 /* api_trace.h */, + ED2171B062D5CC28173819C4F12D8F93 /* arena.h */, + 16BBE4EC7B42E028D542E61D944DC319 /* arena.h */, + 500470F19C96815DAC95C93796976B04 /* arena.h */, + 6B12D111C7F03541CF1D184E640569D0 /* arena.hpp */, + 8A95ABEA1E2F1F96D7F8A331634325A3 /* arena_promise.h */, + 853E126BD8066D9BEA4849916DF864FE /* ares_resolver.h */, + 86D961FE754A29E69261B28A260B717B /* array.h */, + 8179F3DA416B249C6AAF518F3341A726 /* array.h */, + 901488893C0CB4F545DCC38BD85E836A /* async_generic_service.cc */, + 012D38CB2A5FC9FAED3FE3292D3636D3 /* atoi.h */, + A2AFEB8DA88850D45913D5CC66D07572 /* atomic.h */, + B038B1A210499D54A253789D418301A1 /* atomic_utils.h */, + 192098F692168C8F5E8AF4C587D02D85 /* audit_logging.h */, + 6AEFC843E0309ECB939A737D7BE62A63 /* auth_filters.h */, + 37B6A4134ACB66A70999125E3077A320 /* auth_property_iterator.cc */, + 0355BC986A49EF068ACBDCF7C5170EF7 /* authority.upb.h */, + 1885890F43C2CB80F0D4F4A205EB302C /* authority.upb_minitable.h */, + 5FAA1876D6554BA39D6557E15D09A51E /* authority.upbdefs.h */, + 44E8E2DC3F467CB0F8FFF905151E4F36 /* authorization_engine.h */, + 0C5C2E71FF7D53BCE90ADD445D9C65BB /* authorization_policy_provider.h */, + 28B5FC53837E0B6E5CE60F64EF677812 /* avl.h */, + B73036F901C3D684641CE1171B98C9E3 /* aws_external_account_credentials.h */, + EB84B1FBD0E5A5BBD49EB470E22C11E5 /* aws_request_signer.h */, + C66607840F6BA454D844FDB27154E3A2 /* b64.h */, + 9201444D240846DEF020B70599BCE6E7 /* backend_metric.h */, + A2210E50E5950705A3EDFB8101D79A29 /* backend_metric_data.h */, + 5C99B8FCBBAFB5EED3F747FAD657206B /* backend_metric_filter.h */, + 6FA8264FE0BE5CCEBE7315BF7BF97D0D /* backend_metric_provider.h */, + 43FC0E4858604005F1F84D28FB8711B1 /* backend_metric_recorder.cc */, + 142CBC664F8F0E630DD481326BBF2CE6 /* backend_metric_recorder.h */, + E5206A14705293CC45E74A95220224B7 /* backoff.h */, + B269678607D0E40A0A57F85B76C4B3F8 /* backoff.upb.h */, + 01E96EE88D41B9D2493EA6E50053E082 /* backoff.upb_minitable.h */, + FF31DA07A359FB043DEB6DC1FBA47783 /* backoff.upbdefs.h */, + 2FB9BAD7AF6EED027AD2A61AF467C186 /* backup_poller.h */, + 3F5062670A66696A9B7B5CC25A2AAC16 /* base.upb.h */, + 4E1972B35C0A57367E0B2C3FBD2B38B7 /* base.upb_minitable.h */, + 58A13EBAC3D482F85719757063B2DEE3 /* base.upbdefs.h */, + 6B12A3845A7581A776F0ABCD8AA783C0 /* base92.h */, + 7DDFFB2E1FC501D91E5C1874E6DC956F /* basic_seq.h */, + C831018E2E0EFBD4B5C4CE1E7CB043CD /* basic_work_queue.h */, + 53ECB87D5AA85271922BAFBF449FFCE9 /* batch_builder.h */, + BF825F80971C4CD99524379DAF8E2986 /* bdp_estimator.h */, + CEEE0F94F0D4E821D6E4EFCC04B54965 /* bin_decoder.h */, + 86B89D5B01B30CC1E5D53CA6C822AF61 /* bin_encoder.h */, + 3026180E0A83C41078F526B57BF0D13D /* binder.h */, + F16EC86F46C78461778912AA1C8DDA62 /* binder_android.cc */, + B7C109DB7108DBC05464C6C9EB0F8D15 /* binder_android.h */, + 428774272E46A4FE2E881987AB2BC032 /* binder_auto_utils.h */, + 39CF9E866E8EEBA6D631820D7C9BB67B /* binder_connector.cc */, + 0C34EA1D81D6DE38C6958049B259E303 /* binder_connector.h */, + 787B5C6B72F1FF49A7F4122094F03D97 /* binder_constants.cc */, + 6F4F73CA06E08E2B951639689D702840 /* binder_constants.h */, + 4FD86A089E21337606208E40FC22DCE4 /* binder_security_policy.cc */, + 2C78A35EB73BBC00A3B5F21F3DA3AEAD /* binder_server.cc */, + EB07A5777126E2A5654DD1C184D22AE2 /* binder_server.h */, + 65FF35098C7FE70C5BE7FED0F88AFBCE /* binder_server_credentials.cc */, + A5E0C2540BC7B029C949112C50E14E81 /* binder_stream.h */, + C5F46DDF01A1FD1D8815EADD58CF8B63 /* binder_transport.cc */, + 889249B1C360C5E3319D39A1680FE9F0 /* binder_transport.h */, + C4E01E8D336493324C98B35AD4E89FD0 /* bitset.h */, + D0B78FEF05E3593E16E2194140D530A8 /* block_annotate.h */, + 581DE77256B6F527DBFD30D1C2367043 /* bootstrap.upb.h */, + 11F22F8272586020994D65177CFB77CB /* bootstrap.upb_minitable.h */, + A0D88ECD4A3E237588147176C9E0D5A5 /* bootstrap.upbdefs.h */, + C656D1A3FFB304188BF8E42EB2328096 /* buffer_list.h */, + CD7D433AD86C837E52DE6AD9E51A9403 /* build_enum.h */, + 5AA9049F6464A13F299F017372C06A2E /* builtins.h */, + 07D9BC018F4D3360D51D4E6E36462B22 /* byte_buffer_cc.cc */, + 1A73A94AD93901D93169DEC72F8803C1 /* call.h */, + 664E953178B529B64C5370B83B3B78DC /* call_combiner.h */, + FCB52E35940AE5614028D4FBEFAC1366 /* call_creds_util.h */, + 24ED490BBDB3EF87E368A1D4628AB724 /* call_factory.h */, + 4CEA4E38A42FEE69927359777E9069E5 /* call_filters.h */, + AFF4A17F969042C0C8E709DF4748D818 /* call_final_info.h */, + E58484A578EB79AB79A1018D46378130 /* call_finalization.h */, + 6C504B1FA1D2B98CF832062D374ABA02 /* call_size_estimator.h */, + F62EBC1F92A85DE2237D5C96C5151684 /* call_spine.h */, + BD4ACAE4CB5D658A522785ADC20DCE7E /* call_test_only.h */, + 4D5BEE1ABCFBAAF35D3DC9C385E37A46 /* call_trace.h */, + 10F5CB28F507E40C702DB0C4BFCE7201 /* call_tracer.h */, + 2BB1557692C4A90FADF74753E7B06A13 /* can_track_errors.h */, + C11C8B1B914135B195B679DE8015B0BC /* cancel_callback.h */, + F21677B25098699FB361BEFE59AA369B /* cel.upb.h */, + 526BEF78120CB1D8826A6C65E510FDCC /* cel.upb.h */, + 236FB7EB10F94BB2CEB88002F4527717 /* cel.upb_minitable.h */, + A606CAC641539BDCA994FDBCFC1299E0 /* cel.upb_minitable.h */, + 0DB0FE973BA81AE5F85B7841EB3CC311 /* cel.upbdefs.h */, + 8C7D7DB2029934A01A86BBF0C6303782 /* cel.upbdefs.h */, + AE84F6D661D60A49922B2A22D1D64FE5 /* cert.upb.h */, + A9182F7EC9E1A62E66B7BF03FEBEAAF7 /* cert.upb_minitable.h */, + F002FBE3E4EE73F7023F25BD03C3BDF1 /* cert.upbdefs.h */, + FC190349D7B76931E8258A2533D8474C /* certificate_provider_factory.h */, + CD8BA847F5B73B7E780FCB47A3ED0DE7 /* certificate_provider_registry.h */, + 382ECE3666C1FB2A3CA2734C67DDD67F /* certificate_provider_store.h */, + DDB647950EB3928A166BE76EB670B4A4 /* certs.upb.h */, + B041B5D4C0C4B0948DCA54AE42A46156 /* certs.upb_minitable.h */, + C56898DAD60F277E125157F471CF4B14 /* certs.upbdefs.h */, + A1B0A3749AD88DC2BEF61A35A335A7C9 /* cf_engine.h */, + 504BED23A97D35659ACA2A9957C15030 /* cfstream_endpoint.h */, + 883BE0D7EF525B1BCB72733D765B17B1 /* cfstream_handle.h */, + 455BF997F6DF3C264201A04E53593FE6 /* cftype_unique_ref.h */, + DC91B2D2A3AC7A7C621CBB805086A9D1 /* channel.h */, + F719EAE92A66FD311360451B52B6AC6A /* channel_args.h */, + 1D87D55D6EBEA2002DA12F598F3E82F8 /* channel_args_endpoint_config.h */, + 325ADA95E6704E058566B5A3DC3F62BA /* channel_args_preconditioning.h */, + 46B1CB1472BFC9190D21F24EA730A9B4 /* channel_argument_option.cc */, + 734A623634B0C342E6240597BD853C3C /* channel_arguments.cc */, + 32AB6545FE730611EDFF09FB4BE4D9A1 /* channel_cc.cc */, + C5F94B3D29DD58BB6F5F3094A2B19EC2 /* channel_create.cc */, + 55D5846EDE96432F5F2162863310C860 /* channel_create_impl.cc */, + 9E7F54A8EFB557515B47B3394119D694 /* channel_create_impl.h */, + 6274ED70EEE9C9449451D48E1033A5F1 /* channel_creds_registry.h */, + 1CDA8B1069F2B43E2F349F87C59B8055 /* channel_fwd.h */, + E4A320FAB8002209A7EF65CF5C5B2F6D /* channel_idle_filter.h */, + 78EF00152ACF862616D5F0574DF4422A /* channel_init.h */, + 7004DB89957E893C9DED5646D5ED6872 /* channel_stack.h */, + 3ACB0FE6CF9691F32E0DB06FF439683E /* channel_stack_builder.h */, + 8D683C33572DFAD0744BD295D2FFDB79 /* channel_stack_builder_impl.h */, + F3CF4B567D567776B79CDD2B0A3E18AB /* channel_stack_trace.h */, + BE0577105E7F3D1AE85BED915C80855E /* channel_stack_type.h */, + 3010184C3F5AE764360B4D368A66CEB3 /* channel_trace.h */, + A78D284A99973E11E58017DC8BFE6082 /* channelz.h */, + 9AB5FE1C2509E3EDEA78CD2398B4F45D /* channelz_registry.h */, + 6A138ACE58BC4C5A5C04C5FE1B36D301 /* check_gcp_environment.h */, + 41B48C21E8A9E450122A3BA573AFCA5A /* checked.upb.h */, + 933ED63F62234464CF4A17EFF6E6D7BE /* checked.upb_minitable.h */, + 2EF95CCC8068449832D499F511F7ED22 /* checked.upbdefs.h */, + 00895E4BF0E7867ADD396F5259A9F84A /* child_policy_handler.h */, + 761100C686855B23A2740B76957609A2 /* chttp2_connector.h */, + 02258EF222115499C277B1971A0B69B7 /* chttp2_server.h */, + 675ABBFECE7BA0300CEEC713BFB59295 /* chttp2_transport.h */, + FB803935086A92E7AE757969A977FEA0 /* chunked_vector.h */, + DB47E882BD767811470A4DAEC30419CD /* cidr.upb.h */, + 5771443423FA363EB9D2298AAC5E4642 /* cidr.upb_minitable.h */, + AC4E6DF5FA6367DCB929C8578F84FC7C /* cidr.upbdefs.h */, + 28771946362C3B96D1CFB4C158ABBDDA /* circuit_breaker.upb.h */, + 92D35EBAAFD689028C738A1791980CC6 /* circuit_breaker.upb_minitable.h */, + E4D87708E6C96DE4D62C124736E901F6 /* circuit_breaker.upbdefs.h */, + 298CB60C7BB49F02A90F373054C75B34 /* client_authority_filter.h */, + CA7EE8693ABF786B5F4408735DF81F56 /* client_callback.cc */, + ACF32DED9D85FA797B56A07C1493C907 /* client_channel_channelz.h */, + DB61F25E99CEF633A3E4E0BF0ED163BC /* client_channel_factory.h */, + 093C286BA529C3B2D206C3305F3176E7 /* client_channel_filter.h */, + B5B4AFD11BF80F8D85D3A788B7E8B727 /* client_channel_internal.h */, + 87BBBF20484AE65D65E87A44BB380F5A /* client_channel_service_config.h */, + E0E923029E756B6A60545227792AA9B9 /* client_context.cc */, + 1D6ABF958215FE0925BB590632770A18 /* client_interceptor.cc */, + 8A90FC3EE1D2A3514852C46490801444 /* client_load_reporting_filter.h */, + DEBC73D6E8DDD1F50A6FBA884535AF9C /* client_side_weighted_round_robin.upb.h */, + A7B005FE2A069CE1D0BA190CA0E9E032 /* client_side_weighted_round_robin.upb_minitable.h */, + 5D9EC2ABAC7F787967D705769441D246 /* client_stats_interceptor.cc */, + 389182502744935374B7E508D6B63BE7 /* client_stats_interceptor.h */, + 04EB8D7EE3469785716847C14233F7AF /* closure.h */, + F7E03634FA7BC1085A08D4DC7500CD62 /* closure.h */, + A7F996F03B33C74E101DB6B8E815CD16 /* cluster.upb.h */, + 00EB35E20530F490FA760EC99A2BD029 /* cluster.upb.h */, + 8FF87CEF4CBD743014AF79E2C9D2B116 /* cluster.upb_minitable.h */, + 910FCDDC101106D024FD6966BFEAD6C6 /* cluster.upb_minitable.h */, + DBC4570FCF2C27CBB86315B25687F578 /* cluster.upbdefs.h */, + 5383432FC28EB2BE9915C3B5A1C093B3 /* cluster.upbdefs.h */, + C9D6255D5DE62C3088F607BB62729913 /* clusters.upb.h */, + 67D28F25F38EB2CD61DCB724A2D7D862 /* clusters.upb_minitable.h */, + D6AD38546099EC4D7B721FAA9A725BE6 /* clusters.upbdefs.h */, + 1A92B67678D7CC5B14C124DC2EC2E41D /* collection_entry.upb.h */, + 97C9BD2DACBBE8DF3DB30C0DD571264A /* collection_entry.upb_minitable.h */, + 00C6DBE4A6450FB757EE6300DF10AA42 /* collection_entry.upbdefs.h */, + 3008E84395D02DED0F6D50DF8B780925 /* combiner.h */, + AA11D58392B8F5604DE90A0476FD9D49 /* common.h */, + F32F3DBCBEEE2114BCD297E6CC538766 /* common.h */, + 832613D28963A33E04A99F8CC0644E62 /* common.upb.h */, + 4190D3A80247409629C5ADC935DFD8EE /* common.upb.h */, + 29DF28E6C626CCF25581197481D18B63 /* common.upb.h */, + 6CA0C85F3BAAD0211719BB8870908C31 /* common.upb_minitable.h */, + 673F66BE163240E0CE8356A42657B3C5 /* common.upb_minitable.h */, + 0CF8CB945BD7CC1326CF34340A5FF143 /* common.upb_minitable.h */, + D75AD96D0447C0632B3E4F07AEA65138 /* common.upbdefs.h */, + 1D7F13FE06EE1BB4A451428F674FA6CF /* common.upbdefs.h */, + 8AEB775B56D6691753FA42C9B6C2DB33 /* common_closures.h */, + 896C7022B25E39CD3C35C0B31D59DF0E /* completion_queue.h */, + 57F4CEECD51D672FE8DF50FA3D08375F /* completion_queue_cc.cc */, + 89257D24DFF64F44C5173C6CEE4430FD /* completion_queue_factory.h */, + 1FD422F656B01D24AF2B1DBBAAF4AF71 /* composite_credentials.h */, + 1666305AA6C2FE0D63F604D684364EB4 /* compression_filter.h */, + B38B90C2E8CE2F2A0FBF17D78E375239 /* compression_internal.h */, + F5B7C62D1C00C5C28F0A64450FAE15F7 /* config.h */, + 8A4109A9542966028880CB8A807C2F4C /* config_dump.upb.h */, + C1F29F49366F585AD008162B3AC2AEB3 /* config_dump.upb_minitable.h */, + 7741670FE6B19A87AFDB3E2EE5E85AEE /* config_dump.upbdefs.h */, + F0331BC77DD6E8AC4F9302A286251196 /* config_dump_shared.upb.h */, + 80AD10CD9DB465587C8B8832C50426C0 /* config_dump_shared.upb_minitable.h */, + BDCD1105B73D9F1D3F16D1406297AC9A /* config_dump_shared.upbdefs.h */, + AF09B5128F73173272282257C4FAECEA /* config_selector.h */, + 617BB1D4AA36495D64B6086CB6B64622 /* config_source.upb.h */, + 8255E0322A42BB9AA4EC784CD5D6EC87 /* config_source.upb_minitable.h */, + D40F2E40BF72A20CBDED712AC9EF43EB /* config_source.upbdefs.h */, + E894E22BF4448AAC61760F128D3725F8 /* config_vars.h */, + 09A6A35572805CD3C1AC86BF8DBBA663 /* connected_channel.h */, + C124A038594E1E83613BD48ECD0037A9 /* connection_id_generator.cc */, + 1A06C44CCE2BE7B37A26CDC854D0B216 /* connection_id_generator.h */, + 448F32A96E625110CCEA9E5E234EBC8A /* connectivity_state.h */, + 7A5155949D59D63F5F615087138900CA /* connector.h */, + 80FE5EA091EE4D56063D8D0083C4322D /* constants.h */, + 450451951FC2AC58BF47B481D6A744B0 /* construct_destruct.h */, + AB2A7CA7594145665D438DC63219B9A9 /* context.h */, + F3091E2712308EB93EBED0E0D29DC895 /* context.h */, + FFDD9A23A397D55E55A458DFBDA22E8F /* context_list_entry.h */, + 7897D9D1F4E2CF2FF6099EEF1D39C29D /* context_params.upb.h */, + 7F082A39F31A4E6A3331FA63618C6307 /* context_params.upb_minitable.h */, + B894C984BDD3BB684072CA42CA7EFCA5 /* context_params.upbdefs.h */, + 03A0A4F932CBF895E5F38122222C06D7 /* cookie.upb.h */, + 3AE61B5E040A7E8BA7F76DCCD21ECD4B /* cookie.upb.h */, + 2F4FFA3C62BAF6B7AEC283BA73E15B9C /* cookie.upb_minitable.h */, + E5C3EF2ABE501B553041FE488645C912 /* cookie.upb_minitable.h */, + B76DBB386FBE02D557237B3DE20258D2 /* cookie.upbdefs.h */, + 7B663A44E1423BAB8B5772A8D396CB5E /* cookie.upbdefs.h */, + 9505DB34B0C4EEC0F865510FDA8B32D8 /* core_configuration.h */, + A96E8B2ABF1F7B815D89F00C42F30EE9 /* cpp_impl_of.h */, + 8C8772FF80674969F8FF5111EFC17888 /* crash.h */, + CF3F6C6F22C2266B8BA6E016BC147B7C /* create_channel.cc */, + 34932E28AAAE26B834270DECA26CB21B /* create_channel_internal.cc */, + B7B6A8F1098887444BECA6204C2AA58E /* create_channel_internal.h */, + AD905B9EE0889B316BDFEAC7ADCFC5FB /* create_channel_posix.cc */, + BAC5A5EB6EF84643BE00016F01E5D3DA /* create_default_thread_pool.cc */, + 8ADD26FE6B281D8182D9CFAFDA280B84 /* credentials.h */, + DEB93536CE0AB9924034A6A73151DB66 /* csds.upb.h */, + 79DDF6405406E66CC19BFA07FAA6F100 /* csds.upb_minitable.h */, + 01A9BE12316C4C29BA8672F8359B1608 /* csds.upbdefs.h */, + 7C571BEAC714250FF80919B9148ADCBC /* custom_metadata.h */, + 12283868D953D1562E52ACA8D346E5C5 /* custom_tag.upb.h */, + 38A4F5D02B383FB0FDE19668EECDF132 /* custom_tag.upb_minitable.h */, + 8D0331AEF47CB85BB83186F87C900F1B /* custom_tag.upbdefs.h */, + 301442C8DDB71CF4AE1F86FA76A5E0A9 /* datadog.upb.h */, + 1F0DED6B727834B5F0083666C4C8E71E /* datadog.upb_minitable.h */, + DB8FB81AC24181869F954DCEAC237FD0 /* datadog.upbdefs.h */, + C2CF22CD0E7E1DA209DD8D89A4ABBBC0 /* deadline_filter.h */, + 627AB393B9E6D561A6E2486604B4AE71 /* debug_location.h */, + EE0EFD43E7CCA3ABB4C0C7330524DB8F /* decode.h */, + C9628B1F18B1682910970BEAB83B6D32 /* decode.h */, + 18852AC03B7A2985EEC2441932668C80 /* decode.h */, + 03F97215454A794F48BC5C2AD0F11EA4 /* decode.h */, + 1858829078C71EFB7377C11331713EAA /* decode_fast.h */, + 88E58FA0066397B4B2781D6074C16C5E /* decode_huff.h */, + 44D98D64C9DAD8533F024DC4218FD9A5 /* decoder.h */, + D7EB96A1FF9B447D779D39F0BC7DC907 /* def.h */, + 5E6AB51A716CB8DF20E1E4F197C0872E /* def.hpp */, + 9FFD149E7AA437034712E2622AA57B82 /* def.inc */, + 724A32183241FAA749F5A32CE4BFFBAC /* def_builder.h */, + E36B6486D41A689A74994A55366E905A /* def_pool.h */, + 21DA9AEB440109A8267F925632308C64 /* def_pool.h */, + 05451409179446083ABC5CC3DC413BC7 /* def_type.h */, + BE5BD7CBC9C677C1838F8FB6E95774CB /* default_event_engine.h */, + A3DAEB8FC788A26332A6FE8B472C04C8 /* default_event_engine_factory.h */, + 14B0DFF095DB5D756F17BDA0E9B4B0BB /* default_health_check_service.cc */, + 67E969B2A48049AAC22D770AB7EF266C /* default_health_check_service.h */, + 4E6280440ADAD91FDD792772C960CD37 /* delegating_helper.h */, + 8E03586D9244ED093D1090620A83C1EE /* deprecation.upb.h */, + 017AD30D5CAD9D9D06D0713310C7D4AF /* deprecation.upb_minitable.h */, + 29566837C83908AE768AAAD4FE657905 /* deprecation.upbdefs.h */, + F026ADEAF9B224DA3BF210226E67C80B /* desc_state.h */, + 0DB7202B179C24FD7524B351977B7318 /* descriptor.upb.h */, + 29A187FC1F72803EFEF1BD9477FBCEAC /* descriptor.upb_minitable.h */, + 20CF832A472627DC724BD4EB8388E119 /* descriptor.upbdefs.h */, + A6F19150CA4F687D5EEBC98393D97AA2 /* descriptor_constants.h */, + 125E49F643B94A449EDC5B86F17FB570 /* directory_reader.h */, + 434F3B48CE807859FDE920B8429707A4 /* discovery.upb.h */, + 3593DE33DB7E0223EE05A5376210B69D /* discovery.upb_minitable.h */, + 7F7252B40877D3F27DC0F510152845FF /* discovery.upbdefs.h */, + DD5305D831120E3D2D4D914404824AE3 /* dns_resolver.h */, + AD2DAE0893C53A282740663127D76D95 /* dns_resolver_ares.h */, + 620E4543468B31C599AC6E18395B8FEB /* dns_resolver_plugin.h */, + 64240D08B05B03EF0CAD692BEDE6C2E1 /* dns_service_resolver.h */, + DED0ED8CC87B0E34499AD31B7979C88C /* domain.upb.h */, + 106C21C776EE495E25A1DE4839A82C8A /* domain.upb_minitable.h */, + 34E8A94557578676BA0DB28AF029B44B /* domain.upbdefs.h */, + DC64F7165CC42D2721FB613E086A9990 /* down_cast.h */, + 2DC06E2A53CFB248899359032C5C89FA /* dual_ref_counted.h */, + D51A59131EC0067B976CDD813FE93671 /* duration.upb.h */, + BC3DA1381CF8C86CB778ADA307BD9416 /* duration.upb_minitable.h */, + 791D2732CFDA9B3F6167D53AE68DC0A5 /* duration.upbdefs.h */, + 004AFF898D0CA15FD3960E4DA1D42375 /* dynamic_annotations.h */, + 3E2491CEE808522A722F6127329A321A /* dynamic_filters.h */, + C9360AEFAD407A4CC16C8003870BF137 /* dynamic_ot.upb.h */, + A0337B689407131D89C420A9259700E4 /* dynamic_ot.upb_minitable.h */, + 43E37BA335BBE13DA9DC0988A29C8605 /* dynamic_ot.upbdefs.h */, + 9CAD5D5CC9D260B6C3FD57528192F5FB /* dynamic_thread_pool.h */, + 6C04A05651F29B3B9FDCCBB65195D576 /* empty.upb.h */, + C64433550B0A02A048DB7EDE5E949DD4 /* empty.upb_minitable.h */, + 48F2957244BBA0D0E75C513E7506E12E /* empty.upbdefs.h */, + 214489387A8C4FE6211FD5491DA282FF /* encode.h */, + E10242ACC5900D68F532BF15ACCEED11 /* encode.h */, + 7B09537410859BB96FBB351CBE568C8D /* encode.h */, + 457AB4E2347A73977DB84A45DC127DEE /* encode.h */, + E94BFB29DF7A1EBEF52B100FDD34FF18 /* encode.hpp */, + C61702CF2B33745838A4F14769B3F473 /* endpoint.h */, + 0CFF2B3163468687D581384FFFD48556 /* endpoint.h */, + EA27EB84C33AAAEF2E84D2DAE1CD6D7D /* endpoint.upb.h */, + CB3EB38B7074B706778A9CE01D75D960 /* endpoint.upb_minitable.h */, + 383367349D382C5493FD3C7C0AD8B0D7 /* endpoint.upbdefs.h */, + DE7A49CECD389B8C2149CEA10E1BA576 /* endpoint_addresses.h */, + C26EAE00B8B0051B9DC872680D118983 /* endpoint_binder_pool.cc */, + 1FD3305C939ED2B4CB98368D7C3CDA86 /* endpoint_binder_pool.h */, + 0BD2AE59D6BF823B584232A6C61B6B21 /* endpoint_cfstream.h */, + FEFD2143037999CC2A3B79CB5B1C6725 /* endpoint_components.upb.h */, + DC1C5881A90F911277D2912DF2FA0A75 /* endpoint_components.upb_minitable.h */, + A208774AE971297AF8B79F73EB2BD107 /* endpoint_components.upbdefs.h */, + 674B42053A4F7F539FA7E878CD60FC3D /* endpoint_list.h */, + 3157A47CD653D5C6555523F2C2383E03 /* endpoint_pair.h */, + 2D565150ADB81184135811542EB3B9CB /* enum.h */, + 0B68FF2A3EE2D5DB49BF440A2B652756 /* enum.h */, + 6C3AC2E772599E7379C3590A453E588D /* enum_def.h */, + 871A48672EF771FE7429B1DBA0AC8470 /* enum_def.h */, + 8BEACE39169964DB10ADA78AACBB7693 /* enum_reserved_range.h */, + E2500F487F6AA1532F8FEEEF1EA97707 /* enum_reserved_range.h */, + 79AB8446C0D446575CDC100995687846 /* enum_value_def.h */, + 25A77749ED273757006ABCF4DC8EA562 /* enum_value_def.h */, + 67B9AC9D46A1063714610CCB157579F5 /* env.h */, + 8BC05EA13DCEB02BDDC7EBBEDB20C9C9 /* eps_copy_input_stream.h */, + 74897C7A71D6D7339EBCA04B7764D6A8 /* error.h */, + 1E73D43E844FFC6A8E10EA99DAF4C996 /* error_cfstream.h */, + F21C27A15A012A90CED6A39854B3DF80 /* error_utils.h */, + 963C15A7191BBF62D6B6519A5405D0E7 /* ev_apple.h */, + 6EC189FE82AB42456B9CCE5450249765 /* ev_epoll1_linux.h */, + 0A6261A2A7FD7344535AF743BD099A7E /* ev_epoll1_linux.h */, + 7537EA40B6716C5DC375D86122C54E6D /* ev_poll_posix.h */, + 90AFBFD90A8E1D1C849CCFB15C2D25BA /* ev_poll_posix.h */, + B5695CF007698020C6EEB43591D147AB /* ev_posix.h */, + C71F2354B188E3F2F992FE83C3EBF280 /* evaluate_args.h */, + 57508E798AE201B71545D4D978DB91A5 /* event_engine_client_channel_resolver.h */, + 76FA9B80242BB677261B5BFDF7292339 /* event_log.h */, + D86C1E42E7A3D0FECE20A8841CA4FD4D /* event_poller.h */, + 94B0ECD7783F3BCAED1A9FB2DCEF3440 /* event_poller_posix_default.h */, + 3957FEE9AC3E3B3FBA6B7214A08E819D /* event_service_config.upb.h */, + A2B2FE033875472C60370989B26D55B1 /* event_service_config.upb_minitable.h */, + B47279561F06F232C98FB7FFC9996438 /* event_service_config.upbdefs.h */, + A69D3F10CA02D65124B4579170ACF3A8 /* event_string.h */, + 69B63BFAD6328893240B6BAA8253420A /* examine_stack.h */, + C19C317EE23789DF4D5A644B4ACA5D11 /* exec_ctx.h */, + 9BA1944D7A0B43518EC0B7CE1CD03C7F /* exec_ctx_wakeup_scheduler.h */, + 5A7F4CE0A73B2AF9AE87509AA7B9BEC4 /* executor.h */, + 590732B53874CAB5CEC27E7C38BEACFC /* experiments.h */, + E2E40501E6A28ED3F6AE0910D29C3796 /* extension.h */, + 0F7E164C552CE8C0736461BA6B3F0993 /* extension.h */, + 3A65B879700505BDD2FF378859447FCB /* extension.h */, + A314BC0F7C658980F5A3CABFCC4E14F7 /* extension.upb.h */, + C3B035ACBBDF40E70337E41D7C437224 /* extension.upb.h */, + A1295530C1AB4FED108DA79D2704AB86 /* extension.upb_minitable.h */, + E8FE934EBEC7075077EA860111A9BB6E /* extension.upb_minitable.h */, + C50049D8BA304480C09FA60E2F3BD41D /* extension.upbdefs.h */, + 7BF6F268D29CF47170A71E10FC03D7E6 /* extension.upbdefs.h */, + 7D38000303E96949603D3A24B24DFC33 /* extension_range.h */, + 42F35FE91DBA2F29FF8E9A9BF11FFC4C /* extension_range.h */, + C74D600204969BD8418F8E220FA5F62E /* extension_registry.h */, + 7FE76D21C34BE1F038B52C0F3D39A2AD /* external_account_credentials.h */, + 0A527C888D027A7779DE0C03669E1A28 /* external_connection_acceptor_impl.cc */, + 5AB429247778E8FDB8334D46FE8B94EC /* external_connection_acceptor_impl.h */, + 2A0770AB5A24D73285D395CB3757D183 /* fake_credentials.h */, + C88DEDA04B03624DD635AEAF37209E30 /* fake_resolver.h */, + 91EB6F331BA860997B6488517FE97AF8 /* fake_security_connector.h */, + BE0899BC7FFFCD983C92EE85B13FC6C5 /* fake_transport_security.h */, + 1477EC38E8AA88E3258DD94A83F6C69E /* fault.upb.h */, + C407D28C6F7B5479BEA274DD4545D699 /* fault.upb.h */, + 73D0762FE3DAE776173B25626323975B /* fault.upb_minitable.h */, + 609E2D3149EB320511AA33269BE71DCA /* fault.upb_minitable.h */, + EAE39C0068B47C9E17C04E79539F5EE4 /* fault.upbdefs.h */, + 3026751E26E14B2C3EC78253F7DD84EE /* fault.upbdefs.h */, + C7D3682F74104E401F24F76C940E0942 /* fault_injection_filter.h */, + BBD514E5D6ACDD8F1DAB94CB8F050681 /* fault_injection_service_config_parser.h */, + 9A0395580B465B960AF189190E59F37B /* field.h */, + C5BDA3D1DA764F7AC9F21FCFC3178851 /* field.h */, + 7A3BC0190DD99D884CEC7A01BF37D93E /* field_def.h */, + A7B384D2E25407442F4CA3E5C5AE8914 /* field_def.h */, + 9188E8F0522081F88EB8DF5B980F04DF /* file.h */, + E0DE4567157587AFBEAA2C6E4E12FBB6 /* file.h */, + D362951DE6C3CDFA6F7EB8A6BD777F18 /* file_def.h */, + CD8C1360B2B3A636178092BB264F888C /* file_def.h */, + 9A03F2D70D1D1B86AD09724CFE68FF2F /* file_external_account_credentials.h */, + F94AC9A68B3D44B473759B2480EDA1E6 /* file_watcher_certificate_provider_factory.h */, + 9128ECD6019ADA644AE06276FBAFE2EF /* filter.upb.h */, + 179A2C6C09B0E39EA94898C3940DFBA0 /* filter.upb_minitable.h */, + BC81E35D2BAE406D27CE3D2F44F70AE0 /* filter.upbdefs.h */, + 1076BC0E0EE46072E92D9C13A58B8BC0 /* filter_state.upb.h */, + 794929CB2C2DE7793F881A0C8AEB7780 /* filter_state.upb_minitable.h */, + 4E0AB15A985C35E160FDF938FDF69AA4 /* filter_state.upbdefs.h */, + D38E120FDA93C9759C8198D69560EEEC /* flow_control.h */, + B4C1F42B1F03901F59406A22F44928D3 /* for_each.h */, + 98FBDFB1CAE16EA841333FFB16C3A748 /* fork.h */, + 9DE3683B52203E9F60AEBD75DC5267BC /* forkable.h */, + A1BC9E104FD6F3949E9304EB90C88536 /* format_request.h */, + D17537B9BC9FC4774B6E7504CF3C1729 /* frame.h */, + 217C799CBEBBB002374699D31C1A0F05 /* frame_data.h */, + D6DC7C9BEDE4DA10D3FB9B8F2DB9B21F /* frame_goaway.h */, + 042DEAFAEA06E04F444CBC0D33478866 /* frame_handler.h */, + 39C03034C5B485A72AD6FBC7A40A474E /* frame_ping.h */, + 2C1E97BC95C47DB17745578984EF547C /* frame_rst_stream.h */, + 65B3E3991DB0BAB4E8CD65AC2DC95321 /* frame_settings.h */, + 941BDAE9434B5BEED506240222E3B72A /* frame_window_update.h */, + 84CEE0036B9190AB0E55292575EAFFE3 /* generated_code_support.h */, + B22FD52C153583C274B8A3C2D13DC7CC /* gethostname.h */, + 0888094FB07C9B4FF7A281BA611D8EC5 /* global_subchannel_pool.h */, + 1B5B0726260B2425D3A67F5D5D43235B /* google_default_credentials.h */, + DDE75EDC6D7C6E600A9C243965C27649 /* grpc_alts_credentials_options.h */, + 3B0C7D0190B8797837E0C8831DB0AEB6 /* grpc_ares_ev_driver.h */, + 72587A8F9A332038AA580235F5D3B464 /* grpc_ares_wrapper.h */, + 1D099B1AF0149F7AD323150066615F6B /* grpc_authorization_engine.h */, + DCDA221D3816AB6EE46862A0751CF2F5 /* grpc_if_nametoindex.h */, + C290C07B8B45B7FBD652507C72C0CABE /* grpc_method_list.upb.h */, + E838014959FBF2423B5B1D5620E71E74 /* grpc_method_list.upb_minitable.h */, + 0D93AE3E59D5D107E22F0CB1D0717136 /* grpc_method_list.upbdefs.h */, + 2E82BC98A2A059105831A3968FC4CFB7 /* grpc_polled_fd.h */, + 0A38E4E4386BE64FAA131A603EA677F4 /* grpc_polled_fd_posix.h */, + 39EB86AEF9731B439AABBFBF55A960D4 /* grpc_polled_fd_windows.h */, + 13D137FB3AF6139D69165FC7696C5291 /* grpc_server_authz_filter.h */, + 2DBD9F5E8F62A3CB601AB7F46C29403B /* grpc_service.upb.h */, + C6C8F4C677540277F394FFBE23173EC7 /* grpc_service.upb_minitable.h */, + D6F46B1FAB0DF83142F1AF3FA6D1CE9E /* grpc_service.upbdefs.h */, + BFCBF4A12B1C29764899B5C7B1D5B955 /* grpc_tls_certificate_distributor.h */, + 447AC4FB70CFDFA0076B806AD6DA6219 /* grpc_tls_certificate_provider.h */, + BEC6F387256B3E4432A0AD280EE694D5 /* grpc_tls_certificate_verifier.h */, + F4C16D2AE9F346082B4309AB63381345 /* grpc_tls_credentials_options.h */, + 01643C1180429F77475F9F695D947283 /* grpc_tls_crl_provider.h */, + 7F13B575CD1A31C6ABD2A881BBF40611 /* grpclb.h */, + 07F3B0C67215BDB68FB0B6E83EF50AE5 /* grpclb_balancer_addresses.h */, + FA1A68F95B990D5B77062AF3DFCFCD7B /* grpclb_client_stats.h */, + 9B6159FAAE06547D3DFB36D42A8258E2 /* gsec.h */, + 78FEB31CDC03FAA1066CD0B893063427 /* handle_containers.h */, + 7A8F3586335DBC3B30C8C754DF818C35 /* handshaker.h */, + 8BC9FAC55551E50EB38E1ADAC3207842 /* handshaker.upb.h */, + 296B5518BE12B5ADF27F76FFC05BA766 /* handshaker.upb_minitable.h */, + 0A0C77B3BC55CFBEDB43C42E609E998A /* handshaker_factory.h */, + B74A4447A10AC48D13CF8728EA9E7F47 /* handshaker_registry.h */, + 5874326F9C80DDF29398998EB13AE58D /* hash_policy.upb.h */, + D729C6B78C3890394F23BDFD90554F87 /* hash_policy.upb_minitable.h */, + 90C354953523A1EB871010E37480EA52 /* hash_policy.upbdefs.h */, + 2BD23DFE2AEFD50B6D959CE1BD1A0C40 /* health.upb.h */, + DEFCC66D80F61B7A7D26002208AC9722 /* health.upb_minitable.h */, + C8D69B0B65106CCD1AFE8585EAFE5495 /* health_check.upb.h */, + 404EE3170E64678A070C8808A5A11A9A /* health_check.upb_minitable.h */, + 11819201010D1147632474698D5BBD12 /* health_check.upbdefs.h */, + 48E7B61C7EC0E0DA55736BDB920AED26 /* health_check_client.h */, + 751719767A12B1B026005FBE1B610B8D /* health_check_client_internal.h */, + 37B6875A545037EC06E819D61DF01385 /* health_check_service.cc */, + 3FF794A10B30E2505AE2128C0144BB8E /* health_check_service_server_builder_option.cc */, + F0147FC6C6D1D435189006A306B052D1 /* histogram_view.h */, + F7CEDD7815051F1EE7FE260D1D8817DD /* host_port.h */, + FE4FF7FA2D579817F3B8C036C29E8750 /* hpack_constants.h */, + 76BFB764AE5B7272DFBDA30F8BA4A62A /* hpack_encoder.h */, + 67889827EBA785CCA7846E14DEBD3834 /* hpack_encoder_table.h */, + 39264091EF4205BF19AE80B40397CCA6 /* hpack_parse_result.h */, + 0A43566E430A5E0FC3DF8FA3A66A0E75 /* hpack_parser.h */, + EFD16BF22814106C3659B73FE770D9C3 /* hpack_parser_table.h */, + 324780AE1726A5F92DB20061E237CF62 /* http.upb.h */, + 827AC848C0CADBEB847A47784E54DBDE /* http.upb.h */, + 704CAE6EC4FFBD86E3564590CE48F5DF /* http.upb_minitable.h */, + 8FA0DA5EE10A98108058465B3572149A /* http.upb_minitable.h */, + 196F5A88E6FC55CAB2A46410A6342ACF /* http.upbdefs.h */, + E7FCBC9C6A30C15FA6E2E459D72E394B /* http.upbdefs.h */, + A472BB0E04C607F2BB82BCE2BB831A06 /* http2_errors.h */, + 09DA971D368C899A08884B7857A9F4BD /* http2_settings.h */, + AC73FD9713EF2177257AD2D96A972FA8 /* http_client_filter.h */, + C906DFE8FC2D0D80CFD86DE5805311B5 /* http_connect_handshaker.h */, + 8529C387FC8E6CE9989E0CB752D65360 /* http_connection_manager.upb.h */, + 0CD2CDA31DA917C318FAD3AFCFAD4BBA /* http_connection_manager.upb_minitable.h */, + 92C06845916F424871845F5BC9F0F20E /* http_connection_manager.upbdefs.h */, + 2CBD9B612978860EDDBB8B3D852FCEB9 /* http_inputs.upb.h */, + C5D0D9EF104A926D047786C97744C121 /* http_inputs.upb.h */, + 254B6D343F93465B60BCEAC705BCE475 /* http_inputs.upb_minitable.h */, + 423B462BF76BAE2ECFFC13E9236F1A3C /* http_inputs.upb_minitable.h */, + B8C0C6257E215A440EC87428A6CF3A1E /* http_inputs.upbdefs.h */, + 63FA57A6870A52F8F832B19518CDD628 /* http_inputs.upbdefs.h */, + 24A12EE70C116D228988B6A39183EC56 /* http_protocol_options.upb.h */, + AF3A7E7AFFCB116BCA58A62A344EDB54 /* http_protocol_options.upb_minitable.h */, + 5ABD51339BF1DC50726EB326B71563BF /* http_protocol_options.upbdefs.h */, + 4D0F6CFB5379FB5DF2F276B45C6ADD86 /* http_proxy_mapper.h */, + 70B76E00EE4152ACEC6A7EDA536423B6 /* http_server_filter.h */, + A580098DD72597896AAC610B4F953549 /* http_service.upb.h */, + 7E67D11EB1D9D2B2746DBC84E130DA5E /* http_service.upb_minitable.h */, + E4FCDB9E456588D1A7A30894570991D1 /* http_service.upbdefs.h */, + D5949205FBBF4806ADDEF0D522037F79 /* http_status.upb.h */, + 7C1AE7BD9E237D414D403E7B2EAAF696 /* http_status.upb_minitable.h */, + EC8EFFB6CF341D91DC4C77CE8F899233 /* http_status.upbdefs.h */, + 328CCDEF924D516E84EC40458B4A740C /* http_trace.h */, + FC72443355B7723BA4A97DE7E96E7A99 /* http_tracer.upb.h */, + 7B19343AC5FD954AA7917604BDE3CAB2 /* http_tracer.upb_minitable.h */, + 899690B78A3F35F6ECE622A682DA2BCE /* http_tracer.upbdefs.h */, + C787CAE7159577BFD3BB4D8CB6B634C1 /* http_uri.upb.h */, + B2E41B159D97428071D2CDBC7EEDECDF /* http_uri.upb_minitable.h */, + ABD5A39FD7E0E2055338521FE5EB4682 /* http_uri.upbdefs.h */, + B7474BB8A9EDE5A2717BE78437126845 /* httpbody.upb.h */, + 4ECF0A062391796E90C6039670E91775 /* httpbody.upb_minitable.h */, + AE477F0B0BCF761136DB1D2B9A632D2F /* httpbody.upbdefs.h */, + 94CB9B09E49DFA6130A56F691D0CCBB1 /* httpcli.h */, + 818D6903CA6D272786D430CC5E9DBB3B /* httpcli_ssl_credentials.h */, + E411F52F3C14C5F917C82597A74E330E /* huffsyms.h */, + 4E1181B2672C0F9A807EF37D11553C82 /* iam_credentials.h */, + 4FD9664D80F0FCD8485FB5AFAB29BC22 /* idle_filter_state.h */, + FFF3D98D027C9058813256B55EB44FC5 /* if.h */, + 6F9A3F59497B3431A3BF6437F8B19571 /* if_list.h */, + DD7C55ABCDEA47B66E9EEBF316D24727 /* init.h */, + 5A07D96300BE8A595516F70D7A5BF9C6 /* init_dump.upb.h */, + 96B90786498B4958CE62FF627226FE0F /* init_dump.upb_minitable.h */, + 6815E910D1386056903B28F6736CFAD4 /* init_dump.upbdefs.h */, + 42E23200D3FA272EC1A8497FB0352394 /* init_internally.h */, + D348E5527F55EACBBACA53A285657F8B /* inproc_transport.h */, + 10597EB799C4BB9EEAD093769504EEF6 /* insecure_credentials.cc */, + DB4483F7FDB8EB8EEAEF5F69D8D29E00 /* insecure_credentials.h */, + EDF2BCEFAD0EFD06A3FC24B06A8AB1C5 /* insecure_security_connector.h */, + 0DD459C300317BA3965A38D000BCE2E8 /* insecure_server_credentials.cc */, + 0022DDA3BC8899CAE7D63D291D29ACD8 /* int_table.h */, + A968F1A606769CCB592834B06D61AF11 /* interceptor_list.h */, + D2EC694009C233331486BBD0EBCFD3CC /* internal.h */, + 0F503304A40BA8FD30CBE48F3E360711 /* internal_errqueue.h */, + F8AE9B84550090208F9DBBA4D8552262 /* internal_errqueue.h */, + F1002A7416C1B3E04BC7D511D23113E6 /* iocp.h */, + 436EC4B6C0FDB8B459D9B220FBD03700 /* iocp_windows.h */, + F46316BDCF34B2CBAD26026FA6A9ADA0 /* iomgr.h */, + A3606FCA29FB33C713FCF9CDA7A61514 /* iomgr_fwd.h */, + 6012519A575DDA6E63478A74D84DF19E /* iomgr_internal.h */, + CF45EF61D72EBD819F7A6AA46CF54BA2 /* ip.upb.h */, + D562B058336337EC7FEB673D847574C7 /* ip.upb_minitable.h */, + 6EF1EE535D74D7D05D1AEF4493DFB6A5 /* ip.upbdefs.h */, + 6C8E6D0D10DD10066089446BE0372DA8 /* jni_utils.cc */, + B4DC7388AF037A243DF6D8A181A80EC4 /* jni_utils.h */, + F54ED98182C938EF40E6304B598A4C8D /* join_state.h */, + B4B1DD0D6FE3F41A7BB8D49CE13557DA /* json.h */, + DBFB5B0444B6AF06ED7326A54D0DD973 /* json_args.h */, + BE37A7B7377C869AAE7246BCBC6D9468 /* json_channel_args.h */, + D166041D8F3EF9D14961C96E42C30F1E /* json_object_loader.h */, + AFFA3D16229CA2AA529DE03B9A7789A6 /* json_reader.h */, + 6F75E422325FFE1A8052A22F5A81BBBC /* json_token.h */, + 12AA1DB0E6F9E9A4EFA094B2161926ED /* json_util.h */, + 01408743DD0340653EA2728C3DA7D906 /* json_util.h */, + 6E64AACAF90259864CB9D2142B051AA1 /* json_writer.h */, + C9F932B91029090606D7717E3CF22088 /* jwt_credentials.h */, + 9CCBDBB5862F7BA31C167869B9102582 /* jwt_verifier.h */, + 03BC9B7A63117165EDC779CE94330EC5 /* lame_client.h */, + 9C0F8053DFD2379AFC78A98D0233DA53 /* latch.h */, + 612F8FD838894CB54EA46A6412215D41 /* lb_policy.h */, + 42552E1FDBE02EC901E1D21058204E56 /* lb_policy_factory.h */, + D61DB5FB893697FA8D491372A5428B46 /* lb_policy_registry.h */, + EF9980B419CD8521F0B657D7B4199D51 /* legacy_channel_idle_filter.h */, + 768F69437C5212D8D3C2CAAE2553B0DD /* legacy_compression_filter.h */, + 69DF28C0645ABA2711196640ABAB30B3 /* legacy_frame.h */, + 9E51FBA5D15F12BA812E959C354A27A8 /* legacy_inproc_transport.h */, + CA034FE2D4B71F7F3B895CAA72FFC065 /* lightstep.upb.h */, + 2B5B398089790AB1A284603FDAC4C858 /* lightstep.upb_minitable.h */, + 1492C4A8F115A4F91913A29837BFE192 /* lightstep.upbdefs.h */, + A553E509A58C687A815B7831BF15DFB2 /* link.h */, + 0510791D2E6ACE818657EC1890F0F139 /* listener.upb.h */, + B9090A791BA73C8B31D57BDA8D92256C /* listener.upb_minitable.h */, + 2DD04C9E722428287419E41DAF747562 /* listener.upbdefs.h */, + FD709E187B78995F5ADB9B013D554862 /* listener_components.upb.h */, + BCD57FB2AF202564836359B5B7670A78 /* listener_components.upb_minitable.h */, + 1B5E42570E13EF4F4520D7BFEA50142D /* listener_components.upbdefs.h */, + 0CFE927F35A5C87FF61F1ABCA11163C9 /* listeners.upb.h */, + 40EFD834DBC3F9F29E735265E09298A2 /* listeners.upb_minitable.h */, + ED65CBF7C8B42276C95008855BBF0DDB /* listeners.upbdefs.h */, + A828E20A2E96059DE02C6626E515B95A /* load_balancer.upb.h */, + E1C20055A8B5AB7809706BEFAA51138F /* load_balancer.upb_minitable.h */, + 6899A6B1296C5BBA86599215E755D3F0 /* load_balancer_api.h */, + 966CBCB8BF8F371C67795F5F3D165AC0 /* load_config.h */, + DF0B4ED8F911E4640B6F6BCDCF0A004A /* load_file.h */, + 2796959A2FEE489EE004CDD8C6484D62 /* load_report.upb.h */, + 127FCA2E3D70906A08E57D19F8734B26 /* load_report.upb_minitable.h */, + 26B82E110E2968CF39A4040E577F7644 /* load_report.upbdefs.h */, + 3ABE0D3B8C5C7881E6322671DD0A547F /* load_system_roots.h */, + 89126F02575A746613161F7C170589E0 /* load_system_roots_supported.h */, + 03E55CA4B817CA18A3582661A230E111 /* local_credentials.h */, + 9E07D3C3F59066C80D63F92CA4B0235B /* local_security_connector.h */, + 276CB116F836ABD3AC78767239857D3A /* local_subchannel_pool.h */, + 7019A5CB967B61B830D03F00D94003B6 /* local_transport_security.h */, + 2CBC8426187E184653238E496DDDE9A0 /* lockfree_event.h */, + C6B2A447E7B5AD0DDD1328ED916C11C3 /* lockfree_event.h */, + 259C417450F3DBC3A8E102BABD97477D /* log2.h */, + 3736FE31042C781E7AD85DF3846686BB /* log_internal.h */, + 79EAA928D675B822E9979B28044C7FA3 /* loop.h */, + 7C7772EE3624AFCF7045622DB188BEC8 /* lrs.upb.h */, + 600555E1A9F6A501116ED2273BD9F3D0 /* lrs.upb_minitable.h */, + 12C8EC56D5400C79163F6293B691189C /* lrs.upbdefs.h */, + C0BB7A627BDE88F6C62FE42729B637C9 /* manual_constructor.h */, + 575A1E10C03402EAD2F496F76803C2BA /* map.h */, + 082EAD88AFC803A5FAE724DBD5765836 /* map.h */, + CCFD3073A0A852C4C6B78C3B431F2E5D /* map.h */, + F2C4FE4711705068B155DEDB6FF77C13 /* map_entry.h */, + DDEF3D448B41C07B784BE9937D42DF0A /* map_gencode_util.h */, + 1D3A60920392196DBCD52DB016FA2A07 /* map_sorter.h */, + B50EDF341109ABF5DC4AC1851B0D9911 /* match.h */, + C2D95EA68B985CAEF75A8C5D1FBA0FA1 /* matcher.upb.h */, + 9FA887D6F643DCDF03DBFA250DB72A12 /* matcher.upb.h */, + ABC69D5F6D619AC425405764076AA614 /* matcher.upb_minitable.h */, + 16FD4E9BABB88FB97116EE4DBAE48451 /* matcher.upb_minitable.h */, + 3CAFC7942485836905B6004A161A454B /* matcher.upbdefs.h */, + 2D3383727292C4D552095ECAF59DC513 /* matcher.upbdefs.h */, + 83DAFFD02C700FEAA1B3C89E9973B1C0 /* matchers.h */, + AD24BA53FC6DFBD6175D54A192B8110E /* matchers.h */, + 257AEBFA1368B4BDC71BAB1A10C9DEF2 /* max_concurrent_streams_policy.h */, + 2BC3BCCCFA2EB9C772F102EEF87BCC27 /* memory.h */, + F9E04139AD67524C8F782FFD0E81C88F /* memory.upb.h */, + 50B16419FC037644021689FB88AE78D3 /* memory.upb_minitable.h */, + FCCC957CA26E4ABAF0BFB1A482EDA258 /* memory.upbdefs.h */, + 5B801C584BF4505CD18763E9B31C4A7D /* memory_allocator_factory.h */, + 2DE580BD399B992A5FB8CCB74A9E6EB9 /* memory_quota.h */, + 97873A4DC7D97ECC28532587E0F1666B /* message.h */, + A75A53666FCE8BB118BD7BADA2E2D276 /* message.h */, + B6D51208312732FB36AB71D08B0F42E8 /* message.h */, + 12FA76E16D2C2B018EBA32162FA7B5D8 /* message.h */, + 80CC07BDE9593CFC2882A11C7A6C67C8 /* message.h */, + 81CA9D6E50B69499BCE1A9945DFB8CD9 /* message.h */, + 28C24E25182134441240B9036ED65EEB /* message.hpp */, + E57F895AB305777BE67D86C1630260FB /* message_compress.h */, + EF9ADD73079F1E466144FB622AC618A9 /* message_def.h */, + 60DAA00871C602FB27AF93175F8C1562 /* message_def.h */, + B872D203FDA6A8A32B244D5B1B537F24 /* message_reserved_range.h */, + 56016860527DB7D8EE3260C7DFA9491C /* message_reserved_range.h */, + E6353A86B48D6118731B47167539BC6C /* message_size_filter.h */, + DF1781741240B1A477C0960D42344F5B /* metadata.h */, + 5373EE0020E7501BBA3B01D7D4FD4E22 /* metadata.upb.h */, + 0794FFCC969E0426DD962A1B5076EA8E /* metadata.upb.h */, + 52FCC1031C8044D42D8B24B0F69E09C0 /* metadata.upb_minitable.h */, + 05331F5E509EBAC1D6AB831CB125A2BF /* metadata.upb_minitable.h */, + ECD6A46506DBBBB7D4E96BF4C1906FF5 /* metadata.upbdefs.h */, + CEF37A4C13D7762AE7F66A1DE2AB82B9 /* metadata.upbdefs.h */, + 49B4A6368FFE1F1946D1C3BAB4C5EE62 /* metadata_batch.h */, + EE3E499D7DCDBC26180D2EDBA305E05A /* metadata_compression_traits.h */, + 4D33FE4754AEF6E7A9B2F9D475FAF6CF /* metadata_query.h */, + 6A209F65D6E42C8905795C2E5617C949 /* method_def.h */, + 8F80E17F9809F78E5F47387BBBC540A6 /* method_def.h */, + EE7C9118CD4B37ED6702C4C8BD200B2E /* metrics.upb.h */, + 5E13F55783D3C677A889F2CE0921A955 /* metrics.upb_minitable.h */, + D5DB3DAA93DF250F634F3D6455151EFB /* metrics.upbdefs.h */, + E9299D245185A97F0B6CD8F87B3DD934 /* metrics_service.upb.h */, + 3906F842EFA94D806516F6AEA41F41FF /* metrics_service.upb_minitable.h */, + FC020A637E173C8C44321E0E1190E38E /* metrics_service.upbdefs.h */, + 97223640056E39ADC758247D6A011193 /* migrate.upb.h */, + FB1CF84F97E9ADBA641EB7ACEA5B1506 /* migrate.upb.h */, + 7C35296906AF23F6A79BF687595335EC /* migrate.upb_minitable.h */, + 89300CAA8D4124C9BA735FC7F3287B00 /* migrate.upb_minitable.h */, + 8C22BE6BA8E55177569E74CFBFB6B573 /* migrate.upbdefs.h */, + 738289D53F6247210C3D15FF689CA49B /* migrate.upbdefs.h */, + D7DF6603A4D02D728C8DCCACFD20F896 /* modifiers.h */, + 75C51981A47E6EE28086981521858209 /* mpscq.h */, + 2997D63FA71F474C0007E72BAC71BB87 /* mutex_stats.upb.h */, + CEEDE9B5256C4F7638A0CC430B877513 /* mutex_stats.upb_minitable.h */, + E99A11D4E4E5C1A0C05F0EC60DD6BCFF /* mutex_stats.upbdefs.h */, + 86C3E9F69EFEA5AAAEFB292A61A553A9 /* nameser.h */, + 74109632C97CC01C77DB8780945E9DC8 /* nameser.h */, + 7AADA2F3CEC79FC707991AECEB37FC86 /* native_posix_dns_resolver.h */, + 9101071F8CF9885296E783451CF75EA8 /* native_windows_dns_resolver.h */, + F7A97CD1C9C1D628070A47369CA46EE8 /* ndk_binder.cc */, + 21E7B6FD62C956EA884D6937CA84D188 /* ndk_binder.h */, + DF724F1210A0E4067A62878A72EAEB2E /* no_destruct.h */, + C01BF6EAF6F00592CF5A49636B3F3F67 /* node.upb.h */, + 665B0409A3F57783061FBBC03E3452B7 /* node.upb_minitable.h */, + DCD782FDE9B645FB5C4F2F90E7C7BBB5 /* node.upbdefs.h */, + E3D6AC34171E53A1E2E88797FBC6C798 /* notification.h */, + 558E725563D49CA45A5D54353F9343A6 /* number.upb.h */, + CC2E859FF28A6194CF9F5223FA9E6D97 /* number.upb_minitable.h */, + C42891D51C56A8C09151F3D8E30C004D /* number.upbdefs.h */, + 2827DCE479256B69B94919A8CBF62277 /* oauth2_credentials.h */, + F7516034F08E36123C3BC50D7FB0DA86 /* oneof_def.h */, + 9BCF680A82772E13DEDFF0F091B6A2E2 /* oneof_def.h */, + 9E1C415A85AAD1E8BB9D55A99A234C81 /* oob_backend_metric.h */, + 7359DD942A0AA8DD52E78358B11FD6FE /* oob_backend_metric_internal.h */, + 47CDD622E24ED6E5DCC3731FCE0BF2A2 /* opencensus.upb.h */, + ECE688BC1AF39CACB0F3ED48D817EC72 /* opencensus.upb_minitable.h */, + 855325D260F7366FE50929FB3094E210 /* opencensus.upbdefs.h */, + C8C8604C2EF5E2350262E257A84A9614 /* opentelemetry.upb.h */, + 61CFEEF418991981FCDC62A1F8162E9E /* opentelemetry.upb_minitable.h */, + 2B17FC9378E2E251026632CF6641BE95 /* opentelemetry.upbdefs.h */, + 5497A1D0C3D2AE8A855412840F6BB742 /* orca.upb.h */, + 3EABFBC9CC0613CBBE7BE764DFAA815A /* orca.upb_minitable.h */, + C91963557AB77D550724A8A2675C4916 /* orca_load_report.upb.h */, + E2F82F8BCECA315AA0D379A95CC017FD /* orca_load_report.upb_minitable.h */, + 087410A4248949425C73EB52A05B3F99 /* orphanable.h */, + 7EE6E3FAAA0FA4B087CCB5CA55628B91 /* outlier_detection.h */, + BEDA82C1E7BDF827622D625AF2FE273D /* outlier_detection.upb.h */, + 4BEE90CDB82099D2DFFCF9344714F6F9 /* outlier_detection.upb_minitable.h */, + 880192DEF3DAC7A13AD607A3E4BA9AC7 /* outlier_detection.upbdefs.h */, + AADA90DC2A9F94E7DC7C0144D5CDEF22 /* overload.h */, + CDFE916F90654005FAE7961B7009E5EA /* overload.upb.h */, + D5028DEA00B756041BFD62CEB50291FC /* overload.upb_minitable.h */, + 06FEA7FF178B8A88A11095A696441C2D /* overload.upbdefs.h */, + ED2FC6DB0308C47F5FC52D4CD5DB232A /* packed_table.h */, + 75F80C543839E853236F3A3531244CE5 /* parse_address.h */, + 082019FAB27788E9C338BAD586E5376A /* parsed_metadata.h */, + BB0504BFA3C517BC5AEACEF05091347A /* parser.h */, + 66E76A1F4A63EBA535E6396DDC03A067 /* party.h */, + 8FF4FAB214E4AB4E595DE7910F61DA6D /* path.upb.h */, + E6C544186DE2349E98EC4841306A7389 /* path.upb_minitable.h */, + 6E292C16E37A10D2FBC21021719D9096 /* path.upbdefs.h */, + 839906DE03A50726BA69A9781A430A42 /* path_transformation.upb.h */, + 9BB0C3778D693FCE2CEFD24104B35582 /* path_transformation.upb_minitable.h */, + 9DC1F9C3D6461B2727D6BCF931945267 /* path_transformation.upbdefs.h */, + 66C7944E5A1BD4600D3395DE93C3440C /* per_cpu.h */, + A40E98C18DCD705CBCE5ADC488E91F2B /* percent.upb.h */, + E554E5F0B728EA89B84601D5B349DF8C /* percent.upb_minitable.h */, + DACEB13AF35389BC6CEA06E9FA0E2942 /* percent.upbdefs.h */, + 7C51132B77F27AC9F39A4C1928B90CEF /* percent_encoding.h */, + A87F7A77FE5CBCF0F4B8211AB96E8B9F /* periodic_update.h */, + 4E6A7B9663D35B5F9DC678735C6C6759 /* pick_first.h */, + 6846C832D77D7484C5B1B75669907912 /* pick_first.upb.h */, + B075B5E22B3D9365467D4B17D89289F1 /* pick_first.upb_minitable.h */, + B188DD2B439A310B2387368DB23624B0 /* ping_abuse_policy.h */, + 925C4C9648E7D5A8F9BFC257FD818688 /* ping_callbacks.h */, + 972CFAA65278A82A8F172B2DBD183C84 /* ping_rate_policy.h */, + A6D64584DE70B509BA1808A32B6021B9 /* pipe.h */, + FB0AB0B4C1E518695A802B56D04FD4FE /* plugin_credentials.h */, + 77601500B29D81924C77AD2DEF2D63F9 /* poll.h */, + 7CD392C19A972115659F61BBFD2B712B /* poller.h */, + EE65D35BE38936E3AE594C5FB94C9DB4 /* polling_entity.h */, + B03A4227E1A0DB6BFD7CB042796D6A57 /* polling_resolver.h */, + 304AE726D484BA2928C1569B5617B493 /* pollset.h */, + A6DC2D0BB7644232AA345749AB571C2B /* pollset_set.h */, + EFA3A2E2708D59389925C37F2FEE35FC /* pollset_set_windows.h */, + E5855CB8EF614C784721D385DD55AB65 /* pollset_windows.h */, + 24CF2B4ED8A869471F3121A72CAA9743 /* port.h */, + 2B2308941650B80F684250C20004EC49 /* posix.h */, + B36D13C0B1B7A537187B6AA728ADE52C /* posix_endpoint.h */, + B10F00707D932A96B878E2BDBF93A0B6 /* posix_engine.h */, + FEB530D9AB1ECA44F56CA7FDAC944D85 /* posix_engine_closure.h */, + ADEA5E6064A8A26F9328534D40C9DE5D /* posix_engine_listener.h */, + 0E679960620D4A62D4A68C12757D7192 /* posix_engine_listener_utils.h */, + 455057A8FD941C3E723C4FD8C0EBCC2E /* prioritized_race.h */, + 2F3822A9EA299776A89311FC4F9FE435 /* promise.h */, + 7ACB9A08910B0D42F980A1E7CE5BA091 /* promise_based_filter.h */, + 14004F2581C899A434D2D47921BCAE9C /* promise_factory.h */, + 6751189DE78F3450644220E50A234BCB /* promise_like.h */, + A750799C655157E933A0E70313FF717C /* protocol.upb.h */, + 8156AB8CEE897031773F626FB60377DD /* protocol.upb_minitable.h */, + ACF876A9BC32A7421CF07F9A28C1F1BA /* protocol.upbdefs.h */, + 2C4AC86673661A5F81849D1542D3BCED /* proxy_mapper.h */, + AD7B09DE650C0EE784AB640E1BA838C8 /* proxy_mapper_registry.h */, + 6C96B874A2D86C3E3D4D5872C99A6DF7 /* proxy_protocol.upb.h */, + 80E5440E0B36F0D6BE9A19465DE47C61 /* proxy_protocol.upb_minitable.h */, + 08D9602C0EC12C594ED9982B5DFDC241 /* proxy_protocol.upbdefs.h */, + 45504586DB648020C757B47EE1A87B9C /* python_util.h */, + 62E25574A98D381FB10154A276B5DB4C /* query_extensions.h */, + B20F9C15D11ECCE4BC82BA68DA7EBF76 /* quic_config.upb.h */, + 3EE08784F701589EFD28E5951611563D /* quic_config.upb_minitable.h */, + 14312E51E61FEB43A9F01997D694828B /* quic_config.upbdefs.h */, + CC820418D361FDB4B11B4A032121D96A /* race.h */, + FD983B46E98A25461E2DB0A24AAE9A63 /* random_early_detection.h */, + 4E8032EE9764D543857B371F7C921BF0 /* range.upb.h */, + 55C598169F32D3E91A4FEE43EC23624F /* range.upb.h */, + 6D440B2E6801BCEA83BAD6A1A26A319B /* range.upb.h */, + 27913A040EB93EC3C26E75323DF67A2F /* range.upb_minitable.h */, + 3F8317FA9C5A6FEB8DBAD6EF0064017D /* range.upb_minitable.h */, + 29AFE3E2D3B9CCBE7DC0E6A4E606E9F9 /* range.upb_minitable.h */, + 9A4EBAC039CA82A97ED76E2A89B0A179 /* range.upbdefs.h */, + 172E380D54302D72B0735B57569D9A73 /* range.upbdefs.h */, + E7A7B33E40AE1E84098917372E9F1920 /* range.upbdefs.h */, + 3EA9A18ECFE0031CE52D0DA9083D23C4 /* ratelimit_strategy.upb.h */, + AE7DB61CD4A0EF5FF27F3110E65A8414 /* ratelimit_strategy.upb_minitable.h */, + B2A4E4C69B2E53B447AD72CB49C4D400 /* ratelimit_strategy.upbdefs.h */, + 6BD03A1E0D48430505A8969A36029814 /* ratelimit_unit.upb.h */, + F6F49928A0B606F2313276C6244B183E /* ratelimit_unit.upb_minitable.h */, + 39DC697C81245FAD4B35354B0A6CA87F /* ratelimit_unit.upbdefs.h */, + 76F20813CB4A45F21E64397BC4921E10 /* rbac.upb.h */, + 4A999A9EDA79338B4950A2411D18CA83 /* rbac.upb.h */, + 8DB373B281F6E8C9040D8C7899857D63 /* rbac.upb_minitable.h */, + 905DCAFFE0B75C4C4EB9D4983A0D798D /* rbac.upb_minitable.h */, + 0945D6920CB844DAE0B3CE5380CE625B /* rbac.upbdefs.h */, + 15411061B17DAC2EC04206BBCC1953F3 /* rbac.upbdefs.h */, + 858D2C6EE1517E196D3666DD315AF311 /* rbac_filter.h */, + 427892DB8181A71853160F1EFA74B7A4 /* rbac_policy.h */, + D3B987528B6F453471B975AC238DC0CC /* rbac_service_config_parser.h */, + 62D53CE2EDBD032BF0515C2B58D7A454 /* reader.h */, + 9B0E28D281837501F54F7DD25C22FB4E /* ref_counted.h */, + 6828EB6D32DDAA7B9F9B0FC3C9800A5A /* ref_counted_dns_resolver_interface.h */, + 952B64ECCBB03860B15675CFEA3A4CC4 /* ref_counted_ptr.h */, + EBB5C474EB03D710BC548E324C8E9421 /* ref_counted_string.h */, + 33A2FFCCDE41FFCA9FD0D8059A7AD717 /* regex.upb.h */, + 95F4815ACCC3E583361C1BAED97D3246 /* regex.upb.h */, + F05A9384C55956B000020425C8582748 /* regex.upb_minitable.h */, + 540E4924012F3566A249813CA324C195 /* regex.upb_minitable.h */, + A69623A2B08A7C7C83C374492019626C /* regex.upbdefs.h */, + D245DF03013D908317A469758A73B209 /* regex.upbdefs.h */, + 9BE0A2C2720D7A3449C5BE68B07DA9EE /* resolve_address.h */, + 72534F5D94210C74D6CDDFF12E8D98B9 /* resolve_address_impl.h */, + 16F6973C71247B0DA38FE8264F97C7C3 /* resolve_address_posix.h */, + B5BBD87DCB8E6080DBAECEFDB91BE723 /* resolve_address_windows.h */, + F79249CB5E8A4D0AD7CD8BB5B20F2A7B /* resolved_address.h */, + 0C4DE270129B2C26EB06A0F9B494EC8B /* resolved_address_internal.h */, + 1B3CE82251C0B5EE1C23C6E03B1C6B68 /* resolver.h */, + CC773465021BB92E618DA0B4A3710BD2 /* resolver.upb.h */, + 4FF4BD99E51C5098F1630AA5FEA1E608 /* resolver.upb_minitable.h */, + D142633A2B7ED71DE545CE8AED2E0BB0 /* resolver.upbdefs.h */, + BFE134FD42A23BE052666E4E481C6969 /* resolver_factory.h */, + 1029805654EDC455D1FBA85737C1FCBB /* resolver_registry.h */, + DAD6C59D0FC3BA3B690433098DD17CBE /* resource.upb.h */, + CB42EDCCBE7CB46DC3E11278DA2552EF /* resource.upb.h */, + 833147B97811A9976CC103EF8F21AC49 /* resource.upb_minitable.h */, + 84146106E0B336B03BC5EE0E7A0BF982 /* resource.upb_minitable.h */, + 1529ABEE74C846504A7B8560C367E400 /* resource.upbdefs.h */, + C35CD22A9AB732639F261DB5E90440B1 /* resource.upbdefs.h */, + 9CEF911855FD910696A582BFF8497939 /* resource_locator.upb.h */, + B35FE019A1F49449178C14147BB7A398 /* resource_locator.upb_minitable.h */, + 49C998CF25CD5395B71A28D2FBAC3A90 /* resource_locator.upbdefs.h */, + 3948EAE03DB85DBAD79D229A5380402B /* resource_name.upb.h */, + F38C6862EA33B1BE6B4D2EE42FA2215C /* resource_name.upb_minitable.h */, + 27EEB3BC6EF6816719DF7AC8820AEB5B /* resource_name.upbdefs.h */, + 98389D31D68212AC79598BC07260F4D1 /* resource_quota.h */, + ED13D421B0CDE81E034F6FFDD1EDC276 /* resource_quota_cc.cc */, + D90C9E5D9DA4BD6FE63556B685F94711 /* retry_filter.h */, + 00674DD5986B440E93365029671828C1 /* retry_filter_legacy_call_data.h */, + 7FA64FBA7286618B844E2AF7D0717A4A /* retry_service_config.h */, + 1BBA3847783FF4CAC219B51B42714CA1 /* retry_throttle.h */, + DBD274DB6B83596BB9E409A39176757C /* ring_hash.h */, + 4EDF784ED19CD2F1FFA3336BBD46F6DC /* ring_hash.upb.h */, + E6B5D905FDF21D8D5021957EEA5A57CF /* ring_hash.upb_minitable.h */, + BCCCE7A4ED1EC9F7FEB1538C8B98D65B /* rls.upb.h */, + 1CDC8B058FB2673D569F17DD83CB9769 /* rls.upb_minitable.h */, + E9541F7E95D69A5F464FEBBE54252724 /* rls_config.upb.h */, + 3C59496157383A4BCCBC878983B7E4B5 /* rls_config.upb_minitable.h */, + 30FC7A2C92E15320F6E7ADB7B3117AD0 /* rls_config.upbdefs.h */, + 6E7FD98463FF11E4489FD73C9503D6A1 /* round_trip.h */, + 0B78CC3D88493EFE53F69EE7580A9AD3 /* route.upb.h */, + 825AA11244F22048001B93D6786C2983 /* route.upb_minitable.h */, + FBB2267D7B9EE7EC9F57A1182DBC6CDF /* route.upbdefs.h */, + A3FAA1E303655DDF15F2B874DF44DBEA /* route_components.upb.h */, + 9A6CC05617ECD6E34E04312E1AAEAC22 /* route_components.upb_minitable.h */, + BE4A5FA0D5685A4796344FDE88C1612C /* route_components.upbdefs.h */, + 7BEA5EEAD4956C707F5C0692DADDC05C /* router.upb.h */, + 41FEBBF2D4596E7DF8F3087764FC44B9 /* router.upb_minitable.h */, + 4652054FD4B388FF6C93ECA471B1D019 /* router.upbdefs.h */, + 57246B50EF0C2CB83408723291860DC9 /* rpc_method.cc */, + 7D7042932D70157E3D17EFD3061757BC /* scoped_route.upb.h */, + 8D5AD6D97E7A49197ADF100156C1EA7E /* scoped_route.upb_minitable.h */, + 32DDEDC785C4077848CE90656B5BFCF9 /* scoped_route.upbdefs.h */, + EFA703DDC9B1F364070A57A05B903E21 /* secret.upb.h */, + 7387EEB2D1405718267FCFE3E0B9B7CB /* secret.upb_minitable.h */, + 32DF46B42F5BDB98E8C7352F862B2617 /* secret.upbdefs.h */, + A5E2C3E267FFB24337230E76D239A84B /* secure_auth_context.cc */, + C4697ACBF6B857A5D9177A7241D4342F /* secure_auth_context.h */, + DC6750D6E22F3861A09401D6E2BF0429 /* secure_channel_arguments.cc */, + 39A0E1224EAFA57D181005B00AEE9931 /* secure_create_auth_context.cc */, + FD51B813072A3F3A915D07C6D2828CB9 /* secure_credentials.cc */, + 8EEFDA9696C627C0A0041DCA5DD4887E /* secure_credentials.h */, + 2ECE8978C91499FE21026D92FB52F5E2 /* secure_endpoint.h */, + 160BA88C2074D334E4D4CE2882CB2258 /* secure_server_credentials.cc */, + 5B1F08C8DC8B94D03D824CF4D027F5B4 /* secure_server_credentials.h */, + 5164EDCAD404099E478AEDD48452B0CA /* security.upb.h */, + C592929E97A2CBDC2AA60124D58F198D /* security.upb.h */, + A6C38AEC2231FE6EA5FBB54E9B262F56 /* security.upb_minitable.h */, + 18A472011BC6B27F81C11222DEA56232 /* security.upb_minitable.h */, + A6406BB3E13FF01D50BEC63228443EC6 /* security.upbdefs.h */, + 2B19DAC980CA3C6F8B5F8C0A37A915EF /* security.upbdefs.h */, + 69C089A46B8A2F5FCC8F983212AD87CF /* security_connector.h */, + 0E0030BBFFA5934BD1BE7CD46D713AB0 /* security_context.h */, + C435A66B39C690C53578DAE933D7FA82 /* security_handshaker.h */, + A3279FE278EB23046B743F2FF2C57FDD /* security_policy_setting.cc */, + 723B34E1B8F9F615E43E996810C17CA5 /* security_policy_setting.h */, + DA8C5F3CBB6A113CEBA9F171B2CE37D0 /* semantic_version.upb.h */, + 725CB7834559363F37758D622B2F8606 /* semantic_version.upb_minitable.h */, + 5F7DF0B3CF4C92D506DB86659DBDE57B /* semantic_version.upbdefs.h */, + 62FDC7DCB670393F72B4EF156F35EFD5 /* sensitive.upb.h */, + C741F6AA0300B09B31415B2285B604DA /* sensitive.upb.h */, + 6BD53CAAC80DCFB178BEBEAA49E22497 /* sensitive.upb_minitable.h */, + 16F6EC2CB099E30CDA49820E93000981 /* sensitive.upb_minitable.h */, + 0B4256026AE661461F8FCE4EC3AC452A /* sensitive.upbdefs.h */, + 8AB537CC198FEA229140FB4BA1061E38 /* sensitive.upbdefs.h */, + ECD4716CB01EDFB72751EE65E6FA6EC1 /* seq.h */, + FDE9971441B6542A07BF888B6269BFD7 /* seq_state.h */, + 1D009CA44950D513B66D135FA67320A4 /* server.h */, + EA9F21C6268F4D663417020AD861CDDE /* server_address.h */, + 7D31FEA1CC24E51E1E389D7608D2E55F /* server_builder.cc */, + 5001D2C44EEDD6CD5C7F2C326D7E9BD7 /* server_callback.cc */, + C047D7ECB4062BAB70E3625C4F0C256C /* server_cc.cc */, + 55DB979A2E0026DE32DAC1B2CE468345 /* server_config_selector.h */, + D88BDA7BE0C6B5674C598D996EF9D9D4 /* server_config_selector_filter.h */, + E2B0A1C828BCECE9549444C781F3536F /* server_context.cc */, + 03C35B88F6B933A85AADA9F88A26BEC2 /* server_info.upb.h */, + 75C89AC9F534E7DC86EAFE7B02D35ED4 /* server_info.upb_minitable.h */, + 925D857E35740CF5DFBB62215C234BFD /* server_info.upbdefs.h */, + 72A14D383D9FE419383D8B3A3FCE0FEC /* server_posix.cc */, + 4FFF2329F4927600B649F3D57BCB8CB7 /* service.upb.h */, + D1C20FA212EEB61A4339D0E8CC188FFE /* service.upb_minitable.h */, + 2F2181F62F9FF574B6A0A4F1122C798F /* service.upbdefs.h */, + 303CE32F97720D58075441B064BBD81E /* service_config.h */, + D1F3DC56935005A8B7B267D14B205177 /* service_config_call_data.h */, + 7B687D7681A5F16DAFA3F4CD87619C65 /* service_config_helper.h */, + 0882CA30A1CD1E9A42D384100A42E482 /* service_config_impl.h */, + 638DA56CBB3390F1034287E2587DBBEF /* service_config_parser.h */, + 5F2C9C3D267917437B6F63A4BF25A2D3 /* service_def.h */, + 88ED68FD189C5A9AA090BDBECE6D8F39 /* service_def.h */, + D5EA5E43CFE905014D68BF50ED8D786A /* shim.h */, + 20030FDC2427B4CCA5A5F79CBF972A24 /* simple_slice_based_metadata.h */, + F61D0928ADC480E05115063FD02D07A8 /* single_set_ptr.h */, + BBF1761A0AD8E9E8D5BB19E57FCAC04D /* skywalking.upb.h */, + 2089B445061FAFBC48BACA58CE38AB05 /* skywalking.upb_minitable.h */, + 93A42BD801C841DCE3C63BBC355E88E2 /* skywalking.upbdefs.h */, + 97BF481C7BA3B9263200549647BA2284 /* sleep.h */, + A3406D7AA9A01C9409274AC248F39BCD /* slice.h */, + 90206A559E7843E6C794A2BC5207FC2F /* slice_buffer.h */, + C463F3320D453A08BEB89F8B74933AC4 /* slice_internal.h */, + 3D567DCE6E9C1C89A9563BC972C7B849 /* slice_refcount.h */, + A9AFF882188B33645A3A5623B5D60C8B /* slice_string_helpers.h */, + ED324ECD6E2B0DE01C9B4D09D90E5077 /* sockaddr.h */, + D6BFEA62DC00B70C8C57C53A43C39AAA /* sockaddr_posix.h */, + AB324347EE5934306A8D7988919FAF4B /* sockaddr_utils.h */, + 18BC9C6C924EF1C32451C6F1DAB6DA86 /* sockaddr_windows.h */, + 12989FA44145246DFF031F5A24247A30 /* socket_factory_posix.h */, + 704700246C923DD586015B33DFF80DAC /* socket_mutator.h */, + EE5B95DC0F0BD3161D25F1B238C821B9 /* socket_option.upb.h */, + 244AF837F9EF539D4C2C9D7C4F13ED6E /* socket_option.upb_minitable.h */, + 4502DF4229C79FF44246F77437D0FCB2 /* socket_option.upbdefs.h */, + 3B171CDDDA4D319049ED3C4ADA35D2F2 /* socket_utils.h */, + 4B87213D75CFB6AC5F2DA6C8F5566F14 /* socket_utils_posix.h */, + 93F22E60DB8AF8B35F1CF78F6CB97A6D /* socket_windows.h */, + 1DCC6A0C6704846636ADEC64C251A200 /* sorted_pack.h */, + 54175CA9F046F766F33AAE32287D1100 /* spinlock.h */, + 50A88051E1C14B1F2B486B67F2143855 /* ssl_credentials.h */, + 8ED72FA4442983F7DD9471C5EC527487 /* ssl_key_logging.h */, + A85D2071E0503A42E850F78A0C696C6C /* ssl_security_connector.h */, + 1CF2685CAEC151D34C43B1950454F2EE /* ssl_session.h */, + 64660AAB9124EFC5B216F7AAD48882DB /* ssl_session_cache.h */, + 61CDA1BAD2B60A6E1F66320E0322580B /* ssl_transport_security.h */, + 434FC5BCA3776D4C8FE2416C48938107 /* ssl_transport_security_utils.h */, + D7104CB6BD39CEC58FCFECDB069AF2D0 /* ssl_types.h */, + D7B93A4DB1A137AE64334AD7B02ACDCD /* ssl_utils.h */, + E8C1FB8F23D864CF886BBF627FD5CEF2 /* stat.h */, + 5EF96E6F2B0079E25DBD2F17402A831D /* stateful_session.upb.h */, + 09DC7FD0B3181D76D3FBF8B3F33AFC21 /* stateful_session.upb_minitable.h */, + F000F04E87076A537AA13940FB435B54 /* stateful_session.upbdefs.h */, + 88552DE09052E43B63150278CC2E4A6C /* stateful_session_filter.h */, + 13D2712B1470F76E1C899CDF59EE6B50 /* stateful_session_service_config_parser.h */, + 9CB937A49C685C845C5C6653EAA1C158 /* static_stride_scheduler.h */, + 28E28725FCD17190A48271CDD87EFA96 /* stats.h */, + 70A0E2F5F961481198732507978F50C3 /* stats.upb.h */, + 6F6DFA830A822BCA0A1432F9F929456E /* stats.upb_minitable.h */, + 91FE69AB03D14CED2975A9EF76586B87 /* stats.upbdefs.h */, + 04B85B8443697BEAF6D83F83BB3E2452 /* stats_data.h */, + F4BE76D48BDB2E6A2D6F64E78C9BA2B5 /* status.cc */, + 54938FD7E1E99E34C685EA5143983EE9 /* status.h */, + E93BC63A9E9C3AE740308AC2FF2A6CD0 /* status.h */, + 552483454A7C0BCBB592A4ECBD4B649A /* status.hpp */, + 7898B94618A60E30C44240617673FC6B /* status.upb.h */, + B7A59BFC4E275C2F750B6DF8A539C22F /* status.upb.h */, + D35A392B50C2C5AAC271E23DD56D2BF0 /* status.upb.h */, + B6F77988CF88BE9EFE4CC56B21FFA649 /* status.upb_minitable.h */, + 0C52EBB77107C904928C6E232A8CF712 /* status.upb_minitable.h */, + 637AB0ECB7D5A6B75FE33C9E95192A17 /* status.upb_minitable.h */, + 6D29B955AA5999DE2E293C0A37D10F8B /* status.upbdefs.h */, + 51A6784E63EF08435CEDD0CFC392A574 /* status.upbdefs.h */, + 98F6A79A8BB64D59284C77CF3AF81382 /* status.upbdefs.h */, + EEB8BB439810112811EA1C236A7FECDD /* status_code_input.upb.h */, + 726850753D020773A68092D418DB5327 /* status_code_input.upb_minitable.h */, + 8B8459D9A428CE4F5997614456FB4184 /* status_code_input.upbdefs.h */, + 0723FBD4F83EF23F034975DA33E622F8 /* status_conversion.h */, + B80D48C5A64A7624D67CE3927ABE8C1E /* status_flag.h */, + D67813AB87E6EB52BFDEFEF87204D499 /* status_helper.h */, + 7E4DB2772CF935CBD51A927A99622699 /* status_util.h */, + ED33A13EF81AD523E5C62506EB51EEE9 /* stdout_logger.h */, + 636EFC315727A9EA1DCC5E55866C100A /* str_table.h */, + 102FBDCB199D7C551CEEAC518C5532BB /* strdup2.h */, + 502650DFEC52E056D1416D88160A67F3 /* strerror.h */, + 5D774BCF91E8AB89573309FCC930084C /* string.h */, + 66B067F9AEEA02DE6405837B1BC19ED2 /* string.upb.h */, + C23FC429DE5F1B663A7AF880B442D9C8 /* string.upb.h */, + 8A2A5EB3F6F5489BE98226B601B3CD96 /* string.upb_minitable.h */, + E5231DA774E4B33B890A7F6F4A989B27 /* string.upb_minitable.h */, + 32A8C4ED7F7D5C9743C6C359B8D258A0 /* string.upbdefs.h */, + 4FD1DA5F1D05E410CFB288FEECD96651 /* string.upbdefs.h */, + A6A95C8C84E918F7F7697E08C696CEEF /* string_ref.cc */, + F3DB86F1C8A87A2078E5688E20CCF221 /* string_view.h */, + 0E32844A89AA23B4FFD608C8EB51CC1D /* strtod.h */, + AA6B4411B3165A412F7531337B03E4CA /* struct.upb.h */, + 8E9456E8A5747F89B9A8A69F93B2A16A /* struct.upb.h */, + F39B91D83D5FFE922432A7C93BCB3F43 /* struct.upb_minitable.h */, + 36010401C0AE2273ACF3A522425E54FA /* struct.upb_minitable.h */, + 227F52B69264CCB37E594C8E1E6EEF13 /* struct.upbdefs.h */, + 0C49BA4BB057EC9D7DB05389C53D1989 /* struct.upbdefs.h */, + 2F990A5D8B9A16D1ED710BAB8A577917 /* sub.h */, + 3EE638B8185757188F516270A19622A2 /* sub.h */, + B00BE153CCA246A3E52CD57084EAA180 /* subchannel.h */, + 1FA4B148C5D6B5D5D8D7030E45F7DBA0 /* subchannel_interface.h */, + 298B908EEA0FF83F0FE8220EFF0511EC /* subchannel_interface_internal.h */, + 7EF25EAC1E0354ECD9A0306963D9BCCE /* subchannel_list.h */, + 49E7F7C214A9B6C080449612EE3E5697 /* subchannel_pool_interface.h */, + 4E2C6E177D6275B34FBB0F0BE84D7317 /* subchannel_stream_client.h */, + 212A4E78CB9B5A5BA548266334DCD4C0 /* substitution_format_string.upb.h */, + 1208B6BD54DFE33FB3DE02491D887333 /* substitution_format_string.upb_minitable.h */, + 8E73733E95E9AE6DB36487D1D70A0A39 /* substitution_format_string.upbdefs.h */, + 288736EDAA926B1680188A6454F0C93A /* supports_fd.h */, + 3AD555EB8BE7918273A7E282BA85C8C8 /* swap.h */, + B1C2E10F035D823B9FAE82D86DB2BBAB /* sync.h */, + FA9489F06E802DD3973DEA7BD09AC8E1 /* syntax.upb.h */, + 140CC9A59497434BCF997F46538DC343 /* syntax.upb_minitable.h */, + 5E537BA85B518821A51C8EE0B80DAA04 /* syntax.upbdefs.h */, + C2FED14A6D4E8B60B8B18EDE24196A00 /* systemd_utils.h */, + 64C6B874F166D4AD8D01E4971A2247DE /* table.h */, + 643C5A40526EF6C34E22B318CA88B199 /* tagged_ptr.h */, + C88E640434F6F36A7902A052E23F3A31 /* tap.upb.h */, + 1803D3BF7F8EAB968D9E587E9ADBE8FE /* tap.upb_minitable.h */, + D7BFBFEAA39E7E88B5D2E2241BBABF3F /* tap.upbdefs.h */, + 7DA5CC7B75F3640AE1A05E86CA6D0BFB /* tchar.h */, + 5627D503EF6EF8C50544924E1023A850 /* tcp_client.h */, + ED32E5D307992A2F2BF46367DE8446B3 /* tcp_client.h */, + 08978A04CA1B8CC0C90F4CA36A596A14 /* tcp_client_posix.h */, + BA9751A3932FA70649F94A531A754175 /* tcp_connect_handshaker.h */, + 4CD2C81E03B9FD7EA603878DA8D46A81 /* tcp_posix.h */, + CAFF0A6A48D78553506885E9CB7AC600 /* tcp_server.h */, + F39CC8E6D73150B559B118ECF8169ECD /* tcp_server_utils_posix.h */, + 324927FF037FFCDAF54B3D564874DE2E /* tcp_socket_utils.h */, + DDB202C60676F680F2972FFE2D5A995B /* tcp_socket_utils.h */, + 8F6C252D8D7A9A4F38073D2386A095BD /* tcp_tracer.h */, + BD0122E0EE204F151DFACBC75897A6C5 /* tcp_windows.h */, + 48AA1BF41970302A79F0E2AD81F5D195 /* thd.h */, + C6488F90B0B0A6C016A9DA067888E5C6 /* thread_count.h */, + 5380F303636DF88FD22AC18F7B56FDA3 /* thread_local.h */, + 313C0F196450D3CA24761F6349B82782 /* thread_manager.cc */, + 3C30E325D7D1C222524474D3C30A820F /* thread_manager.h */, + 87311A2FB7E243DA6EEF8CCD88537014 /* thread_pool.h */, + 552A17D16F809A9728E6F8B2ED8CB379 /* thread_pool_interface.h */, + BCD101297BBBCAED54D13DFC8979DAAE /* thread_quota.h */, + 4AEFB63B5203F8DBA00EC1862447F22E /* thready_event_engine.h */, + 476764B4D812387E9250442D5AFC6C9B /* time.h */, + 8643362C6D195D42937880E716237489 /* time_averaged_stats.h */, + 34CD1108B745687FFF504EC40DDF8FDC /* time_cc.cc */, + 771019266B5E66C636896E6A32F88A48 /* time_precise.h */, + D70F00FF85690ED6E331D764BBCC4E67 /* time_util.h */, + EF035AD680FEBA5AA558BFC122C3C108 /* time_util.h */, + 995A0DAF8304CD32FCE81A1E0F929A04 /* timeout_encoding.h */, + E05546E71E507657484622D4B6B7B90B /* timer.h */, + 7048DE6824E02773E82E3B0A8FE67F6E /* timer.h */, + 185F402C6BC0DD91C9B9C49ACE22C4BA /* timer_generic.h */, + 67A74E0E058AD584D295B0B7D5F4537B /* timer_heap.h */, + 28F362C72EBC35A29BEF0D09F9848663 /* timer_heap.h */, + 7ABDA888A6341F4DB2DC01D3AEF6BABF /* timer_manager.h */, + 786C8803F62311599F12EBCEB0939F1C /* timer_manager.h */, + DB9397D484677F59798C700222EB52D9 /* timestamp.upb.h */, + 82BF24D5B1948C3586E081DC415726EF /* timestamp.upb_minitable.h */, + AF9EA33204474B97263677EDA6324E05 /* timestamp.upbdefs.h */, + F8371E4C97FD1F6B63E552E8890ABB1F /* tls.upb.h */, + ACA2EF898C85A62C612837068F5B2E5C /* tls.upb_minitable.h */, + 64B7D815BDC4F36A3022B71219FC2786 /* tls.upbdefs.h */, + 5B976C54F4EA61F6F9656579E35CD681 /* tls_certificate_provider.cc */, + 25399ED3D1081E879F215104C645929C /* tls_certificate_verifier.cc */, + EA502974A37E87CC0C6EA336583143FF /* tls_credentials.h */, + BC3468B8758CED0B653DBE415DFA3772 /* tls_credentials_options.cc */, + 41C3D81936C0BA32E9A2252C2D0DB8A1 /* tls_security_connector.h */, + 719A6AA385499D039EA77F612AB6D262 /* tls_spiffe_validator_config.upb.h */, + 61BFED273CCA70F54B3AE8E24F99D3CB /* tls_spiffe_validator_config.upb_minitable.h */, + 48F7B72F0B2533CFE9FD7C0AD0E29BF4 /* tls_spiffe_validator_config.upbdefs.h */, + 0EBB0BA03043BED364A821F5FDA49F1C /* tls_utils.h */, + 0046B41FFE88114B720B3B22DA4CF018 /* tmpfile.h */, + C10B8017B7F9C09517B5511D2E6C5601 /* token_bucket.upb.h */, + 7025F8FECF6879D139D183D1A709F00A /* token_bucket.upb_minitable.h */, + E196CE5CC1AC6DF99BB40BC4074C9888 /* token_bucket.upbdefs.h */, + 021A132FA201AF8F9268BF36DE1F3233 /* trace.h */, + 9A0960AED2900C1C2FE5B90F99C945E2 /* trace.h */, + CFCED5A544E97FE002AB430FF6519DDC /* trace.h */, + AE918E2631835018BD3E2ABD906C2C13 /* trace.h */, + 79D363A61F4810854DB31DD22F37FC69 /* trace.upb.h */, + A0CB0CE93CF97D1B24805F5FE34969DD /* trace.upb_minitable.h */, + 28D579249F0AD5F15C879A3FFEC86FC2 /* trace.upbdefs.h */, + 41F3BE7A0EBA838BD5FE55C16E4C918B /* trace_config.upb.h */, + 02050F8A5B1FECB8C7425B690B1D40AF /* trace_config.upb_minitable.h */, + B36F583FE29809D6895D91EA028AF69C /* trace_config.upbdefs.h */, + BFC10A21DAAD49CDD9FB655B37A36417 /* traced_buffer_list.h */, + D366F0A215EDAE739079F47FE21937FD /* transaction.cc */, + 60CF40161B6ED2F5CAC3E38CA16D9340 /* transaction.h */, + E9F8EFA882D5F0497AB70F9976F12C9A /* transport.h */, + 22DF82491B841D933B2238A233D4B353 /* transport_fwd.h */, + 6E87D057543D3280C5584FA3D0914BD6 /* transport_security.h */, + 08E2BFE18FA1334EEF31D049B919F49B /* transport_security_common.upb.h */, + F2AD33D65865709DB9E9F2B605132C95 /* transport_security_common.upb_minitable.h */, + 4FE731A116FE8E73A50285F64908EB84 /* transport_security_common_api.h */, + 7FCB4D7476A3D508952EBE917ECFB9EE /* transport_security_grpc.h */, + A38C24898861B4301919F2508912003A /* transport_security_interface.h */, + 69F61D43926CA66D2847523469AADC2C /* transport_stream_receiver.h */, + 644831F43F028842037642EF077DAE57 /* transport_stream_receiver_impl.cc */, + 1872C4BC867B4898EBB63176EFF738AE /* transport_stream_receiver_impl.h */, + 03ABA9EC989C3E20C86A4ACA08B1970D /* try_join.h */, + B513D80E548022BC665B9EF23601EEC7 /* try_seq.h */, + 99F798745055D8E8393D8198C37E0527 /* tsi_error.h */, + AE5E97E013C978394860065C3A68D3F4 /* type_list.h */, + 74C1368600938F9D46C688B83B07A8C6 /* typed_struct.upb.h */, + F41AD489CB7FDBAA17CADF9F48084990 /* typed_struct.upb_minitable.h */, + 65578CFAEE41A6BAA6EC03637FEA4090 /* typed_struct.upbdefs.h */, + 98E4ECA7A1489C446F54E069416379E0 /* types.h */, + 09C6C3C2B82B1D3BB5527F2DE5CF7E69 /* types.h */, + DDF988C4AB121C7CDD3E088A2F44C8E1 /* types.h */, + FA083ACC775CD661399C77F74588DCDC /* udp_listener_config.upb.h */, + F84ED7EDB9DF8129E6B25DEF716256A0 /* udp_listener_config.upb_minitable.h */, + 2CBC548C76E7632065C5CFAEF3C9F8C1 /* udp_listener_config.upbdefs.h */, + 185E5CD7D0B6FFB91ED1D3C48AA9B7E5 /* udp_socket_config.upb.h */, + 585E063B6E1941B1F4289876A91F7F6D /* udp_socket_config.upb_minitable.h */, + 52B569BF23ACD1A8B6C517C65E18B591 /* udp_socket_config.upbdefs.h */, + 2FCF87AED2F007DC7FA5234B6F572599 /* undef.inc */, + 36DCA54E67F9E1320BD5834E81AAE031 /* unicode.h */, + 332E7124D1DC4F6207690B6BBB52EC98 /* unique_type_name.h */, + 2F4E33923E94D25415EF3B944AA2494E /* unix_sockets_posix.h */, + 66FE898515A2C54B37C0B3ACB0B557CA /* upb_utils.h */, + E29DDAA054622D6073DD7B8ADA7D19A4 /* uri_parser.h */, + 1C8B1CBAF5ECE7EC364857EBFF52DF9C /* url_external_account_credentials.h */, + 41A1F3B0E50072AF92CE6FA179977569 /* useful.h */, + B16E348A9C8869BDFE6E71FC6DB1CA82 /* utf8_range.h */, + C96244309F7BB3776A0C645E78B68EA6 /* utils.h */, + 677B5F1357CAB93A55C0C19D52A9F475 /* validate.upb.h */, + 9CD535B6DCDB2EF43540009955996276 /* validate.upb_minitable.h */, + 672178A044A61662869DD710AC77AA3F /* validate.upbdefs.h */, + 33F5A7E4509EE584105C269C19B104BE /* validate_metadata.h */, + 36DD3ADEEFD9E33291312B9715336FCE /* validate_service_config.cc */, + 4DE315B69E902BD979D5F06BC5325350 /* validation_errors.h */, + 192142F996E718186E0CF65EA111A3E7 /* value.h */, + 2DB359275885C2F5481B5B83C85405BF /* value.upb.h */, + A5AB6BE3F6EB0BD817ADF418CDA90EAB /* value.upb_minitable.h */, + CA05C204E9F1EC12667621EC5190C525 /* value.upbdefs.h */, + 2F52FC0CEDAD4DDCF2AE5FBADC6DCC7D /* varint.h */, + 6D4750D1A77A2ABB12208BB0D01A6A30 /* version_cc.cc */, + BAA111FCD298DAED66DB30BAEC77D358 /* versioning.upb.h */, + ADDB285F6F29B08791666BABE495037E /* versioning.upb.h */, + 22BF8BE9E5930035355F54EF5E97840C /* versioning.upb_minitable.h */, + ED8FD864871E297F25D2D9DC83C90D57 /* versioning.upb_minitable.h */, + 97B85B7A2A6C0A3B8913CA2AF9812B6E /* versioning.upbdefs.h */, + 0441646E8D0642BE5A01B59FC499B739 /* versioning.upbdefs.h */, + 15FB14B7AF54E87319A590EA4EBD4457 /* vsnprintf_compat.h */, + EB4CB7999B9508CC0FCC25E96CB6F1A7 /* vsock.h */, + 885AC3A66959BCFD933D1DF4A41600B6 /* wait_for_cq_end_op.h */, + 020517DAB22EEF1D0699B006880D4DE6 /* wakeup_fd_eventfd.h */, + DFEAC7466F5BB4C5E6D2E2AD501B283D /* wakeup_fd_pipe.h */, + 8F71C7D10213B8076795FC365A143E8F /* wakeup_fd_pipe.h */, + F110E94F0DC15996BBCF72F120CAA2A1 /* wakeup_fd_posix.h */, + 0587F394DA6E391A1350F3E1DCCB8953 /* wakeup_fd_posix.h */, + 4F49888031BAF02647713384C7C775C1 /* wakeup_fd_posix_default.h */, + 67C5E2DE50349A576F6E473706D28EAF /* win_socket.h */, + 0F2AA7F598F51E25AE2913C4F2F3C100 /* windows_endpoint.h */, + 837777DE51FF4D89DCD509E6E879B24B /* windows_engine.h */, + 180571B495B5E50846DA27DA0E89D33D /* windows_listener.h */, + 53E42C24678E5DC78F76D25277137192 /* wire_constants.h */, + 27A8595117323D275B71D221EBF06CAE /* wire_reader.h */, + 718D14807FDBA341703A7FB83CF9685C /* wire_reader_impl.cc */, + BD511206BE119E76E954F66B30ED4764 /* wire_reader_impl.h */, + 46AD19559DE72E3F65BBF3D2D7492095 /* wire_writer.cc */, + BD5A25CD20AA55DFEA01DC46E1EDB323 /* wire_writer.h */, + 070628F21807BAB5446552D283A4F7B1 /* work_queue.h */, + EF0EF70CC0FE20365AA7FAFF0E1B8006 /* work_serializer.h */, + 11C55FF47033A21639D06FE209A13FE9 /* work_stealing_thread_pool.h */, + AC236229B1BC668A1C910286757328CC /* wrappers.upb.h */, + C6550250CE95E675EB189FD053D7287B /* wrappers.upb_minitable.h */, + 5FA6F82414A66921AE3EECE4A25C8A38 /* wrappers.upbdefs.h */, + 91A1A381E2A0D7D83EBE7E50615D1A68 /* write_size_policy.h */, + 104F8040DF8D71855263CA6F905F6F68 /* wrr_locality.upb.h */, + 77F42F28D71F4888BBADA58745A9CEF2 /* wrr_locality.upb_minitable.h */, + 1A74FAC2C44A62DADF73D55AFB0D0DBC /* xds_api.h */, + 20DC7031E2D4F673D776E3FF494E7A3B /* xds_audit_logger_registry.h */, + 2F623A622B9C721F2AEBA8FCBA6C3865 /* xds_bootstrap.h */, + B19DEC87C65D84B485E0D3F2CA8C0D23 /* xds_bootstrap_grpc.h */, + 2B3BB603EAB95077AC40720EB6D92B33 /* xds_certificate_provider.h */, + C14BA25578E4A6913F922ED09BD06B1B /* xds_channel_args.h */, + 1F785FAE0FF3A81CD14B7CBE43785DB7 /* xds_channel_args.h */, + 6690A4D06E95E04C825C452F8C71C777 /* xds_channel_stack_modifier.h */, + 2887DDBDAA1872FD907CA6F28B82EEF7 /* xds_client.h */, + 4B0A11252FB9702070E354D82D2858DA /* xds_client_grpc.h */, + 487DFAD84AC26540007CE2AFCE8926D5 /* xds_client_stats.h */, + 225D2499F6826586005F4EB275BBC6CE /* xds_cluster.h */, + 3D02C2B23E2AC89C724545E86CC79355 /* xds_cluster_specifier_plugin.h */, + 7D0EA374E7DC6570B9EAE49B3B444D65 /* xds_common_types.h */, + E3B00C50EEE788A83CB36C8F9A10C164 /* xds_credentials.cc */, + 3EB1FFC7728756BFEB9232A17BD17337 /* xds_credentials.h */, + 5218AE30A803CD2EE66B4A63C42E10AB /* xds_dependency_manager.h */, + 9A33E402A8DFB7DD2EF691B918ADA94E /* xds_enabled_server.h */, + DBF4AF45B5DEFBAC2E5F583516C34B3F /* xds_endpoint.h */, + 16400AF1EB01F50C2B1A4A9A0007007C /* xds_health_status.h */, + 4413ED5BF53F70F00170E0C03E98C7D7 /* xds_http_fault_filter.h */, + ECD74B37B35DA29E3566EE1200BF4896 /* xds_http_filters.h */, + D4B2A066D210856ACB6780EC7A484F02 /* xds_http_rbac_filter.h */, + C1503085DD31E93A7FCAEC7CA4A8AA34 /* xds_http_stateful_session_filter.h */, + EDE819E0819D35D37D03A7D0F82FCCA0 /* xds_lb_policy_registry.h */, + 43B01CDCCCABFCD19655EE996C004F95 /* xds_listener.h */, + CCC65F366C366ADA7C666454E2107E16 /* xds_override_host.h */, + AF8F6CB7209392FB9039683874FDD99C /* xds_resolver_attributes.h */, + BA2B517AB924B13292EC6AF7B50C8E4E /* xds_resolver_trace.h */, + EFF17B617061139BDB857410F8B78D01 /* xds_resource_type.h */, + 8A9635B699CE726848A123221BCAC226 /* xds_resource_type_impl.h */, + 2F06BED0F0DEB5FAA93ECB1106DAB55C /* xds_route_config.h */, + 4CB6E5ECBAC719DCEA50552C67AB1B9E /* xds_routing.h */, + 0916786A4A00DBE3CD88942D6B1BD9E3 /* xds_server_builder.cc */, + 1DBAC3B2D57D0DBADFE407359745086A /* xds_server_credentials.cc */, + 0C52C6A72FEBC2234400F08A210758FD /* xds_transport.h */, + F4CD0E913FD9139D73DD2389E8BA1942 /* xds_transport_grpc.h */, + 1DBC681CC0E30A623DD0F37A635F3205 /* xray.upb.h */, + 62DC7C3ABC030CBE5373EDA4ACDCE74B /* xray.upb_minitable.h */, + 5C7552AC5AD5C8D20FEF479C82551B4C /* xray.upbdefs.h */, + FC1F2CF1DECA8502F4A9093E03F9DAAE /* xxhash.h */, + E71044959D55BBD82C6430347E0EA2CB /* xxhash_inline.h */, + 833F0DD58C96BB422AE63325FF6389B9 /* zipkin.upb.h */, + ADCBA403E3CB954C6BA892CAAEF6703E /* zipkin.upb_minitable.h */, + 145DF62D59F52E6D5DF6E58FC9F0486C /* zipkin.upbdefs.h */, + ); + name = Implementation; + sourceTree = ""; + }; + 532D948A3511887EC17348778CE94B51 /* cleanup */ = { + isa = PBXGroup; + children = ( + 086F93667606C7B88C2F0E3979F62437 /* cleanup */, + 25269612E0F16E86C89FBDCBE8268C62 /* cleanup_internal */, + ); + name = cleanup; + sourceTree = ""; + }; + 54EB945162EB3B8BE44FB99615DCAF71 /* distribution_caller */ = { + isa = PBXGroup; + children = ( + 42479477DB3C48F6561B7F96EFB1EF8E /* distribution_caller.h */, + ); + name = distribution_caller; + sourceTree = ""; + }; + 5797896ADFBF69E0CD2237D4083DCF73 /* iostream_state_saver */ = { + isa = PBXGroup; + children = ( + 2A567752FB8434D67135D1D54C014B25 /* iostream_state_saver.h */, + ); + name = iostream_state_saver; + sourceTree = ""; + }; + 57DF0468812D12D5D5B801709ADE8331 /* time */ = { + isa = PBXGroup; + children = ( + 1346E888CDE5BB4C5F2B909B2C8400AB /* civil_time.cc */, + 5AF91C7B403888FAB0393D25726032C7 /* civil_time.h */, + 64AD296D9545E32493227447CE012FA7 /* clock.cc */, + 9CB62CD82A8DA0285F385CB86C072455 /* clock.h */, + 7D2137FBF1BE39AC95E3D5028B1856DC /* duration.cc */, + 0F16FA970EA0602D07C67913753FC16B /* format.cc */, + 24095270D50CB4758E5CCEC708790AFF /* get_current_time_chrono.inc */, + 50D3857706DCA54687F2BC977FF8A8ED /* get_current_time_posix.inc */, + 5E3E8DEE9447E9A23B23D2961D02DA64 /* time.cc */, + 7CA883CDB743520939AFD359C2FB9131 /* time.h */, + ); + name = time; + sourceTree = ""; + }; + 591625D19DA916E93E5EBA983DB58E85 /* bit_gen_ref */ = { + isa = PBXGroup; + children = ( + 04FEFCA4CFAB7D3F7DCD90E9AB0083C3 /* bit_gen_ref.h */, + ); + name = bit_gen_ref; + sourceTree = ""; + }; + 592017E45086ADCB7A6847F12A402AA8 /* Resources */ = { + isa = PBXGroup; + children = ( + 270B5A3BCD4C98C8AACBDE291E99DC22 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 59E98A7AB8FD3D33617D05A0491ED6BC /* WithoutAdIdSupport */ = { + isa = PBXGroup; + children = ( + 5D49BE1F46E1BF268A0D6E130F4165EF /* Frameworks */, + ); + name = WithoutAdIdSupport; + sourceTree = ""; + }; + 59EE754E9B1D82FE8C464563AB8739D7 /* Support Files */ = { + isa = PBXGroup; + children = ( + D777323402FA27328552D64C18416E31 /* FirebaseCore.modulemap */, + 05E1D45D02EE58165D838A5CC7A9DFED /* FirebaseCore-dummy.m */, + 81E86933B8DFC68E7FCD2653FBDB24E0 /* FirebaseCore-Info.plist */, + 2D3F1D8F0B845691C77231FDD7CDD075 /* FirebaseCore-umbrella.h */, + B26213FC6433C650BA3DC049A1C546C9 /* FirebaseCore.debug.xcconfig */, + 5466E3A8BC8214B4740BE37EA71E42C2 /* FirebaseCore.release.xcconfig */, + A9238B52DC55E7857A92C24DB4E40493 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; + sourceTree = ""; + }; + 5C3E03F2A323DE18C2B7856983590CBA /* MethodSwizzler */ = { + isa = PBXGroup; + children = ( + 565BD22CDDAD6CE141CE14AB40FE7B00 /* GULOriginalIMPConvenienceMacros.h */, + 01D98DABAEE772BB1DD63617B8FF027B /* GULSwizzler.h */, + 6A3C1FBBF4CC4856F6AD7E8BF1546806 /* GULSwizzler.m */, + ); + name = MethodSwizzler; + sourceTree = ""; + }; + 5C59E4DE063347FC318BFF46A06E2FE5 /* hash */ = { + isa = PBXGroup; + children = ( + 0558E9363B4FDC0F236917FFBCF60E3B /* city */, + 4A3ADE71FF985AEDDD5D37847C947A58 /* hash */, + 827973F74F5737A0749855A87BE2F822 /* low_level_hash */, + ); + name = hash; + sourceTree = ""; + }; + 5D49BE1F46E1BF268A0D6E130F4165EF /* Frameworks */ = { + isa = PBXGroup; + children = ( + 8269CF19F292D0982250CBA81E3C6446 /* FirebaseAnalytics.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5F179869DCFE1ADFEC0857998AF5E1DB /* PromisesSwift */ = { + isa = PBXGroup; + children = ( + E80F822949527FAA4D66E10B4DED29F5 /* Promise.swift */, + EBCD7AD3FB337CAB57637052E84E93D1 /* Promise+All.swift */, + 0500046B7A27D1B44C32989A4C0037A2 /* Promise+Always.swift */, + F11C7179D4037D575398C58C7DFDE1AA /* Promise+Any.swift */, + E3924746F08EE8A2F08E35FBF970EE30 /* Promise+Async.swift */, + FD2F1BA75E9A7C648A91B443EE8B601A /* Promise+Await.swift */, + D4975D738EB356652CA9290E0774A3E6 /* Promise+Catch.swift */, + 885591F4F2E6C95F5CC4D86342465C7E /* Promise+Delay.swift */, + EC8AAD06AC88778F39C3B3D45C71462C /* Promise+Do.swift */, + 320774EAA7C99DD0152CD8CA9CB2EB0F /* Promise+Race.swift */, + 9CFA1646D04112AFF9A98A6AE86ECD0A /* Promise+Recover.swift */, + 80A3A010BBD22856BAE76F9340985477 /* Promise+Reduce.swift */, + 40E98F4C41A7CD2009B6BBF84A8E2B38 /* Promise+Retry.swift */, + 15ED923827E689C870A1A22B788DBA4B /* Promise+Testing.swift */, + EC8501DF2EF809C6480B06918E372524 /* Promise+Then.swift */, + F9B3A754294F0C0712D2FECF9E6C0748 /* Promise+Timeout.swift */, + 9EE67A9520F44FECDE738EB2D1C88CC3 /* Promise+Validate.swift */, + 3FFB88C6F9320DF64A735CD4A27CA32D /* Promise+Wrap.swift */, + E6EA361750F38623D9643826372EC319 /* PromiseError.swift */, + 592017E45086ADCB7A6847F12A402AA8 /* Resources */, + 48A429BF8BB73D9AEB4E080A7DFE6E52 /* Support Files */, + ); + path = PromisesSwift; + sourceTree = ""; + }; + 5FAD832A1A3189908612C2C3939C91EF /* Resources */ = { + isa = PBXGroup; + children = ( + 98DCC09A432FCAED621D6F0EC0E69F45 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 61DFCD29D3CDDBD915D946211AB08F80 /* FacebookCore */ = { + isa = PBXGroup; + children = ( + 50486440168DEAA1EC9DA1F0E5A3C3C5 /* AccessToken.swift */, + 5E801B6BE843E295A1DC9F694F810C5F /* Dictionary+KeyValueMap.swift */, + 56043DE0399EB604E11155C2F0F61DA1 /* FBProfilePictureView.swift */, + 5B8A9F1C5886E702F3B6BA1D66F3B0C2 /* FBSDKCoreKit+Typealiases.swift */, + E9C258496BF8C1604C7111A7E75BEF30 /* Permission.swift */, + A5836F92ACF1457466911CF016FCAC0A /* Settings.swift */, + D96F4FEBC582D27B3BDD4950AB5B5630 /* Support Files */, + ); + path = FacebookCore; + sourceTree = ""; + }; + 621E2D18BEC15C8DF5478CD5F72A6545 /* seed_sequences */ = { + isa = PBXGroup; + children = ( + 12FBB370BD45FF1E5F744DACDCB7BD57 /* seed_sequences.cc */, + 08D64B85345F2804481139E4A30B70DE /* seed_sequences.h */, + ); + name = seed_sequences; + sourceTree = ""; + }; + 6267631358EB9DDE902EF9B734E57A9B /* randen_slow */ = { + isa = PBXGroup; + children = ( + DF426DE2AD16D08347EC1B42D016334D /* randen_slow.cc */, + 74199D9AB2C0278A47710AEFC8DF3FE0 /* randen_slow.h */, + ); + name = randen_slow; + sourceTree = ""; + }; + 62A1CF826E4418A92057083FF50D0212 /* cord_internal */ = { + isa = PBXGroup; + children = ( + EEB062ABE281A1E97FE70ACF5D4E9DC9 /* cord_data_edge.h */, + 9DEE1C96E8F7DE29E056220373832726 /* cord_internal.cc */, + C10AA26106F53319997F71F8CD9C487B /* cord_internal.h */, + 19A30A71E653F61106C72FFEA12F1C5D /* cord_rep_btree.cc */, + 8A831612FC65024CEEB35F6FD245135C /* cord_rep_btree.h */, + E41471B370718C31FF08F13AAD9BBDE8 /* cord_rep_btree_navigator.cc */, + 8760C2551E3EF6D3CFF5A9D8DC260A84 /* cord_rep_btree_navigator.h */, + D58A6C977BAA53D7091BA8D3B1979E58 /* cord_rep_btree_reader.cc */, + 7289E408ACE5DE8114C26870E32A91AB /* cord_rep_btree_reader.h */, + CA3DAF3C67CC39DDC0DEC7A38BCF864B /* cord_rep_consume.cc */, + 0A8F6FDDECDB9D3A3F599F72F483A816 /* cord_rep_consume.h */, + B318A371D9CD80C5D5A07B796EC32622 /* cord_rep_crc.cc */, + 28FFE6A7897EBF10FE6B9DFE8E7F6CC9 /* cord_rep_crc.h */, + 435B26E13F90F44DCA5F4B6F78FBD705 /* cord_rep_flat.h */, + ); + name = cord_internal; + sourceTree = ""; + }; + 647F5A2FD7CA6311D58EE7ACCCC3ABE3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 65D2F094F227DB7BF0761DF0EF9C55FB /* leveldb-library.modulemap */, + 516ED4CE611F3440F990E6B6EE5DEF73 /* leveldb-library-dummy.m */, + 3311683D2E79B7B3AE0EE67FEA35FAF2 /* leveldb-library-Info.plist */, + 49CE35023DBCD9DA96CBC5D3806449B9 /* leveldb-library-prefix.pch */, + DE11C78CAB73DFA41289A7A66D0DDE03 /* leveldb-library-umbrella.h */, + 27089548B4EA5E4926A5F3360072B0CA /* leveldb-library.debug.xcconfig */, + 57AAA22325B0CC57DF34FE43E96591AB /* leveldb-library.release.xcconfig */, + D5E14D060CA8AC34C4E9726823FBC177 /* ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/leveldb-library"; + sourceTree = ""; + }; + 64F35006FD0B3053CB7EFBD211C4F7FD /* Support Files */ = { + isa = PBXGroup; + children = ( + 411D55F3EBC6EA58E7F05DE9F6511568 /* GTMSessionFetcher.modulemap */, + C29FCF8DBBB76BE7430CC5A863325805 /* GTMSessionFetcher-dummy.m */, + 8B28AC93065832C1F2371786E0D885BD /* GTMSessionFetcher-Info.plist */, + D203B6A8801E878AAF1498BC32AE859D /* GTMSessionFetcher-umbrella.h */, + DEED3761D2BAE708BE55132689FDC81F /* GTMSessionFetcher.debug.xcconfig */, + 7AF1B01723B08D81E5ADA6501A1821AA /* GTMSessionFetcher.release.xcconfig */, + 22B77D837BB3FE9DBD50F2FA8C015F3B /* ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GTMSessionFetcher"; + sourceTree = ""; + }; + 65841A29AC4402A3017691932FB6567F /* dynamic_annotations */ = { + isa = PBXGroup; + children = ( + 55A51924BFE814104EFC0B7426E92747 /* dynamic_annotations.h */, + 18C352AC892D013D854079B659C70B65 /* dynamic_annotations.h */, + ); + name = dynamic_annotations; + sourceTree = ""; + }; + 660434A535B7FEABE3180AE246258E36 /* throw_delegate */ = { + isa = PBXGroup; + children = ( + 029766ADC0C555367A2B56FE9BABC37A /* throw_delegate.cc */, + 1A395AC2773900746CFAAF0AE57A0DF5 /* throw_delegate.h */, + ); + name = throw_delegate; + sourceTree = ""; + }; + 675B1F8B117FB47B46DE3299F2F2FC9C /* Core */ = { + isa = PBXGroup; + children = ( + B1F165989DA7AF79FC9738021A74A432 /* _FBSDKTemporaryErrorRecoveryAttempter.h */, + 55F94942325BE95B0FC29FB6CB08A177 /* _FBSDKTemporaryErrorRecoveryAttempter.m */, + 8F21FCCBE8B80A5E633A5646553BF3F3 /* FBSDKAccessToken.h */, + D4C5FEEE888F313E1EB2AF0E83CD081B /* FBSDKAccessToken.m */, + 3C59DAAC08C67E96BAA761780E7F843E /* FBSDKAccessTokenCache.h */, + 4F57F4D11AF9F1CAD8962A6008D2D9CA /* FBSDKAccessTokenCache.m */, + DBECD6C7F7BA47CE2A70E5DAB5DE62B5 /* FBSDKAccessTokenCaching.h */, + 5E15CE2FF8155E20BC61F7C4D60BC746 /* FBSDKAccessTokenExpirer.h */, + 4D33271352F246F58E08211CF184EA68 /* FBSDKAccessTokenExpirer.m */, + 12412EFAC58F27FB985EC321972A031A /* FBSDKAddressFilterManager.h */, + 47022611B1A165400CBF4AF68107E9EE /* FBSDKAddressFilterManager.m */, + 2F33A468B27C1C9A8A0C6933DC85991A /* FBSDKAddressInferencer.h */, + DBF16B64D2B8905081EA61D077C3F5AD /* FBSDKAddressInferencer.mm */, + 9A5A646173FBE7E721D814EB9AC61082 /* FBSDKAppEvents.h */, + 24621DD9A17A7F8E30C4935BCBF39CF8 /* FBSDKAppEvents.m */, + 8FDBA06227C99175638481688E112E2C /* FBSDKAppEvents+Internal.h */, + 4520E173FC472302EFB3A246B870A1F4 /* FBSDKAppEventsDeviceInfo.h */, + BE2D7106B19E11322CF19D96F093BE3D /* FBSDKAppEventsDeviceInfo.m */, + F9FA49E358710D2C3D63950643210B97 /* FBSDKAppEventsState.h */, + B6FF83E0BB5FBC8D8006B236553B679E /* FBSDKAppEventsState.m */, + 120443479FCD61F978A5F9CB35B55FCE /* FBSDKAppEventsStateManager.h */, + A46A6B731E626FEF46ED4A032349DDDD /* FBSDKAppEventsStateManager.m */, + 636DFA5F9CA88707469EBC5631F1BFBF /* FBSDKAppEventsUtility.h */, + F6E0B78645B8BCCC94B0206827F689CA /* FBSDKAppEventsUtility.m */, + 8E2FAFFCA9B288D2CB76B01108135194 /* FBSDKApplicationDelegate.h */, + 31FC9A4FC1676CA61A92562A9C262DCB /* FBSDKApplicationDelegate.m */, + 0BC9772CF41467F7EAAD3F200EDD61D6 /* FBSDKApplicationDelegate+Internal.h */, + 3D41C4B9560799AA91CBC955AE2C9D2E /* FBSDKApplicationObserving.h */, + 11DBA1DE72492D0D05D2223137C90D29 /* FBSDKAppLink.h */, + 17F09394BD4389868131A34962684B65 /* FBSDKAppLink.m */, + 888B6D95F831F025AC2A345B041A58AD /* FBSDKAppLink_Internal.h */, + C0674BB224BA5583828F922C95FF22A1 /* FBSDKAppLinkNavigation.h */, + 57AF3F1EE2DBA786257727ACEE99E057 /* FBSDKAppLinkNavigation.m */, + 1484D5569EECD86C427EE87510C04B06 /* FBSDKAppLinkResolver.h */, + 7A61CCE21165007F33BAB0D9EF393361 /* FBSDKAppLinkResolver.m */, + 453006F12E23B60355ED7997AD90CA97 /* FBSDKAppLinkResolving.h */, + 1750E2C7A58B85780ABAAE5C96887FD5 /* FBSDKAppLinkReturnToRefererController.h */, + 84B9283DEEE779E430CAD26C22FE1B90 /* FBSDKAppLinkReturnToRefererController.m */, + 423638DDE960D12E2157F9DE196F03A7 /* FBSDKAppLinkReturnToRefererView.h */, + DFF1958FBCC19C5F8C820FAB3873B48F /* FBSDKAppLinkReturnToRefererView.m */, + 84D2445499B216468460443363C9EBC5 /* FBSDKAppLinkReturnToRefererView_Internal.h */, + F1142C5C78C6E5FFBD84DA5AA3E26CFA /* FBSDKAppLinkTarget.h */, + F3E7EDB69DA328842E99A198C4D080F8 /* FBSDKAppLinkTarget.m */, + EE30AC83C2152FD05317EE87C33ED6EB /* FBSDKAppLinkUtility.h */, + 0A3082970023B67755D1F6335C9F89F6 /* FBSDKAppLinkUtility.m */, + 5668765F0A105516631C5004209A1F24 /* FBSDKAudioResourceLoader.h */, + F70FE57E11800EF1CCB64314B729C00F /* FBSDKAudioResourceLoader.m */, + 3317CAD51B5CDEC16A4C7738CFA0DF83 /* FBSDKBase64.h */, + CEAB1794060052BFEF723B37FD006496 /* FBSDKBase64.m */, + 902292E382E4188159DE419EF05D7CE3 /* FBSDKBridgeAPI.h */, + 32C773D61BCD20C2408EECF40EFDDE42 /* FBSDKBridgeAPI.m */, + BF4086203A27EE251AA65F3C5267616C /* FBSDKBridgeAPIProtocol.h */, + 608BC2FC1C717F9AF90A00A3E358A376 /* FBSDKBridgeAPIProtocolNativeV1.h */, + BD44C5CBB0C1694F1E2BF85A78DCA9C5 /* FBSDKBridgeAPIProtocolNativeV1.m */, + 3E9B1600C2846E75D41B2DC4D6E1E190 /* FBSDKBridgeAPIProtocolType.h */, + C2B56B87FA91A4376FAB5266E0A835D5 /* FBSDKBridgeAPIProtocolWebV1.h */, + 096BB01ABB896814D52C6F5BC83130BA /* FBSDKBridgeAPIProtocolWebV1.m */, + 84F558B71F31E74DE3A758CF6D45FE06 /* FBSDKBridgeAPIProtocolWebV2.h */, + 63C2AE0E05CEEBBEA1004D68F9213B8B /* FBSDKBridgeAPIProtocolWebV2.m */, + 1756AE8F4B226E1D44E8067CB7C545AC /* FBSDKBridgeAPIRequest.h */, + 57640E43E0D37843AF4DDAADFB28A441 /* FBSDKBridgeAPIRequest.m */, + 6303AD5813CD70C34FC91D432C974C4D /* FBSDKBridgeAPIRequest+Private.h */, + 1FEF6C5C0EC3CD8B9B64D52A1D7FA398 /* FBSDKBridgeAPIResponse.h */, + 40D98C36989E256519A289FC2CF7DBDE /* FBSDKBridgeAPIResponse.m */, + 7E198E0F4418C33099E9E45B6BE1633C /* FBSDKButton.h */, + 829AE65C806C638B7F2FE4278B264CAF /* FBSDKButton.m */, + 77EEDD289BE4802A55EDA111CEC6FF2B /* FBSDKButton+Subclass.h */, + C30F5AC660768DF8B1E16F4F0E0BF979 /* FBSDKCloseIcon.h */, + DD165703A4B5827E641B108477B5313A /* FBSDKCloseIcon.m */, + 0B41FCAF938923D43BD3A18D4EAA8F04 /* FBSDKCodelessIndexer.h */, + 928224E4E8BB231EB48027F8DF52397E /* FBSDKCodelessIndexer.m */, + D2B3077D21F52003D7E6D7D914534098 /* FBSDKCodelessParameterComponent.h */, + 6D94923FB95C27D6D2C68F01D8D1934C /* FBSDKCodelessParameterComponent.m */, + D0065A653BE1322B2A3BC86696560DD6 /* FBSDKCodelessPathComponent.h */, + 3594382C8CC8D8E0AA5C3E811DA4604B /* FBSDKCodelessPathComponent.m */, + 8268FC5A875BFBBEB4E47D57FE52281B /* FBSDKColor.h */, + 1BF1F3448142C79BEB23431CA2B8702D /* FBSDKColor.m */, + 89FEE001462C618BB6C6F060CB6CB3B5 /* FBSDKConstants.h */, + 42878177EF1B43B31C03F485AA375B8A /* FBSDKConstants.m */, + DB2E7110F5696523512A09E45A89456D /* FBSDKContainerViewController.h */, + 483D50E47A79FE49116AEFF08D439CEE /* FBSDKContainerViewController.m */, + DD6A3E6D46BD536B02EA757101564422 /* FBSDKCopying.h */, + B4DC3E942937373523E7475A4AA6688D /* FBSDKCoreKit.h */, + DBCFADFE53777D890DE2A9C9352A6E60 /* FBSDKCoreKit+Internal.h */, + 97F5BB54DF30086409D74491565280A4 /* FBSDKCrashObserver.h */, + 64ECC2C86396AC37E5725CE43F8FF58F /* FBSDKCrashObserver.m */, + E9E061C6ADC1483877883F62563C7B24 /* FBSDKCrashShield.h */, + B87E1BD1469547088B769D004C262254 /* FBSDKCrashShield.m */, + 56EBC3AF7647E02281CF6A9FAB890855 /* FBSDKCrypto.h */, + 2812A649AD4598A91470EF3816E9DA55 /* FBSDKCrypto.m */, + 807453EA403EC7A9754C88B4EC3E5B3D /* FBSDKDeviceButton.h */, + F76E0A8B2639A387B57E8F165D99D819 /* FBSDKDeviceButton.m */, + 591E98414487104867469928992804A0 /* FBSDKDeviceButton+Internal.h */, + 59EE8E0B7A526304CE2C0719C37B4A93 /* FBSDKDeviceDialogView.h */, + FBD005353F1524A47CCD3D431C36C55C /* FBSDKDeviceDialogView.m */, + 3DFBF6B26F36AD4465F8D1DDFEEE1F7B /* FBSDKDeviceRequestsHelper.h */, + 27BFFDC723D955E6F1BCD09F4992A679 /* FBSDKDeviceRequestsHelper.m */, + 08C29E7B06DAD03611A9B5551FE64F57 /* FBSDKDeviceUtilities.h */, + FB4488B72DDD5292EFC1889D62657C85 /* FBSDKDeviceUtilities.m */, + 4CC45F071D39AD07CE265B892ED3F124 /* FBSDKDeviceViewControllerBase.h */, + A96EDB5FB7F539278A840B885F810BF6 /* FBSDKDeviceViewControllerBase.m */, + 53A8956A652AB39D50EE983FDCA3E169 /* FBSDKDeviceViewControllerBase+Internal.h */, + 37ADBCF86DE59C9C4EDB8961E61F3851 /* FBSDKDialogConfiguration.h */, + 7E265E34DE094F003575451E4C7026B1 /* FBSDKDialogConfiguration.m */, + CC02CD24255C2F8A907259F0196A0B6D /* FBSDKDynamicFrameworkLoader.h */, + 8A1DCBEC967DB4100EFBDEFF353D4408 /* FBSDKDynamicFrameworkLoader.m */, + 5037F71EF23728843040C3FA9CA8C0FF /* FBSDKError.h */, + 1765FD614AF0A6D9555EC12580FFE46F /* FBSDKError.m */, + 7DE3930DBCA649055676BE458489CFF3 /* FBSDKErrorConfiguration.h */, + 702BE28CECED2E5CA16DF010E2BCC003 /* FBSDKErrorConfiguration.m */, + 7078C9E933D6BECF0EA77390CDEFB037 /* FBSDKErrorRecoveryAttempter.h */, + 486E952847461D5718996978CCC95C84 /* FBSDKErrorRecoveryAttempter.m */, + 96EAEA0AE6B07BB9F325ED879BCF18BC /* FBSDKErrorRecoveryConfiguration.h */, + CD0068ADFAD3A88228FC34C2C8D13885 /* FBSDKErrorRecoveryConfiguration.m */, + AF4A5248F7E2949126EE05A4713EA468 /* FBSDKErrorReport.h */, + B6BAC9388C6A05C23BF7A17742D28956 /* FBSDKErrorReport.m */, + E8C52FE43DE8E27D3C705260CCAF270D /* FBSDKEventBinding.h */, + 5C869930C53A23E4A0ADA5E1B7F38AC8 /* FBSDKEventBinding.m */, + FC2B5892876BA598CB682EA2280C10BD /* FBSDKEventBindingManager.h */, + C5992CC021F279999EC3A629226AE1C0 /* FBSDKEventBindingManager.m */, + 4F776F8ACA978A8B16D808AC7202EBA8 /* FBSDKEventDeactivationManager.h */, + 7E664A996662FD444B171CC5A7F852EA /* FBSDKEventDeactivationManager.m */, + 23250ADA5F9EB710B7CD348021E79039 /* FBSDKEventInferencer.h */, + CC505069E476689159206626A029776A /* FBSDKEventInferencer.mm */, + E7F54068D2D9154BB23804041A34EE32 /* FBSDKFeatureExtractor.h */, + 5C579BACE8AF8075A91896659D825A7D /* FBSDKFeatureExtractor.m */, + 93DB6B54136BFAA759C868B139BCFEA9 /* FBSDKFeatureManager.h */, + 93BDD4A3EF005C2DC0DF642B516D2AA7 /* FBSDKFeatureManager.m */, + E992BC1FC321D325DCF8A7D8C98F0541 /* FBSDKGateKeeperManager.h */, + 19239848BBB58FE9D5235C2288C8FB59 /* FBSDKGateKeeperManager.m */, + EF5D62F26CE970151951078473E47AB5 /* FBSDKGraphErrorRecoveryProcessor.h */, + 230237AEB9E8A036D7EB7EA6C7F7E4AB /* FBSDKGraphErrorRecoveryProcessor.m */, + 316EB68CAA0830A23AE5710DA4DEE90F /* FBSDKGraphRequest.h */, + EE757EFDB552E4BC25DFAF061EB84070 /* FBSDKGraphRequest.m */, + 571525DFCE50AC009B4FC6AA02105D71 /* FBSDKGraphRequest+Internal.h */, + B4DC9F1C1211C28817FB0A1160258D16 /* FBSDKGraphRequestBody.h */, + 88D7D0AD8670453072B070B50C5D6E03 /* FBSDKGraphRequestBody.m */, + F6A4EBB1B3DF0A86FA6046CA760D7BA8 /* FBSDKGraphRequestConnection.h */, + CDBDE076327E954D417FA48FBC96BCFF /* FBSDKGraphRequestConnection.m */, + 5FA94E8B3B981217CD4DB20E2B94FB26 /* FBSDKGraphRequestConnection+Internal.h */, + 44A949AF1F8C0267EE9107C970D41CFD /* FBSDKGraphRequestDataAttachment.h */, + FAA9D3CE111DFE78B4E36A5B5E37FA4C /* FBSDKGraphRequestDataAttachment.m */, + D0455F40904B67FF4013793EFAE035A7 /* FBSDKGraphRequestMetadata.h */, + 01AF09A8FB896E366C3E47B7975332F9 /* FBSDKGraphRequestMetadata.m */, + 858EEB414D1F80D14352D03237C0A677 /* FBSDKGraphRequestPiggybackManager.h */, + F4F39EDAFAE8653C8D14E6ABC6262E88 /* FBSDKGraphRequestPiggybackManager.m */, + BBC18312FDE8D90F0CFDCD1818CBC22A /* FBSDKHybridAppEventsScriptMessageHandler.h */, + FA081C120DC794385358C0B53FE240CB /* FBSDKHybridAppEventsScriptMessageHandler.m */, + 24888C84654435A63580C70C5D13D401 /* FBSDKIcon.h */, + F64DD166550E26420C9C9E1B2C67CE3A /* FBSDKIcon.m */, + 71E283C7C23635D37541520C69BDE9E2 /* FBSDKImageDownloader.h */, + FAEE2B42629FAC247797E148433305F1 /* FBSDKImageDownloader.m */, + 7145E3A7AD229EBAB82CB37ED1A6906F /* FBSDKInstrumentManager.h */, + DF0F2F1ACA0E48C609C0BF04C44655FC /* FBSDKInstrumentManager.m */, + 06C8F0598D0475A94D728371FC615AAE /* FBSDKInternalUtility.h */, + AF29B92F677554E30150A34266A84C15 /* FBSDKInternalUtility.m */, + 22CF508AE5784C459CF7BC9F8BAE2B1C /* FBSDKKeychainStore.h */, + 60E65D09E67894B9E15E6BC1E04D0C41 /* FBSDKKeychainStore.m */, + C0E4FEAC9D7C60FB9108DCBD5224C8F1 /* FBSDKKeychainStoreViaBundleID.h */, + 6768BA2D66FD7D63D52F13066117A04F /* FBSDKKeychainStoreViaBundleID.m */, + 29DEA62D0B15E42714B497A2EDFE9473 /* FBSDKLogger.h */, + 819C33DBC06454CB9DA18EC4BB5815BD /* FBSDKLogger.m */, + C6FD118F4F3D872745E806BBDC2E2F8F /* FBSDKLogo.h */, + 2FFC68CFCCDA85B0900B0FEB9FD1F04B /* FBSDKLogo.m */, + 942738DC28AC14775466976B2705A83F /* FBSDKMaleSilhouetteIcon.h */, + 4FC3D6C2D94C86343A9E8BAB1BB9BC08 /* FBSDKMaleSilhouetteIcon.m */, + 5D08996078D790CCDB10094649822F44 /* FBSDKMath.h */, + 99CFDE9060C30F04E32E47ED23DE2793 /* FBSDKMath.m */, + D1BE0F9220DE5ADC75CBB1A4AAEF50FA /* FBSDKMeasurementEvent.h */, + 15309C7D0F24B69B549D5CC74B88D9C1 /* FBSDKMeasurementEvent.m */, + 6D008FE6E0D16211546546B5FCAB50B9 /* FBSDKMeasurementEvent_Internal.h */, + 954491775C87DCB7DE10E47652C2CE32 /* FBSDKMeasurementEventListener.h */, + 5608CC922CBD3CFB46EB94105C81BB35 /* FBSDKMeasurementEventListener.m */, + 89E2320B016119890559BA1FA970E793 /* FBSDKMetadataIndexer.h */, + 68155A29D50E031C830947A2D8B9E4DE /* FBSDKMetadataIndexer.m */, + 61CF6B95AE4ED4318ED1FD512B2FD37F /* FBSDKModalFormPresentationController.h */, + DCF0A2E30849ED615008383981692CDE /* FBSDKModalFormPresentationController.m */, + EE51C065D713D109A054DBC33FC77291 /* FBSDKModelManager.h */, + 44E68A4A4C005F5022A743CA4CD53B89 /* FBSDKModelManager.m */, + EF501F521025BD468D999F54A34668C9 /* FBSDKModelRuntime.hpp */, + 42658366039B6D6C516B4FFA5D742E2E /* FBSDKModelUtility.h */, + 5414A8BF7832E136CECEA07B175A1160 /* FBSDKModelUtility.m */, + 355460D6B7E4E88DBBC17EABC8010598 /* FBSDKMonotonicTime.h */, + 41DBED7C53913C72269396A8DE1EFEB5 /* FBSDKMonotonicTime.m */, + CEA1F574E421A7C6706594D17B699C61 /* FBSDKMutableCopying.h */, + 95ADCABB8C0870C131E240A8F975C294 /* FBSDKPaymentObserver.h */, + B0AE11A944432EC99725C6DB37B82464 /* FBSDKPaymentObserver.m */, + F0993CBC6939EDBA2C63600D6520FBD8 /* FBSDKProfile.h */, + 9040B6033B9738A1782620810719F33A /* FBSDKProfile.m */, + 669E4F1DA8F16D65F3316E252B4ADBDC /* FBSDKProfile+Internal.h */, + 25183848DFBBDAA930D5E9D697DD3D7B /* FBSDKProfilePictureView.h */, + 31FDB7CC9C08B5D9A312264DE7461F6D /* FBSDKProfilePictureView.m */, + CF571DF6125EA61FE82E8EDB8CB5D245 /* FBSDKRestrictiveDataFilterManager.h */, + 4BCDED523C7F97116A8B76E5B4248167 /* FBSDKRestrictiveDataFilterManager.m */, + BD58D53085E6A2EBDAC2A63DEF8DA1B0 /* FBSDKServerConfiguration.h */, + BADFC1EC61740900F4518EC01BCED380 /* FBSDKServerConfiguration.m */, + 0C4D6DE797B2BF05AA19830747A36DD6 /* FBSDKServerConfiguration+Internal.h */, + 8ADA036F0A1591CE5FE69BCFD1DA706E /* FBSDKServerConfigurationManager.h */, + 24F28278A4EED2FBD42F19836C59CE20 /* FBSDKServerConfigurationManager.m */, + DEBAE192802AD0D8CE514675DAA2BAB6 /* FBSDKServerConfigurationManager+Internal.h */, + FC1A4A22B4DABA54A1C1AD8F04548334 /* FBSDKSettings.h */, + 10704CAE9DA45FA14433926FE1282797 /* FBSDKSettings.m */, + 0AF566D5DDB62353754EAD6540E30104 /* FBSDKSettings+Internal.h */, + 0E10FF0A835D1B99FF5561E6F60FA33F /* FBSDKSmartDeviceDialogView.h */, + 9861FD6B23C0DEF2D2601727143F83BC /* FBSDKSmartDeviceDialogView.m */, + F8C367C08AC51CC9FFFE46A939B8C9E3 /* FBSDKStandaloneModel.hpp */, + 7DFCB91B319D72AF4EA600236425FCF6 /* FBSDKSuggestedEventsIndexer.h */, + B7C6039594BE42A5042DDF2DA809852D /* FBSDKSuggestedEventsIndexer.m */, + 91EE6073CD4FF5515DADD82B0F9EBE62 /* FBSDKSwizzler.h */, + EC6F1BF5232D291CC33DA43B066A511C /* FBSDKSwizzler.m */, + 8D8CB370DC9287D45F2F55824BE2485C /* FBSDKTestUsersManager.h */, + 0C0B9C58AA139C58848CED034BA6E70F /* FBSDKTestUsersManager.m */, + CF5BECE2202F1A4D04B33AB226D351F1 /* FBSDKTimeSpentData.h */, + CA7992CE00D7595AC95828A6E786A1E9 /* FBSDKTimeSpentData.m */, + 42DE4ABC706200D2B8533C8D08215191 /* FBSDKTriStateBOOL.h */, + B28984BDF838333CB8952874EA66BB3B /* FBSDKTriStateBOOL.m */, + 92D1336B90AA46E6EEA0AD1D6AA5C566 /* FBSDKUIUtility.h */, + 55FD0B5B8A38EB86EEB51F03B419ADD5 /* FBSDKURL.h */, + 30292A458B7E9F548EE21C42C00DB603 /* FBSDKURL.m */, + 2862922363918110F425169EA55856F5 /* FBSDKURL_Internal.h */, + DA2034FF7EBB1E469BD7B5B26FE2F3FF /* FBSDKURLOpening.h */, + 9043CE0FD8B12F5F5916BE44B86CA101 /* FBSDKUserDataStore.h */, + 17F51CC21AF56E6EFFAE28975D182E5A /* FBSDKUserDataStore.m */, + EFBF97B82A5B02AF39843DCA31F76B3A /* FBSDKUtility.h */, + 07C2BB980E434B24FA826BF6F0B948E9 /* FBSDKUtility.m */, + 2ADDA0196093A9E1D564A3DCEADB0FCC /* FBSDKViewHierarchy.h */, + C3774D4642EBA0F51BE2EE5F3D5B8417 /* FBSDKViewHierarchy.m */, + 59D80C74C5BFC4A0886B100A39112288 /* FBSDKViewHierarchyMacros.h */, + DBCCF9BBEF50F35E096A6147FE7081B8 /* FBSDKViewImpressionTracker.h */, + B75D456B8227A687959266B891202BCF /* FBSDKViewImpressionTracker.m */, + 0A732F06ACE72B8D272FF4447BE8C003 /* FBSDKWebDialog.h */, + 1BD59D1A348ADB712E502154818F2DD1 /* FBSDKWebDialog.m */, + 16DE3CC4A28DAFE497E3E807E9B6BAEB /* FBSDKWebDialogView.h */, + 2925C6D352AA7956C7A6D72C76810E7E /* FBSDKWebDialogView.m */, + F7915C789964BF74D37E6557CBB880C6 /* FBSDKWebViewAppLinkResolver.h */, + 90BF7D348A86BBAC059CBB61B9CB86A0 /* FBSDKWebViewAppLinkResolver.m */, + 76C04BA496E166AAE9F07CDA3551B504 /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + 676DC2D6287D8FDB23658E6A2CE9F886 /* Support Files */ = { + isa = PBXGroup; + children = ( + B7F7A46E51356366A46D2EA514B3548D /* TZImagePickerController.modulemap */, + 344C70F1A4C13EE08CB5A21AB44585D7 /* TZImagePickerController-dummy.m */, + AA29B87C1A0AF1D00B179597EDE35A71 /* TZImagePickerController-Info.plist */, + 6809C86891BB13D7D4F49D48A1E02DE1 /* TZImagePickerController-prefix.pch */, + 152A46F68093B0715427462D404AF6EC /* TZImagePickerController-umbrella.h */, + 65AC58A62F2B05589C10D869D2277EE6 /* TZImagePickerController.debug.xcconfig */, + 2904812DC5EF1C1AF04C496F861F966D /* TZImagePickerController.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/TZImagePickerController"; sourceTree = ""; }; - 9634228C70D8F1D605FD39D7871EE3CE /* numeric */ = { + 67A824EED8F21491797C49BDA7AFC93E /* optional */ = { isa = PBXGroup; children = ( - 9F5A7C5609B05E66BE62290368473D58 /* bits */, - 83FA450EEBC748A154C7CBDCB5D35B5F /* int128 */, - 4675B4D8F67299C3415864DD1C0A300A /* representation */, + 1A702392A775E9ACB0A9F430868D17E7 /* optional.h */, + 27653A18DDE5238E8C1A7E7669622ABC /* optional.h */, ); - name = numeric; + name = optional; sourceTree = ""; }; - 98B74A57F9C877982F8C4467B659203F /* memory */ = { + 67C4E4E90FAB640727F677D62605A185 /* FirebaseCoreInternal */ = { isa = PBXGroup; children = ( - CE5A5ADEE64EE44FD37B4DDF3214187C /* memory */, + BEEA5E0B38A3AC1B42400F69FB7F740E /* _ObjC_HeartbeatController.swift */, + 19030F91114CF0548D3952AB150AC4FA /* _ObjC_HeartbeatsPayload.swift */, + 224007AA924454E24C4258AA2A678D20 /* Heartbeat.swift */, + C2B9AF78B2EF0009CBD1C37D7D4F544E /* HeartbeatController.swift */, + 796BEC48EE2BA1020D0EE3525E59B93F /* HeartbeatLoggingTestUtils.swift */, + 6A2003F4F57FA9E6EF1E3D517C4D1362 /* HeartbeatsBundle.swift */, + 754979D499CF223067432C1AD75A143C /* HeartbeatsPayload.swift */, + 7ABCC9323F7DDF947C5D8056C7034259 /* HeartbeatStorage.swift */, + 4784FC6D66230BE89996DEFECDE1B032 /* RingBuffer.swift */, + B05FB9EE75731B694ED3FE13FBB27F23 /* Storage.swift */, + 063508C7752D5D13233D1226AC187D6E /* StorageFactory.swift */, + 27D32F185DA3E34CAD789C0271812273 /* WeakContainer.swift */, + 7E3EF7AC298503B84003C823E32F1066 /* Resources */, + 8739C4BE8DD2C4C965B65866F0033E40 /* Support Files */, ); - name = memory; + path = FirebaseCoreInternal; sourceTree = ""; }; - 9A69381C445AA6D32413D7C0ECEEF1B7 /* GoogleDataTransport */ = { + 6861123CF328C7472726F8B28206305E /* Support Files */ = { isa = PBXGroup; children = ( - CDD2254CC7DAFB4275B532574D0550EB /* cct.nanopb.c */, - 0003281FC4AD3163FCAE761DF5186672 /* cct.nanopb.h */, - 7827D1240B8B0DC22B1662AB6B1D4DDD /* client_metrics.nanopb.c */, - B3FED989AFF9EACAA11CADCF7F10B3CD /* client_metrics.nanopb.h */, - B8E1031456FED385FCDFF0BA3DAB8A66 /* compliance.nanopb.c */, - 87C0BB620E7DC77355E807D5C4B0048B /* compliance.nanopb.h */, - E73B0F50D17496287D43F61A2E0DB950 /* external_prequest_context.nanopb.c */, - 2912EBCB628EB9E74F2E065039411C1B /* external_prequest_context.nanopb.h */, - 69B86868A7026FF483181CC49E0181A6 /* external_privacy_context.nanopb.c */, - A1BDA02546460A1CA55C9B869B9D4ED7 /* external_privacy_context.nanopb.h */, - 49EEC00375A0ACAF728161A752BAAF08 /* GDTCCTCompressionHelper.h */, - DDD6A2BA5FF1E4D77B339BFB56C300A9 /* GDTCCTCompressionHelper.m */, - F6171660A7AC8983FE33488403CF3F6B /* GDTCCTNanopbHelpers.h */, - 26A811E7DE142B4CD43D1FFDA48EE073 /* GDTCCTNanopbHelpers.m */, - 53375033FDEE85182F93C3A94FFF3B11 /* GDTCCTUploader.h */, - B46AC2E45A54E30799C6B7A9871B1E42 /* GDTCCTUploader.m */, - FC9ECC67B3BBDC20D82F8B2378B99229 /* GDTCCTUploadOperation.h */, - 4C4015A7BB0B93EC75030A4422C6853D /* GDTCCTUploadOperation.m */, - BDCBAF2B953BB65283B1E5535FE97094 /* GDTCORAssert.h */, - 6AF15A908CF22468A1E074022E9FBD34 /* GDTCORAssert.m */, - A84D87ACB185E4ED969215DB25793F7F /* GDTCORClock.h */, - E9741B79D4B16D01F7DF6A5B577A9060 /* GDTCORClock.m */, - 8D96798D7C2C50679295CBF59294DB23 /* GDTCORConsoleLogger.h */, - 06739CBB50807283709553E114355905 /* GDTCORConsoleLogger.m */, - C165389BD31937CF9F05C6C2B2777728 /* GDTCORDirectorySizeTracker.h */, - 909D46CA513BC8002BB09AE2C7F1725D /* GDTCORDirectorySizeTracker.m */, - 9BF5239813EC3FDC9421CB44D2A305D6 /* GDTCOREndpoints.h */, - 4BF66AEE3106F8E7A69BF444AD8E78F5 /* GDTCOREndpoints.m */, - ACEF0FD9347E5B955557460CB2546F76 /* GDTCOREndpoints_Private.h */, - 041089630D869A0ADFC1D1962FDB9275 /* GDTCOREvent.h */, - CE888E08D78E2A995383AF8DC196A8CB /* GDTCOREvent.m */, - 418897D38DC6B97964B32A387860BBA2 /* GDTCOREvent+GDTCCTSupport.h */, - C32AED1CD71A4DB84846824C96040FD7 /* GDTCOREvent+GDTCCTSupport.m */, - 019017D2D08ADEB3E38BA15C3D651A30 /* GDTCOREvent+GDTMetricsSupport.h */, - 3068BDB4BD8DF7BCE6EF98FCEBDAE95C /* GDTCOREvent+GDTMetricsSupport.m */, - 9E76291771F6F5B95D8AD2320E86A655 /* GDTCOREvent_Private.h */, - F436472748538C37988B13E2E3FA4AA6 /* GDTCOREventDataObject.h */, - CC815A0964AA32C8545CABE4E7E7B16F /* GDTCOREventDropReason.h */, - 9ED8CE0E3C850623EA471187BA4D9B29 /* GDTCOREventTransformer.h */, - DBE4D26901FAD5D1041EC09D92B264D4 /* GDTCORFlatFileStorage.h */, - FB1B50AA3FB00C3B83B25023223CB164 /* GDTCORFlatFileStorage.m */, - 9E77D90445BCE380616E4B3D4CD628DE /* GDTCORFlatFileStorage+Promises.h */, - 61EE94E22138D3DC0C4CC8DAE8ED601D /* GDTCORFlatFileStorage+Promises.m */, - 0CC1BF7B078CCD5684AFE755A76E6E9F /* GDTCORLifecycle.h */, - 611417B46538CC08AA430251731B034D /* GDTCORLifecycle.m */, - F3AEED232055B677FEB9E77B53E62E7D /* GDTCORLogSourceMetrics.h */, - A7B6E9544525D8AF5CF689B7380D4921 /* GDTCORLogSourceMetrics.m */, - DC777EDFF2232C644E410FD83C9F4247 /* GDTCORMetrics.h */, - 98995FE3AD027FC198EDCEE97BB58ABB /* GDTCORMetrics.m */, - 009DAE8025EAAB30D8CBA122D9F375FF /* GDTCORMetrics+GDTCCTSupport.h */, - 0A21AAA39C08633C2B854A9EC7106209 /* GDTCORMetrics+GDTCCTSupport.m */, - E5FB475FCA94C7C365039878075529A9 /* GDTCORMetricsController.h */, - C9A59E61E8C51DAAD326839392B6E47F /* GDTCORMetricsController.m */, - EA4E5C01E9A6284F14B5B48F7C0A7BD8 /* GDTCORMetricsControllerProtocol.h */, - CC0FE421ECB2FADF9264EB98D218A22F /* GDTCORMetricsMetadata.h */, - FACA119EFE61FB4F7A8AEB57E3937585 /* GDTCORMetricsMetadata.m */, - 70EC62989AE7827589480DC3517E393D /* GDTCORPlatform.h */, - 65609BAA93B653F858D9CF6DCBE73140 /* GDTCORPlatform.m */, - D8A1B9AC7933C8EA8E6A6B1470BDED59 /* GDTCORProductData.h */, - D408C8911F54228630C518F16EA5CCB0 /* GDTCORProductData.m */, - B4140EA64D386BF303D7C6A22BD3E982 /* GDTCORReachability.h */, - B7235EA5FF1219600226F5D94874F5B1 /* GDTCORReachability.m */, - DD564C8A9F3ECEE31F45820D5AB875CA /* GDTCORReachability_Private.h */, - 0B3560D7B9BD5D649FC5A38540D2B355 /* GDTCORRegistrar.h */, - 51ECB29329819D15F8A4E58187D0C770 /* GDTCORRegistrar.m */, - 07B73C93D2279D380D3DA65191463A6F /* GDTCORRegistrar_Private.h */, - D7A6ABA517BBD79662DE748BAF2C9393 /* GDTCORStorageEventSelector.h */, - 51D60FF42970D095DD2F85609E969176 /* GDTCORStorageEventSelector.m */, - F6A66B62EDEC582BA96C92935EC31806 /* GDTCORStorageMetadata.h */, - 1A3219581A825E64D13ACFADBBF1D57A /* GDTCORStorageMetadata.m */, - FC2F5002531A984C8B4B4421060F775B /* GDTCORStorageProtocol.h */, - BA5D576D992ECC827AB45F5EC3F7F400 /* GDTCORStorageSizeBytes.h */, - 15FC7276C5E33369C3345F28C8D05C00 /* GDTCORTargets.h */, - DA673CD82322F6118BC14C3370735D9B /* GDTCORTransformer.h */, - 1A7DEAF50E0F5B76706CE3B1C80FDB8F /* GDTCORTransformer.m */, - 6BD0FCBEC62FFAAFE2C62AC42F88A39A /* GDTCORTransformer_Private.h */, - C6E121387666BA2A4A478A13897748FF /* GDTCORTransport.h */, - A3BA8287202F66E2273D9149C802B248 /* GDTCORTransport.m */, - E2B7E1D4573AC4E0E596290B0657F4C0 /* GDTCORTransport_Private.h */, - 06A2D633336C2E54D4060FE908E7D62A /* GDTCORUploadBatch.h */, - 04D5A68B8E670AFFAEF823444334C05E /* GDTCORUploadBatch.m */, - 3E4914DC8FE81CCF2E89562BF3AA1B71 /* GDTCORUploadCoordinator.h */, - A1BA499F7C3D19741C328C84DDE3469F /* GDTCORUploadCoordinator.m */, - 114CA7DC135987BBED7D35D169CF295C /* GDTCORUploader.h */, - BB3DAE2170E127895DB6724CC3AF757F /* GoogleDataTransport.h */, - 7A79597CEF1422503E6A6A26BDEDA96A /* Resources */, - 87ECFED947FAD8ECC540986360FE0AEC /* Support Files */, + A185884C5F32F8BA1A5321C7CE0FCE31 /* FBSDKCoreKit.modulemap */, + 493C0C3997F9218C31FA181A5CF0F535 /* FBSDKCoreKit-dummy.m */, + 7FA7494432B4772529BF8D4F3C2EA750 /* FBSDKCoreKit-Info.plist */, + 46122BFEC9C2EBFCD7C6A1E3EAFA50A4 /* FBSDKCoreKit-prefix.pch */, + 5F1BEBA0581353539EC63A75476C6D16 /* FBSDKCoreKit-umbrella.h */, + 9A91D784268205F0C6BA86928425A593 /* FBSDKCoreKit.debug.xcconfig */, + 652CACA9E0A64E6B528566379CF8E573 /* FBSDKCoreKit.release.xcconfig */, ); - path = GoogleDataTransport; + name = "Support Files"; + path = "../Target Support Files/FBSDKCoreKit"; sourceTree = ""; }; - 9B4D46F959C0E84A69AF208A0B772B5F /* compare */ = { + 688C2150B4BE8D29B183423D2C942082 /* Resources */ = { isa = PBXGroup; children = ( - 69D37BD89DADBC7004676D391DE9926D /* compare.h */, - ); - name = compare; - sourceTree = ""; - }; - 9D6DBFFCAB8C43D04DCB48A6E1C7684D /* FirebaseCore */ = { - isa = PBXGroup; - children = ( - 69A6516992D91E24D075E158A26CD7AE /* FIRAnalyticsConfiguration.h */, - 8A5FCC666238A720398D3FEAB5FD6EE0 /* FIRAnalyticsConfiguration.m */, - 43620B128524F892B1530D555D265C71 /* FIRApp.h */, - 65E296C35546758F758CCBAA65332961 /* FIRApp.m */, - A69BB4377BDBC5ABCC19D2AC5A58ED7C /* FIRAppInternal.h */, - 885ADADBBFB0606234F609F240AA11EB /* FIRBundleUtil.h */, - 1D0D935D04DF00A5192F04DA9A32AF06 /* FIRBundleUtil.m */, - E6769A7BA301D9C621056145D34D2B1B /* FIRComponent.h */, - 8E0EE181846032AFFA41DD2090B43AF1 /* FIRComponent.m */, - 5F727E7D96BEE81828697D7EF1E5E2ED /* FIRComponentContainer.h */, - 7D99ECE5CFD07E0414CC0991BDAFB78C /* FIRComponentContainer.m */, - A9DA83AB76EFD6907CE24CF7253EECE5 /* FIRComponentContainerInternal.h */, - 34EA5E6A5172430F2B625D5EB942D6EB /* FIRComponentType.h */, - 6B398161B737D2EE235E1306E858A3B1 /* FIRComponentType.m */, - 5FF6E5DBDC9BA7D9917CC377DF7AFA27 /* FIRConfiguration.h */, - AD222EF24CB080C21D3ACB67E71E198A /* FIRConfiguration.m */, - B0CBA9C9CD7FC15F03D8FD2D47DA01EB /* FIRConfigurationInternal.h */, - 03E1A8D1015F1D230AB24D97F3796642 /* FIRDependency.h */, - FDB39484F1ECBB02C8C2CADCDE13C1EA /* FIRDependency.m */, - A0A422B305FAF9295EBB5625197A1F02 /* FirebaseCore.h */, - EAD818419F17BA1FC8C72E12D7EC868B /* FirebaseCoreInternal.h */, - CE7BFA99452E8D06862CE01B545F7612 /* FIRFirebaseUserAgent.h */, - 6CB3535D37E1C80AA1240DB006B3B9A2 /* FIRFirebaseUserAgent.m */, - 0DF67E4AE127859CF553A38A70492371 /* FIRHeartbeatLogger.h */, - F615DD1A233FC66383596D6E73EEC6F8 /* FIRHeartbeatLogger.m */, - B5FF14000F698DBDDE4A8C4B9077ABC0 /* FIRLibrary.h */, - DB38B288010305F16F83881F8161598E /* FIRLogger.h */, - 5343C656109836C813F7B091CE5D356D /* FIRLogger.m */, - CDAC09BCD9A8A6D9DEEC94EB4837C776 /* FIRLoggerLevel.h */, - 38FEAE8BE5B32D8D32A423B67CD2C511 /* FIROptions.h */, - 5F50C047392518B8B092B160E596DE23 /* FIROptions.m */, - CEBFCA7FC767AD4D66D28FE3455289FB /* FIROptionsInternal.h */, - 5951B33FE16FEF2ED16DCD119CE5E7BE /* FIRVersion.h */, - AFCD90614BC993A382CC0296945F542D /* FIRVersion.m */, - 01CB48EBC55B8076B9A16BA52779FC2A /* Resources */, - F1FD309FDF4D277CB9977240A9067EC4 /* Support Files */, - ); - path = FirebaseCore; - sourceTree = ""; - }; - 9E19D665E8618F7D90096DB617989AF5 /* uniform_helper */ = { - isa = PBXGroup; - children = ( - B586FDB11E1B70D090A2D879BF88D039 /* uniform_helper.h */, - ); - name = uniform_helper; - sourceTree = ""; - }; - 9F48FAC3E07ACCBCBE7D21A63853BEE2 /* randen */ = { - isa = PBXGroup; - children = ( - A3033B6DFBCFF1678A49640A5B8A0210 /* randen.cc */, - 6F6C575B2EFEC28EBC10C21536D60913 /* randen.h */, - ); - name = randen; - sourceTree = ""; - }; - 9F5A7C5609B05E66BE62290368473D58 /* bits */ = { - isa = PBXGroup; - children = ( - CEDF2D65053385231C22C3423BE5B5B2 /* bits.h */, - 17F0AF175CD3D49B85BA9A63D35B64CD /* bits.h */, - ); - name = bits; - sourceTree = ""; - }; - 9FE20A5EFAA5B9B58447AE5C2661C01B /* layout */ = { - isa = PBXGroup; - children = ( - E1498B9726DFD9FF0BA00209B233420A /* layout.h */, - ); - name = layout; - sourceTree = ""; - }; - A109AF8C91BA43F1058E44C5B7A8EC3F /* types */ = { - isa = PBXGroup; - children = ( - 809CED40D81E41E7AD73732DEF4048E9 /* any */, - 1C902E1D6FE13992FD48BC28091A23A2 /* bad_any_cast */, - A1BE7F6D13C643F5BA74E7697D0B86A6 /* bad_any_cast_impl */, - DE49A917B9BC50C13CE02DB28ECE0B03 /* bad_optional_access */, - 92FEF9B8EF667B17431DDB7E5EB88754 /* bad_variant_access */, - 9B4D46F959C0E84A69AF208A0B772B5F /* compare */, - FC03FF0793F2FC0D395B6E33B2FB7F49 /* optional */, - 31A217726310262465208D2933ACD3E5 /* span */, - B7B9DC254C0B6B01A952CAA0B2F39843 /* variant */, - ); - name = types; - sourceTree = ""; - }; - A1BE7F6D13C643F5BA74E7697D0B86A6 /* bad_any_cast_impl */ = { - isa = PBXGroup; - children = ( - 7CB28896DD13D82F2578FC562984F742 /* bad_any_cast.cc */, - ); - name = bad_any_cast_impl; - sourceTree = ""; - }; - A3A3DA7D5F77D3DC47BCCA771A7A3EA9 /* bit_gen_ref */ = { - isa = PBXGroup; - children = ( - B84D446B7286F65AD2B16DC2FB6E8642 /* bit_gen_ref.h */, - ); - name = bit_gen_ref; - sourceTree = ""; - }; - A40C6448D0A3582F355A05001285CF58 /* container */ = { - isa = PBXGroup; - children = ( - FECE40F0DCCAF6567C7E3806FE911001 /* container.h */, - ); - name = container; - sourceTree = ""; - }; - A522D304C9B3224A30E881FADF6F5741 /* Resources */ = { - isa = PBXGroup; - children = ( - 937A68CCDBC3D0DB6B3B61E049C3D188 /* PrivacyInfo.xcprivacy */, + 61E6DF771163DC27C8AC001A5E7B7106 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - A545F295DBDE6433AB1D0424118899BD /* BoringSSL-GRPC */ = { + 6891141FB7D7A9058E9466AE331F8CDA /* TZImagePickerController */ = { isa = PBXGroup; children = ( - 5E570FABB7470D3A0DB1073234F609DA /* Implementation */, - E1D5C54E015B4A0F86E8690284319A65 /* Interface */, - 1E09197D75E7AF25B3D7D736455A9A26 /* Support Files */, + 41FD908ED5FBA9E313EE70364848189E /* Basic */, + 52712C66049BE160D125EF925DCD2FDD /* Location */, + 676DC2D6287D8FDB23658E6A2CE9F886 /* Support Files */, ); - path = "BoringSSL-GRPC"; + path = TZImagePickerController; sourceTree = ""; }; - A67239BD36D56256C1023EB45B9DB7F1 /* wide_multiply */ = { + 68A824320C289CABF413AA03B3F7C442 /* Implementation */ = { isa = PBXGroup; children = ( - 4EE96FD0498A01DD7579040C3A43B8FF /* wide_multiply.h */, + 16CC648A1226D874A1C167AA186E7087 /* a_bitstr.c */, + 8FC90176EB9B063A2E2BEA199BC4014E /* a_bool.c */, + CD4EE3313CB24BD46148824EBED674F3 /* a_d2i_fp.c */, + 6080AC8AD01E181212D9A992AFC6CA5D /* a_digest.c */, + 42ECE98A8AEF56A40B7533233FBD69A5 /* a_dup.c */, + 4F29BF183188D7CCC149C8756AD87FD6 /* a_gentm.c */, + 2B518FEDCE311627101C7640552EA1FF /* a_i2d_fp.c */, + 631ADFA19DFE77DD7B07F808C827DAA3 /* a_int.c */, + E3133F442732EBE09DC5DFF452AB1338 /* a_mbstr.c */, + 806B0DE16BB0A668563A5616C3260E25 /* a_object.c */, + 51293494C0D0906946E12897FFAF2209 /* a_octet.c */, + 5D4574F0B1FA0F95533C414DD443364A /* a_sign.c */, + 732864DC03CF48B7A5ABBFA46B3A2768 /* a_strex.c */, + F90BC57D1303EAD51A6A1241CBC96667 /* a_strnid.c */, + 8FB05910F1FCF73D7977BD1CF4004E46 /* a_time.c */, + 3A2F74BF9348C375DAB7DAB986991112 /* a_type.c */, + 75C00EED857C7AB00F0C452D378F0D59 /* a_utctm.c */, + A348E4B5C75CFA844618A2DAEB10C23A /* a_verify.c */, + 8940D9B56C89177B978DB66C8BB10EA8 /* add.c */, + EDC7B769ED1466A91B189239BB4BCF96 /* address.c */, + D30F74ECFEF08BEC4A8BA6E65CE3BD14 /* address.h */, + 1BF5D50B764C908E949BE1DCBA1CC04C /* aead.c */, + 295CF3E8963DD339EE09672614292DE5 /* aes.c */, + 53391FE07595791884F33673633B210C /* aes_nohw.c */, + F0CBEC395D9BDBBEF4B2807E3CE5D021 /* algorithm.c */, + 7A408807F326B393D21346D0695446BF /* asn1_compat.c */, + F38602E91BDEEFFFFDA156C244C0CF00 /* asn1_gen.c */, + EE894A97632333E75720403EE81705A9 /* asn1_lib.c */, + B9F801E8C54CD4E2D2DA8D0C29635F99 /* asn1_par.c */, + ECC212215CBD377EC1E33A0D2CFD04BA /* asn_pack.c */, + FAB85DCE8C9D458054B951376239527A /* base64.c */, + 7379DF353DEBDAD7EDBF9ADCA56F1937 /* ber.c */, + B36EE13ACFCA254C77957C2DF8C3A270 /* bio.c */, + D59E07E1E6E030561B557C59C202D5C5 /* bio_mem.c */, + FAEDC2E5B9DB9558A8E8EECC75C62F4F /* bio_ssl.cc */, + 83956059F2EE16718696CE35B7EFF8A9 /* blake2.c */, + D8F1A763BBE2171F9A54F20B5A89AD0C /* blinding.c */, + 5422B66B4C27265280D267EBED53A5BF /* bn.c */, + 2E933F61D32F11C9A159406776458983 /* bn_asn1.c */, + 9C08DA49F2281F0F6F12C3122EDFB599 /* buf.c */, + 3DFC6E47ED1A72A40E134902F2FDE9E2 /* builtin_curves.h */, + 067E2ACDB4257B1B27A2D55D75889127 /* by_dir.c */, + C1BEAC7552BD02E6056BFD0001A7DE9A /* by_file.c */, + 0651C77BA218874C7481F8EBB3F687A9 /* bytes.c */, + 52CCE954484CDC6C0EAB2EE51842DE93 /* cbb.c */, + C4AB9CF96CC38DDD6A9A8A1CFB5CAD36 /* cbc.c */, + A75A7A8A1A067BC1A9B9D660F3A64065 /* cbs.c */, + 69809B438DC04511118F9B7D35E9EC09 /* cfb.c */, + C540AB2576EB88B152B97FFDF369082A /* chacha.c */, + 45B5A006A021613FFCD0288C5FE838F2 /* check.c */, + D7B0C58CEAA3ACE574EB8987E2245A0A /* cipher.c */, + E3BF8CF6A125A7B43BF253CB175D46A2 /* cipher_extra.c */, + E0051CD0E177B74514A772B429A3652C /* cmac.c */, + 60C67170E34421F0AE4784672B5394B5 /* cmp.c */, + FDD6F685E09C23CB2486C23AC4713A12 /* conf.c */, + 20FC1382E7C1687E007099EA3E2663FE /* conf_def.h */, + F4DC09138A91E215F5328E439CFE03AF /* connect.c */, + F508ACE661C0CA13C8218370DB51AF2B /* convert.c */, + 92BEE49C4E137C6769AE28FEDC19A1ED /* cpu_aarch64_apple.c */, + 249E287FAB0F46B28FFC6867B9839237 /* cpu_aarch64_fuchsia.c */, + 8ED81F4F412564C7D17A61B8D7777416 /* cpu_aarch64_linux.c */, + 3AABAB210B72304C565898A24ACF525B /* cpu_aarch64_openbsd.c */, + B1016DF3528BE8D6D369754573F1DCE2 /* cpu_aarch64_sysreg.c */, + 63E6229A9C9929DB5813B437E4FEBACF /* cpu_aarch64_win.c */, + CB4A03D892228AE4D446C261F4DC6DFA /* cpu_arm_freebsd.c */, + FE84EC04A5893514B49011A2391B73D4 /* cpu_arm_linux.c */, + B3AF27A10AC3A14EDE01BDC617215D80 /* cpu_arm_linux.h */, + 0C866A4CC4234EA4DDC705F9D1BDEBAC /* cpu_intel.c */, + 4C938784E8012452027F838F5037F512 /* crypto.c */, + 7B553942BFC0863E2B17DA9C542AD769 /* ctr.c */, + B5778BF59BDC8A883FC82DD8333F7961 /* ctrdrbg.c */, + 0363B16BD4835DECBF3FF29B1470D8D2 /* ctx.c */, + B74E57E731F099E888EBDF3C3AE63E7F /* curve25519.c */, + 9D9AAC87CC4E55348A92FB3690FCF9B2 /* curve25519_32.h */, + E5E4DFA2E53B585C9BED91D23E32A759 /* curve25519_64.h */, + 7ACA85193E8AD59A0A376C526D692853 /* curve25519_64_adx.c */, + 36AFFE60E3761D7AC34D18C0E00642CE /* curve25519_64_adx.h */, + 5544712BFB30DB344E74DF0AD26E5F79 /* curve25519_64_msvc.h */, + 29B09A01FB20EF9EAD2ED087B30BA1FF /* curve25519_tables.h */, + 107AA3A66F84B0DDFB40128582353EC0 /* d1_both.cc */, + E72FFF07578858058B4872CBF372C336 /* d1_lib.cc */, + 507CF2153BB9786B5F44235B08E8DE72 /* d1_pkt.cc */, + 0713D64C32AD22D2722656705DD4EE01 /* d1_srtp.cc */, + 1489BDCFBA8B6D2BB058D882EC3A545C /* delocate.h */, + 35823A369B7912130456F0BAF0F502E2 /* derive_key.c */, + 17129F02609563CFC535C595CE38B66C /* des.c */, + DF1ED9473D9888CB1098A34B0B7E6BDA /* deterministic.c */, + C74D74B5DAE1A62E955A937F4FEDDADB /* dh.c */, + F04B8C66635DB260615D643B6EB8EFD6 /* dh_asn1.c */, + 7AEEB17672B6D4DC10FD0A5F308059EE /* digest.c */, + 09D2EF6010861F943A00AE4A3CA29EDF /* digest_extra.c */, + 727E92D44EC87DD0CFCD42CEC7771868 /* digests.c */, + CCC2F74CC36F468DC343FA7B66316AA1 /* digestsign.c */, + 7F2CF080D1524678A068AEFA7EC7F674 /* div.c */, + F4BEB117051A7657FE78FE17B91CFE2F /* div_extra.c */, + 2FC69D6D750015A3CF4EDAA96DD18764 /* dsa.c */, + FCB1B2E1DE53DE7FC798C4D3E51BBF6C /* dsa_asn1.c */, + 371077972DC2E3FCE360EB44980716F3 /* dtls_method.cc */, + 7F7AE6346A87CAEF97AB7E1471EBAE7A /* dtls_record.cc */, + 0E3199D3B88E8031FF5FE85F634895DF /* e_aes.c */, + A2AE7693BF4296D2B49B90CCB2CAE97B /* e_aesccm.c */, + DF553B66C354808886781776A2B51590 /* e_aesctrhmac.c */, + 4F1A38176E08F6CF3FB3620966222F89 /* e_aesgcmsiv.c */, + 16484B2F3250BFA3CEBD0C23056E8077 /* e_chacha20poly1305.c */, + F66F54B85AAAA9910452001114B90885 /* e_des.c */, + 8DE0B4B769C29BC6D93B279F2E764EFA /* e_null.c */, + 578C14EDDEE1C63B5F45A9839C592C36 /* e_rc2.c */, + BA7B58DBDC50C4CC8C7A7088D01246DE /* e_rc4.c */, + 7F7D0D0DDD0F02A6DA735A2E4E02D4BD /* e_tls.c */, + 1E457795B706C2278F774E6D3D6DDF95 /* ec.c */, + 8C089D48D6151E1B4CF56CEC48C776C3 /* ec_asn1.c */, + AC91445F66E778997A97F9466B5422BB /* ec_derive.c */, + 20996B14CC23F87BAF4A1E8C12FFF96C /* ec_key.c */, + F48894DAA9E11CD996FD0F8EFA7631C1 /* ec_montgomery.c */, + 704171B6666E36E8F69C7A717CCF3AB2 /* ecdh.c */, + CCA0864BF4F0EED02E5D85F554850F99 /* ecdh_extra.c */, + 84128774A76C8C2C4C70FA17E1A8EE0B /* ecdsa.c */, + 2C33176FB9C1A7C9A8A6BF2DE047FE75 /* ecdsa_asn1.c */, + A261E6650AD10A310DA47294A7F69E82 /* encrypted_client_hello.cc */, + EE0C3436F1EF8FBABD28C3FE88433EDF /* engine.c */, + 5662021301FC278F4C282E98961024CF /* err.c */, + 7ABF6C53DC79ED601EB36638EB1616C6 /* err_data.c */, + 52E8F060F9A87BE426D7AABDD93989C2 /* errno.c */, + 09B222784EA4356E4D90C9D3A744E201 /* evp.c */, + 22145A7E97FB26B795471101E9F0A9D6 /* evp_asn1.c */, + C0429B1E86F7322CF73ECE977F4251EE /* evp_ctx.c */, + 2E6D4C850EAE68D3A49C30F698D422FE /* ex_data.c */, + 978C03321BD3B61B8D25994EF5E27A21 /* exponentiation.c */, + 0D585D0EAD8841546ABF0FEFEA074697 /* ext_dat.h */, + CCFA78F8784A9DF76430043A213E6FB7 /* extensions.cc */, + F433923B1F3490D6B5269F82EF3BEBEF /* f_int.c */, + 4D543D895C8FA7E8B72363A93139508B /* f_string.c */, + CCB74DCB5D7CFCF395456118C8E1C6BE /* fd.c */, + DE711311B08945961A0E127370419FB7 /* felem.c */, + 25A8B125A2F8046B660DD1E97D252BC4 /* file.c */, + FC46768EA18433FA2C87D77C8E6C8B4D /* fips.c */, + 5D676635E7FEF597FE9B9A9E12F8CAB1 /* fips_shared_support.c */, + C216F2477F3F19D22475E65BF38D254A /* fork_detect.c */, + DA7FB9127D8D7066B5890F31B35A0749 /* fork_detect.h */, + 2F00CF3E29B787941D11FC32113D3CB1 /* forkunsafe.c */, + FC477FAB99D18313A71E00ED404DB24A /* fors.c */, + 573932E3B3862583E51D2EC2A332F43A /* fors.h */, + EFE941329DADD0B9C07AAA8924CFC90C /* gcd.c */, + 6C5C5A14F86523AC32F29AE3CAC76A98 /* gcd_extra.c */, + 003BECB73D90E3395979D0E6EE0C35B2 /* gcm.c */, + 49B0971160DAF94BAAA38BB7152A5323 /* gcm_nohw.c */, + 3E46B2A9232778A61EC47A19083EA212 /* generic.c */, + C6DBFE1E6CC27B6F12CC8C3B1272FDE6 /* getentropy.c */, + B6CF2C090F299E4FE0827AAB1FE1617F /* getrandom_fillin.h */, + ED6D06118B50B8018C529F234273B11A /* handoff.cc */, + E2E789D2C93397D1C6F9F8F69481D1DB /* handshake.cc */, + 3DA0A0FA50A59591DFDC771CD4FD50BE /* handshake_client.cc */, + 7C91743CE946EDB50E95A7FE6A561C3C /* handshake_server.cc */, + F5B3F0EF0515D613E9B0AD86883AB245 /* hash_to_curve.c */, + 8616C97C72269DD27984C18437F6BA3D /* hexdump.c */, + B48BB880619FFD4A1473CDF3D73B947F /* hkdf.c */, + CD3526D01A4145324B686B95F9FA3431 /* hmac.c */, + BD40C38F26AB2BA6BD4DA7C73FE3C856 /* hpke.c */, + 748997C68263A6818AE30D91E807D145 /* hrss.c */, + 2AA3350E3FB3EC259E0BCA89E288768B /* i2d_pr.c */, + E9E002F22C2C16CF42F8E6EEEBCB2759 /* internal.h */, + 3E71389BAD5C8D8506D9637EB95D02F5 /* internal.h */, + D85DE6741DC81E0023B378CF3EDB116E /* internal.h */, + FAD647239CFCFA71DB0D248D785F2087 /* internal.h */, + 1C460D8F2FC2299D6B46C6844DBEF179 /* internal.h */, + 66D7B6F1C7EE001E330ECCACFA58715D /* internal.h */, + 6E06788068B4F5A7B888F858D0DAC68B /* internal.h */, + 74258E045FE9A0062ACDC0019024358B /* internal.h */, + 847601FD0FDCBCBDDB4361A8A2054B5E /* internal.h */, + 93D315C5AF64192D42CE8106985F9488 /* internal.h */, + 8C2B85D7F7C3628C045F018CD97D56EE /* internal.h */, + 5588F96F20FF174B05FD3FFA7754ED80 /* internal.h */, + 38F207FC3FD2D79C58DAC1FEE38547A0 /* internal.h */, + EBC4E9C9B3FE6F894D6112C579230ABD /* internal.h */, + 0D5AFE3F4CCD7E2F5A2800C7B37D9064 /* internal.h */, + 8D74E0C976F9720A94FA0C3BAE525460 /* internal.h */, + 838E3B074ADF8D45DE7832668FAB99DB /* internal.h */, + 94474D2024D38D7A959FAEECB16869C4 /* internal.h */, + 8E432A6DA73D45FCC408F28043A42853 /* internal.h */, + 5DB9DC7E5DE2D9C15677B61B36081821 /* internal.h */, + 50815940A06E0E6359EBCCE5F1A4F400 /* internal.h */, + 205B5C43E95D747C7122152BE7D7E864 /* internal.h */, + 95C0C7DEDA57D1A34B9C1E4F4CEDD6AE /* internal.h */, + 2E8D6A512611345E23AE27EC4616DB8F /* internal.h */, + 4B9058BC2E451D27CCD36FE5E4596AED /* internal.h */, + 1006D76906D7639477E1059E37DD66FA /* internal.h */, + 39D601C8F46E9D48D202B1E18F8491A3 /* internal.h */, + 19C972FBBE070C268C4A9C24FBFF0C53 /* internal.h */, + E491968D4021EC9A85D6338ECC019D68 /* internal.h */, + 6BB2E4DC45AE160134632103B0C3B3E6 /* internal.h */, + 48077CF5CE7A9FC0070ADF71B4BC8E82 /* internal.h */, + 54B5F26EB09671A59AE0CA0D2C97CEAE /* internal.h */, + FAABAE4993ADF51C023CFC5AF0F92CB9 /* internal.h */, + F4983583D0DA2812B46EFE403AB15C76 /* internal.h */, + DEE41A6E9403ED155D56C3FA7059A133 /* internal.h */, + D8234C54E88610B48CA9B1F20857F7EC /* internal.h */, + F66A020ED391BF8432299958DF5C0FD9 /* internal.h */, + 2BDADBD37B7404218955FEE2BEB828BB /* internal.h */, + F1578646908CF8E016D713540F9ABC11 /* internal.h */, + 502D05B50A0C8C96B3B32370BA7BA6CF /* internal.h */, + 0DA86331CC1FAA82147BD250E452108E /* ios.c */, + A5D5DEFD765F7131FBC25732991DBF1D /* jacobi.c */, + 5E06DA993B985D9911D49AEBDE1C7803 /* kdf.c */, + 44954A5B4CA22F70EC7758D5E68A7569 /* keccak.c */, + 1016E6E1748E459E95FAB3CD0976C099 /* key_wrap.c */, + AD2591123761D0231D34CA1DB3C482BD /* kyber.c */, + C4959451FB8E91661B69EB3502FE675F /* lhash.c */, + FED56D4A0E67ABEAD3B54E0F8A1B87CE /* md32_common.h */, + 88C4DA1780E983680DC1A6B9696DD93F /* md4.c */, + B511F98F2ED53CBF2D13F3913FC57CD1 /* md5.c */, + 47886FAA106CC5546707EEA12F421E20 /* mem.c */, + BF9C24CB9E870ECFCA3107CB49DFEB8B /* merkle.c */, + CF57A7B6ED159A6D81D564DCB9F7E96A /* merkle.h */, + 1582F26523126B4BF770463CAFFC8425 /* mode_wrappers.c */, + B92A64215BA14DC1F7F545AF784AE3CA /* montgomery.c */, + 90D2BAAC0D3927488518F287A5F1A4AB /* montgomery_inv.c */, + FD18B1F198A000AB4F05D6A3CA6C8B22 /* mul.c */, + 4B6160B1F08F3348D3AA86632D4D3073 /* name_print.c */, + 5D7D846CBF6345B119EA111B2BD07EB0 /* obj.c */, + 79557DE2808E93259F13C28FDFB88E0B /* obj_dat.h */, + A0D1E2EC9A45ADEF806A7E27CE724BD8 /* obj_xref.c */, + 98731FDE716ABACB8C234684EF0635CF /* oct.c */, + 8A992C93185B695B2A84656A0E994970 /* ofb.c */, + 16CE93017A59DC9BFE9399D013279D0E /* p224-64.c */, + EC2F00712FC7EE1BC6A0F861FEDFCAB2 /* p256.c */, + E3B902C6325A9F43D14E9593C6E0D5AE /* p256-nistz.c */, + B54FA0B93F62A33C8F2B29F0850CCB2D /* p256-nistz.h */, + E4358CB27FB7E82183864E7D9E0600E8 /* p256-nistz-table.h */, + 17BAF3C4A7F98749D7DB3B6764214D42 /* p256_32.h */, + 91BB23722F26A469F36C0D2A852FDC9B /* p256_64.h */, + B1AF30AFFEB53958AF5F861DE2552E84 /* p256_64_msvc.h */, + EDBE162FD174E3E797DEC0AFF3D04230 /* p256_table.h */, + 92C6C891FF0ACD9B8B2235CE69F780B7 /* p5_pbev2.c */, + C034F04ABD8E20A06C2C5F3415D99F7C /* p_dsa_asn1.c */, + 1B21383EEF5A69A5FD7C600345DC1BCD /* p_ec.c */, + 2970514DD2919DECDCA90B1C8789BC54 /* p_ec_asn1.c */, + 1E13D4ABB420F21C6DBB4B4C25D90523 /* p_ed25519.c */, + B9782E4B0AA1232E826B40E29F823AD8 /* p_ed25519_asn1.c */, + F6E8A037B2143EBAB9C58ACABA15253A /* p_hkdf.c */, + 020448AA0C46D5C0FED4D3058B63FEBA /* p_rsa.c */, + 035291BA73213963231668DE147522A2 /* p_rsa_asn1.c */, + 7256CF1A5D2F600FDE464893F6C163A7 /* p_x25519.c */, + F32CE6923BE66E09587A971E7CB5F468 /* p_x25519_asn1.c */, + 9744268AD1F990637E67D59A9F071ABE /* padding.c */, + DD7F7FE9565F85D7C2F0006745BE2B66 /* pair.c */, + 485E3A964059997D52122C04D2E4BA02 /* params.c */, + 91C59A721A32FC4942ACE7780DD452A2 /* params.h */, + 657A8DA1869821EED732DB9EF941A217 /* passive.c */, + BBD32D7A1573F2DEAE733DC1B4537778 /* pbkdf.c */, + 820488F9D927AA3A729E468C8248E89A /* pem_all.c */, + D7F083934ADAE112320E04CFD9D82CA9 /* pem_info.c */, + F6FA8C3518DEEEBE28508BB3D189C493 /* pem_lib.c */, + 0CC3B3DEFEDE3CA46FAC99CC3D008836 /* pem_oth.c */, + 625FB89E06D81C5B010554937BAC33FD /* pem_pk8.c */, + F10FDA58A5FE782385016070A2DE742D /* pem_pkey.c */, + DE79A230F7B541D0AF099D7F3F8AE3A4 /* pem_x509.c */, + 2E5943F36583A255D418CF5866B930A6 /* pem_xaux.c */, + 01256A17DFE15106ED018349B47C0590 /* pkcs7.c */, + 449FE1ABCECBD5E5FAD246CE75E060A7 /* pkcs7_x509.c */, + 566F146444ECBA39329D1A18389913B3 /* pkcs8.c */, + C09BDB3A57D041E627E09E89CEF253F6 /* pkcs8_x509.c */, + 56944B690777C66F98867328B5614E0C /* pmbtoken.c */, + DCBFC27D7D6879BDAC6442A99DFA4ACB /* policy.c */, + D3FFCEED040E9CE64FCED61EA3C112AC /* poly1305.c */, + 533BBC14EE849CFFDD15D746DA87EC3D /* poly1305_arm.c */, + 92B81963609282109B40DACF2C57168B /* poly1305_vec.c */, + 8F4AA7AC3752739A46D62B197E81512E /* polyval.c */, + 2CA776AF049F6EACF1482F28458CC4B2 /* pool.c */, + B4F33589811F8C171543B5559554A2D0 /* posix_time.c */, + 2B0DC75A4400BB6A302B81DA52DA82B3 /* prime.c */, + 0283FCC4C773FA788D60D169870CACD7 /* print.c */, + CF3C10B9158D141EF201D858CF1857DB /* printf.c */, + D4E3E46BB1DEDFFEEA029422ED5CF46B /* rand.c */, + 2D3069ABF94F8F70F3A77F0E5FC1EA11 /* rand_extra.c */, + B2F74A5DDDDB2E8913036A46A39A3C18 /* random.c */, + 4DA68D9B0DB82112759D5288634D6808 /* rc4.c */, + 10B1F542D85CD3BB5C1F63CBA3ACC06E /* refcount.c */, + 5CFB1FEBA27292328DC7C087D5AEB6C2 /* rsa.c */, + C114FD732940EA885AF8CC79046302B4 /* rsa_asn1.c */, + C127C4A985337FDB3919BB5E9CFB2426 /* rsa_crypt.c */, + 19E26A4B169F49DC1D739FBF65C47B31 /* rsa_impl.c */, + 553F15DD3F87A0220A3B6CF03FA2BBCB /* rsa_print.c */, + 2CAAC53FC06F4E00762D668F67F21CE5 /* rsa_pss.c */, + 7FA4EE591D7F6C4683875ABB101A28E9 /* rsaz_exp.c */, + FA07EB746D9159D0A87226BD322F90DA /* rsaz_exp.h */, + 4673A8BC268A80AA65FBE1AB1121976D /* s3_both.cc */, + 620E795266DEF43F3E4C90ABFB02673A /* s3_lib.cc */, + C33AE304FAB446DD68053447486601FF /* s3_pkt.cc */, + F476E313CAD2B6C0E800EB66079CD7A1 /* scalar.c */, + 925A1E66E589523CC8F70D722AA39208 /* scrypt.c */, + B858D3EEF6E6B3DDC284D9F990AC25D1 /* self_check.c */, + FE7CC18EAD7594DCD800DC1CC655E89D /* service_indicator.c */, + 7A3A53173C1E6A1A063C26224E97999C /* sha1.c */, + 119B4FCCD8EE3285F2F5C511CABFEF21 /* sha256.c */, + F7B3DB8AA206ECD4AF33666BDA1A5857 /* sha512.c */, + C3BB4C6C8F6713CEDAC409E6075B2669 /* shift.c */, + 7C5BB15F918DAA551ECE2E721139E8B2 /* sign.c */, + F08318C4C73D6D5D0AFDD80198B1A3DF /* simple.c */, + E888036BED1251FEABD2B93F4CE3237B /* simple_mul.c */, + E253DA5BC5DB49CD986162FF3701D93B /* siphash.c */, + BCBE467CBDAB23EC9FCFF164E8E215E3 /* socket.c */, + E35ADA6C24FF01EB64C2CA1C72E7AE4F /* socket_helper.c */, + 005FE4D9B986681227F71502C681B213 /* spake25519.c */, + 719012FB60D034733B6B1127BBD5CA0D /* spx.c */, + 72F16AA1D26C1FDA485F4ECEF3645BF2 /* spx_util.c */, + F4F2B27EC744F63AF966048841A3670C /* spx_util.h */, + 66B71E49E501E2D2B94EE2C9416EC43E /* sqrt.c */, + 3FC29ECECF6A1F84DA5A14A7CC25CB20 /* ssl_aead_ctx.cc */, + 9A933EC57C9E5A013342BA74D8E2685D /* ssl_asn1.cc */, + 22D393C0A3214E77DA69325BAE006BB1 /* ssl_buffer.cc */, + 3546E524A0014BD5105D9212D6BCE3B0 /* ssl_cert.cc */, + 32296E483F12B4C0B75B3DFDB1F7F29B /* ssl_cipher.cc */, + 1484482173EE1046BC9B62C2347008B2 /* ssl_file.cc */, + DD33F6D25E288C494F3E26A28D056686 /* ssl_key_share.cc */, + 497A6A8A0D40DBE3AE112FC35762D523 /* ssl_lib.cc */, + 572585B0F7B0C23ADA0FBB6BCB13474F /* ssl_privkey.cc */, + BACC9189A0783EB2E152E200526B22D2 /* ssl_session.cc */, + 0B5616DB7BEC0209E168191F37232509 /* ssl_stat.cc */, + D5506BE2429CABFE6F84C6119E88FDFD /* ssl_transcript.cc */, + 27DB3747274F7ED6DEF007024176E823 /* ssl_versions.cc */, + AA4DAB59391D18493FBA7E40437D582C /* ssl_x509.cc */, + 40ADEA93C8581D4C61659B1C9DF10631 /* stack.c */, + FF1DCAC541B7C00228B80068B73C79B9 /* t1_enc.cc */, + 4A975E7AED809A982FB0C550A67B5DBE /* t_crl.c */, + CE32075ADDE6E47093DEBBB653A88166 /* t_req.c */, + 6917D230E2F7B9EB528A4D00959EE95F /* t_x509.c */, + 4A4C6651B6992B2804BD53C93409D66C /* t_x509a.c */, + 6A106ECDC8AB1C934BF60866DFE202D7 /* tasn_dec.c */, + 56DC4C9562BBA7B51E97840ADFD0CA2C /* tasn_enc.c */, + 61646348C0745F04BF0787A06EE05F5C /* tasn_fre.c */, + E899EB1FD6246095202B3E4C96C27E4C /* tasn_new.c */, + 8D7337A1C77482557A511020F24E1F4F /* tasn_typ.c */, + F7518842727B095A985C527679BC8C01 /* tasn_utl.c */, + 91A3C41F940C61B1D0B6B183594F79D2 /* thash.c */, + 3548459DEB91533E9830F85B9CA56C67 /* thash.h */, + 3300CA36BCF60CF1337FF190ED696758 /* thread.c */, + B15F855076143CD202655A974A63FD2E /* thread_none.c */, + 69E575941BFE6A86AE6BDA28D8D52469 /* thread_pthread.c */, + 0E395AA2226A7BDD9C91EF73D2D4FA29 /* thread_win.c */, + E9A14C4C77828C8AFC0DF86CA0284830 /* tls13_both.cc */, + 0CDF271F589C13E41B536104E3B9238E /* tls13_client.cc */, + 34BCAFE15056ADEFAD44D95547A94C99 /* tls13_enc.cc */, + 8556F356908C833DB657173C36500C68 /* tls13_server.cc */, + A25D801F44B62C1F0317EEF0D20AAE54 /* tls_cbc.c */, + 7C4ABB59C60670D0AB3CC6A7229FA2D3 /* tls_method.cc */, + E4EE61E0B5C16A518395AA4A00D92043 /* tls_record.cc */, + 0CB09FF3E70764F8126931155D4CEAD9 /* trust_token.c */, + 426F320C5FB7A54ED3CEE870C57F903E /* trusty.c */, + D125D4E341F9A5D3BF21627CCA4A783B /* unicode.c */, + D1903EA4145270D4E67B161A5D1D0988 /* urandom.c */, + 843C3F9B5F6B4444979C3EF59F44F392 /* util.c */, + 1C401A15D2BA2363836269FA8FDC7B72 /* v3_akey.c */, + ED68D9B6A922879EB03E4EAC8DB31085 /* v3_akeya.c */, + 9811D2D7849C7D770271A7CF585AD83F /* v3_alt.c */, + DF992AB2C0D937FF77D082308DC478BD /* v3_bcons.c */, + 30ACF2F0DADDD78DBEA9C6E83994E421 /* v3_bitst.c */, + 78C1606F7CAB71853D8D55011ED4750D /* v3_conf.c */, + B86AD9D27FB42C99012413F9A6930DA2 /* v3_cpols.c */, + 88745239516734F44EE7BC0BD09C4A28 /* v3_crld.c */, + 3C280B12AD6BC81C90232BE66A251F12 /* v3_enum.c */, + C5492B04E75A566050A939B43D772175 /* v3_extku.c */, + 3031066C94875208E9092FAC035F7A6B /* v3_genn.c */, + 816C15635BFB8181CE99987F2795723C /* v3_ia5.c */, + C2C4635E572DF493EBBEFDC8D634FAB9 /* v3_info.c */, + C74967D9F54E8E2EBA6BD56CCCB65ABC /* v3_int.c */, + 4E7B9FCE0825B18D9EAD202E9996E6A3 /* v3_lib.c */, + 35C300EA0724A1F5733E769CB02EAB33 /* v3_ncons.c */, + 384D451514EAFAC60CC2AF32EA7B891A /* v3_ocsp.c */, + 56803A5BD4C3E16F5A674D9E5FB32880 /* v3_pcons.c */, + FCE3CC2203782293864C417DAFD98173 /* v3_pmaps.c */, + CF8144CFA778E460CA4ED0E750B7C5DC /* v3_prn.c */, + CD76D0C13173E592063AB8EA4D1D9ACE /* v3_purp.c */, + BE596088D364C86D59FC9E6FE5F20C66 /* v3_skey.c */, + 153AF31E727E6D1040F2D9DC4FD2ACAC /* v3_utl.c */, + 180682A0DF066769F1128B8650E42D78 /* voprf.c */, + 97BDF57F20FB8B9A1D27E33BA5F2BD95 /* windows.c */, + 71EB02048AE893D76F572CB6952E150B /* wnaf.c */, + FED37F07E373FE7D4D014D57ABAFE09B /* wots.c */, + B9CD933EE59BD639887A59ABF4FCE8F3 /* wots.h */, + AE65939E62C384EC04C88C231099B7C1 /* x509.c */, + 7BDE8F6311B574E29AF91A568E2457A2 /* x509_att.c */, + 82EF14D4707DC105536F24BA22973FCC /* x509_cmp.c */, + C4A461E3F98B657FC6E0A2940DDC29FB /* x509_d2.c */, + 5072C5F688602208282762A2A01E9610 /* x509_def.c */, + 4FF6F02EF9C2D7105F1C2AAF3A7144FC /* x509_ext.c */, + 5AB766F7583BB70EDA331C62ED3483A3 /* x509_lu.c */, + 06602D6D76E7F3FFB99CBB0078CCBF5A /* x509_obj.c */, + 7A81C92DA60AB04FC5EBF8783D9E3E2B /* x509_req.c */, + E17614BB18BD20783225949CFFC2DEB2 /* x509_set.c */, + DF89B817DB0D1820D47104ED5AB029C7 /* x509_trs.c */, + 47AE1B4EE32BBCE2D93FC26E9E617B02 /* x509_txt.c */, + 58216706BE15EC4819B2FC248899463A /* x509_v3.c */, + 407F73546E4C9F8AC7411D802E81F638 /* x509_vfy.c */, + 7FC26B64DF83E80F4693A21089831FDC /* x509_vpm.c */, + 432475180743CCD196C48EC6A578380A /* x509cset.c */, + C900FA14FE6A2FA2F2D52377120D9EF2 /* x509name.c */, + A75CD809EC9EF93591E1E5031A81D133 /* x509rset.c */, + E4DE7ADDB73941D5687C54494C0815C3 /* x509spki.c */, + FB13C91824795BE057F33662EDE8C56A /* x86_64-gcc.c */, + 8DB11C42D275A1FD009D9A2F8F9E7B98 /* x_algor.c */, + D844F6707FB535716A062A958AD5E592 /* x_all.c */, + 1118363C6C663B93861E3284D1BD81E3 /* x_attrib.c */, + 56C793A7743C3F389A54C3FC2DB4EEE4 /* x_crl.c */, + BA9FCA856DF504C762115F471031D101 /* x_exten.c */, + AF4AD6A2180D07EB5C4AA61083F8E942 /* x_name.c */, + 59C6E4FA46DE45706A2D9D3DB3C3BC56 /* x_pubkey.c */, + 3780076524DB6D617367B3872EC00C03 /* x_req.c */, + B23934F1739FF1AA746ACAC368480877 /* x_sig.c */, + 2D4080BFE55F8B4717FC73E1EE3067F1 /* x_spki.c */, + B86971A1BBEF1058259480B90A9C2B01 /* x_val.c */, + 9993E90AF22AD2B2F832528BCBED8458 /* x_x509.c */, + 4C40F809A1586D89D9661523C488CF19 /* x_x509a.c */, + 5FAD832A1A3189908612C2C3939C91EF /* Resources */, ); - name = wide_multiply; + name = Implementation; sourceTree = ""; }; - A7D3B491B6FAE89084A3E3E80E0CF17F /* Interface */ = { + 68C55C0FC5695A0D9374DEFC3CFC5B95 /* Support Files */ = { isa = PBXGroup; children = ( - 178B343D57806114B0F6106B24FADC42 /* alloc.h */, - 97A688EEC8FE8C67C7056AD3A5EC3CE5 /* atm.h */, - BD1519EF86831A91D3B3541C86707DA6 /* atm.h */, - 2371CB7E74F417F4DACB4143810FE9E6 /* atm_gcc_atomic.h */, - F5A882A004C85A7BD2AD3BD083AA622B /* atm_gcc_atomic.h */, - 47E1F1920D3F54CD145216BAF2213031 /* atm_gcc_sync.h */, - 01A2DB61D1C769DA52F83C426022F933 /* atm_gcc_sync.h */, - 5EF30BD9F4E25DE5215ADF076D6BFD68 /* atm_windows.h */, - 5C0CB34C524F08BA1A10BACBE8407F61 /* atm_windows.h */, - 7C1979B2E561B589F934C63B9DC54C0B /* byte_buffer.h */, - 428F3279F4C2BF2A12EE49C61FDF5A49 /* byte_buffer.h */, - D924F2197EC7C216A23C9481C543DD0A /* byte_buffer_reader.h */, - 07D4FF87953A26155279B4F7AF654BD6 /* byte_buffer_reader.h */, - DD5016D60FAABCB3CAEB5A5E90908711 /* call.h */, - 9F1AADA5B6ACD77CAF3EBA105BFCE145 /* census.h */, - 3DBAD5AFC4A76AFC05BD7D93B1BF3170 /* channel_arg_names.h */, - 9EEE6DA5E48EDA015D62188FEBC759D2 /* compression.h */, - BD71884C33C3393FDF0B72988C4566E1 /* compression_types.h */, - 8A15C70CD39FB77AFDEE0E4387E62796 /* compression_types.h */, - 8E9E1D7D090ADC52E2EBE8960D68145B /* connectivity_state.h */, - 7A7EFEF54388370A2F00475D35C52028 /* connectivity_state.h */, - 340C6C5BDCAABCC2624F2BB93AE5DB50 /* cpu.h */, - E25B12A60770DE7D34F34FCBE64F6720 /* endpoint_config.h */, - 11628222CA65B5A9B66312991892892C /* event_engine.h */, - F472A181F3989A15823A7AC50F209647 /* extensible.h */, - 8D721A0F2C94BD0C0F9695358D997C81 /* fork.h */, - C23F3499F48882D07F825268C4E851A3 /* fork.h */, - C463F36AF2DA8E184580BC09662B59EB /* gpr_types.h */, - C85EED01882DF8D046C53A2B926D5F71 /* grpc.h */, - B061F5A1DECC81C84C43CB92CA3CBF9E /* grpc_audit_logging.h */, - FDCDFC719506E3830A9BD9B17A928AEA /* grpc_crl_provider.h */, - 01A98D5E929E8B3A5C9EE23CDC83C6A8 /* grpc_posix.h */, - C83C42C32CD93DC5DF0F9BC6104D0D1E /* grpc_security.h */, - 8F3E2F364DAF9E30120B6BB24F7FFEB9 /* grpc_security_constants.h */, - A9E8640232B4FB92EDE0D6B2B5CF1ECC /* grpc_types.h */, - 0A45E7885F645D15E7CF66CB98F47A59 /* grpc_types.h */, - 2229063406D3E4938AD53425558AC568 /* json.h */, - D86F3F1D2AA358F1F3F30F5B38723C64 /* load_reporting.h */, - 97AB697BF0AC70DE77638A7F08586034 /* log.h */, - 39B804F2F64C3FBF1E577B2CF6E851AD /* log.h */, - FE3D2F0B3360383E298F452FF1F1600F /* log_windows.h */, - F4DB5BF382B579E5BD8B3FF1F5B3C26B /* memory_allocator.h */, - 76462DD8EDEBA68931E1F6985CA5FFEE /* memory_allocator_impl.h */, - 36B68C4FA4D179ADB04F78A4B1BB4484 /* memory_request.h */, - 81275932C3E9417B4BD866B7A67873B3 /* port.h */, - 7625FB6BE969F35F3D8101F8D51D62EE /* port_platform.h */, - EE9648F8D323227996A12459D40FD398 /* port_platform.h */, - 9F29BECDDF04D7F7A31079535ECE0E53 /* propagation_bits.h */, - 2AC61CA84AFC512C54FCDB446D5B1D5A /* propagation_bits.h */, - 7DA635543B2B1CC1845CBBF6399330F4 /* slice.h */, - 5969A657C0C6A2740BEA36FC1FD5EDB0 /* slice.h */, - 17100517A196018967E9CE077AFB57E2 /* slice.h */, - B1134EB811D808F9C741E965BFC1EB86 /* slice_buffer.h */, - 639E5F7F52A28FACCD6F3DD561C45FCA /* slice_buffer.h */, - AA18D6BA3472FE9AE2FC38C388A1C482 /* slice_cast.h */, - EC3290C1CE41F22A04734E0A14DC5321 /* slice_type.h */, - 84ADCF233638B2652459B6196C5CA6CD /* status.h */, - 0CA0F55FF86A7BF6B3BF76BA41D52D20 /* status.h */, - 3E07A4D74882F5BD7632C96974F11E1C /* string_util.h */, - BD34B8DC4ADE83CDEB44CFBA4850AD6F /* sync.h */, - B34A57AEB70C9888B5DA75870D26DB58 /* sync.h */, - 0B7BE4B4857772FA18756795751DC047 /* sync_abseil.h */, - 6F14200A519986D5DD86EB630BF302B6 /* sync_abseil.h */, - A0E98C544A99CD376A1577D7D62D8FDF /* sync_custom.h */, - BF8B99B04E0EA16A0725A321CAB369E8 /* sync_custom.h */, - F45E26C50A9FD4ACED815ADDADA73073 /* sync_generic.h */, - DDC39A6B79CCE6B19310DE34BC2EB2D4 /* sync_generic.h */, - C474B9386670F91EE9D7CA2C907B7C57 /* sync_posix.h */, - FF09E168713329A5FC0584B1F89CD590 /* sync_posix.h */, - 007BC64783B94A75CD502C83A750DBD0 /* sync_windows.h */, - 1F134D0774043FDD7D28E86875B4F58E /* sync_windows.h */, - 190C788D1A98C0060C56F7F820C389FD /* thd_id.h */, - 8D9F66F4A1D9FBD8C712191B8B169ACF /* time.h */, - F842432E98B45B4E53E9CB5C1149C59F /* workaround_list.h */, - ); - name = Interface; - sourceTree = ""; - }; - AAE91EF628115B394F8AC19FD4FF8D6E /* Support Files */ = { - isa = PBXGroup; - children = ( - 7D26456357E7FBFB7DC65556160D9065 /* DeviceKit.modulemap */, - 71BD29D28E32D6707F450820A50B7042 /* DeviceKit-dummy.m */, - 17C53537E075447B7E8C863544D50C90 /* DeviceKit-Info.plist */, - 2DA3CAC28C0AD1A22C32066CB4FABC6C /* DeviceKit-prefix.pch */, - 88FCFC69DC3958925831FF01B6034BCF /* DeviceKit-umbrella.h */, - AE99891C16160E2328E3142E863D0354 /* DeviceKit.debug.xcconfig */, - 32C67A6A631E1E9A7F6F78C395D9A509 /* DeviceKit.release.xcconfig */, + A7D9CF9E02C087ECC1167FC5178B1FA8 /* nanopb.modulemap */, + C2DF1C0DACC546EB144A618C6540447B /* nanopb-dummy.m */, + C652FE28061B2D6FB43DBE2EFE35F511 /* nanopb-Info.plist */, + BFC0B156BB2430DC8FC7D60B1F8A3F57 /* nanopb-prefix.pch */, + CEACDEA1B60D491A39F5860E0E605C79 /* nanopb-umbrella.h */, + AABCFB842799DDD3FD8D7097DDBA7935 /* nanopb.debug.xcconfig */, + BA7605573FCFBE1DB3AB972C82729175 /* nanopb.release.xcconfig */, + A58A3D9CF25816635F0F5D974F424783 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/DeviceKit"; + path = "../Target Support Files/nanopb"; sourceTree = ""; }; - AB1612DE747EE572C3CD337B35F2F829 /* base */ = { + 68F31D7C3237B4F5C3D1D63AB53B548E /* randen_hwaes_impl */ = { isa = PBXGroup; children = ( - 6EAA1E94BC07876BC87A521FF67B1657 /* call_once.h */, - 9C9960819D5E5FCC49028377207534FC /* casts.h */, - 4DF0F98F78C27F56733F6D5BCEBEF9C3 /* cycleclock.cc */, - DE3036D31A6996DF8233522041C5DC49 /* cycleclock.h */, - BCD60A6A28FB3AE84CAFAB8704601217 /* low_level_scheduling.h */, - 703FD4EAD87AB69C0CD72D67D6C0F79D /* per_thread_tls.h */, - F0C3904D38290EB7759C8BFBFC0A66B5 /* spinlock.cc */, - 9A306B7A6789F21EB2805CA14DE9FAE6 /* spinlock.h */, - 0FA959C1913C798B5586AE5184120F76 /* sysinfo.cc */, - A96EB4D118E98F4B3A4284962FEBEB1F /* sysinfo.h */, - 1C3532C0915881F25141D93FEE62E872 /* thread_identity.cc */, - 75FDBA0CD5F76A904AE29CD728260F73 /* thread_identity.h */, - 46ED79D34CC05037DAA8EF31B35FB3C6 /* tsan_mutex_interface.h */, - D66886BE35DA37906401D7FCB5509629 /* unscaledcycleclock.cc */, - CEFCDE7B743786D0F754033372BC97B7 /* unscaledcycleclock.h */, + D58BBC5700B4E37172E3F4EF824CA9E6 /* randen_hwaes.cc */, ); - name = base; + name = randen_hwaes_impl; sourceTree = ""; }; - AC8A08360A28A5D661238E53915212C8 /* time */ = { + 6A2F991FD2496F422CCEB772168F611C /* Support Files */ = { isa = PBXGroup; children = ( - 8DD037F54F0245A3008427DA841DF29B /* internal */, - 352C20B0DD9C62E89467704D7D7A9C27 /* time */, - ); - name = time; - sourceTree = ""; - }; - AE8175ED75D14F543689A621E42D9138 /* base_internal */ = { - isa = PBXGroup; - children = ( - D8911E7DD65CE073404BE437EB3A45CA /* hide_ptr.h */, - EDE8162A111C062222283E0F81C147B9 /* identity.h */, - 1243B069E9AF35E0597E947D50C7BD3B /* inline_variable.h */, - 9637A6B32113D75B8F6572717D2411A3 /* invoke.h */, - 44A5F6E7EE610DB4C5FA26DABD263AE7 /* scheduling_mode.h */, - ); - name = base_internal; - sourceTree = ""; - }; - B001DBE9E6223FB15F9985866EB33442 /* Network */ = { - isa = PBXGroup; - children = ( - 7CC635FE7A5C5949AE624F7AD2361602 /* GULMutableDictionary.h */, - BB42008FA0AFFFACE1706855742FDBEA /* GULMutableDictionary.m */, - F7856C2B819A04DEE390E522D3CAA5C3 /* GULNetwork.h */, - A235DA621D61A1C1E5CCBE6F60A1CEF9 /* GULNetwork.m */, - 4698299241EE4976CC1FF0B153CE6E29 /* GULNetworkConstants.h */, - 68AD82051389CB17BDC6491C12A9EF54 /* GULNetworkConstants.m */, - 7CEED1ED8E7ECA19ECAB6E8DF1B25112 /* GULNetworkInternal.h */, - DF1E4A6D699222FC3F27B311DD090D66 /* GULNetworkLoggerProtocol.h */, - C5E33D5D3575A7A88B037D0F0D8D797C /* GULNetworkMessageCode.h */, - A0E93B1125D74E42686464A3E671841F /* GULNetworkURLSession.h */, - C652E352C5730DBBD43A6242DC71B49F /* GULNetworkURLSession.m */, - ); - name = Network; - sourceTree = ""; - }; - B06D0FC6DA41B59442B4E77A29C17FBA /* non_temporal_arm_intrinsics */ = { - isa = PBXGroup; - children = ( - 2534A0F9CC1A29AACEE4F97AA19DD6DA /* non_temporal_arm_intrinsics.h */, - ); - name = non_temporal_arm_intrinsics; - sourceTree = ""; - }; - B08D3571C45D3EFC3044B72D829B989C /* Support Files */ = { - isa = PBXGroup; - children = ( - 2DCC435190FE9F526FE1E60D27335788 /* SnapKit.modulemap */, - 1BD64650E40114FD588FE9CA01AB5CFC /* SnapKit-dummy.m */, - 3BFB62737011197EA9E860C6844830CB /* SnapKit-Info.plist */, - E5ACB515F779113CA2D423D14B2F722B /* SnapKit-prefix.pch */, - 922F54B1C3EF0E5F78D3BB9C4F307A96 /* SnapKit-umbrella.h */, - E11802E61FD392BCC3A02ECE47744B75 /* SnapKit.debug.xcconfig */, - FC0B23BE18588AAF24DA5DAAB6025911 /* SnapKit.release.xcconfig */, + 8E094DD98FE2F1933C794A59A0DA1137 /* FirebaseAnalytics-xcframeworks.sh */, + 651295158DB48CF37B1047E9E2DB9A11 /* FirebaseAnalytics.debug.xcconfig */, + 9C527E175F0B74902089E8D836EC36E0 /* FirebaseAnalytics.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/SnapKit"; + path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - B0FFA5B519649DE2EB4A0F96BB605282 /* algorithm */ = { + 6A6B479851E9AC251937FAE75504569E /* cordz_info */ = { isa = PBXGroup; children = ( - 2D9F46E7B24DD448630B1B7529D309BF /* algorithm */, - A40C6448D0A3582F355A05001285CF58 /* container */, + DEDB658B95BFA989513416DBD608A0B6 /* cordz_info.cc */, + 0D7F3939B262DEA091AC55CC78E885BF /* cordz_info.h */, ); - name = algorithm; + name = cordz_info; sourceTree = ""; }; - B14B5B7F1A937E3D6A6A63F766E328F7 /* Environment */ = { + 6AC5C8B659C3F0922D51CB7DBC32396E /* bad_any_cast */ = { isa = PBXGroup; children = ( - 6C68BE53A42342FD409DBF66DAD8B00E /* GULAppEnvironmentUtil.h */, - 812F668A3839650D61777F9ACC084439 /* GULAppEnvironmentUtil.m */, - 24F33B0171E520B5580814C4932C4E44 /* GULHeartbeatDateStorable.h */, - 60DA65CB265106BBDB906AFA1A73D94F /* GULHeartbeatDateStorage.h */, - 8141A8AFEA0FCC818C08C522F3265503 /* GULHeartbeatDateStorage.m */, - A8A82B859A322D3B5C5B7568CE8E2313 /* GULHeartbeatDateStorageUserDefaults.h */, - 735146869A243C589BC88696A526147C /* GULHeartbeatDateStorageUserDefaults.m */, - EB83F63C0E51F6B9C6965870CC0DB473 /* GULKeychainStorage.h */, - F9BC0B5731D5BF3351F857545FF96072 /* GULKeychainStorage.m */, - 5B6CB0E818E041DB3BC09D037AA5FFC3 /* GULKeychainUtils.h */, - FE001871CD91F13C7992E5B80DE7B2C3 /* GULKeychainUtils.m */, - EC6AB930FCC836F884773D9B18110803 /* GULNetworkInfo.h */, - 91D9691EA7903225D2ADE8D4E0586BD3 /* GULNetworkInfo.m */, - A71109160C40147AB5BB9850B996DB1F /* GULSecureCoding.h */, - 5036C3D346CFC7DFD965B73EF67F173E /* GULSecureCoding.m */, - 3A500533A6A428C773DD4FBD896A8CE3 /* GULURLSessionDataResponse.h */, - 37D626193C9858E62D6EF289C4B02EA1 /* GULURLSessionDataResponse.m */, - CC8164443E2A1226B2C8CC0AD93E4DC6 /* IsAppEncrypted.h */, - BCD2599E05100156878DEABB7C1B8A30 /* IsAppEncrypted.m */, - 9470073353FD474824F7230C99E25D9C /* NSURLSession+GULPromises.h */, - F05C57E6AC920C5A807A70F3338BA71E /* NSURLSession+GULPromises.m */, + DBA2F84D67C7FC0E2DA50BED91C2A99C /* bad_any_cast.h */, + ); + name = bad_any_cast; + sourceTree = ""; + }; + 6CAB89C339FF68991C3380A6626D708B /* utility */ = { + isa = PBXGroup; + children = ( + 48EF2CE2B033F062B6C14141AB1B36EB /* utility.h */, + ); + name = utility; + sourceTree = ""; + }; + 6DA45128B8C4F47E43A659E4570FCF4A /* hash_function_defaults */ = { + isa = PBXGroup; + children = ( + C6DB15F26B5599F886315F481D1DBF12 /* hash_function_defaults.h */, + ); + name = hash_function_defaults; + sourceTree = ""; + }; + 6E7D489EADB58E75B71325FBCF1F12E0 /* pretty_function */ = { + isa = PBXGroup; + children = ( + 4D04C579CB55488461426BAC5DE08222 /* pretty_function.h */, + ); + name = pretty_function; + sourceTree = ""; + }; + 6F16974341BF4CABE8118CDFD5325CC1 /* Implementation */ = { + isa = PBXGroup; + children = ( + CF1E187F808E0110708626214747FEE7 /* accesslog.upb.h */, + A863F561F63772E4EA40D25E51001FC2 /* accesslog.upb.h */, + A978AB01FF78E73661C19B073942A993 /* accesslog.upb_minitable.c */, + AB86A8F83E82E726079C4CA48B6C839A /* accesslog.upb_minitable.c */, + BD94FC90C5B50959E4ADD14F19031F35 /* accesslog.upb_minitable.h */, + 05477409508E44C5B959B552733BC2D5 /* accesslog.upb_minitable.h */, + 348D60671652BAFF17D678F29D7C20C8 /* accesslog.upbdefs.c */, + 5BAE2649EEA8485A3D0106597CA2BF0E /* accesslog.upbdefs.c */, + D28B06779C656A3C6065D8C9573F11C1 /* accesslog.upbdefs.h */, + 3F1DE39448CB794C50ED28AA351406A1 /* accesslog.upbdefs.h */, + E753A443D97203CC9242EDA5881B33DB /* accessors.c */, + 590F0B35EB65F958953AB7DAEF990AA6 /* accessors.h */, + A6D4E0AC70627E20B726416FFC20E188 /* accessors.h */, + 754989CF3D917F01594C759FB604816F /* activity.cc */, + DBB2CAB6C1B6B9953F945FD486893E27 /* activity.h */, + C11BBC90F9DDC8F99BB5DE5A5100A0CA /* address.upb.h */, + 1C456C11C88B04763CCBB4B3AAFCDA44 /* address.upb_minitable.c */, + 84250A0ADDA35277D8A241F6B461D3EA /* address.upb_minitable.h */, + DF21314DA07CC10013D5D93ABE6F898F /* address.upbdefs.c */, + CC801DBFA3324D1B3C879E4974AE65BF /* address.upbdefs.h */, + 7142A495A70714EBAF2FD9D8DAA27AB6 /* address_filtering.cc */, + 8929FF57D3D03B791A9EA1603986CBEE /* address_filtering.h */, + 347913E7C969C13DAD1DCB8E3E9BBA4E /* adler32.c */, + 975216F287D16E422FDCD00B07B59633 /* ads.upb.h */, + 2F441B1B89FA5B9419A3FD0BC200D724 /* ads.upb_minitable.c */, + 10E8A2D604EDB05298F1213F66AD5FB9 /* ads.upb_minitable.h */, + 937127D542666105150974A7355D472B /* ads.upbdefs.c */, + 9C874AB92CAF95AEA9A407F5F7AC5BB3 /* ads.upbdefs.h */, + 0398C48D3A0C48734E31C33CD52381EB /* aes_gcm.cc */, + 1FBFA5581BCEB2880164A123D3E935CA /* all_ok.h */, + C38DFA042439DD398867D01A13E4C720 /* alloc.c */, + 35928FF85E04A7BF3E30AE22CDD8E8FD /* alloc.cc */, + 247CA156307BEB2C50B3BB8F2EB8B684 /* alloc.h */, + C005079393957EFBDA81927AE2AC561D /* alloc.h */, + 79F0509347570C541AC9E8F448309D34 /* alpn.cc */, + 0E7391A711BF5EE39FE9662D4D6E8385 /* alpn.h */, + C24C574683A0F3719EC7FBBA4B5ECC43 /* alts_counter.cc */, + D95B920C1E119428D6415786CAA23D26 /* alts_counter.h */, + 0BC3128D17F79518C0A5A402E04E1505 /* alts_credentials.cc */, + A5C9B01CFB885BD5AC743F5A6D9C4BB7 /* alts_credentials.h */, + 5C387C0B8971637E486EB77C8D5A88DA /* alts_crypter.cc */, + 201725757ADE87734AA381E6BE6DB1BF /* alts_crypter.h */, + 51D0C5EEAF5078C5E405295D4EFE58B0 /* alts_frame_protector.cc */, + 5F9AD0C399468DA572136CAE86892578 /* alts_frame_protector.h */, + 8E07C4512E5717B5F56358BA2F857149 /* alts_grpc_integrity_only_record_protocol.cc */, + 283C228C6601C0F7264092AF42AAA4BE /* alts_grpc_integrity_only_record_protocol.h */, + E8F87BC79CEB6781FB4BE0CCFA81AD83 /* alts_grpc_privacy_integrity_record_protocol.cc */, + 7FBAB3464975EB6D9038D9AECC945B53 /* alts_grpc_privacy_integrity_record_protocol.h */, + A9469BE178BDE38AB715AF6BEB7E3C6F /* alts_grpc_record_protocol.h */, + D9B6E07F813DD29BCF6BC95D611EE2DE /* alts_grpc_record_protocol_common.cc */, + 8549EFDEF0331B5302C430360D190D83 /* alts_grpc_record_protocol_common.h */, + 4DE3A38BDC0D642CB4ED88CFC3989C95 /* alts_handshaker_client.cc */, + 3728F28739338409DD7761BFA46B1472 /* alts_handshaker_client.h */, + 5CE76A2A732CEB0EF74ED7EDC59F909F /* alts_iovec_record_protocol.cc */, + FCE5D50FC5F7B7A9A8D9D4D9EB8405C1 /* alts_iovec_record_protocol.h */, + 01C93277848769AA7C632270BD3C4CFA /* alts_record_protocol_crypter_common.cc */, + D4F8BBCF9035634477E0EB32AAB87698 /* alts_record_protocol_crypter_common.h */, + 60C35F63AEE568540AF12D8FEAF55EC9 /* alts_seal_privacy_integrity_crypter.cc */, + ABE361598A332633F7D8D1AD38F95E11 /* alts_security_connector.cc */, + 41F3F4AADCF059985FA5D1D6D9E7FB21 /* alts_security_connector.h */, + 34002933EC0A8063F759DF5E36EAA1EA /* alts_shared_resource.cc */, + 0D0216114A85FCABB47BF9B606F49ACE /* alts_shared_resource.h */, + 80994BEEE4F38250D26371B10FFA6F34 /* alts_tsi_handshaker.cc */, + 399814B0D4DA3B134F4D98D4F6951D1C /* alts_tsi_handshaker.h */, + 918D43DEC7EA365ECA9D2A23E69317CF /* alts_tsi_handshaker_private.h */, + 557E751BCC79D245BF2EC29AE9E93752 /* alts_tsi_utils.cc */, + C0BCF04EC09CBD90C47BCD73CAD47B70 /* alts_tsi_utils.h */, + EC839390EA479EB59EEB42FDA13FB2BB /* alts_unseal_privacy_integrity_crypter.cc */, + 63DDF73DAF675A124C2AFC3A219E0924 /* alts_zero_copy_grpc_protector.cc */, + CF2EF7567A65647FB4CA55A7CB6DC228 /* alts_zero_copy_grpc_protector.h */, + A52F20127EACF39684B68BC0AB76F5D3 /* altscontext.upb.h */, + 580C129ADAC94F281C01BE2931C2F6DD /* altscontext.upb_minitable.c */, + CC35F42D2CDC541F83B1D781B3DC34AE /* altscontext.upb_minitable.h */, + 2731AAC2CC2EA541FAD92E1FBB7263E4 /* annotations.upb.h */, + 707D0474D6544F841ABD4E3838C82C0C /* annotations.upb_minitable.c */, + D2379A75E9BEE79C38DC035FE7D20E56 /* annotations.upb_minitable.h */, + 7959D671B88B8C2E06206ABF943E3E3E /* annotations.upbdefs.c */, + 459039F3D054422980F608D97F558E2F /* annotations.upbdefs.h */, + 9CFE1F73D515600982DC964FE90A3013 /* any.upb.h */, + CD99316705661920727ED2C9E2E47C60 /* any.upb_minitable.c */, + 1DF28AD96A549E01E602FC42429D25BF /* any.upb_minitable.h */, + 2E8596F9D4AFEE63CCFD6468AC2050F6 /* any.upbdefs.c */, + 153BD321F9CBB19BA1EA9A72848B0171 /* any.upbdefs.h */, + D54D665EDDCE65E364679A76103AB8AE /* api.cc */, + A384FF9E635BC3EE5625128EACD37935 /* api.h */, + BE5BAB463571ABEBEF2C934396E87FF0 /* api_listener.upb.h */, + B52AA3DE95630BB9B0C8541FD2B03BAC /* api_listener.upb_minitable.c */, + BC13C62F963F84353F72B432DC4B443A /* api_listener.upb_minitable.h */, + 878578434AEE41F0AB9F65B44CD634CE /* api_listener.upbdefs.c */, + 1203AAB4E3333D73F665E0B7DE765432 /* api_listener.upbdefs.h */, + 0870200BAF1C908521FAAAB1394E5974 /* api_trace.cc */, + 9F4F15AE20B1C0428AF21729BBE10A3B /* api_trace.h */, + 695959291EB4010C42EB83FA2F7E0508 /* arena.c */, + 53310C2EC8A6D9CA3447F652FCE8E5B4 /* arena.cc */, + 21EA216FB5BA5115914AF4F0523C66F2 /* arena.h */, + F900D9D1C7A5788F548A4BCF91448FB9 /* arena.h */, + FD0C31798CAE115C04581C52A9A7364B /* arena.h */, + 77DC4CFDF96F15D343F690C68973F793 /* arena.hpp */, + C0B7B90A0F1F18FF3AE85B870AF61E4B /* arena_promise.h */, + 7BF267D1F12ED3A2525AE8AC4D818459 /* ares_resolver.cc */, + 0E5D66C8153A679B6AA9C2132E3018C0 /* ares_resolver.h */, + 038B646373F731F3D8E353E9D5728443 /* array.c */, + 9D498D44C32CF0DBBBCCCD6C5EB0CBD8 /* array.h */, + FB62C9D5BDD92E079DBE2C8CC1E8F32D /* array.h */, + 404EF5EA2D5685B8B3668AF57EA55851 /* atm.cc */, + E943B4B5225B551F8DDB28706401B877 /* atoi.c */, + 048B1F37E83B5174132241746A8DD66B /* atoi.h */, + FB94F69F562E39C8E4149FA22A03A68E /* atomic.h */, + D131BC5F5AB69154FC0A8505E8E882AA /* atomic_utils.h */, + E4B4F1B6C1759F53BFFBBD22829E935D /* audit_logging.cc */, + 8EEEFE6BEF018519546F728808FA74D1 /* audit_logging.h */, + 65053BB224BFF882072F0D5683226C15 /* auth_filters.h */, + E8FE0817B0724EAEE03D7B28AC3A5D0A /* authority.upb.h */, + D2EDA1571B7CFF16F10ED50F557E35E7 /* authority.upb_minitable.c */, + 3BF14A0EF71A0E192691B9D0E517D5BE /* authority.upb_minitable.h */, + 3AEAE35DEA9EEA2262364F6421E98C0E /* authority.upbdefs.c */, + C69321C45A392236004A842A701CA954 /* authority.upbdefs.h */, + 2E61AAD13DABA426E29239DABF90F6B2 /* authorization_engine.h */, + 4CA8BB1A2FFEFFD3A1938C110C1D474D /* authorization_policy_provider.h */, + 8FF3BA3114B9CA0F2EAC1F5491D8D498 /* authorization_policy_provider_vtable.cc */, + 251AE40A16A13CF687EB53C404B66D42 /* avl.h */, + A26AA116C8A5AB74584E4602E6B31EC9 /* aws_external_account_credentials.cc */, + 71A2F618D3228252FEBB82FE53AB1658 /* aws_external_account_credentials.h */, + 479D166F33C9BD63E1AEADE736775B15 /* aws_request_signer.cc */, + DA3B2A1CF1B7D81BBD1DF3B0BEC2657D /* aws_request_signer.h */, + 3F94EFA2198F4B5A2A2107FAA10C496F /* b64.cc */, + 9DBD3545C480DF1A6020297FC8C70C0A /* b64.h */, + A2FB85AE1D34223B0273A9BC43F2A5BB /* backend_metric.cc */, + 46E90299520FCE0FBE71255D28F9276B /* backend_metric.h */, + 167D26D26AD14700DD26C2294FC5ABA5 /* backend_metric_data.h */, + A437F87B957CF4C7D0E6200BC877398B /* backend_metric_filter.cc */, + A417FC5743E6E8C3A489804572ED6374 /* backend_metric_filter.h */, + B9948646A0069634289C5E92F2FC013B /* backend_metric_provider.h */, + 985D9A7C6CA27DC31C16B8EBF26B8C2C /* backoff.cc */, + 4D8C9751C0A5D94150C568FBE073DBFF /* backoff.h */, + CDCAA6D14788445CAFC20DA4EC9533A3 /* backoff.upb.h */, + E3FDBECC2C1F426EF5A4DA43290D59AA /* backoff.upb_minitable.c */, + 2583491FCED8BBC24A84867A231B41C8 /* backoff.upb_minitable.h */, + 410CE5ADBCC274FF38C8BC4A445653D4 /* backoff.upbdefs.c */, + D6AEDE5A799EC6FD258DD054B06198E9 /* backoff.upbdefs.h */, + F89E6BE6DF2A0C3D2CA0D8A886CBC815 /* backup_poller.cc */, + 54E488EB2A4B341F5CD2DE2725EFDACC /* backup_poller.h */, + 7642E2D7E217F38AB587323DDE51FEE8 /* base.upb.h */, + DFEF347C714F83EE46ACA76A113C7799 /* base.upb_minitable.c */, + F62CF030A6969BCAB4FEA174EBA63BD7 /* base.upb_minitable.h */, + 5C2B7D642975DC60F7441AE8927A8889 /* base.upbdefs.c */, + DE7E329122497A76C9E90D9065EF072A /* base.upbdefs.h */, + 5253F699D559ACADAC2FAC9C13D86CB1 /* base92.c */, + BF3A79A07ADA92BAF9E4CD2E8B5C55D6 /* base92.h */, + 55C340A73F5F0377413CB36B87E8C3D8 /* basic_seq.h */, + A1B7F286BE8EAAFE783C2B7BCF44CF8B /* basic_work_queue.cc */, + C33A1DF63A0742EFF029EB8360BAC8F2 /* basic_work_queue.h */, + 276F785FAC03A397E512DC4BF9B71249 /* batch_builder.cc */, + 5086BE4A9AD459EB294B2490D0D22974 /* batch_builder.h */, + A4120B479F0B22598CD098DDF4724236 /* bdp_estimator.cc */, + 77B56D538004B37697A87B3F040D9627 /* bdp_estimator.h */, + 3F9EE5FB6A75BAF47431EE5D3C45158D /* bin_decoder.cc */, + 4D963ED9744ABD410CB5519C2B240FBE /* bin_decoder.h */, + 11DB285D8FD85F99DEEDA9939B773757 /* bin_encoder.cc */, + 46A57A5811C7967BBB2E51CFF6F101F8 /* bin_encoder.h */, + 9F3A6EB208560E8D7BA8A5DDE16331C9 /* binder_resolver.cc */, + 917E7A63F6A259537A31F5BFB8A06B2C /* bitmap256.h */, + 6F1DB2788AB562F78E0CEF29E7CA3335 /* bitset.h */, + 0875BA74D2CC070F84F572325C9D606D /* bitstate.cc */, + 20B4742108D9C12DA4DFD7F41E04EC01 /* block_annotate.h */, + 73FE5C3AD15C5A0FEE4E99120059EFBB /* bootstrap.upb.h */, + 3B13BBEDA99083ECC9C8FEE5B18A67AB /* bootstrap.upb_minitable.c */, + B5B634960A95BCA97A0BE96348A6EB9E /* bootstrap.upb_minitable.h */, + 9D79A57FE763F33212D98BB03EB43ABA /* bootstrap.upbdefs.c */, + DCD29883BECFCD85A70D372F1435CD60 /* bootstrap.upbdefs.h */, + 375A54CD0A2392965560120AF5004586 /* buffer_list.cc */, + 85208430284189CEBDCE21D516EF8D2A /* buffer_list.h */, + 815D8EB77F86F16CD3DF926DECCB6595 /* build_enum.c */, + D2DD4683DDA6696ACED94B8469410F30 /* build_enum.h */, + CE9BE15C3430A40FCB684ACB011A77A0 /* builtins.cc */, + C53437037A7B05B6717A650C59AF0A72 /* builtins.h */, + 3A0015218C914223BBE182DA9CBF2BA3 /* byte_buffer.cc */, + 3CEA13A1ADD4D1FC82BE4BB150864583 /* byte_buffer_reader.cc */, + 3ED481E813ECB0A8DB0FA0274C0C5B4F /* call.cc */, + 219FBD0B136655138196B9B2243D8004 /* call.h */, + 2BE8A5DC9820DB08DB5B5476233BDB9B /* call_combiner.cc */, + 5C8C411AA4ADDA75CAF1EC4EA5E3A8DA /* call_combiner.h */, + 710D580486AA8A6E2A310BE65D8898E0 /* call_creds_util.cc */, + 2CE06A7CF4CB950DA3D7D4944777FB9D /* call_creds_util.h */, + 098F61988714CCF7A406E19E34651607 /* call_details.cc */, + EB9D64EB9452EDD78FF5B5A57BD24496 /* call_factory.cc */, + 3B694B555CDFFA0B09218276FFBAA7A5 /* call_factory.h */, + F6C536F84A687F12D25C7D33B148CCDB /* call_filters.cc */, + 710972CF4955B7E1676B60D502F63B72 /* call_filters.h */, + 12D4C6E75C280E0358CFA3A59609FE06 /* call_final_info.cc */, + 26B0E02FDA828E28B699C541108F890B /* call_final_info.h */, + 73FEA5A029FD97EF6A5AE05ADF3B693B /* call_finalization.h */, + D3A62298645E47D4C798F48490A36495 /* call_log_batch.cc */, + 52E5F7068C118824F0263ED7C1667D43 /* call_size_estimator.cc */, + BD0DF267EBD5FC7FB9621F679FD79A1B /* call_size_estimator.h */, + 31D71E4E66D4DF4E9388451C6DACA9B9 /* call_spine.cc */, + 62B0FAB3140BD22450BCDF604C5C1E40 /* call_spine.h */, + A383B79EADD24AD543FC9C2C159D10F9 /* call_test_only.h */, + B5A11580478A1440AA6152F056763F20 /* call_trace.cc */, + 04D939AD0410E9099C2721A7E91012C3 /* call_trace.h */, + 1BED69B94D1E935BAD0BAD6D683FDCD3 /* call_tracer.cc */, + 91733C193EC27ED9365DB1D1B48A62A6 /* call_tracer.h */, + AB05120CF8F264A020E4126ABC10EE5A /* can_track_errors.h */, + 358F1C4AC16BB36538EB745268BA38C5 /* cancel_callback.h */, + 2776DAB9971409C50379D26483AD7804 /* cds.cc */, + 3CFC874BF57537F54CBB4DEAC1BCBC4F /* cel.upb.h */, + C45570006BD7A0807F70C19B48D1202C /* cel.upb.h */, + 00AE0F1DC5B63E68CD5E14986FFC4472 /* cel.upb_minitable.c */, + 485837A641A25188F5AC97BC38BAE09D /* cel.upb_minitable.c */, + 2AFF296C082A4CF56DD53C651A83C625 /* cel.upb_minitable.h */, + 0E5548B5101F4F7803619F4600483219 /* cel.upb_minitable.h */, + A704CCC0E1AD7701D743E4DB6E49930B /* cel.upbdefs.c */, + 2A2ABE3DA04C2A17D00060FC25E547C1 /* cel.upbdefs.c */, + 97B8CBFE239901E1B90BAD0EFBB832E1 /* cel.upbdefs.h */, + 02B95F6F6F19ACC00DBA2A8CC706B573 /* cel.upbdefs.h */, + 3F7AEDE035ABDA429AA2ECE7B25E8FAC /* cert.upb.h */, + FB8C03A23F1CEBF7E43D8F0905C5CA09 /* cert.upb_minitable.c */, + DE45BAD9EDC0271CDB3ECAAD43998FC8 /* cert.upb_minitable.h */, + 2F00023777E9EC2DAA7520C165B3FBB5 /* cert.upbdefs.c */, + ECFD5E50527B395D33202A9D991AF841 /* cert.upbdefs.h */, + 8DFC5F1EF85B1566AE050D0BE26B7A1F /* certificate_provider_factory.h */, + 9F7CDDB596B05FB09FA70EE09491E692 /* certificate_provider_registry.cc */, + 029F37116C52C4E894959CDD22F340A1 /* certificate_provider_registry.h */, + 06CE5903887DCF4D065D3BD0BF8ED80B /* certificate_provider_store.cc */, + F9525707E11CE7B27B60FF2CCCFAB8A6 /* certificate_provider_store.h */, + 361754E81BCA51F7C0EC7CBD7ABC0C47 /* certs.upb.h */, + 4F63BF61B52D2BA66E8FE087AD036C2D /* certs.upb_minitable.c */, + 672C8315EB0909787E62E75998E96621 /* certs.upb_minitable.h */, + 72AC7D82028C0BF8382FCF04B0F7DA26 /* certs.upbdefs.c */, + 44A2A376DC339E1E89949C89FE48CCE3 /* certs.upbdefs.h */, + DD4743C104AD684CFF4402A64DB0830F /* cf_engine.cc */, + 7DA9B361FAB3F5B61BF3140DF7C370B6 /* cf_engine.h */, + FFFFF5B4E55754B355B3C206F5810276 /* cfstream_endpoint.cc */, + A4B5C67AB7176B35177734EBA54DA700 /* cfstream_endpoint.h */, + 2F74B7BB8D6131A87CB8C8F768EC9271 /* cfstream_handle.cc */, + 4570D7BEF446629739CDAF9DBFE4C8E4 /* cfstream_handle.h */, + 121156D254898F671AEAC684C1B1C129 /* cftype_unique_ref.h */, + F1F8FB44F285BBA702E664F8125BB170 /* channel.cc */, + F08C9D8EFC3DDE79A79BBC31CA3A8C7A /* channel.h */, + F8D4A60F691F4FB4915EF4AB7A404AB8 /* channel_args.cc */, + DA43ACA20FB56311C79C7D6992F28AAF /* channel_args.h */, + F0586B0AC9C30D426CD3C688C3FEA14F /* channel_args_endpoint_config.cc */, + 1D7BCF0920BA72807BACCFBC594DFE99 /* channel_args_endpoint_config.h */, + A433BEF4FBC6D1CF33751A3E7D9591C3 /* channel_args_preconditioning.cc */, + 79F47A8A559BB5BD3B3F822BB238E789 /* channel_args_preconditioning.h */, + B1DB1ABFD4533C640AC2AF63A3ED7906 /* channel_connectivity.cc */, + 2EC2E2D2715DF67684E2D8E303FA363F /* channel_creds_registry.h */, + 2C70496B35248C50F4B19995E345F84B /* channel_creds_registry_init.cc */, + C43E0C8AF18DE62EC77E726E4BA9EBFB /* channel_fwd.h */, + 80DA7E2096D1B66841362C3372A9249B /* channel_idle_filter.cc */, + 35FF661D8BBFC27ED88E1CF4F314C2E1 /* channel_idle_filter.h */, + 4817F1C2BDAEC2BA268BE15E7ECDD811 /* channel_init.cc */, + AAC2AE0C125568A567128996648CB0B0 /* channel_init.h */, + EF2BFB844345F7E1E8654E74FD5F7649 /* channel_ping.cc */, + 5637B380FB18D5C693E2BC56F3A74FA8 /* channel_stack.cc */, + B69AE19CA3CB004C60E8D63547E7F3EB /* channel_stack.h */, + 4F4C14D6A7D9885AC8341A69B2FC7F91 /* channel_stack_builder.cc */, + 291F07D2091AF9A26BDF8960F87A4B12 /* channel_stack_builder.h */, + F0886C28466E0E8D71E2A71A91235170 /* channel_stack_builder_impl.cc */, + AE640469579EBD27F08779D242AD7D48 /* channel_stack_builder_impl.h */, + A2D0C066DC9A9C7AD7EA9FD3419EEC8D /* channel_stack_trace.cc */, + D5B00CF29F6168B1200134923B3D272A /* channel_stack_trace.h */, + 5B0A3712F7495C4BF6CA8193562A1FC4 /* channel_stack_type.cc */, + 69622F76F8BABDFFA15319E25E2E1354 /* channel_stack_type.h */, + D001C524EAE1BE5D951A293660BAE213 /* channel_trace.cc */, + 2131F06BECBDDAA96B8A5A3D6671BD33 /* channel_trace.h */, + C4390F9661FD6C5C61A10718F3D017FE /* channelz.cc */, + 64F0AA53F518BC52C6A0B4096E5E22EB /* channelz.h */, + 854EC16F449FC756E7A801B07EC4A1FE /* channelz_registry.cc */, + 8E41B8A7E0D7D40A23C5C5B305F40FFC /* channelz_registry.h */, + 9414A536D1EEC1AB4E4D5C7B590B915D /* check_gcp_environment.cc */, + 29034CAEDF2C2CE919132BD8E5EE10BC /* check_gcp_environment.h */, + 7B0A738836E11FA478450125FD937E4B /* check_gcp_environment_linux.cc */, + BE46EA4732CC39F34AA8FEE7590E1749 /* check_gcp_environment_no_op.cc */, + 38D97748C114EE1EAD580528041B0700 /* check_gcp_environment_windows.cc */, + 931F859713CFEC938AC3CBFB463DCCA0 /* checked.upb.h */, + 0789C305D51FD5C85B9C65FB22FD91F2 /* checked.upb_minitable.c */, + 7FF78CCAC6917CAFB5CC25EF959CC053 /* checked.upb_minitable.h */, + A96D17E103179F79402D1DE92BB649F7 /* checked.upbdefs.c */, + 1082CC9AD68CE7A582AE92688FFD4BBB /* checked.upbdefs.h */, + 87F2C781A7B67205E7DC7A7CFDA862FD /* child_policy_handler.cc */, + 6B75DA7E50545F64C9639A64EEE2391C /* child_policy_handler.h */, + 685FB3EEA42ECF262A271F39D50EF894 /* chttp2_connector.cc */, + 15090066D859CFA88D428ECF9C3C656D /* chttp2_connector.h */, + D9DE8E2B058AE415F28F41C6C69E100D /* chttp2_server.cc */, + 8D44AA174CA288C9830369D7FD508404 /* chttp2_server.h */, + 1FC033FE6AD1ACC7E1D07F9C74515CD6 /* chttp2_transport.cc */, + 2B89EA296D0AE3F39289DB07C264B703 /* chttp2_transport.h */, + E6B7E9156A205A40898472C2DA91BE8D /* chunked_vector.h */, + 5F6E6E170B5C8756B291CE2BEFCDCB3B /* cidr.upb.h */, + A1EF75B569EF74151CDC67BCCB06744E /* cidr.upb_minitable.c */, + 4913E406D40E24AA85F83DF81C8BF0E6 /* cidr.upb_minitable.h */, + 03E2119BCAA129178399A8FB98338DE4 /* cidr.upbdefs.c */, + 3D8E09FE794D42D2C542C46EBEB04337 /* cidr.upbdefs.h */, + 46DDC59131AF4570E3645F57AE45F701 /* circuit_breaker.upb.h */, + E3CA01F5235B8E01963B8558BFDDC660 /* circuit_breaker.upb_minitable.c */, + 492AE202311C951686C79B6DA98768E3 /* circuit_breaker.upb_minitable.h */, + 0C00735DA9F93773B0AD015A5AEED079 /* circuit_breaker.upbdefs.c */, + 194E78EA270B0C18BAE95B7769388747 /* circuit_breaker.upbdefs.h */, + E35E706CF21A0C00F15A00A5C7C66849 /* client_auth_filter.cc */, + 3374CDDCB22FFF8D7511049C55C72C40 /* client_authority_filter.cc */, + AE5E4C76F0113C682819C79411F73D76 /* client_authority_filter.h */, + 26EAD1953CAD91C9F04826789FEFCD45 /* client_channel_channelz.cc */, + 433DE30F2B52D4869A9BB7BC82F7F896 /* client_channel_channelz.h */, + ABE2413DB35E9691F048CB90BE132609 /* client_channel_factory.cc */, + 2198097276D40B5BF254F9EBE40E2426 /* client_channel_factory.h */, + 3A8CDC84BB5BF4C1195646477C9980CB /* client_channel_filter.cc */, + 1199CF68F32B82A208261EA63BB036E0 /* client_channel_filter.h */, + CF7228323EBD4A00B890D6F20F3066E4 /* client_channel_internal.h */, + FEEA9F2FBC2E593801D309A646B04D8A /* client_channel_plugin.cc */, + F88007D9A28DAB4FE43B7967CAE08BE3 /* client_channel_service_config.cc */, + 60CCC2C0AA5FB1BA4538769CF2F5E425 /* client_channel_service_config.h */, + 0BD3406AC63C6D10A900373C56543E0D /* client_load_reporting_filter.cc */, + 2C8E53D6C9CB192C3AC4392BF7630B29 /* client_load_reporting_filter.h */, + B3696CB2FCD8C52F7A2F485877153B54 /* client_side_weighted_round_robin.upb.h */, + A4F3C4DBA5AE9D01F851E5B6B1C16E6F /* client_side_weighted_round_robin.upb_minitable.c */, + 15F3C3437BAF0C36C3543183A419F477 /* client_side_weighted_round_robin.upb_minitable.h */, + 259619E65278F792518A1BF9928AB7F9 /* closure.cc */, + E5BA710FB81918C9F2F6EFD9E25D9275 /* closure.cc */, + E4C6CDC9E5A154AB7854CA37B5F103CA /* closure.h */, + D6E767A0ADB9E541373191C5939D69AB /* closure.h */, + 2F0CA737BA9E8CFCFDB82C38287ED4D6 /* cluster.upb.h */, + 013AEB81A3C4EBCF54456B01DB19C045 /* cluster.upb.h */, + 211B8A2B9BA047B29DF59DD429C87B06 /* cluster.upb_minitable.c */, + 2DBC8CE3D14BFA92773EBD98FF62E684 /* cluster.upb_minitable.c */, + 3C6EB9F6FCA0069BBA39F2F5D3180666 /* cluster.upb_minitable.h */, + 0B4BA63EED2066F4ADEB613BAD04F451 /* cluster.upb_minitable.h */, + AF7AA74061514853C401E2E33D88D5E8 /* cluster.upbdefs.c */, + 16CEEE3175500D0303DB12DD81866EB9 /* cluster.upbdefs.c */, + BA1653975165B59F4F656B9C046A2694 /* cluster.upbdefs.h */, + 4A1345A4AB4E8E1AF8F9A70C2AF05745 /* cluster.upbdefs.h */, + 663F4FFE7C8BD9480AF2AE3AC32E899D /* clusters.upb.h */, + F81AC8D1A039840A26132A716AA5038A /* clusters.upb_minitable.c */, + 21B99FD1122A6F331E38DD9D015F9DAD /* clusters.upb_minitable.h */, + 4F3F3A5762BF14E5A65EFA548C9ECEC1 /* clusters.upbdefs.c */, + 444BC53C6275DC70121DDB72B4D4378E /* clusters.upbdefs.h */, + 68383F0F6C3E78A9CBEEE69614FCEC6F /* collection_entry.upb.h */, + 39CE56B0E4F1BFE1E4DCEF2DEF311285 /* collection_entry.upb_minitable.c */, + 3FE2D54F232656A85140CBD7A9A4F3D8 /* collection_entry.upb_minitable.h */, + 8FD4B37C0B65C10536EDFD4E03434300 /* collection_entry.upbdefs.c */, + 6C2E7D22A36C083F38D01745A2F8B0FA /* collection_entry.upbdefs.h */, + E6A120078930639C1ADCCA33C4EC8A64 /* combiner.cc */, + 7F7A18B715C7E16E5ED0FE9B021D50FA /* combiner.h */, + 67B74C9C91EFF94A6F45BBFC8FBF3169 /* common.c */, + 6BCA06BB4286E9225870E3163A2A5643 /* common.h */, + E009B0B46358EBFA777795FB03F0AEF5 /* common.h */, + 9B32D1FE61B82BFA1A44475F711A7239 /* common.upb.h */, + AE71F8BF69A179A366C9AC9CF0A686C8 /* common.upb.h */, + BE4BBA2CAE887150C78A7718B0CE5CD4 /* common.upb.h */, + EF55F0F8C923247204BC486A7FC61F29 /* common.upb_minitable.c */, + E9E3FC92B222962C36616A791CD67D38 /* common.upb_minitable.c */, + C9CFD920B8C0BBD81BA33FEFE806759B /* common.upb_minitable.c */, + 7617EA171BB5C4FEBC67B4C07691BFD5 /* common.upb_minitable.h */, + 32B554197B4676332C81742FB6707F9F /* common.upb_minitable.h */, + 0B357348F71BB96D036787B0CA9A7C6E /* common.upb_minitable.h */, + D8057175AC27FD00AB17B930ABD03D77 /* common.upbdefs.c */, + 2367C0D3BD03677AF1EC946A274C315C /* common.upbdefs.c */, + 6B5A0A2E5FB0C168E84F493AE4454DA8 /* common.upbdefs.h */, + 74634B5E8C139A87CF3FC3B690403324 /* common.upbdefs.h */, + 7E6EB189FCFC6B1A54DB8D75EC94653C /* common_closures.h */, + EFE26A46DD85DC5CD5312267CA853715 /* compile.cc */, + 8571A36349348E81D6A9021F3F8B14CB /* completion_queue.cc */, + 21E265D554D9D8B10AC30E6920780272 /* completion_queue.h */, + E71D3C0F6B143D70E77407B07D7BD167 /* completion_queue_factory.cc */, + A097A083EFE6D8D57B02A0EB2F52F800 /* completion_queue_factory.h */, + CD4B084EBF2921E165D1C9810C5AFE0D /* composite_credentials.cc */, + B8FD5650B4A22607B038D53CC704F334 /* composite_credentials.h */, + A7203EA7D5E06795F067BC4D294A03C6 /* compress.c */, + 601B310BBE704A4D817534011F5DAD8E /* compression.cc */, + 3361C1895AC215309195183D4E1D3DFB /* compression_filter.cc */, + EBB07A9355639E56C5283F2B1599F06E /* compression_filter.h */, + 57978688775ACC7EF64DA13B100A43BC /* compression_internal.cc */, + FC09E04AD7A81C2ABFB05D5A32D6169A /* compression_internal.h */, + 25EE0232291A3B7C8EED05CD35B3E2DD /* config.cc */, + 97667718C1A7D320C8FF591C8BA67CA7 /* config.h */, + 452117578F797051AC83C4C96B442A39 /* config_dump.upb.h */, + 9B8FE4809E674D0F1E9075D640323B97 /* config_dump.upb_minitable.c */, + 54F506A8A197B588F9FDA209A3C7F8FE /* config_dump.upb_minitable.h */, + 37359C76E29736C274F9D7D62D92F619 /* config_dump.upbdefs.c */, + 97D9E1F6D2924CC0F362A1230E00B419 /* config_dump.upbdefs.h */, + 7C7B19FA91D62BD566FF9A17A9F33FE5 /* config_dump_shared.upb.h */, + CC6F57714D19DC76B9269B6DBDB1AAAF /* config_dump_shared.upb_minitable.c */, + BA8F3AB30A2AC16C546EA54F7326DB2C /* config_dump_shared.upb_minitable.h */, + 4CC50802D31B2B59376AC168311293E4 /* config_dump_shared.upbdefs.c */, + 7FA537A4942E5D67DACB8B9319E20FD5 /* config_dump_shared.upbdefs.h */, + 1DB88558ECB82826BBBFFBAC4259B232 /* config_selector.cc */, + 130D97DA099327DAC2E9C2C42FDBAAC5 /* config_selector.h */, + 0AC2856287BA14533C0D09246BE5E13C /* config_source.upb.h */, + 1762A355D2B5B014EBCEA3C7166B700D /* config_source.upb_minitable.c */, + 87433464BBD0F30267842FAA0D64CA11 /* config_source.upb_minitable.h */, + 7A1941628AA99E7F7898B9CF6CEEA048 /* config_source.upbdefs.c */, + B259355D240494FF7C1A54F98ACF95D7 /* config_source.upbdefs.h */, + 06937BDE8B1B06D2BB6716C2EFDBB615 /* config_vars.cc */, + D79B13909177220B9C4A82D58F79A296 /* config_vars.h */, + BAB82821F6E8A3925CBEC00666DEEA1D /* config_vars_non_generated.cc */, + 7DF5C74A14FB026B1B1A3B46918664AC /* connected_channel.cc */, + 1384468AB0D4FED3CA5DDC6E65BB288F /* connected_channel.h */, + 877B6410C6BDBF35A7F6B154D96E73A3 /* connectivity_state.cc */, + 1A82FB96F0B12346E5A7609A66363180 /* connectivity_state.h */, + 0DA5F7FD8E5596AFAF5318EF88E9AC72 /* connector.h */, + 96CCEE882C597EC9972F28DA266535A5 /* constants.h */, + 975E1C34AACA8170390E065DADF3464E /* construct_destruct.h */, + BA390A9E962D88D97CEE18282C73517F /* context.h */, + C44797F85CBE3E48C9669E4EBC5549D4 /* context.h */, + 98C64942253B2B85FE1F9950260025CB /* context_list_entry.h */, + D188360BAA228FFAEFE47B939FC88CF4 /* context_params.upb.h */, + D39E473DBB2FF91ECDD3CD99666609AF /* context_params.upb_minitable.c */, + D53335DE83F827DB932D33F6CE2FC8D7 /* context_params.upb_minitable.h */, + 55343926148DBEB8AEB562C0BEFDD33E /* context_params.upbdefs.c */, + 8E1A864210E3E09F3F42AF8CDB29EC1E /* context_params.upbdefs.h */, + DB347760FA13CE89954827AD57040662 /* cookie.upb.h */, + BED89936E3E1601D58E613534CBF9C81 /* cookie.upb.h */, + DB7770583E26B91EAA332A92AE04CF51 /* cookie.upb_minitable.c */, + AABBDD87E1B7718E7D74B8E75ECD43EE /* cookie.upb_minitable.c */, + 84DD9FA76A22EEF49D4400B725305259 /* cookie.upb_minitable.h */, + 0F7EC3D67D7BC7E2DFA3DB674E04CE61 /* cookie.upb_minitable.h */, + DCC5F5FB05C0250B22ABE46B909A5A14 /* cookie.upbdefs.c */, + 0F025B14AA290ADF9F297FC8E9A87342 /* cookie.upbdefs.c */, + A48CC4717B333EBE6C975A3DFA020D24 /* cookie.upbdefs.h */, + 0604B132AFC4A12F5562F7D4AD1973EB /* cookie.upbdefs.h */, + DB1BA536C27E5FA72D8CA0AB1CE0C6E6 /* core_configuration.cc */, + 1B24E7D93B6BFE288247A94ADBDD44D9 /* core_configuration.h */, + E0544D397B08F0AF899E03DB71395166 /* cpp_impl_of.h */, + 595B255BDB35907B155E4B1F1B6CABAD /* cpu.cc */, + 8771FD427B5C58F341CAA1A59687F38D /* cpu.cc */, + 16D728F4D6BAE301CFDDDAD773FCB26E /* cpu.cc */, + BA084D5E08EFA07982631F33ACC987B0 /* cpu.cc */, + 8B9B35F6804888C013CD9722F3B3C25C /* crash.cc */, + C0D1EDFBE42B2ED9F583E96FA5D864FE /* crash.h */, + 40AFE03FB91CC3DADDCF9CC4F6887644 /* crc32.c */, + BAB0EB6CDC1816EDCCC05822F8A98945 /* crc32.h */, + 708C583327DA0938B31DD4081DCEAE82 /* credentials.cc */, + F939348F4BCD46418F7E593BE356CA56 /* credentials.h */, + 690D7DEE3DB478F4A9C768F9B634CE60 /* credentials_generic.cc */, + 6A79F5FE38C8F9BC49EC5AEE5F448CD4 /* csds.upb.h */, + A1E0340D35C58FA15F9AE74A4E1C39F6 /* csds.upb_minitable.c */, + EB569F8E1AB27CB046823F8A6A5D2DDC /* csds.upb_minitable.h */, + 918844B43B55EA460B8AA62478F8E1AB /* csds.upbdefs.c */, + 10D327DB8433E7FB4822F2658AC38A4D /* csds.upbdefs.h */, + 4B9484CB5ADC48D27FEF042EC18049A0 /* custom_metadata.h */, + 060F1E0932ADC5763EF50B3376B161C9 /* custom_tag.upb.h */, + 2DE7F8F562E088B20D3BA91D0EF4E7EB /* custom_tag.upb_minitable.c */, + 10730966B090146D7F323EE0072A5619 /* custom_tag.upb_minitable.h */, + 70061061A58ACABD133B950201E048A8 /* custom_tag.upbdefs.c */, + 5928FFF79984ECB96858F2A90E2E4381 /* custom_tag.upbdefs.h */, + EE0E8085CDBD98BCEE03236276A7B75B /* datadog.upb.h */, + 5FE57F6D36A483EAC9DD8B30B4DA8C60 /* datadog.upb_minitable.c */, + EF2D5E9089AA02EC35C14E3C6B6B1AD4 /* datadog.upb_minitable.h */, + 997D61302D66D4A83317DBADF1DFD684 /* datadog.upbdefs.c */, + 85F024CA7C06E17AC0ACFA74FA903B6F /* datadog.upbdefs.h */, + 0932867096C96EA736F1FD493CCDBE20 /* deadline_filter.cc */, + 2CAE82C7FDCDD69813807B422B87DFC7 /* deadline_filter.h */, + 446C7046C55520ED8CE80B159A908FD1 /* debug_location.h */, + F6D7D1304DFDF842007495662DBD4301 /* decode.c */, + CB1B8FCB82E9900F7996CCFC43F8C708 /* decode.c */, + FFA49151746B37BB6921F20100C50382 /* decode.c */, + 5C55C3BE3C5252E886759596C422F5A0 /* decode.h */, + 141D3DA28A772A04C0B384CDE86011A7 /* decode.h */, + AF75B9495B657565F351B102C6424CE3 /* decode.h */, + 1F3A4510DC32A0DF3CD82A111999EF8C /* decode.h */, + 29FC1EE4F0C528DFD60CC6187F3072B4 /* decode_fast.c */, + D7422EF2B80F3B97384CA8671F66B0FA /* decode_fast.h */, + BE97B084583DDDADD304E73D7BAF2BDF /* decode_huff.cc */, + CE0590DE29CCB1AC021D853E75FD228E /* decode_huff.h */, + D8AA07301BB0B092B125B2788177C3E3 /* decoder.h */, + 6B00AA305068222D6811F33E949A9EAE /* def.h */, + EA2BFE6B25DA6D9FBEDCC5CEA5291E94 /* def.hpp */, + 66769FB5BE8D16E28148DE8AC9ED7FF1 /* def.inc */, + 31D083D074DE7AE37E9170FD704875BF /* def_builder.c */, + 429D43C99E146AE79A5FBBA54676BC57 /* def_builder.h */, + 4F8F163C8FEA26E7D4A21BFA2C061874 /* def_pool.c */, + 83F537E912183026F3C2D08B8CC9204F /* def_pool.h */, + 56F5748467AF9ED6E8EDCD362E7C0743 /* def_pool.h */, + 949CB3228805EB27247F75FAA4EBB469 /* def_type.c */, + F1973C8685CF61D20E6AC3A37FC14447 /* def_type.h */, + 4F319EC7880A470F3792BDF2326734CC /* default_event_engine.cc */, + 365E314E3B65C84D3C0A2081E3D3E94A /* default_event_engine.h */, + 9814270A1CA8890ABDDC4E6A264D7F44 /* default_event_engine_factory.cc */, + 1D0A1F7A146A7CF6492B9ED25FE567DE /* default_event_engine_factory.h */, + D2E6F079147F8548DCD81421C698B994 /* deflate.c */, + C2475BA7C195E5EC2CB6EC170390794C /* deflate.h */, + E778B7D46D75B0BEF8832E8FADEAE7B4 /* delegating_helper.h */, + EE7BB77AA1883548ABD2A4EFB5A3D707 /* deprecation.upb.h */, + F8BD5E8B0633EDBC5934DCB0106B7108 /* deprecation.upb_minitable.c */, + DE3494C3911C2FAFEB1F571D30FF8F46 /* deprecation.upb_minitable.h */, + C6F8197C509EAD17B79FBA530CA0B043 /* deprecation.upbdefs.c */, + 6B35E78E07E97DA2BE27A75D1586F40C /* deprecation.upbdefs.h */, + E7FBA7426CF932A54ABE29D890AB19F8 /* desc_state.c */, + CB1C8043CBEA5DBC3E41CF122F93309F /* desc_state.h */, + 0F3C2B4C0002A7745C68ABAE296BD410 /* descriptor.upb.h */, + 176DFFF366D298A99313BB8787166AF9 /* descriptor.upb_minitable.c */, + 4F1F08A65453217952415D6521325BA2 /* descriptor.upb_minitable.h */, + B0D4AF986952BE6650CE7A3AE713E4BD /* descriptor.upbdefs.c */, + 84B7900AB73CD17AED4709FB7A88C10C /* descriptor.upbdefs.h */, + 88481D67345334B11AC692394A2A3E56 /* descriptor_constants.h */, + C677502B629179DA6233E05762510421 /* dfa.cc */, + B03AD2AD291D8DEC20611791A57ABE7E /* directory_reader.cc */, + 2BA6239857B0A12A4270BEE0BA28AF35 /* directory_reader.cc */, + 14236A57326ACF9E8BB7E2B6F72E689D /* directory_reader.h */, + 7F7CE5FEE699ECA7776DE7CDEAC73F19 /* discovery.upb.h */, + 89BCFAC952245F522158CE80CEBEA813 /* discovery.upb_minitable.c */, + 70255F4985C0731F537540373352733B /* discovery.upb_minitable.h */, + 8DE2FF93DD3DAB056B6875108A452475 /* discovery.upbdefs.c */, + 6154FA3F2333D41195377520E7B1CDCC /* discovery.upbdefs.h */, + 8F107D625B3093C1B4A4E15BBE57B39F /* dns_resolver.cc */, + 2D03B104CAECFE3CC6C03672748B965E /* dns_resolver.h */, + 9954B6650074C2141F26763C4080CAF2 /* dns_resolver_ares.cc */, + FE39787B54BF98136F1313DC8FA0EE42 /* dns_resolver_ares.h */, + 9F09E3068B9227A8AA290D2508081613 /* dns_resolver_plugin.cc */, + 93272251B488DFC4CF3B3EDACAC93C87 /* dns_resolver_plugin.h */, + 40D3B36E15DB4C9E32512B9F62506703 /* dns_service_resolver.cc */, + 2011920F5DF13A7BCA0EE1BB972113DE /* dns_service_resolver.h */, + FA869F11E65CF95C057BAB2F374ABCDA /* domain.upb.h */, + FB69E32FA3AC5C30313C9ADF9377C5BF /* domain.upb_minitable.c */, + 884BE29E933DFC20652AA78F23A381C7 /* domain.upb_minitable.h */, + 37E39C37FE540F0BC80DB0ED1A234D30 /* domain.upbdefs.c */, + DE9AD013A5427DBBE4F942FC7784023D /* domain.upbdefs.h */, + C892A65BB7E8304FB2E659B82BDEDBB0 /* down_cast.h */, + 6F2947BDC3796FDC4038EC0C848E16A2 /* dual_ref_counted.h */, + 7BD1D5B45AC6E6EE62D7BABB14D0653B /* dualstack_socket_posix.cc */, + 8920111A74CFEB22C21BD0EE48F7F670 /* duration.upb.h */, + 13C70CA75E842792F4BFD8145EFCF3FE /* duration.upb_minitable.c */, + 50E8BC343D6E247A2B945CDEF31F418C /* duration.upb_minitable.h */, + 4787484CFD0DD668E9B2FB61AEEC0D35 /* duration.upbdefs.c */, + B98E6B118A0629577FDACF1459054ECD /* duration.upbdefs.h */, + 478A82331DD40A74E8459B036C24E695 /* dynamic_annotations.h */, + 345E82508038E32B12134D8F498C6399 /* dynamic_filters.cc */, + 88FAC4B868EEB38E245BEA18F7000FBC /* dynamic_filters.h */, + 012E135EAA9A9065E801DC3DFBDDB5FE /* dynamic_ot.upb.h */, + 896E6272EA1479311D9AAFF07C6C6332 /* dynamic_ot.upb_minitable.c */, + 5C18E7C0E11862D0DE6F443724525B37 /* dynamic_ot.upb_minitable.h */, + 4F836057B7AF4BFD807A780C7A50B4C3 /* dynamic_ot.upbdefs.c */, + AA8605F65B76409911609FF32EE7731B /* dynamic_ot.upbdefs.h */, + A9A4F4ED97C9F67C241DC20F5A0C6DDB /* empty.upb.h */, + A1330A178B9CDF709895EAD64250C083 /* empty.upb_minitable.c */, + 748EFE09940277BD6259EE328663A098 /* empty.upb_minitable.h */, + 558C340C0CCBF82A1B11E949EB579FBC /* empty.upbdefs.c */, + C18580E78FE0348FC138C447B1CE21DD /* empty.upbdefs.h */, + 44EB743ABBA8EFBEF0B6D11E1C176CA4 /* encode.c */, + A6780AF02514E89AAF2279370BBFABE2 /* encode.c */, + F5CFB75384BB266D09F6C53992D841BC /* encode.c */, + 56DA0C22AB965309C8B9C7F3D1387EEB /* encode.c */, + 2140B802B8BAF0FC94230A85BFF1F3A3 /* encode.h */, + 4856881141E4AC66B7320B785D9126FC /* encode.h */, + 87E1A17D4BB1ED1CC16F3A6F32CFF564 /* encode.h */, + 8F5C57C4AD7B0FFEBBC087FF286D2655 /* encode.h */, + 524A554BC29FBBD5138B67A3BC80F473 /* encode.hpp */, + B3957F2DB20B71C54B0D68B7CF1793D8 /* endpoint.cc */, + F700CA3C517A748B1BBE841BD522EC55 /* endpoint.cc */, + 8A762790AA3792FFEABB7A43903175A3 /* endpoint.h */, + E1A4CE4272F029174EC35A40E34AFD1B /* endpoint.h */, + F1D6A3733CE167D7FEC12B05752F98F9 /* endpoint.upb.h */, + 82A0CA80EB96DFB7FFD7B44CE86D9D0E /* endpoint.upb_minitable.c */, + 9B5C37CA2358483C1F8D39750A9FFFD7 /* endpoint.upb_minitable.h */, + 39D68EE0BE06F0DA87C24ABC2CAC0395 /* endpoint.upbdefs.c */, + 6ACD23DEFFBF3D8936ED30AA8D7C4D3A /* endpoint.upbdefs.h */, + 613046959DCA58309EB0473BB322467C /* endpoint_addresses.cc */, + 538B140C5121F157D97EC84E6A98A4DD /* endpoint_addresses.h */, + 50DCA6FC262C39588D2BE53A5258C7D1 /* endpoint_cfstream.cc */, + 60EFCF661D064BB8445C123F1015D367 /* endpoint_cfstream.h */, + 55F38CA58DE8AB962922BE08F09473FD /* endpoint_components.upb.h */, + BADC40E440FEE520F0910768BA7EAD83 /* endpoint_components.upb_minitable.c */, + 67A42ACD0CAE5913A9EA4DE89CFB910E /* endpoint_components.upb_minitable.h */, + 97797B4F2624B11B32F40C0B2944D0DD /* endpoint_components.upbdefs.c */, + 87622C24690C2E60DF96DD72E13A61EE /* endpoint_components.upbdefs.h */, + BC4F32230229D432B07E9AF11151355B /* endpoint_list.cc */, + 123652FA8EA5508FD5114ED3FE9C1291 /* endpoint_list.h */, + 5A57E04E920D068D5329324B5814C7C7 /* endpoint_pair.h */, + E083AAF3DB125DB98B09D61A2B551DCC /* endpoint_pair_posix.cc */, + D49191DA1B333EC122067DE970F719E5 /* endpoint_pair_windows.cc */, + 71DF2C7237515AC339DF2480632E75EC /* enum.h */, + BD9C40355EB561ACD590B693F7576990 /* enum.h */, + 0EA07D9F1927D34FFE020272294E640F /* enum_def.c */, + 6D15D75EF21230E057732909E28C009B /* enum_def.h */, + ED6561745C35AF844EC71D3C9F3B1734 /* enum_def.h */, + A9177839FDC01C77980CB6586BF8A5C0 /* enum_reserved_range.c */, + 821CF53D948438526D4FF6E1FE072297 /* enum_reserved_range.h */, + A6860DEC7B9EABD696E9B3577FF6ED30 /* enum_reserved_range.h */, + BB2F0AF93C0B22F9E7AEC54F23428972 /* enum_value_def.c */, + 1D6376E62F11DBBD7D6A3C58A26999BE /* enum_value_def.h */, + 36C1B56A2DD6A3008AE1378B48F74045 /* enum_value_def.h */, + 47A5D68EB54B2EDF8AC45CC1B6D1595B /* env.cc */, + 798E52A2FC57D196B2812FED56FC0A39 /* env.cc */, + 11E6D1B94544B8B08BFC974A0567788E /* env.cc */, + 28D839A017151BC0D2419367CC75621A /* env.h */, + CA7B7FEC580936DF2255B940D6357721 /* eps_copy_input_stream.c */, + F9531921A80E7EBD231EC2FCCA98B938 /* eps_copy_input_stream.h */, + 8525E1F755B88C4A40A44A26E9ADC6FB /* error.cc */, + 506738232EDB1D4F7E9F1709853F4A9C /* error.h */, + 29579D714E026D8997FFC4D40EEBA57C /* error_cfstream.cc */, + 904D8CF67DD1798DFA92C4E18F17C50A /* error_cfstream.h */, + 074BB85F1C026260893779BB1306B2DE /* error_utils.cc */, + 02FE8A83ADB85709686C9870C6F677EB /* error_utils.h */, + 5599BC18EAA61CEFEFD8EC4C52B87CE9 /* ev_apple.cc */, + 182A946FD610BD620CC361EDA602804F /* ev_apple.h */, + 1AF99D8BBA21C896B36862DF8B450479 /* ev_epoll1_linux.cc */, + 7B396F04AB66B4699692DF9972F8633F /* ev_epoll1_linux.cc */, + 979CD297063A53F8553B3B8A3C324201 /* ev_epoll1_linux.h */, + 580D6802C74BCA849523E8BD1F870A5C /* ev_epoll1_linux.h */, + AD931362E2A7841BD45D97C9C40EEFE1 /* ev_poll_posix.cc */, + B22D517D453794E612F37523DF0893DF /* ev_poll_posix.cc */, + 1DC54E2199C6CD6450C8866E126A91C7 /* ev_poll_posix.h */, + 4ABCA2FE62A1ED99A46BDFAAC599A16B /* ev_poll_posix.h */, + C037663A7B0D797D63F849352CFBD51E /* ev_posix.cc */, + 500373D32C105A54483ACA56A30C93BA /* ev_posix.h */, + A2256F69DE9EFDB86E35D7F8CBD625B1 /* ev_windows.cc */, + D7A9D7B59E2713C8525278046FDEF45F /* evaluate_args.cc */, + DEA6288855666920C1EE116899E876DE /* evaluate_args.h */, + 68648194DFDCFCD86DE00D69D679DF7F /* event_engine.cc */, + 3C8C90159C7930C87DD175A97B82A3DB /* event_engine_client_channel_resolver.cc */, + FE796BCEFD744AB66B3CB7979111BC53 /* event_engine_client_channel_resolver.h */, + E1CCF07BB1F6F1EFCF4F939CD3AA013C /* event_log.cc */, + F65543549E0B682661B30D5BDA5B2575 /* event_log.h */, + 5CB5FD01B9B33505A22D5A182D71C3BF /* event_poller.h */, + 3588DE0A6B3AD6D1E962684D22F848FE /* event_poller_posix_default.cc */, + 3437DA35DD9669313C33C77B009709E8 /* event_poller_posix_default.h */, + 9E30F3FF6DEE7537BA04B9CFC9C55804 /* event_service_config.upb.h */, + BA3464B1C5A4D25B940B7001DA439692 /* event_service_config.upb_minitable.c */, + 20C20E72C597C0BB8CEC8911F32B1D73 /* event_service_config.upb_minitable.h */, + 4B822548E0DD1429E6250389D2B1500B /* event_service_config.upbdefs.c */, + 1900AE728AF76A5AE5AA5A013A31D4C2 /* event_service_config.upbdefs.h */, + 278688C89F40F2C14D2ABB4FDC1EDB95 /* event_string.cc */, + 4EE2670E0253A5848E1DD9F89E4845DB /* event_string.h */, + AE1120118923B37A7C51A64A96B71CCD /* examine_stack.cc */, + 24941496D3F6690F5F235B5B38BB4AC6 /* examine_stack.h */, + 4F1DEAC912ACB167FB15EBB4092BF981 /* exec_ctx.cc */, + EDC47BD7BEE5F76EB415ACB6DF0A888F /* exec_ctx.h */, + AD55A0009FD747E50AC97E64086FCDD6 /* exec_ctx_wakeup_scheduler.h */, + ADF6BB6E1ECA36CA9AB6068CF190BFD5 /* executor.cc */, + 183BA33C67A9589B181F92F5D58CEFE3 /* executor.h */, + AAFE11D04E17F43978DC9136B77041ED /* experiments.cc */, + 2ACCA4D163683462B02DB247F219349F /* experiments.h */, + 43AA3CA09441ABBC51D73CAAA97106D1 /* extension.h */, + E3FBD46377D84D308E3003F107ED8D4B /* extension.h */, + F0356E06005588FB01FF24669F107397 /* extension.h */, + 64478F3913F30524428E5DADD73A7F16 /* extension.upb.h */, + 7B22EF5245C41D697E7E898D45404CB7 /* extension.upb.h */, + 26549A418DA5BE6D60312BA024008FB0 /* extension.upb_minitable.c */, + 3BFBC8F9EF32E2BB4CCD9F03F66D3D46 /* extension.upb_minitable.c */, + 0A8546B4FF71CD2FB24AEF5EF3D857A1 /* extension.upb_minitable.h */, + 93914136B89D783A0A247E4F80118011 /* extension.upb_minitable.h */, + F17619D6CE34726A8AA4116B6A99E5BF /* extension.upbdefs.c */, + DA7AC41A7A41AF2D79480AD9800F1746 /* extension.upbdefs.c */, + 7209137AD1E7FBC72594071765469FAA /* extension.upbdefs.h */, + 80112EB2D32E874D28690BF2E0C2F18D /* extension.upbdefs.h */, + D3BBA44D2B22ED2A7B08831B9846119B /* extension_range.c */, + 3CC07488FEB091385E7EA098BFFD9521 /* extension_range.h */, + CF2B19E6D91A26AFE29085CBE7E6204B /* extension_range.h */, + 8FE31B31F772666F102BD33BE52C8174 /* extension_registry.c */, + 2552FD3FA3B260A34E3D219CD2C11A5E /* extension_registry.h */, + 6ECA2329955F1B9390C60EE398058D75 /* external_account_credentials.cc */, + 4AE51C6386065DA7D79DA3191A7513BB /* external_account_credentials.h */, + 93204152A35CAA5AF7F22BB973484FB1 /* fake_credentials.cc */, + 456552763A7B86583A34F897D0BE142D /* fake_credentials.h */, + 171595DDC79506E9441EA1FE9DF1755A /* fake_resolver.cc */, + CCD6B4219392E7B7D65DF024F1F2AB03 /* fake_resolver.h */, + DF9F0E7ECA34589BF3EDC6DE61BF7A1F /* fake_security_connector.cc */, + 80392821CA2BB9E2206B98032B7AE913 /* fake_security_connector.h */, + E635CFEF526F7F9769CF8C74AAAF5B54 /* fake_transport_security.cc */, + 9908E405799FBD83223E281AEABFCEDE /* fake_transport_security.h */, + 904A34AF863BEC127045B93DB6636806 /* fault.upb.h */, + DA7FEA58C5388239E499BEBE89A0E5EC /* fault.upb.h */, + F20E7F681BAF5F90A479F1DF62829321 /* fault.upb_minitable.c */, + 67228D32B83586BE48E7C6F5A02B1E94 /* fault.upb_minitable.c */, + CA5DA36875F90CDDBBB6E5D417C4A63C /* fault.upb_minitable.h */, + 8CBE01C629300257E13E88EE21567BEB /* fault.upb_minitable.h */, + 01AF1682B2DAFDAAC83E6F51F5B5AA51 /* fault.upbdefs.c */, + BA58AA4D3A174A4980CD42721884A021 /* fault.upbdefs.c */, + A67D9B600EEB932F89171189FBCB4BF3 /* fault.upbdefs.h */, + 5DCD5E981F393E29F7F963AEC8EB71FE /* fault.upbdefs.h */, + 8E74931488EEA0B818F1FDC414BAD4D1 /* fault_injection_filter.cc */, + 624427A4D9203A45AE85C79CA188F9F4 /* fault_injection_filter.h */, + 3771085AF8634D3C8F43661BDD4BAF69 /* fault_injection_service_config_parser.cc */, + 26D5FA53A481E9A24C18F63149ACD8E1 /* fault_injection_service_config_parser.h */, + 75A211413DAAAF922C319CEEF81AFDB9 /* field.h */, + 111B419DB5E28FF9227401FCE6A7E5B5 /* field.h */, + E08FC1F2177FA671B28B997C939208B3 /* field_def.c */, + 55720247EA3F571FF8A9D8E803A6B07F /* field_def.h */, + A3608605CA5FBFA1263E771DCBCFA8C9 /* field_def.h */, + 5DCA655961FCBD27CE5BB13A17EB3CB0 /* file.h */, + B66943844840BAEC8763BF3B66857B64 /* file.h */, + 2C5CC640F4DAE6313D01436FE142F980 /* file_def.c */, + 1114FD6CAE60DEFEB48FB5DE4AE0EA07 /* file_def.h */, + 183B43AAC0AB983D035B82D6C82DDAF0 /* file_def.h */, + F3AC40F49B6361CC2C00F5D6D7510B52 /* file_external_account_credentials.cc */, + 4B681F99BAA7227C03D826DBE4D2E51B /* file_external_account_credentials.h */, + 490CA83E20BC07CFD033FCBDED88C97F /* file_watcher_certificate_provider_factory.cc */, + 0CFF749DB4528B80CF31FA89FF70CDD8 /* file_watcher_certificate_provider_factory.h */, + 520A3E57A8DDB1B6E1233938C38D023C /* filter.upb.h */, + 38149139E9DD67068F7DA31FC3162DB9 /* filter.upb_minitable.c */, + C68D1872B2CABC7F9091677542BF6591 /* filter.upb_minitable.h */, + A8349E32919E01CEE6DCFF6A9E532934 /* filter.upbdefs.c */, + E13A6EE45F5C1CEFF594B79A5E56CEE8 /* filter.upbdefs.h */, + D157C2A71894AA6B853DFD68C7F6A068 /* filter_state.upb.h */, + 023343C108EDAB199DCF48A0AEB0AF50 /* filter_state.upb_minitable.c */, + 1898B05547D6373D26BCAD112102CD73 /* filter_state.upb_minitable.h */, + 9A2E6714569DEBF1E861A4E654497714 /* filter_state.upbdefs.c */, + 9663D82191E02C38BC015198778A73F7 /* filter_state.upbdefs.h */, + 1E8E4D8537EECF2F30BC31228212F91C /* filtered_re2.cc */, + 36D6A3CB32156B4288165D3EB988D1E6 /* filtered_re2.h */, + 147D3C14CBE7D53D3179F177D32658A6 /* flow_control.cc */, + 318A8DB467EB98A104E34B57DB7C2AC3 /* flow_control.h */, + FF69E35CCF06F522DF4630762EB50302 /* for_each.h */, + D3CC9B49068CC89D24C4E0FF7B91A7A3 /* fork.cc */, + 4AFFB29860F852EA35ACF3318485B163 /* fork.h */, + EA767A5B019EE5DCEC3C92B68FAECC66 /* fork_posix.cc */, + 867672C1CFA1EAADFBE646AD7DD599C9 /* fork_windows.cc */, + 2A9F278D6A2FC11D4A581F2BEB68852E /* forkable.cc */, + EFD32049A4431C7C0C960E55D7284C6F /* forkable.h */, + B1BBAA2E478B1D32425EAE054AED6DD2 /* format_request.cc */, + 9E2888BA9B9242FD9E07CA75EB9C5CAB /* format_request.h */, + DBFA53CDE4DA5EC96EBFBDC7E0584B03 /* frame.cc */, + 9CB77311EE6259A8BF15FBEF46A8ED31 /* frame.h */, + FC66ED798BDF0147D6E7FD62877B5B39 /* frame_data.cc */, + 585241FE4AD5B773407AA98D69CB7E22 /* frame_data.h */, + 77601B09F46C8D3C79CFB47D4FF63562 /* frame_goaway.cc */, + EF0B27F55BB258640B04D83A3B2736FD /* frame_goaway.h */, + 145EBC93427268B41552DCC2B9D9F601 /* frame_handler.cc */, + 3F1E2F3A7634A730F5AC3D41FD89688E /* frame_handler.h */, + 36BD09BE5F2EC42DA366D267955B60A8 /* frame_ping.cc */, + 4E606CEFB9482E44C8AE609EB58A52E6 /* frame_ping.h */, + 5C058EBA148CD89D7D088770FEC7BDD8 /* frame_rst_stream.cc */, + 1453134ED8AEA83C94A16F53E9466927 /* frame_rst_stream.h */, + 8BE3A589BE53FABE5B3244FE1B12E13D /* frame_settings.cc */, + 135002FD6EF4CA25D3C47EF7CA14755E /* frame_settings.h */, + 57C9C9F376F43FB60F30D6DCF4D03A3E /* frame_window_update.cc */, + 63BFC186DEA98FD55F3087DD0A489F08 /* frame_window_update.h */, + F4E6510E26F3D01B573896809E215D5F /* generated_code_support.h */, + C3B171F0ADED8B49E5F62E3E7E40D40A /* gethostname.h */, + 350392857660AA2A2A47AA423E7CE6E1 /* gethostname_fallback.cc */, + 263360264DC59A62C04DA19737111C61 /* gethostname_host_name_max.cc */, + 5A696AB6B1A228A4EFA94DD6215C8F1A /* gethostname_sysconf.cc */, + E78DBC96EE09D643614969878A3B85DC /* global_subchannel_pool.cc */, + DEF58E21E7DC16C84CF50BD3E4A4D213 /* global_subchannel_pool.h */, + B3038FE31436A153A8F72A679246704B /* google_c2p_resolver.cc */, + A34F8272225C80E0C30A69D22D00704D /* google_default_credentials.cc */, + D62F080CB5CA315CBC6104960A3B18B5 /* google_default_credentials.h */, + CAAFC93AD098BDDA3846397C219FD405 /* grpc_alts_credentials_client_options.cc */, + 1B8D4C0C0163A5B5F355648B6ACB31EE /* grpc_alts_credentials_options.cc */, + D0BF2637BE23803A667F66ABBC4FD591 /* grpc_alts_credentials_options.h */, + 623861018390DAEEAEFD684F49ED9AE4 /* grpc_alts_credentials_server_options.cc */, + 140E8876EDF24635777F700D1C8AA853 /* grpc_ares_ev_driver.h */, + C998A73F1F3811975FB98779E37D4603 /* grpc_ares_ev_driver_posix.cc */, + 20CEF42A154F4FA1A7A1EFBDC8432794 /* grpc_ares_ev_driver_windows.cc */, + 768EF45EFBCEF02D05431082FF558BBF /* grpc_ares_wrapper.cc */, + 086BC6C9F34775812AB3D49FA2AA2128 /* grpc_ares_wrapper.h */, + EB9350734AD02439193098D577626F8B /* grpc_ares_wrapper_posix.cc */, + 1116FAF71FD18733CCF19F948320B3CA /* grpc_ares_wrapper_windows.cc */, + 9BC242B7EB8720447A7CB265F732F999 /* grpc_authorization_engine.cc */, + 9550F872F31D19EB9660F97B5E3BA6D6 /* grpc_authorization_engine.h */, + ED51AE04EA16FF2DECD008DFDD3FEC61 /* grpc_context.cc */, + 89236BF9E101AD12E2901444D45C0DD8 /* grpc_if_nametoindex.h */, + C9EBCD971941691F4651B03B772EAAED /* grpc_if_nametoindex_posix.cc */, + 75697DE8A2727F6E4D81193940CEC94F /* grpc_if_nametoindex_unsupported.cc */, + 28365A34EEA0E45D3CC79B53D470E11F /* grpc_method_list.upb.h */, + B3441A6985B0B6BC52EDF7C459D00D61 /* grpc_method_list.upb_minitable.c */, + C35C03BA6312643C6C7EE82150C61586 /* grpc_method_list.upb_minitable.h */, + 58393D95E1AE61E50604C90F280E60A7 /* grpc_method_list.upbdefs.c */, + 50207B1AC6FF363D1511735DE5774CD1 /* grpc_method_list.upbdefs.h */, + 201FFA3AB38347A583ECDEFBA0A02A34 /* grpc_plugin_registry.cc */, + 1B21D7AB9EE6B278804019932EBBB11A /* grpc_plugin_registry_extra.cc */, + A681ECD0D1A2210AE23A0683D7FE93A6 /* grpc_polled_fd.h */, + 0025C76190D38F69B9F1F9759E8B7D27 /* grpc_polled_fd_posix.h */, + F47F1D7D1BF1448F758579A00904ED78 /* grpc_polled_fd_windows.cc */, + 49902276A606843554D993EBF875D2B6 /* grpc_polled_fd_windows.h */, + 3AFEEEB454E540DCFED1CF0FC5BF5B55 /* grpc_server_authz_filter.cc */, + C7E1E3D98D5B32C50F03001A1E013F9D /* grpc_server_authz_filter.h */, + 7907A6FFBB216AC83745AE992BAD2A8A /* grpc_service.upb.h */, + 89F1C50B03728877C28C103DD5741AF5 /* grpc_service.upb_minitable.c */, + FB529D1E20E93D887B0EDF9AC8AE24F9 /* grpc_service.upb_minitable.h */, + B323A490CB91F08A74B01482367F25ED /* grpc_service.upbdefs.c */, + CF72CED9B849C5A6E9A6216832ACB176 /* grpc_service.upbdefs.h */, + B39D05A6C9D19FCCB15C3A5300926349 /* grpc_tls_certificate_distributor.cc */, + 36A6B42EEC7C6B56E155F31B5715CDA6 /* grpc_tls_certificate_distributor.h */, + 42A24C746835DB48F2D086A4DABC4967 /* grpc_tls_certificate_match.cc */, + EFF94587888DC67770113109A2C6F81B /* grpc_tls_certificate_provider.cc */, + C33F442E931DF7A22FA14BE4F5DE9826 /* grpc_tls_certificate_provider.h */, + FEFB3C1E60D59F2B6AA8D53BBBE02BD2 /* grpc_tls_certificate_verifier.cc */, + F66336A1BC7C3479A0479FAAFF938B7D /* grpc_tls_certificate_verifier.h */, + 623E924DDE859DBDBFF109692221DDC6 /* grpc_tls_credentials_options.cc */, + 065AE978F3ACF0CB44B9FC14E6F42A31 /* grpc_tls_credentials_options.h */, + 86C35BE09025F32AE286B78D5B2B07F6 /* grpc_tls_crl_provider.cc */, + C4A8F516D5197A9010D1054716F8F6E7 /* grpc_tls_crl_provider.h */, + 2EE74A62E9FD03F3DE202CEE0E33DBDB /* grpclb.cc */, + ED324C77781894768E66229AB5653C1F /* grpclb.h */, + 185E00D7AB958A3A2AF7EFC6A2DDB899 /* grpclb_balancer_addresses.cc */, + 862F4D1BA18CBA9D00A7CEA34F6944BE /* grpclb_balancer_addresses.h */, + 49DF6616812018C5951D9BE110B107E5 /* grpclb_client_stats.cc */, + CB98109FB15681396C94BD634132256B /* grpclb_client_stats.h */, + E149621FE0C3F038716176BE58043399 /* gsec.cc */, + 1353F2D3E457B6889CAD01ADA9700210 /* gsec.h */, + 8FEFC8876F59923299286A533C4F33CD /* gzguts.h */, + 4E9470AF73E5F7D6C2FAC601C27776D2 /* handle_containers.h */, + C4A34B8FAC16E7F27BB547E62DBF2398 /* handshaker.cc */, + 5E185FD75CB4F7B4A14F314AC655A3AC /* handshaker.h */, + 43AE5CE95145FD657DDA9D7565829A79 /* handshaker.upb.h */, + EBBB53233C94915F4EF629D371F790C4 /* handshaker.upb_minitable.c */, + 9FB7D3B6D21DE64C2F9F8607BAA5C14D /* handshaker.upb_minitable.h */, + D0ADDFC0C027A82A2D44555A82901645 /* handshaker_factory.h */, + 7322ED84576A6BDD8739A05CFB0E5337 /* handshaker_registry.cc */, + C52B4800703AB8C0DDA7A051EE6BAE75 /* handshaker_registry.h */, + 03DDF4AD7E884E9DF913954C391B4771 /* hash_policy.upb.h */, + DF7B6E3E418AF979F1E16E19A0BE1ABD /* hash_policy.upb_minitable.c */, + D3EC7B2E70506A42F492B2BAA4DE52B7 /* hash_policy.upb_minitable.h */, + 5145F16F5CD8F58082AD141DB2D717E6 /* hash_policy.upbdefs.c */, + 8051AFBCB4E542311E9576389518EB2E /* hash_policy.upbdefs.h */, + 0C29DE4074E45FAF3B5AB542F47D685C /* health.upb.h */, + C91E8243BA28019930F3896DF6A738D8 /* health.upb_minitable.c */, + DE93F5D9B2EFA17BD4C4C98713B2B3E4 /* health.upb_minitable.h */, + 8FBE391FCE495F455DED1313EA65C7B6 /* health_check.upb.h */, + 912264AB4513649AB76199811A693C69 /* health_check.upb_minitable.c */, + 8A7794C0CCDD3DA422F76B006F4D45D0 /* health_check.upb_minitable.h */, + E9AA62743BA47553810B76E992C3D9FB /* health_check.upbdefs.c */, + A33D48BC425AC45AB0FCF79F242F56FB /* health_check.upbdefs.h */, + 64C28C547195A255E9BD46A4D02BE0B6 /* health_check_client.cc */, + 4CB60477420A4307F225D670CC0417C6 /* health_check_client.h */, + 450847204EEFA331B43F9EB3920E84EF /* health_check_client_internal.h */, + 9BAD3BC69CCE28705702660097B7FF9E /* histogram_view.cc */, + 7570E786D499EEE69E92D4FD150EDB79 /* histogram_view.h */, + 810B161C39D0FC179FC6B039D81BC2E6 /* host_port.cc */, + 940BA1A343A9B3E1B7C4435DE8FCDB5C /* host_port.h */, + C2838AC26D907FC7ED5FAEE67F8D69B7 /* hpack_constants.h */, + 45413384C16166D352DDF50174914FE2 /* hpack_encoder.cc */, + 7F005CF4605D5130B7D5889686AA81E2 /* hpack_encoder.h */, + 4B0049E2BC91BC77ADE4ECEE26A8E253 /* hpack_encoder_table.cc */, + 2764FE21A86807A1E9A53531B8FDEA6B /* hpack_encoder_table.h */, + 377AF364183169413C9BA5427A199CF4 /* hpack_parse_result.cc */, + 9FC583F8D59E89672E2573A46A02B47D /* hpack_parse_result.h */, + 4394B23F6ECC4593E1D5C46011EE5F25 /* hpack_parser.cc */, + 168067947F44683B21EA81EFEBF6B56B /* hpack_parser.h */, + ABED0EE16C5EA4CE6E903680200847C9 /* hpack_parser_table.cc */, + B774369EACB83F360DA6154321A7DFB1 /* hpack_parser_table.h */, + 81E6ECE2A2DBD1E3F350C19BB840ED06 /* http.upb.h */, + 12B1B11494793F2640FF04AAAA0E0C43 /* http.upb.h */, + DB25C15A3FEB5615571AB78EDCCC7CAA /* http.upb_minitable.c */, + 246F6671BC5A3A2A10A20B8C3661A4F3 /* http.upb_minitable.c */, + 46975123C6FAC8940EE24B461A74B04A /* http.upb_minitable.h */, + 2B2E3115B4E2A2564B87FDAEBB5B44A7 /* http.upb_minitable.h */, + 5D14A62BED940F6BB6AAECB58052F9B4 /* http.upbdefs.c */, + 7BF774D81ED6003BB11D21599529AC00 /* http.upbdefs.c */, + 78FD91F8927F89D204D115558E248873 /* http.upbdefs.h */, + A766B9A92798B3815CC9802F765F873E /* http.upbdefs.h */, + 83C8444A3856974819809D0722C49C0F /* http2_errors.h */, + FD80E0F60FFC74CD8297A906543AFD40 /* http2_settings.cc */, + 4773C4DF14D64173DE9E69E8C9AD3B86 /* http2_settings.h */, + 84DECB2103AA61C05E9B6CA6C1CEF824 /* http_client_filter.cc */, + DB28687B92F79499B12356A4097386C3 /* http_client_filter.h */, + 1B29158980D8C9A6A071331A30608E4E /* http_connect_handshaker.cc */, + F2E6B54C1DBF08A33C7FE4200184F56E /* http_connect_handshaker.h */, + E3D060167DCF47B640338CBFDD6D7EAD /* http_connection_manager.upb.h */, + 9FB88A5CF9F15CA7BDC41E5356236667 /* http_connection_manager.upb_minitable.c */, + 6E56391EFF25C42B0BDB0EEF85DD2D2C /* http_connection_manager.upb_minitable.h */, + 0BA1E67A1A91B66894158D743FB96ABA /* http_connection_manager.upbdefs.c */, + 0A647CA763FFA2B34F759A02B5489C29 /* http_connection_manager.upbdefs.h */, + 14F497602FD4F2DDA1DA879D40A0BF79 /* http_filters_plugin.cc */, + B4C5D9E6805D6326C37D7226AF1F98B2 /* http_inputs.upb.h */, + 408F2D068E8D6B05A1BAA6FE6E1841D9 /* http_inputs.upb.h */, + DF14F99E972BE43D04D6F5303651B6B3 /* http_inputs.upb_minitable.c */, + 0D5CA94BA106765187BA86131B3EEDE4 /* http_inputs.upb_minitable.c */, + 2B565F4DAB9AE09AC14AF6C453B10559 /* http_inputs.upb_minitable.h */, + 50842DB27AFA83E490BFC118B1161CF9 /* http_inputs.upb_minitable.h */, + E11146F297E2CE8485B33D287BDF8748 /* http_inputs.upbdefs.c */, + 0FDC749E0C27F8E60FA340E6075D096B /* http_inputs.upbdefs.c */, + 763B3E3F5F78309ED2470CF2D66B8D73 /* http_inputs.upbdefs.h */, + 4C08CD14F186878A5DCA809188A153D9 /* http_inputs.upbdefs.h */, + AA119B238E5D86DE8EFF43C14067A33E /* http_protocol_options.upb.h */, + 06E1E7A8758CC35A01D3EB098391B50D /* http_protocol_options.upb_minitable.c */, + 382F4AD26D743D0AAE065966859C4CA7 /* http_protocol_options.upb_minitable.h */, + A0C32034B20DEA7AE571A0FDB972B7E3 /* http_protocol_options.upbdefs.c */, + 1EAB71909135DC786AD39D82569C92EB /* http_protocol_options.upbdefs.h */, + 18A9856C7DF37F25EB09F3515901BD78 /* http_proxy_mapper.cc */, + 77964661B7F137B33FE80968D6BF1EAB /* http_proxy_mapper.h */, + AACEDFA2F10D86E3E29435939170B837 /* http_server_filter.cc */, + C9854A6EA2CFA14B25D6619D3656E478 /* http_server_filter.h */, + 45FF6BA90322898C15ADE3C518672A04 /* http_service.upb.h */, + DA91E65A2E421DC5BCD977D9889F3853 /* http_service.upb_minitable.c */, + A1F3AFADB3282B8FFDD3011FB9E55AEA /* http_service.upb_minitable.h */, + 2A8F132C3AD49230F66401D44471C4B5 /* http_service.upbdefs.c */, + A27C356D3B1B34EFB006E4989B771A9D /* http_service.upbdefs.h */, + DDF3A237FCE2D3A0F90637988A615FE0 /* http_status.upb.h */, + 4B86EB4B55DDE9313D4E932683603033 /* http_status.upb_minitable.c */, + 3662CDCB682DC39DA4C2EDE2CCB6B1CF /* http_status.upb_minitable.h */, + 403999396BB5C23DD24CB938827E40C6 /* http_status.upbdefs.c */, + 896E6DF9A3C1CD888BA880F21493B5DA /* http_status.upbdefs.h */, + BB6D0AC17241FAE4E8B9C5E4F67DA9EF /* http_trace.cc */, + C0D2EFE35BCA2F634C4F27117C81D8E9 /* http_trace.h */, + 033ED0F81A0728CD7FACB7FBF8F817DC /* http_tracer.upb.h */, + 9F9D4B343FDBCF2812608E54A4A73818 /* http_tracer.upb_minitable.c */, + 2F2E7D87C520CCAC0EE364D5A2EB716C /* http_tracer.upb_minitable.h */, + AB7C827319214B0C570025E230D6E2BD /* http_tracer.upbdefs.c */, + AB2E3AA2333FB9EE982500716B10030D /* http_tracer.upbdefs.h */, + 7D1D12A9676C033EC26A8E430BEFD2BF /* http_uri.upb.h */, + 315AE2BA7BAFCBCD2EAA09292EBADC82 /* http_uri.upb_minitable.c */, + 8B15BE79BA16BFCBFB4960B2F4B91A60 /* http_uri.upb_minitable.h */, + F335EB71DF5EE80375B9304FB75CDC01 /* http_uri.upbdefs.c */, + 45FFCAC397DB0F74F647277B5B515B0B /* http_uri.upbdefs.h */, + 96DFD641B2CDF6831733CC7093482CB3 /* httpbody.upb.h */, + F2D0BB67726CD3F5E9F8F7CA95FDECC9 /* httpbody.upb_minitable.c */, + F4CE2A41C775CA088B555DF37F91B1F6 /* httpbody.upb_minitable.h */, + 02738C2B122708C51A2F952DC328B847 /* httpbody.upbdefs.c */, + DEBCEDE61A7D1F36DDDD91EFEDE0A45C /* httpbody.upbdefs.h */, + EC1F4A0C097003C9772A1E1FDD0CB256 /* httpcli.cc */, + 80002EAA6E4893D3BBDE704F50BAA8A8 /* httpcli.h */, + B262FDFF25FBF501EAF4E6BCDF41B01D /* httpcli_security_connector.cc */, + B89336E73194F4FA9F17C841C80909FF /* httpcli_ssl_credentials.h */, + 080A7A2AAFDAD17F9461570C72A8DE11 /* huffsyms.cc */, + AF97B3143BB8AA31449BADCC490A4224 /* huffsyms.h */, + B6B6182208F7A2E34BDEE144E581BD68 /* iam_credentials.cc */, + 2D5DDEC8FEF41B97B5F1328ADF9815C8 /* iam_credentials.h */, + 8F9957C9557A66E2F57FF3B562923691 /* idle_filter_state.cc */, + E1C6DC8FA47C7660CFA9A78B7BEBE9A1 /* idle_filter_state.h */, + 9A51E8BA4EA401B015CBDC00F02A33A5 /* if.h */, + 0FFCC30F1E3483D75E191CD8CBDF551F /* if_list.h */, + DA1657DAB1CAB3E4AE8FDA50EF987F2E /* infback.c */, + 13E4E9057A089D15BA28F291DAA52CA3 /* inffast.c */, + 91C0F7D882739E2863604C84602F4790 /* inffast.h */, + 170FD0D12532D746D56BC7A40DFD5D51 /* inffixed.h */, + 6F6D853419D080D17C5B3D9D68763ECA /* inflate.c */, + C499F2589A74121694EF4777C81E16C7 /* inflate.h */, + A1E2697D18720EB6999AAA802A058CBE /* inftrees.c */, + 511522BC25D03D38597636D86A086183 /* inftrees.h */, + F1EA1BCB650D91A73ECA20CEB9A4A4AF /* init.cc */, + AA191A57E4C2ABB47ED761D58C15BF12 /* init.h */, + 19CFE919F1407BAD9EE0B18001E8A8B3 /* init_dump.upb.h */, + 276F5530AA467761484346DEFDBB8970 /* init_dump.upb_minitable.c */, + 2BA846C2C36C1433291010EC06C6108B /* init_dump.upb_minitable.h */, + 13641FA1025CBF3411BB17F686ED09A3 /* init_dump.upbdefs.c */, + 418758104DF39D19296C60B0B654B587 /* init_dump.upbdefs.h */, + 7514E36D2FF438F21AD65E25CECC5B49 /* init_internally.cc */, + 9FE93FA8C24CCF9B1F26A826CC4B7AA5 /* init_internally.h */, + 99BB0A3C0D3306FE96B15359A3A4146B /* inproc_plugin.cc */, + ADBAFEDE5BB1E119278D4E241EB99910 /* inproc_transport.cc */, + 1CE032DF9BD8ECED04AE75E1A0D58B0E /* inproc_transport.h */, + AA0E8131594CC9A5D9C9EA333AD6F701 /* insecure_credentials.cc */, + 599D06CC1A53D98F2C28D927A9EB424A /* insecure_credentials.h */, + 9CB9BA090055C1E51AA4F7BD573E8C64 /* insecure_security_connector.cc */, + A81869701334A6F8771ABC95DD0F1EC7 /* insecure_security_connector.h */, + AD6BE19D286C1C2AC2B31DB61159FE1D /* int_table.h */, + 3FA2890982E1AF9F125BBA8E265F4C76 /* interceptor_list.h */, + 93474DEBAE52FBC40F7692A4F239C1EB /* internal.h */, + 8362B0C18F37CC70A83D290439ED6CAC /* internal_errqueue.cc */, + 813F4EB2D2D99F75F159AC832AB3A930 /* internal_errqueue.cc */, + 35E65CBCCFD1099D5937596B6CCF53F4 /* internal_errqueue.h */, + 573D9A4901E2FCFE2F80FE964B74808C /* internal_errqueue.h */, + 739847EC3427F03F7B98D3297D018B70 /* iocp.cc */, + 0990C0AAB5D5A87B9297E4CDDD4BFA74 /* iocp.h */, + FBA62CB9DC08E749E1CE40592D42D023 /* iocp_windows.cc */, + 476E9FC75CE82108A5076276301F21A8 /* iocp_windows.h */, + 7D6D150EE61FBB6D1F8443BA9F8612A8 /* iomgr.cc */, + C6CEDF96C8BECA13FC87960768225317 /* iomgr.h */, + 9BA33E88F87DCD84E5775CB00914FB20 /* iomgr_fwd.h */, + D98F63EBFA68EC9E6D365300A973C025 /* iomgr_internal.cc */, + BA5EA0504A8A6EBF49AE74A741546DEB /* iomgr_internal.h */, + A7F074BB9160D0B90013CCE08A570FF9 /* iomgr_posix.cc */, + 8CA736B700CB3117AF2E98FA3F77B3C4 /* iomgr_posix_cfstream.cc */, + 8318306AC6A624965CA357600B999202 /* iomgr_windows.cc */, + 428A9F49DA6A31740D8EC1B93D371B96 /* ip.upb.h */, + DEE875066196DFF0656F3891C2F9BEB6 /* ip.upb_minitable.c */, + 779A10441C0C0CB35B42969F90DE638E /* ip.upb_minitable.h */, + 7EAE56867B07B9B91AE7742FA18B5E7E /* ip.upbdefs.c */, + 299D0F1D46B025B710BEF2C355C25A34 /* ip.upbdefs.h */, + E6FD033A8298FCA8B46A6BD91CFFF502 /* join_state.h */, + 23F9499DC636B7B1CFD05CA2FF61664F /* json.h */, + 4F212B33FFAE46FFEA6C2785B14C5BE2 /* json_args.h */, + 49874FC55B89FD7E98FD7431723111F5 /* json_channel_args.h */, + 3CBEF518D7F0AB66AA94559E99061458 /* json_object_loader.cc */, + D7E5BF4E757840685705AA81C0F89D37 /* json_object_loader.h */, + 5DDB0C909B354268B49AB49D96DD81D6 /* json_reader.cc */, + AF2DD7F841C5756293E2BE4EF2108499 /* json_reader.h */, + C953A912856DDEEBD34389E4F0F682E8 /* json_token.cc */, + 4DA6F60C69A714EB58A8BB0A6323AAEF /* json_token.h */, + 67FEBC53BFA7982C1B094194220D6E31 /* json_util.cc */, + C219A17F9B833E753FE50C3917DFFCE5 /* json_util.cc */, + D3B16B2784A1F0B05970DACD21A8FF39 /* json_util.h */, + 91B7388BC4949D7ED61828CD1EA59D9E /* json_util.h */, + 70387B7313462F8A4D8A94DADA8205B5 /* json_writer.cc */, + 5FC675347F72E3768CAC090F7422422E /* json_writer.h */, + 8373D09388FA6B5A831010BE6D7922CD /* jwt_credentials.cc */, + 2C8256867FB1BC4F55EBB140CD1CB48E /* jwt_credentials.h */, + 10C2D3F8662FAB3F53D075B5D324F23F /* jwt_verifier.cc */, + A9BF44E9E7DB2DC3F3B31ABE9089B057 /* jwt_verifier.h */, + 5BC6488A46D3965C5E13ACBCD4A7A548 /* lame_client.cc */, + 07A85BBC3AE927B528663D13A61D4C28 /* lame_client.h */, + 2CA3B9A39D5D2C3EF6A4AEB2354DA837 /* latch.h */, + 235377E76B4457683AFA38A389E6F749 /* lb_policy.cc */, + 41307BE757B22092B55AAD4982C3141D /* lb_policy.h */, + DDFDA38CAB4C1BA32BE7382E9C84C9CE /* lb_policy_factory.h */, + 8BFBE1658DE9B51F1033BDC05DC8FD38 /* lb_policy_registry.cc */, + EA154D4311B37BBC298E6EAA5B3AEA28 /* lb_policy_registry.h */, + B58F7970DBE7D509EE765E51774C6034 /* legacy_channel_idle_filter.cc */, + 66FFB2601128E7D70B325A031DAC167D /* legacy_channel_idle_filter.h */, + BD94C5575FE3D68FAFA3E9E569843985 /* legacy_compression_filter.cc */, + F02DBC18AF9A74E333A2E67AAFBAD386 /* legacy_compression_filter.h */, + EBFF46DACC9B0EF489FE9CF5D23D2A9F /* legacy_frame.h */, + 0F0D1D32CD1BE756C90D331095CC43DC /* legacy_inproc_transport.cc */, + DD8E71583F7393424A9296FE9A42ED6D /* legacy_inproc_transport.h */, + BAF5614AE8CAA82F046E0FB61D3C9969 /* legacy_server_auth_filter.cc */, + F618CE25031B9698D866E5DFB06FDEC2 /* lightstep.upb.h */, + 2D0F2D764AA5077258330DA869B8014E /* lightstep.upb_minitable.c */, + 9468058FAFA60264A43F358870794E9A /* lightstep.upb_minitable.h */, + E968BE4877C229BE8C065A097686672E /* lightstep.upbdefs.c */, + 7F1EC53A605E1501728A0A2FBF923467 /* lightstep.upbdefs.h */, + ED61C3C0877A6744C9DC3D8360AC057E /* link.c */, + 8A93CC106488FC69AE7D3EDE4881E6AD /* link.h */, + 06DCF0387213F42D0948FC358218A985 /* listener.upb.h */, + DEF5BD03BEE43DEB57323241398C02CB /* listener.upb_minitable.c */, + 62969704850874537502F2CAA4205BAF /* listener.upb_minitable.h */, + 2148460F5F4CE0A58BC22AD2C9418DC2 /* listener.upbdefs.c */, + 91DD199F5414269413669F45AAB8ED9A /* listener.upbdefs.h */, + 194A0ACA11B689587025CB43E6793A9E /* listener_components.upb.h */, + A05EB6B98EF56DDDF631BC0657A73802 /* listener_components.upb_minitable.c */, + 34D7119C95349CD0A60F24ECB2406792 /* listener_components.upb_minitable.h */, + 1A94DC94B39988227912E1F7A39E37E7 /* listener_components.upbdefs.c */, + C51D257794774E339F2B46646D7BEE8B /* listener_components.upbdefs.h */, + FBD528311EB8F4C50194E5507B866B6D /* listeners.upb.h */, + DA01CF9F3D9DE83273436010D3D70924 /* listeners.upb_minitable.c */, + E174357CAC7FAF4AAEA920C78E1F839C /* listeners.upb_minitable.h */, + C003480FB5BBDD0DFB60FA578B39A444 /* listeners.upbdefs.c */, + C2EBE62B5A0F120AFFE695DDD15414C7 /* listeners.upbdefs.h */, + D4C2A85E8388DFCA2BBA93E79D4F089F /* load_balancer.upb.h */, + 5F0D3DB78F9734C909EE2E8427663119 /* load_balancer.upb_minitable.c */, + FF078A3747EF899BD8D7EA46B7A80A62 /* load_balancer.upb_minitable.h */, + 1A8BBCA1E000496CDB79FB4C11664F8F /* load_balancer_api.cc */, + CCCC7D89416B229F0F4EE20E0EF45A43 /* load_balancer_api.h */, + 2723AECC152D767AF1FC7492D962AB0C /* load_config.cc */, + FB65BC1EBCD163FB538931110A1F74DE /* load_config.h */, + 0856618FBDD58D2CACDA39CFBD2D757F /* load_file.cc */, + E9E2484C23801ACB40F88A301BB86FCB /* load_file.h */, + 419687CB1B8F58C0128C822F2401F8B2 /* load_report.upb.h */, + 71DBA451B8977F305349E02791D1C239 /* load_report.upb_minitable.c */, + DC2810BDBA1045EEEDEAD9F8FFBDF2CF /* load_report.upb_minitable.h */, + 2C2C3907AA9C4ABE4C7E7B13E9AF0391 /* load_report.upbdefs.c */, + D739F899C346E6A692960CC8D692724B /* load_report.upbdefs.h */, + B32A488D1B889B720B34A671C144A09B /* load_system_roots.h */, + 187720D9E38560926BB4F0F3E7AECC65 /* load_system_roots_fallback.cc */, + 31B730ED9AA33F3D1DFB8AFFCC2F0BA1 /* load_system_roots_supported.cc */, + E85E41B999FF5D89065282164048DE6A /* load_system_roots_supported.h */, + DCF7BF70CAB59FB1C37DF29D87C902C7 /* local_credentials.cc */, + BD30775BF9443B3B8C08BBFC7E3C1AA0 /* local_credentials.h */, + 13FB9BDA9787821621A20CFEB5EECBE6 /* local_security_connector.cc */, + 9BFA3874E763C006C74D514317DFF912 /* local_security_connector.h */, + B43B269F915B2218CF0904DAE2AB072D /* local_subchannel_pool.cc */, + BA9BFA8653177A957CE3FA52562B6BCD /* local_subchannel_pool.h */, + 2D614CB4FC6F9F91B02D8D33B1306F70 /* local_transport_security.cc */, + 801D76EADEDB86E29361BBDB3AB88BE5 /* local_transport_security.h */, + 07CE4927E072C662D8C319089EB8F036 /* lockfree_event.cc */, + 7C053F8B0FF93398C48BF2A821B149C2 /* lockfree_event.cc */, + 4EAC9702E2E5E90DEB21FFBDCE056E94 /* lockfree_event.h */, + ECBB7CCFD908A2B73ED1073B72493DD4 /* lockfree_event.h */, + 6514BA6F668FEA083195B8784D76FFC1 /* log.cc */, + 9A48FE2B5BAA3590CC2124CFC7894636 /* log.cc */, + FAEAC762CD8EF024FC9763A6195504DF /* log.cc */, + E0AA2E4D5787774255029049D40F9D75 /* log.cc */, + AF14C6A42A92E6A06BDF9023BABC3809 /* log.cc */, + B977636DFC38E12ECD458C113B36C929 /* log2.h */, + 58F578A89C374B1A4A774186FF899545 /* log_internal.h */, + 7C76FA5B98A857E05C2BC37BDEDBCAA0 /* logging.h */, + 8F53DAC51266A2F8ED76CD05BE5407E1 /* loop.h */, + DE9F2097FF4E9159E0C8005827462703 /* lrs.upb.h */, + D9E0B2057C02F513CDE21DCC1F81CFBA /* lrs.upb_minitable.c */, + E899AED87468EAABA717FDEABC2276D0 /* lrs.upb_minitable.h */, + 2B0B4B7EE79A838DD24C017201A24F20 /* lrs.upbdefs.c */, + E6CB75ABD3A3E8E2CD870C85073B9CB1 /* lrs.upbdefs.h */, + FC8353382CA46BE96805F862E1F729D6 /* manual_constructor.h */, + C76C05E12E195CA6D06874CE23980D35 /* map.c */, + 325EF1482161ACB5BAB5EE840704EE22 /* map.h */, + 0800843B7A8785A7F9098C9B4A959661 /* map.h */, + A210D8C33F560CBD13881279872C5758 /* map.h */, + EAFF954A9F26F8CB957AF832223F59B9 /* map_entry.h */, + 6346DF8941FD9F0A68679D980135E79C /* map_gencode_util.h */, + D29CEACB653EECF14CEDC3C1E0A01719 /* map_sorter.c */, + 863F6090FD5561BF48A21C53D9239F76 /* map_sorter.h */, + 5CE1152DA7C2F322D2B7FE91C5F7605B /* match.h */, + 145488D90013A209CCF1447464AED5B3 /* matcher.upb.h */, + 2F4E527CAA573278E19F66F1370E5B20 /* matcher.upb.h */, + 105588DC056AD6DBE5A6CE5C456822AC /* matcher.upb_minitable.c */, + 56A0DC106C8D053A2F267C3CD2A8F6BB /* matcher.upb_minitable.c */, + D963893BAE4A49975BBEDA637DA9075B /* matcher.upb_minitable.h */, + 2DC33BCC453265C8F25AED441418D737 /* matcher.upb_minitable.h */, + E4676E7BC4997BE8DDDF6C5CA78752A5 /* matcher.upbdefs.c */, + FC3CFE9013AB29A798CD20A0C2443220 /* matcher.upbdefs.c */, + CCF0205CACF899F8B29383D0C677A168 /* matcher.upbdefs.h */, + 8D077C06BD49A00A85E962573EFBE45A /* matcher.upbdefs.h */, + 60A9AEC5B57ECB0B2431FD8ADBF5A7B2 /* matchers.cc */, + 42D42F19709E981385C5C67466DFEF8F /* matchers.cc */, + F019BE0027333EBFE1C6AD830B77ED4F /* matchers.h */, + 88AD72DC1D721BFBB3CA8365F7868B70 /* matchers.h */, + 86934D3F361C37A4A42DA8C91CB9EE18 /* max_concurrent_streams_policy.cc */, + EB73EDD79502202483A7306EDB1977A0 /* max_concurrent_streams_policy.h */, + 7CD0FB61E56A858F7A336D2570F97FAF /* memory.h */, + 7A061EE2461BB7AAAD6030225E4E5D13 /* memory.upb.h */, + E3BE5274BF1821B0CE9B7A7141A3F798 /* memory.upb_minitable.c */, + F167F068B6DF85CF46C7C1377B902F23 /* memory.upb_minitable.h */, + B6A7D862A7B1911E2BA97228B3A4BB69 /* memory.upbdefs.c */, + 265E101E8B76E3926DF5FE29F44AFE0D /* memory.upbdefs.h */, + 690D44BE36AA3EB42CBD17F03F1E0B2A /* memory_allocator_factory.h */, + 66A548AA9E4E81B70AB65059750B0C6F /* memory_quota.cc */, + 90119EDB3FC9084862164A974DFA5FD6 /* memory_quota.h */, + B52237138748553D009983453ED9FD02 /* message.c */, + 97532F7AE2CFA854B457222C2AA30E57 /* message.c */, + BE35531EAB0F377AED136B732A0BF636 /* message.c */, + EE29AFD1FE938C54AA1C3401D40C0F6B /* message.c */, + 0E2663E5418B01B989DFED1D63445C0E /* message.cc */, + 74881CC1A2810481557F8A859E734EC1 /* message.h */, + 9FA4409FEC8D1BBBD9CCA77A2C04D8CF /* message.h */, + 5B2E99F1280B86FB133A0236C86EFDD6 /* message.h */, + 5827D54E48155DB5164D23980D1654F6 /* message.h */, + AA27658C6EFAB3B0A518646FC99479E2 /* message.h */, + C419BF9A35E1769C3F240F7E3463D611 /* message.h */, + C7A0885C8B3624DC8E37B1B86B32F3E4 /* message.hpp */, + 8FD9458AFDE18034FBDF7096BAF96601 /* message_compress.cc */, + 5A4DFB39B29A23990C8F77BFFA2D0F25 /* message_compress.h */, + A55B275B632936AB3EF5955D61B7E429 /* message_def.c */, + 05E5FB4DC841A67F6A3D9C80C36F0274 /* message_def.h */, + 1E5532AE10BFEFE103F4595E0A58B2EE /* message_def.h */, + 0471D53FF96324489068C78C856EE029 /* message_reserved_range.c */, + 80EB3D4A2D4A62029F052C17AC2445FD /* message_reserved_range.h */, + D8EF5347FDE55EA2331BA3FB1FFAD8D2 /* message_reserved_range.h */, + 0355F30C25FD222A86D09F896FDCA48F /* message_size_filter.cc */, + 95C7D3F613783EE8174EDA9135E85688 /* message_size_filter.h */, + B4DD645BF4E481DEFF61094968F99252 /* metadata.cc */, + 40BCF6BB9833101314194D3ED53AFC39 /* metadata.h */, + A6ED636F11D37D99AEFFA05BDB3E021E /* metadata.upb.h */, + 3489B2E9E3175644C8EC1A7B26ECE77F /* metadata.upb.h */, + FF7B997C00F9FB247DB05D9D83508867 /* metadata.upb_minitable.c */, + 31E62FD6717AADE964E8C23F04AE501B /* metadata.upb_minitable.c */, + D198AA3F2D3FD344B7C2A4EDB8E1E38E /* metadata.upb_minitable.h */, + D419C3E47FEA62975C3BDCD50D2BF552 /* metadata.upb_minitable.h */, + 9671B144E250035540A72168165CDD88 /* metadata.upbdefs.c */, + CF1AE2FCCA1073BA4038D24DB6155CAC /* metadata.upbdefs.c */, + 53BA17D77F312BA72D108D43EA8683E0 /* metadata.upbdefs.h */, + 7ABBE4161DD82BFD54F2F22F825A564D /* metadata.upbdefs.h */, + EE420AA17E265CAAD868AD8349EDDCCB /* metadata_array.cc */, + 9461B5E154D64A279B22580F82EEA208 /* metadata_batch.cc */, + 527C7153FD9B0737F3C45E979DB9CB71 /* metadata_batch.h */, + E96AB8701F7566BF730A1FFAFDC83250 /* metadata_compression_traits.h */, + E17AEB222857AF3E1301EB3AEEF3D88A /* metadata_query.cc */, + 1997154079AFC39ACD5285CC1EC645D0 /* metadata_query.h */, + 1AC590D6555F74E3212073F770AB4D2C /* method_def.c */, + 8244D4E57A89D0DE454D3FC9DEFB3166 /* method_def.h */, + EEB9E7D0A90AF6064F0B34E55F558D81 /* method_def.h */, + 3157A3A378F000EAC6165E92B2AE9359 /* metrics.upb.h */, + 4A3033BB424AE4E6B17ACEFE3E3015B1 /* metrics.upb_minitable.c */, + 9A20DD5AA966072186AF7AD2B6EB4E93 /* metrics.upb_minitable.h */, + 9AB6C71BDFB2D4664819F2B806559FA8 /* metrics.upbdefs.c */, + 5C15B8BA590898C1AC0C99BD032AB277 /* metrics.upbdefs.h */, + ECB9B83FA710DA177B0AB6E66E58E030 /* metrics_service.upb.h */, + A758B21CF7D10A8CFD19B110022217D0 /* metrics_service.upb_minitable.c */, + 6D8F34E6B60C6E2CEB8C02053CD8100A /* metrics_service.upb_minitable.h */, + 6B6046249BC0E341B38F6E557B185F47 /* metrics_service.upbdefs.c */, + 5DD5C3331D8BF5A22A6FBAC02544BF6D /* metrics_service.upbdefs.h */, + 3F8659D487EBFDB976DA9ABDA10B2EBF /* migrate.upb.h */, + 4AAA612AFACF86597A9400DC08C72909 /* migrate.upb.h */, + D0113E6FAB8FCD928C8C9E27293F4B18 /* migrate.upb_minitable.c */, + CE9F23F14A32B8BBE941C71F43095539 /* migrate.upb_minitable.c */, + F21BCDEBFE1D43702E790F02BEFDA009 /* migrate.upb_minitable.h */, + 3E024C808727C5291D48EA0F6FE16865 /* migrate.upb_minitable.h */, + A62F294D798209CB968F5CC96626B599 /* migrate.upbdefs.c */, + F0C4F0002E1E603EF58DFC8A19CC9DEE /* migrate.upbdefs.c */, + 9A4323076348AA8D2810FA085F2447DC /* migrate.upbdefs.h */, + FB127370ACD829913D8C1ED61733B82B /* migrate.upbdefs.h */, + F1DE3FF01C1F211D497B327E74EBFBA1 /* mimics_pcre.cc */, + B410220C2B10321CEF85FBB00A8A7875 /* mix.h */, + A778E2CD824AF7FC4304D9C82C9A3D0E /* modifiers.h */, + 1338230FE496C62AEC78366B33871442 /* mpscq.cc */, + 97F0B212492A17D284CEEB8A1EAFECC3 /* mpscq.h */, + D24ACDE667F9748162F7CC76703EE54D /* mutex.h */, + 1E156260024F9D8DDDF2F601C10C4163 /* mutex_stats.upb.h */, + 445A0D1E50C1903C8F08FB08B378D6C4 /* mutex_stats.upb_minitable.c */, + 6EFD17307E52566EE6A9041809107441 /* mutex_stats.upb_minitable.h */, + 1BC917CB766CDE80D16B16CF3FD4935A /* mutex_stats.upbdefs.c */, + 69324BF219831823EA8409087CA7B407 /* mutex_stats.upbdefs.h */, + 0427C763D1D8E38F7D239BA72B39D41D /* naive.c */, + 9C776B75D07C25F1E680825880542B18 /* nameser.h */, + FAF8FED3CAC24AFFE4E0B8B5B287D885 /* nameser.h */, + 03D920ED0C01A38F179F78451B8F51DF /* native_posix_dns_resolver.cc */, + F634FABDD0660A52AFA92BFD5C995A0C /* native_posix_dns_resolver.h */, + 6572FA404F3CA2E684C84C9921EF9AD8 /* native_windows_dns_resolver.cc */, + E67552D31E12F6F80380F059A6A910D6 /* native_windows_dns_resolver.h */, + 1B62BC5FF158B701AF207DD2EBBD4D51 /* nfa.cc */, + 8D7C0AD40E94A5F47C50D5D647C6913D /* no_destruct.h */, + EE650DF3FC6FA05DE592693C14B88732 /* node.upb.h */, + 6E962B948CB636CD55333E3922F449F0 /* node.upb_minitable.c */, + 73A53F6B6E2AA30595E45CF4A33C93EB /* node.upb_minitable.h */, + C636D0BAA6C930BFEE5C22A8DF56A520 /* node.upbdefs.c */, + EEE6ECE863DB1437BAC440A05A44A8E1 /* node.upbdefs.h */, + 29ACFD3F2349F8B2424D25A435F895CE /* notification.h */, + 05B0F7E2DA4C7622645BFDBAA35B652B /* number.upb.h */, + 0E31FA4A344C046C5CD400764D7715B7 /* number.upb_minitable.c */, + B52763F624FE1C178DB3DD4E60492306 /* number.upb_minitable.h */, + C42A1E4EE0CAA197AD5154F679BDBED9 /* number.upbdefs.c */, + 7E6500E9C6B27D79DC31C95876702A4D /* number.upbdefs.h */, + 2FDE16F66F99C642C66008536E4D14C8 /* oauth2_credentials.cc */, + 6D8F4963BA5CD85660FFBD09F4C888A9 /* oauth2_credentials.h */, + 2E33B05535EF5E41EF088B81131A803F /* oneof_def.c */, + 59DCDC71C05CC12DFE2840ADF8B4976F /* oneof_def.h */, + 4E7B4253EBB52E74F4BB8EA50C5B331F /* oneof_def.h */, + DF979BE8F866438BF343CA3E1E5BFCFB /* onepass.cc */, + 253CE005A486D7E19C85B8129CA56F62 /* oob_backend_metric.cc */, + F3195573A457B63C8368D974772BC6DF /* oob_backend_metric.h */, + A4068E4E2CACA9A58C2FDBFC7FDEFCA6 /* oob_backend_metric_internal.h */, + E1743B4BA2782AF21ABAE718EAE81702 /* opencensus.upb.h */, + E0ADC549E03AB200B97BA19D925C1889 /* opencensus.upb_minitable.c */, + EBEDA4A1499E16A91EAB26F29CD43898 /* opencensus.upb_minitable.h */, + 9E4B8B8564778A3DCCABF22F0CEFCCB4 /* opencensus.upbdefs.c */, + A8D5FA44CF02AC9B7057A21A128660B5 /* opencensus.upbdefs.h */, + 81BB687353644AADBED4D8C1ECBEA51F /* opentelemetry.upb.h */, + 90D792311F4BE4082F77734B82C4BF9D /* opentelemetry.upb_minitable.c */, + A9973D7E859A15AFA2524ABEFB0DF3FA /* opentelemetry.upb_minitable.h */, + 002BB04CAEF8B7F80E5EA090FD142D3E /* opentelemetry.upbdefs.c */, + 828A71BE037125559073E603850BD4F5 /* opentelemetry.upbdefs.h */, + 05166F81F7E9EFC2033F0CD3931F9198 /* orca.upb.h */, + 12AFD0B078EE930495202937FB70962E /* orca.upb_minitable.c */, + 7D6666EF9E879FA276C35B21ADD3A790 /* orca.upb_minitable.h */, + 13CF8F05E1387C67750745330B689AB2 /* orca_load_report.upb.h */, + 7A2C79F2995B6AF10EE59D8330F8CD73 /* orca_load_report.upb_minitable.c */, + 17A4705BB1F434F8F5FECD31F803658B /* orca_load_report.upb_minitable.h */, + FC828EBC058334FEC7EA82859235FE0D /* orphanable.h */, + CE33E7BD29BB19BB7E44E173C05D6CB3 /* outlier_detection.cc */, + 6F5B78B979FA81E9FBA05BE7E88499B4 /* outlier_detection.h */, + B886D0C2E02DACCBCEB4949A1417BA7B /* outlier_detection.upb.h */, + BC5DE1E2C6B2170CE161DB8BC65B8767 /* outlier_detection.upb_minitable.c */, + 06FEC60298DBD1A785613DDA33DE7B3F /* outlier_detection.upb_minitable.h */, + 1104196AE9CCB2369F8CC081552F16DC /* outlier_detection.upbdefs.c */, + E91755F205B3699C0F7507D281602DC8 /* outlier_detection.upbdefs.h */, + 08DBBFAF8A8B580E237407FC34F323F9 /* overload.h */, + A29984D6CA3171F4061D9E1AF5568D61 /* overload.upb.h */, + 2F2D07C712CAABEC484B78C3D0E40384 /* overload.upb_minitable.c */, + 37D562817A26369C5CF7D5169CA41274 /* overload.upb_minitable.h */, + 4C0DB927606EDAF4963832D6788DAE8B /* overload.upbdefs.c */, + CE161852803F78EF378AB054EA479C1E /* overload.upbdefs.h */, + D788DAED0109D5E3E422D5243B2C1EA5 /* packed_table.h */, + 6F8AE0A4827BB345F57D451CFCF290B8 /* parse.cc */, + 4C6D96D35F12C99529F8F080C42B9B56 /* parse_address.cc */, + CCCE6C9674D43200B8931BDED7B101B4 /* parse_address.h */, + 129FEA86DE8A1C36D64C7B9EE68EDAEB /* parsed_metadata.cc */, + 12E428052AC3D8C3773B2D305111E446 /* parsed_metadata.h */, + 9E5B3AD64676287314947EEFF1B748BA /* parser.cc */, + EAE08AC4C65240597CB47221E81A069B /* parser.h */, + B1049577D19D75BE33375C98A9B25854 /* parsing.cc */, + 3401891A7528095CFFA9331F9F7B6BA1 /* party.cc */, + 7085DA80666D75FB24D6752BBCFAF39C /* party.h */, + 635A98B640C9717F5943BC027861B8F5 /* path.upb.h */, + EEC396DDEC11E6BCE6BA2274277BF668 /* path.upb_minitable.c */, + 1AA53FA5458D1AE881439E1DD978EA34 /* path.upb_minitable.h */, + EB034D6FF2AEBE7B417288275A41EAEE /* path.upbdefs.c */, + CCA19C5B156FBB9D892D775A3119504F /* path.upbdefs.h */, + 492455E16CF8AF9E7DBD4E8148FC327B /* path_transformation.upb.h */, + 9F1C1760D418DC9010FA1EF42846C05E /* path_transformation.upb_minitable.c */, + F03CDAED5D9FBF0328F025F69758548E /* path_transformation.upb_minitable.h */, + E6EF66EF5FA982D3DF3CC2B7D9D482FB /* path_transformation.upbdefs.c */, + A1F495A82F0CD5BF03685A234AD607E6 /* path_transformation.upbdefs.h */, + 05506C165AF6C06A76BE57297557C485 /* per_cpu.cc */, + 139135380FF57F861C147C30DD401861 /* per_cpu.h */, + 8BD0243C542DECD8525F1FEFDEACB381 /* percent.upb.h */, + 34DE9C6DD82CB885FE2148C40512C266 /* percent.upb_minitable.c */, + F0800EAD18B7FF9347681F4E25BD8B2E /* percent.upb_minitable.h */, + 0EB6D677DFCFB0550A7BCF43590B754C /* percent.upbdefs.c */, + 4110C783316723021A0DBD4FA52893A2 /* percent.upbdefs.h */, + CBEF81F070A25772AFCDC6685B19485F /* percent_encoding.cc */, + 2DA00C41526613AA2CBFCCEFD0302A5F /* percent_encoding.h */, + 6307A093D9BC18D408C2F093BBDF7DD0 /* periodic_update.cc */, + 515283E9D95A7CC03044FC14C20E5EF6 /* periodic_update.h */, + D16DA22C81759A6E4E4C1FAAB4C11526 /* perl_groups.cc */, + 838F39061E11114C9BF20600CE4B135D /* pick_first.cc */, + D755FB028C6CC82F2D6ABF9E44B093AC /* pick_first.h */, + C7B3D34D8BDFD1DB24630F2852EB011D /* pick_first.upb.h */, + CC7235C977F78D2DA62DFE6960935FEF /* pick_first.upb_minitable.c */, + 9867C30C3526556622B304743941F16E /* pick_first.upb_minitable.h */, + FB62C0670659062D04FC95FAAA07CF75 /* ping_abuse_policy.cc */, + 7AE21E989455865424CE0958AEC1FE2E /* ping_abuse_policy.h */, + A8E5AD804AC063BF78242D236F27FBFC /* ping_callbacks.cc */, + 6F7EF0F7CF5C84CE9746736BC4D3A7AC /* ping_callbacks.h */, + 17A9DD3AEDB200F1736DB2BF21C3F82A /* ping_rate_policy.cc */, + 324F3E45A8AFE27F9B40F859E76618B3 /* ping_rate_policy.h */, + 7DCF127BDC10F759E018660B33620549 /* pipe.h */, + 6ACDCF025B07B2BD313DCF5BCA7107A3 /* plugin_credentials.cc */, + 1D7D18194489388681DF933D43B27019 /* plugin_credentials.h */, + 8FE44E256CA75E326F046678158529C3 /* pod_array.h */, + 51DC9C58B7EE5E8055B9DED375592C3B /* poll.h */, + 3AD9DF81E14F838D3B91441C8340FFD3 /* poller.h */, + 1D0F2A4ED30FEBE73CE78A7CD6E2B585 /* polling_entity.cc */, + 5D8AAB532E5D04BDAB9899CBCE1219A1 /* polling_entity.h */, + 7F258025F741EEB3323820BFE562EC77 /* polling_resolver.cc */, + B427E7685A5923A4C9B85ED1FFFFEF86 /* polling_resolver.h */, + F2837748FBB9653E1E6BAED27EBB21AD /* pollset.cc */, + 1B67A0B06607E185F277467D822D23DE /* pollset.h */, + D0C9BC0CEFA97B2BCE4371CF73BFE23C /* pollset_set.cc */, + 1452B3AB7962B019C9F9B8C6163EA327 /* pollset_set.h */, + 1DF61FA96F7F3A4606D9C93D4911C5B6 /* pollset_set_windows.cc */, + 5A513F78FCB0003B74D0D1DC98FF0F8C /* pollset_set_windows.h */, + ADD6DB21101D6BBF4DB89A78584021DE /* pollset_windows.cc */, + B3785B2FCB259680D00D930C5691C4CF /* pollset_windows.h */, + 4647A20C327B2BC18460420ED1BCB0F3 /* port.h */, + DD0BE3AD8AD99CD0BF601BA411DCCB44 /* posix.h */, + 47BB3CC775CF268F825F0841DCCE1FD4 /* posix_endpoint.cc */, + 1C2ACC1088FF89C844BC8F833A38A2A6 /* posix_endpoint.h */, + 4FF5FE0FBAE0BB3881E5C221049533DC /* posix_engine.cc */, + E9AB9F4541AF1020DCED98DF0F29A525 /* posix_engine.h */, + 0F00E229C8D966E7E8D72E079B505B8A /* posix_engine_closure.h */, + 12578156D02A7156FB04142883FFE5DB /* posix_engine_listener.cc */, + 9D241984C954DADDA735F8DAF4A6DA4C /* posix_engine_listener.h */, + 50583497E0194A147FB0D1CCB20F6AA3 /* posix_engine_listener_utils.cc */, + D2800BA967F85ED0C36E2F1A4453F921 /* posix_engine_listener_utils.h */, + FF4A45FF954255D82D95FC26CA4F78C8 /* prefilter.cc */, + 3EC2DFF1B50C5B3AD6B3ADDCC78AF85F /* prefilter.h */, + DC44C019E4D79F61A56306C537EEF020 /* prefilter_tree.cc */, + 5086762C06A68DB3D1A7785F4421A359 /* prefilter_tree.h */, + 8D438913BEEB951F15C704CDB247D50E /* prioritized_race.h */, + DF84B9DFA0A136A6F1CEDDDDC0ACC84F /* priority.cc */, + 655A2AB20C0CC9EAE7EC87DD4157D652 /* prog.cc */, + 1C234FE469BEFFA259C3F4E08AE20C16 /* prog.h */, + 005FDE1922FDD8B34861A4C31C4546BF /* promise.h */, + 637B75ECA0A7B2AA18C3A93B7ECB46A1 /* promise_based_filter.cc */, + A1BF0EADFB4B99D5C80F1840D4629A9B /* promise_based_filter.h */, + 84B43C9307DDEE677ADE964B370D2D04 /* promise_factory.h */, + 7A676128A9EC4154D3B676ADAC0899CC /* promise_like.h */, + 01620ED71B38281B151FEE2227375F2F /* protocol.upb.h */, + 812BD2FE6AB5DD3B4B5E23C97408C7A2 /* protocol.upb_minitable.c */, + 4273EE544A82FC13F1A09DC66D885FAA /* protocol.upb_minitable.h */, + 0239B1E5AD6AAF7BF606794B925165F8 /* protocol.upbdefs.c */, + 1AB41D141FAD4E821D5F919C8610FC31 /* protocol.upbdefs.h */, + 676ACA3C874F9632E32F1B35A7A4AE7B /* proxy_mapper.h */, + BBF19A7B953B59EF681D20BF2682B415 /* proxy_mapper_registry.cc */, + 6EE50F4728219A2FD5A3380A09EE9339 /* proxy_mapper_registry.h */, + 00C811B9EA5F05DE91A47451E051F14C /* proxy_protocol.upb.h */, + DBC7D45EB3FC2467F5C6CB424D19A1C6 /* proxy_protocol.upb_minitable.c */, + 265646EF2B71CD269C23336D2EB19B4E /* proxy_protocol.upb_minitable.h */, + 67F774B71FF34ACC69B987BE6B197190 /* proxy_protocol.upbdefs.c */, + D2D9407D3ED3C98D1A1DC2B17BDF17FA /* proxy_protocol.upbdefs.h */, + B084D75CC01E46D4E5F34CDA777C20D5 /* python_util.h */, + 470E68EA343CB2F510BCBC6B8A1FA27A /* query_extensions.h */, + 0791D00DA8FC3CA38195C68CFA9B0CC1 /* quic_config.upb.h */, + 4D20265072A1FD6E8339F59CAD76479D /* quic_config.upb_minitable.c */, + 0208C59A70EBB18CA7DC9899AAA4A72F /* quic_config.upb_minitable.h */, + A9290992FE2C03257FD12731623091E7 /* quic_config.upbdefs.c */, + 71143274C5794BFA85A403E62572790E /* quic_config.upbdefs.h */, + B1BAD7F854BD2776E319B9C053031ACE /* race.h */, + 910AEE51A5705D122D2DAB966DD1A9D3 /* random_early_detection.cc */, + 8BF2F406BB8BCED24034A2908CD24448 /* random_early_detection.h */, + 191FBD7FDC9E956904AFF0A1E42B50CE /* range.upb.h */, + C837C6591DC1C3026E98DA97B6C441C6 /* range.upb.h */, + FFB9A453713857E07871507B06A5AD5B /* range.upb.h */, + 34F676BA81CBEACECDAF577B0810072E /* range.upb_minitable.c */, + 9CDDB7D58DD0571B03C4B680CBCF10E9 /* range.upb_minitable.c */, + 262735ED2CE526B9BAC4692EA627D33A /* range.upb_minitable.c */, + E5B55BE2F8A77CFEF0F4C987B504AA42 /* range.upb_minitable.h */, + 5FC1C0FBB95F095E35ADEDBE6B3F59C6 /* range.upb_minitable.h */, + CD0776CE3087A3D6BED9B3BE5AAE67C3 /* range.upb_minitable.h */, + 513CC3040FAB2DBEE976571BA8F79114 /* range.upbdefs.c */, + 45B83692BA5D228FF1AEA2670B59DD34 /* range.upbdefs.c */, + 605ED1DC6CDA24862AE0B6FE139CE3F4 /* range.upbdefs.c */, + 4F49004C3DDC45814CED7279F7B40EEB /* range.upbdefs.h */, + E6DC093A8CF3EDC17229CE85DBDA56ED /* range.upbdefs.h */, + 854216F87DBF70FAB2A5154CE6220BCD /* range.upbdefs.h */, + 1387B28BD6CE7214901975BB0AD02F3F /* range2-neon.c */, + 65218002F6F109C1180F1EC0BEED03F3 /* range2-sse.c */, + B2E0095DFFBC1D88C70E1EA45883A0AF /* ratelimit_strategy.upb.h */, + 9481487A24F0F2468457A33F924C460D /* ratelimit_strategy.upb_minitable.c */, + D61D02455FB7F596EE94315BD664CD53 /* ratelimit_strategy.upb_minitable.h */, + FEBF1EAB71221D1F3FD9F5B9B6A818C6 /* ratelimit_strategy.upbdefs.c */, + 764C3829FDD7DD53603435CFA7A139F3 /* ratelimit_strategy.upbdefs.h */, + B7140764D858602161BF13244D4AFC2A /* ratelimit_unit.upb.h */, + 83B7ABF5DC9F22F339327156C9A74845 /* ratelimit_unit.upb_minitable.c */, + 9536430BB48AE38B37A1158459A2D7EF /* ratelimit_unit.upb_minitable.h */, + 327A16D23D15556F50569E28B07D4DB7 /* ratelimit_unit.upbdefs.c */, + A71243831BC5502A74FE27F0568E52EA /* ratelimit_unit.upbdefs.h */, + CB26F04A31432CD0F98CCA8E85482355 /* rbac.upb.h */, + 44F5B928B18375C336AB7A3C626635E7 /* rbac.upb.h */, + 09404067048E95D78F1CF6F0DB77810B /* rbac.upb_minitable.c */, + A1EAD87D867AE9E91F4A616BAEB58CE8 /* rbac.upb_minitable.c */, + F17F7B5049ABB1E34EA9F558ADF427E8 /* rbac.upb_minitable.h */, + 1B6229344D07E0B9A93C615C8CF36868 /* rbac.upb_minitable.h */, + 6ED37B1A216C18100B54FA3B1FBD5636 /* rbac.upbdefs.c */, + 93E172B18670CB2028566B07B7BE7605 /* rbac.upbdefs.c */, + 11BA58EEE52FF5B8747329F5F9C28872 /* rbac.upbdefs.h */, + 4C7C91C465D8F1AFAEED9EDA3454A11D /* rbac.upbdefs.h */, + 34B84D0E19C320BA0CC94FE808D3A4ED /* rbac_filter.cc */, + 494095CB78A4739E53D514CCEB45F6F6 /* rbac_filter.h */, + F9F4F6D73B2B03B0A70402CA20064DAC /* rbac_policy.cc */, + F9F400970275AB4926E4D1FE9B45CED0 /* rbac_policy.h */, + C44432B95CFCBF335B90F777E1AFEA91 /* rbac_service_config_parser.cc */, + 8A5570CFFA8C62DDDF8F93E133B5ECFF /* rbac_service_config_parser.h */, + 4E8AB8E3D4784DFD475CB9F09D5A47A8 /* re2.cc */, + B0F136FDF5E179854B29C648B741098E /* re2.h */, + 82871B96EB3CE7BC0046EAEB271DEA4C /* reader.c */, + 3926DB44435F707EB750EBE109254986 /* reader.h */, + 77CD3B43F0F9D4344A2CB5FDED5C154C /* ref_counted.h */, + 4262B0A964A866EE9A698A6A52A300A1 /* ref_counted_dns_resolver_interface.h */, + 889ADA06A2820CA2210FED703CCEBFCF /* ref_counted_ptr.h */, + 450E96E9F34BBBD81C7991926456785F /* ref_counted_string.cc */, + CECBEF19D2FC13984222A6EA01AA62A6 /* ref_counted_string.h */, + 5A7D849431BDCF0B0F6E5B07B7BACF54 /* regex.upb.h */, + B5FE687C364CFCADFD0975914E4783FD /* regex.upb.h */, + D9D4A827FE8C76DE3011137C66768BC0 /* regex.upb_minitable.c */, + 6F1C276606452DCDE69EE6F07BB6926E /* regex.upb_minitable.c */, + 9AA6E0ED9DBBE8136AC2DD64A718493B /* regex.upb_minitable.h */, + 4DF0981D0F5CBE6B7A4360761E803A54 /* regex.upb_minitable.h */, + 934993FC6F4B97CA9B29F93DAE358076 /* regex.upbdefs.c */, + 25179981FB82751FDB366929E3A6432A /* regex.upbdefs.c */, + 38E53FA9C157518D5D05304408113006 /* regex.upbdefs.h */, + 8D9A479BE9CE60283DBF1DB9B73C853E /* regex.upbdefs.h */, + 1909A8F01183EE5C8478F2BBCE739516 /* regexp.cc */, + A3DDBE30C53AA26B7305D89532E5474E /* regexp.h */, + D4601E2007BB293DAAE07AE2019DA0E8 /* resolve_address.cc */, + 3565F7CFE0E71D05C56F46591346A6D4 /* resolve_address.h */, + 8AAC0BA5E90FB749B1776EEFC2342EA9 /* resolve_address_impl.h */, + 2ECEDC6FF33D214F14F298E9CEC30513 /* resolve_address_posix.cc */, + BB0E553918CCAF8FA5B14CAAF2FE2D92 /* resolve_address_posix.h */, + C91B90B0871D3277820AD583B0E198F1 /* resolve_address_windows.cc */, + 399BBABC4F4F46AFAF404F21AE3B1E19 /* resolve_address_windows.h */, + 45F68D46CC150FEC4E05939BEAB64A43 /* resolved_address.cc */, + DFE6BDF9A7B37A86BABF2DFD7148DC4A /* resolved_address.h */, + 5CFC76EEAE50418DE21A4264AFB29292 /* resolved_address_internal.h */, + 739366C7A48B796D62D96F7EE866C663 /* resolver.cc */, + AA2493070FDBB78D4D27A5B939038919 /* resolver.h */, + 6D9E34A8B1BB7EE16FE03A44FF4297F3 /* resolver.upb.h */, + F2D22DDB17591F86301562ED6A816A2E /* resolver.upb_minitable.c */, + A3EB02BE37D724B14295F97C4E1C3B0F /* resolver.upb_minitable.h */, + 5F8A74D117FB747B2B906ABB8E065017 /* resolver.upbdefs.c */, + 893EE7308B0CA610E2470F38A24279BF /* resolver.upbdefs.h */, + E5B2F6F554AA7BF8CB0C10FCB73B2665 /* resolver_factory.h */, + 8AC3D97CD6C910C2697DA888D139DD21 /* resolver_registry.cc */, + 4C3B76B146875B3D30724F236C83C4C9 /* resolver_registry.h */, + B566B5EC448034456600FF8068F55AEA /* resource.upb.h */, + 01BB092B1776707616B61B1F34D67517 /* resource.upb.h */, + 550EE72EB6E29ED1DADC277A0C4A840D /* resource.upb_minitable.c */, + D1DB18A701B2F79161ADDDFFCEB1A248 /* resource.upb_minitable.c */, + 2EBC2372B5450327DEC77868E0BA6DC1 /* resource.upb_minitable.h */, + CCA4D9479345E718C0C9BE46AE359E40 /* resource.upb_minitable.h */, + 3D8F7A49BF99FCC523C3DE1273212402 /* resource.upbdefs.c */, + 52A02ECFF0680B90008EC3DE845339FF /* resource.upbdefs.c */, + 505F2C19D0EE4A3524AA460499EE6087 /* resource.upbdefs.h */, + 945F6670C8ACDF675B89A12DA99FE082 /* resource.upbdefs.h */, + CADD25BA50F9320F2C9C0FC6C5ED210C /* resource_locator.upb.h */, + 1EF796253C0E5671769584E70B3AF9EC /* resource_locator.upb_minitable.c */, + 754DDF2453DE9BFDAEAB5A3300929F3A /* resource_locator.upb_minitable.h */, + 4E5131C6E1B125D30614E979C06A7254 /* resource_locator.upbdefs.c */, + D1CFB86043358A80A11A48815B36E9F3 /* resource_locator.upbdefs.h */, + 6ED64FCF08B1FC84B49D943DB2C18CB0 /* resource_name.upb.h */, + 4213328F44E2B658E9C950B8FFFC5BFC /* resource_name.upb_minitable.c */, + BBE9D6E161396B9A52EEA1DD9A884B1B /* resource_name.upb_minitable.h */, + 819ABE9402560490D2C3B1F3B5FF4F99 /* resource_name.upbdefs.c */, + CDCDF1D0DE400B2EB66D7F47A74D07D3 /* resource_name.upbdefs.h */, + 0A8D35CC0DAA5C5FF621AB2E9E2DA94A /* resource_quota.cc */, + 2D398958A26A10F74828EB941DACFC46 /* resource_quota.h */, + 529077C05F357636EFDDFC43C0D5BC09 /* retry_filter.cc */, + 3A85CEB4C05814663B7BD46E9EB42C59 /* retry_filter.h */, + 2875F9F7CE4B6512D9DCBCECC1EC51C2 /* retry_filter_legacy_call_data.cc */, + 8EC0312A3667BB4B6BB3C5C9B23D615D /* retry_filter_legacy_call_data.h */, + B4AB655050794EE07678FCF1670B01BA /* retry_service_config.cc */, + 52CCEB29F37E5EAA32C4774C50895B7D /* retry_service_config.h */, + AEBED8B8DC2FFCD82A20E83720FDF709 /* retry_throttle.cc */, + C99AF24C539B90017E5B067665D11B87 /* retry_throttle.h */, + 67B8AA24FDE5EC88BE329667C98EFCA6 /* ring_hash.cc */, + E1FF1A97EEDC57A23F57950A152AB7EE /* ring_hash.h */, + 206F283281F979D4C9857BC2255DE56D /* ring_hash.upb.h */, + 0EE042D45A52BDD76218D07D2D1E92EB /* ring_hash.upb_minitable.c */, + 6FDB47DE229007F4FABCFF1F6B932E79 /* ring_hash.upb_minitable.h */, + 91E70A494068D4F3F717A28589805EB0 /* rls.cc */, + CC66354C2272C751E890DE94F1BE6A7E /* rls.upb.h */, + 373FBE7AD81081C032BF4D71BDF83E80 /* rls.upb_minitable.c */, + 8DE0BBBC854B67A6F58272A39E951DA5 /* rls.upb_minitable.h */, + 7B26B15EF94416A6BF55CD0B2A154B6B /* rls_config.upb.h */, + C13BC52E811A63E3CA58F6F41F76E1D5 /* rls_config.upb_minitable.c */, + 2D5D54178E89B0511FFC1F39D3C1FA1F /* rls_config.upb_minitable.h */, + 4701E21A29FF1F7AE072CADD260EF173 /* rls_config.upbdefs.c */, + CC1D5B2900DA42500CBA26C53C0D8E0A /* rls_config.upbdefs.h */, + D2A8C6021057CA3514E2E84FF047F974 /* round_robin.cc */, + F5E61C8ECC259A78CFA19B7BD0574679 /* round_trip.c */, + 558852DB9B02D89322F08131A3B5E5E2 /* round_trip.h */, + A241EB40948D13FB13C501357C4A0FAA /* route.upb.h */, + 870CD5188086A752173453315BB63B43 /* route.upb_minitable.c */, + ACA7EAF884C4247EA3B05047EBEBC669 /* route.upb_minitable.h */, + 0CC5E51E7A7A4CD4B849A753885E9232 /* route.upbdefs.c */, + 5AE9E3E78472EF7D62E82DB8C9DCA00E /* route.upbdefs.h */, + 6F4C0F3738E1A0BF4319C508736EA0C7 /* route_components.upb.h */, + 66AB27E7BD43720C7AB72368B5BA3368 /* route_components.upb_minitable.c */, + 7E626B20F6E5B43F313859E1B7A9DA91 /* route_components.upb_minitable.h */, + 4538912B20944B48796040C9FEF402A9 /* route_components.upbdefs.c */, + C5431B1053B69CCAA746A445CC077F85 /* route_components.upbdefs.h */, + 2E1C8E546B7CCE5D647C794E37D3520E /* router.upb.h */, + BBFDA995E481674E853E31CF82368834 /* router.upb_minitable.c */, + A214EA7CD6E64CFC844620E5EB3E5AD1 /* router.upb_minitable.h */, + 1DFC2A8277DBF3201CF7309BB6EE45A5 /* router.upbdefs.c */, + 1D3404E050FC33C005D9DB27C770417F /* router.upbdefs.h */, + B87BE2D5F9D870B5889C754DE986A656 /* rune.cc */, + 3909FCD58DD34A75D7644E315F321862 /* scoped_route.upb.h */, + 17B35501BE0EC03AAA5DCE6EFF70528A /* scoped_route.upb_minitable.c */, + 39790BF71A05EEA06DF499F8CEDD82E7 /* scoped_route.upb_minitable.h */, + 8365832229D398A3AFA45C87027F628D /* scoped_route.upbdefs.c */, + 0E3931ACD0B4A6217B458E3390D8FD14 /* scoped_route.upbdefs.h */, + BCCB949E2186E2ED3739344AD272B002 /* secret.upb.h */, + C1EDA0C0B8BAA37E94203A6AA7222F65 /* secret.upb_minitable.c */, + 2B99FCDE13B9F55305ACF7365AD04D42 /* secret.upb_minitable.h */, + 45C2E02193AC9CB8DEACBECE0E446FC2 /* secret.upbdefs.c */, + 30F312C6D2DF5153F2A698D42C2E5E8A /* secret.upbdefs.h */, + 31A09569652A8AC346A7D6ACE57498B4 /* secure_endpoint.cc */, + FB8EA75E31B96D119A51904D19D63593 /* secure_endpoint.h */, + C94692E649EE9DB84264235FB14AEB1B /* security.upb.h */, + DFCBB9C8BA88BF4026D258D2BCEAB978 /* security.upb.h */, + DD168A5F901319ABC9261762DF2872FF /* security.upb_minitable.c */, + D4C00B259E52826AD3F13BE1DDDDF944 /* security.upb_minitable.c */, + 18CDFEB353691C117CDEEC9FB9A9A80A /* security.upb_minitable.h */, + 695E53D01F54281DF30B3BCA8BE068FF /* security.upb_minitable.h */, + 724EF8390234812134B7A355C468822B /* security.upbdefs.c */, + 2E113AAE69D07D11BDC99BA76E5606A3 /* security.upbdefs.c */, + F7440D2D6DB003DC677BE569B7A9037F /* security.upbdefs.h */, + 36809A12E5F78AD80D2330A7AB154EA9 /* security.upbdefs.h */, + 447850E949DF45791A5BDD2035DFE439 /* security_connector.cc */, + 3E42701F635480077E799571518383E1 /* security_connector.h */, + 12B2970BEBF325640623C0874E8456C7 /* security_context.cc */, + 96FEB15F2CCD7FE46DBD34C092BB8CEB /* security_context.h */, + FBC615D9D7BEB83297CE4F2712E71108 /* security_handshaker.cc */, + 3668F71DE277B867F99FF1ADC3A2E3C5 /* security_handshaker.h */, + 08F4AAA7ACF0C3E894733732CC69F28C /* semantic_version.upb.h */, + 4B4EFCAF13EB229900B38E7815576DC8 /* semantic_version.upb_minitable.c */, + BDF0B4A6081B7A4CE140A676D823BC74 /* semantic_version.upb_minitable.h */, + 7C3D5D87CA13A7B195FACE285E7CBC3A /* semantic_version.upbdefs.c */, + C9AA4B068482C1B7DA4AB991E3163AF8 /* semantic_version.upbdefs.h */, + 0505EAD2BA4ACEBE33B4AC7E5D82AA8A /* sensitive.upb.h */, + 88AB505BC7562071B7B9CC81FE9B84F5 /* sensitive.upb.h */, + 3B29410B439ECC404ACDDB43D0FD91D7 /* sensitive.upb_minitable.c */, + 5184861EFD67FE5F9BBB50C2013DCFAF /* sensitive.upb_minitable.c */, + C355760C363A281BB0BD8A82E2358359 /* sensitive.upb_minitable.h */, + 30792D766F3434E8E096EEA8D1F63734 /* sensitive.upb_minitable.h */, + EB479C3C3A7E63E9DBE1A85272DC197E /* sensitive.upbdefs.c */, + 99EE10979CDE9CC2D934B8452F8B6205 /* sensitive.upbdefs.c */, + 6A865CFECECAC270FEA4C03ACAFE36A2 /* sensitive.upbdefs.h */, + CEC7B45047AB8C8288C96FCBAF5FC15E /* sensitive.upbdefs.h */, + B3D0966C3E1529754CD35C7D2C851D3D /* seq.h */, + C3CE467D40FD7ADC5242C107F093DB1D /* seq_state.h */, + 544634A5F6179F52CB7027E0CC112921 /* server.cc */, + 607B4AF2BE4453329C822E396D9A6238 /* server.h */, + 8A17776465696BD8D86B5B3D3E4ADA84 /* server_address.h */, + 62884A38AB75B5B2F9EE8A27AD4FFEEA /* server_auth_filter.cc */, + FDE8281D54FFF00F8B6CD20B4A4FE77A /* server_call_tracer_filter.cc */, + E84F4396968E8AB6DE8331911581D9CE /* server_config_selector.h */, + E847D1CE2342960832C8353CC1BC6A35 /* server_config_selector_filter.cc */, + 099F6BC1C79B0EF25DBF8F7DE2D03C0C /* server_config_selector_filter.h */, + DD099D0E9C171AD9F70C096029E241BD /* server_info.upb.h */, + C10FF02FCB7D83B513D4CCADAB125E5B /* server_info.upb_minitable.c */, + 1F6EC31C322647A6081213C3D0C74467 /* server_info.upb_minitable.h */, + BB0E50FE3FA614C32D686E37B3C3686D /* server_info.upbdefs.c */, + 4AA4D3A6D5A7CE76510A43B0092C11BC /* server_info.upbdefs.h */, + 2526A0755B587983DC01295E004D89F4 /* service.upb.h */, + F089F83C14CF8473FDFABAB4791149A8 /* service.upb_minitable.c */, + F161778C54E0C81B2DB5559524295199 /* service.upb_minitable.h */, + 11429266C24D4F7442171FFF8F9797EE /* service.upbdefs.c */, + C31CAC29D50800B422B9F821B07AF454 /* service.upbdefs.h */, + 9284538AE559FF562D95575CF09281D7 /* service_config.h */, + 195EC0FF6FF60CB384EBC8CD10DF7A09 /* service_config_call_data.h */, + A416A85FFCE8B87EE4857E352A155B05 /* service_config_channel_arg_filter.cc */, + 4F9D94AF926B2C4CADEF20F2771CA5F7 /* service_config_helper.cc */, + F4BC159E4985A12F0A622CAEB4CC7A60 /* service_config_helper.h */, + 94A1592F7D06A7593C29DCA2BA18B775 /* service_config_impl.cc */, + D1726AEC2B2496F2FEA502477C07EEBE /* service_config_impl.h */, + 319B79CE8F4F063308E3019CC9C2ADCB /* service_config_parser.cc */, + 1CDFB6898EE0877961169F16257454EF /* service_config_parser.h */, + 8DC8C29A2A8571BF12B8D9CFC650545D /* service_def.c */, + 286F5B56B89634F5CE73BC95E2C83EBE /* service_def.h */, + D92B5B9F1A86331F6F56AD819E0E12B9 /* service_def.h */, + BAA073E5DCF59F8001017C403B717A22 /* set.cc */, + 3912AEB95FF55EF1747D8254AA528082 /* set.h */, + 16E1A4394AB8E3DA6180F6832DD50576 /* shim.cc */, + 35F8C83F9B5FB9E056AC998C2ED301AB /* shim.h */, + 135F23549C9C46CAF62BBEFDE84EE03E /* simple_slice_based_metadata.h */, + EA2C0DEC57DF05B3BC63FE3BE6C3CFA9 /* simplify.cc */, + C273A191287CCAA0979DC026DDDCDAD7 /* single_set_ptr.h */, + 2FBEB75F8C21E4E5A5E2C0FA3F065DBE /* skywalking.upb.h */, + EBDEB63B9532C8A56255CBFC5F2D59B7 /* skywalking.upb_minitable.c */, + 05DB355DC0EACEBF6A0B5C8D69360763 /* skywalking.upb_minitable.h */, + BDBDEB25439F7D6F827019DCA0D04F5C /* skywalking.upbdefs.c */, + 1A963C250CEF0B2E1D59C8B588A1744C /* skywalking.upbdefs.h */, + 001A3B5F66D7AC2F2B95EFC3EE3AF352 /* sleep.cc */, + 2E1C687688E4179E43A8146A8A34F28D /* sleep.h */, + 2A2ED0D8F1A0BEB049DEAC9E1E6EFFA6 /* slice.cc */, + 5E6E3C4755BE0304C03AFE804909D0FF /* slice.cc */, + B0B9C25FB7463848DDB0BA395DE1C722 /* slice.h */, + 20DB3B1BBA877184F8BAA1AD8C4343DF /* slice_buffer.cc */, + 11C7C71F95E6B821CA04414968253420 /* slice_buffer.cc */, + 01498FA2FD594454D5030E277156B269 /* slice_buffer.h */, + CAB4A9A40E8DD8556CE89DEF326F707D /* slice_internal.h */, + 1D8667A5FDDA75125E10C518554AF39C /* slice_refcount.cc */, + 26FB4DC14BD60FFF27F46CFA4536DA97 /* slice_refcount.h */, + 762C0B1A2FB7FDE676F7D47A67E4F8EE /* slice_string_helpers.cc */, + E72EED7E1B2F60D650302D4632612511 /* slice_string_helpers.h */, + 3BAD0DC8E09418ADF6ED87C529C3E36D /* sockaddr.h */, + 3898D90349B37CFA2F2BD513393E50F4 /* sockaddr_posix.h */, + 2DA6FB2B8B4315AD56C09D2059C002B5 /* sockaddr_resolver.cc */, + F65D3D10816018E6F9F38925381A38C4 /* sockaddr_utils.cc */, + 3B445ECFD1BFF6B38095C04E8DB34855 /* sockaddr_utils.h */, + 1ACDCA1C46D56E00091B90CD18C77C6E /* sockaddr_utils_posix.cc */, + AD0BEFA1A101DF255F933CA3E24DDA74 /* sockaddr_windows.h */, + C739F281A89E8C053EA6B587FD695427 /* socket_factory_posix.cc */, + 6EFC6210328D0AECA05555807D405DF3 /* socket_factory_posix.h */, + EBB2EA5F6AEDBD8E64EB156B045D5356 /* socket_mutator.cc */, + 71D1EDDC59631D1F882FB7C2A85F9159 /* socket_mutator.h */, + E00893F8B7F2892A483696ABDE8E2537 /* socket_option.upb.h */, + 45EF2E143A14563D31D106DADF9F3482 /* socket_option.upb_minitable.c */, + 9468C5C40043647C7C2F85C53553BC29 /* socket_option.upb_minitable.h */, + 838A508144F5F5F5510DB17F78294CB3 /* socket_option.upbdefs.c */, + 5944D50D48A5B70C2EC5D4F4860B1753 /* socket_option.upbdefs.h */, + D3B6E5614BD7670DAB4242F2391580A0 /* socket_utils.h */, + A90CD91C2CA9F3DE5D3FD78499B8E49B /* socket_utils_common_posix.cc */, + A6783443F1BC5C670643A1AD06C3AB73 /* socket_utils_linux.cc */, + D060A99987A09FB256765E404E1062AD /* socket_utils_posix.cc */, + 5085E25245EECD9BF35418053995D3A4 /* socket_utils_posix.h */, + 07FCC7C7077CA637A86C17F5DC2566AB /* socket_utils_windows.cc */, + E8F9754309134FFD36E727ADED311226 /* socket_windows.cc */, + 630FED3E77F91B86D2085032CDB8E11B /* socket_windows.h */, + C8DC95569442372DD857604A95DB3028 /* sorted_pack.h */, + 0CF4D720930238207C2311F547ECDDA7 /* sparse_array.h */, + 70F7CADC88C5CC3CFA8A8AC65BDFC6A3 /* sparse_set.h */, + 430B809D104C159A84D2687EB355C365 /* spinlock.h */, + E325163F5134AA7543495793C126B81C /* ssl_credentials.cc */, + 35F7E5549B387FF4D2F6749F2DA954CD /* ssl_credentials.h */, + D5711B42A4F61F9DBC534878334F139F /* ssl_key_logging.cc */, + AC3F17882BB5E6303C3DFC803432680F /* ssl_key_logging.h */, + 88F147F33B1D594F290392C52817F460 /* ssl_security_connector.cc */, + 662EB73880F51F07D408F80C66A7CA88 /* ssl_security_connector.h */, + 1B61C9A08380AF73479306F79B91A346 /* ssl_session.h */, + 111027A799574AB6A5BCB58103174848 /* ssl_session_boringssl.cc */, + 8A3361D9345523DD9A5EFFB0332DA1AF /* ssl_session_cache.cc */, + DC962AEE00FB2CF7639E58A04739C255 /* ssl_session_cache.h */, + 44F8C0EEA6D1B7470473BF58D5BD0127 /* ssl_session_openssl.cc */, + D022BACF59542839A3F36F74C65E3400 /* ssl_transport_security.cc */, + CB644AE3D6C10C2933BFE98A8FAEA4B5 /* ssl_transport_security.h */, + 7BC9BE8EA97FBF78927FA3656190EF21 /* ssl_transport_security_utils.cc */, + E505A8D53EFE792BD0DF1FF87B1753DB /* ssl_transport_security_utils.h */, + E13E8ABB8313048C7AB7C3BE34311959 /* ssl_types.h */, + 6CADAD80495300BBAA75564A9A24AA02 /* ssl_utils.cc */, + B1DBCAD7C85D2A94478872C800211D61 /* ssl_utils.h */, + 48E89A501E903C80A214542DDC55A99B /* stat.cc */, + 77C74072B37A028D4905D1843F3753C0 /* stat.cc */, + 783EA8F119EDF1FFDB9653B87260F597 /* stat.h */, + 56470AB90F2B6FF6463FE57FD3CE2523 /* stateful_session.upb.h */, + 2BF8E6E83426025C6771927041586D54 /* stateful_session.upb_minitable.c */, + 8E46A971760A422CAF88A90F05141A25 /* stateful_session.upb_minitable.h */, + AFA11A1FEB194FD02A19A5BA48562BA2 /* stateful_session.upbdefs.c */, + 811D4F55C6814BF00181E5C067369C99 /* stateful_session.upbdefs.h */, + 906F49F6BF6D8C858E8C30FE94697A99 /* stateful_session_filter.cc */, + FC626C3ABCE615F68F6622071BF4D02C /* stateful_session_filter.h */, + 428264C34AB09708C9E16D39160F516C /* stateful_session_service_config_parser.cc */, + B0BF56EDFA54A7949A5A3C82421E8CF0 /* stateful_session_service_config_parser.h */, + 98865B818BB8EF47083F25B283777988 /* static_stride_scheduler.cc */, + DB1151041A1E5F63DA2CF2CAB23C6B13 /* static_stride_scheduler.h */, + 2F3F1527B476C8B3DBA566706D4F7F03 /* stats.cc */, + 767C2BD8FC610178F1C4801AB4A51265 /* stats.h */, + 09733CFBCE6B0C53A6BC20CB2F08BB61 /* stats.upb.h */, + F98290DF171E37B63936940D8AB5D911 /* stats.upb_minitable.c */, + 7EB03A6E04E270160644D04592B275AA /* stats.upb_minitable.h */, + 2E48CC40F0D729BCEBA764449017BA0A /* stats.upbdefs.c */, + CB5C64ECA8B37B101CD6F142F9DB2BFA /* stats.upbdefs.h */, + 0A1FA172CE9C96E7B42215E937C519C1 /* stats_data.cc */, + 58019019C02E1CCCD55C30ECF4B2BF20 /* stats_data.h */, + 9F44F5AE8D7E6FEACE180E0F3BD93F36 /* status.c */, + D67DA71FBA2308277DB011354B7B63AB /* status.h */, + 404296028BD0409F9BE60821F5C79623 /* status.h */, + 3C59EB1034149C9E184B2E02082DC021 /* status.hpp */, + BED96D4B82C8DC0E276CD5432133E028 /* status.upb.h */, + 7CE4A03F5CBE5CFF82C6D16292FF9CEF /* status.upb.h */, + D791CDDFF9D6D48697A5EE052AAC3CD0 /* status.upb.h */, + 01DDA8A6943C8067A84D50B9057552D2 /* status.upb_minitable.c */, + F3F363F46E2E686DECB811B5873B4619 /* status.upb_minitable.c */, + E3A0C4FF8F701F911C0F232F575BEBD8 /* status.upb_minitable.c */, + 9F3D871188D7F7C9DE7F1D68B13C6052 /* status.upb_minitable.h */, + 16F860F616E4B46B2D43E12AA1681714 /* status.upb_minitable.h */, + 6639F825B1F5D0EBA9E94470D661844D /* status.upb_minitable.h */, + E5BCB7350BC184041797E26EE53DF900 /* status.upbdefs.c */, + 96767EAAE4E4BEDC2C2A56C323985337 /* status.upbdefs.c */, + 34EAAAAFD2A37F14EA04570FF5D80834 /* status.upbdefs.c */, + 27E03352CB121E5B0A3755572C817ED2 /* status.upbdefs.h */, + 511D4D3CA962140E858FDADA7E49B402 /* status.upbdefs.h */, + 9BD864EB18CC0DF745F5CF17B745725C /* status.upbdefs.h */, + CB5FC1623310A03CE949EB3FBD608F59 /* status_code_input.upb.h */, + BC61F4C4E0B88A5EAE49D319FB76DE33 /* status_code_input.upb_minitable.c */, + 0A26E80EE65EB95E6CE963FD13B682D6 /* status_code_input.upb_minitable.h */, + 894D04C68F9A2419032770780331F42D /* status_code_input.upbdefs.c */, + 2D3C36CF56C53B293DC7CEF1A639052A /* status_code_input.upbdefs.h */, + 107DA8B7EE6737AD27FF084AC1356A4D /* status_conversion.cc */, + 1EB9F88E9743029D9F84B1FB49BB5846 /* status_conversion.h */, + 152BCD53FE551C101C2371294C33D3EB /* status_flag.h */, + 89C70D7C05FB2FF73668F90B441DEE4C /* status_helper.cc */, + AD7A6710522D06E0F1CC7067623893D5 /* status_helper.h */, + 76C8356D5073B835856131DBB06D9CE6 /* status_util.cc */, + E30E509DD690EE960857E0AC18B77033 /* status_util.h */, + F1F16A5A805502A0733DDC416BF957F6 /* stdout_logger.cc */, + E8421D0BF7F26B9830B73ED34DA3FE5B /* stdout_logger.h */, + A23F05121D096FDD4655C7C46C2EED3F /* str_table.h */, + F1FAFFE50E6359733C4F9640DA29D577 /* strdup2.c */, + 0F450728216B10BD7F908C6F56EE37D0 /* strdup2.h */, + FA4AB69EFCC57FAA398FC82FAFB40C8E /* stream_lists.cc */, + 92BBB7CCEFA5796C2324B260A9DCB4B3 /* strerror.cc */, + 4C8678D653544D1A79D205F57BE206C3 /* strerror.h */, + C39B0DB98A88997FBFFB8E04932610CF /* string.cc */, + 58E9686C6725D8EDD3F973B36B7AE209 /* string.cc */, + 23804509902986CEFDB91AFD781C78C8 /* string.cc */, + 756281746FE406CE82B9E8D1984DC321 /* string.h */, + 217D1534936EBE2333CC1F6775AE73D5 /* string.upb.h */, + 13E27735B6BC41DD31AD37DB0B55EA4F /* string.upb.h */, + 8C7C04088CFB50D20A7F0D0ADC8EAE97 /* string.upb_minitable.c */, + CAF97721D6A3D114EDD9EEE40ED32D35 /* string.upb_minitable.c */, + 61D10A5DCEC213563BCF20F44B0ECC44 /* string.upb_minitable.h */, + 07CB0EB5C4DC5A866277758CFBD1D6B7 /* string.upb_minitable.h */, + 9B24D020EA817C6AC2345BD4E4CA39D3 /* string.upbdefs.c */, + 227878292F7BA06CD24EC451AACC7ACE /* string.upbdefs.c */, + 7CCD279258DE737C427441B3F9B2619D /* string.upbdefs.h */, + 26DA371F40F3E59D10F746648D1DEE34 /* string.upbdefs.h */, + 4FD702A719100E8F9BF233A691EFDBCF /* string_util.cc */, + 827DFD5EA9639BE29190D8221D52813F /* string_view.h */, + EF40251118BB1CE4A443CBB86FEA4615 /* stringpiece.cc */, + F7718106458628E535BE14C8F5E93C78 /* stringpiece.h */, + 1FE6A7ED47D45D7204612AB32BF54871 /* strtod.c */, + 26188589D07D58FB4860C6A3F2B68A30 /* strtod.h */, + 571FA01481C452247E5020B939B68446 /* struct.upb.h */, + F475EDC8FB68E501C960DEA278244135 /* struct.upb.h */, + 135631D907C74EA4C8F05A8337A329F0 /* struct.upb_minitable.c */, + BCB6B9B277D901673B2FBB41D73F2294 /* struct.upb_minitable.c */, + CBCA1C8B3B17D9B5FC1FE27E9797E4AC /* struct.upb_minitable.h */, + 5A8F67A3624734AFC3F0750D214BFCA9 /* struct.upb_minitable.h */, + 2C7C8D087C070C01A79C3F159215418E /* struct.upbdefs.c */, + 2FCD721004BF4F007647A2743B3F4C46 /* struct.upbdefs.c */, + 16FDC49F110EFEA90429DCBC961921FA /* struct.upbdefs.h */, + D902D1670582C13FB6341A1373D8C8E4 /* struct.upbdefs.h */, + 75E6C3B59E1DB27910E7A6A7C35BFDB1 /* strutil.cc */, + BF19ED4520C949477951EA8107218BAB /* strutil.h */, + 8C71EBF16D551B8A59AB4AA5C44588A4 /* sub.h */, + 45D8439742E1A4F1F3312A23DF2B9BFE /* sub.h */, + 26845FAE7A655CD4D2B32868BA96C49D /* subchannel.cc */, + 2A6B1512856BAEBD8F259304C7C93E8B /* subchannel.h */, + D17A2F24CECB77701C0D6CA93F8B5331 /* subchannel_interface.h */, + 3A2872619FB39761007FDBC92CEECD0E /* subchannel_interface_internal.h */, + C13B181085DFBB736B50F5CE321CD77F /* subchannel_list.h */, + 74A0BB88F69DEF2140CEA066A25C2AE4 /* subchannel_pool_interface.cc */, + 528351337315E599B2016AD9F8946F61 /* subchannel_pool_interface.h */, + 351CB392135AEDE58C8A160BCA192ACA /* subchannel_stream_client.cc */, + 80B73572591B33E9B835CB9E89EBAFDF /* subchannel_stream_client.h */, + 4807B0A0E23BB4EE2C1F181A2A95DECD /* substitution_format_string.upb.h */, + 6D2F8123EE51CE42A93569C3A8F2D14E /* substitution_format_string.upb_minitable.c */, + FD9759F3AD68DF73DBD8D5F184879AD1 /* substitution_format_string.upb_minitable.h */, + DFCA33E1734D74F7EF3577B07B5C6FA0 /* substitution_format_string.upbdefs.c */, + 9077B079890825456067366E7FF08DBD /* substitution_format_string.upbdefs.h */, + F5CEE9E369CF1EA76B66C2F5BD7772C8 /* supports_fd.h */, + 96ED0217C973958FCF6BB8A425EB881E /* swap.h */, + 750473E5F8C5B873611001BC018E407C /* sync.cc */, + 46F65140EDF246F99A41DAA9643FC884 /* sync.cc */, + 02D9136B2BAD3886D7C81C724C8CD75B /* sync.cc */, + 5255348D483C3A8B784CA6E21A52C971 /* sync.h */, + 990D7A634346596D5A7EF74AF93967D8 /* sync_abseil.cc */, + F2807656121FFB9EF4FEF4B3D6848AFF /* syntax.upb.h */, + 02F6CEB75F1848E486F241A2C543461A /* syntax.upb_minitable.c */, + 6761D667B96BD70246ADD5AB69E4AB99 /* syntax.upb_minitable.h */, + 922C7343DA0C7DD3D66119CD4807189A /* syntax.upbdefs.c */, + A290AED07D27250B3D14E4D0CA449F8E /* syntax.upbdefs.h */, + 44930D38DB7B08058DF865A8E20BD20E /* systemd_utils.cc */, + 961E527BC8686C0FD202C2BE30E91ABD /* systemd_utils.h */, + 834B966584AA9E6EF4BA4F5A9C55328F /* table.h */, + AE5EA098E3A0EDFBD639BA0105E60CDA /* tagged_ptr.h */, + 5109D4E409488FBF3C57A788252286D9 /* tap.upb.h */, + 3248578D4FF57A9AE81327BDF7DC3F17 /* tap.upb_minitable.c */, + E0CAF3B55F6062372BB232C4E796F8B6 /* tap.upb_minitable.h */, + 8A5196EE9A7F80B86D7DAAC724BE2F37 /* tap.upbdefs.c */, + CF860ADF4B6DBFBD92AB24314971A38A /* tap.upbdefs.h */, + 4EDA9B7D9F16AFBD1CF298836055A27A /* tchar.cc */, + B1367008FCE7E88213D56A69DEF93A5A /* tchar.h */, + 5D648319250A4425DF19B80E55390453 /* tcp_client.cc */, + 66529EAF8FB7F3E56613959AFA0BF751 /* tcp_client.cc */, + BCD6BE33FACFA28BE27C1752638304CD /* tcp_client.h */, + E07E9F26A8C8E4D6968AB7E67D3B45BB /* tcp_client.h */, + FBFABDE60C3489264C13F3486EEBF5C4 /* tcp_client_cfstream.cc */, + 6932997A3C17E8527348925BB1618BDB /* tcp_client_posix.cc */, + 0FCD700738636B115CA0D7CF514F0ED3 /* tcp_client_posix.h */, + A77034D42547884F23BAA02E22614B85 /* tcp_client_windows.cc */, + F41BCC593934B22A87A2066A81A77AF0 /* tcp_connect_handshaker.cc */, + D3938536D0A1B83C8F413A6C30641FDA /* tcp_connect_handshaker.h */, + 52E031A728FC0EFC1BD71A918550BF0C /* tcp_posix.cc */, + 7AD6E166E21A21C82FE7FFDD774D8A54 /* tcp_posix.h */, + 7CDF3ED2FE5E4D13CFAB1AFB04967A6A /* tcp_server.cc */, + 9C1C32B02D9053890FF4DCF44F13826B /* tcp_server.h */, + 5491274C1AD334EA7FDD43C95333B8A6 /* tcp_server_posix.cc */, + 7751D2F359D542F4C5F31C687F7344AA /* tcp_server_utils_posix.h */, + 4B9367272D6CCC0F66E4930ACA2611CC /* tcp_server_utils_posix_common.cc */, + DB86404E074CCCDDEA14258D54D8FB60 /* tcp_server_utils_posix_ifaddrs.cc */, + 994DB3EC6A65F4C8459EE129313735F3 /* tcp_server_utils_posix_noifaddrs.cc */, + EC407F57B849D30D04B1C8FA46F6D06B /* tcp_server_windows.cc */, + 469AB61AF50D7C519A81A70FCE4D0824 /* tcp_socket_utils.cc */, + 80719D91D6683EAD4310FDB89B73798E /* tcp_socket_utils.cc */, + EFA94A3D413ABE74E1248B4FA8F6B306 /* tcp_socket_utils.h */, + 76010ADBA30FF1243B36A8720B4BDEBE /* tcp_socket_utils.h */, + 1894CDE8AD4DE294E7F6A2D68FAE1C9A /* tcp_tracer.h */, + 6DF67631854C3339CEFFDC458CA27F8E /* tcp_windows.cc */, + 8E0398F98DE22BCE2D5ACA65FD3070B8 /* tcp_windows.h */, + 754581895145DFDE7345D153A67636BD /* thd.cc */, + AB5A210C7D1C45B7C1EDFADF3A97BA91 /* thd.cc */, + 0AC24528FFFFD76AA1DAB8B44063A318 /* thd.h */, + 3E0130BCACA7BC76A58902A8C97DBF8B /* thread_count.cc */, + 88FB4BC4F52333F5FB81E9677A8616E0 /* thread_count.h */, + 8EB8A3931BA78C8CFBB5363DA996CBEF /* thread_local.cc */, + 18AB774F1C1CE4ED9113526E5E44DAE4 /* thread_local.h */, + 0D9756B83E5ECB19C3847A89C98EE2F8 /* thread_pool.h */, + EC9945A32AF477B4DC8664B24E11F5A0 /* thread_pool_factory.cc */, + C565EDE80A45E49DE25870DC72CAFA4B /* thread_quota.cc */, + 61B2C9E079C8ED1F2F3804574668504A /* thread_quota.h */, + 8457ED27B51AD6FFF7850DD693D102B5 /* thready_event_engine.cc */, + 884D5865A64EEAF2C0F0A5D660CB096F /* thready_event_engine.h */, + A23C841F9D82A03CD8167C5FA0ECEE8B /* time.cc */, + 4A64E2EAD57C355DB2C9447B676EAF2F /* time.cc */, + C04417D143FD9056D6F4523C379F728A /* time.cc */, + 052909F0A2A4216848B164105741F34D /* time.cc */, + 1E84BA4DC8ED02735CFC127345C08E68 /* time.h */, + 00D5CEC50C73631B9856263E676D38BC /* time_averaged_stats.cc */, + 702657EE6A06843D795E1F6AAD7E5463 /* time_averaged_stats.h */, + FB05DA9C49C18DE3E8BAD930DFCF7174 /* time_precise.cc */, + BDF47BE94199BA6DD7BDBEBC7DDEE11C /* time_precise.h */, + 0B3CD1916A62698F42E599AADD2B6420 /* time_util.cc */, + 1B6BE6CA658589AF89F36C72C51141C3 /* time_util.cc */, + 75F04D47BCCF5E019DEB69181F0B97D8 /* time_util.h */, + 2B7CCEDCC195347F2A9BFA3AE3959CEF /* time_util.h */, + F2B19DEC830A2FDB116E84FB2B500EF3 /* timeout_encoding.cc */, + 0C099D1AB937AA8514F2A9D8FFAC0DB9 /* timeout_encoding.h */, + 5788D3BA0B307F728027B1E82D1F7F32 /* timer.cc */, + 7681A99833DFC29B49E76586E47B4749 /* timer.cc */, + E48075EDE88BE4C97C82232F54CA878C /* timer.h */, + 9A98233DB38C7AA336BCC5312CFA4F0C /* timer.h */, + 9F921E4372A9999BF2BBA8DF2F0DD15B /* timer_generic.cc */, + 312267514EB8F4C7FEA7345C8559C202 /* timer_generic.h */, + 870EA786718466F55F05BD043D9527D4 /* timer_heap.cc */, + C663CC81BFE9772BE7403B9F12B04EA9 /* timer_heap.cc */, + 81BB1E6D3AAA38DB3A7794C70D6357E0 /* timer_heap.h */, + 1A120536B1713C47E76AE899FCEAE204 /* timer_heap.h */, + BA6AF4589A6BBDB5F8373E7F27DA92BB /* timer_manager.cc */, + 215254EAC6327543B4CBCE2583DB6653 /* timer_manager.cc */, + B62579B3CD6D1BED7BD67F0F1DA3AB33 /* timer_manager.h */, + A40499E4A18034B5032E086973120A89 /* timer_manager.h */, + D23CE9225E5761C795FD0B1BD10D44BE /* timestamp.upb.h */, + 91FCA79D074D0C5BC8F541F8F7998FC4 /* timestamp.upb_minitable.c */, + C9EBAE7108E63A9DF04BCA3AD9B3953B /* timestamp.upb_minitable.h */, + E07F048B07A9BBFFECFD6D9FF2BE309A /* timestamp.upbdefs.c */, + C210822C5822E7AFA0321FD15FA04A14 /* timestamp.upbdefs.h */, + 8B547A061E368D686C491C3485761144 /* tls.upb.h */, + EB86DF5BB2C3B82A1FCE19DBA8D71E41 /* tls.upb_minitable.c */, + 62EB7E95CF862DE42645EC6B40DECA19 /* tls.upb_minitable.h */, + D4E2D63525F96F7DD7733FEA9275DAE2 /* tls.upbdefs.c */, + 03398E0505A3C705A1DEF3DAA4DCF3DC /* tls.upbdefs.h */, + B302C09BC4F54309768EE89F711653EF /* tls_credentials.cc */, + 3249D83376DB68858EB11310C25D2848 /* tls_credentials.h */, + 7D564562316EB5EF0CBBA966D156E88B /* tls_security_connector.cc */, + 418791A362A4C145F3F02EE5F58AEAE8 /* tls_security_connector.h */, + BD1492D1D9E3C677DE7AAC241EA54CC6 /* tls_spiffe_validator_config.upb.h */, + 8D759464BBE7309A9FA7005D312B21DB /* tls_spiffe_validator_config.upb_minitable.c */, + E62E8AD2C9FAA683A293044A73D5EE29 /* tls_spiffe_validator_config.upb_minitable.h */, + 5EC97FD894BF5332876B2CEFD05C3152 /* tls_spiffe_validator_config.upbdefs.c */, + 00A3C5A76EB6325C1F532F998A4958F2 /* tls_spiffe_validator_config.upbdefs.h */, + D744B47B69C5F517E0492756EC3F0EB5 /* tls_utils.cc */, + 39653BB49DC1A4449E117774A7318BE4 /* tls_utils.h */, + A47CD34AB931A38DEEC12025F0D73309 /* tmpfile.cc */, + BB431513CE6BB59D401577F3ADDA7E43 /* tmpfile.cc */, + ACE7D1D0A2BD2EE17BB81AC243506556 /* tmpfile.cc */, + 8CA1A3839C30E03D425E87B9B350AA11 /* tmpfile.h */, + 0C1717B1A0762C628B47EF08AD76905D /* token_bucket.upb.h */, + 6A224F73F33DA8A3C02A3C24B55091DE /* token_bucket.upb_minitable.c */, + 417C87EA0DE3A70CA359F579A2E57281 /* token_bucket.upb_minitable.h */, + E16457D1C504E8BDEECC5ADA14056667 /* token_bucket.upbdefs.c */, + 58A77C550850A1EAAB2942773EBA1C72 /* token_bucket.upbdefs.h */, + C7BFE2F061AEA02AD29426E477844710 /* tostring.cc */, + E3C7ABE7BEACEC537427869586E990E4 /* trace.cc */, + 1F07C38C90BCD4AA184FF712117FD11B /* trace.cc */, + 1C0216D9D247B32F4D6E42E52D9C5589 /* trace.cc */, + 0F5E214925B612BF55D26D57161EC733 /* trace.cc */, + A7A5779B12A40DE7B1823D1858E94F0C /* trace.h */, + C59F7A07308B84035C60CBA4ADE93FDD /* trace.h */, + D0A1A836981B12139527B2A62E2C825A /* trace.h */, + 1113D75D7EBF9099F244C81D614A910D /* trace.h */, + 66E9F527B7AB84718D3FF69A78F1BC4F /* trace.upb.h */, + B1B813F26E57C67E3CBC76288F80EE5D /* trace.upb_minitable.c */, + 73F02D3C51C7B76AD551148EDA431BF4 /* trace.upb_minitable.h */, + 00F75B0EF0E2D6F28FE827F44748D332 /* trace.upbdefs.c */, + C393828E3611A0514FE5822DE0D83FE3 /* trace.upbdefs.h */, + 42A7BD509DB669554785042138614EF6 /* trace_config.upb.h */, + F10B3F014BE8EF39DF40658006B6E772 /* trace_config.upb_minitable.c */, + AF21B2DA51F28FFE184F0AC17A6064E2 /* trace_config.upb_minitable.h */, + B572AF0D232EC364C4107CDD6089EE1A /* trace_config.upbdefs.c */, + FA927C16905B61252CAA06767A09E9D6 /* trace_config.upbdefs.h */, + 4AB75F34EB5CE44C6D7A3E3B5FDCD811 /* traced_buffer_list.cc */, + 3EF32F44C5915F51A017BA30D638EB8E /* traced_buffer_list.h */, + F93D23EB535382F83664CCD687403179 /* transport.cc */, + 4159CD378B07B500BB26724A9649F928 /* transport.h */, + 3405AD789CA36E530A6C93510B207016 /* transport_fwd.h */, + 6D99A6C95B2B8F522054E716D8DF24CA /* transport_op_string.cc */, + BA308F9CC9D9DEC44536CE346343F6CE /* transport_security.cc */, + 7120AE35EBF130B3091FDE9F4BB41AA9 /* transport_security.h */, + 6FF3B7E630931C51941ED486D63A8F92 /* transport_security_common.upb.h */, + DFF159F9D42AE3A2DAE6C41B2C405B41 /* transport_security_common.upb_minitable.c */, + 12A4936858FFE88656661FEB0251EC48 /* transport_security_common.upb_minitable.h */, + 12AFF6F4310683561FC281C1B13A47B1 /* transport_security_common_api.cc */, + C6DC9A7BBADC6952CD63A55E800F7EB0 /* transport_security_common_api.h */, + 07F3BEABB27B04FE0AE8E6A78645D122 /* transport_security_grpc.cc */, + 28EDBEC54F6BB9F122AE4783A16CEC75 /* transport_security_grpc.h */, + 63D63AEC5776C2570F3BBA290131277B /* transport_security_interface.h */, + 8BF65047ECB1FBCC073297BFC0D38876 /* trees.c */, + F100167E1BA7B5E787231793F97F2896 /* trees.h */, + EF9397AFB5B339F38E878E6171A4C330 /* try_join.h */, + D60102CA12937890CDEDFA66BFE36FC7 /* try_seq.h */, + 49BE36662EFACD6B8A340BD8D1C118EB /* tsi_error.cc */, + FB2B35A874851C321EF329E989399184 /* tsi_error.h */, + 11CA2CD28D5ACC35E48EA30E0D8417E8 /* type_list.h */, + 511C159DF4F6A0239DE6331ABF01FAA3 /* typed_struct.upb.h */, + 1ADA24C25CF60AC5D8F637A76BC24AB3 /* typed_struct.upb_minitable.c */, + DEE8BDA43C8E8BF455CCDCC3C6CFC6CB /* typed_struct.upb_minitable.h */, + 194FE357D19680F0443375602453A1E6 /* typed_struct.upbdefs.c */, + 50F4D13BFA38BABFA51066F774598572 /* typed_struct.upbdefs.h */, + 749F875413EF0D34AD54421862D3B399 /* types.h */, + 98D01573EC9CE6EA60F27F4E91A956E4 /* types.h */, + 5BA07169A088B333584848676CE1711F /* types.h */, + 9FC9CC34E5656BF03856478F093ACAE9 /* udp_listener_config.upb.h */, + 34F7835F506D9D8437C74AC0CACFD4A3 /* udp_listener_config.upb_minitable.c */, + 6D90E0C45F8E535974B5F049713086A9 /* udp_listener_config.upb_minitable.h */, + FC279010110CF681AB906A3657312A68 /* udp_listener_config.upbdefs.c */, + 6585B17091334FEDA1A71C65012FDC1D /* udp_listener_config.upbdefs.h */, + AB9881DD4F24FB1A01C0C5954F941E4D /* udp_socket_config.upb.h */, + F54F4D170FD00F5AB27554A4744FD675 /* udp_socket_config.upb_minitable.c */, + 462BFA9BD4AAC20B74D100C51E871B96 /* udp_socket_config.upb_minitable.h */, + CAE6A6F3E580472B76B60B6521F1393A /* udp_socket_config.upbdefs.c */, + 2EAE2FE83D15AC08E0EBC818EB951B0B /* udp_socket_config.upbdefs.h */, + 66F1D65AAFD39A05952F4349829ECDEC /* uncompr.c */, + CDD03177AD567F42E6C685E45F5ACDDF /* undef.inc */, + 375CA0EDABBDE880183065C124D34781 /* unicode.c */, + DA6742A15D25027A572A9660DD2BA277 /* unicode.h */, + 28CA4DD4A5655DBE4A3E411889B4C0C9 /* unicode_casefold.cc */, + 401F07B66BE397BC40F5F28FEC6D0EDA /* unicode_casefold.h */, + F94B3D1B09863C0AA114DB7BBD44A161 /* unicode_groups.cc */, + 39830D1953A20F4FC26084DBB810E0F1 /* unicode_groups.h */, + 943A82D6E962FD0F76A8C51C2574335E /* unique_type_name.h */, + CBA7993AAB88F38CE4F4665E3C1E72F2 /* unix_sockets_posix.cc */, + EEBC42FD007B030C9DE8B3C6AF8C6FB8 /* unix_sockets_posix.h */, + 08F1646845685321FB671FDDBA053271 /* unix_sockets_posix_noop.cc */, + 1FF785AD622F0A3DF65D916157DDDAC7 /* upb_utils.h */, + 68CC5B1967E1FAB4FEA8FD80304B3C13 /* uri_parser.cc */, + 1E0CE423C48362EDEB29706762F89093 /* uri_parser.h */, + 0D4DABD733F73E62877959F7BE5000C2 /* url_external_account_credentials.cc */, + A2300D4E52F3DB19972F4A4FF1CBD338 /* url_external_account_credentials.h */, + A53ABA6A6DFE65305A2D5CDAE003A6A5 /* useful.h */, + 332A1FC2AD148CC5C0304EFBA8807FEA /* utf.h */, + 7F3768B57E7008496EDBA7CD454B7624 /* utf8_range.h */, + 11C82A2E376BC4C3E4100995BBAB3D0C /* util.h */, + 56C59A5B6FAF23C1A814C0F25C434DA4 /* utils.cc */, + C1076B34A6BD1AF912E096D5622B91C2 /* utils.h */, + 8F27D4E4804CD2939D6AF2EFC93AC3C8 /* validate.upb.h */, + 73F02BD61DFC61DD06F443A723872F5C /* validate.upb_minitable.c */, + 7FA9163169B750F4D7E80D87F3D49C18 /* validate.upb_minitable.h */, + 5C8203C214C73CD19DDFD77218D3DD6B /* validate.upbdefs.c */, + A938EA43BF2C02D13B5F872C4FD7C96E /* validate.upbdefs.h */, + E251EF59481D661125DFBE0CC2D0C3FB /* validate_metadata.cc */, + 967E7E1FB1B926DBBA81A886C93AA827 /* validate_metadata.h */, + 1A0744CFD929C3DF13B6C2A2A1E88BA3 /* validation_errors.cc */, + 222D926C235F83FB2D998089AABB5570 /* validation_errors.h */, + C9E09DE2071F3742B960815F41C604C4 /* value.h */, + B92D4F5FC5A8BD976E60FFEEF1FA58AB /* value.upb.h */, + CFF6073D47BC4F0E723A18DAF6335DD2 /* value.upb_minitable.c */, + 998D0EDD802582B230B36B3868C0E6A8 /* value.upb_minitable.h */, + AFFF3BCE5187DD17D7F273D9B532CAD6 /* value.upbdefs.c */, + B04A29837D30945D599277BDBCDB8F00 /* value.upbdefs.h */, + EF9AF91742D7D3BBBF1C0574CE906D82 /* varint.cc */, + C5BA945DF73C036474BC0DDEBE96D2CA /* varint.h */, + 80D5C314133BB6565D0D71A9E0217F05 /* version.cc */, + FD1E0E15097C0C418049C615793C17AA /* versioning.upb.h */, + BFAAAE1D8DF443CCF7EFC43FA6C67EFD /* versioning.upb.h */, + 2AB650BE9BA281C830536AD2E57696D0 /* versioning.upb_minitable.c */, + DD2959647FDA15217A3AB4DDA92D6A0F /* versioning.upb_minitable.c */, + 3B6B5D6445F1519AE04AD6D054FE74F4 /* versioning.upb_minitable.h */, + E4DED4A07B57AB3484526F0E1C930828 /* versioning.upb_minitable.h */, + E603A29FB7BE6A1B11E7B174FB909F7A /* versioning.upbdefs.c */, + F25B44C03C54824C06C9A277208A2BE6 /* versioning.upbdefs.c */, + A219F78CCB8BD7B51B3385F1A62D425F /* versioning.upbdefs.h */, + 491D942187ED57661D907390F2485E9E /* versioning.upbdefs.h */, + 118D396E9DE65249ECBB61660ABE454E /* vsnprintf_compat.h */, + 9B5F4991063DFEA63554C8F9892AEED2 /* vsock.cc */, + 13915032D0B114E937BB5C725A0B9BD3 /* vsock.h */, + 9C558522658A8503C26447B08027B710 /* wait_for_cq_end_op.cc */, + 0BBA631369950E57896D456AD4A5063D /* wait_for_cq_end_op.h */, + 443645381757C021133F1F8C3E4EB449 /* wakeup_fd_eventfd.cc */, + 699D5BE84EEEB74D95A4362685B1488C /* wakeup_fd_eventfd.cc */, + F0287CE42A40893703EE25648E5D04C5 /* wakeup_fd_eventfd.h */, + DB0C26A87C7BBE468729621699ED29E9 /* wakeup_fd_nospecial.cc */, + 0DFE4ED0F81040108281D5127F4AF90C /* wakeup_fd_pipe.cc */, + F399F919BA3557DAAC77227615B1A530 /* wakeup_fd_pipe.cc */, + 969C62914FF38BFF0856F98D616CB14D /* wakeup_fd_pipe.h */, + 1AA80624C2D95E2684D7E68D7B1F9473 /* wakeup_fd_pipe.h */, + FD738DC70F7562C0D899EFE0E201E830 /* wakeup_fd_posix.cc */, + C1400225EFEDBF3983060983B6F3B1EC /* wakeup_fd_posix.h */, + 45D0347A2321CD0BE176A91A4611C191 /* wakeup_fd_posix.h */, + 3E07CFC431278BB0FAC2D8FDAD0E7278 /* wakeup_fd_posix_default.cc */, + C38BA0D11326AA1FF198D0CA0BC3C8BF /* wakeup_fd_posix_default.h */, + 54B2C819F3D8865783D2A7D0CE0E238C /* walker-inl.h */, + 40B91BBA543BCCA0F62106599C98FACE /* weighted_round_robin.cc */, + 7D2E76CA8A9E7957EB492C3CF2EBC79E /* weighted_target.cc */, + A8754A76B454FA080798D7C35F71A131 /* win_socket.cc */, + 52B22D5089DAE6FDDDC3E87BB24B580E /* win_socket.h */, + E075378F924BD71A5AE77BB926D21A75 /* windows_endpoint.cc */, + 575C9A0A492D0380697F2DA52405F64E /* windows_endpoint.h */, + B664D724F5A3A49A8D5AA1DE80FE4BFD /* windows_engine.cc */, + 70F2ACB450DAE5AE291E905FF2ADA819 /* windows_engine.h */, + D84AE38CB5DF65BDEF784C13AF5CBA54 /* windows_listener.cc */, + 59860DA3CFF3383A7658F8229347EEB7 /* windows_listener.h */, + 16D27CC5C409DE47019673D43BCDBE5E /* wire_constants.h */, + 3DC01C3375DF8E9CCD6B3FC32FB4531F /* work_queue.h */, + 0276C2723AA5063CCADC3B1F6F7B29ED /* work_serializer.cc */, + BDA200AAE2BC952A447268704E316F79 /* work_serializer.h */, + 49CC4435CEF6E673E70E4ECDBC86ACD3 /* work_stealing_thread_pool.cc */, + 615FC705E5D23895E82A27841033549F /* work_stealing_thread_pool.h */, + B89E2CFE82C54F65D295B4D7A21D9139 /* wrap_memcpy.cc */, + 5C6B95836A732CED86B229E4C8BA7904 /* wrappers.upb.h */, + 2C036C2C095EFD1A8506958A35F28140 /* wrappers.upb_minitable.c */, + 32C783B873ACD390F2779C6FB361427B /* wrappers.upb_minitable.h */, + 0196F4BA873F60C8C5AC8C068C39683E /* wrappers.upbdefs.c */, + 8FF01E997F8B64A183D650CA3A91F0EF /* wrappers.upbdefs.h */, + 8DCFCDB15D5444B1C580F9C54D24FCF4 /* write_size_policy.cc */, + AAFFC94B75B126EB5EEAA9E298B6E59D /* write_size_policy.h */, + D8E1952C7FE7F6D956A0ABDFB0876D1A /* writing.cc */, + 0295369CB1CFCD3AF9EAB9369E0F8F9E /* wrr_locality.upb.h */, + 1F25789324E3443DCA930B7F0646835E /* wrr_locality.upb_minitable.c */, + 9A96FA43EBF97DA4CEDD4C69E03A4BA8 /* wrr_locality.upb_minitable.h */, + 5F16F5802C18EC430E4B23AE737CC81D /* xds_api.cc */, + 1EF2268638E8C9447D18B7409B3E6282 /* xds_api.h */, + A5D36C86CEE343AD9FB48858B6504432 /* xds_audit_logger_registry.cc */, + 29A819CF87CF5950B4EE9F7B5FF18D13 /* xds_audit_logger_registry.h */, + 52F80C095FFA06BD703CF7E2F18CCBB1 /* xds_bootstrap.cc */, + 571064C5F4F628AF16339B1522DE4543 /* xds_bootstrap.h */, + F7865B7B92E8FD24347F549A3CE665BE /* xds_bootstrap_grpc.cc */, + 8448C877B707E3BCF19F42CC5C373F71 /* xds_bootstrap_grpc.h */, + 995AF4F53D2143E857D6BE15FD1CA9C6 /* xds_certificate_provider.cc */, + FB3C8DE92AF4317F95A706D381203911 /* xds_certificate_provider.h */, + E66397D7D3DE9F3E6880E36B2E7CC6D3 /* xds_channel_args.h */, + 92EAB37BF4AB9224FEACF42E4607E0A3 /* xds_channel_args.h */, + 5562F261F5287F1E5E46A48CF8D2B604 /* xds_channel_stack_modifier.cc */, + EA48BC4900BCB773877405A99AF1FB04 /* xds_channel_stack_modifier.h */, + 0BF3A557EECAF2C677B99BC48F6ACEBA /* xds_client.cc */, + 523078B9DCDA3E7BC8AB1F60FE032068 /* xds_client.h */, + F83D3FFE61F96D22B7F60D01A8AA4711 /* xds_client_grpc.cc */, + 2E9700F77A28B6B36BB3F346952EE590 /* xds_client_grpc.h */, + 4937E03E67B6D30E02653E5B5BCE30A8 /* xds_client_stats.cc */, + AF8F02067850A7B3435ABF30B4D7A1A4 /* xds_client_stats.h */, + 920E6C57C2AD57B16EB2ED2698633A3E /* xds_cluster.cc */, + DF66ADD42C650B5FBDEBC7E51B6F3497 /* xds_cluster.h */, + 0AD9A6056D90271F56DD318B0D00DA04 /* xds_cluster_impl.cc */, + 3297B7F8221794FEA367C4113283B083 /* xds_cluster_manager.cc */, + 95B5DC82E9A726B959C23675F953EC78 /* xds_cluster_specifier_plugin.cc */, + EA4716C9A5F11FC4A91FB695A4AADD0C /* xds_cluster_specifier_plugin.h */, + 50667FBC0DAD0AABAB2E72CB1E9ADC98 /* xds_common_types.cc */, + 89E691A42EF1AAD0BD557089D39C7A21 /* xds_common_types.h */, + 17E8BB8D1A5875A5A9F8A0D5C04EF31C /* xds_credentials.cc */, + 2EFA91A1A4BF46C39B0B2CAFF5A1275E /* xds_credentials.h */, + 5C9B59308171410F6DF75E5C80CBE123 /* xds_dependency_manager.cc */, + 64A0617956E5DB39FF4CAD77B08865A1 /* xds_dependency_manager.h */, + 9845BC2B0EA8BDDE8748BA8FECF9959E /* xds_endpoint.cc */, + 54DB95353CC2C222FB6CEE674F479B2A /* xds_endpoint.h */, + 81FFFCF235BE368DEDEF11A182FEC7A1 /* xds_health_status.cc */, + C9ABD5BE8C6866F0D9238DBEF1975EEC /* xds_health_status.h */, + 9E9DEE182B469C187702E8D2EAB3E929 /* xds_http_fault_filter.cc */, + B2FC711BC18441ACC64B72AB6710E87A /* xds_http_fault_filter.h */, + 00E352FF302C82C28408AF2FE56EC007 /* xds_http_filters.cc */, + 03BF655FF1A10B7578E130FAA7C94ABA /* xds_http_filters.h */, + 705D895C48DC459D7FE86FE29338CAF1 /* xds_http_rbac_filter.cc */, + F61E1B955A52636CC83A3F06CFBD3774 /* xds_http_rbac_filter.h */, + BEDF435A95577DB26B95C4E9113FB960 /* xds_http_stateful_session_filter.cc */, + 1A7B5781356A79E787A4AA6F8C68B0AA /* xds_http_stateful_session_filter.h */, + B290FABD7570E8005636702136638E20 /* xds_lb_policy_registry.cc */, + AEACCAD2816169703A007A5C6E4D3E9A /* xds_lb_policy_registry.h */, + 5059E103EDAD3D2B42329F78BA6F3DBF /* xds_listener.cc */, + 83F5D4FF28BA8A4E5DED92935490964D /* xds_listener.h */, + F029D770C33D6CB64459AEE869F8F7DF /* xds_override_host.cc */, + AECF12540D3F76BD5B9490E662ADEE53 /* xds_override_host.h */, + 44776998A0C99978A9FD74C471B48BC6 /* xds_resolver.cc */, + BD2B9B470AA95828F634FF090FAB5DED /* xds_resolver_attributes.h */, + 819C11BCFEFD8FD837DCAA4F321914E2 /* xds_resolver_trace.cc */, + 89B2F11700A22D57FC4AA9FD8C066B76 /* xds_resolver_trace.h */, + 7A03EF837EB1C7F14DD25EE09A371DA6 /* xds_resource_type.h */, + 05E85BFE2F21D4CADE2AD0B0CA5CAA82 /* xds_resource_type_impl.h */, + CBBFA9D6C72EDA0F5CA7E9439992680E /* xds_route_config.cc */, + BA6760B9FD0C5C692DD84392EDD11508 /* xds_route_config.h */, + 1A7A1B9A0081C7B9420637EFE10023FC /* xds_routing.cc */, + 678E732DFC993679248B1E13731374FF /* xds_routing.h */, + 8FB1EF99E7676B98375FAEB38414F3C4 /* xds_server_config_fetcher.cc */, + 499819590C0ED0C3E4C44C914DE1556A /* xds_transport.h */, + 6AE0B2B16BEBA088F7D81B746E1A14BF /* xds_transport_grpc.cc */, + 75A527CF8A5799FB244CD5275F80EC43 /* xds_transport_grpc.h */, + 6A0A338D372A2FAEF9FEB01477355614 /* xds_wrr_locality.cc */, + AE6449E9DD7C62B24AFDEBC9A75C39FD /* xray.upb.h */, + 379A4BC1F466FE894EEADF716010AEF5 /* xray.upb_minitable.c */, + B06900BF9E38790921A94BFD425B6999 /* xray.upb_minitable.h */, + 9C5EF75FDC3E1FEC301913AEEAB559A4 /* xray.upbdefs.c */, + AC826BD434761D664ADC85D3F8AA5CD9 /* xray.upbdefs.h */, + 788F4FFBB4BFF44330E1B1B6B081BD9E /* xxhash.h */, + BCE8D260BAF318DEB935A53786536DC4 /* xxhash_inline.h */, + 10C6B1753847694E523A0B03C7B3C502 /* zconf.h */, + 6CD5950625AD89F0951A5DF5419AF859 /* zipkin.upb.h */, + DDB33FA17AAC7B9CC4EAF24151A167E3 /* zipkin.upb_minitable.c */, + E5570C8363D66718CD1FA505C3A4FA1E /* zipkin.upb_minitable.h */, + 0794FEBD91DC001E0AA8F89BD705EBF2 /* zipkin.upbdefs.c */, + C5BD288A4F5A10D382D02744E56DB563 /* zipkin.upbdefs.h */, + D79295064D1834C4D110E37CB525094A /* zlib.h */, + E2FA96ADBC221AA6BDCBC453110ACB3C /* zutil.c */, + AED687A52D8EBF4B959841FA11A22CE1 /* zutil.h */, + ); + name = Implementation; + sourceTree = ""; + }; + 700434AB00810AC9595202BB3CF7F09C /* cordz_functions */ = { + isa = PBXGroup; + children = ( + 11E4D7B494D18C1ACA770104A7938466 /* cordz_functions.cc */, + BDD14A74F0B21942D941ED9284A16562 /* cordz_functions.h */, + ); + name = cordz_functions; + sourceTree = ""; + }; + 70762765D04D6B3C7F152FC96D9F46B0 /* compare */ = { + isa = PBXGroup; + children = ( + 85F12D6F87F667BA78DAE1121B13D136 /* compare.h */, + ); + name = compare; + sourceTree = ""; + }; + 709C917DC303A908E247807EEFD9689D /* Privacy */ = { + isa = PBXGroup; + children = ( + 9AAC1E60A603120D86CD95ECDD6B6FAB /* Resources */, + ); + name = Privacy; + sourceTree = ""; + }; + 72A5B03CFD3A186E3B1EF9DCBD144BAF /* Support Files */ = { + isa = PBXGroup; + children = ( + 8D6E3A3D5134F0869000BEBD4DD1C9B7 /* GoogleDataTransport.modulemap */, + 0F42CD9B72A26EC7DFCE91DAFEE5F467 /* GoogleDataTransport-dummy.m */, + 6D8F408B27956196FEB016CC83EDA8A5 /* GoogleDataTransport-Info.plist */, + 8F7612BF97ADC4FB1D74DDE3BBF63F33 /* GoogleDataTransport-umbrella.h */, + C2F55B31D13DB514BD1CFCF9B9F067EC /* GoogleDataTransport.debug.xcconfig */, + 7784731F1F8548D660D46E656C466949 /* GoogleDataTransport.release.xcconfig */, + C8C2E1B79955494BD110BE3AB138D529 /* ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransport"; + sourceTree = ""; + }; + 73B0847ED782CBF93FD553D04046D907 /* Resources */ = { + isa = PBXGroup; + children = ( + 495B76804346EB8A6E105E46388A856F /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 7576FF2D26AA4C415CCD7CBDD519D121 /* Resources */ = { + isa = PBXGroup; + children = ( + E09639B600AD049E7F728B0A81EA5F0A /* LLCycleScrollView.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 76C04BA496E166AAE9F07CDA3551B504 /* Resources */ = { + isa = PBXGroup; + children = ( + FCA7E285516DE63FED39AFAB0BAB3FBA /* FacebookSDKStrings.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 7759D29867886B17AB8E34E46F7A57E3 /* gRPC-Core */ = { + isa = PBXGroup; + children = ( + 6F16974341BF4CABE8118CDFD5325CC1 /* Implementation */, + E442E28969303C274883929371921CA7 /* Interface */, + 709C917DC303A908E247807EEFD9689D /* Privacy */, + 2F220612910319B892B3B276E02BBC2C /* Support Files */, + ); + path = "gRPC-Core"; + sourceTree = ""; + }; + 7779CC74D4F01766B9C69A840B03F3EA /* strerror */ = { + isa = PBXGroup; + children = ( + 373DF2458DE3BF317317E3C5CF63513A /* strerror.cc */, + F57C5C83751AB9B74AF090B857BA9AEC /* strerror.h */, + ); + name = strerror; + sourceTree = ""; + }; + 77CC2A0E4FAC9448A5779ECBE327B1DA /* randen_hwaes */ = { + isa = PBXGroup; + children = ( + F59A7EF8D27D44CD1BB60ACD72E421F5 /* randen_detect.cc */, + B633E038779814482CED2C74057DA3F7 /* randen_detect.h */, + A4040A683E2A7803976C77BE84BEDC51 /* randen_hwaes.h */, + ); + name = randen_hwaes; + sourceTree = ""; + }; + 78858921E839A85BA5FD53BE85CB2366 /* Support Files */ = { + isa = PBXGroup; + children = ( + E7578007106354AA462DC26D02E64D2B /* Firebase.debug.xcconfig */, + 7EC19B517411CB29D67448493D5FC820 /* Firebase.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Firebase"; + sourceTree = ""; + }; + 79A7D5A3F8B097DB3AE15131CB1EEC40 /* FBSDKCoreKit */ = { + isa = PBXGroup; + children = ( + B0CFF9DEDE449956A2E2262A16539899 /* Basics */, + 675B1F8B117FB47B46DE3299F2F2FC9C /* Core */, + 6861123CF328C7472726F8B28206305E /* Support Files */, + ); + path = FBSDKCoreKit; + sourceTree = ""; + }; + 7AC86D773AE0827E2445DEF100C0FB12 /* Resources */ = { + isa = PBXGroup; + children = ( + 355C7D9C7D7B178011B1BF68A9E73BE9 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 7ADB2CD7A2607C676E5674851E6E075E /* numeric */ = { + isa = PBXGroup; + children = ( + 439616BE73B6B013CC7B2E33D13B42B7 /* bits */, + CF8339D9ACCE2255F0BFFC13906DDD63 /* int128 */, + 51B6A5E54DC0FED5FFE85F20E2E4BF74 /* representation */, + ); + name = numeric; + sourceTree = ""; + }; + 7B653271A6D5145BC8AFE1036A9C49B7 /* any_invocable */ = { + isa = PBXGroup; + children = ( + 947DC6276871344A949FC2127B6596BB /* any_invocable.h */, + 6107471E137FB2243B9F476F2085974D /* any_invocable.h */, + ); + name = any_invocable; + sourceTree = ""; + }; + 7C57D762FF567871CF95AB56D5F352E8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 172BDCC563E37F240A1E3043C15BA7F3 /* abseil.modulemap */, + 6B404CC0F56604CAFF006C9976A9326B /* abseil-dummy.m */, + 54BA903750C35B4D8AA4F2039032C826 /* abseil-Info.plist */, + CC4E98D7159281007DCBE766C3C081E5 /* abseil-prefix.pch */, + 7F5BE5C63E5E76A9A05A413FF52D8F88 /* abseil-umbrella.h */, + 23B7FB1B950E018BE7E3892BF92F41C1 /* abseil.debug.xcconfig */, + 078F18065CABDA1A78A7730B77EFB1F0 /* abseil.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/abseil"; + sourceTree = ""; + }; + 7D677FF5850DD4C6A980985DA6F23BEF /* Environment */ = { + isa = PBXGroup; + children = ( + B51792033CC9C90A1DA32C2565941B6C /* GULAppEnvironmentUtil.h */, + 5E2BF305DE1AEF8E215BC94766E81A3F /* GULAppEnvironmentUtil.m */, + 5793011D448618CCC36D470FB7DB5B47 /* GULHeartbeatDateStorable.h */, + 7962DA9A5A23711DB38B557970DEDDBF /* GULHeartbeatDateStorage.h */, + 8BA22606519F707DD57BDD13838EA2C0 /* GULHeartbeatDateStorage.m */, + D8EFB26B786996F644680F54A59D4D01 /* GULHeartbeatDateStorageUserDefaults.h */, + 89ECE2A1E61C968CF5515F63E4CEB655 /* GULHeartbeatDateStorageUserDefaults.m */, + 56D9B16960DD4CCABE3F02A06F8B5087 /* GULKeychainStorage.h */, + 950CBB7ABE44781957E4B0B22BAE8B09 /* GULKeychainStorage.m */, + 0C41FC07D0D3680BC098353E9DE13FF6 /* GULKeychainUtils.h */, + 2021D21D17BF908BE79D1181E1489612 /* GULKeychainUtils.m */, + 3B683E664655E1BF43947BB8087A6D61 /* GULNetworkInfo.h */, + 68E1786BB265D03F8A1062A87A413291 /* GULNetworkInfo.m */, + E424E2038D6D2C1D6F842A885EA7592B /* GULSecureCoding.h */, + 3ABEF1EF46F0F821B07D19D13DD1D920 /* GULSecureCoding.m */, + 1ACB47929D6C807581C15A374A681F4B /* GULURLSessionDataResponse.h */, + 90997CA80FE3B7B1B33D093C3F33C432 /* GULURLSessionDataResponse.m */, + 3EF5A1ED977BFE96D8D2D55B2FE64162 /* IsAppEncrypted.h */, + EB2B1305F504279DDD1D310057C07AE5 /* IsAppEncrypted.m */, + 6FC9C63FDAA11C6A8625ACC3B2BBEA4D /* NSURLSession+GULPromises.h */, + E188AB154183AE844F9DB05C403212E4 /* NSURLSession+GULPromises.m */, ); name = Environment; sourceTree = ""; }; - B178C294CD51120117DA28FB689A89AD /* commandlineflag_internal */ = { + 7E0A4048B08C6E42CB374DC04B20EBB9 /* any */ = { isa = PBXGroup; children = ( - 7710CE0A6DFBC3A833EB8A4DF7816EE2 /* commandlineflag.cc */, - 705CB98845F203DFD57636997CDFA7BB /* commandlineflag.h */, + A68AFE229271E2F2B69E588152129BA9 /* any.h */, + ); + name = any; + sourceTree = ""; + }; + 7E3EF7AC298503B84003C823E32F1066 /* Resources */ = { + isa = PBXGroup; + children = ( + 63F9AC88D6FA822FE0FFE7AF3A98750A /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 7E8EC343C143B4DC744E9164E03B250F /* config */ = { + isa = PBXGroup; + children = ( + 93E83E8AA9AEE07D9F131462690386CB /* config.h */, + 5743B5D7807C704357315DF22101F6C2 /* options.h */, + 112A17AEF028DDB635F81BA938899BFC /* policy_checks.h */, + ); + name = config; + sourceTree = ""; + }; + 7ED406352B1FED4ECBCDD2F8B41420B9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 37BFA75B5E3884FE2ADE7A8827CACF7C /* FirebaseCoreExtension.modulemap */, + 82354B0BD349A8C7FB42DE8312777FB6 /* FirebaseCoreExtension-dummy.m */, + 8BC917A42CDBB5FA3B839670B89E9610 /* FirebaseCoreExtension-Info.plist */, + 1FD6239FFC3610F799C3EE49AAA8DF68 /* FirebaseCoreExtension-prefix.pch */, + 946353C815FB6D0E4E0DB6DF0D5874D6 /* FirebaseCoreExtension-umbrella.h */, + 711D0DCA561CD1F3D29C367B8A1FBCEF /* FirebaseCoreExtension.debug.xcconfig */, + 0F115787DFB56D12775E614EA8B610A7 /* FirebaseCoreExtension.release.xcconfig */, + 397E3E80B4DCB029EE379CED61183092 /* ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreExtension"; + sourceTree = ""; + }; + 7F0F77CB828B5ABBA784FFBD418EB4E7 /* hashtable_debug_hooks */ = { + isa = PBXGroup; + children = ( + 2EAA92A9E6D3E215D0EAA17C69D691F0 /* hashtable_debug_hooks.h */, + ); + name = hashtable_debug_hooks; + sourceTree = ""; + }; + 81D7FD0D4117FFF99E33FA9777C014BD /* WithoutAdIdSupport */ = { + isa = PBXGroup; + children = ( + 91F48AB211B22537571C332198927A9A /* Frameworks */, + ); + name = WithoutAdIdSupport; + sourceTree = ""; + }; + 827973F74F5737A0749855A87BE2F822 /* low_level_hash */ = { + isa = PBXGroup; + children = ( + 815E38C5FE4EA5CB649F59CF2F6BC86F /* low_level_hash.cc */, + 44FFE02DE60CBF733A6439E8427C93AE /* low_level_hash.h */, + ); + name = low_level_hash; + sourceTree = ""; + }; + 82ADD324900416AC2CD80849E03C0491 /* Support Files */ = { + isa = PBXGroup; + children = ( + 529CF8A99A71C972A7A5DD5320EC1054 /* FirebaseCrashlytics.modulemap */, + DFD79274571CA0C63B5C132A4970ED4F /* FirebaseCrashlytics-dummy.m */, + F4CF19EE67DBD6E1F5DB23C626D10270 /* FirebaseCrashlytics-Info.plist */, + AB83BDD518F6F9DC015F582D93E6CE09 /* FirebaseCrashlytics-umbrella.h */, + AACF9ABB7D784A3BE2D17B3347664429 /* FirebaseCrashlytics.debug.xcconfig */, + 36412ED05FFE4DF5F6B43726E12F8155 /* FirebaseCrashlytics.release.xcconfig */, + A482B9BA20A580A96830DA516D78F85A /* ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCrashlytics"; + sourceTree = ""; + }; + 844C180588E396DFA5130FABEDD388FA /* DeviceKit */ = { + isa = PBXGroup; + children = ( + 8B141F442DF41E1140D8DE73F025571E /* Device.generated.swift */, + 00D3F1459E7430C02507874569E677D9 /* Resources */, + 24EB59981BBAADA3F09B7F0F4FB10CCF /* Support Files */, + ); + path = DeviceKit; + sourceTree = ""; + }; + 848AC2821B9033DC52402393C69D15E7 /* program_name */ = { + isa = PBXGroup; + children = ( + D7651106A82AF6B5F290A91C16BA3BB5 /* program_name.cc */, + 09BD709C9D89BADE736CD13E38E9B202 /* program_name.h */, + ); + name = program_name; + sourceTree = ""; + }; + 849070065BD859B818178DE10D05DFE4 /* malloc_internal */ = { + isa = PBXGroup; + children = ( + F54AC6AF3E0B6B56F2ECDD6A23CC4666 /* direct_mmap.h */, + DFDAAF00B4C2EDB2DDB69D070055F021 /* low_level_alloc.cc */, + C21FB8CAE63667062A9FFCD9F1E0DF22 /* low_level_alloc.h */, + ); + name = malloc_internal; + sourceTree = ""; + }; + 8739C4BE8DD2C4C965B65866F0033E40 /* Support Files */ = { + isa = PBXGroup; + children = ( + 38B8C43DD2E11B41D1B130144F1310BE /* FirebaseCoreInternal.modulemap */, + 96F56AD10F34B8BD05FDE68738BC7AF5 /* FirebaseCoreInternal-dummy.m */, + EFD9BE2CDC5030DDFE49F0EEDF70AB9C /* FirebaseCoreInternal-Info.plist */, + 2511425BEC4B0C0562EE3442736DF0FD /* FirebaseCoreInternal-prefix.pch */, + EF30657E4BBFB3D9A1F2AA472F3271EC /* FirebaseCoreInternal-umbrella.h */, + 75461CF43948C9EF6F0EA41ED597B178 /* FirebaseCoreInternal.debug.xcconfig */, + DD4FB287E52873B3888E95FCFFE03AC7 /* FirebaseCoreInternal.release.xcconfig */, + B5A6B3D2B1EFB9528FEC7A916BAA043F /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreInternal"; + sourceTree = ""; + }; + 875AB9A9C2E68361439442BAC23FF235 /* errno_saver */ = { + isa = PBXGroup; + children = ( + 7E1EDC218BB564292AC93B951E0D7878 /* errno_saver.h */, + ); + name = errno_saver; + sourceTree = ""; + }; + 88B32A85885684A36A3E46B6F10D9A8B /* log_severity */ = { + isa = PBXGroup; + children = ( + C782415902A810008D89769FE2A086C0 /* log_severity.cc */, + 9B0BFEF42471D917AB6C142BCD8929B7 /* log_severity.h */, + ); + name = log_severity; + sourceTree = ""; + }; + 8D936BDCFA67B915A9699193577821FB /* FirebaseAppCheckInterop */ = { + isa = PBXGroup; + children = ( + 7D4F660C928E8300620FA87ACEE5D5AC /* dummy.m */, + FFA461F55C8DE519E17036A85394A3C2 /* FIRAppCheckInterop.h */, + 7C92C830337CB0E5441483F7B22ADE5F /* FIRAppCheckProtocol.h */, + B15107242092F740F2B9FCB2EC6C99A1 /* FIRAppCheckTokenResultInterop.h */, + 90ED4FF1EABF9ED8D0E62B65146A0280 /* FirebaseAppCheckInterop.h */, + DAEA04C5CF7EF8203CF1FF42040BBB0E /* Support Files */, + ); + path = FirebaseAppCheckInterop; + sourceTree = ""; + }; + 8DE16C1FC64D47E3D5A29664EB1B0B59 /* decode */ = { + isa = PBXGroup; + children = ( + ); + name = decode; + sourceTree = ""; + }; + 8E0C82D590A082F18B35143F4696EE36 /* no_destructor */ = { + isa = PBXGroup; + children = ( + B3EEE40DD6739F80BA48749E9960A5FE /* no_destructor.h */, + ); + name = no_destructor; + sourceTree = ""; + }; + 8F3366C76EDCD5326398472C7599580C /* type_traits */ = { + isa = PBXGroup; + children = ( + FA329BA80AA4B13BB5FFD5498B01AD90 /* type_traits.h */, + ); + name = type_traits; + sourceTree = ""; + }; + 90B9F57B5AB93EFFF966407D606A2EEC /* cordz_update_scope */ = { + isa = PBXGroup; + children = ( + 019260869EF5514FBED28E33E08D46D8 /* cordz_update_scope.h */, + ); + name = cordz_update_scope; + sourceTree = ""; + }; + 90E34FE5BF6B385F8085DF1AC538275E /* synchronization */ = { + isa = PBXGroup; + children = ( + 9DB79E1436CE604B277C5AD5D3EBE64A /* graphcycles_internal */, + 43B3C82AA95F6496D9A21FB332423EB2 /* kernel_timeout_internal */, + CF17F0EE69756EEA961632B43E0F298F /* synchronization */, + ); + name = synchronization; + sourceTree = ""; + }; + 912EC1BBC72493565A41F812E883044B /* PromisesObjC */ = { + isa = PBXGroup; + children = ( + 9C98A9E1ADF94349DA915C6883152200 /* FBLPromise.h */, + F21FA830E37D6E4C12D34E98DB6731C0 /* FBLPromise.m */, + 7C3D0D6E23BDBA7B9981B1D52E6B2C22 /* FBLPromise+All.h */, + 4BC7C297262391D5A3D70811E9A39B1E /* FBLPromise+All.m */, + 310913F10E858EF18868CF500699C9EC /* FBLPromise+Always.h */, + 54E9973A6E5267B33DDD097E09E49D28 /* FBLPromise+Always.m */, + B2B3CA84D20F17D3835780FBAA3EE4AD /* FBLPromise+Any.h */, + 61ED972A5F924F8C480CD39DE418C835 /* FBLPromise+Any.m */, + FF8B41DCE927E3E5776E24F9E461D9AE /* FBLPromise+Async.h */, + 8AE996A2703EDB59B1A55C774793D315 /* FBLPromise+Async.m */, + A86CDD720B85B6EAEEEE5744666EDB93 /* FBLPromise+Await.h */, + 0077D96CE804B14A016F2A03F4DB8549 /* FBLPromise+Await.m */, + 9F7749F8921D73AC22F357589193965D /* FBLPromise+Catch.h */, + 33C55BE31C96F11847DB5D1B11B49EB4 /* FBLPromise+Catch.m */, + AAD083CB9C14E0E3977BA817911B368C /* FBLPromise+Delay.h */, + BA7853EDC390A57A81E63FAC3DF185DA /* FBLPromise+Delay.m */, + 2F3BE0A0EF8B9990AFF4AE520E6CCA6F /* FBLPromise+Do.h */, + 9B6305BCEE79E98C461D282873EB23C5 /* FBLPromise+Do.m */, + EA03E39CB8D9928CD09944DE529197E3 /* FBLPromise+Race.h */, + D651AD830D0B2DD09F116EB98E66A8B3 /* FBLPromise+Race.m */, + BFACA2254E0783112F2B65DB8183CC62 /* FBLPromise+Recover.h */, + E51061D3B2FF79431200B0E65F5ED0F0 /* FBLPromise+Recover.m */, + 443163E2E2B9BEA49C2671A5AD0EBBF9 /* FBLPromise+Reduce.h */, + BF7BF7A89A64D0E681411A7B2C503016 /* FBLPromise+Reduce.m */, + FBA042F7E86D8A03309A7F0E9FBCC57D /* FBLPromise+Retry.h */, + DA07159965FA9EA0E3F9FF1C77E4D36E /* FBLPromise+Retry.m */, + A2B364B3CC3E3C1CF6704440D2FA347A /* FBLPromise+Testing.h */, + 8FBF9871A2B0D2457AC3EC3A66814507 /* FBLPromise+Testing.m */, + 279F6EDFFEC9604A1418C731977A3CD4 /* FBLPromise+Then.h */, + 0A852FC925D37F3688616E3948059B96 /* FBLPromise+Then.m */, + 21C177AE554AA8308A5F61EF1D55DDC0 /* FBLPromise+Timeout.h */, + 615972DD6334820D3B955C387A3356D4 /* FBLPromise+Timeout.m */, + 36C81E7078F291461BAB7F9520CB726C /* FBLPromise+Validate.h */, + 512D2D6C99942DBC504CD2FA0EB1B3E0 /* FBLPromise+Validate.m */, + C8263E7A069243881A53EFB1AEF8593C /* FBLPromise+Wrap.h */, + FF98068A851B922CC051736DA72AE6F1 /* FBLPromise+Wrap.m */, + 6BBF9D91C0920D6A3336842D2A9432D6 /* FBLPromiseError.h */, + BF6E91CBD4F387B0A4888CC7D356FB5C /* FBLPromiseError.m */, + A54742CEF50F296F9D50729B4AFADE5E /* FBLPromisePrivate.h */, + E7C8DAB3E219E902B373B29DFA7BC850 /* FBLPromises.h */, + 9CB191BFE20E56B1A69F807389469025 /* Resources */, + A30D28EF0B82E8492229EB153C1351AE /* Support Files */, + ); + path = PromisesObjC; + sourceTree = ""; + }; + 91F48AB211B22537571C332198927A9A /* Frameworks */ = { + isa = PBXGroup; + children = ( + E8E5129D1F1305C423311C8CB06F0202 /* GoogleAppMeasurement.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 925700B7B24F39C74F0A4AF6E3A2DACA /* Alamofire */ = { + isa = PBXGroup; + children = ( + 2968B3D2606A4252FB9F52CB0AB10D55 /* AFError.swift */, + A898A17D0935D3D8BFD40415BB738673 /* Alamofire.swift */, + B04E8860048FAC80E6A3CD769EEB880F /* AlamofireExtended.swift */, + 744917350A14EEAFE5874A04BECEDA5C /* AuthenticationInterceptor.swift */, + BA9A352A37864ACBEDE7E8176F39ABC3 /* CachedResponseHandler.swift */, + 3E138A656226C5FEBBC365BC3BFACE80 /* Combine.swift */, + B2248AA9FCCADD16014C03D849BFA077 /* Concurrency.swift */, + 028144572E10FF8F19F3FD7C1332C38A /* DispatchQueue+Alamofire.swift */, + 70781D4EF4FA18021F96B14E6016CA74 /* EventMonitor.swift */, + BB091BE89614C17D4A67EA33BD8CC71B /* HTTPHeaders.swift */, + 42784E889CCC1972319510D487A4552C /* HTTPMethod.swift */, + 4ECCA78ED2CC122767954859A8C42C3F /* MultipartFormData.swift */, + 93B256EEDCD59A2C1996B9D6F42AF018 /* MultipartUpload.swift */, + A518464657B4CEBFDBC5469F63EC4E4D /* NetworkReachabilityManager.swift */, + 18C24823550296D9E0312652A2019288 /* Notifications.swift */, + B1E2A7A2EBEB06AC87C85D76C90C75D9 /* OperationQueue+Alamofire.swift */, + 1EFC13F262D3B56F9BC1C8FD70F9A218 /* ParameterEncoder.swift */, + 8926C4D9F02E4F4E7FCFC91D6370D500 /* ParameterEncoding.swift */, + E2BF4B662AD958788438A51A7CA6CB08 /* Protected.swift */, + 8914078ACD72935E4754B53D9FF9336D /* RedirectHandler.swift */, + A177CAC64CBA74DB3EF26944E403D8FD /* Request.swift */, + C810CC70786E8044BA3807F6F150F646 /* RequestCompression.swift */, + EFCBD1C034582B6FD69B8EE3ABD99CB6 /* RequestInterceptor.swift */, + 3745C1EDB01E0992313B4E2E2725D057 /* RequestTaskMap.swift */, + B4F5373795FD88443100A7BA4A94D917 /* Response.swift */, + 3B7D024FF8444ADA7AF2E7DD190F43A5 /* ResponseSerialization.swift */, + 7B30C60907730C125B3CAF96828B1345 /* Result+Alamofire.swift */, + 32676B0C10156AE2B44F62123826606B /* RetryPolicy.swift */, + 80E524EA9F07A72BEED0BF2EAE332ADC /* ServerTrustEvaluation.swift */, + DB972FDE9F4CB55BBE6091C8FC42CC42 /* Session.swift */, + 20FBDAFEAD17C83E15D56981FFFB3E1F /* SessionDelegate.swift */, + 998DCDD3E97D357366BC4DF4228D2A16 /* StringEncoding+Alamofire.swift */, + C5E1AD022219F667D2C7EA38101AC5A4 /* URLConvertible+URLRequestConvertible.swift */, + 85AA8EE550921D3412ACAC844261F9B4 /* URLEncodedFormEncoder.swift */, + AA8BF8D232858F1AF12E1DAD3CDB36CF /* URLRequest+Alamofire.swift */, + 28270FA4B1F90288064B7E65BC15DE10 /* URLSessionConfiguration+Alamofire.swift */, + A1E8B23DCBA9E2C9BEFDCF991A046718 /* Validation.swift */, + 956049C411804A6E02257003488AFC0C /* Support Files */, + ); + path = Alamofire; + sourceTree = ""; + }; + 9348A27E51FC175840E5A0785AFEEB5C /* randen */ = { + isa = PBXGroup; + children = ( + A7F12467FA5E0348A357F273FF069270 /* randen.cc */, + 171C5777CEA8840DDD1CD999E5BC2C3B /* randen.h */, + ); + name = randen; + sourceTree = ""; + }; + 936C14F8E70C70D285F6D3F961F85B27 /* cordz_update_tracker */ = { + isa = PBXGroup; + children = ( + 58346AF408FED4FB13D306374A150883 /* cordz_update_tracker.h */, + ); + name = cordz_update_tracker; + sourceTree = ""; + }; + 9522BA968151566217F1868587FFF0E0 /* config */ = { + isa = PBXGroup; + children = ( + AF61804A5FA45D2047D450F82A3AD0E8 /* config.h */, + C9237AF0E982CAF65E382E0E0033B191 /* usage_config.cc */, + 4F71C51ACFE53D69EA7829C3D019A242 /* usage_config.h */, + ); + name = config; + sourceTree = ""; + }; + 956049C411804A6E02257003488AFC0C /* Support Files */ = { + isa = PBXGroup; + children = ( + AFEB6B47011FD3F4C162EF39406CD20A /* Alamofire.modulemap */, + 4259EB1F7F04C1A8EFD6A66D11311F3D /* Alamofire-dummy.m */, + 980741234F3840C58FADC9DFCAA1AF4A /* Alamofire-Info.plist */, + 1BD6758C550CCD9EAA0C101F6C267B37 /* Alamofire-prefix.pch */, + 125021A8DC96D47686D1CD93FBD42834 /* Alamofire-umbrella.h */, + 03612F402550043CF94C3EE7A25AC810 /* Alamofire.debug.xcconfig */, + 3244B6EE33DB1E5022BE2B321E2C34DA /* Alamofire.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 971EFAD6F14A495B897C7ABA6E1B9435 /* common */ = { + isa = PBXGroup; + children = ( + 57358FC81AD350B751CEB3D16D6C0368 /* common.h */, + ); + name = common; + sourceTree = ""; + }; + 97C7FD5CF0FFAC39055AEB8F3E37B21B /* common_policy_traits */ = { + isa = PBXGroup; + children = ( + 60974EF69B1484582DF23C543F229C0C /* common_policy_traits.h */, + ); + name = common_policy_traits; + sourceTree = ""; + }; + 98C5E806360A545C897AE19BFCA0749B /* fastmath */ = { + isa = PBXGroup; + children = ( + BDE739610C56258EF257E163CF5BF175 /* fastmath.h */, + ); + name = fastmath; + sourceTree = ""; + }; + 994E5F2A70C4F83D6F10067B7C0B4E1F /* Support Files */ = { + isa = PBXGroup; + children = ( + 799216CE950069533693C084258F69AD /* BoringSSL-GRPC.modulemap */, + E13E0FBB4974BBF1B64711E76875D9DC /* BoringSSL-GRPC-dummy.m */, + BD6070C1741F31D29516EB7B228C3B54 /* BoringSSL-GRPC-Info.plist */, + 056AF6F68B647CCC2B7805F5279B6FDF /* BoringSSL-GRPC-prefix.pch */, + 142E2EAC2659804680E6AE8E7DD97C3C /* BoringSSL-GRPC-umbrella.h */, + 0E40BFA7922946911BEC25489A98C1B4 /* BoringSSL-GRPC.debug.xcconfig */, + 1C68A2DAFE27B53B89DAF433F1FDD1BF /* BoringSSL-GRPC.release.xcconfig */, + BAE9F8038F8DB782F79DEB8949629954 /* ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/BoringSSL-GRPC"; + sourceTree = ""; + }; + 9A239FC8CB3F58A29329AF87681075FE /* Support Files */ = { + isa = PBXGroup; + children = ( + 699D4446C6FCF4E754958B54361837E2 /* FirebaseRemoteConfigInterop.modulemap */, + 7B088961751151889C6F17723566E2CC /* FirebaseRemoteConfigInterop-dummy.m */, + 69FE4A0B7F1BF0BFF9FB383038C679FF /* FirebaseRemoteConfigInterop-Info.plist */, + 4DEC9A5151B78AA62DA14042AFA2C28C /* FirebaseRemoteConfigInterop-umbrella.h */, + 1497D86C7A7704B531593FAD84639BFD /* FirebaseRemoteConfigInterop.debug.xcconfig */, + 3D5BB56DB26C4CE0A8387C17D3270E4A /* FirebaseRemoteConfigInterop.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseRemoteConfigInterop"; + sourceTree = ""; + }; + 9AAC1E60A603120D86CD95ECDD6B6FAB /* Resources */ = { + isa = PBXGroup; + children = ( + 5F8658D3EDBCDCC7BE820BD39A73D906 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 9ABD5C4602DF84A9934D7DF9D17E91AD /* Support Files */ = { + isa = PBXGroup; + children = ( + C3FC18F2A63BFCE44F4A715D6F6D89E2 /* FirebaseInstallations.modulemap */, + 79720E42BC74A3CE57B51D6C946943F3 /* FirebaseInstallations-dummy.m */, + 813E0CBE9825A00F690447679392778B /* FirebaseInstallations-Info.plist */, + 3C65593B21F80FAB8F750AB936D521BD /* FirebaseInstallations-umbrella.h */, + 65A71AD57C0B380BD0CA797F7C7EF625 /* FirebaseInstallations.debug.xcconfig */, + BF613118CD1E5060C1629E985255E81C /* FirebaseInstallations.release.xcconfig */, + 85AFE3FDDE9BD4E30524104687B18F04 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseInstallations"; + sourceTree = ""; + }; + 9B1E50FE4A6DD639EEDFEA13700543B3 /* commandlineflag_internal */ = { + isa = PBXGroup; + children = ( + 8E559AFE5EC2C77B0A2AD35C850ADE41 /* commandlineflag.cc */, + 8D116A2C7C9284BE01F6BBE45A35BDB7 /* commandlineflag.h */, ); name = commandlineflag_internal; sourceTree = ""; }; - B1E5D5872399597AF027426B5C38E394 /* str_format_internal */ = { + 9BF4F0878DF495844F2E1ACF473581C9 /* hashtablez_sampler */ = { isa = PBXGroup; children = ( - 051703D9A626D5D3608CF7752766B09B /* arg.cc */, - 0FABEC692EDFA2ED841001DCCE3D73F5 /* arg.h */, - F5965409D567BE1FC90914D31820D47B /* bind.cc */, - 602CF9CD7C25796E7A77A8970E84234D /* bind.h */, - B4AA4FBFC848FC8516B27AC7768A419A /* checker.h */, - 23B2ED42716C5826248C1BF99C8A647A /* constexpr_parser.h */, - AE14A977C0CCA543FC357102ADA3D1F4 /* extension.cc */, - 35AD86F4109ECC5F1E5081BFEC51409F /* extension.h */, - 4600163DBD97382A659745D8AD32196D /* float_conversion.cc */, - 2C189C161B98E5D16854F9A731F4C2C7 /* float_conversion.h */, - 8C4350D6C303BCD5E89DFBE0F5346878 /* output.cc */, - F4673CC8D72E5FC265C1C03037AF4B70 /* output.h */, - F67866E508E6FC6F8FB15FAA2464A999 /* parser.cc */, - 76EE5FD8B2C754ECFB7DA58F6C93E3AF /* parser.h */, + B431E850FE0204967E67090AA5A47E71 /* hashtablez_sampler.cc */, + 9C306C14F33F47B57739BA5EB124C275 /* hashtablez_sampler.h */, + 2D2CC1BCCD2C25BBC8EB9668848D84CF /* hashtablez_sampler_force_weak_definition.cc */, ); - name = str_format_internal; + name = hashtablez_sampler; + sourceTree = ""; + }; + 9C0FC7B6C6B376B1F251341BAF4A0658 /* reflection */ = { + isa = PBXGroup; + children = ( + 96C3DF58083A24BF2641DF82FABEEFA7 /* reflection.cc */, + BCF4E1A097A5ED167A3537230DA96C6D /* reflection.h */, + 2C46C382856B92934F6E85C840401D62 /* registry.h */, + ); + name = reflection; + sourceTree = ""; + }; + 9C43A504B649B0EBDA4539BA4169D804 /* GoogleAppMeasurement */ = { + isa = PBXGroup; + children = ( + 17DE4DF40709CFD27A7818962798DB75 /* Support Files */, + 81D7FD0D4117FFF99E33FA9777C014BD /* WithoutAdIdSupport */, + ); + path = GoogleAppMeasurement; + sourceTree = ""; + }; + 9CB191BFE20E56B1A69F807389469025 /* Resources */ = { + isa = PBXGroup; + children = ( + 0BB1FA18A73BB796461DC97E8B339262 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + 9DB79E1436CE604B277C5AD5D3EBE64A /* graphcycles_internal */ = { + isa = PBXGroup; + children = ( + E24D2309E2EB38C4798CC62AE61DCF57 /* graphcycles.cc */, + 344C85D8677C71FD007EDB1BFA0309C6 /* graphcycles.h */, + ); + name = graphcycles_internal; + sourceTree = ""; + }; + 9DE4889B182E250E496F5570C5551DDF /* marshalling */ = { + isa = PBXGroup; + children = ( + 8C86DED5F6ED862F2115836CFF6D54AE /* marshalling.cc */, + 2C8AEFA1D9937659CA0E31E830B332CC /* marshalling.h */, + ); + name = marshalling; + sourceTree = ""; + }; + 9E09BFD37340AF7697D5FB3730AE482D /* base_internal */ = { + isa = PBXGroup; + children = ( + 7A5797544FEFCE28FEB9A43AF7A54AD7 /* hide_ptr.h */, + B3201C06F076810E26EE8DFE98351B62 /* identity.h */, + 889E22D3A0EA8D6268A349F2509E39CB /* inline_variable.h */, + A7325AC4BEC7EF7D4DCD33B02B3E198D /* invoke.h */, + 5B55C369C7709CC1F831C89FFEFF05EE /* scheduling_mode.h */, + ); + name = base_internal; + sourceTree = ""; + }; + 9EE8FEE243C4FA96C89DA1B8C2912F89 /* non_temporal_memcpy */ = { + isa = PBXGroup; + children = ( + 5D4CBA6B6FAB805AC62E53ED590A1DA6 /* non_temporal_memcpy.h */, + ); + name = non_temporal_memcpy; + sourceTree = ""; + }; + A07AB72B7721B4D16511A273B064E396 /* time_zone */ = { + isa = PBXGroup; + children = ( + 650A66A4A5F6B90D18580AE3200202F1 /* time_zone.h */, + 135439107741CFFCE44F2B22A01D9416 /* time_zone_fixed.cc */, + E1C48931E9E3BDB9F6FFB26F947D7B95 /* time_zone_fixed.h */, + F20DB90E1645750897BACD90BBA9BCD2 /* time_zone_format.cc */, + 84F05FB9DC241215951E68478A44B017 /* time_zone_if.cc */, + 170302E302D2B1DA9832C897C9257DDA /* time_zone_if.h */, + 80914B43EA1BFF563352E4D902A47950 /* time_zone_impl.cc */, + 03E82C036F33D6338E07756855797090 /* time_zone_impl.h */, + 14C192441EB045EC717B078632CF1E9C /* time_zone_info.cc */, + AD4713D32CE013043C8D0A38E24F98E1 /* time_zone_info.h */, + 31BC0B59B3C2B32E10D575E7FD148942 /* time_zone_libc.cc */, + E147DEB1B5F1AAE448F78A750A6A96B9 /* time_zone_libc.h */, + F79B9DD255D7C81A67EA416054EE17F4 /* time_zone_lookup.cc */, + BC035354F5F85E77F3355E70BA6FA9A1 /* time_zone_posix.cc */, + 3DF3B87F8ACCF6869074996DC13CBECF /* time_zone_posix.h */, + 18146C7EB413A4F310202598CE889CB8 /* tzfile.h */, + F1FFAE872A54041BFA48AE10555CCB7A /* zone_info_source.cc */, + D639857D089B39120D462486C6EF7EFC /* zone_info_source.h */, + ); + name = time_zone; + sourceTree = ""; + }; + A11848BDC48A66995F1FB78B529B6F1A /* statusor */ = { + isa = PBXGroup; + children = ( + 74B5C677876C4D29E11A039E1AF82863 /* statusor.cc */, + 64350494672465444512E258A2B05C79 /* statusor.h */, + FD0C7D6450F5399BE524879DCB64289F /* statusor_internal.h */, + ); + name = statusor; + sourceTree = ""; + }; + A24D1AC7563EF696DB8BE6FB8EBA1FAB /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 91455F402ACA60D378F175F1900D631A /* AnimatedImageView.swift */, + 90D0D01B52391BFB840AF92D198D6B42 /* AuthenticationChallengeResponsable.swift */, + 4C27F0C0AFA49CF78885A1C9F0516450 /* AVAssetImageDataProvider.swift */, + B6BE896FBB6DC715ABFDBF34D72EA44F /* Box.swift */, + 36DB7F61CF9198C7B50155B1753A7D07 /* CacheSerializer.swift */, + 4FBBF0CF4012FC71E2BF3C0B5999235E /* CallbackQueue.swift */, + FB6A3684DD306B67CDF7C20522A3162B /* CPListItem+Kingfisher.swift */, + 16D1BCF1F01268CAFDC2246D77FE7A8B /* Delegate.swift */, + 7636C8CC20D4C9DE849AF3A77913DE35 /* DiskStorage.swift */, + 5D220BE80C523D5DEF90C7DE07E907A2 /* ExtensionHelpers.swift */, + 5894F923B5293DE0FF8BFD1268989217 /* Filter.swift */, + 7AE08045AC55EE660333DAA0D2ED4E11 /* FormatIndicatedCacheSerializer.swift */, + 6F471431874B905AC803BB71CF5731E3 /* GIFAnimatedImage.swift */, + 977E2A9B31BE581F89C0547CC302790C /* GraphicsContext.swift */, + CA8027FA34638A385959868FCBA97692 /* Image.swift */, + 83E36DBAB950694432890B645F2F5423 /* ImageBinder.swift */, + 61BBE48C52C2871E6EF80B86F79AD720 /* ImageCache.swift */, + CA4C327C273139A3733F96E498F1E6F0 /* ImageContext.swift */, + 7B32D3395430226B2EB9D803D5C01D60 /* ImageDataProcessor.swift */, + DBFDB731008CD636639EBCFA291884D3 /* ImageDataProvider.swift */, + FC473A64934177A2501512E56EDB6AE7 /* ImageDownloader.swift */, + 55EDC0C0E750FF653D279F2AF4F191DE /* ImageDownloaderDelegate.swift */, + CEA3ED08D028963D293B51198E13DC8F /* ImageDrawing.swift */, + C6454F4815982BD2E1ED47976337CB28 /* ImageFormat.swift */, + 1AFA38D1DA9058AD4E147861083714FB /* ImageModifier.swift */, + E551D546ADB7E328DFCC3A55EA8AA350 /* ImagePrefetcher.swift */, + A3CB801F2A366FCF02FEBA88F769EF56 /* ImageProcessor.swift */, + C5E644C2F1679DF5AC9DABD0263F8229 /* ImageProgressive.swift */, + 0464D37DF3B8C8A481761B5CFCC0DF27 /* ImageTransition.swift */, + DDFA1919249602BE6930D1560E812640 /* ImageView+Kingfisher.swift */, + F45971E679A9797C475FA1594E4251BF /* Indicator.swift */, + 4A64EA68C8FA938C01F6D920F2321D53 /* KF.swift */, + F698F53692D051BB4C6D1BFE3D2A51C1 /* KFAnimatedImage.swift */, + 09CEAC7A12A566870596376A41EB9BA1 /* KFImage.swift */, + 58097BA075B64006BADF4CD9DC79BD60 /* KFImageOptions.swift */, + F7D55BA3C5D53A9EADABCA2704C8918D /* KFImageProtocol.swift */, + 91968E1111C861C0E1580120381923B3 /* KFImageRenderer.swift */, + 00482468D86619E488D88595A7410EBA /* KFOptionsSetter.swift */, + 8EAC2428D431B65CF2A7F9125542E5C4 /* Kingfisher.swift */, + E2EDE63152D5461E3E16CDCF9868D0B3 /* KingfisherError.swift */, + 28BE1F0CF532B39FA6C69197748C4F96 /* KingfisherManager.swift */, + DC99AAB06DCA4C2E71E05B3D4733ECC8 /* KingfisherOptionsInfo.swift */, + 68531312A3D063A6FE88520DDDE9BA60 /* MemoryStorage.swift */, + 5D17D84DB9BCEFCF79D67A795D262010 /* NSButton+Kingfisher.swift */, + 47C080CC52714ABC160A5C7BA747F7CE /* NSTextAttachment+Kingfisher.swift */, + 499B4E6838BDB69C7A9A55059CEAFDCD /* Placeholder.swift */, + 8A2649EAD1BBD423859C4852C55F2F5B /* RedirectHandler.swift */, + 10B4FE73C174AF8519DA723520BB0C7D /* RequestModifier.swift */, + E1937C1ED7A74BA33C671718D2ED520C /* Resource.swift */, + F5A7C3498C65D302F1A832DC4DD5BE62 /* Result.swift */, + 6FB40B5455A455BA0C1049498E4C2075 /* RetryStrategy.swift */, + 4338B4E11C3FF4FAF9B1410938684C75 /* Runtime.swift */, + C185C3C4A026D1947B149F451E7E663D /* SessionDataTask.swift */, + 25EF42CC879A8DB45244E342DC9985BB /* SessionDelegate.swift */, + 665276C405F7327EA6849B60337DDFA1 /* SizeExtensions.swift */, + 931B085355A02EBC1BD4C7814773A4F7 /* Source.swift */, + C4B055AC9A2DFB13536ED72CC07FE890 /* Storage.swift */, + 48CD85A5DB5F5A7B0262FB9C5F025884 /* String+MD5.swift */, + 3DDC6ABE53DB28411CA690AC5904024E /* TVMonogramView+Kingfisher.swift */, + 7A3E8B2A4B3F5BBAFA7270D69FF0BD58 /* UIButton+Kingfisher.swift */, + C285AE5D8F22449099FA4272F7D0CFEA /* WKInterfaceImage+Kingfisher.swift */, + 32BBEEEDCA4226C018A7124D71198D2E /* Resources */, + 40EF92C9C9682FA0AB857F15663ED1B7 /* Support Files */, + ); + path = Kingfisher; + sourceTree = ""; + }; + A278B6544D854EAE60D271A09BED2DE0 /* nonsecure_base */ = { + isa = PBXGroup; + children = ( + EFDB666B07433487254E38AF539A7D33 /* nonsecure_base.h */, + ); + name = nonsecure_base; + sourceTree = ""; + }; + A2C14E08898C491026BDBC93355EAE61 /* wide_multiply */ = { + isa = PBXGroup; + children = ( + 8049259CA125FB0D326AF6064E0E5860 /* wide_multiply.h */, + ); + name = wide_multiply; + sourceTree = ""; + }; + A30D28EF0B82E8492229EB153C1351AE /* Support Files */ = { + isa = PBXGroup; + children = ( + 0D4A893484B3AD0B33F9B1CE93E6AAAD /* PromisesObjC.modulemap */, + D13E1DA7E3A82B67750741E98DCBE906 /* PromisesObjC-dummy.m */, + 87AE295455CA8420D92A0823A26B3541 /* PromisesObjC-Info.plist */, + 2A8E62165648A776A47061DF9D50C2FA /* PromisesObjC-umbrella.h */, + 929724249058E887C4B6CF1278020B62 /* PromisesObjC.debug.xcconfig */, + 35EA6C8E9C0E95CCE50CACC31B0E358E /* PromisesObjC.release.xcconfig */, + CF7BDA486E0DCA50A6C7046714E6012C /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/PromisesObjC"; + sourceTree = ""; + }; + A4321B68F6985EBB9F4CED1894864203 /* Resources */ = { + isa = PBXGroup; + children = ( + B35D736874D591A0DEB57CC53C0F46E3 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + A87B11E0F466DCFFD9D45F15A166390E /* meta */ = { + isa = PBXGroup; + children = ( + 8F3366C76EDCD5326398472C7599580C /* type_traits */, + ); + name = meta; + sourceTree = ""; + }; + AB8072CDCAF57F019BF928E391B830C8 /* bad_variant_access */ = { + isa = PBXGroup; + children = ( + 81D39A9230F3D6CE492DF2568EBBEE2A /* bad_variant_access.cc */, + BB58F949572A1077313E0B426BEAAF7A /* bad_variant_access.h */, + ); + name = bad_variant_access; + sourceTree = ""; + }; + AC7FD8CDD412D5AE9445437FAEA9B111 /* traits */ = { + isa = PBXGroup; + children = ( + 12732F303050B0B504FF79F7D3BCD6F3 /* traits.h */, + ); + name = traits; + sourceTree = ""; + }; + AFE2440065770DB7974E5307385FD2AD /* cctz */ = { + isa = PBXGroup; + children = ( + 329475719A2916878363C72174159B99 /* civil_time */, + A07AB72B7721B4D16511A273B064E396 /* time_zone */, + ); + name = cctz; + sourceTree = ""; + }; + B0CFF9DEDE449956A2E2262A16539899 /* Basics */ = { + isa = PBXGroup; + children = ( + 9E4540709FF4E8E92B7A02F3A80D7B85 /* FBSDKBasicUtility.h */, + 14D8318AFC30BE39B836DD14432195C7 /* FBSDKBasicUtility.m */, + A5EA1E51F024272503C513D3903C226C /* FBSDKCrashHandler.h */, + F0F4F3668FFF4FCF5E0748F6B56E1643 /* FBSDKCrashHandler.m */, + 8B19BAFAF0F3F0074C39C9DFE3DE2260 /* FBSDKCrashObserving.h */, + 543760E2E2C263D0180B21A29CC31C36 /* FBSDKLibAnalyzer.h */, + 5B60863863CB78879DFBD2A491B95D72 /* FBSDKLibAnalyzer.m */, + F4984AE83F324CA56C21F7CD98D5EBD2 /* FBSDKTypeUtility.h */, + F3C6B0D05E80C781268899D76B42EBBD /* FBSDKTypeUtility.m */, + D9320F65E0A1909F90D4AC2449249E94 /* FBSDKURLSession.h */, + 871A7A53D54E55ED4BF4BFB1236A2F68 /* FBSDKURLSession.m */, + DE2DBC5DE971CB286FAE66C52A270E26 /* FBSDKURLSessionTask.h */, + 488BC6D217889A41FE8BAFCC866C6D13 /* FBSDKURLSessionTask.m */, + ); + name = Basics; + sourceTree = ""; + }; + B152A9E169E83DFB58B2C84E300519B8 /* layout */ = { + isa = PBXGroup; + children = ( + 3A0048F0ECA023F221D3C389A27F0DD7 /* layout.h */, + ); + name = layout; + sourceTree = ""; + }; + B29861C9C44575332CEDFB4EC16980DE /* internal */ = { + isa = PBXGroup; + children = ( + AFE2440065770DB7974E5307385FD2AD /* cctz */, + ); + name = internal; sourceTree = ""; }; B2B9EB2A36AA09676F68DD8C05C3964B /* iOS */ = { @@ -32066,1430 +32854,475 @@ name = iOS; sourceTree = ""; }; - B339D0CC10E97890C0C3FDA61568344C /* str_format */ = { + B2C9A3BD2FE83D0557783A24835B15B6 /* FirebaseSessions */ = { isa = PBXGroup; children = ( - EF310751FCB3F73A4A3AD17AD78A8DBA /* str_format.h */, + C53762C49426063A9A64CBC55A2A85E1 /* ApplicationInfo.swift */, + 17F1C7285BFFA6D517A273971D15669F /* DevEventConsoleLogger.swift */, + 2F4F5F489E05B33CBDCDB73853505ABF /* EventGDTLogger.swift */, + 42F177E6B423248CB2F8CBA6A3670698 /* FirebaseSessions.swift */, + 79C9BA975155E67975331CC4F915B323 /* FirebaseSessionsError.swift */, + F9D70B74E2C58E39C132389C39ED0768 /* FIRSESNanoPBHelpers.h */, + 129C50E2E57433177947028E411E96DB /* FIRSESNanoPBHelpers.m */, + D59D556E20FA639C49D6132729D6451D /* GoogleDataTransport+GoogleDataTransportProtocol.swift */, + D57385F04DB3F1431D2782336822CC78 /* Installations+InstallationsProtocol.swift */, + D0F1DC1B4F860960A3DE9F968C10A130 /* LocalOverrideSettings.swift */, + B5E490385EC7194F3C7B3EE81DA50724 /* Logger.swift */, + CCE76D395E10B023CF3F5CF94A9A0089 /* NanoPB+CustomStringConvertible.swift */, + 6C0B24E481DF350C988A510379407884 /* NetworkInfo.swift */, + EDEBFF4EB4CD7E76F6A23B924B488306 /* RemoteSettings.swift */, + E3D48653274FABB832346CC2441D43C9 /* SDKDefaultSettings.swift */, + A0006D9BB0FB6C8C61CC62E5F7AF7E16 /* SessionCoordinator.swift */, + 167885D157258352F18D9DCA0166D2D5 /* SessionGenerator.swift */, + BB311D596CFD12AB1D0B0305CE54DA59 /* SessionInitiator.swift */, + 9E689BFD5C4F7A5CCF55A1C8AC7053B9 /* sessions.nanopb.c */, + 19437EBEAA186FA348CF59405FC8D6E6 /* sessions.nanopb.h */, + A6F98CAA0A783D8563A71A1EBAB23739 /* SessionsDependencies.swift */, + 996DAE7395EEDBFFC7914BA037CE3ECE /* SessionsProvider.swift */, + EA632926D895DDA10E1544F0848BBFB6 /* SessionsSettings.swift */, + 5D93E49A18FFAABD27618C5A4C7BE1FC /* SessionsSubscriber.swift */, + 20C44B5DB5247C04D4F75145D6FAB0BE /* SessionStartEvent.swift */, + 858A8B2D11D0623DC5881EB4E5BBB2DE /* SettingsCacheClient.swift */, + 401FE22CB247B28C9FEBC9C2A8DD823E /* SettingsDownloadClient.swift */, + 631240DFB4275FACD668160DDFE5A07A /* SettingsProtocol.swift */, + 068B69023234BE327E96B99C3642CC81 /* SettingsProvider.swift */, + BD3F8DD3C56B52416E932EFEA6F6E251 /* Time.swift */, + E722451C7CB0BD6761297E1718A6A1E6 /* Support Files */, ); - name = str_format; + path = FirebaseSessions; sourceTree = ""; }; - B44D76BB6014F4C851B413C687117138 /* Support Files */ = { + B2F9DF02A82C8BFEB47525A7C53E84DA /* GTMSessionFetcher */ = { isa = PBXGroup; children = ( - 3D344AC57E3106A35A73E1DA0DBCF8F0 /* Firebase.debug.xcconfig */, - 606D406A1A0DA24861DFCF1F13B1D0C1 /* Firebase.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Firebase"; - sourceTree = ""; - }; - B50D0DC5DB169D793A20F921E68208D8 /* Support Files */ = { - isa = PBXGroup; - children = ( - F1A882F0FC2E21023889FA8150771596 /* FirebaseRemoteConfigInterop.modulemap */, - DDD0B970B9DA1372279341ACA6E8B74D /* FirebaseRemoteConfigInterop-dummy.m */, - 0440D1A49980199B182DF9ADBCDB8F11 /* FirebaseRemoteConfigInterop-Info.plist */, - 21794A2B7EC727BD450EF42B2F9A166D /* FirebaseRemoteConfigInterop-umbrella.h */, - DC43EE7C9C0AB4B6DA1C6F9CDFBA611C /* FirebaseRemoteConfigInterop.debug.xcconfig */, - B3FBEC2A5EC429C74513E13DDC3BAD97 /* FirebaseRemoteConfigInterop.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseRemoteConfigInterop"; - sourceTree = ""; - }; - B531728192309098312215555F7B72DD /* cordz_statistics */ = { - isa = PBXGroup; - children = ( - 414E17B83AC5B77FFDF389B4AC674C65 /* cordz_statistics.h */, - ); - name = cordz_statistics; - sourceTree = ""; - }; - B67F7C0B35ED3F7E2C737D140606A39D /* FirebaseRemoteConfigInterop */ = { - isa = PBXGroup; - children = ( - 17D8519F673E5109A6A32BCB13E26DEB /* RemoteConfigConstants.swift */, - A1E44795B819A8DC7485F9C21C7954E6 /* RemoteConfigInterop.swift */, - 96DEF8F57E53C2CC127BF12212DE8DAB /* RolloutAssignment.swift */, - 7F767C286D30670E838ABE016BF27A79 /* RolloutsStateSubscriber.swift */, - B50D0DC5DB169D793A20F921E68208D8 /* Support Files */, - ); - path = FirebaseRemoteConfigInterop; - sourceTree = ""; - }; - B79179EDFDDAEBF93C94BD875A709A0B /* gRPC-Core */ = { - isa = PBXGroup; - children = ( - 489131B1F7DA341DC49CCA7E4EF65078 /* Implementation */, - A7D3B491B6FAE89084A3E3E80E0CF17F /* Interface */, - 09E8EA52162E6FCA363DCAA8C35F3280 /* Privacy */, - 2600F29BC8427DD5F33466FDFA720299 /* Support Files */, - ); - path = "gRPC-Core"; - sourceTree = ""; - }; - B7B9DC254C0B6B01A952CAA0B2F39843 /* variant */ = { - isa = PBXGroup; - children = ( - D888C97EF7D5DE552B3828AACC447128 /* variant.h */, - 4BA5A8003A4E0C064BD5C6B922CFC49C /* variant.h */, - ); - name = variant; - sourceTree = ""; - }; - B7EBF50267CA67467DF47E36F1CECA2A /* graphcycles_internal */ = { - isa = PBXGroup; - children = ( - B4797C79DB0836243727CBFFBF888F28 /* graphcycles.cc */, - 6C9986A337BF42BF2C69246311E15FF9 /* graphcycles.h */, - ); - name = graphcycles_internal; - sourceTree = ""; - }; - B8DC34CE18FC4F1B7239E9D6F9A0D4A3 /* internal */ = { - isa = PBXGroup; - children = ( - 1B50AF709A82AF71D85FB14CDEFC13FD /* distribution_caller */, - C4F806C3A3A462D17DA7F3CD58050AD2 /* fast_uniform_bits */, - 285DAF8B32AA5CF43B597E706A066351 /* fastmath */, - BE381A5084326D997CA8B3CF70D9A963 /* generate_real */, - 39095315938FB00CD312D211C27AA4BB /* iostream_state_saver */, - CED1A078782EE349518ABD4A8425BB66 /* nonsecure_base */, - 7ED1008FCFBDB2C8A72FDDEA2177A397 /* pcg_engine */, - 362DF59C3F4B465CC3A4B34EA8651CE3 /* platform */, - 3AB56EDF44FFB375EE5A6EFD9352B1D2 /* pool_urbg */, - 9F48FAC3E07ACCBCBE7D21A63853BEE2 /* randen */, - FF4FA62A3A6A21E86BC361769958FD10 /* randen_engine */, - 3A30DC4C5F42F4B12D2224677DAC767C /* randen_hwaes */, - EFF663D92B53ADD593FAB5B0FE1120B0 /* randen_hwaes_impl */, - E478C555CD31906C5E7A6E9DC60A1BA3 /* randen_slow */, - C6FEA139094280ACAA86A33C20BC7154 /* salted_seed_seq */, - DC5836EF4AD3376240EA8E2803D5AF45 /* seed_material */, - 60521C329119ED268F68E777FB3A880F /* traits */, - 9E19D665E8618F7D90096DB617989AF5 /* uniform_helper */, - A67239BD36D56256C1023EB45B9DB7F1 /* wide_multiply */, - ); - name = internal; - sourceTree = ""; - }; - BBCE7087B2B78D7BE53F6C154F42149C /* no_destructor */ = { - isa = PBXGroup; - children = ( - 6BD2C52DB3196B2109A41A2246F50D6A /* no_destructor.h */, - ); - name = no_destructor; - sourceTree = ""; - }; - BD9DC31901641D8DEF8F10107B96EF1D /* Resources */ = { - isa = PBXGroup; - children = ( - 0898ED168E15D876AA016D35B9DFCA50 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - BE1513BFFB920032142FD2BCA566956B /* cordz_info */ = { - isa = PBXGroup; - children = ( - 6051FD2FF77E9F1BAA8B51A42B262B4B /* cordz_info.cc */, - 3C3CDB91F03FB87B2C8199310168F77C /* cordz_info.h */, - ); - name = cordz_info; - sourceTree = ""; - }; - BE381A5084326D997CA8B3CF70D9A963 /* generate_real */ = { - isa = PBXGroup; - children = ( - D7D467CCD3EF36F4D32EC76A2CA6104D /* generate_real.h */, - ); - name = generate_real; - sourceTree = ""; - }; - BE60B4EF0D801293BA2E2817969DBACE /* statusor */ = { - isa = PBXGroup; - children = ( - 2D9789E81452F605CE8FCB636B947075 /* statusor.cc */, - 5C4032A0582A980AD142BC240AEB87AA /* statusor.h */, - 6D51DA8EADDA05D9D7560228DB93358D /* statusor_internal.h */, - ); - name = statusor; - sourceTree = ""; - }; - BE63FB0B868397C2546D1D9154F492B8 /* cordz_update_scope */ = { - isa = PBXGroup; - children = ( - F0E4E5BD77D03325E5A8483B615EEA8C /* cordz_update_scope.h */, - ); - name = cordz_update_scope; - sourceTree = ""; - }; - BF034EDBD4331D15853B103876A63113 /* Resources */ = { - isa = PBXGroup; - children = ( - D689A84F08407313A524E648169E9AC8 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - C13C5AE0F4C8792D5CF8C354F5F5E5C5 /* hash_policy_traits */ = { - isa = PBXGroup; - children = ( - 901EBF253DD697459DC6EB4D6A633512 /* hash_policy_traits.h */, - ); - name = hash_policy_traits; - sourceTree = ""; - }; - C2069E656CD945C0A1A449A9221830E0 /* path_util */ = { - isa = PBXGroup; - children = ( - F38393761DD601B4F321E85D4950815C /* path_util.h */, - ); - name = path_util; - sourceTree = ""; - }; - C2380DAFC6F8C4D92B766703EC27E423 /* Support Files */ = { - isa = PBXGroup; - children = ( - 40C031C3E2F46104A17E11CDEBD9727E /* FirebaseFirestoreInternal.modulemap */, - 2E2350E916317001563C2D794AC716FE /* FirebaseFirestoreInternal-dummy.m */, - 1FDD5A48964D68F9065ADEEEEB939551 /* FirebaseFirestoreInternal-Info.plist */, - 92E3A013D7F2C532463BFB1C5311035A /* FirebaseFirestoreInternal-umbrella.h */, - CAFF4A4C8CC10BC81C7615FC00F21036 /* FirebaseFirestoreInternal.debug.xcconfig */, - 9678B0F688BE12902D2BA0B425F5D4DB /* FirebaseFirestoreInternal.release.xcconfig */, - 93A6660A92583C858FF6AB68B47081A5 /* ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseFirestoreInternal"; - sourceTree = ""; - }; - C277C27F31E041499F9194CC3C396072 /* functional */ = { - isa = PBXGroup; - children = ( - 8CBED1F42BAC4810C98C7F7EE56DBB58 /* any_invocable */, - 19AE28F4103AAB660A34668641C2CA14 /* bind_front */, - 3F605AFB431B0EA4E35EFFDCB3FFE7D1 /* function_ref */, - ); - name = functional; - sourceTree = ""; - }; - C2ADD78F275B62F262A0F0179F73C1FC /* hash_function_defaults */ = { - isa = PBXGroup; - children = ( - 1D7B61AC6D6FE871BE30AC105747CFED /* hash_function_defaults.h */, - ); - name = hash_function_defaults; - sourceTree = ""; - }; - C3C444CE83363451A243C67977E6A062 /* hash */ = { - isa = PBXGroup; - children = ( - 6AD1B01237D46BFBAF3EBCDB7596F66C /* city */, - D95C1481C6CB9DA7FEB5A12571D6E524 /* hash */, - 2773C5137B02069F9BF90CBF7779B630 /* low_level_hash */, - ); - name = hash; - sourceTree = ""; - }; - C4F806C3A3A462D17DA7F3CD58050AD2 /* fast_uniform_bits */ = { - isa = PBXGroup; - children = ( - A92279279AFB5B2751F380015349C0B7 /* fast_uniform_bits.h */, - ); - name = fast_uniform_bits; - sourceTree = ""; - }; - C6346153DA286D0F0BC08AF403014618 /* internal */ = { - isa = PBXGroup; - children = ( - FBDE8CE30E53AD21B34977EF71ED66C7 /* escaping.cc */, - CC28B3D9CF4742AB7351F97E541BF28A /* escaping.h */, - EBA78E7BBA41FF14F1C283F81DDA89C9 /* ostringstream.cc */, - E6025EF17A97E73DBBFC2B9E8E1DC07A /* ostringstream.h */, - CCAAF9C462FBD516E79047968271E216 /* resize_uninitialized.h */, - E1A85EC0F0AE6FCBBCD8E5DBB82ACF94 /* utf8.cc */, - D0D1DCE206B599965A6F50651F5F7E3D /* utf8.h */, - ); - name = internal; - sourceTree = ""; - }; - C6FEA139094280ACAA86A33C20BC7154 /* salted_seed_seq */ = { - isa = PBXGroup; - children = ( - AC4A3FBE868A3EBD85CCCA83D9F7E7EA /* salted_seed_seq.h */, - ); - name = salted_seed_seq; - sourceTree = ""; - }; - C7572177A8150DFEA973BFA0E1243ED9 /* TZImagePickerController */ = { - isa = PBXGroup; - children = ( - 2E1C52F962725D254E911494F0B572D3 /* Basic */, - 53003D8CE89BDE1C7A8D513A8F405168 /* Location */, - 957763B794D0404F5A7721A2093A5F5D /* Support Files */, - ); - path = TZImagePickerController; - sourceTree = ""; - }; - CA60BE5FF7670F73A3AFC5CE6DEAF5B8 /* debugging_internal */ = { - isa = PBXGroup; - children = ( - 0F75CA164232BCBFBE691D719C844C71 /* address_is_readable.cc */, - 786B3BC13115D43F07C19AA9DD2521FF /* address_is_readable.h */, - 7077B0A88860845F3E83CE6FF5162DAF /* elf_mem_image.cc */, - FA17BD8954C193AA99B13D8907BA9BAD /* elf_mem_image.h */, - 227CF7CCE8B62C981AB709CD41F7DFDD /* vdso_support.cc */, - 9E5F412C804DEFD1776ED033166A0752 /* vdso_support.h */, - ); - name = debugging_internal; - sourceTree = ""; - }; - CB8C25BF13731192EFCC1A0155896F93 /* errno_saver */ = { - isa = PBXGroup; - children = ( - 768719912AA1F40F518F31997E057FFA /* errno_saver.h */, - ); - name = errno_saver; - sourceTree = ""; - }; - CD06BE6EA05AB123F9A584E8F2014B57 /* meta */ = { - isa = PBXGroup; - children = ( - DD24E7924F1CE0116B3836F9556AA54F /* type_traits */, - ); - name = meta; - sourceTree = ""; - }; - CD11CBAACE2BCC19AC8E4E2BE5464D56 /* Resources */ = { - isa = PBXGroup; - children = ( - FA99B600E8799E301FA4846C733738EB /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - CE5A5ADEE64EE44FD37B4DDF3214187C /* memory */ = { - isa = PBXGroup; - children = ( - 859AE861BEFC599FFD3FCCCF9EC14878 /* memory.h */, - ); - name = memory; - sourceTree = ""; - }; - CEADABD13B89D3C9B92E549AA426C7FC /* cord_internal */ = { - isa = PBXGroup; - children = ( - 143141C5A0DA3D3F533835FF6A1DBB2D /* cord_data_edge.h */, - 4B191E4358B6A64E620A24D36020B975 /* cord_internal.cc */, - 8FE16CBD44669EEA7207DC9293A0DBC5 /* cord_internal.h */, - FAA440226BAC7DD9C68DC9A8F4A827CA /* cord_rep_btree.cc */, - 3E01528A26913878A1635A06928823C0 /* cord_rep_btree.h */, - D2892DEE5621AEC463CF056958426862 /* cord_rep_btree_navigator.cc */, - E60330B07A5528BF4764837EA8F145E9 /* cord_rep_btree_navigator.h */, - 9032F0DDF320799DBB4B2431DD5D9FAB /* cord_rep_btree_reader.cc */, - 26B29E40967E63BE8A3A7BC91217A296 /* cord_rep_btree_reader.h */, - 257BE1B66ADC943B4A1736813D053E25 /* cord_rep_consume.cc */, - D3F98C97E27031D47EAE9DDDCE115A80 /* cord_rep_consume.h */, - BDA0383623D3A6FA9E4DAA3FF5CCC689 /* cord_rep_crc.cc */, - 2A0451392DB375C419D4B7598730FE18 /* cord_rep_crc.h */, - 38070771B95D10D76CCE305B763CC9EE /* cord_rep_flat.h */, - ); - name = cord_internal; - sourceTree = ""; - }; - CED1A078782EE349518ABD4A8425BB66 /* nonsecure_base */ = { - isa = PBXGroup; - children = ( - C74DB6726841E441F0258BF6A4E58FA0 /* nonsecure_base.h */, - ); - name = nonsecure_base; - sourceTree = ""; - }; - CEDC9F3E39B6BCA50D254A8FDAF692B0 /* Support Files */ = { - isa = PBXGroup; - children = ( - EBF3377B3F9E9048F5510A58ED4E5B73 /* FirebaseAnalytics-xcframeworks.sh */, - F430E1151B325AEECD7898201A1154DE /* FirebaseAnalytics.debug.xcconfig */, - 49F68603B305495ECAD879EAF317031F /* FirebaseAnalytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAnalytics"; - sourceTree = ""; - }; - CF1408CF629C7361332E53B88F7BD30C = { - isa = PBXGroup; - children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 48A7B7CE1BC11DFAA128559A9ADA8564 /* Frameworks */, - 3D6A2D0D4E20E168559149EAFD0763FF /* Pods */, - F7C3B71C9A8A15F817DCF81DC990D2F5 /* Products */, - 0120825BE045D4E212B55474246BD05F /* Targets Support Files */, - ); - sourceTree = ""; - }; - CF465A6C412357093B7A2847E6FA835A /* strerror */ = { - isa = PBXGroup; - children = ( - 6A27DE79A1FE2BC407C2B749CA68EAAB /* strerror.cc */, - CB3FCB97C62A59A1EFC69C5A5D3E5FA0 /* strerror.h */, - ); - name = strerror; - sourceTree = ""; - }; - CF853B5CA208D4E6DA78B0FEE8C5AC1B /* malloc_internal */ = { - isa = PBXGroup; - children = ( - E08E287BEDAFD6CA0B6B37261FA5513B /* direct_mmap.h */, - 4CBD292B2234BBBECBFA4CD682E66B32 /* low_level_alloc.cc */, - D45C48A83B7121819E1688B6D9E4B68C /* low_level_alloc.h */, - ); - name = malloc_internal; - sourceTree = ""; - }; - D09FADD7F046EBF93EE3695699414B59 /* Resources */ = { - isa = PBXGroup; - children = ( - C9AA63B894BF76BD5D614024B0053D43 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - D1A3160C425BA3991CC18BE3573B1FEA /* FirebaseAnalytics */ = { - isa = PBXGroup; - children = ( - CEDC9F3E39B6BCA50D254A8FDAF692B0 /* Support Files */, - 4B76DE6ED19BD398BCCE57DAD3A50C04 /* WithoutAdIdSupport */, - ); - path = FirebaseAnalytics; - sourceTree = ""; - }; - D2271D27A068A9E6541533A5181B0635 /* hashtable_debug_hooks */ = { - isa = PBXGroup; - children = ( - 51DAE8DA6C1625B178443E8B726DB7D4 /* hashtable_debug_hooks.h */, - ); - name = hashtable_debug_hooks; - sourceTree = ""; - }; - D368AAD24CAA649D3779CCA6246BDF98 /* cordz_functions */ = { - isa = PBXGroup; - children = ( - 9F0C934CA2D29BB365D5026288C471F7 /* cordz_functions.cc */, - 291F872F1DCBBCBB75FC043CD38B8969 /* cordz_functions.h */, - ); - name = cordz_functions; - sourceTree = ""; - }; - D42ABC9353F75A10013F84B0614EE3A0 /* GoogleUtilities */ = { - isa = PBXGroup; - children = ( - D8FFF632F5559BE31D7601CD1CF90FB8 /* AppDelegateSwizzler */, - B14B5B7F1A937E3D6A6A63F766E328F7 /* Environment */, - F6F6B6A3E03F5CC0C3E02426188D1BB5 /* Logger */, - 1CA76E96A290B40EC62313ACE17AB89E /* MethodSwizzler */, - B001DBE9E6223FB15F9985866EB33442 /* Network */, - E4D99D6BD68574634E83D2762CA2084E /* NSData+zlib */, - D4BDAF5E3B6D39B36D9E794E8B023356 /* Privacy */, - F1A70A004C929C282123376B20F4B1D1 /* Reachability */, - 3862B10BE588F95B5B45569052FE2900 /* Support Files */, - 0BD5D3E93BE2C0AA7709414C3043BCFE /* UserDefaults */, - ); - path = GoogleUtilities; - sourceTree = ""; - }; - D4874ED18047B5F97A4ED97DBF125D1C /* Support Files */ = { - isa = PBXGroup; - children = ( - D3E53B3E681D297C0D3B733876F67E99 /* FirebaseCoreInternal.modulemap */, - F61F5D4A65DB866E080708B70F24552A /* FirebaseCoreInternal-dummy.m */, - E35494BF6B4616500191706AFCBEEBA4 /* FirebaseCoreInternal-Info.plist */, - EA055C4A97D3DEA1135CBD1F9A7B5181 /* FirebaseCoreInternal-prefix.pch */, - 1945339EF3FDC2B927BA64FBB010D60B /* FirebaseCoreInternal-umbrella.h */, - A0C9878FC2CB8F61CC93B0E267F5C331 /* FirebaseCoreInternal.debug.xcconfig */, - 459EC7C60D6E976732F9A37FE0ADA085 /* FirebaseCoreInternal.release.xcconfig */, - E3217CCFDDCD218459EEE626C7942846 /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreInternal"; - sourceTree = ""; - }; - D4906A0E0586AD2DF6C015C89483A00D /* Resources */ = { - isa = PBXGroup; - children = ( - 6EFA5D21D96FF6FF14F73DC3FF3F8159 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - D4BDAF5E3B6D39B36D9E794E8B023356 /* Privacy */ = { - isa = PBXGroup; - children = ( - CD11CBAACE2BCC19AC8E4E2BE5464D56 /* Resources */, - ); - name = Privacy; - sourceTree = ""; - }; - D546780D0FFAEB58D78C94CAF5E3A93D /* spinlock_wait */ = { - isa = PBXGroup; - children = ( - 6AA5A505CA25303C185500F18742485F /* spinlock_akaros.inc */, - AAF779B7F7232E8CFB933149B631EC17 /* spinlock_linux.inc */, - E0559217778CB0A1B63C1E252698D202 /* spinlock_posix.inc */, - 1D1CF20DF1689CEB5FDC3EDEEF7604B9 /* spinlock_wait.cc */, - 570F331B44FA6E758365496D81FA2181 /* spinlock_wait.h */, - 5F1D2B3DF29D47675BC05D834103E8B5 /* spinlock_win32.inc */, - ); - name = spinlock_wait; - sourceTree = ""; - }; - D6C5F2C0F1610CE0AC4753CCA96203F0 /* inlined_vector_internal */ = { - isa = PBXGroup; - children = ( - 1AF6FF89AF67E7D00FB7CBFB9D8AA7C8 /* inlined_vector.h */, - ); - name = inlined_vector_internal; - sourceTree = ""; - }; - D6DA9943C521E9A710B14889E4327303 /* GoogleAppMeasurement */ = { - isa = PBXGroup; - children = ( - F10CB933349587568B967E95DDB8F977 /* Support Files */, - 86EFC06F519017A22076A581DBF414EA /* WithoutAdIdSupport */, - ); - path = GoogleAppMeasurement; - sourceTree = ""; - }; - D72FC50F6FFA05E5F5213F2EC0CB75D7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 691D22AC448001496B1524FC8BC93F39 /* FirebaseSharedSwift.modulemap */, - CA75C36ADE8F354E13F71641C3AE8C64 /* FirebaseSharedSwift-dummy.m */, - 160F66FB41BBA059E1E094F4BC05B4D6 /* FirebaseSharedSwift-Info.plist */, - B355D4A9D2C0F27C7FC653A09A6EF486 /* FirebaseSharedSwift-umbrella.h */, - 2D620783C913F848C4D00FE9C5DB7E3C /* FirebaseSharedSwift.debug.xcconfig */, - DBE4A002E4ECE1756398E619C706DFF2 /* FirebaseSharedSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseSharedSwift"; - sourceTree = ""; - }; - D8FFF632F5559BE31D7601CD1CF90FB8 /* AppDelegateSwizzler */ = { - isa = PBXGroup; - children = ( - C3F9CBDDEA6D4E4F2609FB6E991F1532 /* GULAppDelegateSwizzler.h */, - 287AD85075CFCF55BDB46BADC732EA73 /* GULAppDelegateSwizzler.m */, - 166B23B917047B215C27F334B8970D13 /* GULAppDelegateSwizzler_Private.h */, - 3EA20938B4C213BD14C852ECA3F187B5 /* GULApplication.h */, - 120F43501F7BFDEDB977C4B4E09EDCA0 /* GULLoggerCodes.h */, - C65A6D788DF89E247AD2DCCE6A65C436 /* GULSceneDelegateSwizzler.h */, - 9DAD198D7B82CCAAA26F5FB855E8A787 /* GULSceneDelegateSwizzler.m */, - 43465AAF82A4693D3BE68D179EA59698 /* GULSceneDelegateSwizzler_Private.h */, - ); - name = AppDelegateSwizzler; - sourceTree = ""; - }; - D95C1481C6CB9DA7FEB5A12571D6E524 /* hash */ = { - isa = PBXGroup; - children = ( - 29E069717BB5872E9E6C1530BF09EF4A /* hash.cc */, - CCACEBDB3AC9173C1E9847F3B148B8F3 /* hash.h */, - 411AFA1497B46ACEE745FF3B7EB0A50D /* hash.h */, - ); - name = hash; - sourceTree = ""; - }; - DB5E33459620A3B6ED2765CCFAB38A1D /* PromisesSwift */ = { - isa = PBXGroup; - children = ( - A0FA1C9F2749DD9B8EB1CB673E4CEB46 /* Promise.swift */, - DF484F1159B0B54FEC7CAB6FAA73A450 /* Promise+All.swift */, - 5F0B78A6341DD63C0C648949361B608A /* Promise+Always.swift */, - 1E9593CD70FBBB63AFD89027623C650B /* Promise+Any.swift */, - 8CB0FB21637F4692890C2D61FA3520D7 /* Promise+Async.swift */, - B3120E1C9C8E77BAA6A62AAEA975311E /* Promise+Await.swift */, - 6A0B6B6AA3D49DB447DB60B3FB00A8A0 /* Promise+Catch.swift */, - 25979D057FA4EC6A2D5168EF38543EA3 /* Promise+Delay.swift */, - 8CB7A1BCF64A6730C86FEB47080B3BB6 /* Promise+Do.swift */, - D2E1E83A3ED641C6D04B9505260837AA /* Promise+Race.swift */, - 813C0CFE1B4A9277F8D16F03F7C83DB2 /* Promise+Recover.swift */, - 52DD13592D3A85ECFDC4A1634BC439D4 /* Promise+Reduce.swift */, - 2F1A988482557E7576BD616498D76A62 /* Promise+Retry.swift */, - 9E4BAAEBDBC94E59BEC8DD792BDA51A1 /* Promise+Testing.swift */, - 1AE1312BA39545CA8C3996688F092335 /* Promise+Then.swift */, - F41F630C70B123193810314FF01A5BA9 /* Promise+Timeout.swift */, - C42EC13FC0EFBB5C03E29949F400CD7D /* Promise+Validate.swift */, - A10B1C4DCF9DD6F33C936BD37C552EFB /* Promise+Wrap.swift */, - 88F5271C080592BBB7B50ABE3EEAD584 /* PromiseError.swift */, - 82C4B160B9C097AC9D2D57CBB95E5460 /* Resources */, - F42D8EDCD40035301304BF8F9E66523D /* Support Files */, - ); - path = PromisesSwift; - sourceTree = ""; - }; - DB64217437BE82563B664CB418E5502C /* SnapKit */ = { - isa = PBXGroup; - children = ( - 0017E8C8CA197B4E10F9230416FDE1C8 /* Constraint.swift */, - 21C766D3E580001116CF0670803D6302 /* ConstraintAttributes.swift */, - 61F9C2EA78975EA9AC830198190F8766 /* ConstraintConfig.swift */, - C48498678FCFB03C3703271B970B46BD /* ConstraintConstantTarget.swift */, - F43D2749B7622C6553C76885581CBCF5 /* ConstraintDescription.swift */, - E5351629C10BA117B7CD6917AB464DF0 /* ConstraintDirectionalInsets.swift */, - 7CD22E0662337E21473F77F3B41D4551 /* ConstraintDirectionalInsetTarget.swift */, - EA44687A4BD46AE4F4E4209102EEEE0F /* ConstraintDSL.swift */, - 76B3FC425D98FE53DDE9A6E0B8F7D4AB /* ConstraintInsets.swift */, - B85AFA7E16D5D8801ED9DD0A95233136 /* ConstraintInsetTarget.swift */, - C438C7908FB710F26BED066865C23720 /* ConstraintItem.swift */, - 09F77B2DA4578E3D0D1AD8DA96029498 /* ConstraintLayoutGuide.swift */, - 045E821EB3F90C611F67D329933C5B2A /* ConstraintLayoutGuide+Extensions.swift */, - 6D9BD93725625AFF2AFF02970C98905D /* ConstraintLayoutGuideDSL.swift */, - 1CA020F5E2945FFA2616C2CA74D37AA8 /* ConstraintLayoutSupport.swift */, - 39473D2D714EC61A5AF158C6C2FD9409 /* ConstraintLayoutSupportDSL.swift */, - 247C7969DF54268FC551FB856C748966 /* ConstraintMaker.swift */, - 26AFEB2655239EF468BCE05E557CC711 /* ConstraintMakerEditable.swift */, - F754AFBD21E4F08B9F25BC49759B2D51 /* ConstraintMakerExtendable.swift */, - 03E464C4BDC67A4C1FAFE1A83F72358C /* ConstraintMakerFinalizable.swift */, - 2C2F1F11EF69B9822D9AE92BA14EF26D /* ConstraintMakerPrioritizable.swift */, - 9075251794A5555B48F463B552F86EB5 /* ConstraintMakerRelatable.swift */, - 4B925C2844CBC00A92ECD42B66FCFBCB /* ConstraintMakerRelatable+Extensions.swift */, - E1C264AF7BAAE028C2B17B52E0623BED /* ConstraintMultiplierTarget.swift */, - 695E473F6B0D1FB2DC6C9DE02821E657 /* ConstraintOffsetTarget.swift */, - E2E818BDC430768F90CE6A652929C1A7 /* ConstraintPriority.swift */, - ABC681F28E429A49C9898FD88EC0482F /* ConstraintPriorityTarget.swift */, - 3EC4080430345470D3B6E6FA7C983BE8 /* ConstraintRelatableTarget.swift */, - 87971FBCAB5DBFA78A360026CF32661C /* ConstraintRelation.swift */, - 76A46A91EACD52FDFC0A6C58111ADFD9 /* ConstraintView.swift */, - D728E251BECE573E09EBD88C92A54CEA /* ConstraintView+Extensions.swift */, - A3AFFE4BFA9E3B1157978D135F05C9DE /* ConstraintViewDSL.swift */, - ECFCEB35B634969A4C24BB05FE38D6E1 /* Debugging.swift */, - 84A7E7A1D848F672F16D435FAE56C581 /* LayoutConstraint.swift */, - AED250AA043E3DA005146A2C213678ED /* LayoutConstraintItem.swift */, - C888C731A8BB5A88218A788E136E80D8 /* Typealiases.swift */, - 1C497D99A2C1FF2CAAC2F3A1288386E7 /* UILayoutSupport+Extensions.swift */, - B08D3571C45D3EFC3044B72D829B989C /* Support Files */, - ); - path = SnapKit; - sourceTree = ""; - }; - DB7954BF038F1935AD6AF68C6B63ECE7 /* FirebaseAppCheckInterop */ = { - isa = PBXGroup; - children = ( - 4501A21085F3380C3FD637B2A42A3153 /* dummy.m */, - 1EC9A0A73AE1AB9A6FEE34A4933F7861 /* FIRAppCheckInterop.h */, - BBA19533E99DE37BAF504882C61EB2C7 /* FIRAppCheckProtocol.h */, - DBA30AC2CCC18924B5AF469C8D0A6D07 /* FIRAppCheckTokenResultInterop.h */, - BF2242C958907DC986BD82F39235940B /* FirebaseAppCheckInterop.h */, - 5DB2A8F69BA7B7FE6853CF8D8365F76E /* Support Files */, - ); - path = FirebaseAppCheckInterop; - sourceTree = ""; - }; - DC5836EF4AD3376240EA8E2803D5AF45 /* seed_material */ = { - isa = PBXGroup; - children = ( - 64125B6FE4EA560CA7AE964C9EE54A3E /* seed_material.cc */, - 11C165064FE5BCF50FB33BE7A9AD15CE /* seed_material.h */, - ); - name = seed_material; - sourceTree = ""; - }; - DCF2EE2D4790ABD95ADCBB7F26AAC229 /* flags */ = { - isa = PBXGroup; - children = ( - FFA1EF72BE94A4ABBE49CEFE9FD18E78 /* commandlineflag */, - B178C294CD51120117DA28FB689A89AD /* commandlineflag_internal */, - F2D8E0FA620197FEEC3ED6CF5E0229A5 /* config */, - F0CF37A486DADD2F6A87C909F15F50BB /* flag */, - 84DC6CAFD55B518415E79D0132A3C5D3 /* flag_internal */, - 0576E5A2324403561B5195498D00580C /* marshalling */, - C2069E656CD945C0A1A449A9221830E0 /* path_util */, - 76CF7E024F88B38083C552DBAFD861CF /* private_handle_accessor */, - 52EB0B2066F03CBF30BB659AAAA867B6 /* program_name */, - 42C1FF13E0C399330D4894ED8A927418 /* reflection */, - ); - name = flags; - sourceTree = ""; - }; - DD24E7924F1CE0116B3836F9556AA54F /* type_traits */ = { - isa = PBXGroup; - children = ( - 33F048915EDCFE89B4E37F58D2E07900 /* type_traits.h */, - ); - name = type_traits; - sourceTree = ""; - }; - DE49A917B9BC50C13CE02DB28ECE0B03 /* bad_optional_access */ = { - isa = PBXGroup; - children = ( - F86ABAD09A7E1926FDA9A202E09E62E9 /* bad_optional_access.cc */, - 6A6F1BBFB7546E0E5FCCF7F9C6BB00B1 /* bad_optional_access.h */, - ); - name = bad_optional_access; - sourceTree = ""; - }; - DFD30013D6B99445B0B3383467732101 /* hashtablez_sampler */ = { - isa = PBXGroup; - children = ( - 74DADAF4B81B5C3CD6F497AFDDF11BE6 /* hashtablez_sampler.cc */, - 0027965A5ED909BC90C7A69B02FDAC7C /* hashtablez_sampler.h */, - 92A5EA8DC75069CDAE9D21E1C861D408 /* hashtablez_sampler_force_weak_definition.cc */, - ); - name = hashtablez_sampler; - sourceTree = ""; - }; - E087B6AE9E0E9EA4B1694AABA9ADBF20 /* Resources */ = { - isa = PBXGroup; - children = ( - 7D37039F136465E317E3CE20770AD59F /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - E0AFD4102B9A05390360DDAA44963569 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8F3EC35A96069E0BF763AB71CFD0C6B8 /* Alamofire.modulemap */, - 84B24070C8BBA427FF9EE16C3C7A2579 /* Alamofire-dummy.m */, - 5EF9FA164C8A3E3BB4B41BF98A983EAE /* Alamofire-Info.plist */, - 901CEDFFA47F17F9C6A10A916269531B /* Alamofire-prefix.pch */, - 75759FB707268A035AE8167EF6337DBF /* Alamofire-umbrella.h */, - B85686B120F530F14DC56C7174782A93 /* Alamofire.debug.xcconfig */, - 03BF3F01FF5DBD90BECA74BCE3828EF9 /* Alamofire.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Alamofire"; - sourceTree = ""; - }; - E1D5C54E015B4A0F86E8690284319A65 /* Interface */ = { - isa = PBXGroup; - children = ( - 017EF685DFAB85DE4F8134A70C1D1489 /* aead.h */, - DE2328507915D9863D164088E86059CD /* aes.h */, - 4A6417B4349EC7A7B291484968C152F1 /* arm_arch.h */, - 0A302CA7B9A93072BD4474F5DE7123DE /* asm_base.h */, - 323E708C84FEC7FFCBBD6D05130AF9B9 /* asn1.h */, - EB589AA9B1991995ABA3A68720962721 /* asn1_mac.h */, - 6D53E68F0BBF7E98CD46AEBB8BE97F96 /* asn1t.h */, - 8E14E53F24D379EA809D92E17BC72588 /* base.h */, - AEF49F7B6696C2939641874D20B6E0FB /* base64.h */, - 9BAE795A02F810B143E550520BEB8774 /* bio.h */, - CAE88266BCE228BCB5AA5F5967AA5C56 /* blake2.h */, - A67EB494C457178E4340792DEA1F4D2E /* blowfish.h */, - B339189D4A45506F4320592CBD21CF85 /* bn.h */, - EA0932A495FC26429BD74218CA2F93C0 /* boringssl_prefix_symbols.h */, - 26E3F3EB921C216CA24BD2F75154336C /* buf.h */, - D8306F7411BC6F01741978CFC90D42F2 /* buffer.h */, - 33CEB8D8E960CFABD80C78C61822B1F2 /* bytestring.h */, - FE8239568EE35C9D18D07B0F16148096 /* cast.h */, - 31953C8C6D07AB196DBB3C9B336B1641 /* chacha.h */, - 2EB94397DCC85940A68B65CAAB2EFF6F /* cipher.h */, - 9D0247AF0657BAF5DF8DF2BE03DFCF11 /* cmac.h */, - 11CB9A41AF61BF16424BBB49CF6088D2 /* conf.h */, - 866CCE696961152E67069FE2DD292DA5 /* cpu.h */, - 2E0B7CA02DFBFA6DB00559DD9459B08E /* crypto.h */, - DE00220AEA70C47490A53D408F3304E7 /* ctrdrbg.h */, - 06AA23034785E6CDDDC1E0E5643C1862 /* curve25519.h */, - BD5DA2BF4CD439B73B7B82CD6B4D6D37 /* des.h */, - 7CC0474287C1B5C584D2F1783A5B1BFD /* dh.h */, - 2065E053CB75A9F06D891B887FADF0C8 /* digest.h */, - 1C94CD1FB6DE25CC228DD3FE2AAECF31 /* dsa.h */, - 2A0546CE06DA56AE6AF7E70ACB0E2CFA /* dtls1.h */, - 0B4623E4C9A818AE076636BC7A739BC3 /* e_os2.h */, - 808072240E1D560CC2F6D359529D3B29 /* ec.h */, - 53578E65D8BE193DE833F42DF7D02F7B /* ec_key.h */, - 765BB0924C0B0E2AEF1F1F1D1DB6D3BA /* ecdh.h */, - 23833A4BF9BF6742757DD734773129DE /* ecdsa.h */, - 070D8B1747941A0FFAF2B5A8716370A5 /* engine.h */, - 911C5B2D238D8D6C68D5B25A0880FA5B /* err.h */, - 0A28CB94C97989FDF3BA0C40138DF2E0 /* evp.h */, - 8A97B6E7187E9BD4CAA3685587985A46 /* evp_errors.h */, - 0D9B35337F1B89D45318593502C37E42 /* ex_data.h */, - 8204BDA20C67EE68C15F83DC227A8235 /* hkdf.h */, - 80713B0A07F59477557B1C1215C2EBD9 /* hmac.h */, - 6EB358824BEA75B233605626D3AA1CE3 /* hpke.h */, - F955802C27ED91054B5B5FD92E6846C5 /* hrss.h */, - 45EAA12ECEB4647B29DE35F4F15A61CF /* is_boringssl.h */, - CD4233E7D93B8A50C29368E751B35A0E /* kdf.h */, - 3B2C19B0C9E2152EE98E4557CE89A30B /* kyber.h */, - 77E5FA9927C45065B3D28A80B7A822DA /* lhash.h */, - AF161B7323D899687BBCA264CCC2B005 /* md4.h */, - 64FE3649CECC743D810E8024B1055EE9 /* md5.h */, - 1B056E69EFFDCC28572D20037C6EA66C /* mem.h */, - 7EC16E91AB87253E111BE026440B4FB8 /* nid.h */, - E49B52C984BBEF7127FFEACC3F7AEC7E /* obj.h */, - E326C6E7398A6F61A8D2E724B1E6172F /* obj_mac.h */, - 9473CAE593EE65B44E4C740E68FD508E /* objects.h */, - E27629BF1C4D3584C2CD3C23718DFBD7 /* opensslconf.h */, - 7381BCA01752D82A6B77804C5B7C410C /* opensslv.h */, - 88B47FE98B05DD896A5D4C02F0F2AF88 /* ossl_typ.h */, - CFD7745AC4E980D993A7CAD3EC1CF0B3 /* pem.h */, - 350D01C3718DC2F00ED3C396DCF5645F /* pkcs12.h */, - 29C4C5AEAC858E80F025422D7FF087B6 /* pkcs7.h */, - 7629BF6AB980C98EC7161220DD360FEC /* pkcs8.h */, - CC1B2D8E81F571D79794A259A964BB85 /* poly1305.h */, - 2FDEE5DDBDA7912AB5387FDA4271BB86 /* pool.h */, - 9BDB3738774951A2566B83702CA3D2C9 /* posix_time.h */, - 151ED2A36FED297211F26282B7E00257 /* rand.h */, - 65259DFFC4BD1FED84641EBE8B273A7B /* rc4.h */, - 1B49DBD18737256E93B6EEFBE33F630D /* ripemd.h */, - ADDDE82223DD40E15D4E8D9283683A5B /* rsa.h */, - 4AF237783057F58C665756F0F9FB75DF /* safestack.h */, - 75A5DA679C15660399BA91935B83AF21 /* service_indicator.h */, - F41697C1435528F925010EC47DDBD28A /* sha.h */, - A93E8F5C08A81FBB3F21A03664EF0582 /* siphash.h */, - FDD3E75867E77686D21FE85207AEE761 /* span.h */, - 7F3BE62D8F38C4677FDFCBCF4A68E429 /* srtp.h */, - 70C516ED54B82492442B58A8B450F67F /* ssl.h */, - 5F70CF4378670EE116F2C798E5C11E02 /* ssl3.h */, - 8F499EB3146E44B22F9D3BAFB19BA2D9 /* stack.h */, - 4225AF88179A809C375073DF245102FB /* target.h */, - C952DBE8547BBFA78052A917BAEB04A1 /* thread.h */, - 392D877CC7FE85A0DB0B2FFD8F5FD276 /* time.h */, - F2B52E4E042C7AC9667E6EAA5638E3CB /* tls1.h */, - 61B40CFFCB77048DCA251A4A63CDE993 /* trust_token.h */, - CB35A86EEF79D279A2203550467CF5BA /* type_check.h */, - 0C70A263737E1A59BDFB3C1017878AD7 /* x509.h */, - E08BEF8EA95D16E6020526523B103B62 /* x509_vfy.h */, - A37D08D216DD1DFFD79045D2B454E170 /* x509v3.h */, - 2FADB208437E1336125EF17A26FE37CC /* x509v3_errors.h */, - ); - name = Interface; - sourceTree = ""; - }; - E2BE2A443486479099B20929EFAE5FDD /* GTMSessionFetcher */ = { - isa = PBXGroup; - children = ( - 709B435A2CCDF0D64F96A211EB01845C /* Core */, - 2B7F59CF7F1B11D46F62119226B307CC /* Support Files */, + 2D7241725BBCAF56CD837EB29B96AB4B /* Core */, + 64F35006FD0B3053CB7EFBD211C4F7FD /* Support Files */, ); path = GTMSessionFetcher; sourceTree = ""; }; - E318D324496DF2BC329960DBEE9417C2 /* utility */ = { + B3624BAF60296F064E2D4C1508010193 /* cordz_statistics */ = { isa = PBXGroup; children = ( - 3F95A549308781926A8E5391329C520C /* utility */, + BD3E659287A74927D9DEE58530FC8514 /* cordz_statistics.h */, ); - name = utility; + name = cordz_statistics; sourceTree = ""; }; - E478C555CD31906C5E7A6E9DC60A1BA3 /* randen_slow */ = { + B420AF55C6C4A5F5E630D59822748875 /* atomic_hook */ = { isa = PBXGroup; children = ( - 05B5C9AA1A7A2A8B382248FDF04CDBA9 /* randen_slow.cc */, - 25D2405EB455E7BBC31E6C61866F5D1D /* randen_slow.h */, + 3F4526EBF9D8C1B1E7ADFE6CB53E4EB5 /* atomic_hook.h */, ); - name = randen_slow; + name = atomic_hook; sourceTree = ""; }; - E4D99D6BD68574634E83D2762CA2084E /* NSData+zlib */ = { + B4A58BA87B9422EBD7059C1A25EBA537 /* container */ = { isa = PBXGroup; children = ( - 0F98D6FAA3EC9E475EFC468D2FBD92F9 /* GULNSData+zlib.h */, - 83C636CF0435002ECDFEE6DECEFFB392 /* GULNSData+zlib.m */, + 971EFAD6F14A495B897C7ABA6E1B9435 /* common */, + 97C7FD5CF0FFAC39055AEB8F3E37B21B /* common_policy_traits */, + 2EAC616DDDB06CE0261CDD392C34E38A /* compressed_tuple */, + D0EF196EBB10ABE7414D62E30F930AAF /* container_memory */, + CFD90B8640C51F1B1662A3227358F6D0 /* fixed_array */, + C3A47BB337A20B4F05A2012A9F9B97D1 /* flat_hash_map */, + 35A843561B823AB21A4A0417491DB4F1 /* flat_hash_set */, + 6DA45128B8C4F47E43A659E4570FCF4A /* hash_function_defaults */, + 26796BABB89F4D50C9AC0FD688934300 /* hash_policy_traits */, + 7F0F77CB828B5ABBA784FFBD418EB4E7 /* hashtable_debug_hooks */, + 9BF4F0878DF495844F2E1ACF473581C9 /* hashtablez_sampler */, + 077ABC21FDA1645F7384E587176338FC /* inlined_vector */, + 20007ED2B3AF1136A421FFB7DA6FB8DA /* inlined_vector_internal */, + B152A9E169E83DFB58B2C84E300519B8 /* layout */, + 409DEAE307A6652EF35212C9DD909FE5 /* raw_hash_map */, + B8BA28DB4AAC2C06016304DF8757F4DD /* raw_hash_set */, ); - name = "NSData+zlib"; + name = container; sourceTree = ""; }; - E62B92958FC484F721257AFE68D9B55B /* Support Files */ = { + B65CFB7BEE3D2F5D968C8ACC2EDC4E63 /* FirebaseFirestoreInternal */ = { isa = PBXGroup; children = ( - 8C893DC31006DCC0CAE074BDD2DA73CF /* RecaptchaInterop.modulemap */, - 7872A619155C9310B358FCB6AC74FB49 /* RecaptchaInterop-dummy.m */, - 7A1BBAD9F1527D4FE00B2A8518E8B7C1 /* RecaptchaInterop-Info.plist */, - A56ADEA5EE66A30D763BA90052E7A5C7 /* RecaptchaInterop-prefix.pch */, - BA0D64EB04164F295CE8A7983513E889 /* RecaptchaInterop-umbrella.h */, - 3915E23109896CF59EBE9C6086D5C811 /* RecaptchaInterop.debug.xcconfig */, - 2D9D3035F6E68814016A62851B40BEA1 /* RecaptchaInterop.release.xcconfig */, + D55D10DE9BD5AA2BC9D831FADFB2B6E4 /* aggregate_alias.cc */, + 5DF1EC7E99456D6E8AB07BD3680D6FB5 /* aggregate_field.cc */, + 00EB164F4238132FEDEF0D06555EB964 /* aggregate_query.cc */, + 0C78E33D9A251E589F5E29C8A5A7F434 /* aggregation_result.nanopb.cc */, + F5AD5C746ED61C4B1F9D134B96F0AEB0 /* annotations.nanopb.cc */, + A9381C2B1BE9DE41CCB1D1466EAF839D /* any.nanopb.cc */, + 02937A039F30BCE44E8E569187168F07 /* array_contains_any_filter.cc */, + 92172A953BD682E0CA4EF42CC5D9A603 /* array_contains_filter.cc */, + 14B6ED1B79F54F73F8C4E816ECB749F0 /* async_queue.cc */, + 6912A42095D25F62FB31D97FA3F84FF1 /* auth_token.cc */, + 4243509E14B58BBB1D1355A2DEDC385E /* autoid.cc */, + A9A1684DC952BC3A81CF45AA18819D2C /* background_queue.cc */, + C397224F9225070F9BE854D27B826E46 /* bits.cc */, + ACC607E78A58A421AF9E27D6FB8354BF /* bloom_filter.cc */, + 8580F5B403061ECEA18849EFE74AE859 /* bloom_filter.nanopb.cc */, + 9A398551114FC941D0E2DA950C6B7A84 /* bound.cc */, + 28B98D0ADD0CC303AB45F3087399ADBF /* bundle.nanopb.cc */, + 3AA2A83FA6E2761A77F0EDE4C71E9193 /* bundle_loader.cc */, + C2554838D2535910CD04FE671AFAA208 /* bundle_reader.cc */, + 1734C3DB32580FDD0FBA0D3DE38B1C98 /* bundle_serializer.cc */, + F0CA8B5874C61D83645725D5293B01F3 /* byte_stream_apple.mm */, + 7B478441A73E763A20CA702F1EA83A71 /* byte_stream_cpp.cc */, + DBC98581F36DAFB141C94751A15D8215 /* byte_string.cc */, + 69F10D8604464BBAC518702DE9D877D7 /* collection_reference.cc */, + 2FB89DFA94C92C5945280D7BA8EC909A /* common.nanopb.cc */, + 73E02EDCEC6BE938F3402765F134D7E1 /* comparison.cc */, + 2CB19E8B324D4A9AC0C50FDBF24701BC /* composite_filter.cc */, + F9BF2A82BDC44E26CAF1FC379EE860F3 /* connectivity_monitor.cc */, + 8DF795461327D6346A4903A9DCEF9CD3 /* connectivity_monitor_apple.mm */, + CA210656FF735DF747E77DBA993AA4D8 /* converters.mm */, + 4B34F7B6144F5676E6A32FD824277179 /* database_id.cc */, + 8AB9A1821C8F19DDD59BF6B66806A0F2 /* database_info.cc */, + 7D951A55BC63295E1E9A0215A700BA5E /* datastore.cc */, + 12ECA852A2D5E38A1826E20097E1EFF2 /* delete_mutation.cc */, + FCE83942BD7DB8C708BF98F779BD01BC /* direction.cc */, + 137933DC1E48EB7C4C7255439EA795D0 /* document.cc */, + 437FA33E380A0CB7F855C5A3BFC7F789 /* document.nanopb.cc */, + CA0C13D1A271597F5413A031B66E9D89 /* document_change.cc */, + 6AB3F15AB06D53A9B60BBCCF6D8DE7AF /* document_key.cc */, + 0779AEEA30863D75CC71DAEC44268D9B /* document_key_reference.cc */, + AE05C1585C43854A49BBD77500251832 /* document_overlay_cache.cc */, + 63C62673F54F5AF055DA34B78D9344FD /* document_reference.cc */, + A7C9818B546D9CCED3A701D943397B57 /* document_set.cc */, + 19092B1F8DF66787A7B50E9739BEB065 /* document_snapshot.cc */, + 8FD32DCE47B9BB34B6F3DA5A0AE713D3 /* empty.nanopb.cc */, + CBE5CDCBF1782F32C8DA75D90D31E0E1 /* error_apple.mm */, + 9616AE8C05562661742A4FDCCA0FE471 /* event_manager.cc */, + 8D4300B8A14BF4D6A554879B1690EEDE /* exception.cc */, + 6FC0E467CAFDD0CA5063A30921C6DF15 /* exception_apple.mm */, + 33C76AF33796F016C01786FE4F22B506 /* executor_libdispatch.mm */, + 18DED8D7ED4A5937C3F11C6703019587 /* executor_std.cc */, + 166ED16BB8F4F774A8DAF8AB097C5815 /* exponential_backoff.cc */, + C2B74A748534F98BC745CBD75F49D001 /* field_filter.cc */, + 94FCC256CC20F533797B9B2B100227EE /* field_index.cc */, + E0EF563F5E08A2574EA67351C90C1F6F /* field_mask.cc */, + EF39302FE4864D3C27FAD26E580475BA /* field_path.cc */, + 38C25ABD5997A282A109A9B5A8B0078F /* field_transform.cc */, + 6CF6C142A8CC512BFCC2D85202356F02 /* filesystem_apple.mm */, + D05A961206EFABD70FF9427F93416031 /* filesystem_common.cc */, + 1580331EF4E0960E888ED2DDA700AA16 /* filesystem_posix.cc */, + EE6620EA87AF6F77D9D1DDEC63E6C5FB /* filter.cc */, + B9C5F9B27DD63B637927125533D551D7 /* FIRAggregateField.h */, + 57160234AAAFBFA002DF77963E6BD74D /* FIRAggregateField.mm */, + DEDAD73012C8F09AC54F461822EA0EFC /* FIRAggregateQuery.h */, + 49055526D146A01261E569E1911488A5 /* FIRAggregateQuery.mm */, + AEBCD906B1DD2EA355881B0F60DC4C2A /* FIRAggregateQuerySnapshot.h */, + 07555685F0F689CF9D6A521B07BFD0D4 /* FIRAggregateQuerySnapshot.mm */, + A180973838CF74051CB000D5290AA0E8 /* FIRAggregateSource.h */, + 91787E9B4360E9F5B839CBA50D55ED14 /* FIRAppInternal.h */, + 4E1A8C0A1C5B6A3F07F66F206C16E03A /* FIRAuthInterop.h */, + 54D16E1BEF81AFE301868B6FF1DF414E /* FIRCollectionReference.h */, + 1778B04E2F615EF40A067C0EF982D1FA /* FIRCollectionReference.mm */, + F3F205005FC0F9B60D4AE963F7C78686 /* FIRComponent.h */, + E65D49138798FEB52DFBCEB615E5CB98 /* FIRComponentContainer.h */, + 3AAA8AC4022773E98F3C2F74C9385CD0 /* FIRComponentType.h */, + 2BFD2FA2C70D682E460F1AD3595FCF5B /* FIRDependency.h */, + 87E3AE2C838FA1FCA4842993FC896800 /* FIRDocumentChange.h */, + E7263A2C62A045F2AE321800E48988CE /* FIRDocumentChange.mm */, + E74068A57C279856EFD6CA3F684B37AE /* FIRDocumentReference.h */, + 174E4B53B32E8EFF947F36DE237F492F /* FIRDocumentReference.mm */, + 1C943ABB0DF12A8B2FFFEE206C2A75AE /* FIRDocumentSnapshot.h */, + D9E0C2B2D02875F24D9AD2430F42788E /* FIRDocumentSnapshot.mm */, + 078CB796672DFBD04616D55CA789A85A /* firebase_app_check_credentials_provider_apple.mm */, + 5B6DAA1DF10A58BBEA902F944D61F179 /* firebase_auth_credentials_provider_apple.mm */, + 13818B03813FE60230003909E49FB00F /* firebase_metadata_provider.cc */, + F1C22B8F1A786D3ACC9A59B4FBCFB7C8 /* firebase_metadata_provider_apple.mm */, + 65F8EC92EBE698D0685A3517103241D1 /* firebase_metadata_provider_noop.cc */, + 5F48DF8000394BC44A7DF3CDCE9E0513 /* FirebaseCoreInternal.h */, + 25824EFCD08834AA57E13B1F5184D143 /* FirebaseFirestore.h */, + B967926046FD08B2A5460D6364D67E98 /* firestore.cc */, + 46FEF5F8DE6AE73866CA82E709C88EDC /* firestore.nanopb.cc */, + F2048302EE2EE6D41ED220082822AF8F /* firestore_client.cc */, + 9B5F7417423A780287CF9BBA18A5F941 /* firestore_index_value_writer.cc */, + 1DE2CF6AFB1BFEF3D8FCF0DB30F1E3C1 /* firestore_version.cc */, + 3665F2F60E68BD0D6E45F284E3D1F952 /* FIRFieldPath.h */, + D11A3217657F5C6BA59BF5148C4ED9D4 /* FIRFieldPath.mm */, + 005B1C80C2CDA870B38AA4AD9B8CFEE9 /* FIRFieldValue.h */, + C31D1A1A665B552149F2E16A0F3909BF /* FIRFieldValue.mm */, + B4A005BFDD5E490070418397507EF803 /* FIRFilter.h */, + 52D953790E86615615FAC6EC45A1DA60 /* FIRFilter.mm */, + 0263B42CCA540350E59269B3B57811C9 /* FIRFirestore.h */, + A3DCF775A082682293D3ECFC91C0B0B3 /* FIRFirestore.mm */, + C69ED9EC8E710968C328AF9E75E098DD /* FIRFirestoreErrors.h */, + A48E86E21BB36FB2609D5CE5E84B00CB /* FIRFirestoreSettings.h */, + FEF7990B1C443AFB00B249ECDA0DB7C7 /* FIRFirestoreSettings.mm */, + 113553C0E3D66203F7602B91A34640DF /* FIRFirestoreSource.h */, + 2418F79BDB6EE34D085A48DCB8AAE117 /* FIRFirestoreSource.mm */, + DB384F9F65B3D960CF67229CFB87D8BB /* FIRFirestoreVersion.mm */, + 799C98826FB7B3D4092483E00BF9F38F /* FIRGeoPoint.h */, + 986CA1D1D0DE56AE0CEBDE84FF8F2798 /* FIRGeoPoint.mm */, + D0D0335A8E61B5EB8BE0A55482028AB0 /* FIRHeartbeatLogger.h */, + 029A68A22F958AC46BD2D39C84C90396 /* FIRLibrary.h */, + 344283CE3E19CBF3C308327F87BDB6A1 /* FIRListenerRegistration.h */, + 216EA4CCC5458D9AB95EE0447DD1DCA9 /* FIRListenerRegistration.mm */, + 627BA41E2B8E5227A95EAEB8396A46E3 /* FIRLoadBundleTask.h */, + 48E9A7F0A2A73A5FF8383925E15E5F8E /* FIRLoadBundleTask.mm */, + 979FF2E128B513079E1E8106CC0ED8BE /* FIRLocalCacheSettings.h */, + B94B3B741EAF4F03D157D00294E1CBCD /* FIRLocalCacheSettings.mm */, + 6C03AB390EC095074B35FA2992997DAB /* FIRLogger.h */, + DA085EDFBD05FDF06549766DF9B342EC /* FIROptionsInternal.h */, + A29CDC307B5AAEA1DC862B523531E6D1 /* FIRPersistentCacheIndexManager.h */, + 7EA618A9C539EDD6D468087004904165 /* FIRPersistentCacheIndexManager.mm */, + DF586AA779ACEB4C1894A6B698614C6B /* FIRQuery.h */, + AA1EB7A75617ADEE8CD9CD4B7A28BF18 /* FIRQuery.mm */, + FB301A3D77942E4405E7C6C934941C89 /* FIRQuerySnapshot.h */, + BDED9A334FA2504CCC48BA39DE10D705 /* FIRQuerySnapshot.mm */, + CF94DA4A5C394A41A8CE80F4F78B45F3 /* FIRSnapshotListenOptions.h */, + 9B8EA9776B77495B3C992DEBD38AF721 /* FIRSnapshotListenOptions.mm */, + 3D10BBC84FE4B5FEA1720A2D5B55C4C6 /* FIRSnapshotMetadata.h */, + 70839A9CB8CB84E4CA6EFAD34B0EA85B /* FIRSnapshotMetadata.mm */, + C9681612CE5F7F97BCA18BDB75B6E316 /* FIRTimestamp.h */, + 84B0772AA445197FDF516054E62BE76D /* FIRTimestamp.m */, + F16DFC15CC2A8CACE59771EFAB3C910D /* FIRTransaction.h */, + 25522D96D5737823661316D97A1E9583 /* FIRTransaction.mm */, + B1420F151CEB85870E38AA3030CA26CB /* FIRTransactionOptions.h */, + 26F9E8E32A5CC7000F5E11CF7CB13549 /* FIRTransactionOptions.mm */, + FC4EC45578DDEB7DE701B84239F69BCF /* FIRWriteBatch.h */, + 4664215E639748BA74AE002C790D2345 /* FIRWriteBatch.mm */, + F9A12931C3F3E4E466D3BB1D500DD6F9 /* FSTFirestoreComponent.mm */, + 695EA1392515465D4C3F973136D4000A /* FSTUserDataReader.mm */, + 402F18CE4608FF4A99A8D95FE0ADF32A /* FSTUserDataWriter.mm */, + 6B393EA0D27EBD9EAC78B21CE58F5393 /* geo_point.cc */, + 3DC1258048E5FEDB446CD6B0F8257C25 /* grpc_completion.cc */, + F89C6664671D9F492BD9FE022A8A3CE4 /* grpc_connection.cc */, + 1F864F9429D394273D384E8A45B6D14A /* grpc_nanopb.cc */, + 5A683EE8010E00087E35291E8F4C27C5 /* grpc_root_certificate_finder_generated.cc */, + 75D48CFF21A278C5F54A7902C3059DFD /* grpc_root_certificates_generated.cc */, + 742FC6884FC0E3DD26414E2E2555D97E /* grpc_stream.cc */, + 1DA00B5A93C441E52D37658266D6E941 /* grpc_streaming_reader.cc */, + 12D3BDF898B88EFCAA4873D165377A78 /* grpc_unary_call.cc */, + A177981884DE9D5346233B94BFDBC219 /* grpc_util.cc */, + 44FA8E88A17C45BA9D7BFCC874485CF5 /* hard_assert.cc */, + 91FD5DA46370827A9E1EEB409C904C83 /* http.nanopb.cc */, + 58C47ED3DED3D0222E68A9C3BD78F3BA /* in_filter.cc */, + A226B114C88052E9E5D026AA399B0E85 /* index.nanopb.cc */, + 2EDC644034251441E2B3BD0A0660E06F /* index_backfiller.cc */, + C80BEE071985078C2E00908BD118C839 /* index_entry.cc */, + F668FF19C626C6EEBAD846DFB42BFE3D /* json_reader.cc */, + 1E1C5F20BF79D8BE481D942A80090366 /* key_field_filter.cc */, + 2F7783660F307BE07983FFFB05F6B15D /* key_field_in_filter.cc */, + 6C25901C8B51E6D24D12CC302CFC98BC /* key_field_not_in_filter.cc */, + 41DF421AAFFBFC9EFA1FA204157FB0FD /* latlng.nanopb.cc */, + 553B765B7513AD3292A4A093214CE07E /* leveldb_bundle_cache.cc */, + 63E0DB13E8B06E3BAE9FF9943F86C7A1 /* leveldb_document_overlay_cache.cc */, + 679D7C15A9B80D38AC99941D5B53E43D /* leveldb_index_manager.cc */, + 5EC1838516B1279A5CE84D5C022605CB /* leveldb_key.cc */, + 50F9E9ED8085C07C7D207AE16D465D6C /* leveldb_lru_reference_delegate.cc */, + F21251B3B2BB0CDD851AEC879C820B27 /* leveldb_migrations.cc */, + E1AEBA6B59CF6F91D44708A6C2EAD840 /* leveldb_mutation_queue.cc */, + A432DF57ED705152B9DA88DA27503192 /* leveldb_opener.cc */, + 1B8115FC500A961DF058A1A26F8F277E /* leveldb_overlay_migration_manager.cc */, + FD085EB79E17E0B78FA2C67592881F3C /* leveldb_persistence.cc */, + 0155ED53E9E74444A44678AF7A2320A5 /* leveldb_remote_document_cache.cc */, + 42AF463251D6E48B2FCB0A0537DEA684 /* leveldb_target_cache.cc */, + 4E8FB1C7CEF32EF7D9EA7B132B03EB3B /* leveldb_transaction.cc */, + DE283260B5C1A0AF9A265F6C494EFCF1 /* leveldb_util.cc */, + C85DA2ACEE5E86C9DFF1E65866B0FD44 /* load_bundle_task.cc */, + A2BF807A37F88D3DDD3E3C33B0917046 /* local_documents_view.cc */, + C7563823501BBB41A695FF9398176842 /* local_serializer.cc */, + 9ECD957A6397D1738445435FADB454FD /* local_store.cc */, + BF0C3D1458AB9DFCE51B1EDE69B5045E /* local_view_changes.cc */, + 67B9EE64E4269EC06AB89AFBDDC2A5E8 /* log_apple.mm */, + B9EF75159FBA831301B73CC9F19F4EF0 /* logic_utils.cc */, + 0F215FE883635A12ABA63856C95AC034 /* lru_garbage_collector.cc */, + 7033B65138E3E2CC7E216AACB02F80A6 /* maybe_document.nanopb.cc */, + 9762EE194604C4F44A44A4BBB3D3AF85 /* md5.cc */, + 006E6B96209A305D938E0CB829359952 /* memory_bundle_cache.cc */, + 1CBA5D57AB712C13D9CA5F76DA5D37FF /* memory_document_overlay_cache.cc */, + FC5672C357730DCA97079CF0914C00B3 /* memory_eager_reference_delegate.cc */, + 85919D2704D354FDDC23E03F4059007C /* memory_index_manager.cc */, + DD7706A688679C2D5A2708E1F64BBFA3 /* memory_lru_reference_delegate.cc */, + F0291437441D1C79D7841BF90A9524AD /* memory_mutation_queue.cc */, + F863E3982F8537EE8F6A2269443CA054 /* memory_persistence.cc */, + 611BBD02BEAAD597EF7F34199F28A9BE /* memory_remote_document_cache.cc */, + 948B74BC81B37B8B403AECE5E6FE8CD3 /* memory_target_cache.cc */, + CCE39C030A91A9136C6DCE4494636885 /* message.cc */, + 8CC2FB3696CC908F00BE9F98BB1DFD9D /* mutable_document.cc */, + 8303827217EDE7BC9F03C61F0F45FBE1 /* mutation.cc */, + 27424F528CF49E896027B1052A747258 /* mutation.nanopb.cc */, + D12DA504E7E9EFB791917FE0F4C2791F /* mutation_batch.cc */, + C27BCE59DF6D67A451241FD0F5AC4DB7 /* mutation_batch_result.cc */, + 2EF00CB4192726BB040721FCC8D9F3E6 /* nanopb_util.cc */, + A0EA2117952835B6822D493844FED42D /* not_in_filter.cc */, + 41B9F4CAFF01F1C56AD22E88DB5A6EB7 /* object_value.cc */, + 44A18EB0282FC9E3CC25B5DDB3E2B579 /* online_state_tracker.cc */, + EAB955E731405EA1702336FB224DCBF1 /* order_by.cc */, + 669194E09F32273FB836725EA5F5B987 /* ordered_code.cc */, + AFBA883056F6004C5DF7FF56CDE06192 /* overlay.cc */, + FC3736BC3769C851108C0734F56E0004 /* patch_mutation.cc */, + 4CD1AF9252AED454D6E48E24DEBBA3C6 /* path.cc */, + F6E3AC70A239021C9876973AEE6BA90E /* persistent_cache_index_manager.cc */, + 0FF7C5A8949EAB89F02EBEF5A7AD2E9A /* precondition.cc */, + 593A7B77D1E256219EEB019E6E03359E /* pretty_printing.cc */, + F2F329A3EFCE095A4C1EECDA2DACB850 /* proto_sizer.cc */, + D38598EB7735625A66D4BB9665094F33 /* query.cc */, + 35C229DD89622C1D5A61DA2BAE936493 /* query.nanopb.cc */, + DC01D961585B09D30999D404EFCC6383 /* query_core.cc */, + CF98C80D38C02A1561B0885311EA4FFA /* query_engine.cc */, + 1941830DA1FC42C13902C54592089B05 /* query_listener.cc */, + 3C3E7142CD954B54BC22EB820E15E3A7 /* query_listener_registration.cc */, + A35C852036746382C458EBE741583941 /* query_snapshot.cc */, + 841660A97AACA14D209F19C1709154F1 /* reader.cc */, + 1B49A16FA40368185279B4A2C310276A /* reference_set.cc */, + 12EB5ABB89D9BA4EB4EA994F2E592997 /* remote_event.cc */, + BCE40E0EDD82DCC0DD3C70E1EE4F3EA3 /* remote_objc_bridge.cc */, + F17CD1C15753E35B64923D1D0D2764DA /* remote_store.cc */, + 81BB81F34D9E4E6852890C3E0BDE282A /* resource.nanopb.cc */, + 89DD6706776D592E3D61E458143A560C /* resource_path.cc */, + BD288F7685BBF1B8666D94FC504AFA5F /* schedule.cc */, + FE50EB2DBDC78C0C7AD6E0F2423BAA0E /* secure_random_arc4random.cc */, + 214DF793F610AC81F5D6EE5685FFC265 /* serializer.cc */, + 22DC611BBC9189D72D43BAC4AC5C4F58 /* server_timestamp_util.cc */, + 9B72C150BE0BF5ACA4A63559B7C4CF04 /* set_mutation.cc */, + 0531A33B3B23DBEF2AE9DB7E908FC467 /* settings.cc */, + 8AF152C256552FF4D1A0AD095172E1B7 /* snapshot_metadata.cc */, + 5059D6447B84E257B72DF9A03B61C509 /* snapshot_version.cc */, + F7BA7E30FD0517DC7ECC3473CFD14AFD /* snapshots_in_sync_listener_registration.cc */, + 520EFBC681C9447002B60293A375AE11 /* sorted_container.cc */, + F1D5C23C437F0B762B3274C646C9B707 /* status.cc */, + CC5ED95F71848BF8C48DA7068E1B1B0C /* status.nanopb.cc */, + 7AE93ABFD4DED57F3088AB13E940E853 /* status_apple.mm */, + C03D6A2FC817E8497DD79B57A3C63B66 /* status_errno.cc */, + 1BD5EE8DE3620713C1F4C1871FEAABAE /* status_win.cc */, + D0CD60F65FF32BF2F86AC3F95967E7E9 /* statusor.cc */, + E496C35F77BE4027C7DF80022E0841F2 /* stream.cc */, + 5069AD7AB69C45B374C635383E23F0C4 /* strerror.cc */, + 96761BA8F83658511A6F1E61E4466376 /* string_apple.cc */, + 555B4DD5A6E09921A4DFBDD853D74E87 /* string_format.cc */, + 513C512CD471536FD5B59EF7FBC7022D /* string_util.cc */, + 317DB0A61B9DBAA6E7FE6B70FDEF67EA /* string_win.cc */, + 6F6CA68D4483F0291276291C862B315E /* struct.nanopb.cc */, + 2B3B5562203FB2FF7D5109920BEBE21D /* sync_engine.cc */, + F126679635DBF136DA5098F1160AE14C /* target.cc */, + 59955A570092BE4D0115184D91CC8DBA /* target.nanopb.cc */, + 0386BDE6749892E1242A2620F8C64A5D /* target_data.cc */, + BAE5F37E544BFC32E2D1DC8BF9F376FE /* target_id_generator.cc */, + 6B21E2B89D1A7E42F1390347DDCBBB0C /* target_index_matcher.cc */, + D82956C3977D6BEC2945FC25A8E394C3 /* task.cc */, + 7E019A3720C30096EC12F247AF962C20 /* testing_hooks.cc */, + 5E4162324708D7C29AC1C836012992EF /* timestamp.cc */, + 5338D96B0E004E9A4DBB28E3EBE0DDF1 /* timestamp.nanopb.cc */, + 6BBEE13251473BD2958F08E493FFE2F4 /* timestamp_internal.cc */, + B29360A816E5924062EF43DA3C9635CC /* transaction.cc */, + 3020D2C76719B14AF34AB2BCB2910C92 /* transaction_runner.cc */, + A9AD9CAF8A1F59AF398A7F41EB7748E4 /* transform_operation.cc */, + E857496DC761F431CA98E75A99DD7D22 /* user.cc */, + 9B212BCB022B31A3A708603EED98BD67 /* user_data.cc */, + 29F8402476359A9E6AF5AC8AB97C8FB1 /* value_util.cc */, + 7B4113007AEB69B48B4FCCEBDAC80A67 /* verify_mutation.cc */, + 3F04AFA7840553D8D0F69DE7B579A373 /* view.cc */, + 8B1CAC77F4BECE8CAF50BD4CCE91250B /* view_snapshot.cc */, + E387728CCEFD404E74AB91EA9B4F277F /* watch_change.cc */, + B4D16EBF6CF242B224484D8C4A8D6215 /* watch_stream.cc */, + DD2D0ADE110D3115A3B7B089AE2FFC1A /* wrappers.nanopb.cc */, + 70209DE383128F80CCC9BBF7022307E8 /* write.nanopb.cc */, + 1FCB852C33805C0E801438B1B8CA21C3 /* write_batch.cc */, + 3F8DD3293C3F43BEC5B8B620D2E2E678 /* write_stream.cc */, + 99EEF19877D3D534CEFBBFCC8357F996 /* writer.cc */, + D67EA3CDB5F7446C00A59EAAB8AF5CAE /* Resources */, + 4A68696B9D5EC101F1CFDAA4398C28F4 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/RecaptchaInterop"; + path = FirebaseFirestoreInternal; sourceTree = ""; }; - E77015BC1C6F47A0E9367807B2FD847A /* cleanup_internal */ = { + B8BA28DB4AAC2C06016304DF8757F4DD /* raw_hash_set */ = { isa = PBXGroup; children = ( - 087801A5A9FE6072B50ED7A36EB6AE22 /* cleanup.h */, + 033538E686E47C1736A82727B02A28B3 /* raw_hash_set.cc */, + F31F2A4CBD788D78CC3C07763F0D802A /* raw_hash_set.h */, ); - name = cleanup_internal; + name = raw_hash_set; sourceTree = ""; }; - E7EE837132D0C93BBDBA58CA8F34E1F1 /* FirebaseAuth */ = { + B8C01CA08E1F17E4B2DA29B422775B84 /* random */ = { isa = PBXGroup; children = ( - AC373EAFABB7A39911EBB0DA89642F51 /* FIRActionCodeSettings.h */, - 1D322CA7A3730629F60C75336531374C /* FIRActionCodeSettings.m */, - B230A0CF1D5E7A3C172AF518AFE22659 /* FIRAdditionalUserInfo.h */, - 7849418B70BD18FFC9146E5F783CB8C9 /* FIRAdditionalUserInfo.m */, - E22B66E1AC7DABE3DD2AE1168A053AD5 /* FIRAdditionalUserInfo_Internal.h */, - 82AF798066412E7294A85FA30F4F0B4A /* FIRAppInternal.h */, - C526226195096608CE917308E505EC19 /* FIRAuth.h */, - ACD97479931121FF94FB89E06E2CFD05 /* FIRAuth.m */, - BD7118AE015B216550048C740A0FE31B /* FIRAuth_Internal.h */, - A5579755674E17C9D727AD3EF1FFFC00 /* FIRAuthAPNSToken.h */, - 2771AF84D9D9D7D70E7CC5F4C14F8686 /* FIRAuthAPNSToken.m */, - D17728130D906452F678F1108DB018E9 /* FIRAuthAPNSTokenManager.h */, - CDEFDDB1E5C396F96159C1B096399AC8 /* FIRAuthAPNSTokenManager.m */, - AC88FE818AAEDD41121C337B83CC9587 /* FIRAuthAPNSTokenType.h */, - 61A4B3541ACEC716AE2DFA64CE5C9870 /* FIRAuthAppCredential.h */, - DD4D0862F86639E3A4E0E1516200F5FB /* FIRAuthAppCredential.m */, - 8EB4FE7E923B39AFE63F5429C670251C /* FIRAuthAppCredentialManager.h */, - 3ECB73502594CBE06B38D68AFA4E3D77 /* FIRAuthAppCredentialManager.m */, - F5DC4323D32F39CC368DA50B2290CF23 /* FIRAuthBackend.h */, - 362BA30D667214DAF68D035E51A65549 /* FIRAuthBackend.m */, - 55B1CCF88112DB34F9F954F1DC4E9486 /* FIRAuthBackend+MultiFactor.h */, - C25825E75B5030C7C650908148FCDE82 /* FIRAuthBackend+MultiFactor.m */, - B45DDC9E822D0D1A7EC39B8EF10186B7 /* FIRAuthCredential.h */, - 389E05CEEC4EDFF85E37B4F77A8AE452 /* FIRAuthCredential.m */, - 9CFB7CD65DEBF28C41B7CD61D8E91910 /* FIRAuthCredential_Internal.h */, - D9F5BAFAE0D6EF767520B8153406D070 /* FIRAuthDataResult.h */, - ED26C4B74FA62280829BFE8D365D3F8C /* FIRAuthDataResult.m */, - 4014E525FCCB6986B9286C01182028E5 /* FIRAuthDataResult_Internal.h */, - 049AF067CE61494C19FED162F2570C99 /* FIRAuthDefaultUIDelegate.h */, - 0C52B5ED240BFB3FE8155AE49EBD634F /* FIRAuthDefaultUIDelegate.m */, - 4637AFA665C7A04A54C0CF891D59527D /* FIRAuthDispatcher.h */, - D21038E0D186C1404609EC185FD551F7 /* FIRAuthDispatcher.m */, - 9B2F8CFF4F0269CE996EC083F7C6A3E8 /* FIRAuthErrors.h */, - B74AA4E83DF1690BB5D1AC2ECD8FE5DE /* FIRAuthErrorUtils.h */, - 04E48C9D154588720EE2F8FCC23FE73A /* FIRAuthErrorUtils.m */, - E395C99063DF245B82C8576625E5E985 /* FIRAuthExceptionUtils.h */, - 93E9C83B819B313DAA4618EAC4B965FF /* FIRAuthExceptionUtils.m */, - 4D45536AE1248C1A4F9042A55CE4F059 /* FIRAuthGlobalWorkQueue.h */, - 0F6A42A75B68E6E98CBFF5A4F7910F40 /* FIRAuthGlobalWorkQueue.m */, - D405B1AD966B4899BEDC691282579C1F /* FIRAuthInternalErrors.h */, - 3F6C93D1F9F3C7E59293F1C83332E319 /* FIRAuthInterop.h */, - 6794F0D329E77DC6DEB3C21DE5C54E34 /* FIRAuthKeychainServices.h */, - 292970E634E0626F74B5D0010565F94F /* FIRAuthKeychainServices.m */, - A8A9D0C32C832450687A2B7EEADBA2D4 /* FIRAuthNotificationManager.h */, - 5B6A47A03BCFD80CB548AB1C2F8E7320 /* FIRAuthNotificationManager.m */, - 6285C2A41D31E0D918DAB849DFE3C153 /* FIRAuthOperationType.h */, - 4357BBDA12B131BDB106290BFEA3B9E4 /* FIRAuthProto.h */, - 854EF8402D9DF9F92E0D5FC1BC0FE28E /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, - 821F9BEA628632B4077B9F3CB170D995 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, - 5AF0383E1A98B7BEF1F038440B7C8E84 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, - B0A1C35E3A7EA7EDBB42ADC8D0229C63 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, - DAEA7100322E06DC86E1CAD64DFEF4EF /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */, - 3DCD7A1028A76EE50F9CC6BD09AC6EC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */, - 250668636682C7AD0180D1A23ED9AF95 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */, - 95608304459F84B5A2BDCD700CD09E33 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */, - F377A36E9149B2231A872D3D14BD3E6F /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */, - 380EDC93700319F41F9E59502E68C059 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */, - 0C361D814E63B6CBD81262A11CCB1AE4 /* FIRAuthProtoMFAEnrollment.h */, - A12CE25F30D8B7EAD00CC5F0B3197105 /* FIRAuthProtoMFAEnrollment.m */, - 33017A7C42C6BEDE55F8F4D63AB64187 /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, - 750DEB6DCEA34BEB46ABB06B26C08594 /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, - F3DE65898387C162E69024ECA5DC79FF /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, - CF532D5C1C0DB49BB631092C5ABBB341 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, - 883C3415B6B5F1412E57E70BC4CA983A /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */, - CEF07D196EC535B0664121FED7C8D9D7 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */, - 304CE192CDAC5CCB479A5C1DA82A159B /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */, - 23898CB1023773DB2F9DEA4E0FC3FD45 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */, - 092CC3884043312D31D0F05C405B5D9B /* FIRAuthProvider.m */, - 47A1682AE2D5E8825FA853BFA90C0A9C /* FIRAuthRecaptchaVerifier.h */, - FA32CFE31BC70E8B98375CA207DC2C3A /* FIRAuthRecaptchaVerifier.m */, - 4AB1A9989F4A627C9862D8377C333D70 /* FIRAuthRequestConfiguration.h */, - 60AF7DB8877A9A07173CFC052FAED10F /* FIRAuthRequestConfiguration.m */, - 2FC07F214D911DD1AA222F292C584BEA /* FIRAuthRPCRequest.h */, - 21C41D45EEF249B5290C2A95953B636D /* FIRAuthRPCResponse.h */, - DE5DC35577D81BD9DE510A4EC2242792 /* FIRAuthSerialTaskQueue.h */, - 5EB565228E55524530A3E2B5C10BBC03 /* FIRAuthSerialTaskQueue.m */, - 16A95727CDADB70B77BE512454A59515 /* FIRAuthSettings.h */, - AA1009FF3F280B4D6715C9E4A9BC06F0 /* FIRAuthSettings.m */, - A77CFFFB8453314C0C18FB710825C3BF /* FIRAuthStoredUserManager.h */, - 574214F3459A7E8A880943D00E67E245 /* FIRAuthStoredUserManager.m */, - 07ED0F57F9E8EDB2E1C5911E26C1B8CF /* FIRAuthTokenResult.h */, - 5873407F88D71B260806D22E3B94DF42 /* FIRAuthTokenResult.m */, - 4FF7150805B91C2AE32ABCC7781745DF /* FIRAuthTokenResult_Internal.h */, - 62F125772CB89AD87B5AA63568FCE6B3 /* FIRAuthUIDelegate.h */, - E1E90BDAA9EC93C43BAD1515B6CC21D9 /* FIRAuthURLPresenter.h */, - CAB67E3BD0A415E965434A1D946E0E70 /* FIRAuthURLPresenter.m */, - 025ACDC5181D734BF7C462583C7A23E7 /* FIRAuthUserDefaults.h */, - B4C267FD82325E628C65226C9036EDE7 /* FIRAuthUserDefaults.m */, - A17D0F693788377AD232DE1DB3DF4DB2 /* FIRAuthWebUtils.h */, - 0AEB47476D6739933706D19F54B13B14 /* FIRAuthWebUtils.m */, - D5CB4A68B146E519DC23D54BA6872357 /* FIRAuthWebView.h */, - 8D14CFC1A9BAAEAF560BD093558BDBC9 /* FIRAuthWebView.m */, - D65119C433B27191C4D4A6BF34167642 /* FIRAuthWebViewController.h */, - 8B760F55B43B30C3FD903A2D812C4D5F /* FIRAuthWebViewController.m */, - 762E164A8C9550C94AE296DE3A6656BB /* FIRComponent.h */, - ABC8773D5A70DD9E1E44027808DD0704 /* FIRComponentContainer.h */, - 808A42670243C61B5788F67CE87F2D6A /* FIRComponentType.h */, - 243461F9270DB6FA509BBCCEBBE43BF2 /* FIRCreateAuthURIRequest.h */, - 14CB2AEA71555882C2A45FA512EE9237 /* FIRCreateAuthURIRequest.m */, - 6F29A9551D3063A3347F9EDF2E068FB1 /* FIRCreateAuthURIResponse.h */, - 002C5F928CDDA95238B64EBD8E33FF9E /* FIRCreateAuthURIResponse.m */, - DA552ECBE79EDB3E8FD836CEC1BAAA56 /* FIRDeleteAccountRequest.h */, - 55B062C0B572C3A7FBD165823C635FC6 /* FIRDeleteAccountRequest.m */, - 490B2FDB05E67CB2EB79CE9B31FCB501 /* FIRDeleteAccountResponse.h */, - 8F031CECD54AC047516269FC96B4F088 /* FIRDeleteAccountResponse.m */, - D9561534433CC55BD4754DA7E749D257 /* FIRDependency.h */, - 328F054AF56CD463F5B354FBDA1F7783 /* FirebaseAuth.h */, - 904E64CA1A7D347D11233516C28F31DE /* FirebaseCoreInternal.h */, - 3F4B36AAE3221597532D7CFFA8E2B860 /* FIREmailAuthProvider.h */, - A8683D4095057BC40C62BA51542EF92A /* FIREmailAuthProvider.m */, - 8401E857A60AF4A335B22A157EC48CA4 /* FIREmailLinkSignInRequest.h */, - 7FD1B7AB6F45FEE04A43FB794AA9EE49 /* FIREmailLinkSignInRequest.m */, - 709EEABC698AA539288C30513BEAE340 /* FIREmailLinkSignInResponse.h */, - 0F333B33159592FDEF1F70E36E6EF046 /* FIREmailLinkSignInResponse.m */, - 71FE4024DFE5EAB3A90F9976C4BF3F4A /* FIREmailPasswordAuthCredential.h */, - 7331F47B7D4809A8C4CA334472D341F2 /* FIREmailPasswordAuthCredential.m */, - 43027D8D94E7408A1D780805CD9CCFF8 /* FIRFacebookAuthCredential.h */, - C01177EFD1127EA98EE2221F41D1BA60 /* FIRFacebookAuthCredential.m */, - 0B1397FDEB9E99FC0145AC9B5F9D9A6F /* FIRFacebookAuthProvider.h */, - 852D129AFADF9518F5A2A7C6931A1734 /* FIRFacebookAuthProvider.m */, - A5D3AAE3AB12FF8B42ECB6A2949302AC /* FIRFederatedAuthProvider.h */, - 74ACA241350C63E43FDBBFAAB8224E6D /* FIRFinalizeMFAEnrollmentRequest.h */, - E05E313998D96A1B63B6ADB88E761228 /* FIRFinalizeMFAEnrollmentRequest.m */, - AB001268A485BA0104D8AE3D677FE72E /* FIRFinalizeMFAEnrollmentResponse.h */, - 56C038BF541D68E7AD6944A1E241A8D1 /* FIRFinalizeMFAEnrollmentResponse.m */, - E5DEA3BEAD7F2B54FC98D4C72D98413D /* FIRFinalizeMFASignInRequest.h */, - B98F30735EDC5D1623E0C94C29DC0D0A /* FIRFinalizeMFASignInRequest.m */, - 213616686A2B08697F40C67C3974E4E2 /* FIRFinalizeMFASignInResponse.h */, - C76722EAE959F35EAF11A9C8F13E2B23 /* FIRFinalizeMFASignInResponse.m */, - AF6D89DDC58CF9F7DA4F14CE9FB90915 /* FIRGameCenterAuthCredential.h */, - 2D3FB752C505A13CD022D2C5A2073834 /* FIRGameCenterAuthCredential.m */, - DE236C171B4992D7E568EF54EF48781C /* FIRGameCenterAuthProvider.h */, - C9DD55BAC6CCA072A3A11BFEE1538646 /* FIRGameCenterAuthProvider.m */, - 946313CA695FBAB3D89599CBA1758326 /* FIRGetAccountInfoRequest.h */, - 6B069053CA9DBA3A7CD34322310B4B16 /* FIRGetAccountInfoRequest.m */, - 6B0E603043D975207F4A424D7AFE88E3 /* FIRGetAccountInfoResponse.h */, - A2525B3482B8DAA278EFCEC86BB22E2C /* FIRGetAccountInfoResponse.m */, - 4D5CE350FBF2DBC0CF8CCC1C5B63474E /* FIRGetOOBConfirmationCodeRequest.h */, - 7F254CF2160B4363861EE00DBC5833A2 /* FIRGetOOBConfirmationCodeRequest.m */, - 59530CAD4BFDB839F35613F57574899D /* FIRGetOOBConfirmationCodeResponse.h */, - 42D73BBC4D30CD0C0FE9D7280FDD579A /* FIRGetOOBConfirmationCodeResponse.m */, - AEC3FB663079EBD822BB191E81396496 /* FIRGetProjectConfigRequest.h */, - 7BEEBDA8F8D1ACD510203875AED0A7C2 /* FIRGetProjectConfigRequest.m */, - 98D2F53A4701D2B47ED0DA0B4C9B1D69 /* FIRGetProjectConfigResponse.h */, - 4C6EBB8B07D7A731761BDFCFCBC9946F /* FIRGetProjectConfigResponse.m */, - D74C41EE7102B8A17EFD0EA750AD50DF /* FIRGetRecaptchaConfigRequest.h */, - 03F64AACB0411B5654BE6801159074B1 /* FIRGetRecaptchaConfigRequest.m */, - 24B6E5818C166239635FC98720FB405D /* FIRGetRecaptchaConfigResponse.h */, - 0B77EE8EC537CF92368A0C8259F4AB14 /* FIRGetRecaptchaConfigResponse.m */, - 595080F20CDB04B235603107793953CC /* FIRGitHubAuthCredential.h */, - BD790207DD7ADEECF6E986944B064187 /* FIRGitHubAuthCredential.m */, - 75BB53C96604EEA23323B4B10F5CE414 /* FIRGitHubAuthProvider.h */, - 7B80D76DF1DF0AA8186435405DFA90D7 /* FIRGitHubAuthProvider.m */, - 7BAE185510FC64266B68FD35F8348EE6 /* FIRGoogleAuthCredential.h */, - C561DFB8B0126C8920FD36CFF85250C4 /* FIRGoogleAuthCredential.m */, - 240F86B5C21EAD499FF490D257D4A0F5 /* FIRGoogleAuthProvider.h */, - B5E9AE8FDBBAB2E923725A3DCFE2F42B /* FIRGoogleAuthProvider.m */, - 7CCB68B49E4528B833E3D2A09600B2B1 /* FIRHeartbeatLogger.h */, - 41E737F66E81A8D15066E83F63119152 /* FIRIdentityToolkitRequest.h */, - AC0712CE921470A1F3DEDD58F40A5E74 /* FIRIdentityToolkitRequest.m */, - 6BC1440D83158BE03CF874477B3398DC /* FIRLibrary.h */, - 0EC606A342A15B28747379F2203F7F63 /* FIRLogger.h */, - B8C751199D2883675433C98FC6F9DF4A /* FIRMultiFactor.h */, - AC64901E169229CB2F3A94FCD6915619 /* FIRMultiFactor.m */, - 6335FB3851244149F4AAF35A8169A445 /* FIRMultiFactor+Internal.h */, - F55C15A6733687E8B702B55D8F6DAE31 /* FIRMultiFactorAssertion.h */, - 8891D4B45764C501D226C751DA92898E /* FIRMultiFactorAssertion.m */, - 5DF1A28AF14A42BA52BFBB2C03A5876A /* FIRMultiFactorAssertion+Internal.h */, - C69DC47B5A4327716C76E74D49320BCF /* FIRMultiFactorConstants.m */, - 68B286313ED7612398CCE2C19EAF7E61 /* FIRMultiFactorInfo.h */, - E9ABC132611580D82E073643A68A68B6 /* FIRMultiFactorInfo.m */, - 3B22B7DF0D5AF1D416FA7A9FC727B55B /* FIRMultiFactorInfo+Internal.h */, - 94B0028AA962197FF312E0A4F5B127D4 /* FIRMultiFactorResolver.h */, - 54585CE9BE7A298EE5149E399CDB1A01 /* FIRMultiFactorResolver.m */, - 78B411073CCDE9CB469E85F2604B1CCF /* FIRMultiFactorResolver+Internal.h */, - 756A5BBF82B44B8B2F5D0E176504E197 /* FIRMultiFactorSession.h */, - 2AFE525F7A32BDC4E48C5E5B86508750 /* FIRMultiFactorSession.m */, - E86DAD4A9FD845E7CA8444A7774785FD /* FIRMultiFactorSession+Internal.h */, - 6E7AC110E4B3A8299B349EB50A316804 /* FIROAuthCredential.h */, - C585D2DC57DC3E873F790AA4A4C341B9 /* FIROAuthCredential.m */, - F7F91BC09C76F83677064C3E28D24680 /* FIROAuthCredential_Internal.h */, - D6177006512C355314C4520CE8300FD4 /* FIROAuthProvider.h */, - B9C15082035D41D4B645F25B876AA09D /* FIROAuthProvider.m */, - 2D4E8BDA85C75A0D44E7BAC6019838D5 /* FIROptionsInternal.h */, - 3E12FC7E509D46B477EA12EA8C9139F4 /* FIRPhoneAuthCredential.h */, - 3802A2990F2ED5B1593DC3DA11934C29 /* FIRPhoneAuthCredential.m */, - A1C242F5C5CF00BE600119F257EAEBB9 /* FIRPhoneAuthCredential_Internal.h */, - C89D49ECFE3229F3C92A7776DC305465 /* FIRPhoneAuthProvider.h */, - 644AAB1720281C6EBDF01BD7F37995DE /* FIRPhoneAuthProvider.m */, - B4C54E85A3BEC10700C9D517C5505F3F /* FIRPhoneMultiFactorAssertion.h */, - 68E3DFB89838DAE73699758C3A0C279D /* FIRPhoneMultiFactorAssertion.m */, - 05915E53C7A97653CE4E640488BC1707 /* FIRPhoneMultiFactorAssertion+Internal.h */, - BF2B6FECD20BC6E4DFADF160D473AF05 /* FIRPhoneMultiFactorGenerator.h */, - 3778E964F6B91AE93B1D478654B776D2 /* FIRPhoneMultiFactorGenerator.m */, - 5FB05209FB0876D8443218CAD509A28E /* FIRPhoneMultiFactorInfo.h */, - 8B660FE4B353C4FEF6E5E3E58276C609 /* FIRPhoneMultiFactorInfo.m */, - 4F4808E726E7B9346CD51257A2C1A03F /* FIRPhoneMultiFactorInfo+Internal.h */, - 798CB13DC00A8EBF1CD524248942FBC7 /* FIRResetPasswordRequest.h */, - 237A8D91217B7626D61CBBEA8972FF66 /* FIRResetPasswordRequest.m */, - 5CEA228F4110DD21C04E562F66E3D6A9 /* FIRResetPasswordResponse.h */, - 7D5FCB236E5E8F3486231A16383911D9 /* FIRResetPasswordResponse.m */, - 6DD63B7D7EEE782176503C0FF2987A69 /* FIRRevokeTokenRequest.h */, - 9E732924AC485413C74955BAB88FB4C8 /* FIRRevokeTokenRequest.m */, - F2C17695F6FAB97FE5C172FDEE69D847 /* FIRRevokeTokenResponse.h */, - 1D5DA424035C4932813745B3F49A7C7F /* FIRRevokeTokenResponse.m */, - BA1B498BC60171E83447E674B5446B5D /* FIRSecureTokenRequest.h */, - 4B9661FE21A0BC387ECC1283919AF96F /* FIRSecureTokenRequest.m */, - C7A7D23CEAE78DE9268CAC2844486510 /* FIRSecureTokenResponse.h */, - 31DA78A2B0770421731710E0720376B6 /* FIRSecureTokenResponse.m */, - 8BEEA0277B34F94795549724440015F5 /* FIRSecureTokenService.h */, - 8F07636F555E3D7789FF202FE79E6991 /* FIRSecureTokenService.m */, - 8B5F7329C126EBA6D0CC19AF25E28BCD /* FIRSendVerificationCodeRequest.h */, - C1FCA53586F7B96DED355E673A4DBEEB /* FIRSendVerificationCodeRequest.m */, - F191D18D05A427DCEE90E47D72173077 /* FIRSendVerificationCodeResponse.h */, - 629901019E458BCAB5B79BC7E8A84525 /* FIRSendVerificationCodeResponse.m */, - 4E278354E9BCE50B464C824ED5DA39E6 /* FIRSetAccountInfoRequest.h */, - 1F09BE586B29CA3D4D9A9B9E6AC6B394 /* FIRSetAccountInfoRequest.m */, - BFDB94A5273769B74893F966F015E439 /* FIRSetAccountInfoResponse.h */, - BE2CB3B190542DEBD89A08AEBECA6CD9 /* FIRSetAccountInfoResponse.m */, - 6EF37E10482D8CB0DD923B341150EAB7 /* FIRSignInWithGameCenterRequest.h */, - F8DAADB5AF27620A23439A2B662E5CEB /* FIRSignInWithGameCenterRequest.m */, - C65DAFB716A85E9AB3D5E43632DE56A6 /* FIRSignInWithGameCenterResponse.h */, - 2003E6F47C25608319AB8631B76C1FF9 /* FIRSignInWithGameCenterResponse.m */, - 6A166EE537FFFAE11B8937BCCF9D1A28 /* FIRSignUpNewUserRequest.h */, - 5C3E859D389F59E1DF1C9FFE8548EEC2 /* FIRSignUpNewUserRequest.m */, - 8FEBC08BA249C1A0DB48FD7CC359B92D /* FIRSignUpNewUserResponse.h */, - CF08400BD33896282B6DFE2D08E41224 /* FIRSignUpNewUserResponse.m */, - F3A32C20DE10EEA48881C3FF3BE0904F /* FIRStartMFAEnrollmentRequest.h */, - 6476AD094CF47FF1203F8F29398CB510 /* FIRStartMFAEnrollmentRequest.m */, - A8A0173354CA5DD63783847DAB619B51 /* FIRStartMFAEnrollmentResponse.h */, - 532E40D999034326EEE1D11FA9FDB0D5 /* FIRStartMFAEnrollmentResponse.m */, - 4BBD4A50E111FC5E6E3D281EF9EC89EB /* FIRStartMFASignInRequest.h */, - 6897456D46E723A31B7DF44C4D84A63A /* FIRStartMFASignInRequest.m */, - E5A31CE8E77FF2AC5B51F8EE72B1932F /* FIRStartMFASignInResponse.h */, - BB5949EC60744841DB3EA879DC5BC66F /* FIRStartMFASignInResponse.m */, - D5F9B3DEAB31B40BEACD8432BC9BCCF4 /* FIRTOTPMultiFactorAssertion.h */, - EDD2150ADA698D47F0973F06959EBA98 /* FIRTOTPMultiFactorAssertion.m */, - 05803BF9362D41A26D5B1BA2A6B520B0 /* FIRTOTPMultiFactorAssertion+Internal.h */, - E16A8AFF5BB4B921F47A4AFD1C1843D4 /* FIRTOTPMultiFactorGenerator.h */, - 715EFA24F5947A31291F47909C58E930 /* FIRTOTPMultiFactorGenerator.m */, - F02E23E7F5D906D64F2220161F561F00 /* FIRTOTPMultiFactorInfo.h */, - C09900EC1AA88B436AF44716B989F2B1 /* FIRTOTPMultiFactorInfo.m */, - AAAA04610A132AE746FAFF109300029B /* FIRTOTPSecret.h */, - 56302989F1DD11B6551B6072B8ACEB9D /* FIRTOTPSecret.m */, - EC6C9C4033DF7CA9272E8E1E8A9144EC /* FIRTOTPSecret+Internal.h */, - E47EB53D6778008D6569E7367EC3E7F4 /* FIRTwitterAuthCredential.h */, - 0B49D5BF2689AA79CCA11197251F02A7 /* FIRTwitterAuthCredential.m */, - 8D974FCD2BA452401184A26F2C1A3B47 /* FIRTwitterAuthProvider.h */, - 8B3E64DEADF992F5411E4530702717B8 /* FIRTwitterAuthProvider.m */, - 15275EDB4469AA6B9C24A03FF4BAD201 /* FIRUser.h */, - 1D682163456BC452FF97DCCC5882159B /* FIRUser.m */, - D656C616C4CCD764DA8AB299D6F9D586 /* FIRUser_Internal.h */, - 59A2781712A1280D98ADDD945970933F /* FIRUserInfo.h */, - 7BC619DDC6801020AA9756B5F4BC7379 /* FIRUserInfoImpl.h */, - 1FCD6836A724AEECFC642EE795011CD4 /* FIRUserInfoImpl.m */, - 66DA1B457A25A7728C8BDCE8853C01C4 /* FIRUserMetadata.h */, - 67E61136A4439FB7808C8FB70EADCC29 /* FIRUserMetadata.m */, - 1CA09EA6B15D2DD72C7B884763363939 /* FIRUserMetadata_Internal.h */, - CC3D6239612D695F69F25D237B24DB39 /* FIRVerifyAssertionRequest.h */, - 2DFE95BDD3A75E2E0EF5D6539EB93633 /* FIRVerifyAssertionRequest.m */, - B4CBDA3B21BB2DD5D9AFED735F3DCCCF /* FIRVerifyAssertionResponse.h */, - 885CA5C2D91D1FF2F89A9EBBCB14F3AF /* FIRVerifyAssertionResponse.m */, - 25092DA6BA8FF7A07D398DC734419046 /* FIRVerifyClientRequest.h */, - A90F6B7BCEE237D7422E20C85ADFF3C0 /* FIRVerifyClientRequest.m */, - 8FFCDEB1FA54BF1331B4A25531F02490 /* FIRVerifyClientResponse.h */, - 65C65A4E689D8CA790E90613AFE8D0EF /* FIRVerifyClientResponse.m */, - C9CD3AA0E26E19449E6B4AA33D821960 /* FIRVerifyCustomTokenRequest.h */, - 36512702B810FEE71980D68A88C72FE5 /* FIRVerifyCustomTokenRequest.m */, - 73CBEAD3C39180F512B52CB6F9ABFBC6 /* FIRVerifyCustomTokenResponse.h */, - 2A59475094330130E8016092B3DD5606 /* FIRVerifyCustomTokenResponse.m */, - 920E9D5DE36F2A7988B6C6D189CD94AF /* FIRVerifyPasswordRequest.h */, - E98A046C925B2B79DB747C573EB4CA94 /* FIRVerifyPasswordRequest.m */, - AF6E4CD95C9AC94855CAB68D47E8E740 /* FIRVerifyPasswordResponse.h */, - B066B1A69ED23E0F0CC29809ED92A7B5 /* FIRVerifyPasswordResponse.m */, - EBEB2A6C6861DA4852BF81EE011F1B15 /* FIRVerifyPhoneNumberRequest.h */, - C8ED4AC2C7DF185CFDB2E727A4B89ACB /* FIRVerifyPhoneNumberRequest.m */, - C8383471CE9356ADEFAC9AF109224D1C /* FIRVerifyPhoneNumberResponse.h */, - 334BBB4D22B732FD76A0F0E2A7C851F0 /* FIRVerifyPhoneNumberResponse.m */, - 16720CE4C62846DF6B4CC8AB56E52472 /* FIRWithdrawMFARequest.h */, - DD564A2163A1AFE56CC423B434F7AB63 /* FIRWithdrawMFARequest.m */, - 0533021FA6A75717E25B49F1E1ECDCDE /* FIRWithdrawMFAResponse.h */, - EC9F7042F90A1388F20930AACE85C7DF /* FIRWithdrawMFAResponse.m */, - 72A06CB284586A3D1CCF94B6382EE376 /* NSData+FIRBase64.h */, - 0E72B29F1F832B0D659B4B5FD1C74931 /* NSData+FIRBase64.m */, - 442CC5F7A624ED57B6C07D01C98ACCAA /* Resources */, - 02131C7CFB8EA57EDB4B8E453B6A96D2 /* Support Files */, - ); - path = FirebaseAuth; - sourceTree = ""; - }; - E85388C1CF475681434B6AF2D3136A5D /* throw_delegate */ = { - isa = PBXGroup; - children = ( - EB55448DD3B1EE0276A8EFF4C087DDBB /* throw_delegate.cc */, - 420C4DFAE6857E6CACA60EF5C8946BCC /* throw_delegate.h */, - ); - name = throw_delegate; - sourceTree = ""; - }; - E8AC2CB39FE2DD35D5E158F4D6D99068 /* cpu_detect */ = { - isa = PBXGroup; - children = ( - 96F0BE6F3C268C46084B47BCD57D6DEA /* cpu_detect.cc */, - AB1CBE2B517F0D9BFA828547100D2767 /* cpu_detect.h */, - ); - name = cpu_detect; - sourceTree = ""; - }; - E9090E1950A827F70CA9D0DF53E0E90C /* raw_logging_internal */ = { - isa = PBXGroup; - children = ( - CC2F86EDD170643F034AA9A6C4917E70 /* raw_logging.cc */, - 2B18E2BBEC9D8353063AE3E181D1775F /* raw_logging.h */, - ); - name = raw_logging_internal; - sourceTree = ""; - }; - EA063D925E294D6217C433E46966C1BC /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1C9DD45F99B83FF6849D42BC55DDD640 /* FirebaseAnalytics.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - EC00EE5D8F4AC3506BFE286F26208B03 /* Resources */ = { - isa = PBXGroup; - children = ( - FA551A07C63520D0845AB2CA2EDEE7F8 /* roots.pem */, - ); - name = Resources; - sourceTree = ""; - }; - ED690A86AFC12495911FE12B5BFD7CB3 /* random */ = { - isa = PBXGroup; - children = ( - 896D09B879467A0E85946DE8BF04E0F6 /* random.h */, + F33CB711856B63E4629A0C42C1164025 /* random.h */, ); name = random; sourceTree = ""; }; - EDE7271653816EA5219A833EDF1476FA /* Kingfisher */ = { + B9078E8562518E5FA20362B0478DDC48 /* variant */ = { isa = PBXGroup; children = ( - 6A82E85213D75A1103046771B7FBB44B /* AnimatedImageView.swift */, - E648D50118D6CE58E27A6882E38067CD /* AuthenticationChallengeResponsable.swift */, - E3243580BB7CA8A3A17E07C964377F9F /* AVAssetImageDataProvider.swift */, - A293099EF4A711A4695E5C16B3EC4661 /* Box.swift */, - F731401DB36F36070A68BD5042ACA304 /* CacheSerializer.swift */, - C50FE6A65CB8B12E8CE0BA1CEDA1995F /* CallbackQueue.swift */, - 023BD123D2CD2A4AF52AEF65C2CF0C02 /* CPListItem+Kingfisher.swift */, - 49B5DA74628EC3FD7545D519E736DD45 /* Delegate.swift */, - 86B9A5A8CEE6F437E625848852974C8E /* DiskStorage.swift */, - 891187FA53572690C484A023D51FBB95 /* ExtensionHelpers.swift */, - A916756E33981CE27654E0FB72FE1D9D /* Filter.swift */, - 21F4952CA411CCFA0607E147F1719BC0 /* FormatIndicatedCacheSerializer.swift */, - 19151CF500E0299DAF6B220F037E2CFB /* GIFAnimatedImage.swift */, - E848C2C3A6DCBD45278A93130F69A68E /* GraphicsContext.swift */, - 4418B9D0D230AAFBF7B49560468EE438 /* Image.swift */, - D67940C68B27DAB03AF6D4321C21AFCD /* ImageBinder.swift */, - E69C06ACB33BFBA8CB1E59C9BDEBA353 /* ImageCache.swift */, - 662FB2CC3163AB40E59CE7DBDD660797 /* ImageContext.swift */, - B998AAA294328ABBB9953F7D0BE56613 /* ImageDataProcessor.swift */, - AD33140245D52DA29F73B931B38CC8E9 /* ImageDataProvider.swift */, - 1E199C13AD39F2424E04DDD118FB98EB /* ImageDownloader.swift */, - 12E91E422946C0FCF267D3EE67345EE4 /* ImageDownloaderDelegate.swift */, - 1ECBC60D2F6B64EC1C5AD1E56FE49CBA /* ImageDrawing.swift */, - ED860CC39E840C4FDCAC774BB528129B /* ImageFormat.swift */, - E73AF16F65707A76977BB236194FA7E3 /* ImageModifier.swift */, - 25C2927BA1354FE1C8613B4B04621BC6 /* ImagePrefetcher.swift */, - B5FD313D783E7320929DEA2FAA8FF000 /* ImageProcessor.swift */, - 47CBFFA617A23D4E2EF3C96A5CDF1BB1 /* ImageProgressive.swift */, - 30A18A850F820A1602693AB1B0701D64 /* ImageTransition.swift */, - BCA0E5BE0705391757FA6CD6A430228B /* ImageView+Kingfisher.swift */, - 860ABF445788680A7909FA3A9A4AB956 /* Indicator.swift */, - 80043F331F698B9DDC446E5CA6D0E860 /* KF.swift */, - 073AB6A5CBB88F9CEC48170726D08C45 /* KFAnimatedImage.swift */, - CE13B1C808304298AEA6E11F03FE91DA /* KFImage.swift */, - 8C989D5F6660493981CBBBFE11722A38 /* KFImageOptions.swift */, - 101757169B31195CC466EA9AC900B4DA /* KFImageProtocol.swift */, - 77F77181578E3EA9B575807329D8369A /* KFImageRenderer.swift */, - 216048025598D65E95D1D18FC8575401 /* KFOptionsSetter.swift */, - 5AB6AD22546F169278FE5FFA595A284D /* Kingfisher.swift */, - 17D8D342EA24DDBA9E0B28601C6A6DDC /* KingfisherError.swift */, - D9EC79AA0988ECE07D6878C22AFED429 /* KingfisherManager.swift */, - 2846F2E93AE609D758CC907B71A803A4 /* KingfisherOptionsInfo.swift */, - 3E9BE5EF4602CFC61BA2B88FB195AAF2 /* MemoryStorage.swift */, - 9A3923148274370BAA83EA47F0BF2036 /* NSButton+Kingfisher.swift */, - 4C089D4B63E169C18D44E051C1A1B031 /* NSTextAttachment+Kingfisher.swift */, - 77F4E18EDB38B1F801557EAE2B05163B /* Placeholder.swift */, - 9EA4EFE467B4E711C9A880A89BC95D4D /* RedirectHandler.swift */, - 9F0A16D5015BFBF63742F84215229F2F /* RequestModifier.swift */, - 570EC0D0F4BD3CFAC3DEDCDEB8628070 /* Resource.swift */, - 7D0F41194A8177B46A4826496FFD42CC /* Result.swift */, - 4834CBAD43BF97074A15661406C7B591 /* RetryStrategy.swift */, - 9D06F1C8D86FA4B9A2977D33464CE785 /* Runtime.swift */, - 27440127393E1B7504D4EA25A96A6BDB /* SessionDataTask.swift */, - 1E6D2F486B1C48B847EA40F926C0968E /* SessionDelegate.swift */, - AA6B24D04E4144DBFD712509FE96736A /* SizeExtensions.swift */, - 0BB865A089A34BB2888E578607D9E23A /* Source.swift */, - 84004C228538D3D91BBF074EAB55485B /* Storage.swift */, - DD207776791D5EA768437F9D61FF6F83 /* String+MD5.swift */, - D0FAD74E6C9CB7A67E106914AB529CE5 /* TVMonogramView+Kingfisher.swift */, - 2D48BA93BEFC4E37A08929EDE2CFE899 /* UIButton+Kingfisher.swift */, - 045519DF52B0019A1AEB991E05EF09A9 /* WKInterfaceImage+Kingfisher.swift */, - D09FADD7F046EBF93EE3695699414B59 /* Resources */, - 35A97853C5521AD7EFA81155CA7DBF36 /* Support Files */, + 17411B437FA23CD41856403FD256CE13 /* variant.h */, + A0296BDE48803F43E4FFE9DD1AC10C01 /* variant.h */, ); - path = Kingfisher; + name = variant; sourceTree = ""; }; - EE648F003AD492162F8CD40A9497CAF2 /* status */ = { + BA89A405C7BC2D696007EFF3EC823A00 /* Reachability */ = { isa = PBXGroup; children = ( - 9D0A0BBF99D56D0964A0159E7BF1A394 /* status.cc */, - 4937660C7C4175EB86B4768C14D3A42F /* status.h */, - E3F839208013616201860A74C11C6C0A /* status_internal.cc */, - 8F2B7D72246D17F4BEADA9DBB937CB0A /* status_internal.h */, - 0D489ECA0805BF5012D5FEA74519D8BD /* status_payload_printer.cc */, - A3FCD33DDBF6723E1652951CF44CC1E4 /* status_payload_printer.h */, - ); - name = status; - sourceTree = ""; - }; - EE722DEFF3D24D930CF48B92B2C7D4DC /* common_policy_traits */ = { - isa = PBXGroup; - children = ( - 2DBB0D09678A6F9312762C7AA0562F21 /* common_policy_traits.h */, - ); - name = common_policy_traits; - sourceTree = ""; - }; - EED3B37B1F1099447E7196FF6D70D2C9 /* Resources */ = { - isa = PBXGroup; - children = ( - 0376F7E599F4EA51E22B731E0D6D6F9D /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - EFF663D92B53ADD593FAB5B0FE1120B0 /* randen_hwaes_impl */ = { - isa = PBXGroup; - children = ( - 234BD209DB3E806E9FB98CE8E2BCC39D /* randen_hwaes.cc */, - ); - name = randen_hwaes_impl; - sourceTree = ""; - }; - F0A8517D1AD9654F8A6D301FEB13A49D /* Resources */ = { - isa = PBXGroup; - children = ( - A747447769199CA7B4A490196D94485F /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - F0CF37A486DADD2F6A87C909F15F50BB /* flag */ = { - isa = PBXGroup; - children = ( - 3ED67E4A77BD0818CEB7184A8E69E913 /* declare.h */, - 34D9774C7E2703A06D7B9AFE6EFBDF2C /* flag.h */, - ); - name = flag; - sourceTree = ""; - }; - F10CB933349587568B967E95DDB8F977 /* Support Files */ = { - isa = PBXGroup; - children = ( - D31BFFAF3667EDA33F860524B6A97485 /* GoogleAppMeasurement-xcframeworks.sh */, - 9C662347FC999ED4FBFE9A46444545ED /* GoogleAppMeasurement.debug.xcconfig */, - 314CC0A5D31E2C89747242FDE8E4C7D9 /* GoogleAppMeasurement.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; - sourceTree = ""; - }; - F1A70A004C929C282123376B20F4B1D1 /* Reachability */ = { - isa = PBXGroup; - children = ( - 92C09AA0C1C1EC18F2942986C46139D1 /* GULReachabilityChecker.h */, - 43365096C48052D39836B32B8911833B /* GULReachabilityChecker.m */, - E546DCEDF5ECD6C45B1BEC0E2F4A55C6 /* GULReachabilityChecker+Internal.h */, - 98F60E33B7ECB653505461F0808DA85C /* GULReachabilityMessageCode.h */, + FC29AE623FB4CD5904117A73DB762615 /* GULReachabilityChecker.h */, + E0C22D3096C6673EE6416A7A6BE76918 /* GULReachabilityChecker.m */, + B2429C38B67F25B88647E5CF5C0592F8 /* GULReachabilityChecker+Internal.h */, + BE06B73707EC18CA0E03978F76668C26 /* GULReachabilityMessageCode.h */, ); name = Reachability; sourceTree = ""; }; - F1FD309FDF4D277CB9977240A9067EC4 /* Support Files */ = { + BAF32292B377ADF907251036C9B38903 /* Support Files */ = { isa = PBXGroup; children = ( - 03B66B3517357581B81A15659D79A15D /* FirebaseCore.modulemap */, - 6D01E604215F98B91E3B1F3DA36901F2 /* FirebaseCore-dummy.m */, - 2EE4715C098DCE82B91A29BC82BD497F /* FirebaseCore-Info.plist */, - 8BED3AE58AB6232BA76455757FD01B44 /* FirebaseCore-umbrella.h */, - 23E306AC17CA04FC2B1ABC7FFCC26E28 /* FirebaseCore.debug.xcconfig */, - E8802D3087956EE69081E01F82AE753E /* FirebaseCore.release.xcconfig */, - 47B7B411D780DF93A0F1A5FA18232851 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, + 053AA5743AC199496A1EE13B5EE109B5 /* gRPC-C++.modulemap */, + BCA0BAE943222B1EDF73DC518107871E /* gRPC-C++-dummy.m */, + 8DB9C3001A5A784A011221442D820498 /* gRPC-C++-Info.plist */, + 0D07B9955C7F3AE46172CF3D70965509 /* gRPC-C++-prefix.pch */, + B9D045CC9373BEBEB26298DE9B72A690 /* gRPC-C++-umbrella.h */, + 91F4D41DDDB50811970FD5ACF0E8509F /* gRPC-C++.debug.xcconfig */, + D325D7A4BA84E404B44095F692EDA6A1 /* gRPC-C++.release.xcconfig */, + F2D83FF977A8FD6D4D7055169CEB2952 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, + 4BE9151E461F9E7F90D3DC3515E30AEE /* ResourceBundle-grpcpp-gRPC-C++-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../Target Support Files/gRPC-C++"; sourceTree = ""; }; - F2D8E0FA620197FEEC3ED6CF5E0229A5 /* config */ = { + BBA9CDF9C62D2F4B11FFE3AB514662BB /* Support Files */ = { isa = PBXGroup; children = ( - 7413EE8505C6C89248F4BF68DDDA029F /* config.h */, - 29477639FFAF4893AF46978826A8EC06 /* usage_config.cc */, - 2D95451703CCC1510B7B508DB982B0AD /* usage_config.h */, - ); - name = config; - sourceTree = ""; - }; - F42D8EDCD40035301304BF8F9E66523D /* Support Files */ = { - isa = PBXGroup; - children = ( - 6CD4AC2C12F5057196364B04C218E07B /* PromisesSwift.modulemap */, - 9DC08C6E870F6F090D4ED69D9CBF7433 /* PromisesSwift-dummy.m */, - 50ECEF85ADEBA779271C9F06A6FB65FC /* PromisesSwift-Info.plist */, - 6996903F79588E8D905E503F7584CEDD /* PromisesSwift-prefix.pch */, - 22D4B40646A44E8219D17F2743CAFDF0 /* PromisesSwift-umbrella.h */, - 7F3DB6386BD1FE339AE0866771144085 /* PromisesSwift.debug.xcconfig */, - 8A390A3454C2DE9588E3128E20BB61BA /* PromisesSwift.release.xcconfig */, - 007A421B85B88BAF3521C5419ECB04A8 /* ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist */, + 2D111DB5C9CA3578B97E59DE41191D2D /* SnapKit.modulemap */, + 7E90498893AD9CE975D60D4D6079F268 /* SnapKit-dummy.m */, + E1B5C50EAC3529A6BFE56FB2E5D05727 /* SnapKit-Info.plist */, + 30B9C6D19F51FE2489DE0CFA53BE20E4 /* SnapKit-prefix.pch */, + 9A328A1AC005D21978EBF3B0FC798E89 /* SnapKit-umbrella.h */, + 88D0AE19D586AC186370D742D5B52B7E /* SnapKit.debug.xcconfig */, + 718FB7F46E398F62FF1E4698A24FF6E9 /* SnapKit.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/PromisesSwift"; + path = "../Target Support Files/SnapKit"; sourceTree = ""; }; - F602FBAD3DD0E3BA15D80E1D1B725B5E /* flat_hash_map */ = { + BD19A305731EB4037A5E1F95ACB1A549 /* SVProgressHUD */ = { isa = PBXGroup; children = ( - 395D0688CFC35F8AA5E7219C0FB71E82 /* flat_hash_map.h */, + D67DDE5901A5EC9A7EACA8CF6F4E5C2A /* SVIndefiniteAnimatedView.h */, + 7540275EF47A3297FF38D6BAAE33E270 /* SVIndefiniteAnimatedView.m */, + A6638488C3F9E8FC1DA1C1C89C575332 /* SVProgressAnimatedView.h */, + D587B10522AFD09810804550074C1AC2 /* SVProgressAnimatedView.m */, + 3C803AC6ADA0D2567F45EF2F3ADF7DEB /* SVProgressHUD.h */, + C454BF63A0D72F9965FCCCE24D87100B /* SVProgressHUD.m */, + 331A31F5D6F88ED7AFD686A29A215A90 /* SVRadialGradientLayer.h */, + 11F3FF5F059379AF76E34AAFD924EDB7 /* SVRadialGradientLayer.m */, + D99D429FAC9EAFC39DCE922174D56A41 /* Resources */, + E5A1548319EF3D938A74E501014BC4AF /* Support Files */, ); - name = flat_hash_map; + path = SVProgressHUD; sourceTree = ""; }; - F67B0A2245469438CCF26569FEE85ABF /* Privacy */ = { + BDE77D60CE7E9A79920DEBC18DF00984 /* UserDefaults */ = { isa = PBXGroup; children = ( - D4906A0E0586AD2DF6C015C89483A00D /* Resources */, + 1C3E605B69E4A54238AFB9986C831654 /* GULUserDefaults.h */, + 2C67C6382BB3C316B3F63A3160525212 /* GULUserDefaults.m */, ); - name = Privacy; + name = UserDefaults; sourceTree = ""; }; - F6F6B6A3E03F5CC0C3E02426188D1BB5 /* Logger */ = { - isa = PBXGroup; - children = ( - CFD4474AED354011899F1BA84BD4AA41 /* GULLogger.h */, - E80A011D34CD73F12EA219FEFC3FACB2 /* GULLogger.m */, - 51232F20B595F88D4BD4776D6FB62CB1 /* GULLoggerLevel.h */, - ); - name = Logger; - sourceTree = ""; - }; - F787AC4B99936F911CF3CB49707D3085 /* nanopb */ = { - isa = PBXGroup; - children = ( - E2DA608436826A1DDC1045B7BD25356B /* pb.h */, - F6ABF86F65FD54C34BDF5CCC3B3FB6A3 /* pb_common.c */, - 9DE92791A55F429A63E38F3A1998CED7 /* pb_common.h */, - 9DC9A57B15E3F9DB493C16351E3473B3 /* pb_decode.c */, - 5A9D9C44F74EC2A54FF3311AF5EDAE1D /* pb_decode.h */, - 28C07DAFA4FD518B918366F940486CAD /* pb_encode.c */, - 43453326E869146CE7498B6AF2F665AB /* pb_encode.h */, - 2BC9000C9DD3EC840A1BECF019EF2A7D /* decode */, - 6AF34A169CE1464CC41B69B87A2A62B2 /* encode */, - 3AB21D45B42E3B5B57D5AEC1FFB085D2 /* Resources */, - 39BB752F0A2E18DDD2AAAB5C6D659402 /* Support Files */, - ); - path = nanopb; - sourceTree = ""; - }; - F7C3B71C9A8A15F817DCF81DC990D2F5 /* Products */ = { + BE0BD8BBDB10A328BD73A289828D45AD /* Products */ = { isa = PBXGroup; children = ( BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */, @@ -33497,6 +33330,8 @@ 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */, 15B2AAC35D0FDBFDEB69A9FC675DC516 /* BoringSSL-GRPC-openssl_grpc */, 190D7383CCEFD8AB3F8CB93098A3F214 /* DeviceKit */, + 2841AEF52E29FA3509917881FAAF0B39 /* FacebookCore.framework */, + EC8F4D0BE3B0C192EBA4A93F8887D89F /* FBSDKCoreKit.framework */, 81418C93A311F0492F62A8F88C3BD66B /* FirebaseAppCheckInterop */, 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */, 75BE3742280F17326166DFF0B2AC4FAE /* FirebaseAuth-FirebaseAuth_Privacy */, @@ -33548,76 +33383,1142 @@ name = Products; sourceTree = ""; }; - FC03FF0793F2FC0D395B6E33B2FB7F49 /* optional */ = { + BEB1065BA457EE1F163DAB3A57068150 /* symbolize */ = { isa = PBXGroup; children = ( - 6521A1C2A21BBC9D6870DE4241035CE3 /* optional.h */, - 69E7A00553447D75B5F53F06567D3621 /* optional.h */, + 1951EA0017420B74D4D7088EB45DB400 /* symbolize.cc */, + ED2215B99B2E6E039AE270318E90F8F1 /* symbolize.h */, + 75B2FE6AF746B331330E3E1854A12AAF /* symbolize.h */, + A5CF7CBB44B435F8D993901568EB0A54 /* symbolize_darwin.inc */, + 2408342D6767DD28091DA74A6CE45626 /* symbolize_elf.inc */, + B454EE38384FA7272059F594557AF807 /* symbolize_emscripten.inc */, + 8837AEEDD09A4EF408C833BDE339CC00 /* symbolize_unimplemented.inc */, + 207BDECAC3031BAAA39BFC8BE0245039 /* symbolize_win32.inc */, ); - name = optional; + name = symbolize; sourceTree = ""; }; - FC594F66CA83D623C8FDA00FF7315857 /* compressed_tuple */ = { + C11FF3D9A12B998C23B9FFC480505BF4 /* str_format */ = { isa = PBXGroup; children = ( - 04AC091E6CD9D9FBA25E0B5AB087B1D6 /* compressed_tuple.h */, + 5260CB27F328410DC320448C4263A7FB /* str_format.h */, ); - name = compressed_tuple; + name = str_format; sourceTree = ""; }; - FC8F32A28491BECCDDFB3CE9050CA7EF /* cctz */ = { + C145D5A5A24C2DC37A386B48F3785A6F /* flags */ = { isa = PBXGroup; children = ( - 08AF4FFE1C188B13435E201519B95622 /* civil_time */, - 01B41E8ACF1311454F0ADB1CE0F5899E /* time_zone */, + 10A7B2CD73538DC4373379CF4DB097C6 /* commandlineflag */, + 9B1E50FE4A6DD639EEDFEA13700543B3 /* commandlineflag_internal */, + 9522BA968151566217F1868587FFF0E0 /* config */, + 1003DDFA8AC9534871B4BB99BCC97E82 /* flag */, + EDE3595166339017BD7DAFB793D6CEC2 /* flag_internal */, + 9DE4889B182E250E496F5570C5551DDF /* marshalling */, + 061C369515CC636CA6D561A0006FDB22 /* path_util */, + 4323C9B8D71C35998666DAFAF02CE3CF /* private_handle_accessor */, + 848AC2821B9033DC52402393C69D15E7 /* program_name */, + 9C0FC7B6C6B376B1F251341BAF4A0658 /* reflection */, ); - name = cctz; + name = flags; sourceTree = ""; }; - FDE2E7D22010417F32A72587B9CC9385 /* fast_type_id */ = { + C2771B3D9953C5C0AA9A4E4B92F90A84 /* base */ = { isa = PBXGroup; children = ( - AA41040D74334E26E587B207BFF70595 /* fast_type_id.h */, + 84BB4CEFF5D66F211D52C93C4DC818B2 /* call_once.h */, + 6D6682C5F498B9B212580B3B395868AF /* casts.h */, + 3081E20333B21F91C74B8B9CC6E84A1C /* cycleclock.cc */, + E8FECDA55934735363493F56C347094D /* cycleclock.h */, + D75D2E1D7FE8CD2499AD8A64317AF884 /* low_level_scheduling.h */, + E46526A5BF9C4A1C334ACB727BCF72EA /* per_thread_tls.h */, + 7F3362BD76F692EF1BB22287FDE0F3F3 /* spinlock.cc */, + B06F6F0D7A7E0D04E1257CADE292FFC2 /* spinlock.h */, + 5E048D4D8BF1CA55EBFA2F1844E77ED8 /* sysinfo.cc */, + 17B7F45AFAAB484F0C05AFFAB757A079 /* sysinfo.h */, + 130080EE0A9CE3E3F79023DC4283960C /* thread_identity.cc */, + 44F626D46E97CFC859A6FF390DE4DC07 /* thread_identity.h */, + 8F958612B31F6E1F40D25944250D305B /* tsan_mutex_interface.h */, + D426D544D54900B6B15B5B494769D3BF /* unscaledcycleclock.cc */, + 7E3A51E25423FF3D42A954DE61B3344F /* unscaledcycleclock.h */, ); - name = fast_type_id; + name = base; sourceTree = ""; }; - FE1BE4246D0F52B4AF1018207ED4697A /* crc_internal */ = { + C3A47BB337A20B4F05A2012A9F9B97D1 /* flat_hash_map */ = { isa = PBXGroup; children = ( - 3A119D3CD79C2C5ED6A7120359D56CF5 /* crc.cc */, - E96B5BF0D243FF7C6D902A872BE7439E /* crc.h */, - DA57F4F0B36BEB663899DE92D4C0ECF1 /* crc32_x86_arm_combined_simd.h */, - 69A75AC896640EF70FC738DC83558425 /* crc_internal.h */, - 877D9660F2F8DC3E0A3D0D5DD0029670 /* crc_x86_arm_combined.cc */, + 8F86A68B4E72FBDC1F4098273C1EECAE /* flat_hash_map.h */, + ); + name = flat_hash_map; + sourceTree = ""; + }; + C3D7168082D670970DD7E529EE0B6910 /* fast_uniform_bits */ = { + isa = PBXGroup; + children = ( + FE378C1506C10C0FAEAEEBC0362AF5E9 /* fast_uniform_bits.h */, + ); + name = fast_uniform_bits; + sourceTree = ""; + }; + C3EDE0A9D524408E8500A9B892C2DB4E /* Resources */ = { + isa = PBXGroup; + children = ( + 2BB905ACC2214F1FFF82A2E7511F3674 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C45F9AD949DFC0ADCA197BF7C326CDC4 /* FirebaseSharedSwift */ = { + isa = PBXGroup; + children = ( + D79227581D2CC985011E3EAB93B32A53 /* FirebaseDataEncoder.swift */, + 8D9E452A5D9E9E77D10224DEE0A0B751 /* FirebaseRemoteConfigValueDecoding.swift */, + 1817DABB56CC11F6D312C869CABBF595 /* Support Files */, + ); + path = FirebaseSharedSwift; + sourceTree = ""; + }; + C4E76E2FBE1A0964B6DB55AB223571E0 /* FirebaseFirestore */ = { + isa = PBXGroup; + children = ( + 0F797F45D2C98D4B1C3D9ACB2889A07A /* CodableErrors.swift */, + 7CC593042D19E574999F0C2178771F39 /* CodablePassThroughTypes.swift */, + ED66A807EC1BFB0C3870429D90499B02 /* CollectionReference+AsyncAwait.swift */, + C0479C3C305E8F5C7BE1357E2F702734 /* CollectionReference+WriteEncodable.swift */, + 77BC4E7D06857998BD6B0E3C340DB3DD /* DocumentID.swift */, + DB0D7C80C0B32330FC2B78DE861B985A /* DocumentReference+Codable.swift */, + 10653ABEC46E494BC09C7ECC68ED4817 /* DocumentReference+ReadDecodable.swift */, + 879ABE0BC33DF3C9B5C1808F34240B35 /* DocumentReference+WriteEncodable.swift */, + DD39F57A58B4D1CA1B3CDEB56D541F02 /* DocumentSnapshot+ReadDecodable.swift */, + 525BAC7321476491912693FC99DB9421 /* dummy.m */, + BDA1FF472009747A0FEFD13039A0F8A5 /* EncoderDecoder.swift */, + 0DC91953CFF5EF58D7F5016A05B1D058 /* ExplicitNull.swift */, + EBD072D85D62015AAB327D1123D5D767 /* FieldValue+Encodable.swift */, + 85AF9D481CB2BEF041084381DDC3964D /* FIRAggregateField.h */, + AB120210889E337D37DC8437EB793379 /* FIRAggregateQuery.h */, + 6D42DF066086AE998DC530B594EF4EED /* FIRAggregateQuerySnapshot.h */, + 2C219278E4D46CD2C4A339E624FA66CC /* FIRAggregateSource.h */, + CEFD74E4AFEE30925EFB381C7D6BECC8 /* FIRCollectionReference.h */, + CFA9D653E40E75F81500BCB0FEA6B09A /* FIRDocumentChange.h */, + EC7F82F9065E1F398199DE5E6C0A3DC5 /* FIRDocumentReference.h */, + 047E39653777BAD6280C4E477449330C /* FIRDocumentSnapshot.h */, + 9ADBF1E55590B08248A4D6A996A28F73 /* FirebaseFirestore.h */, + C14E8722ED15F1717232A8D4D3BE2822 /* Firestore+AsyncAwait.swift */, + CD6EE6CCE063ED80EDE7216DDE6FA583 /* FirestoreQuery.swift */, + 5E54A5A1E7A10EC95DD6D594A83347FB /* FirestoreQueryObservable.swift */, + 8E18934560E0C55A173B24FFA8085415 /* FIRFieldPath.h */, + DA847C3304AD6B49D73F09EE1303CD84 /* FIRFieldValue.h */, + 66D1F8A00704CC37CD9592FB56C309FA /* FIRFilter.h */, + 2E93BA82196D234E13353D0C4D3D818A /* FIRFirestore.h */, + EC1D7EC2838F8A8313816383577B6B47 /* FIRFirestoreErrors.h */, + 0E7DC2695C770255A666E9C087CF20E0 /* FIRFirestoreSettings.h */, + 3944A4518492637724B53BDE7BA70314 /* FIRFirestoreSource.h */, + CFDF75A0E52F66250F98E87462053EF5 /* FIRGeoPoint.h */, + 007694D0CFDE1D01C725290F18E3E409 /* FIRListenerRegistration.h */, + 60B28B7C2A922FAC52CB6DF71CC5A87C /* FIRLoadBundleTask.h */, + 8A99D04E8C9483CAD6E58110933D5AAD /* FIRLocalCacheSettings.h */, + 782A3461C9C2AB4367BA6D02A8F2407D /* FIRPersistentCacheIndexManager.h */, + 6AC1569BC8714AED8187CD9410112DA3 /* FIRQuery.h */, + 2741A6698E076D08E0AD89EA55CB42D0 /* FIRQuerySnapshot.h */, + AFC0C60DC5CC38FA0E83B8C7040351E1 /* FIRSnapshotListenOptions.h */, + 8FE67F2813C26514193D3B2EFF99223C /* FIRSnapshotMetadata.h */, + 06F1369331930A2E229506708BFF751B /* FIRTimestamp.h */, + BFC0EC1F8A379CEB24BD6717D59D727E /* FIRTransaction.h */, + 94CCCC039FA185897E26D32CE67E081A /* FIRTransactionOptions.h */, + 41DF4785F2424E1202C50256C9EA43B9 /* FIRWriteBatch.h */, + 4CBBF27E44E1C5821D6584C8F1EE2D52 /* GeoPoint+Codable.swift */, + 21E3AC0F0811A594B317809B27587C22 /* QueryPredicate.swift */, + C9817CF458CFF968B6FBCB5F8064B01F /* ServerTimestamp.swift */, + 3C88803F3C5C7257B5A224A77C3F78EA /* SwiftHeaderWorkaround.swift */, + 086A5A66D13D5AE795682BC53BAF5023 /* Timestamp+Codable.swift */, + 9657D819446393B86D812785BA5BBBA3 /* TimestampDecodingStrategy.swift */, + FAB9B18FEBF2295FEB35E707B645AD28 /* TimestampEncodingStrategy.swift */, + 942F71822671445FA2D416200748FA70 /* Transaction+WriteEncodable.swift */, + 2F366FBEB70B8638D4BCEAC6B65715B4 /* WriteBatch+WriteEncodable.swift */, + 39127A528AAAE19EA57AD1AC337DDF19 /* Resources */, + E0AEA590E1114F55BB9E00A1CB09287E /* Support Files */, + ); + path = FirebaseFirestore; + sourceTree = ""; + }; + C66EB415DFD979E2205087FC2E2B22CC /* abseil */ = { + isa = PBXGroup; + children = ( + FF9FC849AF49DB70C039F02600BB100C /* algorithm */, + 51DA2361675EC66DA2637AED7DE50179 /* base */, + 532D948A3511887EC17348778CE94B51 /* cleanup */, + B4A58BA87B9422EBD7059C1A25EBA537 /* container */, + E24A8931C14279041BD147A53BCAE78A /* crc */, + 3DF7CF21AF2F10ACCFCCBCFACE654AD1 /* debugging */, + C145D5A5A24C2DC37A386B48F3785A6F /* flags */, + 36C4101ED9CDB4801D63DEBFAC76509D /* functional */, + 5C59E4DE063347FC318BFF46A06E2FE5 /* hash */, + D3C56F4CD095C5930AA4E8CE9F813A9A /* memory */, + A87B11E0F466DCFFD9D45F15A166390E /* meta */, + 7ADB2CD7A2607C676E5674851E6E075E /* numeric */, + 10B931C255FE26960373A2C6FE1F8FD4 /* profiling */, + F2FA847037494DEFBE905C785265C043 /* random */, + FFA57B16AA0BCF30A9439AF95D5FAA46 /* status */, + FCB542D09F42A93AA338D5035592CB98 /* strings */, + 7C57D762FF567871CF95AB56D5F352E8 /* Support Files */, + 90E34FE5BF6B385F8085DF1AC538275E /* synchronization */, + CCE9B912D196E697C343BEDA1B2B5CB7 /* time */, + 1ECEC3FBC906AFE5AA338BCB5B3A8863 /* types */, + D85DECBE4932DF5D43EAFACFFAE38B22 /* utility */, + ); + path = abseil; + sourceTree = ""; + }; + C6722423277E5017F763A1CACA3E201C /* Resources */ = { + isa = PBXGroup; + children = ( + D4D368D7AA6B332EF836DB7AE71E7209 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + C91635CDEB89DB5CEFF3F00D69900C24 /* cordz_handle */ = { + isa = PBXGroup; + children = ( + DDF4FDE8AAE7B59BC6139AD714FDCE75 /* cordz_handle.cc */, + B82CB9029CC7DCC729DA6BEAAE78E851 /* cordz_handle.h */, + ); + name = cordz_handle; + sourceTree = ""; + }; + CA3F8C3A56368DF0B24E5E30774044B3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 98E3B599247553319655F15453648A12 /* RecaptchaInterop.modulemap */, + 80D37BDCCE949772E34866CEB8681081 /* RecaptchaInterop-dummy.m */, + 48076FF8289782301B2AAA7BD8C369D5 /* RecaptchaInterop-Info.plist */, + B6A863BBB4F73F351D8497E64BDF6D7E /* RecaptchaInterop-prefix.pch */, + A454F31E752B56E509B416431703C838 /* RecaptchaInterop-umbrella.h */, + FDF59A112E9673E986B49ED58979DBB0 /* RecaptchaInterop.debug.xcconfig */, + EE067C452AFD8AF29794BBB5E46E466C /* RecaptchaInterop.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RecaptchaInterop"; + sourceTree = ""; + }; + CCE9B912D196E697C343BEDA1B2B5CB7 /* time */ = { + isa = PBXGroup; + children = ( + B29861C9C44575332CEDFB4EC16980DE /* internal */, + 57DF0468812D12D5D5B801709ADE8331 /* time */, + ); + name = time; + sourceTree = ""; + }; + CE9366298C53466A403DCF86B4D1B3B5 /* algorithm */ = { + isa = PBXGroup; + children = ( + 7CCE7EBC8754710CC75CBB7672B4C99F /* algorithm.h */, + ); + name = algorithm; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + 48A7B7CE1BC11DFAA128559A9ADA8564 /* Frameworks */, + 137EFEDD3863691F794240F2BBA6D5ED /* Pods */, + BE0BD8BBDB10A328BD73A289828D45AD /* Products */, + 0120825BE045D4E212B55474246BD05F /* Targets Support Files */, + ); + sourceTree = ""; + }; + CF17F0EE69756EEA961632B43E0F298F /* synchronization */ = { + isa = PBXGroup; + children = ( + 7076DB19337B1A3AE31FDEE35F57790A /* barrier.cc */, + 6456ED705962FD068F963C9F8FFB7B62 /* barrier.h */, + 9560DD6BA0D6BA8B71094C9B54AC9656 /* blocking_counter.cc */, + E145BE885604F654718CEE039F41F8B1 /* blocking_counter.h */, + 3857955F9134BC2D339FBB5F039E8C8A /* create_thread_identity.cc */, + A873EF52B9132D479D7AB8748F13A855 /* create_thread_identity.h */, + 792036288DB39F80E461A474D78BA116 /* futex.h */, + 2E0EE347DC630CAF1EDF839508945ABD /* futex_waiter.cc */, + A789329F38CB15D560580E9B75B4DEDC /* futex_waiter.h */, + 966263B57E2E96B1E1752129043B5DA7 /* mutex.cc */, + 54CA7C7E4B3D7D5FBC0C839823DDDD1A /* mutex.h */, + E8FF025D3EF976F365B410F1B49AEFED /* notification.cc */, + B04F90894C8A4799A3264F36BFFE8E0E /* notification.h */, + E75CB07670E41C6F6B48B3B288ECCD85 /* per_thread_sem.cc */, + 38105B2FE1979D77EC2CE121DAB6D7BF /* per_thread_sem.h */, + FCBA1476E399E1A433FDBBE4CB5B41D6 /* pthread_waiter.cc */, + 10134D4F6AC4272FA5FE052645E14679 /* pthread_waiter.h */, + 1FA3B175AA29D012C76A20A49DB6D38F /* sem_waiter.cc */, + 607F4F2D4AA478AD49A7FC6E0188C944 /* sem_waiter.h */, + C1A139CABF1345C7AB47D0EDF513C373 /* stdcpp_waiter.cc */, + A760168AA3B373FA217F99A9A850A345 /* stdcpp_waiter.h */, + 08871EFA2D40B413423BC40507011315 /* waiter.h */, + DEDE465CCD5939B09CB95A3DDC3A91CD /* waiter_base.cc */, + 0D2E8ECF7FFEE574225C040DCE0A5674 /* waiter_base.h */, + 864558CB1657C4763EEE912072E55505 /* win32_waiter.cc */, + DAA1A0C6D7A62A19568ACD600EAE497D /* win32_waiter.h */, + ); + name = synchronization; + sourceTree = ""; + }; + CF8339D9ACCE2255F0BFFC13906DDD63 /* int128 */ = { + isa = PBXGroup; + children = ( + 5AD1FCB773A846665CA5A8C9E4F3168B /* int128.cc */, + 1F0AFEDDE1DD5552D02B875A773C0DB6 /* int128.h */, + 6696A6292A6E9FF46FF0AF03EDBEFDDF /* int128_have_intrinsic.inc */, + F236DB5BFC9C240E86EBDDA1063EF77C /* int128_no_intrinsic.inc */, + ); + name = int128; + sourceTree = ""; + }; + CFD90B8640C51F1B1662A3227358F6D0 /* fixed_array */ = { + isa = PBXGroup; + children = ( + 2662A3F533F68D3EE2DD0B2E6C300235 /* fixed_array.h */, + ); + name = fixed_array; + sourceTree = ""; + }; + D0EF196EBB10ABE7414D62E30F930AAF /* container_memory */ = { + isa = PBXGroup; + children = ( + DA75A507E719903D2064EB697CF586B6 /* container_memory.h */, + ); + name = container_memory; + sourceTree = ""; + }; + D0F58CADACF9C00C3E202C35EED75756 /* RecaptchaInterop */ = { + isa = PBXGroup; + children = ( + 7CD638465FF48BDC7189CABD70D36728 /* placeholder.m */, + C4008C420A6A9E897FDCD02911BCB73F /* RCAActionProtocol.h */, + 72F871BC4F63F483917B9298E5CF36A0 /* RCARecaptchaClientProtocol.h */, + 885592FD39D2793476DBA3DD583254BB /* RCARecaptchaProtocol.h */, + 23D876A34BB0DFD137C31D265904E278 /* RecaptchaInterop.h */, + CA3F8C3A56368DF0B24E5E30774044B3 /* Support Files */, + ); + path = RecaptchaInterop; + sourceTree = ""; + }; + D11A2CE37F9134A1E6334FABAB26C83D /* Privacy */ = { + isa = PBXGroup; + children = ( + A4321B68F6985EBB9F4CED1894864203 /* Resources */, + ); + name = Privacy; + sourceTree = ""; + }; + D23B0F6655842F5968FF01AB9E1FBF01 /* NSData+zlib */ = { + isa = PBXGroup; + children = ( + B0503EDDAE5DABD96342AA64D67700F9 /* GULNSData+zlib.h */, + D99FDE256DA14E2B8415E8A9BBD7EE83 /* GULNSData+zlib.m */, + ); + name = "NSData+zlib"; + sourceTree = ""; + }; + D3C56F4CD095C5930AA4E8CE9F813A9A /* memory */ = { + isa = PBXGroup; + children = ( + EB448BB38531B9B04D9FC87C511E9C97 /* memory */, + ); + name = memory; + sourceTree = ""; + }; + D43B0A75DB5155ADFE4AB0C65F896855 /* GoogleDataTransport */ = { + isa = PBXGroup; + children = ( + EB5141A5BA5B413AF3B81E063AAD4EA4 /* cct.nanopb.c */, + 82EC4E98AB3C0B344C45B4340160E1F3 /* cct.nanopb.h */, + C523A39CE073786B38E8804E5A5E0AC3 /* client_metrics.nanopb.c */, + F6653EBAC45BB5F36EE1F6B7F344026A /* client_metrics.nanopb.h */, + 4392D20B3776720206267B344D4CB69C /* compliance.nanopb.c */, + 96E60A09C9E427D388D2CED1EF5ECAAE /* compliance.nanopb.h */, + 08643D34DA6B1A86CAE146CC3D02F275 /* external_prequest_context.nanopb.c */, + D89C0B0460167AEE61BE4B7BB2C077E2 /* external_prequest_context.nanopb.h */, + 040F15ADA2E252656E99022DEAAD73A4 /* external_privacy_context.nanopb.c */, + 5CF00A4188DE53577A61CC938A32EB0D /* external_privacy_context.nanopb.h */, + 6F4419CFB292FCDCCD1649B53F3323FF /* GDTCCTCompressionHelper.h */, + 7765F2C2246806145F06B41EFEA614DE /* GDTCCTCompressionHelper.m */, + D5CEC81FF1AEE3875E6313FE41FC2CA2 /* GDTCCTNanopbHelpers.h */, + 8CE1C1460FDDEC9C3CEEF55F003DD83F /* GDTCCTNanopbHelpers.m */, + 01538BADFD65BCCE219E5FDFCC037F73 /* GDTCCTUploader.h */, + 326C80CE8EDA69946DC53BD62E9F9C7D /* GDTCCTUploader.m */, + C52A14E3421C29A12DC02885AF56F0AB /* GDTCCTUploadOperation.h */, + 4F4EB2233817F2EE47938DA25009F16F /* GDTCCTUploadOperation.m */, + F19F771DA3CF7E0A9081F4EE5DF7970D /* GDTCORAssert.h */, + 6E93DCCEF92A0D6B771519E37D6A620E /* GDTCORAssert.m */, + B02E171EB1A7BBB98315BC770AC7BB40 /* GDTCORClock.h */, + 0617EA5C43725E8D28A19CBA7C318E9A /* GDTCORClock.m */, + F2542F3AD60B8104473A82632AD49B09 /* GDTCORConsoleLogger.h */, + 8C5FD094A098AEF3C55AD3812DA0DC97 /* GDTCORConsoleLogger.m */, + 654D29EB08AC980185607031023D13F7 /* GDTCORDirectorySizeTracker.h */, + B9F0250DF0B976D3A4D9302CCCC0E2B5 /* GDTCORDirectorySizeTracker.m */, + 83F3F19422D2672A4101A077675510D0 /* GDTCOREndpoints.h */, + B64790AC7A38130D86C441B2BACE6D89 /* GDTCOREndpoints.m */, + E8571976F0B42C13A776925E9FCBBEE0 /* GDTCOREndpoints_Private.h */, + 6566B5215F119EDE945A46D7ED9E35EC /* GDTCOREvent.h */, + 9DEECE2DC078FC22D7E4F331669AD113 /* GDTCOREvent.m */, + 2DEDC591E662F0258EA9B87C6A2AB437 /* GDTCOREvent+GDTCCTSupport.h */, + 6AFAE1E6E630E8E92673CAE44BC6990B /* GDTCOREvent+GDTCCTSupport.m */, + E2F4CC7C485CDF30AB57354F86FE184B /* GDTCOREvent+GDTMetricsSupport.h */, + 88B4712AA4522882B52816EAA0A4871C /* GDTCOREvent+GDTMetricsSupport.m */, + 6C4586D6A65433398DB518D148947882 /* GDTCOREvent_Private.h */, + 667611FB78083796E257A5DBC49F2EFE /* GDTCOREventDataObject.h */, + 1237E6591F27F309D3FDF3F8E51E228F /* GDTCOREventDropReason.h */, + A5A6F3D8AA35454B9978BD4ADB6E914E /* GDTCOREventTransformer.h */, + ED654A46285F2AA50F09FC1E3F227324 /* GDTCORFlatFileStorage.h */, + B7D7025C2422CEBC35920A007B9A465F /* GDTCORFlatFileStorage.m */, + 765763DA9D33D7329E65434C13A1B500 /* GDTCORFlatFileStorage+Promises.h */, + EA0945AF7182FB4C75CE7D3EF072067E /* GDTCORFlatFileStorage+Promises.m */, + FAF905A962D4E3CE761C24B135F8F834 /* GDTCORLifecycle.h */, + 79AC023FCFF5CB24D75B68DE48CFACB8 /* GDTCORLifecycle.m */, + 155245A85B51AFCE57C67BF83814E82B /* GDTCORLogSourceMetrics.h */, + 4B7F50F1C6CBDCDD125B734C4CC46426 /* GDTCORLogSourceMetrics.m */, + 672DA3F925BB6493A7E413A04072EB11 /* GDTCORMetrics.h */, + A8FB2F653C46994AAA634997AD0E14BF /* GDTCORMetrics.m */, + E761109C3D2A022C2599FBACC3063B2B /* GDTCORMetrics+GDTCCTSupport.h */, + 253703E063B31569D55BA645D0422450 /* GDTCORMetrics+GDTCCTSupport.m */, + 241691EDF60D9751A366790636BAD2EF /* GDTCORMetricsController.h */, + 8003A9558FEE1049C1A648174999FCF3 /* GDTCORMetricsController.m */, + 73551ED7EBFD2A0FB8A1C33AAFE23EB9 /* GDTCORMetricsControllerProtocol.h */, + 1AE03E8EA204BE367F2011C36E20DD94 /* GDTCORMetricsMetadata.h */, + 232C5E1CF71E50596D42DD1063B283D9 /* GDTCORMetricsMetadata.m */, + 0C10F4CDDB413D39ADF8735627DBA040 /* GDTCORPlatform.h */, + 18F746EDE905BBB20455DAFB7273D4E0 /* GDTCORPlatform.m */, + 6752F32F81C74A88BC39992F7B46F4CA /* GDTCORProductData.h */, + 050CD972311952918418441366D615E1 /* GDTCORProductData.m */, + 26DEC2B02BC3762D865EAB809C66DFF3 /* GDTCORReachability.h */, + 8837FDE90B300A36CC4248A780B349AD /* GDTCORReachability.m */, + 7D639B3AA4EEBB9E1A7B43F6A1AF9B28 /* GDTCORReachability_Private.h */, + AD3E3312B2C72FE2F3DFAB4EFA94BA22 /* GDTCORRegistrar.h */, + ABEE231E0FA1293782F34A562383635A /* GDTCORRegistrar.m */, + 64BFB148EA77696C6DC32FEDB5F46BD9 /* GDTCORRegistrar_Private.h */, + 72A08D98CD594BA43C364474ED15183D /* GDTCORStorageEventSelector.h */, + 9A0AAFD26089A60B3C7D47D6148FFAC3 /* GDTCORStorageEventSelector.m */, + 2D4708CEE78D92EC2FDFCF78B704F2C6 /* GDTCORStorageMetadata.h */, + 3C431D839AD7742298DD978313465FD0 /* GDTCORStorageMetadata.m */, + 6FA7110DF3EF26FBDEBD2B42AB4208E3 /* GDTCORStorageProtocol.h */, + 6B6E9960A6E8F090F45D22C5FC0ECCCE /* GDTCORStorageSizeBytes.h */, + 15F67AF66A33960CC08FBA35FC75CF6D /* GDTCORTargets.h */, + 191642D4B6183DE551CEA161CD1457CB /* GDTCORTransformer.h */, + F97A374DA166FF3040DA26119A3091C9 /* GDTCORTransformer.m */, + 2F9B8186179A9E3C679C9F40DA5E3C9D /* GDTCORTransformer_Private.h */, + FF508A3C1C4EF9F99392BF238ABB7F7E /* GDTCORTransport.h */, + AEC20418D629766AF0F83531C9B7FC95 /* GDTCORTransport.m */, + 8E576B97FF6AD14505F60A6614778BCA /* GDTCORTransport_Private.h */, + 0A3751278E236B50A94718C8C9E6A2C6 /* GDTCORUploadBatch.h */, + EE50117705ACA9EBE580D1ED171A91F9 /* GDTCORUploadBatch.m */, + 30CA87FC69D4CB26E9CAC0E31240A59C /* GDTCORUploadCoordinator.h */, + C4C2AA941CE78C012AAD80D466313AF2 /* GDTCORUploadCoordinator.m */, + 952D4C0DDCA3A2DCB911AD81FE67A7E2 /* GDTCORUploader.h */, + 12CEBB24C5195A4EFE1CADF565A850D2 /* GoogleDataTransport.h */, + DB80E55E76E23DE168327201FB0DC1D8 /* Resources */, + 72A5B03CFD3A186E3B1EF9DCBD144BAF /* Support Files */, + ); + path = GoogleDataTransport; + sourceTree = ""; + }; + D5D3222EB33D5D9A9DE507672D83F757 /* Network */ = { + isa = PBXGroup; + children = ( + 8D904F416AD9D08541F8709C4B2547E4 /* GULMutableDictionary.h */, + C50606E97EA31EFC322107651E9E70ED /* GULMutableDictionary.m */, + 185715842EA2EBE2FD01119CD782F3E4 /* GULNetwork.h */, + 682AD09E9C7927B96FAD6BB09B0DD984 /* GULNetwork.m */, + F2F6A21CE60C643FCD83A1EFF03F48A5 /* GULNetworkConstants.h */, + 00BFFBC359DB1ECB1230197521CF30E1 /* GULNetworkConstants.m */, + BA54045BB71BE44078FE3042DD53E5E9 /* GULNetworkInternal.h */, + 0462BAED6CD71EF7BC99875A9BEA0B76 /* GULNetworkLoggerProtocol.h */, + C4D49845E9DCBEF489509805BB7022EA /* GULNetworkMessageCode.h */, + D742D07D66E829794BC2F23AFBA0F738 /* GULNetworkURLSession.h */, + BA87CDE9EFEC04208A74D670BE4CF072 /* GULNetworkURLSession.m */, + ); + name = Network; + sourceTree = ""; + }; + D62A814DC065AE123FC1B68929249E6B /* bad_any_cast_impl */ = { + isa = PBXGroup; + children = ( + F3F2604761CBD21284B33A1C25941E42 /* bad_any_cast.cc */, + ); + name = bad_any_cast_impl; + sourceTree = ""; + }; + D67EA3CDB5F7446C00A59EAAB8AF5CAE /* Resources */ = { + isa = PBXGroup; + children = ( + 8010DE4D6DF504BD3D439A1BCA8B75EB /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + D8010EA137B9E87F6AD990ED5BE884B7 /* has_ostream_operator */ = { + isa = PBXGroup; + children = ( + A918DB6FDF3B9A19BFF707A5C3173231 /* has_ostream_operator.h */, + ); + name = has_ostream_operator; + sourceTree = ""; + }; + D8197D63497F86B3885ED92B82431A48 /* Resources */ = { + isa = PBXGroup; + children = ( + 9AAE8310536E631856139637EBCA5DAE /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + D85DECBE4932DF5D43EAFACFFAE38B22 /* utility */ = { + isa = PBXGroup; + children = ( + 6CAB89C339FF68991C3380A6626D708B /* utility */, + ); + name = utility; + sourceTree = ""; + }; + D96F4FEBC582D27B3BDD4950AB5B5630 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0C8049BBEFC9A8504DDF1314F93E113B /* FacebookCore.modulemap */, + 5ED75EC925A5B382E24CB10039B02F6A /* FacebookCore-dummy.m */, + B0FA01BECDFCA00BEBA30538A6626A0F /* FacebookCore-Info.plist */, + E9EFED7E2812BC6B899260FEDE3252F7 /* FacebookCore-prefix.pch */, + 5A51A787A976AA6CE1B3CBDA2A509E2A /* FacebookCore-umbrella.h */, + 449BCEFEBBB55A94C42C67FBDD6A0162 /* FacebookCore.debug.xcconfig */, + C336132A013B73D86C476752579EC1AB /* FacebookCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FacebookCore"; + sourceTree = ""; + }; + D99D429FAC9EAFC39DCE922174D56A41 /* Resources */ = { + isa = PBXGroup; + children = ( + 2DD30A09D30D3F6CA3651985C55F02FD /* SVProgressHUD.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + DA75B7001DE037F31DFDF967B06222C0 /* crc_internal */ = { + isa = PBXGroup; + children = ( + 51740CE8DB059C14863C90CD6C5FBCFA /* crc.cc */, + 5444954D98BECFA8C37024AE6E44CDF9 /* crc.h */, + 8C10B6FA0C5FB8EA272D258340A74F23 /* crc32_x86_arm_combined_simd.h */, + CD363402A52BFDB81950FB8A9AD31317 /* crc_internal.h */, + C84505D42524DDBE316D6BC328F474E8 /* crc_x86_arm_combined.cc */, ); name = crc_internal; sourceTree = ""; }; - FF4FA62A3A6A21E86BC361769958FD10 /* randen_engine */ = { + DAEA04C5CF7EF8203CF1FF42040BBB0E /* Support Files */ = { isa = PBXGroup; children = ( - 4ACAE8B5B22B0AB176B0E34438F40DC7 /* randen_engine.h */, + C18917035DC292F34AA426F20238E700 /* FirebaseAppCheckInterop.modulemap */, + 567D9EECEF72D3388131CA1F59326D5C /* FirebaseAppCheckInterop-dummy.m */, + 835BD578F754D64C99B051D72DAC4811 /* FirebaseAppCheckInterop-Info.plist */, + D6E367F793B9F6CBFE4810355B8D8562 /* FirebaseAppCheckInterop-prefix.pch */, + 0320469249B1965E9E9F66AA4C004273 /* FirebaseAppCheckInterop-umbrella.h */, + A83C27938275852970800FB39D32E6A5 /* FirebaseAppCheckInterop.debug.xcconfig */, + D6F26AC47D62D6CEB0618B625C880B6C /* FirebaseAppCheckInterop.release.xcconfig */, ); - name = randen_engine; + name = "Support Files"; + path = "../Target Support Files/FirebaseAppCheckInterop"; sourceTree = ""; }; - FFA1EF72BE94A4ABBE49CEFE9FD18E78 /* commandlineflag */ = { + DB80E55E76E23DE168327201FB0DC1D8 /* Resources */ = { isa = PBXGroup; children = ( - E105ECBB374F7433F30942B83CD4187E /* commandlineflag.cc */, - 0A313E554C8B7485851EB29B888EB20B /* commandlineflag.h */, + 3DC4A878ACF4B44D21F27BA8C538CED6 /* PrivacyInfo.xcprivacy */, ); - name = commandlineflag; + name = Resources; sourceTree = ""; }; - FFA54F3908F7A7AE837B34B0EF8F8978 /* cycleclock_internal */ = { + DC2C11E83F9CEBF24C98D22B0FBF2A39 /* seed_gen_exception */ = { isa = PBXGroup; children = ( - 2A4A0167FF5678A293E93A01658A28B7 /* cycleclock_config.h */, - E2B790F159512E0CEDF88595812FAAC3 /* unscaledcycleclock_config.h */, + A8DC5E145459B55AA59B1554B6420E6F /* seed_gen_exception.cc */, + 102ECAEEBE642B8AC95EAF77B423593C /* seed_gen_exception.h */, ); - name = cycleclock_internal; + name = seed_gen_exception; + sourceTree = ""; + }; + DCE7AF17CC66563BBBB73EDC30F54642 /* core_headers */ = { + isa = PBXGroup; + children = ( + 103A16559839A4675EDCCF7E758E83F7 /* attributes.h */, + B4433F0BED3DD4926BE32C7F59CCCF02 /* const_init.h */, + 5869F39D7933B6A1BF1929154CC9053A /* macros.h */, + D166AABC83636194478A5C972087FABC /* optimization.h */, + 0BCBCEC5C35BAFD39E4B214DEE6AA053 /* port.h */, + 4B62D4057E5597CC6168D2559253F0E2 /* thread_annotations.h */, + ); + name = core_headers; + sourceTree = ""; + }; + DF7F21E994E70799B8275EA7994372D3 /* uniform_helper */ = { + isa = PBXGroup; + children = ( + F7C0608D8396B4A147998B629C97B132 /* uniform_helper.h */, + ); + name = uniform_helper; + sourceTree = ""; + }; + E0AEA590E1114F55BB9E00A1CB09287E /* Support Files */ = { + isa = PBXGroup; + children = ( + B26930BE4B9C2AAC061C31BB634A6CF7 /* FirebaseFirestore.modulemap */, + 4111E1E2FBCD43CBBA2ACC5B4953E68F /* FirebaseFirestore-dummy.m */, + 818367A77368FB69191AF20B38928406 /* FirebaseFirestore-Info.plist */, + FB5997F721AA4E1428CF8B537EF7E9DE /* FirebaseFirestore-umbrella.h */, + F4B84CB652C7D36C4461E22D683DD42C /* FirebaseFirestore.debug.xcconfig */, + 85797C0AFC0A2ABABBCC164F70F4266A /* FirebaseFirestore.release.xcconfig */, + 17AE43853A64A4F6DBD620C86B683D95 /* ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseFirestore"; + sourceTree = ""; + }; + E1760EC5688B058A273E76ABC56FBEBE /* AppDelegateSwizzler */ = { + isa = PBXGroup; + children = ( + 05CBAADF08EE8BD24859209020CD240B /* GULAppDelegateSwizzler.h */, + 3E080AA12FA691892A60477FDD9C4383 /* GULAppDelegateSwizzler.m */, + D8B35C2D34BB21C4C9549A686D09EE55 /* GULAppDelegateSwizzler_Private.h */, + FB08401D7390C5802CFC3A8B435455C7 /* GULApplication.h */, + 737EF08A43E8AC1FFC9A7A089F6916B8 /* GULLoggerCodes.h */, + E9394562D6EFF6FF36DCDB20C5A0D387 /* GULSceneDelegateSwizzler.h */, + A1BB9164ACEC091CEBE67F427E5F9925 /* GULSceneDelegateSwizzler.m */, + 6C042EAF45AE7F2EAE1047893F5C15A9 /* GULSceneDelegateSwizzler_Private.h */, + ); + name = AppDelegateSwizzler; + sourceTree = ""; + }; + E1D4C5121A82C80937BA0D7E3DE3A9D6 /* string_view */ = { + isa = PBXGroup; + children = ( + CCE170CDE3A3C8890B9E2F69231E9F38 /* string_view.cc */, + 0CAE1B99C47B446E437B4ECE4BAE9322 /* string_view.h */, + ); + name = string_view; + sourceTree = ""; + }; + E24510D215C7F9C4B8E501FA98087275 /* LLCycleScrollView */ = { + isa = PBXGroup; + children = ( + 4AA52B38BB105E4A9BB0CFFAC44106EF /* LLCycleScrollView.swift */, + D91DA0EBDA4CE65333DE7DA61AF60D03 /* LLCycleScrollViewCell.swift */, + 2A6C400984391DA1AB803D642BD6DB1C /* LLFilledPageControl.swift */, + 5693645DD78D589838510602CB836F79 /* LLImagePageControl.swift */, + E3BD578C690A07FC2E3A902E71C7D2CB /* LLPillPageControl.swift */, + EBDF577CAF9B7DCBD8C1A33ECC20207F /* LLSnakePageControl.swift */, + 43C18F4A6D1329EAB2C3B04AF433EDBD /* LLViewExtensions.swift */, + 7576FF2D26AA4C415CCD7CBDD519D121 /* Resources */, + E9E7CBFEE05BBF0D1541A7D17C1FBD6A /* Support Files */, + ); + path = LLCycleScrollView; + sourceTree = ""; + }; + E24A8931C14279041BD147A53BCAE78A /* crc */ = { + isa = PBXGroup; + children = ( + 42697A748A0768AAC15F660CBED3681F /* cpu_detect */, + 45F46669B007B5CDD2AEC8F5983B88F6 /* crc32c */, + 2F808DD68A316388B5252751AD079E75 /* crc_cord_state */, + DA75B7001DE037F31DFDF967B06222C0 /* crc_internal */, + F59FE0B21D681D696FA1709262EF3093 /* non_temporal_arm_intrinsics */, + 9EE8FEE243C4FA96C89DA1B8C2912F89 /* non_temporal_memcpy */, + ); + name = crc; + sourceTree = ""; + }; + E26F1B1DCDBAF50435D96B5E8B5FC247 /* Resources */ = { + isa = PBXGroup; + children = ( + 2E7D87FC1DE3231935641D09E9FE9BD6 /* roots.pem */, + ); + name = Resources; + sourceTree = ""; + }; + E27F351507493D7DF06CD7867E8AF1E4 /* BoringSSL-GRPC */ = { + isa = PBXGroup; + children = ( + 68A824320C289CABF413AA03B3F7C442 /* Implementation */, + 03D6267029E3F424115BC9F25D4612E5 /* Interface */, + 994E5F2A70C4F83D6F10067B7C0B4E1F /* Support Files */, + ); + path = "BoringSSL-GRPC"; + sourceTree = ""; + }; + E3AF1C5B7B042222789105822BF3A5C9 /* function_ref */ = { + isa = PBXGroup; + children = ( + 3A719634F8520A6CCCED470DC9E45B3D /* function_ref.h */, + 66337294DE335FBEAED1FE737C7BDFC3 /* function_ref.h */, + ); + name = function_ref; + sourceTree = ""; + }; + E442E28969303C274883929371921CA7 /* Interface */ = { + isa = PBXGroup; + children = ( + FF5997267129FF743354DF4DF01747F0 /* alloc.h */, + 8690F57734734F46755D0A3C8CFC277F /* atm.h */, + 263B8B7740B7E5849F3E89704F1F8657 /* atm.h */, + 5355BD7231CDC743BC861A50BF89F889 /* atm_gcc_atomic.h */, + 1B03BB8C2CAF5BA748E66A9D04F0454D /* atm_gcc_atomic.h */, + 56CFC9E674EC4E1507581F19EEE1AB97 /* atm_gcc_sync.h */, + E00C097ADC1C02EDA0C7838567776DD1 /* atm_gcc_sync.h */, + 7FD8184C72CB03F002425E23E210EF46 /* atm_windows.h */, + 0FC54031493F4049DE6E36710047E4A4 /* atm_windows.h */, + 96266F5B228DDC071537C6022BAF511D /* byte_buffer.h */, + E1A515BA93875A75C80E08805019F470 /* byte_buffer.h */, + 17B753FDB3145B344A3EC9768035ECF0 /* byte_buffer_reader.h */, + 61BC14572C5C7E2EBB3E546110AA634B /* byte_buffer_reader.h */, + FB49750C126A44CDBF1595A4033B3DD6 /* call.h */, + C66A222ADFF6B519402190790922C698 /* census.h */, + AAF6A40F1DDD9BBD45AF480AB91F235C /* channel_arg_names.h */, + 2BD0C93C6C1E85756E35232CE2947857 /* compression.h */, + 115650BD79E89BFDAF948BB5868D896E /* compression_types.h */, + 78236B8A90818A515AAC4176A8826D81 /* compression_types.h */, + 9426DDD895464BE8CAE1DA9C640CC9D0 /* connectivity_state.h */, + 2044367157951ED94395EAAB25976BE1 /* connectivity_state.h */, + F4E396CCF9035EFABC98088357DA9B0F /* cpu.h */, + 96D63DE9855032D6C2ADFB43B232F698 /* endpoint_config.h */, + D01F212465EFCEF1181AF9AEA299A46D /* event_engine.h */, + 5763458D9776D252E75CA6F203722D2F /* extensible.h */, + 9EF011C37D62CED60344F2B3C84A32A7 /* fork.h */, + BC9BBB997CEC532B5554ADB14196BB6D /* fork.h */, + 45C748D23C4AE21CA75CD64E57FF083F /* gpr_types.h */, + 030297E84877EC3BCB685E4625582A99 /* grpc.h */, + A5AA3481EDA79EF99FCA4B363206327F /* grpc_audit_logging.h */, + 78FC1307812E40B2E8BCF8A3C5593FFF /* grpc_crl_provider.h */, + 1890EE4078EE277CBD86A044226DD869 /* grpc_posix.h */, + 6EF4FDD97B11A51B6A346E62B3CADC40 /* grpc_security.h */, + 3A1B26FC8EE42B3A5B64EBE778403CC2 /* grpc_security_constants.h */, + 79AB2049999D318B728B69F5FF392894 /* grpc_types.h */, + FDF8BCE89F1059EF0BA4F800F10C4AB6 /* grpc_types.h */, + 54E2DC980E75F2923C1722FB78E1F33D /* json.h */, + 8D53971E59C9827B377E343B2D278FEA /* load_reporting.h */, + 74AC3ED6353536A5DF3D9ECEFEB723C2 /* log.h */, + ECA1EB7747C4A6A9565E59F2C72FFBC8 /* log.h */, + 631DA351AB80A15981E56CE059BA82F2 /* log_windows.h */, + F69094A131B58FC883475257ED46370E /* memory_allocator.h */, + 6E38A277A750CC51DD24C1845F10F063 /* memory_allocator_impl.h */, + 8620769AF43AA0431EF5825F8C342B9C /* memory_request.h */, + E90D9F53B1305DA51E4A2A6B8092362F /* port.h */, + 3904B0C96D501803FD008EFE03257767 /* port_platform.h */, + 0EAF10CDF3F1143EA6CC4CA03ABD6AC8 /* port_platform.h */, + A6D5DC7BC3E5D72E2F4CD63CF029D674 /* propagation_bits.h */, + 225FF9A3CF2E85308B488605BD96D4EC /* propagation_bits.h */, + 3424E46387395C7A941BB0751515D80E /* slice.h */, + BFD09AE34DEA633396CAF709518F0899 /* slice.h */, + C7811AAF98DC97B3D6544E943B0A71C4 /* slice.h */, + E1C7FCA59D7D3CCB0F4A9CAABE405DC5 /* slice_buffer.h */, + 5A714E396256E4F85E297C2AD2C3EC60 /* slice_buffer.h */, + 37D6BC2B8CD41F450E9064B5214A36BA /* slice_cast.h */, + 3E801959856AB6805D8D9056831C3231 /* slice_type.h */, + 205C6605654D3B7CD1E2336CAB4E0FA8 /* status.h */, + 796239BB5D4609175F1F252C8CFA26ED /* status.h */, + DA7F7D5DBB2ED192E20AC05F7477482A /* string_util.h */, + 1CDBD8917E2F8A1BD7EA98055520B21B /* sync.h */, + B197209FA52FC35E7F4CEA44CDE83ECA /* sync.h */, + 4AB319120E1714357859FD50AB4BD9A6 /* sync_abseil.h */, + 25A0CC7B0DA2FCAD4A30D40A1D253478 /* sync_abseil.h */, + C6DDA94EE7AE1D4D6055648D2B9AC0A9 /* sync_custom.h */, + 396A80262D736FCCD67791C9D4CBC245 /* sync_custom.h */, + 1FD47565DF241542F4C6E81F71E9053A /* sync_generic.h */, + B57E4DE8CF7F089C6C8EB7F1C3FC3D2E /* sync_generic.h */, + E6EBC98009ABE8EFBA5CC6AFCDE27266 /* sync_posix.h */, + 982E6AF47234B0BF367B8F531CA0974F /* sync_posix.h */, + 50232EB8A6D9F84D8FA37AD78F863823 /* sync_windows.h */, + 748C619D9C28CB377F056706DFACC8FF /* sync_windows.h */, + F15089016FCA88A885EFB7C04CD2BF2A /* thd_id.h */, + 0E9BDEF4930D2DD88F5310554C707810 /* time.h */, + 9B1CE08C16F75A73D2AAE9BB487B753C /* workaround_list.h */, + ); + name = Interface; + sourceTree = ""; + }; + E5149420BEE2AA663340EE6F712C1358 /* bind_front */ = { + isa = PBXGroup; + children = ( + 54C5CCCB26A45478A066DBACA3A5A4D9 /* bind_front.h */, + 037F9A302B800B48929412CDD34D5911 /* front_binder.h */, + ); + name = bind_front; + sourceTree = ""; + }; + E5A1548319EF3D938A74E501014BC4AF /* Support Files */ = { + isa = PBXGroup; + children = ( + 4E587C1DFAD28A30788CEE5D3165E6A9 /* SVProgressHUD.modulemap */, + B106E088D91D476BDDB2DDDB7C9F5DF3 /* SVProgressHUD-dummy.m */, + 6EAE3BED5B97C654489E3B2CD0007B47 /* SVProgressHUD-Info.plist */, + 6AA489AEC3507EDC60F00E9351397F79 /* SVProgressHUD-prefix.pch */, + 90AD08A495B88A28E047B00F5CCA9851 /* SVProgressHUD-umbrella.h */, + 89F86473868C797CABE592885918FEAB /* SVProgressHUD.debug.xcconfig */, + 02C8209D4562FBC365055D8F12D056FD /* SVProgressHUD.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SVProgressHUD"; + sourceTree = ""; + }; + E66AA396B628B5D179D7CC5B00434117 /* GoogleUtilities */ = { + isa = PBXGroup; + children = ( + E1760EC5688B058A273E76ABC56FBEBE /* AppDelegateSwizzler */, + 7D677FF5850DD4C6A980985DA6F23BEF /* Environment */, + 05C7B0612C43115BC5751764584AB8F0 /* Logger */, + 5C3E03F2A323DE18C2B7856983590CBA /* MethodSwizzler */, + D5D3222EB33D5D9A9DE507672D83F757 /* Network */, + D23B0F6655842F5968FF01AB9E1FBF01 /* NSData+zlib */, + D11A2CE37F9134A1E6334FABAB26C83D /* Privacy */, + BA89A405C7BC2D696007EFF3EC823A00 /* Reachability */, + F91828D4DFC8D33295535239B8C5C027 /* Support Files */, + BDE77D60CE7E9A79920DEBC18DF00984 /* UserDefaults */, + ); + path = GoogleUtilities; + sourceTree = ""; + }; + E6B827FAE010C8D1CD3128A69FE9AD6B /* seed_material */ = { + isa = PBXGroup; + children = ( + F4DA121338DD194441944C74D6366059 /* seed_material.cc */, + 90E1D7086C56D3FCA05640D2FEB36466 /* seed_material.h */, + ); + name = seed_material; + sourceTree = ""; + }; + E722451C7CB0BD6761297E1718A6A1E6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 87A6F86BCFE45C618585E8E4875FC824 /* FirebaseSessions.modulemap */, + DF49469190925620F5278BD5404BE1C2 /* FirebaseSessions-dummy.m */, + F267D1A15E49BCCF5BA3EA0DEC3A74F2 /* FirebaseSessions-Info.plist */, + B9EFE536D8AC0B6222AEC4F7D1DD5D18 /* FirebaseSessions-umbrella.h */, + 7A51C83E358F3C69E17CE2083CE108BB /* FirebaseSessions.debug.xcconfig */, + 0F12E27AB1A78246C44D05127349E572 /* FirebaseSessions.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseSessions"; + sourceTree = ""; + }; + E7436F257DDA152E09DD447051FB57CC /* FirebaseInstallations */ = { + isa = PBXGroup; + children = ( + 5FA55BE29677288223BA5CE8EAAC43AA /* FIRAppInternal.h */, + 55F47059D9C63BD280BB0A13BA13E7A8 /* FIRComponent.h */, + 4876A17D75CCCF9DAEB76E537AA92413 /* FIRComponentContainer.h */, + 9DC72B81433E2C2C408A8E6C1BCCD197 /* FIRComponentType.h */, + 8E4A83437FEF996687C6716494E89661 /* FIRCurrentDateProvider.h */, + 8FBAF38843BAF9F01FB37BB09857EF39 /* FIRCurrentDateProvider.m */, + 1B54A56E1A6F5307790E8D1349C98530 /* FIRDependency.h */, + 1D7B4C36A19D6997CA0B58D5BB2EFB85 /* FirebaseCoreInternal.h */, + CCCAE901A616A68B11CEC75AB0830C27 /* FirebaseInstallations.h */, + 1992FACDA91EB918F83842032D03A9DE /* FirebaseInstallationsInternal.h */, + E776AB437A9A2B02F56C9D839F23A798 /* FIRHeartbeatLogger.h */, + 000956196A82AA0369556ABF33024222 /* FIRInstallations.h */, + 97F81A41B5F1BF80E812C26C0EA663C0 /* FIRInstallations.m */, + 081E3D4DF4D923D6DFD96CD8F8CB1483 /* FIRInstallationsAPIService.h */, + FD2FD0100BABB0D446FAE6BE9FA3CF70 /* FIRInstallationsAPIService.m */, + FB0AED2477BDFD9949AF27C85DA0B05A /* FIRInstallationsAuthTokenResult.h */, + 6B9C826D3ACB0D6DE3BF2E352604B1F1 /* FIRInstallationsAuthTokenResult.m */, + 34C79A36F5B7EF2349AECAF9B6972F10 /* FIRInstallationsAuthTokenResultInternal.h */, + 5F0A163E604CE1F5817230C630F3C476 /* FIRInstallationsBackoffController.h */, + 4B8111CE81F817512080D61B72FEACC7 /* FIRInstallationsBackoffController.m */, + 92F8491CC060E772CFB396D7843B9C92 /* FIRInstallationsErrors.h */, + EC94E9DD52E46B5857BAF00438F47B8B /* FIRInstallationsErrorUtil.h */, + 6502A92FD63A4466D7A8460424CCFBA5 /* FIRInstallationsErrorUtil.m */, + 462253E31CCCD5A680503825B07A4A99 /* FIRInstallationsHTTPError.h */, + 57203342CB48650AB92B962F1626897E /* FIRInstallationsHTTPError.m */, + B05FA754E8AA3ECB85A06C8D81C34836 /* FIRInstallationsIDController.h */, + FAB9BCA87BB35C21F254C341C9E9B59C /* FIRInstallationsIDController.m */, + AD8866F827589E6FEC13BA2A29F82AF4 /* FIRInstallationsIIDStore.h */, + 340A4613186CB32F1A1E2E02C43E7F1F /* FIRInstallationsIIDStore.m */, + 4CDE00C1BAC83873179DFED479FC6090 /* FIRInstallationsIIDTokenStore.h */, + 5489B99BD81FC0861591486FF9F50927 /* FIRInstallationsIIDTokenStore.m */, + 13D8F2018CC1EDB205AFE2FA3CCF9691 /* FIRInstallationsItem.h */, + 05570F0E6B3C3BBB4BE19290F16841FE /* FIRInstallationsItem.m */, + AF588AEEF19DF64754F4B70B3086B6EC /* FIRInstallationsItem+RegisterInstallationAPI.h */, + 4EE098047451E178B2AB5C2720E7FF13 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + 4B1B32B050393368F02F7E8C65D2B91B /* FIRInstallationsLogger.h */, + 93056346FD69ECF0442471215972E0FF /* FIRInstallationsLogger.m */, + 73E3F219752B4EAB9B856E779F3D91D1 /* FIRInstallationsSingleOperationPromiseCache.h */, + 9B923324D409469125DF6DF94BC6A375 /* FIRInstallationsSingleOperationPromiseCache.m */, + 42B05BFDD9A09349D1E080C2BD36E01E /* FIRInstallationsStatus.h */, + C855CBEDD9DF6F6E3FC6D8B6A6D12943 /* FIRInstallationsStore.h */, + FB6342FCEE31C2EDDD133A22EFFB4E9A /* FIRInstallationsStore.m */, + EBBFBE030BB1A7A56F1958B853D498AB /* FIRInstallationsStoredAuthToken.h */, + C65F188DDAD6C1610265ED6A316E6B37 /* FIRInstallationsStoredAuthToken.m */, + C9AC03C662D30AA08401DB2790D789A1 /* FIRInstallationsStoredItem.h */, + E6E96DD0222657F272316124E2609B25 /* FIRInstallationsStoredItem.m */, + 0523A85023174A02094D17A29C3BCD44 /* FIRLibrary.h */, + 8BD2891EE54F5C3D774D2D1783A72519 /* FIRLogger.h */, + A17F147FE35A304B1A2B7DF9EA37E0D5 /* FIROptionsInternal.h */, + 3F1FA499A91EAF5BD795AB654767D25D /* Resources */, + 9ABD5C4602DF84A9934D7DF9D17E91AD /* Support Files */, + ); + path = FirebaseInstallations; + sourceTree = ""; + }; + E83C97019B94C37CFD701CC67937E475 /* internal */ = { + isa = PBXGroup; + children = ( + 54EB945162EB3B8BE44FB99615DCAF71 /* distribution_caller */, + C3D7168082D670970DD7E529EE0B6910 /* fast_uniform_bits */, + 98C5E806360A545C897AE19BFCA0749B /* fastmath */, + F4C152FBF68CCA25E911EDB4AD382E5B /* generate_real */, + 5797896ADFBF69E0CD2237D4083DCF73 /* iostream_state_saver */, + A278B6544D854EAE60D271A09BED2DE0 /* nonsecure_base */, + 51239B3BB39FDBE545CBE0ED16C11687 /* pcg_engine */, + 43FEFBCFA3D752FC909F1D1D2089EE50 /* platform */, + 3A23A74B36DA46DFD626958967876B82 /* pool_urbg */, + 9348A27E51FC175840E5A0785AFEEB5C /* randen */, + 2DCB37527099A23508C335124198418F /* randen_engine */, + 77CC2A0E4FAC9448A5779ECBE327B1DA /* randen_hwaes */, + 68F31D7C3237B4F5C3D1D63AB53B548E /* randen_hwaes_impl */, + 6267631358EB9DDE902EF9B734E57A9B /* randen_slow */, + 4FC4857390AFDB75A707AF27069A991F /* salted_seed_seq */, + E6B827FAE010C8D1CD3128A69FE9AD6B /* seed_material */, + AC7FD8CDD412D5AE9445437FAEA9B111 /* traits */, + DF7F21E994E70799B8275EA7994372D3 /* uniform_helper */, + A2C14E08898C491026BDBC93355EAE61 /* wide_multiply */, + ); + name = internal; + sourceTree = ""; + }; + E9E7CBFEE05BBF0D1541A7D17C1FBD6A /* Support Files */ = { + isa = PBXGroup; + children = ( + 86C45BEA5E899C5F15CA242A037D6C44 /* LLCycleScrollView.modulemap */, + 1861ED19FE028290B08076A7F8BF952A /* LLCycleScrollView-dummy.m */, + 2ABC480E29C3099D28952E7696ED0E25 /* LLCycleScrollView-Info.plist */, + 15B1A17325B3535A74A4B2426205B1A9 /* LLCycleScrollView-prefix.pch */, + 7D66BEEFED5A1A0132252D00F5C7173E /* LLCycleScrollView-umbrella.h */, + 17FF6350E76680902491EA7683A56E1E /* LLCycleScrollView.debug.xcconfig */, + 3F8EA34A163AD81A59A41958C171CA5A /* LLCycleScrollView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/LLCycleScrollView"; + sourceTree = ""; + }; + EB448BB38531B9B04D9FC87C511E9C97 /* memory */ = { + isa = PBXGroup; + children = ( + B976927A06D48291011D5EFEA8547D2C /* memory.h */, + ); + name = memory; + sourceTree = ""; + }; + EB65CAB13B9BBF223BAAA7FD4F8A6562 /* bad_optional_access */ = { + isa = PBXGroup; + children = ( + D147DD5228B6E22C7E5D4231D40FA36C /* bad_optional_access.cc */, + 802B11C10416A30440FDCE3DCF203296 /* bad_optional_access.h */, + ); + name = bad_optional_access; + sourceTree = ""; + }; + EDE3595166339017BD7DAFB793D6CEC2 /* flag_internal */ = { + isa = PBXGroup; + children = ( + 0E1611598938EB336369AA9EA8AB9C1F /* flag.cc */, + 7C20BF97AA928D8E09394423319FD7DA /* flag.h */, + 2620D4DE0C9CF49860162F5BE574AE77 /* sequence_lock.h */, + ); + name = flag_internal; + sourceTree = ""; + }; + F0CB0EB5993E466A6172F6083B0F49D7 /* Resources */ = { + isa = PBXGroup; + children = ( + EDFF18F88E3D1066F41640AE85B797A0 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + F24FC5FD72110A554A1214FCB696AA60 /* container */ = { + isa = PBXGroup; + children = ( + F623D9DBFFA03EE85488B8598822B2AA /* container.h */, + ); + name = container; + sourceTree = ""; + }; + F2FA847037494DEFBE905C785265C043 /* random */ = { + isa = PBXGroup; + children = ( + 591625D19DA916E93E5EBA983DB58E85 /* bit_gen_ref */, + 11F1E13DA79C8C2612809DFB5BE47699 /* distributions */, + E83C97019B94C37CFD701CC67937E475 /* internal */, + B8C01CA08E1F17E4B2DA29B422775B84 /* random */, + DC2C11E83F9CEBF24C98D22B0FBF2A39 /* seed_gen_exception */, + 621E2D18BEC15C8DF5478CD5F72A6545 /* seed_sequences */, + ); + name = random; + sourceTree = ""; + }; + F4C152FBF68CCA25E911EDB4AD382E5B /* generate_real */ = { + isa = PBXGroup; + children = ( + ACD1B12E4F900112097501174DD7DE46 /* generate_real.h */, + ); + name = generate_real; + sourceTree = ""; + }; + F59FE0B21D681D696FA1709262EF3093 /* non_temporal_arm_intrinsics */ = { + isa = PBXGroup; + children = ( + 1F3AAEF3028CD86197DD3FB4C41B2D43 /* non_temporal_arm_intrinsics.h */, + ); + name = non_temporal_arm_intrinsics; + sourceTree = ""; + }; + F5B056A3DB680E883D566469D36CA154 /* Support Files */ = { + isa = PBXGroup; + children = ( + 66AE8D2C115DF2AAE9DBDC7852852F8A /* FirebaseAuth.modulemap */, + F666E93383D700B2D8D1709FCEFEF0EE /* FirebaseAuth-dummy.m */, + 3BC064DC4BFC7D2F9CA501B4CA6C8879 /* FirebaseAuth-Info.plist */, + 8FF4411B861992AE5D6327D55FBAD3FE /* FirebaseAuth-umbrella.h */, + A2E428DCD6D80108985ED08D7FD5C04A /* FirebaseAuth.debug.xcconfig */, + E030B2E554D383A6EA8184768CF90DE0 /* FirebaseAuth.release.xcconfig */, + C370963C483381F4614BB22C2B44C602 /* ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseAuth"; + sourceTree = ""; + }; + F7539BFCBB7650FF92C07EBC7FC76E2B /* prefetch */ = { + isa = PBXGroup; + children = ( + 551E89DE5FB4ABAF45B2D3EE044F9E2C /* prefetch.h */, + ); + name = prefetch; + sourceTree = ""; + }; + F91828D4DFC8D33295535239B8C5C027 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1DD7435F93C31C210C33802638A1F276 /* GoogleUtilities.modulemap */, + CA15158CFB3085FC06BC980602167D5A /* GoogleUtilities-dummy.m */, + A4D39F8F0B34CFF2411B19FBEC7A5B53 /* GoogleUtilities-Info.plist */, + 555DDE7D65893B9E14D0C0CF4059A571 /* GoogleUtilities-umbrella.h */, + 532EBF1E89FD48FD89B1F40D80306B39 /* GoogleUtilities.debug.xcconfig */, + 920F1B3AC0BF95ADB4D3D59E8627D169 /* GoogleUtilities.release.xcconfig */, + 6E272C540EB8708CD03E6681EDAF366D /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; + sourceTree = ""; + }; + FCB542D09F42A93AA338D5035592CB98 /* strings */ = { + isa = PBXGroup; + children = ( + 2A66FD6CB9E31E73FF4F43689F908AC5 /* charset */, + FD0F82455E98C6D254756AACD0070AD3 /* cord */, + 62A1CF826E4418A92057083FF50D0212 /* cord_internal */, + 700434AB00810AC9595202BB3CF7F09C /* cordz_functions */, + C91635CDEB89DB5CEFF3F00D69900C24 /* cordz_handle */, + 6A6B479851E9AC251937FAE75504569E /* cordz_info */, + B3624BAF60296F064E2D4C1508010193 /* cordz_statistics */, + 90B9F57B5AB93EFFF966407D606A2EEC /* cordz_update_scope */, + 936C14F8E70C70D285F6D3F961F85B27 /* cordz_update_tracker */, + D8010EA137B9E87F6AD990ED5BE884B7 /* has_ostream_operator */, + 47F3D1616F9E8ADF46E218AACC375799 /* internal */, + C11FF3D9A12B998C23B9FFC480505BF4 /* str_format */, + 3230F747ED78A137AF731E18A408D81E /* str_format_internal */, + E1D4C5121A82C80937BA0D7E3DE3A9D6 /* string_view */, + FE0330185EA4F91DA2CF986A00684A57 /* strings */, + ); + name = strings; + sourceTree = ""; + }; + FD0F82455E98C6D254756AACD0070AD3 /* cord */ = { + isa = PBXGroup; + children = ( + FD4696076B9C2DCC13C3720B648BB86D /* cord.cc */, + 69423B8ECFF23B815658A5C0A7E97189 /* cord.h */, + 542E3DA2273C43DE803AB874A5B81F1B /* cord_analysis.cc */, + D0884C94FC7925BBEFD5FC12C73F2065 /* cord_analysis.h */, + C21F4FBCDD126D8DEE7C6C4F45E8ACB2 /* cord_buffer.cc */, + B75772990B00CF998ABC2895F6276E83 /* cord_buffer.h */, + ); + name = cord; + sourceTree = ""; + }; + FDF2EF26966F58B790C18A34D7C9F298 /* Resources */ = { + isa = PBXGroup; + children = ( + 46CAFF67493F14358E6CCA24A5D3FB16 /* TZImagePickerController.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + FE0330185EA4F91DA2CF986A00684A57 /* strings */ = { + isa = PBXGroup; + children = ( + A5339CEA129F29A5CBFC4F190C694FFB /* ascii.cc */, + 205E39A569C9F6C3DC1F357C3FC1919B /* ascii.h */, + 9B11BF453992572C8322A88D5E0E3CD5 /* charconv.cc */, + 9113579C24CB5BFE9F1450E092739F0B /* charconv.h */, + 54662C6612FA321A53EE49B4955C7240 /* charconv_bigint.cc */, + 11DD51C1560FFD7D31336C3DB255BBDD /* charconv_bigint.h */, + CCA16D8784C50DDA3A4A034712B79D59 /* charconv_parse.cc */, + 3FB0BD8DD0BBA4DA59E13633C81537BD /* charconv_parse.h */, + 3B07963187E849B3600BEF1128D2AC94 /* damerau_levenshtein_distance.cc */, + 5B714BECFBD25E26B2DC245F0084CC8C /* damerau_levenshtein_distance.h */, + 95E373769AB1209189B1852C5088BEA0 /* escaping.cc */, + DF5A5F0331AF0816E9F57AF43A2BD4A2 /* escaping.h */, + E12698E3E8179BC6C2F8A8EFA1881A91 /* has_absl_stringify.h */, + 518278901D33EBCACA9BD1AE461A8BDB /* has_absl_stringify.h */, + B0579682425E9E8135CE7A3796D2481C /* match.cc */, + D8561CF8D419E68D8EEBC3070CA73CE5 /* match.h */, + 512C05769C9F338D0905BBBCF23F25C0 /* memutil.cc */, + 46183FEA8FF83CD38CCACC4A09CB37C9 /* memutil.h */, + AB26A2DEEE369E8BF1423D099F5991AB /* numbers.cc */, + 83B517CC212E5024F664AC7CBA41E285 /* numbers.h */, + C1A4093FB160AAD1D9C28AC62D5124BF /* stl_type_traits.h */, + B162B7516086B48EC48F12D3A3A41FE5 /* str_cat.cc */, + A3EB94D32BDDECDBAD037608FC642CEF /* str_cat.h */, + 4F0E2FBD7854B6C6460B447EEB1895C3 /* str_join.h */, + A072111548346D33CA1DDBE86D04FEAC /* str_join_internal.h */, + B5257CFE0981FB5FCC38AA79E1E44005 /* str_replace.cc */, + CD6029EC93D205BA806D93319D600131 /* str_replace.h */, + 4A7E16B36B13378F14361142A950D83F /* str_split.cc */, + 7BA6D9C3CC07AD4A10559938D24BE07B /* str_split.h */, + 4685FB7AE275E625031BCEAAA75B91E3 /* str_split_internal.h */, + 23F0C96C918E5623CB766879A976C97E /* string_constant.h */, + E6BC43F547097C6D0D474F81E1CD4D72 /* stringify_sink.cc */, + 17DA4656ABD065B24B858811D769722B /* stringify_sink.h */, + 726A28A088B368BDF2B5B099FCFA351B /* strip.h */, + 3965192CAF7FA502E5ED1963E0D48D2A /* substitute.cc */, + E000A6999D93551FCE57AF2FC8B1BA0A /* substitute.h */, + ); + name = strings; + sourceTree = ""; + }; + FF9FC849AF49DB70C039F02600BB100C /* algorithm */ = { + isa = PBXGroup; + children = ( + CE9366298C53466A403DCF86B4D1B3B5 /* algorithm */, + F24FC5FD72110A554A1214FCB696AA60 /* container */, + ); + name = algorithm; + sourceTree = ""; + }; + FFA57B16AA0BCF30A9439AF95D5FAA46 /* status */ = { + isa = PBXGroup; + children = ( + 1005CB691C5C0820FC2771B96AE151B0 /* status */, + A11848BDC48A66995F1FB78B529B6F1A /* statusor */, + ); + name = status; sourceTree = ""; }; /* End PBXGroup section */ @@ -33631,6 +34532,1380 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0C03B9C077A0C87033021B301C26C235 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DDFBA72F304079075EB6C29B4B8C31DF /* accesslog.upb.h in Headers */, + 857B7024BD6D3312BDE751BFD4C0A98F /* accesslog.upb.h in Headers */, + 82FDDA30A0C9B7F0DE6392DC4180A3BB /* accesslog.upb_minitable.h in Headers */, + 8D891D6D0CEE11300A93311459667226 /* accesslog.upb_minitable.h in Headers */, + 9D809B92FD37A335ED3A04F7A03FADC1 /* accesslog.upbdefs.h in Headers */, + 1003084BFFF49F726668883FD4212981 /* accesslog.upbdefs.h in Headers */, + 0D068D6267E6814445101429814D8E11 /* accessors.h in Headers */, + D4CE44B132581732A54A71937FA3DF94 /* accessors.h in Headers */, + 8EA4DBAFAF71CAC14AE3848DC7368828 /* activity.h in Headers */, + BEA18517F0420C9EC1D1871315B009F8 /* address.upb.h in Headers */, + 974DD9E0BF2517445D5FF183E80C055C /* address.upb_minitable.h in Headers */, + 7179C5066E89DFF8AE6DA7437248B969 /* address.upbdefs.h in Headers */, + DD092A39E8224F94B1E1AD4D6189176C /* address_filtering.h in Headers */, + A1AEDFD31A934DB01FF6590E7E6C0F6A /* ads.upb.h in Headers */, + B404852D805CB764A27F8DC8E17735D8 /* ads.upb_minitable.h in Headers */, + ABDA7155D0D65C2035F6D4919AD538F9 /* ads.upbdefs.h in Headers */, + 39EBCBAE3B5787F45ECADC65589C4FA4 /* alarm.h in Headers */, + 2186BE70FAB81596489DB34E898F3AFA /* all_ok.h in Headers */, + AEF78BC87FBC83FA44AC19CD205D8CFF /* alloc.h in Headers */, + 7C8FA8D0F081BA6AFCA53B9383A32794 /* alloc.h in Headers */, + DF775FE2F17E4B964F7AD175D1FE998E /* alpn.h in Headers */, + 3FBC3BAEB3AECF5231A6EF0818A8EB14 /* alts_counter.h in Headers */, + 55EECA5035F29013A38D8E2E2BDF33A5 /* alts_credentials.h in Headers */, + 2BAC28CF3BAB2DF539D9EA5BB26838D1 /* alts_crypter.h in Headers */, + 27EA2441486BDB2D5C68FE1AF366867D /* alts_frame_protector.h in Headers */, + 686969B5F05CD666C8BC0113ED9FA729 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 7B45A38F168ABCD15CA801C3B33394AC /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + ADA4BFE3C0C17FECF03A9DCEA3704831 /* alts_grpc_record_protocol.h in Headers */, + 03BD415C021DAA2B33B9174B72C4E4F8 /* alts_grpc_record_protocol_common.h in Headers */, + 179057129B09FB212EED33C8FFBB7E0E /* alts_handshaker_client.h in Headers */, + 042AF90F03AF97F84C8BFCF60FD131B2 /* alts_iovec_record_protocol.h in Headers */, + E03A7861B1F4DAAC5D5B0FCBEC6AD315 /* alts_record_protocol_crypter_common.h in Headers */, + 4D05218B323FC686EB49679A0D616DE0 /* alts_security_connector.h in Headers */, + CED9680F4E3CD76C4D8798D80F684E50 /* alts_shared_resource.h in Headers */, + B97F17E4B9BD6094878E3988F12F9684 /* alts_tsi_handshaker.h in Headers */, + DDBF7536371DA45123C1A03A179CCE00 /* alts_tsi_handshaker_private.h in Headers */, + 3F30283B6E2ED003D5B40B9B17421119 /* alts_tsi_utils.h in Headers */, + 47FBFDACA0D6B474872DA3AFC20C2166 /* alts_zero_copy_grpc_protector.h in Headers */, + 20980BEEB49AAEAE52F9F8541B2C04A4 /* altscontext.upb.h in Headers */, + 8D865177726384CBA6416E9E3246E6D6 /* altscontext.upb_minitable.h in Headers */, + 1BEE2D1024F7034DD88065343172298F /* annotations.upb.h in Headers */, + 977EEA508EF9278EE6E367763EEABA85 /* annotations.upb_minitable.h in Headers */, + 7B8BA0237EE83C6122B26DFC10597827 /* annotations.upbdefs.h in Headers */, + 4D3DCF3F302E92D108E9CB0BB6E3FCB1 /* any.upb.h in Headers */, + E5B3FE23ED7924685FC53540EAA4E408 /* any.upb_minitable.h in Headers */, + 9F56410ADADAAC6C72012A7DCF9759EA /* any.upbdefs.h in Headers */, + 8B747F23C0B563877A35912AE4BA4BEB /* api.h in Headers */, + E19B26AB3CDDB1749CF6FC070D6C7F71 /* api_listener.upb.h in Headers */, + A6F09DD2B9F052486715AA98F3492AEA /* api_listener.upb_minitable.h in Headers */, + FA96C05B6E6A841D54388CF2CE56AA61 /* api_listener.upbdefs.h in Headers */, + 38AFF073A91CA26F341485E14D0398E0 /* api_trace.h in Headers */, + 1D65B1D42BF8AC2473C7AFDF5201D66D /* arena.h in Headers */, + 113516EFCA552BD7EEA38EDD0620898D /* arena.h in Headers */, + 3A9054D7F16D65F4BAF8EC570A694BF3 /* arena.h in Headers */, + D38C7259994EE13182E990791F8221B1 /* arena.hpp in Headers */, + 1D0D6C0F2284C8534379FDD28B205520 /* arena_promise.h in Headers */, + 7DF2FAD9C75B7D7DF4C361CDCAB4AD7C /* ares_resolver.h in Headers */, + 60F3766745654FAF47E2E17BC6F77FA4 /* array.h in Headers */, + AC0B3DE63CFDAEEF79154B24808BA6A3 /* array.h in Headers */, + CFC3947442DEB5057B0A09302B48F6F5 /* async_generic_service.h in Headers */, + EB54161C986F98F07773772E8E2802BA /* async_generic_service.h in Headers */, + 20E78AF1B91C4C96B6F960FCF5FB489B /* async_stream.h in Headers */, + 75498E90561C88D0D1FAEED0C8C53A7A /* async_stream.h in Headers */, + ADA59C1451E2F9DA8F5D2E32E1253CB8 /* async_unary_call.h in Headers */, + 718E4379CDFE2A85B68A6D4B3DF1F20B /* async_unary_call.h in Headers */, + F32960EB94565067DC5FD12C32281EB7 /* atoi.h in Headers */, + 1520C5DF315D0A452411D26D8654711F /* atomic.h in Headers */, + 74FDC0FEFB30F65E792B456B49A5C945 /* atomic_utils.h in Headers */, + FC46E89FB6F71CDC1DDD50CAC4EBEC31 /* audit_logging.h in Headers */, + 2C02E21963724C18B3FEA40C9EFBDA57 /* audit_logging.h in Headers */, + E571617B8811AE1A31E4237A542A4EA7 /* auth_context.h in Headers */, + 0389177007BAF8D2418358127B8CD270 /* auth_context.h in Headers */, + 4770B0822129B11FB84EA89DE3625417 /* auth_filters.h in Headers */, + E16946AAF49A3FA7AC509C414C485B8B /* auth_metadata_processor.h in Headers */, + 65554B91B9B66B480EF5C1FBC23F4CD8 /* authority.upb.h in Headers */, + 1186F4C85194A65962A2ECCCC2E45387 /* authority.upb_minitable.h in Headers */, + 4F20E748A801D0A42C496326C66DC2CA /* authority.upbdefs.h in Headers */, + 4325FE3D51A27DAFA1AC760ABF7EB338 /* authorization_engine.h in Headers */, + 73A507EDBAFFF9E16D2E0EF1BD71783D /* authorization_policy_provider.h in Headers */, + 4C0D432E07F39EA382A10ED31EE660D2 /* authorization_policy_provider.h in Headers */, + 408936DCDA01198B1333332902651CBE /* avl.h in Headers */, + 5BD36FAC0BC8397D0A923C74CC01B2D0 /* aws_external_account_credentials.h in Headers */, + 0CC6AF1CF3F09259A9A1CE59B3776291 /* aws_request_signer.h in Headers */, + 624C9B1457B0509B021290BAB3E6F29A /* b64.h in Headers */, + 7D1AC4643CB690F9CEF88A02AE975E6B /* backend_metric.h in Headers */, + F9C295078AC2CEDDE4D767E5836DF1BE /* backend_metric_data.h in Headers */, + 044C5889339993D3936AA5C0104496F3 /* backend_metric_filter.h in Headers */, + 7B550538AB8F52FA77760B1E91EB1533 /* backend_metric_provider.h in Headers */, + 5BEC0B4464F751993EFBB0A91B90EA1A /* backend_metric_recorder.h in Headers */, + DCCA0CC377DE2A170EC0A96288394D85 /* backoff.h in Headers */, + ACE89C5214A9918FA5CAE09CC910EBD2 /* backoff.upb.h in Headers */, + CAECE6B3B5B007EC6F1760DCF84533CF /* backoff.upb_minitable.h in Headers */, + 17481C2E25D6C141B55D2BFBC3A587A6 /* backoff.upbdefs.h in Headers */, + 7CAF948E4769CC817DCF700462C12C29 /* backup_poller.h in Headers */, + 1893A59B17C9012AC114A63095BE60CA /* base.upb.h in Headers */, + 692A6D5C865311AACCA5B23AA81BC499 /* base.upb_minitable.h in Headers */, + F684FB7052557CF89F0568D88A9F8C34 /* base.upbdefs.h in Headers */, + 1B2EBDB7C47CC086512A155386BFC60D /* base92.h in Headers */, + CB978196B423CF6D9390236F88590293 /* basic_seq.h in Headers */, + D4F657303C9870F31E25885C7C3D8B60 /* basic_work_queue.h in Headers */, + C6AF60C48BA5715DFD03E84938F7E8B0 /* batch_builder.h in Headers */, + 65C2E0D4DB31B5A1D4C2BB768E779831 /* bdp_estimator.h in Headers */, + 177263112106588C5EA5051317CA8DDE /* bin_decoder.h in Headers */, + D79CD3FBF8A498493D60E2EF4D94E137 /* bin_encoder.h in Headers */, + 677CA0B123DE325B0D2536108B683A57 /* binder.h in Headers */, + 0E5EBFA2F9D8E86AECA2CCC15FEC9E00 /* binder_android.h in Headers */, + A941488F8CAFA9EB04D17613D301E737 /* binder_auto_utils.h in Headers */, + 039AA120E8F35D01A8DBC7029B8174E8 /* binder_connector.h in Headers */, + 867D9DDA33DC66156BD5B559941192EF /* binder_constants.h in Headers */, + 0D6CBC7BF7A18BB5FDC2521B90B00B57 /* binder_credentials.h in Headers */, + EBCAA36C91EA60083DA1CC975DE0E4DA /* binder_security_policy.h in Headers */, + 646C8C3C012EC96EA8EEEA6EF5D57EB0 /* binder_server.h in Headers */, + FCBCFF7B3E27206BE028C8012E227BC1 /* binder_stream.h in Headers */, + D8B387594D73D9576A147B65A02143B8 /* binder_transport.h in Headers */, + 768B39456E384EF35D25F863C96B5B9F /* bitset.h in Headers */, + DB7D509BCDE6DF89739729D210B767EA /* block_annotate.h in Headers */, + 95E72B1E01EE0591A00A2954F3294145 /* bootstrap.upb.h in Headers */, + 6D655238D988CF044D9269E77643FDA8 /* bootstrap.upb_minitable.h in Headers */, + 0A55F6F5C83402EC69F510431DA53043 /* bootstrap.upbdefs.h in Headers */, + DDE1DF79CB3B1EA222711AEE3C885CC2 /* buffer_list.h in Headers */, + B4EA0800FE3CBD742996379A56F0B4BE /* build_enum.h in Headers */, + 497DD85D7722D33150BF58CC855A9970 /* builtins.h in Headers */, + 170998967DB75230F74881BBE3559EA0 /* byte_buffer.h in Headers */, + CCDF727794D248B8117C64EC5915962F /* byte_buffer.h in Headers */, + C8738DFBAD620B51300C2660E6CFF888 /* call.h in Headers */, + 162E5A5C0F98BE180AD262972940385E /* call.h in Headers */, + D0E1EBA8040B9E61ED496E7B4FB4F185 /* call.h in Headers */, + 096446E99EE881247177D96AB0738903 /* call_combiner.h in Headers */, + 54AFA494A651664E313B3A8EB2377A9B /* call_creds_util.h in Headers */, + 903BD4E53B23580AE123CFBEF192483D /* call_factory.h in Headers */, + B1BBAC3F804C15C9E40F21D47493C9C0 /* call_filters.h in Headers */, + 38C4C700FDD9435628DAA98D78631828 /* call_final_info.h in Headers */, + E40E0C2D4911757E538C945674704D6D /* call_finalization.h in Headers */, + 296FA52A1E30C6B86B5B170A982E4B0E /* call_hook.h in Headers */, + 5E9A687DF7EB60D83103BA3ABABDCF3A /* call_hook.h in Headers */, + 4668DBF2D5871FED86AA96B8476324B5 /* call_metric_recorder.h in Headers */, + 9BAE67CDE3BFF8F8CADB803AB691B980 /* call_op_set.h in Headers */, + DA6967207F24F0C5745FD3DC7A7AA8EC /* call_op_set.h in Headers */, + E07CBD81DF3D1F9649648F18C8DA9CB4 /* call_op_set_interface.h in Headers */, + 5A9A38FBB484ADE1449D00DE830C5691 /* call_op_set_interface.h in Headers */, + C783F8E81F379ABF7D1C72BBEF117881 /* call_size_estimator.h in Headers */, + D7A7C56484F6A01AD24D5FD3DAC2000E /* call_spine.h in Headers */, + 8E6AD45E3ACE0B7AD4EC07D57DE1EB1B /* call_test_only.h in Headers */, + 0D7AB79CD1E07E28E2389D90CF0F721E /* call_trace.h in Headers */, + CD612D4301DECAA889BEC99F56CC0533 /* call_tracer.h in Headers */, + 1C9DF6684226462C245C960E9EBA0C71 /* callback_common.h in Headers */, + 4FAD712AA2BA16037CA13D9E9F5E837C /* callback_common.h in Headers */, + 9CAFFEEDB120BF7B039A0DD27CF41533 /* can_track_errors.h in Headers */, + 5634DBFA4622BFAD4DCB01B5287C15A0 /* cancel_callback.h in Headers */, + 933D3EFB9B8FC05196596ADD75B053E5 /* cel.upb.h in Headers */, + F725A4A8E2DD0AC2F8650330AD9749DC /* cel.upb.h in Headers */, + 632DA86935A57F775BB36DAD13C6A243 /* cel.upb_minitable.h in Headers */, + F523D149E798C860BE2983D9A0FD8331 /* cel.upb_minitable.h in Headers */, + 5B6BF5AE1B24F359127542D5931DC7D9 /* cel.upbdefs.h in Headers */, + 163922657103E89ECB31EF93A7426B24 /* cel.upbdefs.h in Headers */, + 526557BF5BBA3D77788B501F6DD83AA3 /* cert.upb.h in Headers */, + 2E8AC703626B4ECBEDD02FE6950DCD95 /* cert.upb_minitable.h in Headers */, + A92F6F466FFFBCAFBC606ADA99C3B3CA /* cert.upbdefs.h in Headers */, + 00BB66E33046ADACC63CC5BE21462F35 /* certificate_provider_factory.h in Headers */, + D6C93EB64FDFF78FE489C6182043C574 /* certificate_provider_registry.h in Headers */, + 3B74CAC6D42EF92E35C50DFE040FB4D2 /* certificate_provider_store.h in Headers */, + 35E766F019814AF2EF06189FD4A9AC72 /* certs.upb.h in Headers */, + C906944DDA1F05BE124D5C12C7AAFAAB /* certs.upb_minitable.h in Headers */, + 641CFA5C09FB0DFCC6B5D11E0B00DEA1 /* certs.upbdefs.h in Headers */, + 9E9B862C4AD3C3271A3DCE9E98395EDE /* cf_engine.h in Headers */, + A22C29F7E64E68FCDF3EF355923EF9F0 /* cfstream_endpoint.h in Headers */, + 7267FCEF05A9DB0A4EEF0E38E386DB4B /* cfstream_handle.h in Headers */, + 978F793BAA15CCD9DF2DE78234849B58 /* cftype_unique_ref.h in Headers */, + 89EA360C137EEEB7B8AF7B989DBFE6BE /* channel.h in Headers */, + 2AD99F83AB39EE005BD9564225817590 /* channel.h in Headers */, + 1B6E7BF2947C6BAA797740D1629535CB /* channel_args.h in Headers */, + C6E20BC0C107E1ECD59714E487DAFCA9 /* channel_args_endpoint_config.h in Headers */, + B5CBA155126CF6A14EA686F7530F6514 /* channel_args_preconditioning.h in Headers */, + BAFD9DC44354AD72CF269756802D06B5 /* channel_argument_option.h in Headers */, + DC4A23A30B73268F92B01D916DF43D43 /* channel_arguments.h in Headers */, + 12E44919F31ECCF1239429D992FEE416 /* channel_create_impl.h in Headers */, + 8B7620BA40A498B082DADA13D8555E2C /* channel_creds_registry.h in Headers */, + 423AF94FC0C980ECD83DE56D7F07ABD0 /* channel_fwd.h in Headers */, + E7396545DBB8B484AD35C9FA62A813A4 /* channel_idle_filter.h in Headers */, + 23FA5E9D3BDA8F29B85AC74892F733C3 /* channel_init.h in Headers */, + E637584E41D1A20D35CF57C774DB738D /* channel_interface.h in Headers */, + FE3CC24E5BBE362111207D6EE45E1930 /* channel_interface.h in Headers */, + B6C270C74DB343F812B24187951796BF /* channel_stack.h in Headers */, + E642E16F79EC6F78972E00336B1A393F /* channel_stack_builder.h in Headers */, + 69C27B43001200C19ECA65F7E848CF28 /* channel_stack_builder_impl.h in Headers */, + 2464A8705A3461D03FB30943D9F3B91A /* channel_stack_trace.h in Headers */, + 81FD12466B62BEC7AFDECF06CECC5FA6 /* channel_stack_type.h in Headers */, + A5898DA0DB61826B593DCE82EA3139E7 /* channel_trace.h in Headers */, + 3CFE364D6D0F152430B4AAD6107CE4D6 /* channelz.h in Headers */, + B9AF6872CB750C6D8BABC61C0E84B9A9 /* channelz_registry.h in Headers */, + 656D84A6194E407BFD038B62591526B7 /* check_gcp_environment.h in Headers */, + 7536899D25A6605B64A83F91FA311824 /* checked.upb.h in Headers */, + BA0F3849F7FC12C2EB6D477D0E62BCDA /* checked.upb_minitable.h in Headers */, + A170FBAF5FA34AB41F8E6817808F841A /* checked.upbdefs.h in Headers */, + 7CFDFDD0DD77B37652EC8908095D1AB3 /* child_policy_handler.h in Headers */, + 2D64E106BA6CF544E144A6B6E4114317 /* chttp2_connector.h in Headers */, + 9EA43282FD3C83C398EBDDE26F03AB5E /* chttp2_server.h in Headers */, + C6AB6B7D4AE653A61FB29B509696A0C2 /* chttp2_transport.h in Headers */, + 62EDFC4866566F57B69EF7675669BBFB /* chunked_vector.h in Headers */, + 4B26FBD2C0448E0B0C0169EFEA07B2D3 /* cidr.upb.h in Headers */, + 72DAB4D3F5EF725818D5164E38704DE3 /* cidr.upb_minitable.h in Headers */, + 4A9B0211EDAF39167B798C55F6AF7F31 /* cidr.upbdefs.h in Headers */, + 7BA53C6506681DC3DBBE2EAD196ACEEB /* circuit_breaker.upb.h in Headers */, + 30B35E54C6FFA234B1E9FE633B07113B /* circuit_breaker.upb_minitable.h in Headers */, + E6618751B2F8E9C8E55B892FB4A61189 /* circuit_breaker.upbdefs.h in Headers */, + 2976E7C8FCFBFA1F716A0A8B5600A532 /* client_authority_filter.h in Headers */, + 6A90914AAEF4327133D06943E941D7A1 /* client_callback.h in Headers */, + AF85D3CE914C29B22CBCD749543E0D3B /* client_callback.h in Headers */, + 537368FA45D61A05AC25755304819D27 /* client_channel_channelz.h in Headers */, + EC62842D91DD0F89C795D1FD167BAD32 /* client_channel_factory.h in Headers */, + A5E59A24F59CABA9DE8EC5FF786E6E08 /* client_channel_filter.h in Headers */, + 1999E1367859EF6F165EBBB494FAAA9D /* client_channel_internal.h in Headers */, + 6D0B94E7C60AEE76BFBD9839769549FD /* client_channel_service_config.h in Headers */, + B92B4A3042A5B2CAA3AB675F2900D207 /* client_context.h in Headers */, + 5CDEF740CDF191E1198D59A555841E10 /* client_context.h in Headers */, + AF5838475DB771BC25ED6222ADD4F0B0 /* client_interceptor.h in Headers */, + D34213C2E56D46043E21EA83C9DAB6CD /* client_interceptor.h in Headers */, + BF4DE7121640A86CA8834856652826C8 /* client_load_reporting_filter.h in Headers */, + 1A1FB11BF6CCB37ECC08946EF938975E /* client_side_weighted_round_robin.upb.h in Headers */, + B19B3B2675649859C47BBD3FE6702AB3 /* client_side_weighted_round_robin.upb_minitable.h in Headers */, + 2F2DAD410B09F2115019F0278882C251 /* client_stats_interceptor.h in Headers */, + 4783C181D3E14239ED75D077A1FE968D /* client_unary_call.h in Headers */, + EA6CFCFEAFE83A2F53B692E886E1432D /* client_unary_call.h in Headers */, + A20410D4252715D75129E5341F2E2F3C /* closure.h in Headers */, + 4D83E415E3051C0E3E61A442CBED2224 /* closure.h in Headers */, + D5FF016FB2F4DD1EB20CC3B9CF3FB46A /* cluster.upb.h in Headers */, + 96F2F7694A62935646D7C214ECA6BCC2 /* cluster.upb.h in Headers */, + E0C6281E4994C505CBEA2787704AEBB3 /* cluster.upb_minitable.h in Headers */, + 813567AB8A0FCE774D450A3A92329DE1 /* cluster.upb_minitable.h in Headers */, + 85E436CBD924AD5B0BFD7F383D24B9E7 /* cluster.upbdefs.h in Headers */, + FA6CE8B186E53D140A314EB19143FBEF /* cluster.upbdefs.h in Headers */, + BA0ADBAD1E930E44921CA91C07337770 /* clusters.upb.h in Headers */, + 9A766CEE6CD7239CF6D04DDB7625E7CB /* clusters.upb_minitable.h in Headers */, + 93EBCF48D0656B37D0BF6A4C49A366D9 /* clusters.upbdefs.h in Headers */, + F0F2E7D8E85FD7E1BCAC5F28E2A17F2B /* collection_entry.upb.h in Headers */, + 279FC397E92836D16D63BCC317E70ED4 /* collection_entry.upb_minitable.h in Headers */, + 929CF67DDDA006A49DF5F82B4C7EC661 /* collection_entry.upbdefs.h in Headers */, + 739650FE504D736B546F8BD7E1DE3C23 /* combiner.h in Headers */, + 7A3B258D34383EA02ACAA1400B12BFA5 /* common.h in Headers */, + 8063AF86961DC76967947BE026B6533D /* common.h in Headers */, + FF3F62008FF67732DC1EF0895D905D97 /* common.upb.h in Headers */, + 87C8A401CD1FDFD954C6E2BF55CEA568 /* common.upb.h in Headers */, + 1CC324B596B3ECD050DE2A3678214969 /* common.upb.h in Headers */, + 5AEF3B4E053DFDD74E4FAD852A1AAA51 /* common.upb_minitable.h in Headers */, + 7E52D3DD39972951027520E5E64479EE /* common.upb_minitable.h in Headers */, + 46313A10F24D0C954A3E3847E2BD7E99 /* common.upb_minitable.h in Headers */, + 7993FEA4719068563044D0893894547D /* common.upbdefs.h in Headers */, + 6B729933F36C6928E72E2CD5FF508CD2 /* common.upbdefs.h in Headers */, + 66D6250EBB72CC76E6F6C626A70A31E2 /* common_closures.h in Headers */, + D7E55D6F2E95143316F65EE45C9ACAF3 /* completion_queue.h in Headers */, + 6BC5721F93F9880FBC5741CE2B940ED4 /* completion_queue.h in Headers */, + 1B90E17F9E4CCAD9DB718FE0CA578F64 /* completion_queue.h in Headers */, + A46F6F02D1559F100F56AA574F0425BD /* completion_queue_factory.h in Headers */, + 59CD40A2A951924524C37573591FD3B1 /* completion_queue_tag.h in Headers */, + 633943E9B7C030EAE32D6006B0C0B32F /* completion_queue_tag.h in Headers */, + 42C22CE015852CB02739E6DA76E49D9A /* composite_credentials.h in Headers */, + 47D973C405B79EF255BAEC5675F6519A /* compression_filter.h in Headers */, + E443DB699634F02580F02F7F0389114B /* compression_internal.h in Headers */, + C08EC7F7F7A525C458F42D60F398F402 /* config.h in Headers */, + EC73277798FABCE717238D900BB74416 /* config.h in Headers */, + 6857C236C43719538AD7FF4DC4C84F34 /* config.h in Headers */, + 9F306BBF8E153D8F5EDDFDD1FEB374C8 /* config_dump.upb.h in Headers */, + 3DADA038A5055BBC53A5494B4D4C93AC /* config_dump.upb_minitable.h in Headers */, + AF3FA0CD49ECB556F362796F8CEF0677 /* config_dump.upbdefs.h in Headers */, + 9489BDD0A3EC40122DB02609069AF65B /* config_dump_shared.upb.h in Headers */, + FC90E60B19A1C196FFC6C393EEB07BFB /* config_dump_shared.upb_minitable.h in Headers */, + 5577DB277A046CBD31CE99AAAE62D21B /* config_dump_shared.upbdefs.h in Headers */, + 1470AC93A4E9FEEC158627A2D8B9CC81 /* config_selector.h in Headers */, + 1D8AF6EB01A0C3649DCDB64FC04D7941 /* config_source.upb.h in Headers */, + 3FD7DCD83A2A933CA9C3B2283B0C191D /* config_source.upb_minitable.h in Headers */, + 3E3969B734859F8A136750DFA2F1B3F4 /* config_source.upbdefs.h in Headers */, + BC82F5A6EDB9A6A49001D643D30EC777 /* config_vars.h in Headers */, + BAF80198C4282BBAB5D7D38AB083C448 /* connected_channel.h in Headers */, + 9123CAE118F94ECD4185F3E99700DAF2 /* connection_id_generator.h in Headers */, + F314FD8349F10B3291D6B347237B5379 /* connectivity_state.h in Headers */, + 15CEF7B5A6EE073474FD2C088E3F2F4F /* connector.h in Headers */, + 79D84107F662E6736688F3FB5B9C793A /* constants.h in Headers */, + 0A9A7109F8CA5D3BEE124CB5CF328A0A /* construct_destruct.h in Headers */, + DF4DCA32858863011BB8A1D26E9E52ED /* context.h in Headers */, + BAE6BAE4FDD9C65B7BA106614AAECBDF /* context.h in Headers */, + 370ECB70DAFA7B43183B583F6A8295B8 /* context_list_entry.h in Headers */, + 66F1938C9EC710395D887E4B1E80A986 /* context_params.upb.h in Headers */, + F60EFE358D8F58DA109C9E794F8B7A09 /* context_params.upb_minitable.h in Headers */, + 09AD9E12C9D731F9CDA9775207B2696A /* context_params.upbdefs.h in Headers */, + 6A8B3EFBEA919790AF612D714A6C33C6 /* cookie.upb.h in Headers */, + 7685ECE7A4F15861AE95515F8299B5B0 /* cookie.upb.h in Headers */, + 2EAE277F8AC3715401D97664E58C1C3A /* cookie.upb_minitable.h in Headers */, + 719BD3D87A1C0FBBC2D3A7D036C7B350 /* cookie.upb_minitable.h in Headers */, + 928174983E6F275114072DE128E33310 /* cookie.upbdefs.h in Headers */, + 726CFDEEE7B0200EB3FB5B85FD0B19D3 /* cookie.upbdefs.h in Headers */, + BA8594BD5DCB945F2BC043CE57522F41 /* core_configuration.h in Headers */, + 9013C633477F58D7F3031D8384E36821 /* cpp_impl_of.h in Headers */, + 3E322E5C14077A090B84DC417BB9587D /* crash.h in Headers */, + 02F935D57E3F874608EA6DB1F30DC129 /* create_auth_context.h in Headers */, + 372019ABDAEFE16D061A44125C557117 /* create_auth_context.h in Headers */, + E9AB237871AB07EE45CB001D35E7A4A5 /* create_channel.h in Headers */, + 741EBFED6EE5E2ACC49D92DF580D4B78 /* create_channel_binder.h in Headers */, + B8144B1BDBB5E3D0B42F4392EAC456EC /* create_channel_internal.h in Headers */, + 8667061E88ACEDEDFFC29885102FE6AE /* create_channel_posix.h in Headers */, + 46D233F72932F76736FDBD558B480620 /* credentials.h in Headers */, + 0F873595384933F4AA4C36CA2743DA24 /* credentials.h in Headers */, + 62E605247D4ABE05F4EAF7810CF7EBDF /* csds.upb.h in Headers */, + 867885D0F14AD7A8F2C9A8034D3EB7D3 /* csds.upb_minitable.h in Headers */, + C1322C697554B8AB4FD4440BCFEF9AF5 /* csds.upbdefs.h in Headers */, + 27ED88A0DD8A23CEFB09EC9C411C2459 /* custom_metadata.h in Headers */, + 21DD21AAF45506BBC7A5225A6F946E43 /* custom_tag.upb.h in Headers */, + DC2B63855F220E250E46382BB7C0542D /* custom_tag.upb_minitable.h in Headers */, + 342712CDAE073B1CE93CF16946A38973 /* custom_tag.upbdefs.h in Headers */, + 4388EBC152C3D197C85D0D8CB00101F2 /* datadog.upb.h in Headers */, + 04C8D1D540A3A509319F65672B5E334E /* datadog.upb_minitable.h in Headers */, + F38E06CA5F36B2FE06F50C4BBC8F4544 /* datadog.upbdefs.h in Headers */, + 94C28A6F3A455F69FF88C54C18B26AF2 /* deadline_filter.h in Headers */, + 36FBCD4F1085382ECC258788040BCE83 /* debug_location.h in Headers */, + 6C85EB91FB62716DFABF353D76C42AAD /* decode.h in Headers */, + 36F4C5EB200F891222F3F4F6F0AF48EC /* decode.h in Headers */, + 3FBBEB35C704406696E92DFDBA936960 /* decode.h in Headers */, + 172EC87F5FD232509E5BC79611116A61 /* decode.h in Headers */, + E35C604E814F82287F45E01FEAB1F089 /* decode_fast.h in Headers */, + 70C96067869A7A46F118D03F428FC43B /* decode_huff.h in Headers */, + F1E4D44B8CBD10E925CE5C213CB753DF /* decoder.h in Headers */, + 28A017409F797C26958A7AE0039F24BD /* def.h in Headers */, + 1F1DD857C10D230963BD02597ED7B0D6 /* def.hpp in Headers */, + 2699B4A165320A50BB7046B68BB9AA3F /* def.inc in Headers */, + FEDE8C7F96710BD38A20A0AF1955B6AF /* def_builder.h in Headers */, + 63ED44CE5DFBA41DEEE9662A02067E0C /* def_pool.h in Headers */, + 9F4936A06BF49443F458002C4003FF58 /* def_pool.h in Headers */, + E41FBECD2B33A9E7F63F850B7BA2E2C5 /* def_type.h in Headers */, + 0F58E009323EF5B97CF9D72F77319B2F /* default_event_engine.h in Headers */, + 2D4076849B1CDECB10E8E435D90F8C61 /* default_event_engine_factory.h in Headers */, + C8114A5667E718D9223B6FF69C008E8F /* default_health_check_service.h in Headers */, + DF6F1687199605507F927FB1B0EB0624 /* delegating_channel.h in Headers */, + A50A5DFCF1C7928EC43BC64B257BB261 /* delegating_channel.h in Headers */, + 83D4F26720913750EF4276E98F6C77C9 /* delegating_helper.h in Headers */, + 9B69DCC6FEBA451EF6AFA8EB769EEA22 /* deprecation.upb.h in Headers */, + 1EEEE2354D5B27DA10452F32ECDDE51A /* deprecation.upb_minitable.h in Headers */, + 8B40421479E08970CC49E4C5D5A48DC4 /* deprecation.upbdefs.h in Headers */, + 89D898460C4094C8BAAE674A2B6FD804 /* desc_state.h in Headers */, + 6FAD5DF4625A39113CF80DB311BE0EFE /* descriptor.upb.h in Headers */, + B668F1B8AC571E3552DDC0DFA1EB1089 /* descriptor.upb_minitable.h in Headers */, + 9D0333F31154BC1E2998EDC8B826F0C8 /* descriptor.upbdefs.h in Headers */, + BA8E4A432C36655F7F3D6B5CBEA38835 /* descriptor_constants.h in Headers */, + 2340A6564E5E154EE10118E8A28171B4 /* directory_reader.h in Headers */, + 3A3FB2D0AEB251940C4D1B1CAE82B67A /* discovery.upb.h in Headers */, + 01D0A268EE1F9052ED211ACE0DDA8026 /* discovery.upb_minitable.h in Headers */, + 4556AA2245CB4D87E32C08B3CA569F08 /* discovery.upbdefs.h in Headers */, + 1B0671C3100F59856229326D19A54B56 /* dns_resolver.h in Headers */, + E7387052EECF32618582DB81177C5055 /* dns_resolver_ares.h in Headers */, + 97013F7BDCC56D792C614CBD1C6972B8 /* dns_resolver_plugin.h in Headers */, + 7F9FEAA0D6FD314009C3176A53521789 /* dns_service_resolver.h in Headers */, + 5FFEB2ED316E1009CA126CC60A9C34FE /* domain.upb.h in Headers */, + 515CAE2F1DAF4820259594616F21B035 /* domain.upb_minitable.h in Headers */, + E29AABF1A2359372870E0131E708F0B0 /* domain.upbdefs.h in Headers */, + FD73EC09369ACD3A14B8A31CEB01EC46 /* down_cast.h in Headers */, + 9E3611FE0BAB067A2CC00E280951FA87 /* dual_ref_counted.h in Headers */, + 2962355D118DEAB443C9B9C426E7AC71 /* duration.upb.h in Headers */, + 9815033E1A8C57117DAC480523C145BB /* duration.upb_minitable.h in Headers */, + 71BB3AAAAEFCC98E1D037909295809C1 /* duration.upbdefs.h in Headers */, + 40FD1C6A23FD1E2DEEB7AAA35D2966B4 /* dynamic_annotations.h in Headers */, + AC030CE41C7A5F4F95F147FAE52C6399 /* dynamic_filters.h in Headers */, + 4FD68AE15EF219126800CC8FF82A4570 /* dynamic_ot.upb.h in Headers */, + 4ED1DED60AEE21DFD096A48F79BD7DB4 /* dynamic_ot.upb_minitable.h in Headers */, + B14ADD698DD268DC0DFBBF17CA0A403B /* dynamic_ot.upbdefs.h in Headers */, + CB93BB52528ABDE1B502AE5B9D772FF0 /* dynamic_thread_pool.h in Headers */, + 705A304EA915CCE5379CDBF72E5666D3 /* empty.upb.h in Headers */, + 09D75F5AE1A1458EC0C8CD543E06AC2C /* empty.upb_minitable.h in Headers */, + 4A89C2432372696C4618C552E849D305 /* empty.upbdefs.h in Headers */, + F3459508315F94D5E7B2FA89B32A64E2 /* encode.h in Headers */, + 2E4154A23022B100A48F888C7A359205 /* encode.h in Headers */, + 078AD22518E9B2EFFBFDF000677BCAAC /* encode.h in Headers */, + 8B448D075C042E8632862CFBAAA37DDD /* encode.h in Headers */, + 01CD46835AAE74435867C5F4C40227A8 /* encode.hpp in Headers */, + 22AE6A05D66950CD2A3AE386BC366A5D /* endpoint.h in Headers */, + A0FB71E1E01984485C121F6F8C4224A4 /* endpoint.h in Headers */, + A2CD6EFB36417F222DB086175F8989DF /* endpoint.upb.h in Headers */, + B7AC27B1A720885B7283A76BD1207979 /* endpoint.upb_minitable.h in Headers */, + 190ACED3CE95932A216C8FBF7B62CD86 /* endpoint.upbdefs.h in Headers */, + 1B35C18FF4592843594CF9D386810F3B /* endpoint_addresses.h in Headers */, + 0866B0D0F00144332A8892C747A48004 /* endpoint_binder_pool.h in Headers */, + 1A9F4345DD40FBD6640C8A0B7627193E /* endpoint_cfstream.h in Headers */, + 75199F0EEC70AAD9B2EF0D895508635C /* endpoint_components.upb.h in Headers */, + 328E02B3A433D1A5B6810F539C336F56 /* endpoint_components.upb_minitable.h in Headers */, + A09F3ABE2E7C41BA222465A18DE3F4F5 /* endpoint_components.upbdefs.h in Headers */, + AEA740875723415FB3207B7ADA2A5C64 /* endpoint_list.h in Headers */, + EB7D0C5469FBE769203A58684C098572 /* endpoint_pair.h in Headers */, + 93D8D6BAFF4C349CDCD406BC0CF124A2 /* enum.h in Headers */, + FEDB2A18691F2B0A262491F36FC2A8C9 /* enum.h in Headers */, + 242EFB4F1FFEC9FEEF149788C1029760 /* enum_def.h in Headers */, + 01F7AC65E8D138D6351E168191D9B216 /* enum_def.h in Headers */, + E29511AFE173D5745CC4DFFF15F748C2 /* enum_reserved_range.h in Headers */, + 177DC0697906B342ECC1E2CF47FEAD1B /* enum_reserved_range.h in Headers */, + D8624C610AA598D0FBB946434086B379 /* enum_value_def.h in Headers */, + E271CACBA672D9D58A50DEFEC67BB74C /* enum_value_def.h in Headers */, + 056427285D4B3ED4BAE6ECE629F61410 /* env.h in Headers */, + 1436BF510189D799C33E32725557AE87 /* eps_copy_input_stream.h in Headers */, + C29EC6FC2C5691BCE5E14529472EE4CE /* error.h in Headers */, + CAB9C83AA8D1BDFECDA47349EB53B4C7 /* error_cfstream.h in Headers */, + 8A57ACFE573E37616B56E376E7CE689F /* error_utils.h in Headers */, + 5FCFD280AF668E532B32345816F2D4E0 /* ev_apple.h in Headers */, + A4CF5F0B51B98770D88A9D34E5B3213D /* ev_epoll1_linux.h in Headers */, + F7355082BCDE285ADAAD59FE8D2669F6 /* ev_epoll1_linux.h in Headers */, + 6B4D0CEA8553B536CDA56B3F9E3A24D2 /* ev_poll_posix.h in Headers */, + 625692A56273A1DD2C4C9C50383A57EB /* ev_poll_posix.h in Headers */, + 21D59CB22FFB3AC174C8E29D4C3E0A66 /* ev_posix.h in Headers */, + 389D19CD0A790D805713536FFC306592 /* evaluate_args.h in Headers */, + D3246E4792A7C8B424E639A44C2B3A49 /* event_engine_client_channel_resolver.h in Headers */, + 82A686D1444ABE86567CDC7CFCBCF479 /* event_log.h in Headers */, + 9E254B4B2DB397C6914AF3A5DD1CC5A4 /* event_poller.h in Headers */, + 2C187364B5D3C4F2BC949B7EB43686BF /* event_poller_posix_default.h in Headers */, + 8F185D2A56B8E2504F57D11FF9D773A5 /* event_service_config.upb.h in Headers */, + 79FEE4C869691BA40422BDCE1679E87D /* event_service_config.upb_minitable.h in Headers */, + C55EA33D3BA58298A3C57C012485C134 /* event_service_config.upbdefs.h in Headers */, + 8A8FC68EA8C903BC3221F6BFD0760362 /* event_string.h in Headers */, + 5BDAA3F9699AF218F1721F73C5E76476 /* examine_stack.h in Headers */, + A47CA8FB2539F1DDE85683C05B670085 /* exec_ctx.h in Headers */, + ECC3AB94B71A5F506A17546546970942 /* exec_ctx_wakeup_scheduler.h in Headers */, + EC04A9B8A6253D71C7553F5752F7D4F8 /* executor.h in Headers */, + FEF6DAA5834223FEAE4D4503066A0EB6 /* experiments.h in Headers */, + 3A48E7D25887C43790A970BC9B15C6A7 /* extension.h in Headers */, + DB8F354FA840DAFC9D570153DD0B2EB4 /* extension.h in Headers */, + D70415BE3B7F42A9741A3C12C104E0B8 /* extension.h in Headers */, + 852DD00C9A411EA46598A1E53E03E291 /* extension.upb.h in Headers */, + 5D70B8DCE1DA68A2AD4E9C3BA172F5AA /* extension.upb.h in Headers */, + B80BB91931562C239452EC61A42CC3CC /* extension.upb_minitable.h in Headers */, + 5EAB438FB4B42A8643E543DDA7A86427 /* extension.upb_minitable.h in Headers */, + A77312EA284EFA1551929B332BD0ECCA /* extension.upbdefs.h in Headers */, + 4A40910AF1C2DD2DA22E7BA95F091339 /* extension.upbdefs.h in Headers */, + B283E5A59B950C073D593A004CB7253D /* extension_range.h in Headers */, + 7DA8F3DB342A95DEF4646279B638AD4A /* extension_range.h in Headers */, + B2CF4508643612B19A7955352109B470 /* extension_registry.h in Headers */, + 0BE8D8230922E8103604E5952921F73B /* external_account_credentials.h in Headers */, + 26B84FBBAA8A2B892DE438610D9175BF /* external_connection_acceptor_impl.h in Headers */, + F8000715D0F03835955F5EF7012E04C3 /* fake_credentials.h in Headers */, + 0420012A0C5BE7B76DBD79854005666E /* fake_resolver.h in Headers */, + 449431DFF076202E8207F7663A58C909 /* fake_security_connector.h in Headers */, + B64D8146E082659B7B7F832CE75456DA /* fake_transport_security.h in Headers */, + 57A433C188DAEC00BB5A6371486A5338 /* fault.upb.h in Headers */, + 9E042E941A3B5D7D960956B3E6B3451C /* fault.upb.h in Headers */, + 0C860E6E6ED3DE9EEBB5C1F518FE1128 /* fault.upb_minitable.h in Headers */, + 1C16A91501C6A4C46B6AF33B5C063892 /* fault.upb_minitable.h in Headers */, + 4505D9B141318F6D9AD2C2D64969EAE6 /* fault.upbdefs.h in Headers */, + 56CEDA6348525C38E7C6DE85D57D5652 /* fault.upbdefs.h in Headers */, + 879409FEE820424B10A1F12651E96E85 /* fault_injection_filter.h in Headers */, + 12DEA3D804277335028F5F22407C695C /* fault_injection_service_config_parser.h in Headers */, + 0ECE902EA02122DE9DF891AE7F5AB9B4 /* field.h in Headers */, + 95A1C808990C4D2FEDD1BEE48BD4DF0A /* field.h in Headers */, + 5E1BEAF8738B818E48536F4277753BD0 /* field_def.h in Headers */, + 909AA374D95F6F172B20023158F0E8A2 /* field_def.h in Headers */, + DCE3103C91D2047B1C3209E9BEF05C6B /* file.h in Headers */, + 60DDE7B8C3B8573C67481DC6E26282B4 /* file.h in Headers */, + D2BD11A7A1DF4D2AE4E3C0CF6D333729 /* file_def.h in Headers */, + 980809EFDEC8F835CDB5FEBB31FB2FD5 /* file_def.h in Headers */, + 189DAC4E65CE8461EF2777DCCCFA4598 /* file_external_account_credentials.h in Headers */, + AD55E8EAFD50866D6F163603F27690B1 /* file_watcher_certificate_provider_factory.h in Headers */, + DD505B75DDF9758B6288655E9FD68C04 /* filter.upb.h in Headers */, + F697DD4E8AB0E03243F016EA6C065C96 /* filter.upb_minitable.h in Headers */, + 3FEDB3251DEDE3919AF76D42FD277B5A /* filter.upbdefs.h in Headers */, + 567A11B8DC823FE3E4BE45D5F2AAF517 /* filter_state.upb.h in Headers */, + F1FB46DC5914E25DB2C86C9C1CACA29F /* filter_state.upb_minitable.h in Headers */, + 0467E0E83B94C9491CF47AF51DEE406B /* filter_state.upbdefs.h in Headers */, + 0636063E7F017EB89C1450033A3ABD50 /* flow_control.h in Headers */, + 9149A436B9DAFEBD8AC953E8444B74A9 /* for_each.h in Headers */, + C5503DCE673D1D2242A7930187D77128 /* fork.h in Headers */, + 9A82FFBD839AB7F0F83CB5890D3659A4 /* forkable.h in Headers */, + AF3B71447B23DA7772174A4A4D2B0FA0 /* format_request.h in Headers */, + 570209678759C13FDF043BFF2AACCE97 /* frame.h in Headers */, + 0BCD34E4EDC68182DF92B834EE6338D6 /* frame_data.h in Headers */, + 8E80D1C2E0AA7CC90890689181820B29 /* frame_goaway.h in Headers */, + 12B2DAA9A5B5E4762C3E241BFD5BBD55 /* frame_handler.h in Headers */, + 50103F6DF44A6FB0A854EB40334D152A /* frame_ping.h in Headers */, + B755560081A70BCEDC763EF2A70BD61B /* frame_rst_stream.h in Headers */, + 0B786EB423721094F9105FE93F5C7491 /* frame_settings.h in Headers */, + C0D4704B7E070F9734D385AC470D4F95 /* frame_window_update.h in Headers */, + 7469ABB0A1F0B4E1742976E16DF2986F /* generated_code_support.h in Headers */, + 4006F6370F10D4CCFD357D9D39301BAB /* generic_stub.h in Headers */, + F2E109528ABFB36192AAFE827EBE3C4B /* gethostname.h in Headers */, + 6E696E61BC5B0469308103B5569CF7D4 /* global_subchannel_pool.h in Headers */, + 59C2E493E28CB2E0ED4239342955C83D /* google_default_credentials.h in Headers */, + 9ABC334FAB082B75CF4498C6D2587D10 /* gRPC-C++-umbrella.h in Headers */, + BA1916D013991579A6691589C2057B7D /* grpc_alts_credentials_options.h in Headers */, + 52AFD3C5F42A7903DA3F2B8C0252886D /* grpc_ares_ev_driver.h in Headers */, + E4E5AFE41DE37A80440E56AE5598C1DD /* grpc_ares_wrapper.h in Headers */, + DC77FF63F5539CCB9738D52401A168BE /* grpc_authorization_engine.h in Headers */, + E87A3D5BFEAEC567A8EFFF5CC3EF147A /* grpc_if_nametoindex.h in Headers */, + 3513A0791893F8356253B67312B15300 /* grpc_library.h in Headers */, + 5242A897F9F0596A342EE23F33A85027 /* grpc_method_list.upb.h in Headers */, + 0F007AFD068226250589295AD3490799 /* grpc_method_list.upb_minitable.h in Headers */, + D3F08A2C213AD4F039B0B3B1A12069B6 /* grpc_method_list.upbdefs.h in Headers */, + 2DB774AA2BC12B9C4BB8258ED2D75714 /* grpc_polled_fd.h in Headers */, + C0BE6F28EFF0590B2F4CDA578C4B5BDE /* grpc_polled_fd_posix.h in Headers */, + 48634F47352442AABBB0320C4DC14ED5 /* grpc_polled_fd_windows.h in Headers */, + D2376B1AC8497697EFD429719BFC3317 /* grpc_server_authz_filter.h in Headers */, + 2D08AC251CEA84FD508C75544AB87AA1 /* grpc_service.upb.h in Headers */, + 8F1EB6A4AE55EA9FCC8EAC379DE8B3AE /* grpc_service.upb_minitable.h in Headers */, + 9486A1F99C15B87A0E80346C560247B6 /* grpc_service.upbdefs.h in Headers */, + 876E05B96E84A09C918EB3ABFE31598E /* grpc_tls_certificate_distributor.h in Headers */, + 7CF49F792F9B269402285939AEB0B6F4 /* grpc_tls_certificate_provider.h in Headers */, + EA4940A415A2536A475D0BAD85FE315A /* grpc_tls_certificate_verifier.h in Headers */, + C3B5A9E52A0B0816345ECFA9EA743C6E /* grpc_tls_credentials_options.h in Headers */, + 99F5297AE873EF85E83A99177B4E5C01 /* grpc_tls_crl_provider.h in Headers */, + 5161E86FF11B86F869062772230F559B /* grpclb.h in Headers */, + 1FBD875E436118A136AE2C27023CA501 /* grpclb_balancer_addresses.h in Headers */, + 02ED4C9B3DC659587AE2A99473F5BE25 /* grpclb_client_stats.h in Headers */, + 156839207CFD0D5BE78C96658FFF36C1 /* grpcpp.h in Headers */, + FD8BC795A9DDD83E3859F2B8216F2EBF /* gsec.h in Headers */, + ED546328F5AE27A09DEAFBC24D20C196 /* handle_containers.h in Headers */, + F86BB358AC3A5E11339A9FC452667C85 /* handshaker.h in Headers */, + DDF564885D51FB6FDC3EA4E8B91BF062 /* handshaker.upb.h in Headers */, + 175A795CA8A3DD9CE8F6AF384A4C2C3D /* handshaker.upb_minitable.h in Headers */, + 24E95D992C36D9EEFBED560E4E0C76AF /* handshaker_factory.h in Headers */, + 907E0DD8B25A332DEFC329D0BCA80420 /* handshaker_registry.h in Headers */, + 346B4AF9326F53304A009B6FEBAC4250 /* hash_policy.upb.h in Headers */, + E691DF953BC9953ECF059CF2D397FA55 /* hash_policy.upb_minitable.h in Headers */, + E4739067404A003448F260FAA08E9F01 /* hash_policy.upbdefs.h in Headers */, + 2ADFEED12EE5300A90F7DE70F6CCE18A /* health.upb.h in Headers */, + 66C47657CAE59FCE9DE9F34DCA1B0FB5 /* health.upb_minitable.h in Headers */, + 1BE118B2E4977EF0259B4DF171C92DAA /* health_check.upb.h in Headers */, + B9DBDB20A1BD1C300FB7560EF3357C9E /* health_check.upb_minitable.h in Headers */, + FBE9085A1A8C9573A90DCDC06CC397C2 /* health_check.upbdefs.h in Headers */, + 04467FACE36091C1EA8C42137015C9F1 /* health_check_client.h in Headers */, + 1897805E63B63D4F73DE74E4FD7AD694 /* health_check_client_internal.h in Headers */, + DC77138517D960CF80E514962641BE6E /* health_check_service_interface.h in Headers */, + E46A388A1096DC218BEB5472C418F247 /* health_check_service_server_builder_option.h in Headers */, + F3D59BA67238463F7AA4029380AAEC43 /* histogram_view.h in Headers */, + E9517F688046CE57AB501E63768A4D1E /* host_port.h in Headers */, + D9EB811749908694231C89B12269754F /* hpack_constants.h in Headers */, + 7B91826FB07378093D1309467CDE8F12 /* hpack_encoder.h in Headers */, + 00205B309AF3912F7934856FCA86BD9D /* hpack_encoder_table.h in Headers */, + 0AD8AABFF336CCD28E69C32E6FCC9025 /* hpack_parse_result.h in Headers */, + 21A35BC68CEAD38C63BBE6BFDFA1F4AE /* hpack_parser.h in Headers */, + BCA7B2899DCC75A6476635A93DB488F0 /* hpack_parser_table.h in Headers */, + 4109ECE99A8B28FED6477E7484ECE0B8 /* http.upb.h in Headers */, + 8D7D0E9E2F7B545F6512E19092F579B8 /* http.upb.h in Headers */, + D1B21F022E61BC27C09150292DC96C46 /* http.upb_minitable.h in Headers */, + 2181E21ED160B2BB80619CD3414B61FD /* http.upb_minitable.h in Headers */, + 4F4A5B72C8DD5D9EA314DFA83551D8ED /* http.upbdefs.h in Headers */, + A89EFC650AEC6685B527198171F7C2F8 /* http.upbdefs.h in Headers */, + FF64FA4DB4DFBEA20B41F2763C2ADAD6 /* http2_errors.h in Headers */, + 8E53A0556C079ACE73FB55C56DB40515 /* http2_settings.h in Headers */, + DC390E0058C6FA02AE6B0A510C8F3DFD /* http_client_filter.h in Headers */, + D427D1B4FC839219103D9209FB52B302 /* http_connect_handshaker.h in Headers */, + 141AB514ED32493733CCA6AFB86BC78B /* http_connection_manager.upb.h in Headers */, + CF5EB296F19E77C6504E8D73A1BB0336 /* http_connection_manager.upb_minitable.h in Headers */, + 7347A30A64B496D67EDEF6012BBBB212 /* http_connection_manager.upbdefs.h in Headers */, + 3A6AC325E25F84C10152C0BC4D227964 /* http_inputs.upb.h in Headers */, + 9A0E32523E3B945C06F5956E32060EE7 /* http_inputs.upb.h in Headers */, + AA90C14AE5404CB42F3B5A69DF8423BE /* http_inputs.upb_minitable.h in Headers */, + BE65B9DE09F9200DBF68D669C57C532B /* http_inputs.upb_minitable.h in Headers */, + CA7999D07961B9149A61B5A581AA5CED /* http_inputs.upbdefs.h in Headers */, + 01333CB8C84495D937ACCE23D0B2EDD2 /* http_inputs.upbdefs.h in Headers */, + 56B883C1FDA26F690E54D1E325B2D5E9 /* http_protocol_options.upb.h in Headers */, + 66D7F5693051245FC21647AA6248B078 /* http_protocol_options.upb_minitable.h in Headers */, + CA298F2EBE8461E602E45B65AB5E98B4 /* http_protocol_options.upbdefs.h in Headers */, + 8824D797AC3A48CDAB2463F571F1B989 /* http_proxy_mapper.h in Headers */, + 19A8B96767479821688146EC82702D7C /* http_server_filter.h in Headers */, + FAD25AA7913E3F9DAEDF3831A4CB3BCF /* http_service.upb.h in Headers */, + DBBC16A59A64F5EB8BDA72A2C0D46E47 /* http_service.upb_minitable.h in Headers */, + 05C2DD9440C9331381B69D617273FE93 /* http_service.upbdefs.h in Headers */, + B67F51C17A6F6BA4BFB787D1636FC2AA /* http_status.upb.h in Headers */, + 6642296B99A86813E93C1EC3EF20D87A /* http_status.upb_minitable.h in Headers */, + 08B3D321E6C87DF274282E5FFB49C30C /* http_status.upbdefs.h in Headers */, + 4FE784E45C913ACADD0B86851FEC8075 /* http_trace.h in Headers */, + A04B11F4140E650A0F950C1869ED1807 /* http_tracer.upb.h in Headers */, + 88848208686EF837A729330EBD5C317B /* http_tracer.upb_minitable.h in Headers */, + ED859F214E543293F0F4BD1C35D531AE /* http_tracer.upbdefs.h in Headers */, + D6E3DE244A11E3B1CC34C9051B02F9F9 /* http_uri.upb.h in Headers */, + 979727DE7B18D3C6A12DA38CFCDF33B6 /* http_uri.upb_minitable.h in Headers */, + 7D86CA91D83EA6948C4BFF342A3EBB66 /* http_uri.upbdefs.h in Headers */, + 9CB2DC19F2669706EA036EC42824FD53 /* httpbody.upb.h in Headers */, + 17DAEDDA7CCD62D71DCC95626490FFDD /* httpbody.upb_minitable.h in Headers */, + A87DDDD5531C1DA7D4E0D3A42374BD53 /* httpbody.upbdefs.h in Headers */, + CCBED76D6906E229F5DDCE73D2B09A6D /* httpcli.h in Headers */, + 08E2174D103320E02B692961C58312E6 /* httpcli_ssl_credentials.h in Headers */, + 7225C9F2858C3D8A613A1928E9E95E6B /* huffsyms.h in Headers */, + F102558BA63F967E24D26288B2247FE1 /* iam_credentials.h in Headers */, + F7C8739161EC51CC94AD5AB951F3E43A /* idle_filter_state.h in Headers */, + 694D38D3AC6090A329EFE7948BB5E1DA /* if.h in Headers */, + 9B186A5911DA466D5F6E31BCA1ED0603 /* if_list.h in Headers */, + 47CD7D6209D6975635BCAA5678ED3E6F /* init.h in Headers */, + 69F81B390CAE1696337BFF0663E0624D /* init_dump.upb.h in Headers */, + 20C344EAC7872BD80366CCF93757E388 /* init_dump.upb_minitable.h in Headers */, + 5F46DC9BE249E390C0AC3084B48D08A1 /* init_dump.upbdefs.h in Headers */, + 9DE0FB90CBFBA1FA6FCFB49B8F49031C /* init_internally.h in Headers */, + 349AF27336BE0A81C04CD0E4A7339D6D /* inproc_transport.h in Headers */, + 80CCAA0E34DD9EBA398794BE127799DB /* insecure_credentials.h in Headers */, + 4DD952DE4FEDD1CFDC700077C108DC41 /* insecure_security_connector.h in Headers */, + 3293797F99823FBF6D6BFD9FD7E427F5 /* int_table.h in Headers */, + FA308C964B19BB035EA0B808B55A4A6B /* intercepted_channel.h in Headers */, + 68EDCCCF544F4C420C638FFAB294C9B9 /* intercepted_channel.h in Headers */, + 9EDCD5F161425D3575E1997B772ECDA3 /* interceptor.h in Headers */, + 08F4CB6D2A68272628DEF0C9AF92ABE6 /* interceptor.h in Headers */, + F78FE4F2D45ADCC45C5EC45C28B441B2 /* interceptor_common.h in Headers */, + 4F88E6C0AC829534683FF0D4328016E1 /* interceptor_common.h in Headers */, + 0F7E72B1240E5357DD9417E0C10B36AC /* interceptor_list.h in Headers */, + 81BAEB2F426F7F018DE4399A5FD99C96 /* internal.h in Headers */, + E9032DF0B9F0DF56203AED4A11B3CDE3 /* internal_errqueue.h in Headers */, + 518CA6BA07AB7135D9EA9F4AA27A5962 /* internal_errqueue.h in Headers */, + 55017670805A3381DED0E10DD4163AE7 /* iocp.h in Headers */, + DFC0383E8A9C0D2111CD94C89F6A7BF4 /* iocp_windows.h in Headers */, + C6A23960C20B15FEE5C077C5805AAC66 /* iomgr.h in Headers */, + EEEA6189E31FB9A08AB14553F3377450 /* iomgr_fwd.h in Headers */, + 4E1E9D5749293908C12D97A873D3FC56 /* iomgr_internal.h in Headers */, + 12C94660CA164610F9D24FFB0FB8AF44 /* ip.upb.h in Headers */, + 74A2D8C0DC5A6FEC143FF76D659E8AEC /* ip.upb_minitable.h in Headers */, + 55114B19874770E7F223F34FA8916F25 /* ip.upbdefs.h in Headers */, + 3113F19B3E32DB46B157D624A34A45D3 /* jni_utils.h in Headers */, + 37AE09059EBD9D5F3DC1D370DDA47D8C /* join_state.h in Headers */, + 9B930CE45C94C4F068ED5991511F82D4 /* json.h in Headers */, + BC4550C8A4781B2AE000731E06080C94 /* json_args.h in Headers */, + 28C479B2C12B4DEF4691D2C2A2E05D66 /* json_channel_args.h in Headers */, + 35CB230DE2C1AFBD898812A454313DD9 /* json_object_loader.h in Headers */, + 02DEE7BCB6FB72C919F23EF5F01B793F /* json_reader.h in Headers */, + B087245DB60DA4D6F4968D2DE1D0BE46 /* json_token.h in Headers */, + E5505373C24205564B4D62E13E6DE250 /* json_util.h in Headers */, + 9A516AFF18611235157C0A03FC872C3B /* json_util.h in Headers */, + D941274C62FF6CD5A41BCE15EC455039 /* json_writer.h in Headers */, + 7D3FCCB83C723D6FF2D0683299DD3B22 /* jwt_credentials.h in Headers */, + AF6901CDAEEC3A6BBF307DD14AA26AA1 /* jwt_verifier.h in Headers */, + EA992E96AB8A7B84E72EDAC059387C23 /* lame_client.h in Headers */, + 5DBEB4C6B1DBD8317F2CF3177B20071A /* latch.h in Headers */, + 5C0123382B89EF6C64AF5381F91FB52D /* lb_policy.h in Headers */, + 856CD8DBC2C070FE5B652A75A41772B0 /* lb_policy_factory.h in Headers */, + B333E7804CC9546511BEE11D73B259DC /* lb_policy_registry.h in Headers */, + 89AFF53C151A8CE015A94E0D467D41AC /* legacy_channel_idle_filter.h in Headers */, + 23556721488142B6271205FA8563F230 /* legacy_compression_filter.h in Headers */, + 4DF58F5D07F1DDF6CC14946F19069DD5 /* legacy_frame.h in Headers */, + DE569C33A253DD87CE926743D684C4A7 /* legacy_inproc_transport.h in Headers */, + C93E37D0B5453955C223FECDA9E37AB9 /* lightstep.upb.h in Headers */, + 2AB1B9DF0FFF6CBB808B3D16FCDB72C2 /* lightstep.upb_minitable.h in Headers */, + 7E0870CADEBDEACC58449D403CC8BBEC /* lightstep.upbdefs.h in Headers */, + C024A4B4678983A3ADBBDA8F57192060 /* link.h in Headers */, + 8BADA9767D17E7E7CC2550B3B40D83D5 /* listener.upb.h in Headers */, + 30C69B95DF4A999BD4C5EEAC47B58423 /* listener.upb_minitable.h in Headers */, + 6A66EABF16D3355ED8536AFB8F8F7A08 /* listener.upbdefs.h in Headers */, + 576A38A8659822B4019FFF01E6CCB26D /* listener_components.upb.h in Headers */, + 9B01C7CB41E5EA61ACB198AD7107AAEB /* listener_components.upb_minitable.h in Headers */, + 0F1B419C8293F4FEB3F46ABDEB89FFEE /* listener_components.upbdefs.h in Headers */, + 9E5D4460A2833A08461260ABCC73BEAE /* listeners.upb.h in Headers */, + 3AB6370A48DBC0732E88725BDB76EC03 /* listeners.upb_minitable.h in Headers */, + 23F3A63F2782DF54926FCA9350731344 /* listeners.upbdefs.h in Headers */, + 09C3D160357629086AD5A8077FE81984 /* load_balancer.upb.h in Headers */, + 70BB87F1401903E92939AB10386BCFA9 /* load_balancer.upb_minitable.h in Headers */, + 056CEDF2D55F96D06D2529EFEF732BBB /* load_balancer_api.h in Headers */, + 8B12AC0E4DBC57624A8BFE7CB3D21D5E /* load_config.h in Headers */, + 5D6742D677B4145D683FF088AACBB77C /* load_file.h in Headers */, + 4E2DA3EC5923D5022AD612D2A3DAF875 /* load_report.upb.h in Headers */, + FE4D0EC8FCB5263E0E9E7CBAEB596635 /* load_report.upb_minitable.h in Headers */, + 3BEC7B693B5FB632E697E85816976A12 /* load_report.upbdefs.h in Headers */, + B951D855331CF4E01CB9C1514FE98ED7 /* load_system_roots.h in Headers */, + 91C4F721DFB95ADA55B012D16F16065E /* load_system_roots_supported.h in Headers */, + 2009B31287A45D644F6BF16037E8AA54 /* local_credentials.h in Headers */, + 5D4C1D9443EA2A2B58954EE1C9744E14 /* local_security_connector.h in Headers */, + 0462D119D7AA0E7080C1A94855B4477E /* local_subchannel_pool.h in Headers */, + 7F23B536D59453D801B303990A6A7485 /* local_transport_security.h in Headers */, + 64DC85582092C121E500F63BAD8D597E /* lockfree_event.h in Headers */, + AC5DF47686B8F0C813AA31D3A9760607 /* lockfree_event.h in Headers */, + DDBD0DDFD87248DFD4FEE1B5ABF93655 /* log2.h in Headers */, + 15D229B10918F0A27B82726C3578A75D /* log_internal.h in Headers */, + 5690DF4549602B0F9FF91AAB062F3EE3 /* loop.h in Headers */, + 758FA91DCDFBA8D2135FC199D984CD5C /* lrs.upb.h in Headers */, + DB4D39DB9D670C8A81B59851084B183E /* lrs.upb_minitable.h in Headers */, + AF820E90D186EE9A92C5DDF3E0B46494 /* lrs.upbdefs.h in Headers */, + 7731B86CF661D4BEFC7B588A1C61050D /* manual_constructor.h in Headers */, + CB32E53E59FE6AC2FCC6B2B976DE89F9 /* map.h in Headers */, + EEEEE7497ADF8C0023F124DEF7833E56 /* map.h in Headers */, + AB8ED5B418FC7CE023B5ECDA1CA10352 /* map.h in Headers */, + 524D3B859ED77DA15DD59CC1885293F5 /* map_entry.h in Headers */, + 6344B6C70B8621233001FB255C74E989 /* map_gencode_util.h in Headers */, + 2BCB9FA2272F6E23369BDE12A27F5119 /* map_sorter.h in Headers */, + CD3C3A793ACED6190B5AB9285373424A /* match.h in Headers */, + 43AC7D34DFB4FC6A81057454E255C263 /* matcher.upb.h in Headers */, + 85AC04AEFC1047A9D113E40DA89B40C9 /* matcher.upb.h in Headers */, + B427739A36AC511F1DD85D74CFC2C0EC /* matcher.upb_minitable.h in Headers */, + C59299CCBBE88572F930B136EB02BDDC /* matcher.upb_minitable.h in Headers */, + 405A4C32454EA0CF5B2035CB396C3264 /* matcher.upbdefs.h in Headers */, + DA06684DFEE3BB8A0D898ADAC28922C9 /* matcher.upbdefs.h in Headers */, + 3844B9CE3D150B5F68EC34C70596E414 /* matchers.h in Headers */, + 2ADD3D05A6FB13373680818A8A498169 /* matchers.h in Headers */, + D23B55CA8468CBA4D4175AE4CE26748A /* max_concurrent_streams_policy.h in Headers */, + 74BD940D463A09DDD478C08ADD54565A /* memory.h in Headers */, + 5CF506B1314B05FEBA2030B08DE2BDE0 /* memory.upb.h in Headers */, + 80B1D4F2443A7FB17A1E3EB892191262 /* memory.upb_minitable.h in Headers */, + B5071C96A992B5DD1C5DE3636C89ACA2 /* memory.upbdefs.h in Headers */, + B7190B2D5656E5E2435AD399575A96B5 /* memory_allocator_factory.h in Headers */, + 0740AC7F3A4343D4852BC77C3A463862 /* memory_quota.h in Headers */, + 588B75E898DAC9B88C17A57C7C1B7942 /* message.h in Headers */, + E2A4F02F80971E1738966F8C06C8B7A3 /* message.h in Headers */, + 45CA2F9149F13595BB4711B828E485DD /* message.h in Headers */, + C31EF4EEEA363380AEC6C241E9032055 /* message.h in Headers */, + 91600925D54DD83225C73C31CAAEF925 /* message.h in Headers */, + 9967009E9FE1F0306563A694ECD1EA16 /* message.h in Headers */, + 22493FC7B8671269B3E11110782347AA /* message.hpp in Headers */, + 0FC34F31779B1C160A9944C8C94AD280 /* message_allocator.h in Headers */, + B393D71602683B8CEF391C13DD4083E9 /* message_allocator.h in Headers */, + 64E5656E428485DF60A194737551FC00 /* message_compress.h in Headers */, + 33577B926F260B9F77C2431F40BF8424 /* message_def.h in Headers */, + D69B2C91A3A3138E26FA845A7B6DEC11 /* message_def.h in Headers */, + 13EA31D36614AB1D5FEFCEA2EDB10208 /* message_reserved_range.h in Headers */, + 7736F0CDFFF04AC0A42EA04BE62C5F42 /* message_reserved_range.h in Headers */, + E084764C3750AE329745A3455F9B6EA7 /* message_size_filter.h in Headers */, + AF6D7EDD332B8454088D08E4C3EF2F69 /* metadata.h in Headers */, + EDB4883AEFEFC5FE4903853636EB7599 /* metadata.upb.h in Headers */, + 83346BB7BDC3EB33E2B1C95628E657DA /* metadata.upb.h in Headers */, + 894736FFCD1E7551802C62D3FCD43894 /* metadata.upb_minitable.h in Headers */, + EA8E80E396DBFC51452A07DA4B88B331 /* metadata.upb_minitable.h in Headers */, + E8C729F2E78EBA9C3A78BB2F6B7C73D1 /* metadata.upbdefs.h in Headers */, + 3BD3CCF9397AAFFB5BF0B86FD07E2A24 /* metadata.upbdefs.h in Headers */, + 59580A61EE1B6998E4FA311F8CFE1C19 /* metadata_batch.h in Headers */, + 1E57A049EB40CB5B40841581137D5D02 /* metadata_compression_traits.h in Headers */, + C0830B6728C29EA7D155D11797E6C4C5 /* metadata_map.h in Headers */, + AFE20D864340D4337063595771DD59CE /* metadata_map.h in Headers */, + 1D9E82705F7480259CC3E7743E822378 /* metadata_query.h in Headers */, + C002D1E253F0C088791E30E213CAB54D /* method_def.h in Headers */, + C7F9E47F66C744CB0BF95559098F0074 /* method_def.h in Headers */, + 1CCDD2192339A55FCF18FE2335F9F420 /* method_handler.h in Headers */, + FB8163B3F341F080AD5820EAA9ECA775 /* method_handler.h in Headers */, + 133EBAA3040250288927BA4B469435DD /* method_handler_impl.h in Headers */, + 87F2A0262C90E7FEE0426FA362367C35 /* method_handler_impl.h in Headers */, + 3702C63048DEA374BCAA68D5716F1331 /* metrics.upb.h in Headers */, + B236783A7358CBE63234CC301FC24EBA /* metrics.upb_minitable.h in Headers */, + 996ED692B68AD67BE1642ED4D12217A7 /* metrics.upbdefs.h in Headers */, + 4A504C630EBC88F14556199DDB8A2B97 /* metrics_service.upb.h in Headers */, + 35FCDAEBFCD3B6E7F904E89E8964E6F6 /* metrics_service.upb_minitable.h in Headers */, + CD5600589EEFEECE0421D3E59F82B989 /* metrics_service.upbdefs.h in Headers */, + 90D58B3A9897FE04B38C0FF7410D6E4C /* migrate.upb.h in Headers */, + 93F779851844FCDBA21B15617028147D /* migrate.upb.h in Headers */, + AB38A5AAD8C7E780826A37C40EF5D847 /* migrate.upb_minitable.h in Headers */, + 8C8C1E6A9DC0D30EE21FEC1D4A858708 /* migrate.upb_minitable.h in Headers */, + 39F2FAAD23B8E0C9BCD20407A4B275EC /* migrate.upbdefs.h in Headers */, + 702D83E52518B9332C6F492411D57D27 /* migrate.upbdefs.h in Headers */, + D70CC347787301732319AD46563381CD /* modifiers.h in Headers */, + F453AE7CC156105D0C9808832D63E920 /* mpscq.h in Headers */, + 9BD7570371714AB465A17184C8E1ACD2 /* mutex_stats.upb.h in Headers */, + 5FC9ED6516B1E70BD9D2DA8012AA4D15 /* mutex_stats.upb_minitable.h in Headers */, + A9A45CC8EB4DEDC79A9D951ABD74169F /* mutex_stats.upbdefs.h in Headers */, + 267B1A4B83024229548C93C12E0CE4A4 /* nameser.h in Headers */, + 0A178DB1EB74AE3811EDC65AF67EE16A /* nameser.h in Headers */, + ACC4C5696CFA5B546829441F7386EAF0 /* native_posix_dns_resolver.h in Headers */, + 95DF9420C8F1474EAEAE866AFB090D31 /* native_windows_dns_resolver.h in Headers */, + D6CFC4ADDA244AD5F38880EFC9B1732B /* ndk_binder.h in Headers */, + FDA0329A7906464D57E4E5E0852A1473 /* no_destruct.h in Headers */, + 7E50B4607BE3754A28D6E025432E7AC6 /* node.upb.h in Headers */, + 3177E3D5C74ED8FA5C83447D35315BFC /* node.upb_minitable.h in Headers */, + E291E034BDB45CB586DD6FA6F1BA3FB9 /* node.upbdefs.h in Headers */, + C63D39E8CF6C603A3093697048FDE9E3 /* notification.h in Headers */, + E06348EFC3A5C3241EBC0EA4C5418ACC /* number.upb.h in Headers */, + 75CBEFE7E54AC0F212FA698B9885C579 /* number.upb_minitable.h in Headers */, + 696762BB6BCB912776DE0CADE4F43AFE /* number.upbdefs.h in Headers */, + 47178510152456BF14D749A769AE9F57 /* oauth2_credentials.h in Headers */, + 99E32F36947E60F947F965964F954299 /* oneof_def.h in Headers */, + 3F8B0CE28BD8D0BA322098A3AB264966 /* oneof_def.h in Headers */, + 66F325B4B049BC5DD1940EE23923159B /* oob_backend_metric.h in Headers */, + 9ED3DEA26784E82C4B944C4923700362 /* oob_backend_metric_internal.h in Headers */, + 34CB20F646A8430B4207E7CFFD28085B /* opencensus.upb.h in Headers */, + 3E0EE01D0D92F8BF65A74D61505F5588 /* opencensus.upb_minitable.h in Headers */, + DDD48F95DC56C50395A5BBA5115EBAC9 /* opencensus.upbdefs.h in Headers */, + 3EB69234EB4F13384B8D97CEB073AA8D /* opentelemetry.upb.h in Headers */, + 2878C4BFC9CDC7DCDCE475A39C8E007D /* opentelemetry.upb_minitable.h in Headers */, + 240DE129DF6C9339837C83DFA65CD853 /* opentelemetry.upbdefs.h in Headers */, + F0A2E421266FA2C5FC8863463FF2BCF3 /* orca.upb.h in Headers */, + 2FEBDFA2B8BE4BE8EFDC103CD817AF0E /* orca.upb_minitable.h in Headers */, + 73331186DD0CE91E9875B06A229F441A /* orca_load_report.upb.h in Headers */, + B658E44EC30EDBEB03F3B58E2551D79D /* orca_load_report.upb_minitable.h in Headers */, + B4D7184105BE161A15B1C4F3CD092D4B /* orphanable.h in Headers */, + 793DF8ECFDA2EC622680810476A81C7B /* outlier_detection.h in Headers */, + 678E6D465E7685098CBC5D68F08E3C35 /* outlier_detection.upb.h in Headers */, + A2A876C6F57E57767EA44F8EC940CBC1 /* outlier_detection.upb_minitable.h in Headers */, + 47FD78FA555AB53564440A4FFF872679 /* outlier_detection.upbdefs.h in Headers */, + 2962EFE685BB6747E0589AD08EB935E5 /* overload.h in Headers */, + C009A9EB8E428C84D71F609E44B2B933 /* overload.upb.h in Headers */, + A2A7394B9A161EA9A3B2DB75F1AE3480 /* overload.upb_minitable.h in Headers */, + 2F0F96A78EE81DEDEB6BA5F731343C41 /* overload.upbdefs.h in Headers */, + 5074C2F49FEE4B82967275EADB187ACB /* packed_table.h in Headers */, + DE80211AD5837002917A6BE54E076AED /* parse_address.h in Headers */, + 06FEDAA232B88ECA990D3F98D85469B2 /* parsed_metadata.h in Headers */, + 73A6920B70780EDA624BA5B3CF022F92 /* parser.h in Headers */, + 4FE3F0CC78016FA75706089538B9423F /* party.h in Headers */, + 31064FC1F08E3288F305B802E70C5EDE /* path.upb.h in Headers */, + 541C4D1331188A1B8264D1E6B614221A /* path.upb_minitable.h in Headers */, + 5267BF3693A2F525E38C6BFA6B262E36 /* path.upbdefs.h in Headers */, + 7B8531550F1026FE67A72B93BCC459A9 /* path_transformation.upb.h in Headers */, + 28BD161A26F67B6BB807E2378525075C /* path_transformation.upb_minitable.h in Headers */, + 47AAEA5AC63F6D244F173840D8C499B9 /* path_transformation.upbdefs.h in Headers */, + 1B0E1B154BB53CBC5075E7AE02E7878F /* per_cpu.h in Headers */, + 8A50A75038B0AB4CB705E377D71D84BA /* percent.upb.h in Headers */, + 4650FA60120702A2013AADF7C6AC6E25 /* percent.upb_minitable.h in Headers */, + 7EE5052926A728C95F99DD403B71EC02 /* percent.upbdefs.h in Headers */, + C7D0652747EDFD0957B8970400411DDE /* percent_encoding.h in Headers */, + C3501B1D07617B28FD9C1AF4B0026A51 /* periodic_update.h in Headers */, + 18FB710CE04876E7DD4D57D5EFBC0BF1 /* pick_first.h in Headers */, + 28818843AFF8F01C2A8FC71F6B8D8409 /* pick_first.upb.h in Headers */, + 4035F39F5C08B7293A35A8832561DF00 /* pick_first.upb_minitable.h in Headers */, + 95B9569C7C59E817BB2320B747812210 /* ping_abuse_policy.h in Headers */, + 3DFDCB82A18CB97792106C4EFDCFB32F /* ping_callbacks.h in Headers */, + 9FC1F6E901DC4EAE81A411959380797D /* ping_rate_policy.h in Headers */, + 28DD25986AAEC92A7AD2A602C7A292B6 /* pipe.h in Headers */, + AAD19C98B8AACD205E897943BF99D956 /* plugin_credentials.h in Headers */, + 7D2288D0A8729417E4AE0DF792C46B9F /* poll.h in Headers */, + 3011D93F145FDCD29B3D6EE43DF1347A /* poller.h in Headers */, + 10DA381980049554016695F881970B42 /* polling_entity.h in Headers */, + F8E2192C9F0B6D506A3D3B15758DAAB5 /* polling_resolver.h in Headers */, + 18027EC423AD38676CE197AD2D300052 /* pollset.h in Headers */, + 865BF517141C30DC0AA427714EA4F877 /* pollset_set.h in Headers */, + F75658BB2B67C7A55F4618E01FC42765 /* pollset_set_windows.h in Headers */, + 63C99061FB7872DF36AFE8ED19021ECA /* pollset_windows.h in Headers */, + 1D1F589F43FC0352D423383C4FB2580D /* port.h in Headers */, + A8F16269577E103460B655236B607D06 /* posix.h in Headers */, + 9BD9D74F5AB508DAA691EDF7EB8605D2 /* posix_endpoint.h in Headers */, + A62D54E64F10250FBB05B6ACA9C70E8D /* posix_engine.h in Headers */, + 517931F4FC3229E491C6D3E333F59C3E /* posix_engine_closure.h in Headers */, + BD00EA2541165465AB6C5AA078F24E10 /* posix_engine_listener.h in Headers */, + BF93F705B7D6120C2DFB66DFDB546828 /* posix_engine_listener_utils.h in Headers */, + 3FAA73648783DD1EF5BB9F84D705BD37 /* prioritized_race.h in Headers */, + E3571AF25F1F5ED7D5BB5002F71CCA05 /* promise.h in Headers */, + 58443EB712CFD484C44DDC0F11DB42A7 /* promise_based_filter.h in Headers */, + F78E4B661ADD32234FD5AB1699265218 /* promise_factory.h in Headers */, + 309278FCFD70372712F7DC95E0288A7A /* promise_like.h in Headers */, + AC3B37220F291E00BA3DF9804B9CC141 /* proto_buffer_reader.h in Headers */, + 8B27A17008B9B2599D7451DBE2D196EB /* proto_buffer_writer.h in Headers */, + BC75A8EF83CF62BCB113F4A14C869B96 /* proto_utils.h in Headers */, + CBD58E8D847C506B5019AC30B9DD624A /* protocol.upb.h in Headers */, + 33A0C3EADE878CBDEBBBBCA4538E29E7 /* protocol.upb_minitable.h in Headers */, + 5D3C4967E6700528BC484B7BED2A9379 /* protocol.upbdefs.h in Headers */, + 0293F747E13F3137E884EF8C8C93088C /* proxy_mapper.h in Headers */, + 1A714CF409913C680D1B2550E231BC46 /* proxy_mapper_registry.h in Headers */, + E0F41E8A960332387187B11CFA5A0B15 /* proxy_protocol.upb.h in Headers */, + BAE4BB90A3B8B66C304B1D662678983D /* proxy_protocol.upb_minitable.h in Headers */, + 64FE298AADF935969AA6B6B6FE079030 /* proxy_protocol.upbdefs.h in Headers */, + 15790819C2AE212534D2E31C54726D98 /* python_util.h in Headers */, + 246BBD3627956F80C5F584043A93B58B /* query_extensions.h in Headers */, + 85C0DE16797862DEED640D21028E1BCF /* quic_config.upb.h in Headers */, + 64BF11CC2485B586BB89028C3EDF701A /* quic_config.upb_minitable.h in Headers */, + 2137C688BECD26FC6D7BAC7161C70E4A /* quic_config.upbdefs.h in Headers */, + 87EAB5D7BD443FDE3FD3725CA5AFA6CC /* race.h in Headers */, + 3E949A919EF7E8ADEB932C61CFB12DD7 /* random_early_detection.h in Headers */, + 95D318C28DE5652A562C5525027DB0F9 /* range.upb.h in Headers */, + B8D581BCE8B15BDB7FD92A1D67AFE88C /* range.upb.h in Headers */, + AD66B4325C9A25F58164A2B3A7136060 /* range.upb.h in Headers */, + DF9A0AAAFCC7BF75694B6B26C908A7D9 /* range.upb_minitable.h in Headers */, + 023A2088363AEF72F1DF069338D4A6FA /* range.upb_minitable.h in Headers */, + 22B3092EF69E8089D46BC2E8A14F8012 /* range.upb_minitable.h in Headers */, + 2AC8587E687F71209AF72F141252316F /* range.upbdefs.h in Headers */, + 47B8563D0656075C18E7526637C44F3F /* range.upbdefs.h in Headers */, + 36E0BD3217257928B4BF009EFB3FD510 /* range.upbdefs.h in Headers */, + 2BA1914962D3DA0FEACF1C742381A720 /* ratelimit_strategy.upb.h in Headers */, + E304638BC53F617FE131A0F2FC4A9621 /* ratelimit_strategy.upb_minitable.h in Headers */, + 7C492E6659F2532C34D6450D7BFE9399 /* ratelimit_strategy.upbdefs.h in Headers */, + FFA2C16FF308B5AEAB662C18B61E3182 /* ratelimit_unit.upb.h in Headers */, + 269FD47506AFC3C870ACD2D38F7878A2 /* ratelimit_unit.upb_minitable.h in Headers */, + 942509D6C43A98DCB1F47217CD389D63 /* ratelimit_unit.upbdefs.h in Headers */, + C0775800D269741FCFF8D549CFD487D6 /* rbac.upb.h in Headers */, + 8D8E1B472D3CCAF74FB367FDE29EB2BE /* rbac.upb.h in Headers */, + 6179813FC16F49BE792D5A7BE56C71F4 /* rbac.upb_minitable.h in Headers */, + D5C7373333561C49D1FBE1C25412B280 /* rbac.upb_minitable.h in Headers */, + 0CA361EEFF69131C11ACA6006A7C00DF /* rbac.upbdefs.h in Headers */, + F054CF7C61DDEAE925DD25348A316E18 /* rbac.upbdefs.h in Headers */, + 422037D576E22CACE155D2F14B4857A9 /* rbac_filter.h in Headers */, + F08142332D4ED1210F54E7C4F7C8EEF7 /* rbac_policy.h in Headers */, + 92C261BF33736E94F33D8896610990A2 /* rbac_service_config_parser.h in Headers */, + 831A2A315EA2C2D374CE5FCFD262ED67 /* reader.h in Headers */, + ED4162ABBDD1FD7F137D351FDEBBD0A0 /* ref_counted.h in Headers */, + 03129D1D3F437E5DD95E066EEFC0AA42 /* ref_counted_dns_resolver_interface.h in Headers */, + FBAF8956B45B1863CCA47714BB6635C1 /* ref_counted_ptr.h in Headers */, + B9E559150528BC555C6ABA34CFC65B4D /* ref_counted_string.h in Headers */, + FB70D35A72AF3BC5A62F25D9BB0A13DA /* regex.upb.h in Headers */, + 30C716AF82A25B7E3AEBD51F2C3471CB /* regex.upb.h in Headers */, + 90EC1370DC45CD3185166CB53F7A3CE7 /* regex.upb_minitable.h in Headers */, + F60F2CA7D7429B89F8A4A5A1C23E022B /* regex.upb_minitable.h in Headers */, + 87EC55926C947F1AF2E37B66D4686C32 /* regex.upbdefs.h in Headers */, + 433BE61EDD02914894D01E260CCE4B79 /* regex.upbdefs.h in Headers */, + A5A7A46CC5248E0783B6DEDDE2581E79 /* resolve_address.h in Headers */, + 1470C988B93481812C8335DD690B3C32 /* resolve_address_impl.h in Headers */, + D6C2D90C4BFD71495C0FA9CF871793BA /* resolve_address_posix.h in Headers */, + 045A37A317B12DDEFB14B0AB3C02417B /* resolve_address_windows.h in Headers */, + E39C58C96F5C07C99B7CD7A82AE22776 /* resolved_address.h in Headers */, + 6E548962B2926FC995127E9EC40FAC90 /* resolved_address_internal.h in Headers */, + 98FCC4115ED2FE6A550D6C7BA2E4CC3E /* resolver.h in Headers */, + B56B7ECB440AC0B0BC02DC349B314482 /* resolver.upb.h in Headers */, + B1D2190DEF50F15DA3F500D5FC6DD392 /* resolver.upb_minitable.h in Headers */, + 851455FA1A1FAE34FA4C5CACFE8304DD /* resolver.upbdefs.h in Headers */, + B0F865BF527DC05AA6B54AA540D98653 /* resolver_factory.h in Headers */, + EC9C12C90BDDD69D4B555039145679E2 /* resolver_registry.h in Headers */, + 990C615F1B5F14B78996157821597FFE /* resource.upb.h in Headers */, + 935171EF135E0B05D2E9F91E1BD90E68 /* resource.upb.h in Headers */, + B962B15638303C02233B81D5DDFB0730 /* resource.upb_minitable.h in Headers */, + 928F6E2B8A8457066A231FEA4EC7BD1C /* resource.upb_minitable.h in Headers */, + 7218351BD39EBCE4066C2E34C9519FA8 /* resource.upbdefs.h in Headers */, + 8B3EF495DDC3CDD7547BEAD17B255255 /* resource.upbdefs.h in Headers */, + A6301F2F743448BB16A8A14DF1F16EF6 /* resource_locator.upb.h in Headers */, + 7DF4FB490073BC4627809C2DCCA3ED8C /* resource_locator.upb_minitable.h in Headers */, + C87515BF1F1194784712C292E8ED5E32 /* resource_locator.upbdefs.h in Headers */, + 3304E0A79B94A78A56B6FF2E99F0ABEF /* resource_name.upb.h in Headers */, + 967BF94166FBAD8501DDF609FEDD24C3 /* resource_name.upb_minitable.h in Headers */, + CEEE0A1F743E04CE4439B8F3560BA8A2 /* resource_name.upbdefs.h in Headers */, + 2C368B018EC45BEAE41190C7F7DC8914 /* resource_quota.h in Headers */, + C617DA79DF539AF129546128AC1C657C /* resource_quota.h in Headers */, + 459ED3D3D8ADE457AF4D597ACEE30846 /* retry_filter.h in Headers */, + 6F5A0CC66E15ABA7C7BCC4CC4195AF5B /* retry_filter_legacy_call_data.h in Headers */, + 1765ED054198E23C6C1DDBBA56A9DCE0 /* retry_service_config.h in Headers */, + B44DBA12D4E3DC8903742E75D978B537 /* retry_throttle.h in Headers */, + 6BB01E837BA3441643869D95487B54CC /* ring_hash.h in Headers */, + DCF362253C736097BD4DD6DA1854F054 /* ring_hash.upb.h in Headers */, + 0DE8E40CF5E26B414162110954D768C7 /* ring_hash.upb_minitable.h in Headers */, + B2F09F209BA42203339E45DB6D25F53B /* rls.upb.h in Headers */, + 45D23C3F8BEF9E3C436C2AC9985DB595 /* rls.upb_minitable.h in Headers */, + 27386EDD2BFA261B8E4AAC4971E03C2D /* rls_config.upb.h in Headers */, + 576DD035B0635744D3BB231FF7C0FEF2 /* rls_config.upb_minitable.h in Headers */, + CD6310760C48E7CE2C840A810688B970 /* rls_config.upbdefs.h in Headers */, + 5FA0CDBEB9D1263D9BB181A13F185BE5 /* round_trip.h in Headers */, + B3D0E4B092807EC38249B945DFD5A162 /* route.upb.h in Headers */, + DA9EDD848B06DDA02E692F46825C96A3 /* route.upb_minitable.h in Headers */, + 645B8564DC767DEF1C898AFF1C61CACB /* route.upbdefs.h in Headers */, + 3FB52EAC948983987F561F069F57629C /* route_components.upb.h in Headers */, + 365D159B070C3C7E913C44C1562960AB /* route_components.upb_minitable.h in Headers */, + 7DF4A77B88EF90D20153DA0560C48EF6 /* route_components.upbdefs.h in Headers */, + 68E3782BF957AF3CF39D720C59AEB8D5 /* router.upb.h in Headers */, + FEAEE8C0A8B40D68007F41D5CA62DDBC /* router.upb_minitable.h in Headers */, + 838871418129CF3CE2FFBA94D98F4469 /* router.upbdefs.h in Headers */, + 04A93A99912F7B5B6CABFBF4F3CB1488 /* rpc_method.h in Headers */, + E1EE63E9AFAD98FBA479061BEF800B8A /* rpc_method.h in Headers */, + 895659F46C39590E322D3FF7E41A4E45 /* rpc_service_method.h in Headers */, + 5ACEBF09E33C00CD825BD96C91091BF0 /* rpc_service_method.h in Headers */, + BC63B372F1C7C57D869277014F867103 /* scoped_route.upb.h in Headers */, + 39840ECD14B76221AC83897569F1CF39 /* scoped_route.upb_minitable.h in Headers */, + B0FA25679070093D9E0D833EDC77541F /* scoped_route.upbdefs.h in Headers */, + 80D18DB2CC0A4A852FD7BFAC307B3420 /* secret.upb.h in Headers */, + AB301B7A5A399B0634559683650AFE32 /* secret.upb_minitable.h in Headers */, + 0E783E3445C9D6FC2AE683EE16B3B916 /* secret.upbdefs.h in Headers */, + BE946994A60086E0680C6869DD948F67 /* secure_auth_context.h in Headers */, + D12CA02F0BD543A8A2A72E9C35685308 /* secure_credentials.h in Headers */, + A327C263E9B09987B23D0F8FEB8EBAA5 /* secure_endpoint.h in Headers */, + 59225B71EA5C6E6AEF60D616DC12EAA9 /* secure_server_credentials.h in Headers */, + 57E0CF11253AB31E6619D0976AE966A4 /* security.upb.h in Headers */, + 9EC64EF850822244F5A872ED266EC155 /* security.upb.h in Headers */, + B4DEB8802FD958F93EDF6930DE398DDE /* security.upb_minitable.h in Headers */, + D3A120496B8CB982C706A4772B176B5B /* security.upb_minitable.h in Headers */, + 9E927C132DC9E421225DA533C7C14382 /* security.upbdefs.h in Headers */, + F32BEF733DBF46756A77A68F737C37D3 /* security.upbdefs.h in Headers */, + C7046679279941174FF9EE30FDC9A0A4 /* security_connector.h in Headers */, + EF5947F21AC32D6EB4A35D85664E04AE /* security_context.h in Headers */, + 06AA6FD511BE44DC55A2CF3910A1EBFC /* security_handshaker.h in Headers */, + 3C5AE7A93EC96719033C59C0B302BD02 /* security_policy_setting.h in Headers */, + B33E880F78DCAF2817074135FB37C02B /* semantic_version.upb.h in Headers */, + 0EEF457DD179C0EEDED44EAA5D5A76F5 /* semantic_version.upb_minitable.h in Headers */, + CE84841957EA4A08C3469200644A081F /* semantic_version.upbdefs.h in Headers */, + FF002F5B87B29F406749B0E8FE3F1D90 /* sensitive.upb.h in Headers */, + 9BA8A9FAF0F1D2DBA3B82DE5A0AD5F1B /* sensitive.upb.h in Headers */, + DF91F18147E4AC61E53E6AE3B5600FD5 /* sensitive.upb_minitable.h in Headers */, + 9E2623915AB2718FAD46F6114340FC35 /* sensitive.upb_minitable.h in Headers */, + 29ACCFA2FA14DBB77936C21C3BDE9785 /* sensitive.upbdefs.h in Headers */, + F25FC1A7C47EAD15865049143181FB7B /* sensitive.upbdefs.h in Headers */, + 6416A1503BD54BB49506AB1B879AF51B /* seq.h in Headers */, + 07F19D070B566DBEBEF6E984E44643CA /* seq_state.h in Headers */, + C7158C307087AA8ABD8F6F6E43DA6C21 /* serialization_traits.h in Headers */, + 74159E94F7973A7EF8A463122BC9348B /* serialization_traits.h in Headers */, + 7BF4AA5297FE1B7E240766AEBD682F74 /* server.h in Headers */, + 62E39FBC3701DD85ECC1D1B8F26ABDC0 /* server.h in Headers */, + 7A01295E1A7319A674EE747F922B974B /* server_address.h in Headers */, + 2A8DB82436D1DB4564E05482E0A076D7 /* server_builder.h in Headers */, + FC6F0685F92A57F010A054C1A76B0201 /* server_builder_option.h in Headers */, + 98E9AACDF1EB3A1CB56B1F5B683ED9B1 /* server_builder_plugin.h in Headers */, + D63BC45EF5E36AD510E9875400102F6E /* server_callback.h in Headers */, + 8D68E1E2772F5672755247D09B6E5E44 /* server_callback.h in Headers */, + D15ED46DBF4C775BED46A638D66AA383 /* server_callback_handlers.h in Headers */, + D2E48ABACB5B0D19C59D3D11B7651C53 /* server_callback_handlers.h in Headers */, + 32ECFE1EFEC7FE9E0C3D1CFEB2C813F2 /* server_config_selector.h in Headers */, + 5E149873A7BE0513428BCF8A749745FA /* server_config_selector_filter.h in Headers */, + A6450F8E92F039FC19BD6F17F99B01B2 /* server_context.h in Headers */, + 494212C421A1BA9B65E3948CAB3FA1C5 /* server_context.h in Headers */, + C331FF17191FB8ECF72DDC256BF56F11 /* server_credentials.h in Headers */, + 79B48EA0001B7510489E8A94ADAAB928 /* server_info.upb.h in Headers */, + B1730542630C6DD590C6E3D43B5918BD /* server_info.upb_minitable.h in Headers */, + 1929F46764DAC4A6628AF396487DA2B9 /* server_info.upbdefs.h in Headers */, + 4BC886F653CC39ED833D4042913909C7 /* server_initializer.h in Headers */, + F0DB3E63BEC2F811F722FF88ABC94284 /* server_interceptor.h in Headers */, + ABED6E688924E8322FEC61452A97EFC9 /* server_interceptor.h in Headers */, + 4A58DB470CB9309C4C76432B2C821310 /* server_interface.h in Headers */, + DC8E8A502011DE3D92CCAB4455E3E851 /* server_interface.h in Headers */, + 3602BC23E6D653027FA9200067A3EC00 /* server_metric_recorder.h in Headers */, + F13CCDE6E74600D58F34F684969C55AE /* server_posix.h in Headers */, + 6719698AAC672AADD262954001455AD8 /* service.upb.h in Headers */, + D9E481B2429B7ADEE6D90DF1982A07B4 /* service.upb_minitable.h in Headers */, + 2F967A79F5BA046AB3F4367870746598 /* service.upbdefs.h in Headers */, + FB6626900CFFE892DB17944276E17E61 /* service_config.h in Headers */, + 82FABAC06071348365495608E781BE10 /* service_config_call_data.h in Headers */, + 303BB17AEEA22AC19110E97B8B9C96DA /* service_config_helper.h in Headers */, + AF5CC122F8CB37E9BD73F59F1F3D7E8D /* service_config_impl.h in Headers */, + 05A14B2336B2C6C77A57FC9D32E0467F /* service_config_parser.h in Headers */, + 01A7853F11184B572E153ECCE5A72EA5 /* service_def.h in Headers */, + D347DD14CB7D49AA67C0605214FB92D5 /* service_def.h in Headers */, + AD9ADAE42B82E60F632BC7B322C78D83 /* service_type.h in Headers */, + A3CF7DEEA420F3D2B3F389C7AAA6CF59 /* service_type.h in Headers */, + C607BE606FDE776E13F084E4BE6249E7 /* shim.h in Headers */, + DF81340698B8565DB8E3E7FA851EE66C /* simple_slice_based_metadata.h in Headers */, + 3C8FD6DE474F6ADF6FCA802900529E3C /* single_set_ptr.h in Headers */, + BCBB1F5DA26FA5CC91637A2F2A4C35B4 /* skywalking.upb.h in Headers */, + AF5B8700667D61560548B2C18B2BC383 /* skywalking.upb_minitable.h in Headers */, + 64A417B91E30FCC93A7A2D838F1DCAC2 /* skywalking.upbdefs.h in Headers */, + EBA4F775410612E6FA6DF4C9A3A9193D /* sleep.h in Headers */, + B9B04738358CD24D7765DEEF14C7D4C9 /* slice.h in Headers */, + 0A3E8A513DEB8EAF7BBAE68959E6D098 /* slice.h in Headers */, + 0CA6EE3494D23AA495C1E7CAB8CA7AB3 /* slice.h in Headers */, + 1CDBBC5171E4F92FC6D93D0B3ACB092D /* slice_buffer.h in Headers */, + 4E2F6718B94000D998B3ED438A08F291 /* slice_internal.h in Headers */, + 6B7A33661C51B16128402343BF14BB43 /* slice_refcount.h in Headers */, + E5CDAAD9B3F388A969D4AFDC1DA30116 /* slice_string_helpers.h in Headers */, + 2765D283E82FCA31D83F945D5EB8D433 /* sockaddr.h in Headers */, + 905300B5B7CFD3EB48BA2050A8817824 /* sockaddr_posix.h in Headers */, + 03C85CDE31EF4EF1D1329697CDBF284E /* sockaddr_utils.h in Headers */, + D7045E6076E656984448DF38FEC38395 /* sockaddr_windows.h in Headers */, + FE055D513BB869EB932D998EDEF5A502 /* socket_factory_posix.h in Headers */, + 12F52531EA8040121BED2B89B3B1A386 /* socket_mutator.h in Headers */, + C1211F2CD6C62DE3035BF4B22AB491B5 /* socket_option.upb.h in Headers */, + 8F46C87627D381B7B5B1B50971AF1391 /* socket_option.upb_minitable.h in Headers */, + 66A4EA75625B3F22E7406D3B9363684B /* socket_option.upbdefs.h in Headers */, + 9300921739F320BB6FA275322C712AC2 /* socket_utils.h in Headers */, + 7EFF0189F9839F189674CAB0404943FA /* socket_utils_posix.h in Headers */, + 94522117D895215DAA8B8E61C3EE91BB /* socket_windows.h in Headers */, + 83DC98F910E449FF9DABCF49168EBB2C /* sorted_pack.h in Headers */, + 1914F809AD5C9BD9A9CA594F13BF99B6 /* spinlock.h in Headers */, + 060D132A38FEB4FE7F828321481A907C /* ssl_credentials.h in Headers */, + 771DC84116A1340616F9CD6463CC1DCA /* ssl_key_logging.h in Headers */, + E4A99ADCD339D5A6385865E3B6C8798E /* ssl_security_connector.h in Headers */, + 54A1CB2252C165B70D6A80358151093A /* ssl_session.h in Headers */, + 6F83CFA9E0BCD05A2466EF3792C51CCE /* ssl_session_cache.h in Headers */, + 04B414699CDB57C82E284403DFC7CF5B /* ssl_transport_security.h in Headers */, + B8932C6D6331B2F4C9B6BAF2ACA9C071 /* ssl_transport_security_utils.h in Headers */, + 1656BA993CF89EF6093B165CCD737170 /* ssl_types.h in Headers */, + F757B268452FA06C6B62F3E22A81FC98 /* ssl_utils.h in Headers */, + C507F96F5E8924FD68A3770E0278B6F0 /* stat.h in Headers */, + 97ECB8CCA2581C8934CAC744B67CADB6 /* stateful_session.upb.h in Headers */, + 7190958498EADFEB162BADA219ADF7D5 /* stateful_session.upb_minitable.h in Headers */, + DEE0D23EC308BA6B3EE613B63550D504 /* stateful_session.upbdefs.h in Headers */, + 8CA2320CC715B47AE14A336948307E00 /* stateful_session_filter.h in Headers */, + 170E32A7083F716F54F088C9F889EAE4 /* stateful_session_service_config_parser.h in Headers */, + C028D977A8D883132FA6A3FE5906162E /* static_stride_scheduler.h in Headers */, + 16006D2A8759495DC683CD7F8338C079 /* stats.h in Headers */, + 18B39E230E7DD76EC703268D682F59E7 /* stats.upb.h in Headers */, + 4157F890F88BD7616E1113E049F2CFD3 /* stats.upb_minitable.h in Headers */, + 6F6FA763DDF8B93B88950134F4C4169D /* stats.upbdefs.h in Headers */, + F36279D8BF7F9C26A001B6D6C076D542 /* stats_data.h in Headers */, + 969560C37222E6983C9595DC20329759 /* status.h in Headers */, + 51461D9CEE41CCD1C6EC011A5075CD27 /* status.h in Headers */, + 0181056BDEF0A674B56DD488FC27202C /* status.h in Headers */, + 8F94577928A081CD02B608A63934F267 /* status.h in Headers */, + 9753734687B73309BDBF609C3578034D /* status.h in Headers */, + C00AFE726C732E1387CAA1D1D8B7C87D /* status.hpp in Headers */, + C14C8EE3FEA8E7A33F1AAA37565126A8 /* status.upb.h in Headers */, + 25DC80DB1400295CA99DBC3FCE5DB758 /* status.upb.h in Headers */, + 5D0E30E2FC0ADFDB01BC4971A46D9196 /* status.upb.h in Headers */, + 51154F164B6228BF1E680B7F3528B5F9 /* status.upb_minitable.h in Headers */, + 43CA01B445011273C04DE97E5204DA51 /* status.upb_minitable.h in Headers */, + D0D0443C68EDF5FFFE7E6E275694B7BC /* status.upb_minitable.h in Headers */, + 0F28A4A37BA769A87CD466B8797E6329 /* status.upbdefs.h in Headers */, + 047F09157179FF4FEE00EC311B0DAAD5 /* status.upbdefs.h in Headers */, + 5368B1C85D739F8EFF5B8612A78B2FE7 /* status.upbdefs.h in Headers */, + DE17BD9B5F126D2D02D267B38DF9B26C /* status_code_enum.h in Headers */, + 6D35D73E290EFEEA4B057CB98EF66332 /* status_code_enum.h in Headers */, + 4FC7E998A718B52910B48F4E0640DFDE /* status_code_input.upb.h in Headers */, + B66DE4675BC7EF0995B687612E94406A /* status_code_input.upb_minitable.h in Headers */, + 3989027B4EA65EA85208F499800F0D96 /* status_code_input.upbdefs.h in Headers */, + 866D3B269856A2509573ED9BB82DD039 /* status_conversion.h in Headers */, + 3B7DA705F27787695F529BF95D6FF072 /* status_flag.h in Headers */, + A933B13CF16F6F404B0C588B377291C8 /* status_helper.h in Headers */, + 09CB75228D60EBB3F9AA34BA3A5BD561 /* status_util.h in Headers */, + FA97050FDA16226DDE2CB35E44413897 /* stdout_logger.h in Headers */, + 08A924439807A594D4FE7F6E9298F6E4 /* str_table.h in Headers */, + AA8212516820A977AB05E6420BCDA755 /* strdup2.h in Headers */, + 907D5FA1048238007DC30B7955D76ED5 /* strerror.h in Headers */, + D607FEFF0E65A1B378577100AB62F07D /* string.h in Headers */, + C908A0ACB78E43EF3E154E121E596582 /* string.upb.h in Headers */, + AA0B27DA1CE3B5D0B8FDE395D289CEC7 /* string.upb.h in Headers */, + C06024994619295C46B67C4405F9A91A /* string.upb_minitable.h in Headers */, + D5FE0889656E036F6D08AE773365BEC2 /* string.upb_minitable.h in Headers */, + E891213660F290BCFD45B63F3333DF8F /* string.upbdefs.h in Headers */, + 664D79F7C718836925CE59BBB8E16637 /* string.upbdefs.h in Headers */, + FC73F7FF3136A4E486B9D15CC6E2860D /* string_ref.h in Headers */, + 42088085EBBDC974FC574564BB131389 /* string_ref.h in Headers */, + F3420E4CA9FC637CA59ABC4DB29B0E92 /* string_view.h in Headers */, + FA2326A98F17DB6780BD577048D4048E /* strtod.h in Headers */, + AB0F74EACFB0818D1FD597ED7073F19A /* struct.upb.h in Headers */, + D8A03D30CB0657DFE3BC5B8FE9554E31 /* struct.upb.h in Headers */, + CD6246F3388AAEB4B183411CED8EF52D /* struct.upb_minitable.h in Headers */, + 40A471C92D5A7453EE9C4AE2660BF397 /* struct.upb_minitable.h in Headers */, + BD915EC55DFF9D57C1062C31075C2673 /* struct.upbdefs.h in Headers */, + D5C2DCE889B07C4151DC809AF0B91106 /* struct.upbdefs.h in Headers */, + 9B42D1AB011E63A84EAD5A93389D89EA /* stub_options.h in Headers */, + CB3BCE1BE874CBF70B30CDA53836B284 /* stub_options.h in Headers */, + 64C0842CEFCB1D54CE9BA5139BE04C9B /* sub.h in Headers */, + E8D1CB6FEF203B183273BB252A28B47D /* sub.h in Headers */, + 4EB803766AAD2DD075CFDD4BD92CD513 /* subchannel.h in Headers */, + E0CB4DF99F77EFD4FBA92D44DD22C327 /* subchannel_interface.h in Headers */, + 78B8085FC79A9EA940D35B0778994BDE /* subchannel_interface_internal.h in Headers */, + AF9BAABB9037E66CE7350A5B085B4644 /* subchannel_list.h in Headers */, + 33B38B2C957A0366FB556270820A0F43 /* subchannel_pool_interface.h in Headers */, + 8F1C6379D19BBB9649431FCAF05973C4 /* subchannel_stream_client.h in Headers */, + 3B96F2FC4C5D9FA3EE678D0EE229B633 /* substitution_format_string.upb.h in Headers */, + C724A5D13D3B8F193AAE93DB46324821 /* substitution_format_string.upb_minitable.h in Headers */, + 1D78F9143B3F26DBDBAA6AD7696C61A6 /* substitution_format_string.upbdefs.h in Headers */, + 32F897D199F3C971E71CE881C7B225E0 /* supports_fd.h in Headers */, + AB1A9842A2025BDBB4681C4213CCA477 /* swap.h in Headers */, + 076789E1E87904520C801E79831D2B9B /* sync.h in Headers */, + 2D60A5CE98369646492110A9E630567D /* sync.h in Headers */, + 56E40CA19BC6DBC8C7217B3205A2A2F6 /* sync.h in Headers */, + 8CBD571DB9D806DB555AB749B3AB7774 /* sync_stream.h in Headers */, + 5B46A49599D0F2405E4D5BEE1CE365C6 /* sync_stream.h in Headers */, + 1C7E900A05B28382F115D83D0EFFFCD5 /* syntax.upb.h in Headers */, + 2CA8E1BEDE9E2191E0419D99C287FAFB /* syntax.upb_minitable.h in Headers */, + 138EE8DDADB132BAC81C82EBD05A3ACB /* syntax.upbdefs.h in Headers */, + 5856C1466DB1DA6C52F4F0130DD360A3 /* systemd_utils.h in Headers */, + 5B97D41EF3BEA78AD2244E8646000EE1 /* table.h in Headers */, + 4C1D1161348D585CB4614B5F4E662AF2 /* tagged_ptr.h in Headers */, + 76F2C5A7DA29804D778A98A882DE364E /* tap.upb.h in Headers */, + 60776B8128D85516283211836BAFD516 /* tap.upb_minitable.h in Headers */, + 8E5D0066FF002B16C108B68C5A779C7E /* tap.upbdefs.h in Headers */, + 58921EAC4C1D297EA38555D5AE8F7C84 /* tchar.h in Headers */, + FFE002C43C210B6EB54D13C5F79083AA /* tcp_client.h in Headers */, + ED25C3D7DBE1FE059E6AF409A04877F4 /* tcp_client.h in Headers */, + 34D898B5BD6A679E3AAA7EB399DC706B /* tcp_client_posix.h in Headers */, + 74DCBC722125DE48E34440D77D81407A /* tcp_connect_handshaker.h in Headers */, + D13EA0CB3ADE7F90FEFB63AA8240965E /* tcp_posix.h in Headers */, + 895294929E52B696C940E62F2D44FBEA /* tcp_server.h in Headers */, + 5F28067DD435C7656C0759D6EFC20DC6 /* tcp_server_utils_posix.h in Headers */, + 10F03276515C407C5CD785E69B90C634 /* tcp_socket_utils.h in Headers */, + AB80911985AA9810D43905CF6BB236FD /* tcp_socket_utils.h in Headers */, + D398F273F40A1FEA2C75285BCE74AA83 /* tcp_tracer.h in Headers */, + 4DC06928DEB8598AC2AF5095497FC46C /* tcp_windows.h in Headers */, + 7DAEDAEE857FCAF232945F004C6A2964 /* thd.h in Headers */, + B2CA92A85034CB8FCE90B7ECE2F21475 /* thread_count.h in Headers */, + A87F2F741CFBF252D57E8BB768378C13 /* thread_local.h in Headers */, + 39A2CC0F46DAAC1E4A81D748498C9E94 /* thread_manager.h in Headers */, + 08C3BC3FF9F08C1F21E7C879656F69C7 /* thread_pool.h in Headers */, + E38877EC5858D9A6FA9C3E965F016EB2 /* thread_pool_interface.h in Headers */, + ADEB79C95A0BD7A6C6EE6B2DC45EBFEB /* thread_quota.h in Headers */, + 81381332FD3B3D24491496584A4E4FE1 /* thready_event_engine.h in Headers */, + 3A59CEE43F03A495144A1AB2D1C0D962 /* time.h in Headers */, + 9DA544F7BC5C34F8A432CD1988D31D44 /* time.h in Headers */, + 907EB45F903CF99976B422B256B73996 /* time.h in Headers */, + 59A1161854A99105A7F615CE180F874C /* time_averaged_stats.h in Headers */, + 918ADA61321AEEB9FFB323CEF23D9CB8 /* time_precise.h in Headers */, + A9DF9C574DCBE3AEB263A03B570238D1 /* time_util.h in Headers */, + BECCC0B53DD0F4C7F454954877952257 /* time_util.h in Headers */, + 270E31B221A518DE1F01115842A1F8D2 /* timeout_encoding.h in Headers */, + 258ED54C0049EF1E509FFDCAE3D6D7DC /* timer.h in Headers */, + 37C3F168DDA34DB228F95BE62E59C716 /* timer.h in Headers */, + 656A427F1722FF5208860E12D21AA7A5 /* timer_generic.h in Headers */, + EF0EA7397F2A4B3FB14AE2A7897E0E80 /* timer_heap.h in Headers */, + 3FA76183BC738BA403A3D14F3303DFA8 /* timer_heap.h in Headers */, + 0C03B41A6E0504BF2D4FD5EAD538094F /* timer_manager.h in Headers */, + 9822247DD3CF202C3DB36DF467F6AD86 /* timer_manager.h in Headers */, + 2DE9F5973E6B7EC03D7F6A27A1503235 /* timestamp.upb.h in Headers */, + EEF7E973729DF12DD3A1513F77759141 /* timestamp.upb_minitable.h in Headers */, + EC0212893FA2FB01B397324C50C91A87 /* timestamp.upbdefs.h in Headers */, + 727A2464A7FA3DFDFBC910FDDF856985 /* tls.upb.h in Headers */, + 7E9FF8FB9EA41CCC57DD3BEDB370ECBC /* tls.upb_minitable.h in Headers */, + 000625CDC1FF83B0EF0F98EFAD93C994 /* tls.upbdefs.h in Headers */, + CE301CD89EFF5070890CA567A1A010D5 /* tls_certificate_provider.h in Headers */, + BCEA89C0F36DEFE08D141E380CC90CDD /* tls_certificate_verifier.h in Headers */, + 1BDC3CB52C746EF9362393F9C64B9953 /* tls_credentials.h in Headers */, + 82C2811BF3C85A22C76FE821B3B77103 /* tls_credentials_options.h in Headers */, + D0106A1F0D9FE19761488D50BCE02A2A /* tls_crl_provider.h in Headers */, + E411B253E176F01620379060C0233A59 /* tls_security_connector.h in Headers */, + 859CB153C08AE779C72B95EB5F55A78E /* tls_spiffe_validator_config.upb.h in Headers */, + 34625B468EDDA6F5A3DA1C384BFC6115 /* tls_spiffe_validator_config.upb_minitable.h in Headers */, + 2CE25C18E185B7FF2442A0B05D4E0AD6 /* tls_spiffe_validator_config.upbdefs.h in Headers */, + B44158E5C755BBA9AF1A8C2F82BD7F81 /* tls_utils.h in Headers */, + 97961435C3DF75F54696D36932398BFC /* tmpfile.h in Headers */, + E6C6531979E8631EDE123FA4F5BABAB4 /* token_bucket.upb.h in Headers */, + 93632EAD54E47475E7A9515B83DFAC28 /* token_bucket.upb_minitable.h in Headers */, + 9B5EED7D2A7AF1FE0AE0551BCD2ADF3D /* token_bucket.upbdefs.h in Headers */, + 708038F0B8745B12FA6E9D989EC1F266 /* trace.h in Headers */, + 1BDB47E38F0A878CDADE07DA55D7A016 /* trace.h in Headers */, + 45CC1AA308AC3B73C2779AE22E383721 /* trace.h in Headers */, + D30F04E1E0B8F7EA027CACE3799F79FC /* trace.h in Headers */, + 898F9C9F233F51BCF72E12A0F876E888 /* trace.upb.h in Headers */, + 569816E08C0FEB319E06313700DFBFBF /* trace.upb_minitable.h in Headers */, + D8484304458F14EBBE42D060F47E4E4F /* trace.upbdefs.h in Headers */, + 34967D47A229A54491014C744FE3486B /* trace_config.upb.h in Headers */, + DE7ED3F08F4A9EB640BA0E42C5A921A2 /* trace_config.upb_minitable.h in Headers */, + 01FED1B0D7A86A1E17A098E84565FED8 /* trace_config.upbdefs.h in Headers */, + BAFBFC82AB3D0F09F130513E76AFCC1F /* traced_buffer_list.h in Headers */, + DE31E6EA4AB70C52C3FC305A92B74584 /* transaction.h in Headers */, + F1FA92406F38837D95D213D6345130F3 /* transport.h in Headers */, + A5A8F318DACD5DD2EF8EB0E62BDC2335 /* transport_fwd.h in Headers */, + D5607C72B10942F9E2430E5F85E5C9F8 /* transport_security.h in Headers */, + C9747241A9452DBA5209493B5695FCB5 /* transport_security_common.upb.h in Headers */, + F21EF6F92E8CE36FD3B5C1EBF3022B46 /* transport_security_common.upb_minitable.h in Headers */, + 1D843FF77A918E468DFD2732A2B8015E /* transport_security_common_api.h in Headers */, + BD4CE22BFF44328C6968DD429865B23C /* transport_security_grpc.h in Headers */, + A7B3D91BE7FF7DF5985CD40DF0D80EB9 /* transport_security_interface.h in Headers */, + F23FF8C6DA39A60192031F948CD51BEC /* transport_stream_receiver.h in Headers */, + B8AA2490D6FAAE89FE4F872C41CD56FF /* transport_stream_receiver_impl.h in Headers */, + 7B7C3BB80E40032AFA274AB5B5EBD895 /* try_join.h in Headers */, + 809BFFC4CC793F9CD1D462495E5FCB05 /* try_seq.h in Headers */, + 40E4FC657A96788CE15967827C317FA5 /* tsi_error.h in Headers */, + D71E2B0A2A393A5121A16028ED517832 /* type_list.h in Headers */, + 74461BEDA10E721A8D5CF808326E7A1E /* typed_struct.upb.h in Headers */, + A4971209C5C62C2A7ABF31DB0A3DD74D /* typed_struct.upb_minitable.h in Headers */, + 008C5E4A357BFE4599037117AA1F171F /* typed_struct.upbdefs.h in Headers */, + 12195C486C57A58CD42F3F9D14FBD4BF /* types.h in Headers */, + C2D0F469D71D6D6132F86B122F030AC7 /* types.h in Headers */, + 5F42656DF580BCE32A62ECCC10E48BB6 /* types.h in Headers */, + 522E8255803C50EC58AE17A6ECF5610A /* udp_listener_config.upb.h in Headers */, + D1F852F53DB1F55A0CD35B01E8EC835C /* udp_listener_config.upb_minitable.h in Headers */, + 69EC3A335EF940D91C47C0329CD56796 /* udp_listener_config.upbdefs.h in Headers */, + B0C7A1DC2951D2B46379F4EC4458340F /* udp_socket_config.upb.h in Headers */, + 1405AE3D2B12CA0510B13E57535D9E01 /* udp_socket_config.upb_minitable.h in Headers */, + 7D91DC83BE10388361C60760E90B76F6 /* udp_socket_config.upbdefs.h in Headers */, + 56781B3EAC53932CBC1714D212C9CB6D /* undef.inc in Headers */, + E276D59B22EB05C0E515E4D9C61F3BDA /* unicode.h in Headers */, + C354F41A641DFC04FC3677DCCF591558 /* unique_type_name.h in Headers */, + A58ED9A871479BB428875AE8E38EC4BE /* unix_sockets_posix.h in Headers */, + 7B9D8EBB0B323C8EC60FD1EDD9D3CD9D /* upb_utils.h in Headers */, + A8D6FC4D551E0BA9336241244F0E240C /* uri_parser.h in Headers */, + 5C6CDF1CD57CAAF7F5AB197FCCB9CB44 /* url_external_account_credentials.h in Headers */, + 955A35896C964BBC5AC1BBA0B8E8E1B4 /* useful.h in Headers */, + D2C0F724F6CDC268B841F6A79E3D426A /* utf8_range.h in Headers */, + 0476C1DBDBE9ACD2B33B76AB06E2B052 /* utils.h in Headers */, + 075DEEB6279A4E180C7864FD18DC4433 /* validate.upb.h in Headers */, + 73E9FC00C3896A68BD14BAD00681C17B /* validate.upb_minitable.h in Headers */, + AC71E40CE5623D1CE157F33682A6A640 /* validate.upbdefs.h in Headers */, + D5FE6D4FA9807933E5E78AEE9EA2E3ED /* validate_metadata.h in Headers */, + 1E1666137736A2C4845C6276DD73BF3B /* validate_service_config.h in Headers */, + 2142C0168FA4564C1F71766E9E988490 /* validation_errors.h in Headers */, + 9CC2AAED08501F746DEC80204F389DB7 /* value.h in Headers */, + 9D7EA9D47752EB7B5C2555A39E6C639E /* value.upb.h in Headers */, + 850E3665244BE4B008342F82CD806212 /* value.upb_minitable.h in Headers */, + 7750C0E6D80EFBBCF1D79083C32AA825 /* value.upbdefs.h in Headers */, + CA2E326EC041DEF9F67251485D597F0D /* varint.h in Headers */, + A27A86E8B93735219D79C6A591D5C88B /* version_info.h in Headers */, + D4566403117E393CA77D516E4B86127A /* versioning.upb.h in Headers */, + E3F11A0179EC7F16843B378E15755376 /* versioning.upb.h in Headers */, + E3FCFDC6BEC0C702D2608AD9B054B671 /* versioning.upb_minitable.h in Headers */, + E8DE2A5D033029050F6A8C6903ECD341 /* versioning.upb_minitable.h in Headers */, + 828617AFAA3A071151D5D8218FD19A45 /* versioning.upbdefs.h in Headers */, + 30B04B3AA4BCB314AB5B4B6660518DBC /* versioning.upbdefs.h in Headers */, + 03439B2E7006CA6067FE59E6515642A9 /* vsnprintf_compat.h in Headers */, + 5D870E8A7230CCE1BDE50DA49AFDC26A /* vsock.h in Headers */, + 3A070DE99FCAF2B4F583F8F38055C287 /* wait_for_cq_end_op.h in Headers */, + 7CBBCE24927F7300B98DA5C59A9E2589 /* wakeup_fd_eventfd.h in Headers */, + 4059375BFD7C88B7A48A441B795586F7 /* wakeup_fd_pipe.h in Headers */, + 95535D60531266E44B64D385F7B0B1DB /* wakeup_fd_pipe.h in Headers */, + AB493D3FDF8E5CFC3BD7BD7512C5D686 /* wakeup_fd_posix.h in Headers */, + 78F621E01B917E2801C0977F9EBA002F /* wakeup_fd_posix.h in Headers */, + 3601157250FAC20A67B47D4E5A75C354 /* wakeup_fd_posix_default.h in Headers */, + F6B96E4D60D759B98AC95F7834EB6EB7 /* win_socket.h in Headers */, + 4F85AEC57F3DEB4DB923EBC38D0FA97B /* windows_endpoint.h in Headers */, + D1CB77DF778FCE000795B9A5F2B0828E /* windows_engine.h in Headers */, + EEFD93EDE23663227A221DF0F6AAA71B /* windows_listener.h in Headers */, + 6EECDAA0665E56CF0691BE2E6CB1C430 /* wire_constants.h in Headers */, + 534CC9957DC12F5E80ECE83A6A60F611 /* wire_reader.h in Headers */, + 2A925F54EEAB35618A6D13ABE14B10FE /* wire_reader_impl.h in Headers */, + 7ADB574AC9A4C06AF4B5E959FD1B53DC /* wire_writer.h in Headers */, + 6A8F74E7BC3ACB12B3314841893A54AF /* work_queue.h in Headers */, + 76F74F8ACAAA177105B06F1418801C19 /* work_serializer.h in Headers */, + 7630F3EC6B23291894C39DC909F4C9BF /* work_stealing_thread_pool.h in Headers */, + D3C34285AE121D8DACE536B451924641 /* wrappers.upb.h in Headers */, + 0C3EA89A7E959FEF09AE0579C30CF710 /* wrappers.upb_minitable.h in Headers */, + 7C30EC44B2412A6D2C13EC9937BCF0EE /* wrappers.upbdefs.h in Headers */, + 565D012CB1F6D969851216D0D68B07F7 /* write_size_policy.h in Headers */, + 1AAC94305C9BC4E89D8125275D79EBA3 /* wrr_locality.upb.h in Headers */, + A11658D64D99F4F317305108F92C6F7D /* wrr_locality.upb_minitable.h in Headers */, + 5EEF10D888CBC161903DE9CF0FB1189D /* xds_api.h in Headers */, + B167FD63735DC1A6F13A68A1934B71A8 /* xds_audit_logger_registry.h in Headers */, + E70C8692617DCCCA99BEEBA549411074 /* xds_bootstrap.h in Headers */, + 8E56A7CEEC54DE1D064412F49A42542B /* xds_bootstrap_grpc.h in Headers */, + 801F3B94D8783CE3F80BA0D1640AEE8F /* xds_certificate_provider.h in Headers */, + 7566DEE0827A81A974B15102669C743D /* xds_channel_args.h in Headers */, + 16B3A1D4E64419E0B4CB2C5225294E9E /* xds_channel_args.h in Headers */, + 920F43889D667527D2DF018A389C18D1 /* xds_channel_stack_modifier.h in Headers */, + 56C8038C3312BA6F400E7A27176EC0DF /* xds_client.h in Headers */, + B25389B44E8F4E6571C5B0E952292A98 /* xds_client_grpc.h in Headers */, + F7138B0AC83D58377DE14A903D656453 /* xds_client_stats.h in Headers */, + 6B7E36C3F805F5953B4CA4737DAD8A70 /* xds_cluster.h in Headers */, + A0857D240E7D32EDF2CDAF6F44FEE2AC /* xds_cluster_specifier_plugin.h in Headers */, + 8C26571A5ACE33D30333773FB0E96B00 /* xds_common_types.h in Headers */, + C93E18E812EBA6B8DCA90993634256BB /* xds_credentials.h in Headers */, + 741B673DB3BACD86D8CC4F074B277E07 /* xds_dependency_manager.h in Headers */, + 8645F8BF864E4580E56D09020D970752 /* xds_enabled_server.h in Headers */, + F82CDA211FDBEC463B18C6995C6F2079 /* xds_endpoint.h in Headers */, + 6E856D89DA01C5FFE8C5B81BAABC7871 /* xds_health_status.h in Headers */, + 2B6FE2060291463AC2730DE0819106E9 /* xds_http_fault_filter.h in Headers */, + DA714D878CBC79A98B5D8035DC49E37D /* xds_http_filters.h in Headers */, + B4B08F2F58A280D8E2669EDB30F8DD11 /* xds_http_rbac_filter.h in Headers */, + 78D50104551B9879C09FC90D0AA8A805 /* xds_http_stateful_session_filter.h in Headers */, + CAC86B9952C58554849B5ACA12353CB7 /* xds_lb_policy_registry.h in Headers */, + D8305FD392DBE3742CC876767CE03EA8 /* xds_listener.h in Headers */, + 4887C9174E9DEE754F4A67C205A2B869 /* xds_override_host.h in Headers */, + 1B0C58DE48E645E444D891B4E0C0833D /* xds_resolver_attributes.h in Headers */, + EB702F128D0DF3EBFBE12E9279F29355 /* xds_resolver_trace.h in Headers */, + DD8E263B5C118A67DD29B59A3D7996B9 /* xds_resource_type.h in Headers */, + AFF51A8E21E96B14100CE2320B237C53 /* xds_resource_type_impl.h in Headers */, + C4DFD0950BCB9B53B31DB2B158D2F6F4 /* xds_route_config.h in Headers */, + 7745C007711FE7942818DA36768AE4F9 /* xds_routing.h in Headers */, + 42C9247FC36853A6AC1D2CDEAD47F53A /* xds_server_builder.h in Headers */, + 9105CA59E138B534200808E8418E2B37 /* xds_transport.h in Headers */, + 00DAD3263E9ABE2C6A315771D204E0F4 /* xds_transport_grpc.h in Headers */, + 2015F6940126D38DB47CEB01DB4007ED /* xray.upb.h in Headers */, + 26ECAFBB1F49E7AB6823CD519CBCC20A /* xray.upb_minitable.h in Headers */, + 422573498C15A011E9DA43007C2C7AC9 /* xray.upbdefs.h in Headers */, + 3C396A3EEFD81B076C362D90B088003F /* xxhash.h in Headers */, + 53013BA2AD19B5D84685C769F67B7A21 /* xxhash_inline.h in Headers */, + A58DE984E082C66E77C752E993749614 /* zipkin.upb.h in Headers */, + 89BBDA871D7B420545D1953380ABA516 /* zipkin.upb_minitable.h in Headers */, + 4E25B5DCFEA122E2DF70BDA78FB6AB56 /* zipkin.upbdefs.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 171540CA6FD085BB157C9B2EFEEF2710 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 2F1E0451E11D1C6488F543D7379DC3C3 /* arena.h in Headers */, + A48587AA42EF17460672CC16E19F2EFB /* block.h in Headers */, + AC95E5CC9D652F27E95285A57843A9FC /* block_builder.h in Headers */, + 97F3BE50A617516AD997AAF661254B10 /* builder.h in Headers */, + 018AA3E88C00BE6EFE8180B68A7DCFEC /* c.h in Headers */, + E97841F4D16A67F10B4823B2C335FC8A /* cache.h in Headers */, + E56276E3D08501D8653FB1111F476DE8 /* coding.h in Headers */, + 5D8B9058A33B286BB0E1A8E69D197171 /* comparator.h in Headers */, + E3F33937619FD4F89E052CFF403CBCF8 /* crc32c.h in Headers */, + 67206ED663795F4A0F15C2BE28E6D373 /* db.h in Headers */, + 3EECEE5FD83ACEA9958A25D414AA7554 /* db_impl.h in Headers */, + F35DD4549C5A21F5E1EF11F3A99B04EF /* db_iter.h in Headers */, + 4C65EBF03C368606F744B0C94C13FCBC /* dbformat.h in Headers */, + 26365ADC87BA5C0CD7E5D758D78798E1 /* dumpfile.h in Headers */, + B5CD85A0B14C4F754AA8DFBED313E19E /* env.h in Headers */, + 8747B245FCB84B46ADD2D5A58988A2A1 /* env_posix_test_helper.h in Headers */, + 9F5B833179CF01415E3FCF8C0ABB8427 /* env_windows_test_helper.h in Headers */, + 3A5F1619AA73CF65E35751D8C14FE5F0 /* export.h in Headers */, + 1EE96728A651BA93EF572A2A31D87EC1 /* filename.h in Headers */, + 8D724037DE124450DF531C0EF7C855F7 /* filter_block.h in Headers */, + D969BC4BBFD3F611F6C8F1CADFEDD4A6 /* filter_policy.h in Headers */, + 3639CC4F111425F8CFA3EA528227C918 /* format.h in Headers */, + 4C732B84027DE8288B08773A798BB1B4 /* hash.h in Headers */, + 56E4ECA99733E4F205F1780AC87FC5E4 /* histogram.h in Headers */, + 193A3E947462485FEC0A81DD32C5702C /* iterator.h in Headers */, + 353801628692B2A3D35033D36CEF264E /* iterator_wrapper.h in Headers */, + 45866B5EC48326055CEBFF372E9B5B00 /* leveldb-library-umbrella.h in Headers */, + F1B86F1A2668A8F842852BDFD9FF279E /* log_format.h in Headers */, + A60667561D79413293D43E5C7C9E35A6 /* log_reader.h in Headers */, + BF6BDC76D57529F800C94F64D3C298E0 /* log_writer.h in Headers */, + AA1A27740B9D3669280A212D5BC58C70 /* logging.h in Headers */, + EC70BD1C493409AA931D239430B1D22D /* memtable.h in Headers */, + 1EF53932D5B5035FE8DA7566188FCD3D /* merger.h in Headers */, + C8B28651DB4EC0A3106DBB3670E90AD2 /* mutexlock.h in Headers */, + B1AD971147A7A8F97E76A450EAA0AAC3 /* no_destructor.h in Headers */, + A743F1B1160E191D092CFFF93F42F4C8 /* options.h in Headers */, + B92BFC653AE0033F05997F44E742FA48 /* port.h in Headers */, + 44F920D5D0878ECAAA55ADA35E031B42 /* port_example.h in Headers */, + 8367E4340C6DA2EB5DBCE3C3F9CD1F6A /* port_stdcxx.h in Headers */, + 08FB23DBD962A3287995AFCB55F83901 /* posix_logger.h in Headers */, + FCABDDD6935C7870A89C65F619A993DD /* random.h in Headers */, + 0711D8722429ECB5185492BE76562012 /* skiplist.h in Headers */, + 4D04AE8D59A24D71BDAE10769F298572 /* slice.h in Headers */, + 5C3CFB5258AEE6DBFD51073866353A89 /* snapshot.h in Headers */, + 5DCF61D916A59D5487EF35A9C31AE43C /* status.h in Headers */, + FA130DCB4509C5F07F16E028BFBBA184 /* table.h in Headers */, + 4104637007E4C7FBE7E087011A50CE49 /* table_builder.h in Headers */, + 7255730B3513D84379CF10468714F0B0 /* table_cache.h in Headers */, + 0FFA562815CE984FAEA1901040AD7D1D /* testutil.h in Headers */, + 12C6D437DA382E0BC51F484671122227 /* thread_annotations.h in Headers */, + 0DBEB3FE5667561C75972C834D2B0784 /* two_level_iterator.h in Headers */, + 1BF3F79EAC0CED4AEA526ACEBF791989 /* version_edit.h in Headers */, + FC4990CCC82514E96B163DF7580B0399 /* version_set.h in Headers */, + 36E0A537CA91490A01C93BD4DD5E251D /* windows_logger.h in Headers */, + 14E7552157A9916930AC1C13EA71C8E2 /* write_batch.h in Headers */, + E97B388543CDFA703CC4069203727481 /* write_batch_internal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 19C2006AE0F694A91FCCC185840FB637 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -33826,1325 +36101,1299 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3051C8CBA4039B7FF117E1D49961796B /* Headers */ = { + 47C698B6D78A3B9359A3B73CDEF093A7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2A194364943ABBB42117AAF2D2A7DE80 /* PromisesSwift-umbrella.h in Headers */, + AF6E58B085A5900D9A4D01456DBEFACB /* accesslog.upb.h in Headers */, + 5DA97FD727DEACA1A11404D681EFDBD9 /* accesslog.upb.h in Headers */, + A6DE9B6C022F154F16BB87995D2C284D /* accesslog.upb_minitable.h in Headers */, + FD0AFA9002807BB377F0C76E325B47F3 /* accesslog.upb_minitable.h in Headers */, + D79C754F2AA5D45CEF888071724D5B68 /* accesslog.upbdefs.h in Headers */, + 117CEB3F11DC1EB0B128D3E2A71E1F17 /* accesslog.upbdefs.h in Headers */, + 1DF40ACEE2CC4EBEF58444F5835476E0 /* accessors.h in Headers */, + 05DCAF3EF02D100321638CBA8CF20092 /* accessors.h in Headers */, + 5A4388A69C110643248C2B4516727805 /* activity.h in Headers */, + CDD038C64961207378AAC6F53AC635B9 /* address.upb.h in Headers */, + 76D95D20C18119F2AA313A3B48758532 /* address.upb_minitable.h in Headers */, + D2996AD7D96FEDA7B2D9EB0F8189495D /* address.upbdefs.h in Headers */, + 00B0F6EDE0AFA227C17EF97C4E0E41FA /* address_filtering.h in Headers */, + 0FF5FE1C798C25EF282DEFD2BFDDD735 /* ads.upb.h in Headers */, + 3E0B0DE49E6536EDF4181DBA7A9E63BF /* ads.upb_minitable.h in Headers */, + 55BD45ABDC14E1FC57F53B024AC65675 /* ads.upbdefs.h in Headers */, + A91F756CAC37C035CE64E1F5F88285A7 /* all_ok.h in Headers */, + 2AC96096FB0D0292FD049491BCB7C693 /* alloc.h in Headers */, + 5A8A77FFCFE29D8EF72B6A8C5E07C6E7 /* alloc.h in Headers */, + BDA251890E95A42484757BD2F372323A /* alloc.h in Headers */, + 7A6CD3B7206529AC301D95ED15AECFF3 /* alpn.h in Headers */, + 3B24740F62FD0B408DFE95578B84EC73 /* alts_counter.h in Headers */, + 87CF3D5AF346E406EBCF805F969A29D6 /* alts_credentials.h in Headers */, + E134427052CFD734F35E4C07CEF6EEEB /* alts_crypter.h in Headers */, + 17F0F38F472943C0BA84EBBBE831FF0A /* alts_frame_protector.h in Headers */, + 63A52E739D9E59DAF86448F25E148BB4 /* alts_grpc_integrity_only_record_protocol.h in Headers */, + 146EFCFD8D7592C630D2B5A92218CC07 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, + 045A12559E6EF95D0AC2D0BA877E87FC /* alts_grpc_record_protocol.h in Headers */, + B991DFE284F94CDA0BC6F0C82399E520 /* alts_grpc_record_protocol_common.h in Headers */, + 6D1A57DEC76955A857902B0ACBC528BF /* alts_handshaker_client.h in Headers */, + B33EE2B64316EF1BDEC63EFA3D00B64D /* alts_iovec_record_protocol.h in Headers */, + BEB34B7EC26A90B0CF8F68BE6C8B22C9 /* alts_record_protocol_crypter_common.h in Headers */, + 880E60BE46C3B3232225258FB13114E4 /* alts_security_connector.h in Headers */, + AEB5F44A5B38F21DF60D71370E89DF6A /* alts_shared_resource.h in Headers */, + 3E052FFC1DD614DDE6119CE63BD11EF8 /* alts_tsi_handshaker.h in Headers */, + 847D6DEBFA832D293ADBB4B0587B479D /* alts_tsi_handshaker_private.h in Headers */, + DDBE6B3D88BC16142629C77D82F6E84D /* alts_tsi_utils.h in Headers */, + 19369263C81B653488EAE24943828631 /* alts_zero_copy_grpc_protector.h in Headers */, + 7088AACFFDE81AF101968F25C8AAAB4E /* altscontext.upb.h in Headers */, + C40E80384DD11A8683C57F149A7EFD89 /* altscontext.upb_minitable.h in Headers */, + C65AC5704FC705F778509E3697D24D07 /* annotations.upb.h in Headers */, + F51BD5E221A89611ACC5D85FB6BB0600 /* annotations.upb_minitable.h in Headers */, + 6F0CC9D20C9973BC12FCBABCEEAC870D /* annotations.upbdefs.h in Headers */, + C738502D36A76246A96F4668BFC316DA /* any.upb.h in Headers */, + 310BFA851E30688F73E4DA7B0A36E6F4 /* any.upb_minitable.h in Headers */, + DD1CA0E85B8D0FDA675CA84D2D995DFD /* any.upbdefs.h in Headers */, + 5C49924D88C233F069802A3CC8AFA84D /* api.h in Headers */, + DB4411309EEDFBC1A8C98C23907EBC4E /* api_listener.upb.h in Headers */, + 9A88CF1203B30090F9343600D7FD007F /* api_listener.upb_minitable.h in Headers */, + 5AD928DC98ACC3246F27F29FCD1B643F /* api_listener.upbdefs.h in Headers */, + 4C5FD03DB2827EA42F4562D055956305 /* api_trace.h in Headers */, + 7529DD62664E3E0BF6F4FBFB1F98D1E5 /* arena.h in Headers */, + 6698C409CA2D64CEE3791627C4828DFD /* arena.h in Headers */, + F25B497B19F003180951248C96FBEC04 /* arena.h in Headers */, + 458B3E31B0AFAC8BFD1099B4051390D8 /* arena.hpp in Headers */, + 5C2999A91B0E34A7A263DEF58321034E /* arena_promise.h in Headers */, + D4C81D8FD33D30F4959743D4543746B7 /* ares_resolver.h in Headers */, + C1714A0D1B5AB6B8B85C87824B53CA8C /* array.h in Headers */, + 601717F7F668264B1A070EF40CA46D15 /* array.h in Headers */, + 97E804E9D89FF91393F17D3D7AB6A64C /* atm.h in Headers */, + B29C5B68771F67A6C870D611332245F0 /* atm.h in Headers */, + 0FE9EC3301F2FEB5E1079C61748CD53A /* atm_gcc_atomic.h in Headers */, + CDF8491E01F7B83208B7FC7A7C72724C /* atm_gcc_atomic.h in Headers */, + 75BC3B0272B99F5534E058E2DC0228DA /* atm_gcc_sync.h in Headers */, + 94B54985DDCBEACD6EE13319476CB715 /* atm_gcc_sync.h in Headers */, + 032D45FFF3B4827170BCB8A04705B0AE /* atm_windows.h in Headers */, + 75BF0163EBACED8344BC4FB183D58F37 /* atm_windows.h in Headers */, + A4D2DF25C70A6EF0A4AB0530E3D488AF /* atoi.h in Headers */, + 0A939529B48C618F05259F32EC4D6055 /* atomic.h in Headers */, + F46AD1228B2E7695AE80237A2EE35B83 /* atomic_utils.h in Headers */, + DEF9DF37B3463D165BA23FFEDDEDDD6D /* audit_logging.h in Headers */, + EB55C00C66EB52985F4187A73CCBDC85 /* auth_filters.h in Headers */, + CEAAF1C609E0DBA68BCE7217B7887487 /* authority.upb.h in Headers */, + F533F3F976AD144F559438E5B13982FF /* authority.upb_minitable.h in Headers */, + FCB119D32877DF7AB2102B79FA75F47F /* authority.upbdefs.h in Headers */, + C0C4F95E3B4BE48E385BE889C5A1FBCD /* authorization_engine.h in Headers */, + BB4027C3A75F729ADB3AB62316AC189B /* authorization_policy_provider.h in Headers */, + 21A9B2609105B0AF371418BD16F471D4 /* avl.h in Headers */, + 21D8689A45F2F8BE49454085EB47ECC6 /* aws_external_account_credentials.h in Headers */, + F65FE4F3ABAC5BB8EB1B88B599F564F6 /* aws_request_signer.h in Headers */, + 7C7271A3D59A343AC1C0E8134AA5FC4B /* b64.h in Headers */, + 00F733EF666A1C77CD5B79CDA6EB6DFD /* backend_metric.h in Headers */, + D462CDFD509146F17BB447D9E93AA0AD /* backend_metric_data.h in Headers */, + 58C1C548436A5F9120729108A8996E53 /* backend_metric_filter.h in Headers */, + 72A0216C2E22916D5BBF77DF4541EC78 /* backend_metric_provider.h in Headers */, + 81D5EFB0B6A109BB34569614269E2FE5 /* backoff.h in Headers */, + 585139CF4DF1571251D068554D79AC21 /* backoff.upb.h in Headers */, + BBBD282CA22A521B9D7FFFB921A0BC24 /* backoff.upb_minitable.h in Headers */, + 6F9705AB394BA95874EBF0FEA5F22063 /* backoff.upbdefs.h in Headers */, + ABB10D7C01D7FE00882BB30BCA12DF0D /* backup_poller.h in Headers */, + 0690E03558B3655231712BF8A59CF8EF /* base.upb.h in Headers */, + 5F4DD16B1713FCCBEB3EFD7260DDAF68 /* base.upb_minitable.h in Headers */, + 4915B6196BFEAA87B1220292B04E769D /* base.upbdefs.h in Headers */, + 1D482A3C50E0DB5633F713F376928857 /* base92.h in Headers */, + F0AF654BBC7705411446F6AA8EDBFE88 /* basic_seq.h in Headers */, + 0F03070F7D0434EDEC19D9B1258E3965 /* basic_work_queue.h in Headers */, + 0007FC78D7F4A12F0024ED8005783932 /* batch_builder.h in Headers */, + FF925BDDB5F7753A9F5DAFC1AE83B744 /* bdp_estimator.h in Headers */, + 9486EB7CCD7425C9AAD871DC5FA9FFAF /* bin_decoder.h in Headers */, + D9A19A6448135ACF7F1778A907CF9710 /* bin_encoder.h in Headers */, + 917F40CC646367CBDF8C60811243845B /* bitmap256.h in Headers */, + 20775B074F28A36E957589EAFF01F32B /* bitset.h in Headers */, + 8F428402992E8C34F0107E8C64DA0B50 /* block_annotate.h in Headers */, + 5DEAC5B2ABA85EA156B197822775BCF1 /* bootstrap.upb.h in Headers */, + DA201F8EF29F73DB0CD2FDA735941933 /* bootstrap.upb_minitable.h in Headers */, + D0B129459D46BB84C746169A647FEFAC /* bootstrap.upbdefs.h in Headers */, + 48BD3086407E648370EF6F9463B7AE33 /* buffer_list.h in Headers */, + F2312752968A5B802155D861FC658E13 /* build_enum.h in Headers */, + 119AAC8F669A5083DF025B67637DE509 /* builtins.h in Headers */, + 86FC38DC37191FA4042C37D8FEE956D2 /* byte_buffer.h in Headers */, + 45D739618C178D1E5ADAF6985FAD8956 /* byte_buffer.h in Headers */, + 24F976DCAE3CD99488A5DE79E7B5A258 /* byte_buffer_reader.h in Headers */, + CAEB2602DE575DC2653D6D7BA5EE4DD5 /* byte_buffer_reader.h in Headers */, + 3EF48727D7D9B90043FC9C76D871887B /* call.h in Headers */, + C7B2A8A4E771FE9EC8D7C4D08398E7DA /* call.h in Headers */, + 23CC8EF51CF8C3E49823C26A6586D460 /* call_combiner.h in Headers */, + 1CEDAA9841EFC1A8AF36B721CC851C92 /* call_creds_util.h in Headers */, + D0CD3BB2ADC4620261082EE98725B6B4 /* call_factory.h in Headers */, + 3DC2F6706B22983F9196D4719049461D /* call_filters.h in Headers */, + 7CE1265C5CEDD821D6BC95B5B36638EB /* call_final_info.h in Headers */, + 0B60D612A323E3B90BEF10C474DF60F8 /* call_finalization.h in Headers */, + 11B42A9AFC7134C816F4D678DBC2C299 /* call_size_estimator.h in Headers */, + 94F20D818FC8C0A16DA0084D0401C63A /* call_spine.h in Headers */, + 1153D9421A110139FD0C1084F5853877 /* call_test_only.h in Headers */, + DBD16B61FB5D56C7E64DEB498E336708 /* call_trace.h in Headers */, + 58E074672A5A00465901A3681B02F953 /* call_tracer.h in Headers */, + 0D9E4660595B8668B8A417E9E4F2DDD2 /* can_track_errors.h in Headers */, + AF84434C44E145515C9B923401159F10 /* cancel_callback.h in Headers */, + 4B686B917CBD8D9780DF942541CF3998 /* cel.upb.h in Headers */, + 9121C958106D5E7AE3DB40B09C2437BD /* cel.upb.h in Headers */, + D380A66C962F3FFC0421F5663849BB8A /* cel.upb_minitable.h in Headers */, + 8BF303EAB7E0555996A3CDEAA01CC313 /* cel.upb_minitable.h in Headers */, + D1E448FAE59F756F0FEEECBBE6730274 /* cel.upbdefs.h in Headers */, + 3FEB1F139EDF9AD8FCF9A9503B081789 /* cel.upbdefs.h in Headers */, + DD9BA2148908B4C4AEB281FBFBBE4C0E /* census.h in Headers */, + 8853D9B7E90AD6C26AD3FF39EF362469 /* cert.upb.h in Headers */, + 6E26DC12A7FA38E4FB5EAF843083E266 /* cert.upb_minitable.h in Headers */, + 03B8A2570F36E86BEFCA31639DCF25C3 /* cert.upbdefs.h in Headers */, + 67DC89540CB5FCAAF89F75A8DC1E5740 /* certificate_provider_factory.h in Headers */, + 6C31D643A1D75BF9B32DD104A154A4F1 /* certificate_provider_registry.h in Headers */, + 85E54F84175ADB06D0324494936A35C0 /* certificate_provider_store.h in Headers */, + 8377C49FE67561138764C4750FA6D342 /* certs.upb.h in Headers */, + 704716F4513653E88D715A7DB8803AD0 /* certs.upb_minitable.h in Headers */, + D48466AB56C6BA4BA7FA9C302B9F8FDD /* certs.upbdefs.h in Headers */, + 20EF64B8863D046AEADF38F202F43A11 /* cf_engine.h in Headers */, + BE9C17013BD61C11D5AF6B2E41519A99 /* cfstream_endpoint.h in Headers */, + C1B19EFA57AB093C9C76EA0FED77BF42 /* cfstream_handle.h in Headers */, + FDE5331A681197DEEB05C60BD0C28830 /* cftype_unique_ref.h in Headers */, + E86F51C6138EF003E2D9500FFD1F64CC /* channel.h in Headers */, + D42CA60747DADF34CBD2A03040FE9DD6 /* channel_arg_names.h in Headers */, + 628AABBDDDD2AA8000FD6A9102EBD5F1 /* channel_args.h in Headers */, + 60804970E8E74C1A05093F5FA9DE324B /* channel_args_endpoint_config.h in Headers */, + D6E83C27159FEE64AFCD5E2F0D14D634 /* channel_args_preconditioning.h in Headers */, + AE3F743C43EBB8C2457959DB0F8E7E77 /* channel_creds_registry.h in Headers */, + 6D6B4F3590AA66DDB1BCF51FDB5267EA /* channel_fwd.h in Headers */, + 7289E2EA3989D4DE8B7BFDF40015286A /* channel_idle_filter.h in Headers */, + E52BACAADE6C9815E3B065F1789D1F24 /* channel_init.h in Headers */, + A308B3280C99A3970D4E4589C71F450C /* channel_stack.h in Headers */, + D7C96C661BA66892708D1AFC59783CCB /* channel_stack_builder.h in Headers */, + 536295E72354D956C425D0F8CB855D5D /* channel_stack_builder_impl.h in Headers */, + 6A5E9A6396ADA14398DED09D57B8F15B /* channel_stack_trace.h in Headers */, + 59476A53948AAF976AAE7B00FA0CC89A /* channel_stack_type.h in Headers */, + C6B01CBDB05350F243B88BE23BBB38D0 /* channel_trace.h in Headers */, + B51CE16E918684867CE0770245363F56 /* channelz.h in Headers */, + 95CEE9BABC13B7A52AC53E23EDF2C86A /* channelz_registry.h in Headers */, + 7D9642C7354A175F40155B9163518955 /* check_gcp_environment.h in Headers */, + 1581DC995B1629B1C0008ED7A8FA5E15 /* checked.upb.h in Headers */, + 2CBECCC71816D75633B2F04F1F4B0432 /* checked.upb_minitable.h in Headers */, + DD2B8108F87F806B8E4C4FBACD3EA3B8 /* checked.upbdefs.h in Headers */, + 72A6E713EC7ADFC9AB762BABAD1E0A9F /* child_policy_handler.h in Headers */, + E0D294067DDB511A2A10D86ACF41B19D /* chttp2_connector.h in Headers */, + B7CCCF6ACE895D33A3FBB037D28B3651 /* chttp2_server.h in Headers */, + 0835E95D13ACD987F1F4E51C74DAB04D /* chttp2_transport.h in Headers */, + BE0A45873E9BFDC397BE3ADED7F1E00D /* chunked_vector.h in Headers */, + 7BA9ECE302E39242273A25C0CAD73758 /* cidr.upb.h in Headers */, + B61C3F91A0157EF408E6199494D6A669 /* cidr.upb_minitable.h in Headers */, + 129356CDA3CFDF7507C0ABC92DEBC349 /* cidr.upbdefs.h in Headers */, + C11F9F9B900FBB791E32DD69711C8406 /* circuit_breaker.upb.h in Headers */, + 8E7E9B58CC2176128BFA1C3CB9481605 /* circuit_breaker.upb_minitable.h in Headers */, + 6A629B458088F16EA7665E5DA7D4159D /* circuit_breaker.upbdefs.h in Headers */, + B39CE61D6578349C28B92EA6B07183F0 /* client_authority_filter.h in Headers */, + B3716C093C91052D26137019A497E0BD /* client_channel_channelz.h in Headers */, + 881683EB670854FBEFB3238D68A36E40 /* client_channel_factory.h in Headers */, + 8D9770A778AACE1B42024C9010381000 /* client_channel_filter.h in Headers */, + 85C77F4EB32CEB8B8ABCFC7D55F7E90D /* client_channel_internal.h in Headers */, + 25887CB548CEA31A73484FE31F860B54 /* client_channel_service_config.h in Headers */, + F151A0857140632442674F82EA485706 /* client_load_reporting_filter.h in Headers */, + A50439389A416BE7D1C19819A30D44EC /* client_side_weighted_round_robin.upb.h in Headers */, + 8F3D4CE8ECD086D10D97570C834DE8FC /* client_side_weighted_round_robin.upb_minitable.h in Headers */, + 8CD9D79B3CE5F10B1D9FB178D68145BE /* closure.h in Headers */, + D8807CAE009B945F9A02790E78358D3F /* closure.h in Headers */, + 806E4ED50EFF697091AED49755ADC66A /* cluster.upb.h in Headers */, + A2B3CA3EE5EB87C1E83877A107D49C6C /* cluster.upb.h in Headers */, + D4E32335FCA2A3D0297FF0EAD3D3A396 /* cluster.upb_minitable.h in Headers */, + E48935FF58D0B17E5EBFC0FFDFAF5FC0 /* cluster.upb_minitable.h in Headers */, + 7229FE09DF792815B1680BBD855B509C /* cluster.upbdefs.h in Headers */, + 454E0089B2A5C50B7F1FDDE28E263A1E /* cluster.upbdefs.h in Headers */, + 6164C23F0EAF72FFFED4549224AB4882 /* clusters.upb.h in Headers */, + FE887515F99BA709EF0B469D6503BD1B /* clusters.upb_minitable.h in Headers */, + 53C55ACAAA3C5C86E9834481C15B7338 /* clusters.upbdefs.h in Headers */, + 9EAD99656AAF99A2A96833E6444F73A8 /* collection_entry.upb.h in Headers */, + B84533B8DA0548DFBA04D89B849EC1BC /* collection_entry.upb_minitable.h in Headers */, + 4C13EDC20109D1E2F925241CD667479C /* collection_entry.upbdefs.h in Headers */, + A5C2658B2DF8644AC774AE811440770D /* combiner.h in Headers */, + 529C3F325F75412F72FE4B1A4C6F2950 /* common.h in Headers */, + 28E42DC1B8DC9234AFC9B103C45C11A5 /* common.h in Headers */, + 49A4B66E7604596BA63E1159C046B16C /* common.upb.h in Headers */, + F41CD28089E6853014F2B90B3C210CC9 /* common.upb.h in Headers */, + E974EB5683B65B32E186785305ED9946 /* common.upb.h in Headers */, + 5D021E90A5699A959E25AE953F78C262 /* common.upb_minitable.h in Headers */, + E357D9D5EEBF2BD209C2ED552F692D10 /* common.upb_minitable.h in Headers */, + A201C57659FE5BCBF15BE13B1F76BC68 /* common.upb_minitable.h in Headers */, + 81B5C09C8B2DD4E09FF75C9E13F1A183 /* common.upbdefs.h in Headers */, + 049CB11CC487A61AD61BB4D9005F51BE /* common.upbdefs.h in Headers */, + C0A2D154DBB39F619BEE6AE52A15F747 /* common_closures.h in Headers */, + A323EAE05EE54741EAB7286BC8108DA5 /* completion_queue.h in Headers */, + 10F377A9DCF8ECBBF96DF9111B7A1A39 /* completion_queue_factory.h in Headers */, + 53EF831EFD1EA55983D439EEF5F522FD /* composite_credentials.h in Headers */, + AB6DFFBA61F2B71718D2209EB7D254E3 /* compression.h in Headers */, + F885FE40B45D61BBA06996C5A01EEB75 /* compression_filter.h in Headers */, + 5F20D844C0C4E90A373810C41C354F8B /* compression_internal.h in Headers */, + 2144F1A800D01B438B159A9BA86AF966 /* compression_types.h in Headers */, + 901D24F23AE003FABD6C9229EF0FBF9D /* compression_types.h in Headers */, + A96D74F22A0AAA82EB75430C867C33BD /* config.h in Headers */, + D014398BA8B89C9019E5031FCEDCF3C4 /* config_dump.upb.h in Headers */, + 15100FF62B5F3D4A4AE33CB141B86F6D /* config_dump.upb_minitable.h in Headers */, + 382C6CDD2B06B1E7CEE3A86D4993CF85 /* config_dump.upbdefs.h in Headers */, + A288DB9B05B7857193F93815C2991350 /* config_dump_shared.upb.h in Headers */, + E85C1FFED198E0C7BFD0D223E80383B3 /* config_dump_shared.upb_minitable.h in Headers */, + 8A71B3C2A2EA9588CDC6D1919961BD1E /* config_dump_shared.upbdefs.h in Headers */, + 1A023CF60B3BA061EA6E677B988AC4EA /* config_selector.h in Headers */, + A9714992700B3F1A8396A20A90DC3158 /* config_source.upb.h in Headers */, + EFA4FD9766376BCB904366FC7A364491 /* config_source.upb_minitable.h in Headers */, + 6E40901035C861297EF7C6F1D1DE5445 /* config_source.upbdefs.h in Headers */, + 7179FEAC7FB5F96A102B4539644CDAC3 /* config_vars.h in Headers */, + F8FC9C7E1B29CEA21265E433ED5534B5 /* connected_channel.h in Headers */, + A6F068B433D458191293E623253A0561 /* connectivity_state.h in Headers */, + E4A57D12674E4228B94D26221722C0EE /* connectivity_state.h in Headers */, + 27E1763B821890F4012166502429CB7C /* connectivity_state.h in Headers */, + 96098E446A9BFC1D238675E97CB47C6F /* connector.h in Headers */, + 8F3CC0226BA00BA7E59C82CA141497F2 /* constants.h in Headers */, + 2322347CE4E7DA6E543FCC42DCCDB61E /* construct_destruct.h in Headers */, + 1C0072F638A2C807ACB6829BEF994F1F /* context.h in Headers */, + 705DE578949B48995F7E0B85DBF4D29A /* context.h in Headers */, + 83AB098762C7D84371BD83DB8799594F /* context_list_entry.h in Headers */, + 4A31B2A241ECEF73D780EA7C9A197CD7 /* context_params.upb.h in Headers */, + 1A8295EF9185817AD929BD99FF0A8DA3 /* context_params.upb_minitable.h in Headers */, + 376D45B451C13B529818DE6093B35929 /* context_params.upbdefs.h in Headers */, + 5FA6398AD8108EB72DB4BFDB9775DB12 /* cookie.upb.h in Headers */, + 4B30C7D4586D43D3ACAA11EB5062E93E /* cookie.upb.h in Headers */, + 764C4046FDDCDCE985F882989F7EEB56 /* cookie.upb_minitable.h in Headers */, + A915F647658BCCA3BFC9BE6CEFFF1B86 /* cookie.upb_minitable.h in Headers */, + 8B6498E6B4375A26399D7334C70FFAD1 /* cookie.upbdefs.h in Headers */, + 451185C81A9180AF833D17095AFDFCCB /* cookie.upbdefs.h in Headers */, + 29211D5135490181DBB5569A453107F6 /* core_configuration.h in Headers */, + 42517B6B99C432818E8006CD45BEBC7E /* cpp_impl_of.h in Headers */, + CDC5A977886B20B188E0ED27580A4FC5 /* cpu.h in Headers */, + 0B94FA711FEDD65CDB04B1A8ADC7D192 /* crash.h in Headers */, + AAC95331B8C5064F8B305C623DFD213D /* crc32.h in Headers */, + 2DA2CF1FC38F1ECBF0816FDC634E766F /* credentials.h in Headers */, + 66292897BF69739DBE401E7C413E3BF3 /* csds.upb.h in Headers */, + C9E154A4F44A24173DBA15127B481E7C /* csds.upb_minitable.h in Headers */, + 3AA8A4F7A05730F06B0A62F10CA1B371 /* csds.upbdefs.h in Headers */, + 535F12D5EFD4B09312A57E145A1A32BC /* custom_metadata.h in Headers */, + 0BF7E141AAFF122A3BBDB10A80FFCB6B /* custom_tag.upb.h in Headers */, + 0C21230F5E97DDDD5DB3367A70F6D6AC /* custom_tag.upb_minitable.h in Headers */, + 66EE9FC86729C0312D502976B49AD003 /* custom_tag.upbdefs.h in Headers */, + F48FC963662CC914253BB5ECFC8607B0 /* datadog.upb.h in Headers */, + B28F10044B4BE13C2C35381203305597 /* datadog.upb_minitable.h in Headers */, + 7C25626895A6071EF76E07E6B2F0C99F /* datadog.upbdefs.h in Headers */, + B4BCF3514316493B0E8A4C125EBCBB5B /* deadline_filter.h in Headers */, + 9632490FC83A53A9A651FF0B410467A5 /* debug_location.h in Headers */, + B410F1A512731AC2366EAB60A372183D /* decode.h in Headers */, + BC2B3ADA1D0046D9D3D49E07D3625BB9 /* decode.h in Headers */, + 8DA4D2DDE4D9876EFA67D7D705F45496 /* decode.h in Headers */, + 471D3A54D6DA150982497FEB64AED7D8 /* decode.h in Headers */, + 5A18488DAFC98D9BCFEE44E92C2F7BF2 /* decode_fast.h in Headers */, + EE26F4BC83433D41323189DD7B271141 /* decode_huff.h in Headers */, + 487CF3E177959C6E4FBCF63EC701C5AF /* decoder.h in Headers */, + 131051187B4E556E8A00D2B104531D49 /* def.h in Headers */, + B4B0C06574E291F16A09894B0F0983AA /* def.hpp in Headers */, + E3A1A0E39B4DFC07C0D7190CB983C849 /* def.inc in Headers */, + B0EB36241246A9E9246CC0CD52977D94 /* def_builder.h in Headers */, + 9A6C36255E32ABF66E4685522B3D1210 /* def_pool.h in Headers */, + B0668FFD0EA891EECF07CFB688CE3DED /* def_pool.h in Headers */, + 31635C61A6FF1212D0B1CABAEA78FBFA /* def_type.h in Headers */, + 575788C09ABD1FCA07423A2489BF2B9F /* default_event_engine.h in Headers */, + BA5D56E95FCA0F7677F25108B005267A /* default_event_engine_factory.h in Headers */, + 3EBF8D5F7C88B633E82FCE1BECCDA5B3 /* deflate.h in Headers */, + 71C27D982B8F9B8902990A70E6AE8EF3 /* delegating_helper.h in Headers */, + 58174823D79A6BC87E5A2AAD04D1C906 /* deprecation.upb.h in Headers */, + B11CB6ED7F8B26A4ECF8A7595BA2CBFF /* deprecation.upb_minitable.h in Headers */, + 7EB91206CCC546B27B2E31D1844651C8 /* deprecation.upbdefs.h in Headers */, + 6723296AEDE10201A376B40832FCF5AD /* desc_state.h in Headers */, + 27C202C13A7C4F81216315FA16879C02 /* descriptor.upb.h in Headers */, + 42738476E7B7EEB78A325E513A41F120 /* descriptor.upb_minitable.h in Headers */, + B9D29C2A3F05D13B9BFB7451035855A1 /* descriptor.upbdefs.h in Headers */, + 158F99A6913AE8C0B5A7D20A7E3A4519 /* descriptor_constants.h in Headers */, + 3E7C36AC94133294AF80C1FBC28044E6 /* directory_reader.h in Headers */, + B23AB8FF2AC14D4DAB0F81A09F17399F /* discovery.upb.h in Headers */, + EAD7BFACED80C445D602FB4E876A6576 /* discovery.upb_minitable.h in Headers */, + A13102575BE15F47636039EAF7BD97DF /* discovery.upbdefs.h in Headers */, + BECC609B3942C1885ABEE64FFF0CE503 /* dns_resolver.h in Headers */, + 0E97A0F5DCD1004F57854D956B2EADC2 /* dns_resolver_ares.h in Headers */, + ABDD4B71064C74518F7289A772D21757 /* dns_resolver_plugin.h in Headers */, + 9C0CA22728467165F55E2C8177307184 /* dns_service_resolver.h in Headers */, + 169B65489D9E7982DFF8BCEE4C51F0F1 /* domain.upb.h in Headers */, + 879774734E27CA4185D9EF77FB49433D /* domain.upb_minitable.h in Headers */, + 510AD2FD3FD24F4564099C7C93260D33 /* domain.upbdefs.h in Headers */, + 7732A167AC886329E25177EF923B3A87 /* down_cast.h in Headers */, + 23E49962E21CF1E969AEF23F7C4036FE /* dual_ref_counted.h in Headers */, + 6ABC24532ED53D1359781CE877131C21 /* duration.upb.h in Headers */, + B2ECFA77474488C9887BBE926E4900FE /* duration.upb_minitable.h in Headers */, + E9041D41A015205F0C37AF701D29750B /* duration.upbdefs.h in Headers */, + 92BE38DAE40C2B1E15F1CC195158B84E /* dynamic_annotations.h in Headers */, + 437FB6D6022507DDC5F51A9F1DEA9F39 /* dynamic_filters.h in Headers */, + D997752A1070CC37FE74D52D0192C204 /* dynamic_ot.upb.h in Headers */, + 55C99A6058F934A91122282114769A9A /* dynamic_ot.upb_minitable.h in Headers */, + 9DBEDE7C79AB0B5FE3293B3DDF2CFA1A /* dynamic_ot.upbdefs.h in Headers */, + FB152686919EDD331FF98FC8B326C21F /* empty.upb.h in Headers */, + BF81CBD5C29A6E5D30614BE3FEF623C7 /* empty.upb_minitable.h in Headers */, + AB495AABF1179DE257105D363CE1D37E /* empty.upbdefs.h in Headers */, + 8049034AEF13B0C1888BD277E490413D /* encode.h in Headers */, + 8725ED9B954C64DA1EEEF75F29CEA97A /* encode.h in Headers */, + 50C58E14979C704B1CBDAD18D407005C /* encode.h in Headers */, + 191D376AC4033279D43E11FF5075ABA9 /* encode.h in Headers */, + 6CB3D763CB8C8CE957E7641BE6CF1EFC /* encode.hpp in Headers */, + DD50983717211436AC14774A90922695 /* endpoint.h in Headers */, + E6CA1153C3B59749A8DEAA561152A6ED /* endpoint.h in Headers */, + 64ECBAB824F61324DDC1BC57B38999CE /* endpoint.upb.h in Headers */, + AC87F4E7D03ACAC2DD8214610626093A /* endpoint.upb_minitable.h in Headers */, + 59788ED8DCDA84647E3A4AF5FA49966D /* endpoint.upbdefs.h in Headers */, + 3DC7116240F2FAD8F8009E934C63CD33 /* endpoint_addresses.h in Headers */, + 97366532FBD7BB49D91460BB73E11F49 /* endpoint_cfstream.h in Headers */, + FDF8E8DD8234AAEC54C9BAD8FBE850CF /* endpoint_components.upb.h in Headers */, + B2F88C53CC2D64782833165DEFF70353 /* endpoint_components.upb_minitable.h in Headers */, + A1868C77EE0F279890831958649048BA /* endpoint_components.upbdefs.h in Headers */, + 2EF6093A420D4A89CB31DD2A7901F1E8 /* endpoint_config.h in Headers */, + A59F91C583EE71DD3EBCD43DCBF0A707 /* endpoint_list.h in Headers */, + 5622E7B094F2E0B45F3919D65E6C6838 /* endpoint_pair.h in Headers */, + F1224B57F60741DBD49CFDEDD960940A /* enum.h in Headers */, + 250E385F6CBFD04B1D71634B0142E1FB /* enum.h in Headers */, + 01995939CAEBCC92437F70A110CC462C /* enum_def.h in Headers */, + D31CB91A192A11236B574C0E582079A1 /* enum_def.h in Headers */, + 8B702B229E07B23084F3576CAE9923B6 /* enum_reserved_range.h in Headers */, + C247DBC7534F150BACFB320A551E624C /* enum_reserved_range.h in Headers */, + AB7417388462FCE5263D57E3D7033E31 /* enum_value_def.h in Headers */, + 53BAFE53118A2AC6EACFE8184FE978AB /* enum_value_def.h in Headers */, + E7C4D2B3290BED3E84DBAB730357677A /* env.h in Headers */, + 5BF8D9C5EBACD5C038D8E66CCA7C9A5B /* eps_copy_input_stream.h in Headers */, + 773693B273007570902C4F7B0CE15F44 /* error.h in Headers */, + CF318E1544CA0CB8EA6EA149601DCFB0 /* error_cfstream.h in Headers */, + EE589ACB71BC2E4E58F96345FFD08686 /* error_utils.h in Headers */, + E10777EA29F4254819F436F38865127C /* ev_apple.h in Headers */, + 23AFA5EF59D5D3FBFE3776850DCAE0D1 /* ev_epoll1_linux.h in Headers */, + 2880ADAAFF18AC53034EE0362C4B6E71 /* ev_epoll1_linux.h in Headers */, + 09D55DF8C5A1120FC8734B6C7A7A7247 /* ev_poll_posix.h in Headers */, + 285059573FCC8317617440079804E550 /* ev_poll_posix.h in Headers */, + 2F5A3F478BABA826D78D8E6BB5943967 /* ev_posix.h in Headers */, + 6739D635335620D69B09E80A60FDE204 /* evaluate_args.h in Headers */, + 8BAC5B6FF05FA46B5F39E3A457E0EB7A /* event_engine.h in Headers */, + 13ED86ED8062557BBD36749E8345F789 /* event_engine_client_channel_resolver.h in Headers */, + BA57D3CFDF5255244ED3A0CA4FD9BA08 /* event_log.h in Headers */, + 0A0DDDD69D1105278D41D22BF3659990 /* event_poller.h in Headers */, + 703B1A4810FF377C9E16772146698E1E /* event_poller_posix_default.h in Headers */, + 48433F3DBAD435767C9DE3DE3EED5EA1 /* event_service_config.upb.h in Headers */, + D143796CFE8EDD7CF056356E6145D1EB /* event_service_config.upb_minitable.h in Headers */, + 2A97E5890C4F7603A99CAAC062D7974E /* event_service_config.upbdefs.h in Headers */, + 116296390411C97E0A655F4E67FAFCE7 /* event_string.h in Headers */, + B643A53934B467B52B57ABB3E7E186CE /* examine_stack.h in Headers */, + EC7E2A3EC570E4A399E3DA2E2DBB31F6 /* exec_ctx.h in Headers */, + C85463BE0A3E5B89ED70C51011747B1B /* exec_ctx_wakeup_scheduler.h in Headers */, + 867A7931DE9A24F3C649A459F7EC10C0 /* executor.h in Headers */, + 6C2591353F21858C21FA572A4AD91623 /* experiments.h in Headers */, + BE079F230CFDE4D3CB67A1B9A5F15E59 /* extensible.h in Headers */, + E4491DD790E8DE7E90367F9EE2683C40 /* extension.h in Headers */, + 6585F18E7C2F04A86B6CC239CA87F758 /* extension.h in Headers */, + AB55F4DF8B191BCA20E767F67830A718 /* extension.h in Headers */, + 6793859D0DEFA8750DEA3A96112CFF94 /* extension.upb.h in Headers */, + ADEC9CF2035CCB1678F306F1F96DD00F /* extension.upb.h in Headers */, + A6640F49372FC4EDBFA5E0855D326FDF /* extension.upb_minitable.h in Headers */, + C3987E59B269279ABC406A318C005020 /* extension.upb_minitable.h in Headers */, + F15339804DD02A3AADC7338F2FBA03F6 /* extension.upbdefs.h in Headers */, + 1B72F970BD157F642FD2851D001AF2E5 /* extension.upbdefs.h in Headers */, + B3AC17DFB4A3C5639340B65DDFA04170 /* extension_range.h in Headers */, + 79F69EF3F677D8B68B5BB100CA48E845 /* extension_range.h in Headers */, + FDD86806F254ADB37FD90F689D2A47C0 /* extension_registry.h in Headers */, + 0442ADDC960611CCE23AED58B781C00A /* external_account_credentials.h in Headers */, + 813D8E2C9AE853C6CF030BBEAA504F10 /* fake_credentials.h in Headers */, + 205B8902B2BDA6A151350E8BD21E2D33 /* fake_resolver.h in Headers */, + 3EB9128A86297425F45B6B4CC4A814C6 /* fake_security_connector.h in Headers */, + 9E39B3949E33F4150BA72D39AA971F29 /* fake_transport_security.h in Headers */, + C0D0E1A5F29B50E2EB3745EA6883D76B /* fault.upb.h in Headers */, + A0674EDC08EBA33C1FD00EFF968174B4 /* fault.upb.h in Headers */, + 9233FF5BC851523612F8578924942D19 /* fault.upb_minitable.h in Headers */, + 6A5DA9483D4D1684E04DDB98000F1B02 /* fault.upb_minitable.h in Headers */, + 3E5769EF5BC6F538AB5D6D868BEC34E5 /* fault.upbdefs.h in Headers */, + 4DDC20C7DC842A4F979A6562BDCF1944 /* fault.upbdefs.h in Headers */, + 34087EDAB197696A2084153C9CE12603 /* fault_injection_filter.h in Headers */, + 32BAF728195B4B5751761D5F756636E6 /* fault_injection_service_config_parser.h in Headers */, + C0C3C5FA0F3882D7EF1F3AD458CD94F3 /* field.h in Headers */, + 6AB0C60B0017F89A2E919454CD358528 /* field.h in Headers */, + 673FD541EBEC78D10C162713D2087B0B /* field_def.h in Headers */, + 335F0E1B09EBAB30FB17CF1537BBD10B /* field_def.h in Headers */, + 48B69728D77F24CFC7DFFFD5F13748D5 /* file.h in Headers */, + 645A7D03213223135AC298D682FCCFFA /* file.h in Headers */, + 07FF60CAB8BBE630FA65563654D2ADD8 /* file_def.h in Headers */, + ECF4B550D0C0ABCF0760ADE89A02529E /* file_def.h in Headers */, + 18FC840DADBAD5FCD91C19305F30730D /* file_external_account_credentials.h in Headers */, + 4CD15BF2FD420D6E45A8EDA36BF149B3 /* file_watcher_certificate_provider_factory.h in Headers */, + A8FDA852ED1BA196B7F5A0AFF5CACC46 /* filter.upb.h in Headers */, + 465D49DA67F9857B27E7DB48EB93A4EE /* filter.upb_minitable.h in Headers */, + 19197AFE9E5189C5031166BE34FCB2EE /* filter.upbdefs.h in Headers */, + A4BAA1E736103CD25EB73BAA10AEF02D /* filter_state.upb.h in Headers */, + 2F7D077F29388DAE155358E07951E5EC /* filter_state.upb_minitable.h in Headers */, + 65DBC75FE34EE64840B272EBC7C1607A /* filter_state.upbdefs.h in Headers */, + F5381F3CA4624965DB31DAA5C2789D68 /* filtered_re2.h in Headers */, + 24E0ED1ACEF099B16ADC9B74FEDE348E /* flow_control.h in Headers */, + 163E573FE829EDE0520EBB1D4896D1FB /* for_each.h in Headers */, + 08A217404FEF85E4A259409E71CE1580 /* fork.h in Headers */, + 5354F5DA29C94A7EE8938A3ADEDE3657 /* fork.h in Headers */, + 3EBA77D1E10A793FBB4A64B88D5816C4 /* fork.h in Headers */, + 7495F705A73974543BAB31C879BCCA3C /* forkable.h in Headers */, + EDFBD1F71045123316D73A8F752B0381 /* format_request.h in Headers */, + 5256A5D19351533682352BE18C916FCA /* frame.h in Headers */, + 0C5BB9C3DDD39B355719495A3764DF15 /* frame_data.h in Headers */, + 8F003FB857466B69E7CB92149A415C6D /* frame_goaway.h in Headers */, + 0B97E0CEBEF579E5BD178D7E8CE8C521 /* frame_handler.h in Headers */, + AA358AAE12AB47A821CD2AFDD53F5F52 /* frame_ping.h in Headers */, + 2944F9EA7945BDE42C215EF377DA6817 /* frame_rst_stream.h in Headers */, + 44F33639411F7D14741E7DE31C67AD90 /* frame_settings.h in Headers */, + 9042ACE71188C148DB8AA2EA471A2531 /* frame_window_update.h in Headers */, + F755ABCFF6E30811EBB391F6D7E0FF42 /* generated_code_support.h in Headers */, + F5A9A77593E0B6FBBD423B24137204ED /* gethostname.h in Headers */, + F2CEAF8419DDE8789C689DEA43227429 /* global_subchannel_pool.h in Headers */, + C020044CCCB63EDEDAA2703F0070B70F /* google_default_credentials.h in Headers */, + 3EEF98F763B1F54B16F18FA63084E18B /* gpr_types.h in Headers */, + 319FA0479D01FAEB0C75A09B5871F2FF /* grpc.h in Headers */, + 9EB9A8E61FAB1C0CD61C2BBFFF7A30B1 /* grpc_alts_credentials_options.h in Headers */, + 91A723F016AF5C47ACF7CC260C303F6D /* grpc_ares_ev_driver.h in Headers */, + 073B417FBACA3C13E01AF13BDF178A97 /* grpc_ares_wrapper.h in Headers */, + 1CB30877845D43B6050E6375C1601145 /* grpc_audit_logging.h in Headers */, + 6FEAA04FB809E92F25823D7A285350C6 /* grpc_authorization_engine.h in Headers */, + 934CB53434F69361C12D4D8FF219CB37 /* grpc_crl_provider.h in Headers */, + 8967C38B44ED5BB146FE980CC97F794F /* grpc_if_nametoindex.h in Headers */, + 2AE0A856DCCCBE706D25D1178B0B185B /* grpc_method_list.upb.h in Headers */, + 34E76EB544CFCDE666913F8B92E52864 /* grpc_method_list.upb_minitable.h in Headers */, + A40C8AD5FFC3B5470B453A888C58378D /* grpc_method_list.upbdefs.h in Headers */, + 099E950D71496D54E9075920DEF46715 /* grpc_polled_fd.h in Headers */, + 2809BAFA0ED3E24DAB60CE21CB563753 /* grpc_polled_fd_posix.h in Headers */, + 1B7E810C555B7ABF8941609A2188E459 /* grpc_polled_fd_windows.h in Headers */, + A9D918538BA2416DFF2E3C47A29CD6FE /* grpc_posix.h in Headers */, + 5CD3569C0EA4C34A6CECAC27F2B04F5A /* grpc_security.h in Headers */, + 2C072D590FD0B858526A8B348533D613 /* grpc_security_constants.h in Headers */, + 461873D0A45B9CF40BCA6672A74A889B /* grpc_server_authz_filter.h in Headers */, + E444EF8846FB3D608E7B5EAA0609C9A5 /* grpc_service.upb.h in Headers */, + 8F011525825D5706D66F4F21D51E9462 /* grpc_service.upb_minitable.h in Headers */, + 82550F975309C553CA2A2C4A30A48EB9 /* grpc_service.upbdefs.h in Headers */, + ADB42C6B2B03FFC85489013FDE428F16 /* grpc_tls_certificate_distributor.h in Headers */, + F888D82EC6DF1CD173AE7AB43C08D557 /* grpc_tls_certificate_provider.h in Headers */, + 4160C263F92AA628D5385596DE57B9D0 /* grpc_tls_certificate_verifier.h in Headers */, + 3FB51F1A06EC6D09EFDD9A98CEFFED5F /* grpc_tls_credentials_options.h in Headers */, + 940EC582111CEF0B2C27A9F3AC6A5124 /* grpc_tls_crl_provider.h in Headers */, + A6865D21325863D2445B52B965A39035 /* grpc_types.h in Headers */, + E02FA2A0260A47C06B16E1577BB7CDC9 /* grpc_types.h in Headers */, + E7B30CC979253C7C150C9E50F2557492 /* grpclb.h in Headers */, + 2D2235CA1EAD72ECDACB328146B04400 /* grpclb_balancer_addresses.h in Headers */, + 4A3408870AFD7A52C3C222AF478FA3EB /* grpclb_client_stats.h in Headers */, + 9F0D6F0C6865B20D85106C9B118D6EE8 /* gsec.h in Headers */, + DEB2C5EAB243A6EFD9E6832FB436EA50 /* gzguts.h in Headers */, + ED169B64ACEB3998A44C216DBB1213ED /* handle_containers.h in Headers */, + 3DCCA6C7EDB7E982723152D0AA8E3CC9 /* handshaker.h in Headers */, + D97F38167EBE60EEE439514B7475FB6C /* handshaker.upb.h in Headers */, + 30FCAFFBC7B450045368A72D6DEDA6A4 /* handshaker.upb_minitable.h in Headers */, + AC91CEFA08275AAD2C0C942F6E614A56 /* handshaker_factory.h in Headers */, + F4A8C549D300509E6B1BE254B5B9FFC2 /* handshaker_registry.h in Headers */, + 51805DF738823F497B1A993EC0CBF36C /* hash_policy.upb.h in Headers */, + 034CDBF5992774A5D37B60EFD950A62F /* hash_policy.upb_minitable.h in Headers */, + 3124BE2B970D655D9EB44E19BA4564B8 /* hash_policy.upbdefs.h in Headers */, + B8436B84517ADD924F00CE5A4F78CDEF /* health.upb.h in Headers */, + 4EE1AB45B88DCE4B47333D3D151DCAA3 /* health.upb_minitable.h in Headers */, + 54153DEE3CAC74F78D70846E951DE2E5 /* health_check.upb.h in Headers */, + 898507E621706E4B1C627B8BD04FF1DD /* health_check.upb_minitable.h in Headers */, + 66A230187B49F6A32FF9C75131C5ADAE /* health_check.upbdefs.h in Headers */, + 78CEAE74BEA9C6AE0AB88B85281AE877 /* health_check_client.h in Headers */, + 08304C1908F9E9FB034EE7D10B21053D /* health_check_client_internal.h in Headers */, + 496390397CDAD6C52499677D58B62F68 /* histogram_view.h in Headers */, + DAB585459FE8FB758FF54BADCEEBC719 /* host_port.h in Headers */, + 4084188617A161A900C481002C38187A /* hpack_constants.h in Headers */, + 4E4FE5DA0FDBA57F837F983A953CB87B /* hpack_encoder.h in Headers */, + 6EDDD0246174D319E0029262F27CEB1C /* hpack_encoder_table.h in Headers */, + 5868F2FB8EC0C21DBFA08A00091A05E8 /* hpack_parse_result.h in Headers */, + D7142BB42FEE6B81D624CF2B4B6C62D7 /* hpack_parser.h in Headers */, + 3ADB2C9D136788D89B014138A82DB446 /* hpack_parser_table.h in Headers */, + 0C5808167E091F3AAB3E452681E1779D /* http.upb.h in Headers */, + 74DE686A519BF1E7AB9F97774698DD5E /* http.upb.h in Headers */, + 2D35E0EFF575B6E796C9AEF61A3F9648 /* http.upb_minitable.h in Headers */, + 43704BC10511434F60DCE666773AD255 /* http.upb_minitable.h in Headers */, + E319D09B831598EF8242783892AAAB9B /* http.upbdefs.h in Headers */, + 58E78FD3C5FBAC3DC564EF95A2A8F2D4 /* http.upbdefs.h in Headers */, + 6B5AEFACD1BE89A8483B6C2A12011A1A /* http2_errors.h in Headers */, + 5D5BC3AEE7F942A6D40F864D020ED2BF /* http2_settings.h in Headers */, + 5FA08F9170BC33A0A477210C9A5C1143 /* http_client_filter.h in Headers */, + 339BA3267214F2DF14313F386DB53397 /* http_connect_handshaker.h in Headers */, + 164EE3316F4409FBEF1DA5B59950A8F2 /* http_connection_manager.upb.h in Headers */, + 412C52167BCC1F455290F06042C01306 /* http_connection_manager.upb_minitable.h in Headers */, + 1C1E4C12BF8F283F50D45383B87BF7E9 /* http_connection_manager.upbdefs.h in Headers */, + F6206434CF288A390E0F69530E2AC124 /* http_inputs.upb.h in Headers */, + 60B6A1F9B9ABACCF70C4E1FA49A7B6B0 /* http_inputs.upb.h in Headers */, + 0E8DB05FCF227AB384F812BAF80CC2CB /* http_inputs.upb_minitable.h in Headers */, + 42A169E4107DC6A7803D485F6E7EB3A8 /* http_inputs.upb_minitable.h in Headers */, + BA2CC6C16FF43EFFC456C7B8B85306B2 /* http_inputs.upbdefs.h in Headers */, + D2970B79BFE3985DDB7B16212ACFEB20 /* http_inputs.upbdefs.h in Headers */, + BE0EBA228BE538CF48DCAB3469753F47 /* http_protocol_options.upb.h in Headers */, + B306E2E01913F5F717AE453960F0D84E /* http_protocol_options.upb_minitable.h in Headers */, + 76CD67E8F845593BE74FF3631E665013 /* http_protocol_options.upbdefs.h in Headers */, + E997C5D55C0EF9CFBA608B36509D6255 /* http_proxy_mapper.h in Headers */, + 3F5716D5A9A87E838DC8DD5E35CB5E21 /* http_server_filter.h in Headers */, + CED98CD09A45B513B660133A31409B47 /* http_service.upb.h in Headers */, + D1DB86F7A2F3B4E42849155F741C11D6 /* http_service.upb_minitable.h in Headers */, + 9258BDFC6F0E09033F76544F050C978D /* http_service.upbdefs.h in Headers */, + 05C4C3547F03E1E599D720FB428FE828 /* http_status.upb.h in Headers */, + 5E158F06756E834B5EC5879CC9068DEE /* http_status.upb_minitable.h in Headers */, + 25C4E03413C4760C01BEED7C0CAB24FD /* http_status.upbdefs.h in Headers */, + 087EED57B18666910FD9B14BFA8B2C63 /* http_trace.h in Headers */, + 01456C2C4CA2D989A69C925B5490FE86 /* http_tracer.upb.h in Headers */, + 3553A9AA27E538604FF0881B99B5DFCE /* http_tracer.upb_minitable.h in Headers */, + 6D04BF43A2080C5F10A853E315DF24C4 /* http_tracer.upbdefs.h in Headers */, + FC3B84FADA1CD95C5B1ABEE9C9DE2C1D /* http_uri.upb.h in Headers */, + D2684920588FDB9ED68F8B656BDA6F5A /* http_uri.upb_minitable.h in Headers */, + 1990BDA46557C133D01491EE7AA459EF /* http_uri.upbdefs.h in Headers */, + ADE5DB01D4EE8BF38C79D687AC93766E /* httpbody.upb.h in Headers */, + 385906F91529AA357AAA25B698F248D5 /* httpbody.upb_minitable.h in Headers */, + 2F4F477650CA1F08197098F3BAA939F4 /* httpbody.upbdefs.h in Headers */, + FECF29AC25DA683140A59705BAE48726 /* httpcli.h in Headers */, + F1AFC57AFB0D7D5AE064189C66539D52 /* httpcli_ssl_credentials.h in Headers */, + 3601EB2826EA2EEB07F514334380B505 /* huffsyms.h in Headers */, + F5EF545E26A3914419BC65A323EC7643 /* iam_credentials.h in Headers */, + FB95090875C44FBBB39B3F9E727456D3 /* idle_filter_state.h in Headers */, + 3C15A911C4A9CEF1800A88301BCAAD9E /* if.h in Headers */, + 3B43D5CD64E9F6E00D018E923607E0B3 /* if_list.h in Headers */, + DCED236D34EF81F1A1652EFB242176F2 /* inffast.h in Headers */, + 5574FC081DB0EC2E2E6FA1ADC547B560 /* inffixed.h in Headers */, + A2943DB27CD0B157BD3985F1BF0F7F46 /* inflate.h in Headers */, + CB86F368FC5A7FF4AA7616EB895DFE3A /* inftrees.h in Headers */, + 79DA042D94C8E82486D8BC8EBD35CE3D /* init.h in Headers */, + 4B167706AE71D74D3BEA7610E8A2EE2A /* init_dump.upb.h in Headers */, + CF2659A39E535C80FDA0ECC52CFA34BF /* init_dump.upb_minitable.h in Headers */, + FDB1D42E02B56AEA82FB76ED6AC63CF2 /* init_dump.upbdefs.h in Headers */, + 475B6D247C35AE4B1CD4995A840E8E4C /* init_internally.h in Headers */, + 0AADA20C941D7B7004D8E1C98644CF5B /* inproc_transport.h in Headers */, + 83404C131049E1B58F85F25E4DA7AC75 /* insecure_credentials.h in Headers */, + FC5404EFE380A1A9342CA74760BBE72E /* insecure_security_connector.h in Headers */, + B390FD710CB68E2FD8AAAE0822AD4079 /* int_table.h in Headers */, + 3E486A8D7C5CD2C6B09F4557D50CF610 /* interceptor_list.h in Headers */, + F3174D3A36DB16609B000C16259563FF /* internal.h in Headers */, + BE08BB4C7A572565E31A26C7EED42C24 /* internal_errqueue.h in Headers */, + 24D682441466B16013C3A0C2F0FE2562 /* internal_errqueue.h in Headers */, + F5A920778D31AA4B8E6ED869D9871C91 /* iocp.h in Headers */, + E757601CC00D3CA3E817857B30D68BB3 /* iocp_windows.h in Headers */, + 9492A8BF8E2E21FE6081E482903EBC5A /* iomgr.h in Headers */, + D5B7A8747C96DA533B5E1D89649B670C /* iomgr_fwd.h in Headers */, + B05BD445078EEF72E5061B793F17BF08 /* iomgr_internal.h in Headers */, + E95A8C97F8C92E922D8D0B5C09ADC5DE /* ip.upb.h in Headers */, + E10C8A067B2B0950835E081DD1B8F996 /* ip.upb_minitable.h in Headers */, + E67BAB1B45960EF4C072A6FF56B129CA /* ip.upbdefs.h in Headers */, + 2A697CF071EDC4F7524F765A2AC43F4F /* join_state.h in Headers */, + B10776B04EE9E92B7E0E0CEF92CFF7EF /* json.h in Headers */, + 16E5A36FAB8130BDAC526CBCAB69BE12 /* json.h in Headers */, + B54BD1DF639E13A93F1D7151151169E3 /* json_args.h in Headers */, + 60A5971C7CCB2BBC399BC5C3FC65B20F /* json_channel_args.h in Headers */, + 504CF29F00515764920B4E7471985EF5 /* json_object_loader.h in Headers */, + C26F21B0448486222A3FE5A4DE1EFFC5 /* json_reader.h in Headers */, + A694E783C3285A8E7C3248BB8D538685 /* json_token.h in Headers */, + 18A6BBE100D14C34E5EB0EE3D883B189 /* json_util.h in Headers */, + 885702559D62B0E7BDE263614909D9F2 /* json_util.h in Headers */, + 3852B157ADCE6FA020B3420721EEE26E /* json_writer.h in Headers */, + 39DF76161820EC66D45F76981B53F714 /* jwt_credentials.h in Headers */, + 37DD1F12DD64A0135E9FDCD1470E6A6D /* jwt_verifier.h in Headers */, + 46470374EE11B43793585DB56408DB34 /* lame_client.h in Headers */, + C3BBF81E228180E68F372FD6C9AA4166 /* latch.h in Headers */, + 849689493DFB80842638E497D998F754 /* lb_policy.h in Headers */, + B49BE3742A8C9ACB3152AA2C1D5EABD1 /* lb_policy_factory.h in Headers */, + 645D5118A72618BF279849E08E6D0E9A /* lb_policy_registry.h in Headers */, + 62CA2A008E4EBAFA3FAD20921A5ADD10 /* legacy_channel_idle_filter.h in Headers */, + 507405BC4BB879458FD0B1E2D98D4115 /* legacy_compression_filter.h in Headers */, + 6366D4330411182CDCD4F6B0F8B8C7E7 /* legacy_frame.h in Headers */, + 2A2E6B958FDD9524F4ABCF42409B9A0D /* legacy_inproc_transport.h in Headers */, + 6F0D5DE332274ACF167DDB3DF65734DC /* lightstep.upb.h in Headers */, + 8E5327651079CEEC01FE39527EB56FEB /* lightstep.upb_minitable.h in Headers */, + 2281B05179545D3EEED13D4D3F3E45DE /* lightstep.upbdefs.h in Headers */, + 88610A4B4AE690CB0BA3202190E70868 /* link.h in Headers */, + 05F967CD0760B0AA929067F75116DECC /* listener.upb.h in Headers */, + 46A85DB767AA564AD4DEAAF2681F00DB /* listener.upb_minitable.h in Headers */, + E491C6A7BB615583BE0661876FF14339 /* listener.upbdefs.h in Headers */, + 5821866DD6A877331797279E71502435 /* listener_components.upb.h in Headers */, + D55FA7AF320B2AF536849345B4F267B1 /* listener_components.upb_minitable.h in Headers */, + 7B64121EB505E14D08BA5FEF1208CDC0 /* listener_components.upbdefs.h in Headers */, + 9BF79064F9792D6BDD690A2852A2E696 /* listeners.upb.h in Headers */, + 54D31C4FE0B90E847833B80801134DAA /* listeners.upb_minitable.h in Headers */, + 573B07F26228966E14BA4BB6E3B166A7 /* listeners.upbdefs.h in Headers */, + C67E37A1C40BEFF05390705C34DCC68B /* load_balancer.upb.h in Headers */, + 340756E50091426AB4BE4E9FC5D9FFE8 /* load_balancer.upb_minitable.h in Headers */, + 45D14942DA97CDFABE3206518AE7D9C4 /* load_balancer_api.h in Headers */, + 7F57618B95EE24034516274D89E802A5 /* load_config.h in Headers */, + CB10EC19FE1F04817CFB6A1CE66F6295 /* load_file.h in Headers */, + 6337BA5FBB6B9A30A317ADD03927F103 /* load_report.upb.h in Headers */, + 2C07D73124C362419935EA1213B35F12 /* load_report.upb_minitable.h in Headers */, + 107B81C27B14E008D6D52D8618DD06F9 /* load_report.upbdefs.h in Headers */, + 31CD8CD81E1E8BD57618897A5D547299 /* load_reporting.h in Headers */, + A278DAA4BE4AC6904E05BC79E3410962 /* load_system_roots.h in Headers */, + 650B0840FF3679A44FC2C7FF38312B97 /* load_system_roots_supported.h in Headers */, + 016F85C37912FA061EBF9DFBE1DD39C9 /* local_credentials.h in Headers */, + 98876EA0F9D164D93AFB8812130BF647 /* local_security_connector.h in Headers */, + 41F7652B54CBCE324BD9B62595ADB2F6 /* local_subchannel_pool.h in Headers */, + 44255BAC96E061A7539CFC365B8D3B1D /* local_transport_security.h in Headers */, + 657C2DB81A2D6229D502A8E609ED2326 /* lockfree_event.h in Headers */, + 00029FA13723BD1C4DFA9CD63DE92220 /* lockfree_event.h in Headers */, + D4B7E0B6023B977FAFE88EA10227C445 /* log.h in Headers */, + D99519BD29C027E4541E43EB0025D1F4 /* log.h in Headers */, + 871A24E78A65460E4886788CB32BAD89 /* log2.h in Headers */, + B6B1690FE7ED2E0BAA2270DB6F2C34F1 /* log_internal.h in Headers */, + E1E504D07261C16FCD3EF48C94E16445 /* log_windows.h in Headers */, + C34D4796E6B283861A3867B9B9194903 /* logging.h in Headers */, + 4CB57588A4683C2A81820BF83D357E60 /* loop.h in Headers */, + 03EF96D9CF81F90A7969A46E78D4A114 /* lrs.upb.h in Headers */, + F383076058456598F2FF8D3E3C389101 /* lrs.upb_minitable.h in Headers */, + 4C87896D543E7CB4972EFF1387093BA1 /* lrs.upbdefs.h in Headers */, + C8AD98DB1AD2C083F804D3ED955714E2 /* manual_constructor.h in Headers */, + D8D1C2B1C173A9B9557BABDD1E605043 /* map.h in Headers */, + 1D7D21F73B4E0D80AFF44435514DC054 /* map.h in Headers */, + 1A584E725572301A0A46AA9CE456D6A0 /* map.h in Headers */, + 41BF9E42C59638DAA814467BCF49F96A /* map_entry.h in Headers */, + 4F984004AAC751B50ECDF16BAE2B22F1 /* map_gencode_util.h in Headers */, + C492EAB41B0203F4A6E884AFE6434ABF /* map_sorter.h in Headers */, + D215650C87482F3C42909B63407BC1E3 /* match.h in Headers */, + CA027E9683F38F9939C6EBCA9335825F /* matcher.upb.h in Headers */, + ED5D4D48D2F0211EAD21585414D877BF /* matcher.upb.h in Headers */, + 6AE39DCF97D7DBDE7F82829416759F89 /* matcher.upb_minitable.h in Headers */, + F2FD7459BB317F770B54B41750D033E2 /* matcher.upb_minitable.h in Headers */, + 4A096F8D08F654B9EE9678520581AE85 /* matcher.upbdefs.h in Headers */, + C45A4D3718378778561FF44D13987CAE /* matcher.upbdefs.h in Headers */, + B5AD9D0E9E23365409CA76BBA90A7C26 /* matchers.h in Headers */, + 7272D0923C1275913161293D7B6EE87D /* matchers.h in Headers */, + 43100075EB60A2125A0A3703D1F97103 /* max_concurrent_streams_policy.h in Headers */, + 6F022FD4783DE0189DC7ED21988F6494 /* memory.h in Headers */, + 879CABBDFCC3A4C9E175860A9301FA4E /* memory.upb.h in Headers */, + 992E520403AE98C164D7A869E8B37C49 /* memory.upb_minitable.h in Headers */, + 0185F784C838C84CCD89ABE3BE36A500 /* memory.upbdefs.h in Headers */, + 4C297C477ED9595629C0EF80133F75D4 /* memory_allocator.h in Headers */, + E59FF3693381F88628CC1F31F1226625 /* memory_allocator_factory.h in Headers */, + 0266718C988F87EBA2925F2EF459C7C7 /* memory_allocator_impl.h in Headers */, + 61126463038917765BF9117FCDFC9EEC /* memory_quota.h in Headers */, + B8C0A5C850A7BD5B7E0F5CAD880F94BD /* memory_request.h in Headers */, + 75D59A7F59E5DA8F86086A75D5ABA989 /* message.h in Headers */, + 1B5597718D5B35CE1313E089ACD4DB33 /* message.h in Headers */, + C31AB3D6EFB782B0CEB2FD5917735600 /* message.h in Headers */, + 253AF95D571F57B84BE9D9A0C4CE0ECB /* message.h in Headers */, + 4325E230054322E044DA0AE32E1C0E53 /* message.h in Headers */, + 67AC3B4311218D1BD04E7B3A76BBD762 /* message.h in Headers */, + 905481453F937EA39FD5CECBA90E4B65 /* message.hpp in Headers */, + 19ED5F27C00B067A314E3A7FBE2C3A18 /* message_compress.h in Headers */, + 56A13C23E244BE23D50232E71C57EDA5 /* message_def.h in Headers */, + E448D7A033AC599F59E98B35A635FA5B /* message_def.h in Headers */, + F7D4DC17C5A8C9573ADC3BCCAB4661AC /* message_reserved_range.h in Headers */, + 6EEB58B3CAD28483488A6CAFFA5F9FA2 /* message_reserved_range.h in Headers */, + 7570A6A36C2C6517DB3A473D773EE984 /* message_size_filter.h in Headers */, + 96D8F7B4C0B56F197CBE3FEE3CA30DA4 /* metadata.h in Headers */, + 4AD3DA18F5DDA609CB5410267598A8DF /* metadata.upb.h in Headers */, + 11D6C3DE386C5AF397CD1B8798DC81FD /* metadata.upb.h in Headers */, + 9ABCED4F1E310FDB0177BBA41E731114 /* metadata.upb_minitable.h in Headers */, + 84B1CCEE6541BC0E5E4AEA63A473B2B8 /* metadata.upb_minitable.h in Headers */, + 86D731DF4B43DB491155DE666CB232A8 /* metadata.upbdefs.h in Headers */, + F8AB6344CDD6580FC65E1EDA408E32D6 /* metadata.upbdefs.h in Headers */, + 3A7B2ED7A8E468CFBA7AD70B14B4F628 /* metadata_batch.h in Headers */, + BE19F87839D1A69C7EDEF33831A82B8C /* metadata_compression_traits.h in Headers */, + 507C21140221B4D0B4DE5E8389E14F7B /* metadata_query.h in Headers */, + 9A3C05C7875797F0E2DF13CD92CE3DFF /* method_def.h in Headers */, + 477E176D01C322023A7D573DAED06C86 /* method_def.h in Headers */, + 0FF3659D5AD52E2575FF560F94E5465A /* metrics.upb.h in Headers */, + DE79A5B6C140E8EC77B3FE19DC2DEC4F /* metrics.upb_minitable.h in Headers */, + DBA398F43DA208A2BD97F2A5A9CBB9FC /* metrics.upbdefs.h in Headers */, + B8E5CA1E1D0999767741CBE6BD95F74F /* metrics_service.upb.h in Headers */, + E4AAFF0A118DE0EBCCC07052BE2D0F17 /* metrics_service.upb_minitable.h in Headers */, + B4F5F2C035CCD5782FF031BAE5563653 /* metrics_service.upbdefs.h in Headers */, + A6438EFEEEA7EF378F3B03733E967A8C /* migrate.upb.h in Headers */, + 7B92D712C0BE5CA035E7B2AFBB27917E /* migrate.upb.h in Headers */, + 4AA10E51D004538FC6890CDB46DBE6AB /* migrate.upb_minitable.h in Headers */, + AB52272CF0005F2F2AA8843C2341042D /* migrate.upb_minitable.h in Headers */, + 2B303792365B63F80D1AD4D9177F6F59 /* migrate.upbdefs.h in Headers */, + 91D8A4AC0101E27D65D1CE0707B4C0A7 /* migrate.upbdefs.h in Headers */, + 095ACB15DCE479D350629EBBF1331103 /* mix.h in Headers */, + 4B47D0EE827D27A041A9A76AAFB90BB1 /* modifiers.h in Headers */, + C55E58510C71365A43FAE3AC41CD1DE6 /* mpscq.h in Headers */, + FA29130B89932CFAF9882FF096E6F765 /* mutex.h in Headers */, + 74050D23CFFCEBA9682C9070F1665AA5 /* mutex_stats.upb.h in Headers */, + 99351B4F190A76BC93CCB46A9C6B8835 /* mutex_stats.upb_minitable.h in Headers */, + F7BBA03405ADD363FDB7118442ED3A75 /* mutex_stats.upbdefs.h in Headers */, + F615B002361331D463DD65BD2DE8E08F /* nameser.h in Headers */, + 1DE5FEA27C4969AEB615A5A3B1B1EB87 /* nameser.h in Headers */, + 858A4ABC7DD13D94CCBB3EF06609DF57 /* native_posix_dns_resolver.h in Headers */, + 7FFC9664FB840BBD56112FC33CAEDBAD /* native_windows_dns_resolver.h in Headers */, + AD1C33BD351DD76E81C28F5BFA63B48D /* no_destruct.h in Headers */, + AE2A9799F9721F4F6F34ED3FFED2A594 /* node.upb.h in Headers */, + 780118484AC7C33E2324D6484AAC4A9F /* node.upb_minitable.h in Headers */, + 39B1DAA935090AF8CA9A25FEFE964C63 /* node.upbdefs.h in Headers */, + 4715BD71EB0000C7D2FA146E620FA68F /* notification.h in Headers */, + A95A086F0F721B10CCC6902648BBCF45 /* number.upb.h in Headers */, + B79B278523950DC475E3A4C976DE195F /* number.upb_minitable.h in Headers */, + 74C439EBA70C64AE81E0A52B0D375C20 /* number.upbdefs.h in Headers */, + 095889F01EA9E42F50B0AF79EB50F2D7 /* oauth2_credentials.h in Headers */, + 1DDEB173A5F49C506BE92AB3A9689FE7 /* oneof_def.h in Headers */, + 52212E5D0CCC2B35323B4DEB7B773C20 /* oneof_def.h in Headers */, + 2C23BC3628CD0C5F2ADEEDBC1C194F4D /* oob_backend_metric.h in Headers */, + D78339BE3794B4814F395D2DB9975BAA /* oob_backend_metric_internal.h in Headers */, + EB5CD6C5ECFE747C211FB5858B9705E7 /* opencensus.upb.h in Headers */, + CE7AE7D8AFC796F491E5413DD97E02F7 /* opencensus.upb_minitable.h in Headers */, + D9B640CE6906E65DE7965DF7AB4C11B4 /* opencensus.upbdefs.h in Headers */, + E116B7B00AC925F20C92C520F9C22A88 /* opentelemetry.upb.h in Headers */, + 5980599BA186608B5ADA1BBBE13BF3C8 /* opentelemetry.upb_minitable.h in Headers */, + 418DC4A60D31723D339BD49277A3BE72 /* opentelemetry.upbdefs.h in Headers */, + E3A5A4FD6CF336CC3066A6DED1C533E5 /* orca.upb.h in Headers */, + 240DCDA35ED6DA70EACE6917AB380884 /* orca.upb_minitable.h in Headers */, + B49A0477E00D3E7BB5BA874851A81C76 /* orca_load_report.upb.h in Headers */, + 88C5E5D0C611B761730A531EFF8F27BD /* orca_load_report.upb_minitable.h in Headers */, + 2E8942B294DBD8B077EEAC7F328DABDA /* orphanable.h in Headers */, + 2EC9F86285BCA997E31B03B7A99A08ED /* outlier_detection.h in Headers */, + D8225E08CA207CF07EFA91E6FB9B6118 /* outlier_detection.upb.h in Headers */, + 76A8717F625377C6C7183BDB0D9A1893 /* outlier_detection.upb_minitable.h in Headers */, + 1CF43207828306D623F7CC9DC6647528 /* outlier_detection.upbdefs.h in Headers */, + 90725A345D39E08E98354C1C2A1F1694 /* overload.h in Headers */, + 1A280972A3B49608631C74965ED95F45 /* overload.upb.h in Headers */, + 027CD599D13516063A9232D56C8936B5 /* overload.upb_minitable.h in Headers */, + 5D15C3C82971AA5BCC472639EA23C388 /* overload.upbdefs.h in Headers */, + 86974C07DF9F42682CC3263CA8F73F5F /* packed_table.h in Headers */, + 8DF69FF4C8CBF46D2781545A60152BE5 /* parse_address.h in Headers */, + 1D65DB54978F998D2918D799F9AF1713 /* parsed_metadata.h in Headers */, + D740605F04F30A12DD5B3FD25C6D0831 /* parser.h in Headers */, + C9DCD0CA84522128C025DF4E9D71F872 /* party.h in Headers */, + 6B1E68F37D6EB4F2BCCCF60A5C0B2DEE /* path.upb.h in Headers */, + 97CECFDF611420CC778C674BD108CF4A /* path.upb_minitable.h in Headers */, + D47046A4EF1EE17D0CE0304CCB1EDEC4 /* path.upbdefs.h in Headers */, + 523D48F572F55CAF60CB0EB712DDF64E /* path_transformation.upb.h in Headers */, + CDF7870BB2BB98DEEC537068A8FC8515 /* path_transformation.upb_minitable.h in Headers */, + 3EA28E69BF4732D55F73D9316020D2E7 /* path_transformation.upbdefs.h in Headers */, + AFA9812D752C9952DC0D200CAB5356E0 /* per_cpu.h in Headers */, + 02BD45D1E5C080F3D00FFE8CB7E46A80 /* percent.upb.h in Headers */, + 03E36E86CB1B79D90862D5CF906B834B /* percent.upb_minitable.h in Headers */, + ED270F9AA29BE450D996A9689355F16F /* percent.upbdefs.h in Headers */, + FFCF25FD72AE80868A7305B38D0F9565 /* percent_encoding.h in Headers */, + 77F09ECC7CA4A55F6F8F6D0B607EB189 /* periodic_update.h in Headers */, + B6D5051398FCFE3915C5E67AFFB19F87 /* pick_first.h in Headers */, + B4EB7BB24070BB982584F0A838507EEA /* pick_first.upb.h in Headers */, + 1371C35C5BB569BC58F8DE85C6C9AB02 /* pick_first.upb_minitable.h in Headers */, + 91EC43946A76A849419992261E450D79 /* ping_abuse_policy.h in Headers */, + 083803EF0943B5412C6EC87CC742CB7E /* ping_callbacks.h in Headers */, + 9862A84C8644D667986AAFA83FFDABCA /* ping_rate_policy.h in Headers */, + 15F8BBDB9ABD79C19B9739B95AB90563 /* pipe.h in Headers */, + F732A0A01D1327398756B9BCA7EC2F99 /* plugin_credentials.h in Headers */, + F703479402B08F475B931ACE908A41CE /* pod_array.h in Headers */, + C1612EF35DBB141C9EB90782E1971FED /* poll.h in Headers */, + 2585F19A5D2BA77826ADB630FF236AD8 /* poller.h in Headers */, + A727ADED9FBD612B935C51025B4C444D /* polling_entity.h in Headers */, + 78E4F16117A64422A9A0C6996C4CDD3D /* polling_resolver.h in Headers */, + 1A1A7D2632AADD545131C0A34673183F /* pollset.h in Headers */, + D1E0373D3A9BD0CFF6F8FADE57A6CB9F /* pollset_set.h in Headers */, + 69C98E5FBE5B9A909673D5DF8C05C28D /* pollset_set_windows.h in Headers */, + 6A5D61E95A84E007B3496645C244D039 /* pollset_windows.h in Headers */, + 3E4932CD54C34964450D9DC0D0479C95 /* port.h in Headers */, + 3707EA6A58E9CE70623CF4EA11AF54A2 /* port.h in Headers */, + BD7649107D9FDE6CEEBF95A4744315A5 /* port_platform.h in Headers */, + 970967DE9D98E80C954476A725092B80 /* port_platform.h in Headers */, + 2A7E85B7FF6EE59378745F7AD82C8449 /* posix.h in Headers */, + 8F9814C22E6CA3050CCC022CD141B868 /* posix_endpoint.h in Headers */, + 498CD08C01840935F11D88B298BEBF92 /* posix_engine.h in Headers */, + F9B431F16ABE4D0FFF68738727F609C0 /* posix_engine_closure.h in Headers */, + A874CB14EEF8E6A8D42B8D7F63BA8283 /* posix_engine_listener.h in Headers */, + 860972DA49B5C8FDC04B0F740129710F /* posix_engine_listener_utils.h in Headers */, + F7E3C2F40DE3004340A11765D281CE8C /* prefilter.h in Headers */, + 457A1CBC729145062CFB23348D8D5D38 /* prefilter_tree.h in Headers */, + 5F6C7D4C11FAA6147696DA9ECAB3DABF /* prioritized_race.h in Headers */, + 18CCE1DAFC16DE2289F29326EAA4A61F /* prog.h in Headers */, + 4FAA678EEA906332F1F5EBC54C5C48B4 /* promise.h in Headers */, + E4163A7E750A9A37024628029BA68A3E /* promise_based_filter.h in Headers */, + 039EFFB41496F5B53797A5E911EA3A6E /* promise_factory.h in Headers */, + B00135DD4881AE05D6E163A8F9565406 /* promise_like.h in Headers */, + 4A8365AA7FD8821405FE0762E1C99D7A /* propagation_bits.h in Headers */, + 0B907BB5C3186F8BB794A9CEF330607C /* propagation_bits.h in Headers */, + 844A584D9E5C0466F2215118C1A955E9 /* protocol.upb.h in Headers */, + BBC91FDC8DB5DFC601463258BBCBEFE5 /* protocol.upb_minitable.h in Headers */, + 9EFA2C016ED79DE0A2029E0822FF92BB /* protocol.upbdefs.h in Headers */, + C5EF11EE48145049815689612B115311 /* proxy_mapper.h in Headers */, + DF17DA5BFF2006056356A37400BD1EDE /* proxy_mapper_registry.h in Headers */, + 1D626EF9CE6E6C62C4AC869C7F42F8B4 /* proxy_protocol.upb.h in Headers */, + C9C4ECEE78E344C6B2BB1DEE871E5B77 /* proxy_protocol.upb_minitable.h in Headers */, + D15F174B81992510C02532F8BA24D290 /* proxy_protocol.upbdefs.h in Headers */, + F70CA14536C194A077C51099EDB6F87F /* python_util.h in Headers */, + 61F98C78E5EF647642DFA8ADFC58F1BA /* query_extensions.h in Headers */, + DAE593A5308644031396B873AE9F0BEB /* quic_config.upb.h in Headers */, + EDCF4C6BBC79D74D3A1EBC92E9D1292D /* quic_config.upb_minitable.h in Headers */, + E30DBB77B8008FEDB4C479284F011EF7 /* quic_config.upbdefs.h in Headers */, + AFA99C53C616E28479B7B446217414A2 /* race.h in Headers */, + 71845EF883177FA47C2674005841FD91 /* random_early_detection.h in Headers */, + 41F667C1420F56E71864F0BD309FD312 /* range.upb.h in Headers */, + E203EA215FDB215804541359FC6C7BA7 /* range.upb.h in Headers */, + 6C71F600E1FC64E275385CA704DDEB51 /* range.upb.h in Headers */, + BA15B9124C5288E9ED3D5D8A4DF2C21F /* range.upb_minitable.h in Headers */, + 9BB8E0538B5DE688B99EE8DFFC8ABD91 /* range.upb_minitable.h in Headers */, + 70B22759588F862699FD1D90E7BF4AF7 /* range.upb_minitable.h in Headers */, + DF16089298A7F696989FD61DC2861BE3 /* range.upbdefs.h in Headers */, + 61B73D2C79F846563CEA60DD8897069A /* range.upbdefs.h in Headers */, + 63B64F3118AF553F378278025B563287 /* range.upbdefs.h in Headers */, + 26048C9692FAA813E6157F4CBDED3533 /* ratelimit_strategy.upb.h in Headers */, + A8FD726D51E6C924F635413ED4892681 /* ratelimit_strategy.upb_minitable.h in Headers */, + CACC0C7F49BBFC4B422B5C51017D2F29 /* ratelimit_strategy.upbdefs.h in Headers */, + D00F687B4C56B034B9778738C27E494F /* ratelimit_unit.upb.h in Headers */, + 9FD2991B354DB1CAE823B21474735363 /* ratelimit_unit.upb_minitable.h in Headers */, + 453B351EB8730BC68B0CEEBBFA462DCA /* ratelimit_unit.upbdefs.h in Headers */, + 03E104A6AB660AB904295AA39EA7E01E /* rbac.upb.h in Headers */, + C57B9893FD72DE82572FBC4530ED3DCC /* rbac.upb.h in Headers */, + 405CA8E98DF6277DC89943CA65CBD6D0 /* rbac.upb_minitable.h in Headers */, + 083767003A7CBE2D517E84226695B14D /* rbac.upb_minitable.h in Headers */, + 08DCC1703B039D00A2EFE9709215309F /* rbac.upbdefs.h in Headers */, + 6604D0B7C29F0FDA4C9D2BA0A7C29BD0 /* rbac.upbdefs.h in Headers */, + B70D847CC9C5F75B0617A3BC39149617 /* rbac_filter.h in Headers */, + 44B565015DA56C037C2E7B5CD5714901 /* rbac_policy.h in Headers */, + 20E01D657901726D2714F680F67C5766 /* rbac_service_config_parser.h in Headers */, + CF430A4FD6FCFC200B1535AF0E0BE2FE /* re2.h in Headers */, + 0D848CF4AB6BF01A176A18C01D59FCF7 /* reader.h in Headers */, + B488BCCD856D93EB83A940DF697711E3 /* ref_counted.h in Headers */, + FC87EBDA2BA08D13CE24B1ED20B1735A /* ref_counted_dns_resolver_interface.h in Headers */, + B9E8421275C0517196392CBB61D0124B /* ref_counted_ptr.h in Headers */, + 7B0477996C15738CD74E886B0E72C3B6 /* ref_counted_string.h in Headers */, + ECD174E221929AE8FC6736423B77420A /* regex.upb.h in Headers */, + B0813ED02897BCEBED51FDF36C08E24B /* regex.upb.h in Headers */, + 386696AD9E0090737066EB3FFCEF3362 /* regex.upb_minitable.h in Headers */, + DDE1F264733C87BC188FACFCB599A5FB /* regex.upb_minitable.h in Headers */, + 76EDC70CB740ACF46C511A63399F7137 /* regex.upbdefs.h in Headers */, + 6AB3D3CDF81FEE6B37D942EE84C674FD /* regex.upbdefs.h in Headers */, + A2312894CD64DCD5A358A82B331DCD1A /* regexp.h in Headers */, + 44CA8BCB8B356DE50192471A1E584FFD /* resolve_address.h in Headers */, + D6CD340093F560F2EFFFB75AA7144B44 /* resolve_address_impl.h in Headers */, + 58370E3BE3CA8065D78B4D9453FADEFB /* resolve_address_posix.h in Headers */, + CEA7A847DFA80480B18B0EE1327769C1 /* resolve_address_windows.h in Headers */, + 0B3E82F0FACACDC505F873C65A6A52E1 /* resolved_address.h in Headers */, + 0BAF3402BAA5D467AFF0691A943290AF /* resolved_address_internal.h in Headers */, + 86CD1F86EEFE9085A372D366B6918E31 /* resolver.h in Headers */, + 47228BEB17DCE4A4AA6E1D66C9745AB6 /* resolver.upb.h in Headers */, + 9B9E5E346EB8EFDEDD8FC5704E954924 /* resolver.upb_minitable.h in Headers */, + 23C14E21DD7FF7B611930A8578C921D8 /* resolver.upbdefs.h in Headers */, + 72206C00E693DCA6F346D61B82E31688 /* resolver_factory.h in Headers */, + E171319BEC27CA78825FFE28190E9A53 /* resolver_registry.h in Headers */, + 189D3801560D32AE44B4B312B06539E3 /* resource.upb.h in Headers */, + 26795808D27EAF22FF854463A548BE14 /* resource.upb.h in Headers */, + D2CC0EA1CC389B445E77583AE99F99AF /* resource.upb_minitable.h in Headers */, + 5F5AFDE4EA8C9E8DED983C33C5F516A9 /* resource.upb_minitable.h in Headers */, + 3AB376123E2E7AA29CB69ADA7DD2747E /* resource.upbdefs.h in Headers */, + EEEBE36FF1CE0843B0D0A38E61A3212B /* resource.upbdefs.h in Headers */, + 05F5B52252BFD70296D5D026148708E1 /* resource_locator.upb.h in Headers */, + 085D3DFC9D9EA273C0977BFA40843152 /* resource_locator.upb_minitable.h in Headers */, + E17A95EB28661A6AA4D9F78A9703D955 /* resource_locator.upbdefs.h in Headers */, + 982FCC690807870A10A4A9F254F62F90 /* resource_name.upb.h in Headers */, + 27C09CF00DFFD8751F41163E5E2D6A28 /* resource_name.upb_minitable.h in Headers */, + 596AB6CB2771F437D1A3D87D2E62F898 /* resource_name.upbdefs.h in Headers */, + 918C1C89CBD2DB2DDE17A404250F9055 /* resource_quota.h in Headers */, + D3CCBF8685B47ACCD90B442C0F9D646B /* retry_filter.h in Headers */, + 706182C4DFD7E04EF504D7C4D2C761E9 /* retry_filter_legacy_call_data.h in Headers */, + CA519A194E93A9EEEC44D33C1866CA8D /* retry_service_config.h in Headers */, + E3F2B5D63126A9CACFA3309945E1CAB2 /* retry_throttle.h in Headers */, + 63B852309076379032923D85D54A49CB /* ring_hash.h in Headers */, + 30945733782FEDF9F8CA854785773A44 /* ring_hash.upb.h in Headers */, + 096CC48AFA76F26F34E39C33A9EAA9AF /* ring_hash.upb_minitable.h in Headers */, + 40ED7E41670FBD156B4BBD729E5F691F /* rls.upb.h in Headers */, + 5E27320D82A8138C4751EEFBEDF5967B /* rls.upb_minitable.h in Headers */, + 676FD82025FCD4624539B5BADA70C711 /* rls_config.upb.h in Headers */, + 29401CA077EBF2B28E5D47D9A1EBD2D0 /* rls_config.upb_minitable.h in Headers */, + 5AF217E37BB53FF81BBEBC228F60C0E3 /* rls_config.upbdefs.h in Headers */, + 605518B2844907A10BD03C2209606BE2 /* round_trip.h in Headers */, + 790A27962F75E025822C34302C49E80A /* route.upb.h in Headers */, + 94251FCD8DEA236553D75FB3E8FCE0BA /* route.upb_minitable.h in Headers */, + 2C63E5E83711D1B8267F0AE26A3E7B4A /* route.upbdefs.h in Headers */, + F761EF7962269EC11C4CD340E3F49133 /* route_components.upb.h in Headers */, + 89D9E265E50613BF76946B91D7E3B9D1 /* route_components.upb_minitable.h in Headers */, + 7C2B4D160DB49686CF2B219B10D714A7 /* route_components.upbdefs.h in Headers */, + DC62D3AF69272FD6E4AD4E9EAB1354C0 /* router.upb.h in Headers */, + 378E599120DF8DCC04001D7290DFB380 /* router.upb_minitable.h in Headers */, + 49C0056BE25738A9FED0B646F0FFBDF6 /* router.upbdefs.h in Headers */, + 5CB96FADA04976A8612EB4176A262026 /* scoped_route.upb.h in Headers */, + 1D4C0929ED3838D9BE8DE816314E9291 /* scoped_route.upb_minitable.h in Headers */, + FE591101E4307EE94AD35A5E52C784AC /* scoped_route.upbdefs.h in Headers */, + 79101EBBD7A5BAEB4C3334BFA1DA9A60 /* secret.upb.h in Headers */, + FB76ADDA13D2EAEB66875D0A033E298D /* secret.upb_minitable.h in Headers */, + B00EB5119824400D226F57FE2700FDA2 /* secret.upbdefs.h in Headers */, + 4F68F7B93444054A5162EB40E03EB5C5 /* secure_endpoint.h in Headers */, + 550DFCBEA8EA54784200AD734B279139 /* security.upb.h in Headers */, + 7171F9B29E6542E66C2DDBEAB245D5B3 /* security.upb.h in Headers */, + D0473FAC84CBDA02ECFC346EA3D85223 /* security.upb_minitable.h in Headers */, + 53FEA573AC346BB150D5F39129101CA7 /* security.upb_minitable.h in Headers */, + 90C6D6963BA135501549A1D24B29D88B /* security.upbdefs.h in Headers */, + 73350A1D612D5C0B730AEBFA563F0F99 /* security.upbdefs.h in Headers */, + 664FF3BEA86866689DA69C7E7BA58D3F /* security_connector.h in Headers */, + F03F0F3180365A7748DFBDF991BB1E70 /* security_context.h in Headers */, + 4474AB8BF8395BCE612CF40FAA0AD1D1 /* security_handshaker.h in Headers */, + 75DE1A8BC3DCF8AE86953592AA972588 /* semantic_version.upb.h in Headers */, + 9EB700B7192B9675BA839FBA240B5579 /* semantic_version.upb_minitable.h in Headers */, + 8F88D50990E03A421B097E1D023CAEAF /* semantic_version.upbdefs.h in Headers */, + 60FF2EE4A1EB2A9C3ABE6DFD9291BEA5 /* sensitive.upb.h in Headers */, + D24F202ABFF6FF8B7AC2A937EEFBBFD9 /* sensitive.upb.h in Headers */, + 5C597EC6FCD81D48EA513E2556ACA9F5 /* sensitive.upb_minitable.h in Headers */, + B7C080A77AFBA20C6AC509A3603F1818 /* sensitive.upb_minitable.h in Headers */, + 9830543533EA5036BF06248572A8D488 /* sensitive.upbdefs.h in Headers */, + ED55015E67B74C8BE44813726966C163 /* sensitive.upbdefs.h in Headers */, + 786FC74B75B975EB87E46DF15EB49666 /* seq.h in Headers */, + 67731AB83AD498B888C4506E250800A2 /* seq_state.h in Headers */, + FE5CB15EDD0142D2B17AF004A813CDEB /* server.h in Headers */, + BA6BA32171A60F930ED93C4ED35E348E /* server_address.h in Headers */, + 4CDD9E0A2E8DB3004DF2543F31C22526 /* server_config_selector.h in Headers */, + 9F781505A5A629B879DBE3E1D0630515 /* server_config_selector_filter.h in Headers */, + AEEA92A4863A0EEF4C86ED8A97007F1A /* server_info.upb.h in Headers */, + B226D7D6CEFD080BB16E267626B6ED77 /* server_info.upb_minitable.h in Headers */, + 4FAA34919E1DAF1CC827F7D779432A0B /* server_info.upbdefs.h in Headers */, + 46A5492F946A361C66B3103832A5D4AF /* service.upb.h in Headers */, + B4F3BEC90E3E9353A324A3C8EDC74C39 /* service.upb_minitable.h in Headers */, + 48E8CCE349696F3D7E26F4CCD2AC9B5D /* service.upbdefs.h in Headers */, + 47B270F8217C14DF146772DFED00A9C2 /* service_config.h in Headers */, + 7A515D0F8C0DA5BFD37FDF2D3CBEF43C /* service_config_call_data.h in Headers */, + 1422B14A1E14C6E61D45FDB745A2D92C /* service_config_helper.h in Headers */, + 214F31E672B363E2320218CB21BEE750 /* service_config_impl.h in Headers */, + 62308A082E2625E569C1DD604CFDCC68 /* service_config_parser.h in Headers */, + DC357AD7A62358FC49F6508DD06CDBAF /* service_def.h in Headers */, + 79EF97F6BB5F040A0EB2E86580A5855C /* service_def.h in Headers */, + 02AAB9BFC87606637A5412F96FE84F69 /* set.h in Headers */, + A34F802F6370E556B8BEC10936FCCFD9 /* shim.h in Headers */, + AEC859ADB5E3F7489A628C1E70005519 /* simple_slice_based_metadata.h in Headers */, + F57CF84CD0F654B87500D72205A4D015 /* single_set_ptr.h in Headers */, + 39C53F2DA22D943AEFDBD19A988F39B8 /* skywalking.upb.h in Headers */, + 00E7F189D3EC0F7E76373723CBC43279 /* skywalking.upb_minitable.h in Headers */, + E23BE7DCD740F838F3C93732F0C85626 /* skywalking.upbdefs.h in Headers */, + FABD95B20703419DEC09CBACC802B296 /* sleep.h in Headers */, + 87C0588BFF25541089601AC752EC4E37 /* slice.h in Headers */, + FBE0131DA8F0D2CD6591E1731B002275 /* slice.h in Headers */, + 66842919A8AFFEBD5C5CC39890ECD6E4 /* slice.h in Headers */, + 3A1A69505A6C5022674C8E26CB34A700 /* slice.h in Headers */, + 01DA9686EF581C6BEC18FF2D8280482B /* slice_buffer.h in Headers */, + BB128F0AE8A5419F02CB4949410CB624 /* slice_buffer.h in Headers */, + 9493183704B4AD60EA1E0F69A1ECE5D2 /* slice_buffer.h in Headers */, + E4F70381578FECCE052AED2BF3BFACA5 /* slice_cast.h in Headers */, + 8CC41F4D11A0F23178F1E045F41D382A /* slice_internal.h in Headers */, + 30E332237A3EDA068429D7745CCD982B /* slice_refcount.h in Headers */, + 98AC10EA0DBDC82A5F5F0DA8901D1331 /* slice_string_helpers.h in Headers */, + 88DC7F345C3DDFE4160152B38737DFCB /* slice_type.h in Headers */, + 6DE0BA88F92D6168AEC5051F81FC6379 /* sockaddr.h in Headers */, + C3F27F83AE2E4FFAD2370D44399792B8 /* sockaddr_posix.h in Headers */, + 07C12FFBD2B6D7699161698C10904E6D /* sockaddr_utils.h in Headers */, + F62BBFF6F44EDD110EB5A5AC208263F3 /* sockaddr_windows.h in Headers */, + 7C2F27F33358F233A39148E0BF4484A4 /* socket_factory_posix.h in Headers */, + E6CB03F52D4B24E78295F9A931F9CB33 /* socket_mutator.h in Headers */, + 0A1BE45CB725F25B6A1722253E519B8E /* socket_option.upb.h in Headers */, + 88D3128AEDFA604C191E186E2DE7CCE3 /* socket_option.upb_minitable.h in Headers */, + D411ED90FB87897ECD9A5BB89BB5F862 /* socket_option.upbdefs.h in Headers */, + 46461AB4C2E5E30352B08071578CFB03 /* socket_utils.h in Headers */, + 1F25302236D49B7F89CE8D8FD68E72FB /* socket_utils_posix.h in Headers */, + E3C96F5417BF410285BD1FED6E6FBB3D /* socket_windows.h in Headers */, + 619A7C410FC901FB8449C95EA3E528E3 /* sorted_pack.h in Headers */, + 0A3A235F2B778C5BD9C6DB4C96761892 /* sparse_array.h in Headers */, + BD52625C289DE7DD91328727A94DBE9D /* sparse_set.h in Headers */, + DD4E6539A537D5B775D2A5E0D9EA3049 /* spinlock.h in Headers */, + F4E85A192818F4EE5EAD3E6464E137D6 /* ssl_credentials.h in Headers */, + EC4FCC69C50ED6BA6BD353B7193AA310 /* ssl_key_logging.h in Headers */, + BE73D91CF05C84DDBDE1CB76AD34D15E /* ssl_security_connector.h in Headers */, + 13BB9151DA586E6A4063CDE8E405A1C7 /* ssl_session.h in Headers */, + ACFC204D5FBE11EC59ACF3E02EB575DF /* ssl_session_cache.h in Headers */, + 92AFF3EA51C056C79F472F1F070E9CC9 /* ssl_transport_security.h in Headers */, + 2F301E49D8543300596607300FE703A0 /* ssl_transport_security_utils.h in Headers */, + 9343B075D4C13DED44042CE62E746E25 /* ssl_types.h in Headers */, + F1EA459DFBC64AC58D9705AA67D3E0B8 /* ssl_utils.h in Headers */, + 75C7AA151F3D2532684378F6826C5A9F /* stat.h in Headers */, + 48FCE3011A36893DCD4FE1B2F1FBD28A /* stateful_session.upb.h in Headers */, + 047257D7F07D1A0690ACFC0ADCBA1F5C /* stateful_session.upb_minitable.h in Headers */, + C33E6D9EA5A40F915EE49D36106BABC0 /* stateful_session.upbdefs.h in Headers */, + A0C925DD040BC872DF755277C4C4C3CA /* stateful_session_filter.h in Headers */, + 4F8337F0793B1DD34BDA9212579E442A /* stateful_session_service_config_parser.h in Headers */, + B0BABE9033B8F7C3CC7E1ECF980E893F /* static_stride_scheduler.h in Headers */, + 4A9710F59C3E6C0F47624CAA39B2F8A5 /* stats.h in Headers */, + 126DD3F38C240E70E7C6B07F79BE4386 /* stats.upb.h in Headers */, + 571E88CE9D271744E7258C608B2D4C7F /* stats.upb_minitable.h in Headers */, + A96A7B641A4205D96A7CE2868953D045 /* stats.upbdefs.h in Headers */, + 209073E90BCC023ED9ED66D11CC8CA3B /* stats_data.h in Headers */, + 87729D9620B045A45C7FE4982C935FF4 /* status.h in Headers */, + A2BADB047C9B220A8FBFDC3310C61683 /* status.h in Headers */, + 829B5E8E91D02C8B49D261F43AFCE243 /* status.h in Headers */, + 9C9FBCFA938E8F695A7B7A271E095BF0 /* status.h in Headers */, + 03AF40DF1CF16885D4CDAE1F0A1E0757 /* status.hpp in Headers */, + 63284C461C2B16E911FF10D7FEF54358 /* status.upb.h in Headers */, + B56774BD2B0C8454F45E3A6BD4EE4553 /* status.upb.h in Headers */, + 47EA7A97B3733347179FCEC16FA5DD43 /* status.upb.h in Headers */, + 859655C3F6063AC397CB9108AD467906 /* status.upb_minitable.h in Headers */, + B3609A6CA726F0308462DA9A294E63C9 /* status.upb_minitable.h in Headers */, + 180EEF039A101494DC5BBF7CFBB8F07D /* status.upb_minitable.h in Headers */, + 593212726DEE337AB980FC3A465DD317 /* status.upbdefs.h in Headers */, + 93AB3BAFD43FFA324C28158E0BE685B9 /* status.upbdefs.h in Headers */, + 96B4074A7B6D62238802FF670AC7DBFD /* status.upbdefs.h in Headers */, + 2BDCBD0204B29C1412DE51E640C96966 /* status_code_input.upb.h in Headers */, + A468D53F1AAAE8574A8782CFA579AF7A /* status_code_input.upb_minitable.h in Headers */, + 361C3599569A6C28756BE9EF621B4257 /* status_code_input.upbdefs.h in Headers */, + 97289D398A5635428BE309372E8EEEB1 /* status_conversion.h in Headers */, + A1B51756248EC0E3DC678B0FBFE78979 /* status_flag.h in Headers */, + 3B88BEADCB6CCAB344E88AD80CE01E07 /* status_helper.h in Headers */, + 26F85292AAAC20769D355F2BF89AAD1D /* status_util.h in Headers */, + BBBE3B1D9C31420902B72DDD0DA4C4F6 /* stdout_logger.h in Headers */, + CEF861A9B2A63F4077F5D1EB80A7097B /* str_table.h in Headers */, + FB194C47BA70B5DF25F135961429ADD2 /* strdup2.h in Headers */, + EC16A546F62337E6B27FE3641B0227E7 /* strerror.h in Headers */, + 805E60F2BD48B07B369B4EA7D2058288 /* string.h in Headers */, + EF860281C9A193368BBA68773D37EA58 /* string.upb.h in Headers */, + 85E125F97FCD1A339FC8F420B6BF93A1 /* string.upb.h in Headers */, + B67032616F2E311E59EB55B6A14B42A7 /* string.upb_minitable.h in Headers */, + 4BA171D4E1364FC6287AFD8BBB7E1B18 /* string.upb_minitable.h in Headers */, + D4EA2DE1C7B15D665E669A5E580FDB0A /* string.upbdefs.h in Headers */, + 7DA7B88BA1F17DD20AB9E8CCC735DBF6 /* string.upbdefs.h in Headers */, + 160864B9DEB40081991ED33E9EE405A9 /* string_util.h in Headers */, + DFE4144D0C42FF04E4130F969DB36B48 /* string_view.h in Headers */, + 96E616BBA9D7B3046D7D92794F156BC3 /* stringpiece.h in Headers */, + E1426B72E069089EB35C7239ABE07972 /* strtod.h in Headers */, + 36649ADDF30F43C7AE205F9B9ED7B0CD /* struct.upb.h in Headers */, + DBE1CBDECE6CF9C55B3BF90F7B906024 /* struct.upb.h in Headers */, + E99885B570E157583D921BA5188F284E /* struct.upb_minitable.h in Headers */, + D615EC63231BCAA2C2BE3B5C0280D1CF /* struct.upb_minitable.h in Headers */, + 5E6FAFABF2CF53DCB63DB35513F11871 /* struct.upbdefs.h in Headers */, + 115DE9CAB3727BB52FDB41DA43286088 /* struct.upbdefs.h in Headers */, + 913BF24232316A343C695009A1D40180 /* strutil.h in Headers */, + A46905A51AB14384F741F4C9F8C791FF /* sub.h in Headers */, + 1B101BCA8062144EA1E082C63E7EF829 /* sub.h in Headers */, + 5FEE1D341FBB61DECD5E0C6654A68256 /* subchannel.h in Headers */, + 9207AAD42B1C9780F204098669C5AF6A /* subchannel_interface.h in Headers */, + C422B70DEA50ABE789548E1FAFDDAAD0 /* subchannel_interface_internal.h in Headers */, + 618613BC835C7A7DBC72933ACDBD6E48 /* subchannel_list.h in Headers */, + ACEF52DDF76AE2FF52FB5070391285E3 /* subchannel_pool_interface.h in Headers */, + C7B4CA6D1AC229451C3FBA0B1D69A5CE /* subchannel_stream_client.h in Headers */, + F7436B4A89233B7A05C851308807D8C6 /* substitution_format_string.upb.h in Headers */, + 12098103CFA4200007A08B220091A242 /* substitution_format_string.upb_minitable.h in Headers */, + 43A95A865E4C572F7CAFA3EF3E7CC8CF /* substitution_format_string.upbdefs.h in Headers */, + C4B661B6C4818E9DEE66170A60827CDB /* supports_fd.h in Headers */, + FB365CA715C50950323E4E5984A6ED61 /* swap.h in Headers */, + 382B5DAD82E126BE76FD4BFC95653422 /* sync.h in Headers */, + 9454A5496C84C493E0801D8A7B6CF434 /* sync.h in Headers */, + 26EBF17B98678BE17248411B04A976B1 /* sync.h in Headers */, + B71E32DA0DBE33ED391DFF1795E41447 /* sync_abseil.h in Headers */, + 590821872C68C5922E57A838BE01D525 /* sync_abseil.h in Headers */, + 9CD42947C0378D49AAA8B9628079D8F5 /* sync_custom.h in Headers */, + B56D8D59D57CDE86969171D32E1F9AB7 /* sync_custom.h in Headers */, + 11FCD60D0B48C10A86B223000F19E1F6 /* sync_generic.h in Headers */, + 41D14A9D22596F284556F54C4AFF7551 /* sync_generic.h in Headers */, + 4C695254F619AAC60DB7EB3EC6C9FFDF /* sync_posix.h in Headers */, + 985D99A26389C110EF4BFD48128D07B7 /* sync_posix.h in Headers */, + 2CC309B0495A9B063C84C835A90A1E4F /* sync_windows.h in Headers */, + DE97FEFF5448C3223AD860C5A37D848A /* sync_windows.h in Headers */, + D8C11C6FD340F1CA5BDC510F2758690C /* syntax.upb.h in Headers */, + A2A470CC108C51A6C2E6AFE06031FA2D /* syntax.upb_minitable.h in Headers */, + 94D4206551D5BFD266E53D420A2CB08F /* syntax.upbdefs.h in Headers */, + 4DA6A4F68FC4584CA41DA240D3CEBCDD /* systemd_utils.h in Headers */, + 7BAB9A1D283269D2419332A4D6914214 /* table.h in Headers */, + C4EF4435B8DF21BA795DD7F313955619 /* tagged_ptr.h in Headers */, + 98CFDE98BDEF0334B7AC2B13991E17F7 /* tap.upb.h in Headers */, + 31E8A1BB1FB56CE9C1F768319C89C054 /* tap.upb_minitable.h in Headers */, + 3E77DDDE033F5E14121BD9B36EFE1541 /* tap.upbdefs.h in Headers */, + BDB0A4CC3CBD6656A525D7D37FD65FC0 /* tchar.h in Headers */, + 6ACCFC3401B2A0DF9D41D36CB224F756 /* tcp_client.h in Headers */, + 48FA3582C43B9C7C8623709597211E51 /* tcp_client.h in Headers */, + 872626154350005BB1B0111BD0A3B8F2 /* tcp_client_posix.h in Headers */, + 0FEE97B08FF776958DE2D902AD0A2DD6 /* tcp_connect_handshaker.h in Headers */, + ECC355E4FE30772DC140F70163B4AAC4 /* tcp_posix.h in Headers */, + DA0689D0232BC3371EF29379C4D327FA /* tcp_server.h in Headers */, + F91D60FE8F1AB0656C99C827DE31E13D /* tcp_server_utils_posix.h in Headers */, + F09886A86341CD02F8FAF0B4F6C07589 /* tcp_socket_utils.h in Headers */, + D6E1090972F80B5A84A43955E545CD91 /* tcp_socket_utils.h in Headers */, + AED39DB8FE9CCA290130EB277DC73EFD /* tcp_tracer.h in Headers */, + DAC762AFF4FDC9A5AEE095F1340F7758 /* tcp_windows.h in Headers */, + 67BEB88A31E4C2A6CB0D40AA5D12A6BD /* thd.h in Headers */, + 413FFAEEC894B8E33558B7F2C6029979 /* thd_id.h in Headers */, + 86E8EB710707DE28CE0ACFFA1A59BE1F /* thread_count.h in Headers */, + 2A3A82A5FD99823F0DEF2B2CF4A050C4 /* thread_local.h in Headers */, + 8659160F4CBFF3F451C2A88334AC8452 /* thread_pool.h in Headers */, + 9CE40F385D0303126D7594A7E865AA73 /* thread_quota.h in Headers */, + 61899C352CCA48AE6D846E3B6BF74DC3 /* thready_event_engine.h in Headers */, + E2CA467F9EB4CB18E3F39F7FE7A7BCD2 /* time.h in Headers */, + 95FEC300C23381AF47AA160309BCDE63 /* time.h in Headers */, + 104ABEABBA39C3FDE97517551EE7F97E /* time_averaged_stats.h in Headers */, + 793F7F44363A5CA7B45E193F4D0766E4 /* time_precise.h in Headers */, + 0330CA6E1A333C80E7723C9B5EE33B9F /* time_util.h in Headers */, + 621BF69A2246C44FDD922D97CAE82E21 /* time_util.h in Headers */, + 0FFD7569971D3040A356293BEC57091C /* timeout_encoding.h in Headers */, + E2B89979A0F6283D3C43ACF8418C70C1 /* timer.h in Headers */, + 0077981895C8FD4EE0089AFEC5FDC1B7 /* timer.h in Headers */, + 51879396DB26B88BA6C45B0C9C029D6A /* timer_generic.h in Headers */, + 48A5501F764343EE0DBA1110D840DB7D /* timer_heap.h in Headers */, + 6B279EA9E31FF81065797BE1A455900B /* timer_heap.h in Headers */, + A631847C8C90814C5FBF6AAE021CD825 /* timer_manager.h in Headers */, + B13A290C188330634A5D460FEA3F227B /* timer_manager.h in Headers */, + 8AC46DE9A5023B37594FDC0C457C1337 /* timestamp.upb.h in Headers */, + 71456816FE31528D4DD9C5498EEBDD9A /* timestamp.upb_minitable.h in Headers */, + FF44254045CEE6DA1046F754C7509772 /* timestamp.upbdefs.h in Headers */, + 866D998EB03992520D605CDF081839C6 /* tls.upb.h in Headers */, + 52E18FE3402319BE5A67DBD413E0D47C /* tls.upb_minitable.h in Headers */, + 35CACF99E1E2439226DB569236A62111 /* tls.upbdefs.h in Headers */, + B30C8FF480D267B6FF18D295BE529610 /* tls_credentials.h in Headers */, + FD01AAD29852E5D183FF2ABD7F463771 /* tls_security_connector.h in Headers */, + 36CEEB4AC4EE0A806AEDF89D353F73A6 /* tls_spiffe_validator_config.upb.h in Headers */, + 84D40CC73A15B954E32671357C3ED651 /* tls_spiffe_validator_config.upb_minitable.h in Headers */, + 9009F6E509FF73A8D2F6A89108D01958 /* tls_spiffe_validator_config.upbdefs.h in Headers */, + FFE8CAE08854598FF683F06F97432516 /* tls_utils.h in Headers */, + 7EC8D5FBD2BC777C2BD6AA8F0F260B6A /* tmpfile.h in Headers */, + 598E7094364FFD7DF33124D9056231F2 /* token_bucket.upb.h in Headers */, + EEB744DDF02CD9964C76798A491F7B79 /* token_bucket.upb_minitable.h in Headers */, + B096C13AE80514F8352033563BAA0AEC /* token_bucket.upbdefs.h in Headers */, + 1966E915A06F297A867CAFDA106F643F /* trace.h in Headers */, + CCC2A8D5AD05BD4FC96BB55DE3BBC8E1 /* trace.h in Headers */, + E5B88CD67717A1F400D94200C215ABD1 /* trace.h in Headers */, + 11FA68AA2BE63DBFAA0B3207DA71A939 /* trace.h in Headers */, + 91EE76A4C4BBC171A9E5D6F3691BCEEB /* trace.upb.h in Headers */, + 6962B8425ECB77EFB249DEBF28AA687C /* trace.upb_minitable.h in Headers */, + 82CF7A802F6E4F5E1F676EC79846300A /* trace.upbdefs.h in Headers */, + 8350BC7E7A799F957114923FD034CADB /* trace_config.upb.h in Headers */, + 7F061259DBB4600870C9AB273026EA5B /* trace_config.upb_minitable.h in Headers */, + 44BBE91F5E9D5E96DD029C054F6459D6 /* trace_config.upbdefs.h in Headers */, + 7B87F632B7D073172F8F16B7772C80F6 /* traced_buffer_list.h in Headers */, + 3ECFBAC9D170F690C00CBB468A5D28D3 /* transport.h in Headers */, + 2375DAA101401D4F4DC61E052807AE07 /* transport_fwd.h in Headers */, + A3338945162A00B91EB5DC4865C4C162 /* transport_security.h in Headers */, + FC3878181AE10C40ADF5D4B49C842BBE /* transport_security_common.upb.h in Headers */, + ED24ADA245E021B1D7FB2B71AC306A6F /* transport_security_common.upb_minitable.h in Headers */, + 93517A491441DA179646832BDE626C2C /* transport_security_common_api.h in Headers */, + 7D3482272B791A5DC129D1EBD39B4EBC /* transport_security_grpc.h in Headers */, + BAA2985BB468040C3C65B74B6A26A9A2 /* transport_security_interface.h in Headers */, + 111F6E03502EBBC053C68E1AAA46917D /* trees.h in Headers */, + F2946066B731D81BAD1E8311CD78AE6E /* try_join.h in Headers */, + E321F685167C5CA8ADCA8133FF9C3E5E /* try_seq.h in Headers */, + 6F8C4D5BB9AF2101080E762DAA795709 /* tsi_error.h in Headers */, + D3FFDB1FF4D034A7649400FDCE2733DF /* type_list.h in Headers */, + 22D9F5799C3CA1CE3353F09585761842 /* typed_struct.upb.h in Headers */, + 8430818CB1C43A276ED22A94A6115D01 /* typed_struct.upb_minitable.h in Headers */, + C259541CB42DE9D20B505E8D652D49FE /* typed_struct.upbdefs.h in Headers */, + 3572DC65E55447A0B6BDF3BB2051C539 /* types.h in Headers */, + C3DD73E6FD5DF37DCBD458E98EB2DF7F /* types.h in Headers */, + 1177B128C9A25EE1F430F61F1BA64AA2 /* types.h in Headers */, + D9B8B5E09C1DC9AE611D58BF17A1549F /* udp_listener_config.upb.h in Headers */, + 88F07C82C846CF7F945A73898214F0BA /* udp_listener_config.upb_minitable.h in Headers */, + F8751F5597FB330A9429AD446E0AE631 /* udp_listener_config.upbdefs.h in Headers */, + 817CF47C530CCF1E4A6CB1802469475E /* udp_socket_config.upb.h in Headers */, + AC56B7DE6000DE3ACDB4E32C58E2F20C /* udp_socket_config.upb_minitable.h in Headers */, + 37084DF42C84841E287914D989159A18 /* udp_socket_config.upbdefs.h in Headers */, + 45E182AC2738285183F9043C50551618 /* undef.inc in Headers */, + 31CEC98396DF85738A88FBA92E36BD8D /* unicode.h in Headers */, + 19DC62C49190E2E62EBAD73AF77449FB /* unicode_casefold.h in Headers */, + 2440D182DBCFFF83F7A448359B078212 /* unicode_groups.h in Headers */, + BB5C58CE30F71B05A5033260371429C5 /* unique_type_name.h in Headers */, + 6E6D3A6C448E88217C5F548D7FED8F18 /* unix_sockets_posix.h in Headers */, + 3CAF1CA891A2328D7FF396713F6AD787 /* upb_utils.h in Headers */, + 5534CC6A146EB4A1FC64B2E10F81F07D /* uri_parser.h in Headers */, + 3268ADB347DC60C07F12E97451CB6886 /* url_external_account_credentials.h in Headers */, + F9F34241A679D0B5BC6750DAFFA2CC9A /* useful.h in Headers */, + 91860A17DDBADD14E59C477530574D02 /* utf.h in Headers */, + 6761A196033B4751FC23DFDF2DE28254 /* utf8_range.h in Headers */, + 697119FF7E1B1C8FEA7F967DF6977767 /* util.h in Headers */, + BEB4AEFC96764AE4C7A3E3ACDAD5DD25 /* utils.h in Headers */, + 2D00E7AC01FA2ABDBDBCA313D0955B12 /* validate.upb.h in Headers */, + AD5795BA60B07073F5F699BE722084DB /* validate.upb_minitable.h in Headers */, + BD30E4A383F67BC4806835402C12DF24 /* validate.upbdefs.h in Headers */, + AE3A933066963D6147CD3DD7330F4D4A /* validate_metadata.h in Headers */, + 8B84CDBF7C2D6DD877642B3FE43BA328 /* validation_errors.h in Headers */, + B70BAF72E4F2F431576A54370D816E77 /* value.h in Headers */, + 6A2BCEA908BD2C803BF3225C6291B902 /* value.upb.h in Headers */, + 878B366833BA27FB4FA0DEEAA54E2E87 /* value.upb_minitable.h in Headers */, + 74B3604C696B0A61125BD7E1909F3450 /* value.upbdefs.h in Headers */, + 8B9F80734BF8A6BA72D2404317E28768 /* varint.h in Headers */, + 1FABE58102DC893B7B0F1D833FA71BCD /* versioning.upb.h in Headers */, + 57CF37266E5F3CBDD5826688FD095FB0 /* versioning.upb.h in Headers */, + 1E984B1DF04CC7A008138E0BF5CE7B5D /* versioning.upb_minitable.h in Headers */, + C8B607925A412E446DA9226B2C019428 /* versioning.upb_minitable.h in Headers */, + 4ACEFAC69C404913A0ACC2D81F043020 /* versioning.upbdefs.h in Headers */, + 77DCDD769E2B09EACAD395B047E82786 /* versioning.upbdefs.h in Headers */, + 2A4ACA072417534A3D510358514EABA2 /* vsnprintf_compat.h in Headers */, + 1957C87597077FE04F94437E69B57244 /* vsock.h in Headers */, + F38F03C1F22EF0437AE05036C4A0BFA8 /* wait_for_cq_end_op.h in Headers */, + B9ADB8E12F97B6E76AF73B2299585F91 /* wakeup_fd_eventfd.h in Headers */, + 19FD9072320B80A5D1E61FAB68D57F95 /* wakeup_fd_pipe.h in Headers */, + 6033A3CA401EB7D85CECA5E4DD7C6162 /* wakeup_fd_pipe.h in Headers */, + 2D3553FF12F03DE94A63A6DBE043CE36 /* wakeup_fd_posix.h in Headers */, + 9E39358FC5E25E8E4BC40C63B4B4C22E /* wakeup_fd_posix.h in Headers */, + B8C3D0DE63D7DCC7913ED883C93F25B7 /* wakeup_fd_posix_default.h in Headers */, + 8E827C8344FBC2D8A21C70A0A431920E /* walker-inl.h in Headers */, + 0EEADF2B8149AE28AE9FAFA012A7746C /* win_socket.h in Headers */, + E1C2474616B67E0C87BEEACC3511B49A /* windows_endpoint.h in Headers */, + 475CC3E13D7D1A3B5E5FBE840E43D29F /* windows_engine.h in Headers */, + 0301575A04A9A0E646A7EA9949A17665 /* windows_listener.h in Headers */, + 9DF872ABFC87D9DE7AEF174EEE06719D /* wire_constants.h in Headers */, + 160F3D67E5B9491892CECC1BED1051D4 /* work_queue.h in Headers */, + D1114C56F552B7D009BBC5EABE87A224 /* work_serializer.h in Headers */, + 066115B0D28D761EFE27E648E5240445 /* work_stealing_thread_pool.h in Headers */, + CBE6F1D9968CA647E4902AB5A9ACBCA3 /* workaround_list.h in Headers */, + D42442DF728D80011C528A8137960428 /* wrappers.upb.h in Headers */, + E2B10E761E172DE8F746A87AB78CE3FF /* wrappers.upb_minitable.h in Headers */, + 1303B7CEBD5F6E7C8BB9EA2B3269B956 /* wrappers.upbdefs.h in Headers */, + E3F1C3105DC8EF8E0EBA5D304B57C315 /* write_size_policy.h in Headers */, + 36187B3DC0A148BEA1193C5B9E1EA3AF /* wrr_locality.upb.h in Headers */, + 9E9291329D3AB10D12A8EF81FE894F61 /* wrr_locality.upb_minitable.h in Headers */, + DC0E6A7EF5406F57DB61E4C88B6C2780 /* xds_api.h in Headers */, + 5BAA5A4607CD114B62266E420F9CA9A9 /* xds_audit_logger_registry.h in Headers */, + 5315387DC867A25597085094B72D1C37 /* xds_bootstrap.h in Headers */, + C2014373286A04E77E87EFA4E47BB673 /* xds_bootstrap_grpc.h in Headers */, + C0D1DFD420B68EA007196AEE7C2CDD87 /* xds_certificate_provider.h in Headers */, + 54E58C41499EDB4AFB712C9D1515CBF9 /* xds_channel_args.h in Headers */, + 43BA89E955A33BAA2A5DD7F73FE6B973 /* xds_channel_args.h in Headers */, + F12CBC7849E507DE47511BD042D67D97 /* xds_channel_stack_modifier.h in Headers */, + 244D93A8F6C9B55A721C6513EC52A10E /* xds_client.h in Headers */, + A1C1589A46582958239718F2C657A1DC /* xds_client_grpc.h in Headers */, + AECCE129B9E45C1908B53975E900AAB1 /* xds_client_stats.h in Headers */, + B1AD2D0EFB89F6B607EB108DDE46E38D /* xds_cluster.h in Headers */, + C134B5110FDD3A398640B70A924D6838 /* xds_cluster_specifier_plugin.h in Headers */, + 10F75E3E83E4DB6B03DCE6CAEBF645A6 /* xds_common_types.h in Headers */, + A9F3F17ED378D9E3165CC2BAD46FF846 /* xds_credentials.h in Headers */, + 88BA39E873D593281A9A8E6B1CA21CCE /* xds_dependency_manager.h in Headers */, + 2168E7E7297A17B9B9AD0BE63A509D2B /* xds_endpoint.h in Headers */, + 70F408DB13367F41B65F9EB1F5F4DDD4 /* xds_health_status.h in Headers */, + DA7EF13F11BC528C309BF5F0257C326A /* xds_http_fault_filter.h in Headers */, + 4CD3C34BFF5B1AB3D63B9A6FA487FBB0 /* xds_http_filters.h in Headers */, + 264B6EC9C1C07424C154477D48D46EB4 /* xds_http_rbac_filter.h in Headers */, + FCBBDD5A309E6A5E6701312216B925AA /* xds_http_stateful_session_filter.h in Headers */, + DD19C62889453878392D3B602A1B1FCB /* xds_lb_policy_registry.h in Headers */, + 1769D31D6E1E943642E4D35CDC3DC36A /* xds_listener.h in Headers */, + 9584200B045159D37CB42D8D77A9F71D /* xds_override_host.h in Headers */, + 5640FEAF22F998015FB9A221F098FF65 /* xds_resolver_attributes.h in Headers */, + 1C04B8C3CB311EC9F60D4D2A9DE05BA3 /* xds_resolver_trace.h in Headers */, + D3E28E594AA780787547F88CD687CEB2 /* xds_resource_type.h in Headers */, + DF5C14FF580E89A94A7088DC92424951 /* xds_resource_type_impl.h in Headers */, + 7ADA67242E7EDCFBC080A4C785BEA744 /* xds_route_config.h in Headers */, + 8062EB8F90DA300B8E6F526F1529DF34 /* xds_routing.h in Headers */, + 54D023DE30E177E001AAC7DD862D9496 /* xds_transport.h in Headers */, + 6B9D33D5ABF9EC459120B3FF189AF5FA /* xds_transport_grpc.h in Headers */, + B526AB2D2BB1913BC6CF976DAF078D81 /* xray.upb.h in Headers */, + 4526E2A795A144DDB77EB2D98FC16FFD /* xray.upb_minitable.h in Headers */, + 3E688BA70674E8B1FACB104A41E33156 /* xray.upbdefs.h in Headers */, + 77089ED2D9E714BEE2BAD3573647CB20 /* xxhash.h in Headers */, + 2ADA1F1D510494C45AED795F458541C7 /* xxhash_inline.h in Headers */, + 8D10D1AE8C8159FCE7C053B3BF7A11E4 /* zconf.h in Headers */, + D4B57CBF8F2469662A632D51E1D473D8 /* zipkin.upb.h in Headers */, + 9AD139639FB3AE2990ED1D5AA4BA0695 /* zipkin.upb_minitable.h in Headers */, + 2B55B2CF6867B30C0638BDF65A21BFFB /* zipkin.upbdefs.h in Headers */, + 461D3E7A5599D9E8E9F0ECCFEA22A74F /* zlib.h in Headers */, + DEB01D43DE2F3C46C6B2BFEAB0A65C91 /* zutil.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3947AAF586519ABE3B308CF4F86305C9 /* Headers */ = { + 48AB22CA33DF09E9FFEDB88D092E3EA9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6597ADFADC8745C7C1843CCB78457D7A /* GoogleUtilities-umbrella.h in Headers */, - 90069B0ED6A2272F2B096A8A59671CE6 /* GULAppDelegateSwizzler.h in Headers */, - EB2FCE15563A888CBFD4910E1124A6D2 /* GULAppDelegateSwizzler_Private.h in Headers */, - 304A7AAFF20B6DD5A4F2F4433913D8CD /* GULAppEnvironmentUtil.h in Headers */, - 379C22C8E31981EA485FCE0D0114A6E9 /* GULApplication.h in Headers */, - F74F9931843361AC4A2BCD7D40E506B8 /* GULHeartbeatDateStorable.h in Headers */, - E58247C4962EA3EE16272F82457E9BCE /* GULHeartbeatDateStorage.h in Headers */, - 43F5B2BECBB6F6028C05DFC01E86863B /* GULHeartbeatDateStorageUserDefaults.h in Headers */, - 8A1F86297D0417AEBE5D396DE90998A7 /* GULKeychainStorage.h in Headers */, - DDB5A55499F0E801213178AFA4059F3E /* GULKeychainUtils.h in Headers */, - 77818E8D4A919AB697203930A54E3742 /* GULLogger.h in Headers */, - A0960BAA89069EA3F6895D2E4121F2F0 /* GULLoggerCodes.h in Headers */, - A915011D06BB02092B984D073315482D /* GULLoggerLevel.h in Headers */, - 551FA06A8A6D3251C3D6CC5DE2D30C14 /* GULMutableDictionary.h in Headers */, - 47E36C1F04D5E6236AA63B8DC64E5C77 /* GULNetwork.h in Headers */, - A5337DB102D14278D90DD1CCEEF87E42 /* GULNetworkConstants.h in Headers */, - 34D61AEE7CA9CF419CC55AA643D1AA55 /* GULNetworkInfo.h in Headers */, - A0EE50982A2190B2E5730C4A63EC209C /* GULNetworkInternal.h in Headers */, - 310A88929E94ACA6424C0807C546A9CD /* GULNetworkLoggerProtocol.h in Headers */, - F618724457BCDA901F5A98E32ABB40E2 /* GULNetworkMessageCode.h in Headers */, - 5BEE00B7867531C9F772582A275EB357 /* GULNetworkURLSession.h in Headers */, - 32E24CF8CD1F79BF443EF8CB08FEE446 /* GULNSData+zlib.h in Headers */, - DC4D9119F769B959023CBE2BC9E58A10 /* GULOriginalIMPConvenienceMacros.h in Headers */, - 43A14D3C76F1840C92414E0E8EA0BA21 /* GULReachabilityChecker.h in Headers */, - B4EAA003033F07B39DF8166535EBF73C /* GULReachabilityChecker+Internal.h in Headers */, - BE94CB4BDD6E1A72FAF3E633D03C8703 /* GULReachabilityMessageCode.h in Headers */, - DF5CE5D810ED6176EC34531C91A08210 /* GULSceneDelegateSwizzler.h in Headers */, - D8F7DA602BF5D45A9687BFF68CC3505C /* GULSceneDelegateSwizzler_Private.h in Headers */, - F65965AFF6D567108CE23A7F2DC8B4A5 /* GULSecureCoding.h in Headers */, - 6C289766A143AA8EC3C5A48CF30CE5C9 /* GULSwizzler.h in Headers */, - B8C59CFC386E5FDF51F4A738D29FBE81 /* GULURLSessionDataResponse.h in Headers */, - 0F166DFB16C790CF8B2541CB9542D1D5 /* GULUserDefaults.h in Headers */, - 7B0D2BAA24762B86891C37E18C2949F2 /* IsAppEncrypted.h in Headers */, - 316670B65B03639E189BEF91D3866042 /* NSURLSession+GULPromises.h in Headers */, + 7EA6AD5CBAEBA736B8BD8A42FB6CF5D1 /* FBLPromise.h in Headers */, + 1EE298F167E63CC90CA0B5065544EA57 /* FBLPromise+All.h in Headers */, + A4394E11748740F81B8D4BF3B536CD2B /* FBLPromise+Always.h in Headers */, + 0C0240635B1BB1851A0E0A512C28CE66 /* FBLPromise+Any.h in Headers */, + 16CF0E048C6AD7E17340E7E525745AB7 /* FBLPromise+Async.h in Headers */, + 66F8AA5DD584D2B4BB04E8BFF62A20FC /* FBLPromise+Await.h in Headers */, + C4E007176E53952B22B734BB166FD5BF /* FBLPromise+Catch.h in Headers */, + 727F6C1207C25963394B5E52356A783C /* FBLPromise+Delay.h in Headers */, + FE07B0A9458A6C65132BAD19FEF9A135 /* FBLPromise+Do.h in Headers */, + F8E47039D36420B16B232F0D04475629 /* FBLPromise+Race.h in Headers */, + 5F92F50E0B756DC25181B824F612C990 /* FBLPromise+Recover.h in Headers */, + B6ED73D1128EC07198C16EBB9E7779F0 /* FBLPromise+Reduce.h in Headers */, + 82FD3E940B09E96C9002733D64DF73D3 /* FBLPromise+Retry.h in Headers */, + 3BA6C7AA69EE8220EB129C8919B09AF7 /* FBLPromise+Testing.h in Headers */, + 5F223ED8346DC9E88192ED64451D5273 /* FBLPromise+Then.h in Headers */, + EC0DA91415310FA52F477B1281F9BC6C /* FBLPromise+Timeout.h in Headers */, + 771F4EA0F0F3AF12B884CBFA31E2813E /* FBLPromise+Validate.h in Headers */, + F789CD728ABB71220D7E6439061B74D3 /* FBLPromise+Wrap.h in Headers */, + 17C2EE15BAB93BD9BD1E7A0B30F89DF8 /* FBLPromiseError.h in Headers */, + A2FDB6C2EF3083E5EC00265A39034348 /* FBLPromisePrivate.h in Headers */, + 866F1040A078F3957E25F12B8F2ED4E6 /* FBLPromises.h in Headers */, + C6E62E0E2B3B29ED645E719447632A9E /* PromisesObjC-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 43581E4BC0B343138294A41EB0662E48 /* Headers */ = { + 48DF1A237454DAE2D70310794821D7CB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5C9EF728C950D1D35E669F72839DB804 /* Pods-SwiftProject-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4B3EC1F1B6B89DFDE51995AA34BBAD20 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A45C3653E50507675D14C5F4A65108F7 /* FirebaseSharedSwift-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4F5EEB859FD48D183D339745A843ADEF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 787C0508ABB5EFEBB5A15C1F4CFA38C5 /* accesslog.upb.h in Headers */, - F6B6139106EA99F009059D5DD4DDA891 /* accesslog.upb.h in Headers */, - 85305BA254E183859E6DC723D8456E2B /* accesslog.upb_minitable.h in Headers */, - DE74BCC0BC146CC4D0F1AC504D694395 /* accesslog.upb_minitable.h in Headers */, - CE84E69AD16AF1963EFE534311CA2BA8 /* accesslog.upbdefs.h in Headers */, - E0F73B355B5EA3B56C45B45860CC5FEC /* accesslog.upbdefs.h in Headers */, - FA84DD2F0B6DB0AB58A901A264F82AED /* accessors.h in Headers */, - 9C0CB2AAB913BBA9AFD63FF7A47FD9BC /* accessors.h in Headers */, - EBEE9E435383B9EFFF94708253DDFAE8 /* activity.h in Headers */, - DF734438A647AF7925F81F2FAD60D568 /* address.upb.h in Headers */, - 9ADE17E311E01E633547C0E6348314D8 /* address.upb_minitable.h in Headers */, - 45A3832FEF820261D32A8EBFB8C92699 /* address.upbdefs.h in Headers */, - ADDFA359C56334E27C945FFB40B99802 /* address_filtering.h in Headers */, - DA61140CF47E85474DA34B139542B583 /* ads.upb.h in Headers */, - 42BEBAD0235A3C70F51C91708D62169D /* ads.upb_minitable.h in Headers */, - B65E874A74F3AEAC9DB409E27612A310 /* ads.upbdefs.h in Headers */, - D5A8577653E9E44EEF5D43BBE43DB346 /* all_ok.h in Headers */, - D206BE597262B61D7ACE849DDE92A6E5 /* alloc.h in Headers */, - BFB39581BF728BA4E9DA95A00601C8BD /* alloc.h in Headers */, - 13EB503C2A2B65CA547E83BE6BB995B0 /* alloc.h in Headers */, - 14FC153BBFCEDED4FDB7E136DBD8F371 /* alpn.h in Headers */, - 0D9CA0DF1B5C123204B30A2B0FB6AE73 /* alts_counter.h in Headers */, - 27545F393FDC76878FBCBAAAA23FDF72 /* alts_credentials.h in Headers */, - 67F4F16679CE0D5B3570949EBD38B7E7 /* alts_crypter.h in Headers */, - 3EE3B0A442FDB875AC4EB7B4F4221BC7 /* alts_frame_protector.h in Headers */, - 60CABCFFFA0CE38E9530AFF2AA2AF27A /* alts_grpc_integrity_only_record_protocol.h in Headers */, - C1B13D6AF355C186C6825E4EA4651435 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 132CF1CC81FE780960320844DD8BE7E9 /* alts_grpc_record_protocol.h in Headers */, - E05744CE1E5CB3CB782AA94236C961B4 /* alts_grpc_record_protocol_common.h in Headers */, - 0D060C0CCF3535F9D26E2F2D5A2D4CAA /* alts_handshaker_client.h in Headers */, - 43570A88AD9EDEC47F9D4C624286DFDC /* alts_iovec_record_protocol.h in Headers */, - 958E631B4554B5FD9283A4B5F2B4CF63 /* alts_record_protocol_crypter_common.h in Headers */, - AFF4A477E70D4DBB5731049A84D5AFC9 /* alts_security_connector.h in Headers */, - A36BAAE8E95EC40D47392949CC9E72E8 /* alts_shared_resource.h in Headers */, - CE0CE53BD380A6B355A64DF61E0A7578 /* alts_tsi_handshaker.h in Headers */, - 6A8D0F5A7C57D7CB731AD436D2ADF4AE /* alts_tsi_handshaker_private.h in Headers */, - 721550871974DEB03A949729F91D0E8C /* alts_tsi_utils.h in Headers */, - BA67E87F5EEDF48020B352F736B37A04 /* alts_zero_copy_grpc_protector.h in Headers */, - 9BF920F51FCB3CC65B16F82F0413BA77 /* altscontext.upb.h in Headers */, - 88A2B8B07C58D23AC7DF9FD1F3759B8A /* altscontext.upb_minitable.h in Headers */, - D22ED1F81639D42B8FF654CB3AD2C33F /* annotations.upb.h in Headers */, - 5E6D12C3F427EDBE0C52EB53C304BBD9 /* annotations.upb_minitable.h in Headers */, - 21A231E95AED5D307746B59CAE733214 /* annotations.upbdefs.h in Headers */, - 6781427A595D417710585EB9E0747CC9 /* any.upb.h in Headers */, - EEB559E3B3CC73EEB8077F5FD7DCE8F8 /* any.upb_minitable.h in Headers */, - 330D9CCA1D659AE7513B5AED021EE4F4 /* any.upbdefs.h in Headers */, - 1693F55664225A8BE4CE1652750B0E1F /* api.h in Headers */, - AD55B952888F27B1887E0A56F270F26C /* api_listener.upb.h in Headers */, - 4091F6698EA14A8868290E9A722AC100 /* api_listener.upb_minitable.h in Headers */, - C11E6335A1253606ADFD84E1686A2CCB /* api_listener.upbdefs.h in Headers */, - A24C9CCCFB9B405D2A3883BD596045DC /* api_trace.h in Headers */, - 0771A358C23132BF43E3829E6FC66683 /* arena.h in Headers */, - 613168FACAB72533F9EA8486C6E7E9FA /* arena.h in Headers */, - 5ED1B79058FB807022451A1E21FA8DCA /* arena.h in Headers */, - EF93F9B283C1BEB0E6A1FD3DE41FBC75 /* arena.hpp in Headers */, - 5724A9D824D0D3D41AC12BFFA6EBA2E3 /* arena_promise.h in Headers */, - 88F1A80B0F8602C8317D3B9DC4A4E0A5 /* ares_resolver.h in Headers */, - 011A895457FE8F7137676F593548688F /* array.h in Headers */, - CC388649D59B87F03CB2054A60C4FCE1 /* array.h in Headers */, - 9126CA64BFCC7CA81595AD7161D45707 /* atm.h in Headers */, - A48CFC5A941E59439A56E91EFD69CA7D /* atm.h in Headers */, - 683825A7BAFF3A5016E68A1AC170AE66 /* atm_gcc_atomic.h in Headers */, - 8158811F392BE742E59A8ACE19E71E4F /* atm_gcc_atomic.h in Headers */, - 5B3D44F392CF49395009F0DE1C6564E6 /* atm_gcc_sync.h in Headers */, - EF3DAD3CBB6065C4A343841991F1E440 /* atm_gcc_sync.h in Headers */, - 91F4AE45EF2744D6E11C3491F20F65F8 /* atm_windows.h in Headers */, - 5BCBE1AAAEACF9233EAB3426AD5C6228 /* atm_windows.h in Headers */, - 502E63F7CED2663021CB5A63CD844059 /* atoi.h in Headers */, - F7C38CC610F50D0E1CEFF617906CC78D /* atomic.h in Headers */, - DF080AD5B0C97B0C456789502C6E842B /* atomic_utils.h in Headers */, - 9E750B6B4C0132C2C1AC17CD10ACED8F /* audit_logging.h in Headers */, - BDA22CF5DE3DA27D2C0BC90EB93D0978 /* auth_filters.h in Headers */, - A6B72174D51E054349ADB969B2A45E80 /* authority.upb.h in Headers */, - 79ECCBDD593FE8B130BC7608A80B4A47 /* authority.upb_minitable.h in Headers */, - F4B5231A60755F81C6A2DEA9A6C70AA4 /* authority.upbdefs.h in Headers */, - 9F02ACAF0CFCDB8B0A932E9353E2BF12 /* authorization_engine.h in Headers */, - 4FFB1F60ECB41F0B6CCE14803F554D22 /* authorization_policy_provider.h in Headers */, - C9123BEBC8EC0E3B70A211E9EA286E9B /* avl.h in Headers */, - 09C533465824E34CE68370D77E99F3E5 /* aws_external_account_credentials.h in Headers */, - 2DE2B989C601872BA52A9C0ADD7DFF57 /* aws_request_signer.h in Headers */, - AEA49D5084F9EE643B74000F93FA0341 /* b64.h in Headers */, - 19A8D2B65FD92B8602C8091B33CDED8E /* backend_metric.h in Headers */, - FFA1B4DE3DB1A5C34EE8D10FE73663B2 /* backend_metric_data.h in Headers */, - BA62E5C8E9BBAEDF166F2BF5122E715B /* backend_metric_filter.h in Headers */, - B00550CEA6186EEE727F43B612C30612 /* backend_metric_provider.h in Headers */, - F10B3020ED6A8EB7D9E35F8EEBC731C4 /* backoff.h in Headers */, - E62D04A40E883DAB59B0C8E0FF1507E5 /* backoff.upb.h in Headers */, - A491C63B8578598C01D658CFDA79FBA3 /* backoff.upb_minitable.h in Headers */, - 489AB4D44E4BAE8D5A279E217F0EF15A /* backoff.upbdefs.h in Headers */, - 74DDD568D63A07FE1979FD0AA3BD2468 /* backup_poller.h in Headers */, - 7E90519B398BF968B460EFF3103318B0 /* base.upb.h in Headers */, - 5173A5E5AEA49B26D8B05450F2E2CFC5 /* base.upb_minitable.h in Headers */, - 4003416F99EBD4F7BEB66E3E55883649 /* base.upbdefs.h in Headers */, - 171DA622D1A1DB2BD50FFDEA659AFFDC /* base92.h in Headers */, - 8A7052F54E275713F605A33AB43A9EF6 /* basic_seq.h in Headers */, - 49AA1CFD9B3D79EB0ACBDB7CE511726B /* basic_work_queue.h in Headers */, - 9938972DF6E361EB34EF0F26B63030C5 /* batch_builder.h in Headers */, - 15C18BCDDD57BDFF0DC2E8320F870E53 /* bdp_estimator.h in Headers */, - 3FE0EE7F94B1B39FFC23BEA6CFF44B30 /* bin_decoder.h in Headers */, - 3FC8067CA108B3E8F8C782C34A772A24 /* bin_encoder.h in Headers */, - 056C2A1AC8A3A313B1884F3C2CEA03CC /* bitmap256.h in Headers */, - FE0F4B2EA56943BDF44C2EC43EC26E54 /* bitset.h in Headers */, - F1A7B19C90659EF33BE5B3186F671FD9 /* block_annotate.h in Headers */, - 780BE2227EA33521E51F2B57AF3CCA64 /* bootstrap.upb.h in Headers */, - 096AFB582A90DDCB23414898BE2B8F2A /* bootstrap.upb_minitable.h in Headers */, - D962CC4B4ECB63D1FA31DE4786884CA0 /* bootstrap.upbdefs.h in Headers */, - 00719CFDBC5573E59628CEA2873F4283 /* buffer_list.h in Headers */, - 3210F306DB5759BD34CC659681787D70 /* build_enum.h in Headers */, - 6B81668DA91A0C5CF002A2B34D4F1132 /* builtins.h in Headers */, - C241CFC27C300B6D6144AAC822C09117 /* byte_buffer.h in Headers */, - A713B16CDE49FF2A7F349FB4C685731A /* byte_buffer.h in Headers */, - EC4A7A5C0A6C45361C6E62B67957CC53 /* byte_buffer_reader.h in Headers */, - BE3020DBB1EE65ECC7E633933A586700 /* byte_buffer_reader.h in Headers */, - B2A3BB8500CA46E0D0327ABDA6AAB867 /* call.h in Headers */, - 718FA71C1501AE308295CC538C3E51D9 /* call.h in Headers */, - 868938DCA03E497674B06F52422F3139 /* call_combiner.h in Headers */, - FD25D7DB96BBA5C6B6809452FD6A0EF0 /* call_creds_util.h in Headers */, - 562D67583D607F15D0E541CC3B32CEA4 /* call_factory.h in Headers */, - 1E7EA6F1E574263590F1A0FFD0145B09 /* call_filters.h in Headers */, - 4D50CC66084288938278F144670A2262 /* call_final_info.h in Headers */, - DAC3BFCC2A8A45C4794F3DC1E8299792 /* call_finalization.h in Headers */, - 363A4031FF62A61C3E54DF1ACF77187D /* call_size_estimator.h in Headers */, - 2936E76F821D9E8B93328E600593296B /* call_spine.h in Headers */, - D0340BAC10968C24F09C1639E5F92CBD /* call_test_only.h in Headers */, - 18609CA852874FE28E6C1B10FC88A4E3 /* call_trace.h in Headers */, - EE66C991D8310F75804579EDE0F50AF6 /* call_tracer.h in Headers */, - BF7CE88378D609A5617FF907EC10044C /* can_track_errors.h in Headers */, - F9A3085BE8C63268A899B6F77964ABF3 /* cancel_callback.h in Headers */, - 60BC44745333B79E6870C3DDCCB888FE /* cel.upb.h in Headers */, - 1568840C7EE814E9A789DB74D8F4F9F0 /* cel.upb.h in Headers */, - B7E4C54BBC77763695413BA47080B7F5 /* cel.upb_minitable.h in Headers */, - 7517BCB9569DB0D0A551CEAF9C644B67 /* cel.upb_minitable.h in Headers */, - BBE508925DAA8DC0FCB84FCA5F710B72 /* cel.upbdefs.h in Headers */, - C91A3F2EB28D09A0820297B4319167CE /* cel.upbdefs.h in Headers */, - 113EA6CFD5D164459336C8C8D0A926F1 /* census.h in Headers */, - A73B603145B744834D50FCD374ACD6CE /* cert.upb.h in Headers */, - 36895E9D79A082380FF7E300B87C9A4A /* cert.upb_minitable.h in Headers */, - 4BF3154051591DF3D2C79411DC202C92 /* cert.upbdefs.h in Headers */, - 051C3CEC5E2D686EA8CA5D0C644E7B69 /* certificate_provider_factory.h in Headers */, - D7F45A4232DB07D38FDD5C50265368BA /* certificate_provider_registry.h in Headers */, - E6DB8CD0CF8EDEC41572469A59CBC56A /* certificate_provider_store.h in Headers */, - AD9296B382A0DB558AE886ED9BD8E415 /* certs.upb.h in Headers */, - 15DD543D7FE74FDD2A05602164385745 /* certs.upb_minitable.h in Headers */, - 6384909C549B4D61F2BA1DA7FC42080F /* certs.upbdefs.h in Headers */, - E79CFC1F8A3983FAACE0D69026431116 /* cf_engine.h in Headers */, - B2EC4F5EF41ADF9A8F53600AC396EE79 /* cfstream_endpoint.h in Headers */, - FD4D5E87E6A6665B39239A7A84A52810 /* cfstream_handle.h in Headers */, - 6AFC5FDC0CE1F6CBC0E3458EEDFA6F09 /* cftype_unique_ref.h in Headers */, - 547633337E261C4DB42117F39CAD2FC3 /* channel.h in Headers */, - 72EDAF2133438F104FFD60F3210F1019 /* channel_arg_names.h in Headers */, - A8B7E108AD4D1781608D7EDF84A65C1A /* channel_args.h in Headers */, - 58460DDBD5A015AF18C41FE860A05FC9 /* channel_args_endpoint_config.h in Headers */, - 2F925CB078555ADDBE46E40E855554CD /* channel_args_preconditioning.h in Headers */, - 8AB4A98DFB326F19684B83707780B34B /* channel_creds_registry.h in Headers */, - 2A9E8AD8F096B0C39A12766961A648CF /* channel_fwd.h in Headers */, - 44F9B7484E173004E8D52521418615FE /* channel_idle_filter.h in Headers */, - DA86A7007DE20FDA8A1386108445B2AD /* channel_init.h in Headers */, - D9FFDD8521C4742A2D513D9AA2CB5C9B /* channel_stack.h in Headers */, - 295C4D01E0615472E5905442ED8C7321 /* channel_stack_builder.h in Headers */, - AB82229151E68C6D9DFFF0F19D57452A /* channel_stack_builder_impl.h in Headers */, - 3C68ABFB0606E6A57CCE6DFD312CBE67 /* channel_stack_trace.h in Headers */, - F94E7FD4B1F309399CB7C4A36CE0482C /* channel_stack_type.h in Headers */, - C02949A56EA4C2DF2E33CBFFC18C0995 /* channel_trace.h in Headers */, - 43EC04B387F98CD8D6090771CED762E3 /* channelz.h in Headers */, - C54FA6293172FB7766F173164F815711 /* channelz_registry.h in Headers */, - 3F5F23A372312EFA98603210BCEDEA67 /* check_gcp_environment.h in Headers */, - 6393EFEF96FAF790CB7595C193FEB6F3 /* checked.upb.h in Headers */, - 6926455EC0E5CBB53ED5C48B77310192 /* checked.upb_minitable.h in Headers */, - B8EB53D9F3EC4AED07D9AB020A0A86BA /* checked.upbdefs.h in Headers */, - F667E24F406A6CA5A455C7F1054A8642 /* child_policy_handler.h in Headers */, - C037D8380E7CB77205982F9A5F7D7496 /* chttp2_connector.h in Headers */, - 4BF04152DD56D32ED248035434FC37FF /* chttp2_server.h in Headers */, - BD87440CFD39FEB9E865A762D9F615C4 /* chttp2_transport.h in Headers */, - 8C90FEB85B7D7CA379520D2C5FC6145B /* chunked_vector.h in Headers */, - 83A692BEEEB1D12710A1E712B9D21CC2 /* cidr.upb.h in Headers */, - 31CCFB1FCB4F63B1C0589514DB8EF1E5 /* cidr.upb_minitable.h in Headers */, - 1D3D76AA03DF89D257BD29080F685D16 /* cidr.upbdefs.h in Headers */, - C81EA46E338B551A244A9619A599F0B5 /* circuit_breaker.upb.h in Headers */, - 2482BBCE4F22B2FE275A14D190D4F8C9 /* circuit_breaker.upb_minitable.h in Headers */, - 1DD6CE12A43E52EFA313F2223030435B /* circuit_breaker.upbdefs.h in Headers */, - 34F919043F1B70C653833D0065C760C0 /* client_authority_filter.h in Headers */, - C8CE897DE355E1CC1956C0D3FE07571E /* client_channel_channelz.h in Headers */, - E6BD8D3A370853E72D32C4133B7372CC /* client_channel_factory.h in Headers */, - 25471F70AE7BE86879163873F0FF0A80 /* client_channel_filter.h in Headers */, - 93F37C5B722014132AAFDD1E97014B70 /* client_channel_internal.h in Headers */, - D361BAE278B620A031CC6AD5A4D4736A /* client_channel_service_config.h in Headers */, - 4EF9C921089017F08436907691734458 /* client_load_reporting_filter.h in Headers */, - A31D66DE9485C61473D9D269F5369DD5 /* client_side_weighted_round_robin.upb.h in Headers */, - F33EBEA206A53E8957E0F65F5D69F97C /* client_side_weighted_round_robin.upb_minitable.h in Headers */, - 4F6F695028643FD71993F4212F53655A /* closure.h in Headers */, - 171D711A793D92722E225B145A137519 /* closure.h in Headers */, - E12E6C4A01CE24610A641E64E2FEB017 /* cluster.upb.h in Headers */, - C9A052A07DE296C84BD364542073E98A /* cluster.upb.h in Headers */, - EA5145FA1445506EE9BD4AC69AF723EA /* cluster.upb_minitable.h in Headers */, - 31BB079AF08A2E3A18C9E97688C51A54 /* cluster.upb_minitable.h in Headers */, - AF1BC6CB36EA874ECCDAD9CE6DD51FEC /* cluster.upbdefs.h in Headers */, - 2E6054132B02050464EF4772C2A2FD7F /* cluster.upbdefs.h in Headers */, - 3B058EA72FB9C264541DD3492A1EB683 /* clusters.upb.h in Headers */, - C5897ECAD85A01932C1B90B159093574 /* clusters.upb_minitable.h in Headers */, - B1477C4786BEB51D747604496E6CB56B /* clusters.upbdefs.h in Headers */, - 05F7EFBBADFCA3AEBC5450AADA804D29 /* collection_entry.upb.h in Headers */, - 8DBDC44EBD6023091A8186A43B914823 /* collection_entry.upb_minitable.h in Headers */, - 4712C258EE7BF2882FE37A9D53E11444 /* collection_entry.upbdefs.h in Headers */, - B300D0654A409E1A0C4E9C9499B5FF60 /* combiner.h in Headers */, - F455D3543C8AFFF29343EFDA3FB10363 /* common.h in Headers */, - D2562618BDBF1D5F1917876102424E26 /* common.h in Headers */, - 607BD112179D3B0380051234B0A24B5F /* common.upb.h in Headers */, - 99898C7A4975A38A7D8EEDA9ABEC2156 /* common.upb.h in Headers */, - 2B4ADABB7A88644650F7EA843FCD32FC /* common.upb.h in Headers */, - 48305E325C5EDEA67826039E58FE15B6 /* common.upb_minitable.h in Headers */, - 273C0002D31EC123C19404BEF39695B8 /* common.upb_minitable.h in Headers */, - 980B47C1BA599C2CF772870A66A321BA /* common.upb_minitable.h in Headers */, - 6B5D57370DE7FD4C3D66A7555D38D1BE /* common.upbdefs.h in Headers */, - 4B0FBB39C5EBE12BC463F2989D1AC320 /* common.upbdefs.h in Headers */, - 4D5EB89783853108474415ACAC480D99 /* common_closures.h in Headers */, - BAFE1AC9656A04B4AF503084BA070671 /* completion_queue.h in Headers */, - 44E1462F302201DFF6219414F79433E9 /* completion_queue_factory.h in Headers */, - 0A4689039E0A1FFA4DFD1ADF4D866473 /* composite_credentials.h in Headers */, - 0AE1FCCE0BAEF507AF29A36DC362B1B4 /* compression.h in Headers */, - 2485F3F7E478E82E3FC62DADA71165B3 /* compression_filter.h in Headers */, - FC19951F1CFBFA0B01ED4F807073305E /* compression_internal.h in Headers */, - BFB5A9CADA0F80A8B86A10B8962A88EC /* compression_types.h in Headers */, - AA640EC1BBD151D2C95F998EBB054020 /* compression_types.h in Headers */, - 22267887777F280564C2F5A86DF9AE19 /* config.h in Headers */, - C60C77A8EB67A4418B964D0191116493 /* config_dump.upb.h in Headers */, - EF69495A6A0AE8F52D5BCB8287989EC7 /* config_dump.upb_minitable.h in Headers */, - D5BF8440525E16D2BFF52C41564AFC68 /* config_dump.upbdefs.h in Headers */, - 583108F27539DF914C70870EF06A1E28 /* config_dump_shared.upb.h in Headers */, - B04E919E521E6B80A1416BFA42B61415 /* config_dump_shared.upb_minitable.h in Headers */, - 84E75A627750DFCDED3F16693F32B023 /* config_dump_shared.upbdefs.h in Headers */, - 2A31996B2A6D29FF488B1B065771AE92 /* config_selector.h in Headers */, - FBC4A453A89035AC4C77DB4E2DB1941A /* config_source.upb.h in Headers */, - 6D0B74DF9C9E1EB791D317FEED8F142E /* config_source.upb_minitable.h in Headers */, - E0112810840C0B5708A3A92D78D97129 /* config_source.upbdefs.h in Headers */, - DEAF0C099E71A8ADD1A7201D99BC7942 /* config_vars.h in Headers */, - 2B5263E420693E26847BC6FE81194E3D /* connected_channel.h in Headers */, - B959746BDFA7B9FACCCDCF0121B2B7E2 /* connectivity_state.h in Headers */, - D07C94EFEA6A8117275A76523A1FB812 /* connectivity_state.h in Headers */, - B7026A744FCA7AAE56A91FF986AB7FA7 /* connectivity_state.h in Headers */, - 580BF5C199C8F503B011752731FAF59B /* connector.h in Headers */, - FD6E777C3221B5924AB6302DEA8F670F /* constants.h in Headers */, - 5CEA4B1D9C4EF2D4ABD3A95CE0CC4947 /* construct_destruct.h in Headers */, - 19644F39715027A0E657BDA09FC1B48F /* context.h in Headers */, - 6721B843054BA487F9435A2CE3D566D2 /* context.h in Headers */, - 9600F84A0D4037B2C5858D7446373D31 /* context_list_entry.h in Headers */, - C7FB1431C11BEFF5CAD3608FA4F80E65 /* context_params.upb.h in Headers */, - AD63147267E44F9802794066AE86DE3F /* context_params.upb_minitable.h in Headers */, - A7B1193EF56D54CEBA97B0DED059C6CF /* context_params.upbdefs.h in Headers */, - 82B5F4B720FC8A0D310C948EF6CD1FC2 /* cookie.upb.h in Headers */, - F7B78F301276FAE17A8FD2655BF385B4 /* cookie.upb.h in Headers */, - D5E926839651DCB1FB7BE01E63025516 /* cookie.upb_minitable.h in Headers */, - 4A7C0ACA9E7550C68DF91E2B6BDA2A13 /* cookie.upb_minitable.h in Headers */, - 7311126C017CDB89DB8AA7C12369F63B /* cookie.upbdefs.h in Headers */, - 88FBC9ECA3B1A56A04EE066791C91DFA /* cookie.upbdefs.h in Headers */, - 95F79A78E0A6A9B19F1F54E15C5F8D8F /* core_configuration.h in Headers */, - 9FF74D13918EA83EDD212E9D166EF720 /* cpp_impl_of.h in Headers */, - 8C666847AA6246DF8A99A26DCA65F839 /* cpu.h in Headers */, - D425983946AEBC476AC2827990ED9EF6 /* crash.h in Headers */, - 298BC2C7A381F477181923406E136842 /* crc32.h in Headers */, - D9B339DD757AF61D0F2DA2D884CD08AF /* credentials.h in Headers */, - DEC988C4DA71322E3C6E99BA13CC226A /* csds.upb.h in Headers */, - 3BE0FB96E0A38048D370DDC1B72D1D57 /* csds.upb_minitable.h in Headers */, - 7EB9EFA61979C8B7B4B0E42FA025C0C5 /* csds.upbdefs.h in Headers */, - A4AFDB7A7CA786DDAF1B5B9E79D5DFBA /* custom_metadata.h in Headers */, - 90F832BBE42F38541D5780EE293AA754 /* custom_tag.upb.h in Headers */, - 3D8394B4A57D995B3A7FAC6FB0E0634D /* custom_tag.upb_minitable.h in Headers */, - 30B61D06CAE48105BC8652D93D8AC4D4 /* custom_tag.upbdefs.h in Headers */, - 6A891EA75C0017119BB2782592A3117E /* datadog.upb.h in Headers */, - AF9A4932B6D0F4F753AC5A536BC256DB /* datadog.upb_minitable.h in Headers */, - CE9B87043A1EB8F8E40824F641F43B58 /* datadog.upbdefs.h in Headers */, - 360F88DF4A8C4AB6934A159C4FCE85D5 /* deadline_filter.h in Headers */, - ED7BE203D4433D6189ECE245002005F9 /* debug_location.h in Headers */, - F7C358E33BF257131AAA22DFFAA95E41 /* decode.h in Headers */, - 14EE4DE9E44ACDE6E328E9547C00C8CE /* decode.h in Headers */, - 8C4FCAFA9FDC86DF43AD3E277550E80B /* decode.h in Headers */, - 2DD3F5328C650D5D89416B6D57ADB1A5 /* decode.h in Headers */, - E9F1E95AB9619635B78BC70C30F2ECF4 /* decode_fast.h in Headers */, - 530B641328D7D5A1E5654A6A86B41082 /* decode_huff.h in Headers */, - A83BDE791481C70CFF594CD954CAE819 /* decoder.h in Headers */, - 07EC0FCDC55362D922A8C3EB95F1FC16 /* def.h in Headers */, - 4423B293FBE439A7EECCD6072F4F0643 /* def.hpp in Headers */, - BBE169BFEF00165C4EEB78B4D2E613F4 /* def.inc in Headers */, - 1BED31EA796348D9F047D1E353D23C5E /* def_builder.h in Headers */, - 67FD13319A8EA2AC2CA404EED1B67E34 /* def_pool.h in Headers */, - 4B45BFC4EF1F883AD64784E3DE918D0A /* def_pool.h in Headers */, - 25D65C2D5999FC761D30998D50C577D8 /* def_type.h in Headers */, - 6C0891A23C48C60F9D3DECCC44A67790 /* default_event_engine.h in Headers */, - B42CCD14175539C379C25C2903E8FE44 /* default_event_engine_factory.h in Headers */, - 1C58BAD07E9589D8A98E6DD929BBDCDE /* deflate.h in Headers */, - F00C27DE71ACD5886C488EFD644D9501 /* delegating_helper.h in Headers */, - 02173B5C3BA016F65B1EAEEDB1D2B39E /* deprecation.upb.h in Headers */, - 9CC81BD0B9C47C21893C37940D9438BD /* deprecation.upb_minitable.h in Headers */, - 3FF2FC59CE68B225F06F97E9D2648F68 /* deprecation.upbdefs.h in Headers */, - C6401484EE7E5153AC9DE384FB14EABC /* desc_state.h in Headers */, - 76E7286A98DC149D6D3ADE4C9D33258F /* descriptor.upb.h in Headers */, - 744AA03EC2A0C950DC6A7FCFE86B75AF /* descriptor.upb_minitable.h in Headers */, - DAA55C966E72C9E3BD71034165EDA83A /* descriptor.upbdefs.h in Headers */, - 300A3D5EF7F8013F75A975E5A5D00509 /* descriptor_constants.h in Headers */, - 47CD645F58B5D3C13B98D9E0301277D3 /* directory_reader.h in Headers */, - EE4AD5A3C2C6E5513A3413BB88E266E3 /* discovery.upb.h in Headers */, - E391D1115AC89C1D2CA1511B9BD2BE2F /* discovery.upb_minitable.h in Headers */, - 63D0C58B413117A9F2163F47DD8D6BBA /* discovery.upbdefs.h in Headers */, - F7A445CDB64E16C798EBE4E9EBAA9063 /* dns_resolver.h in Headers */, - 03F08DA477CAE69D50E11AD2FC21CDB1 /* dns_resolver_ares.h in Headers */, - C7FBB1841615F94155F3BB548791F778 /* dns_resolver_plugin.h in Headers */, - F73B332DC0DBC56FD8320E105B3A6740 /* dns_service_resolver.h in Headers */, - D768B9B5D4B7C5FD08B82546F6902FA0 /* domain.upb.h in Headers */, - 8C127E60DF7986D2002A95A0B0829758 /* domain.upb_minitable.h in Headers */, - 6DBBF742FFF86551FEEB5D1B88618B00 /* domain.upbdefs.h in Headers */, - 1C35B5986EFBAD80ED96433806836003 /* down_cast.h in Headers */, - E8D324E558F4061FC65E13B45A5E7A66 /* dual_ref_counted.h in Headers */, - 46423BCF4DBD6F952DCE1CE0700E2D9F /* duration.upb.h in Headers */, - 475ACA1595DEBB3EB35A29774B72A32F /* duration.upb_minitable.h in Headers */, - 3EC7FEFE185A17D0605B0CA9F3F95F0F /* duration.upbdefs.h in Headers */, - A5058341A00163D9D1F6071D36EA5C50 /* dynamic_annotations.h in Headers */, - 5D44DC06568E85319A0377AB3048C615 /* dynamic_filters.h in Headers */, - 0BA2284EEE821E0F4D84C5C437D31D6C /* dynamic_ot.upb.h in Headers */, - 2E49A0D8213765F933914CB1746D93B0 /* dynamic_ot.upb_minitable.h in Headers */, - 42B40FB76606E683ACE6655998B8DCC6 /* dynamic_ot.upbdefs.h in Headers */, - BCD07F6F3D57E746B4DEB85DCA77D14A /* empty.upb.h in Headers */, - C4CFB9957FDB7A6E77C950E00D603B51 /* empty.upb_minitable.h in Headers */, - 2BB15BE6D16E4C07C6761C4E6F575F1F /* empty.upbdefs.h in Headers */, - 090E626AE29033FAA12AC387DE154EAE /* encode.h in Headers */, - 212E6F8D162F5A304C949F735278EF2C /* encode.h in Headers */, - F369C57825CF0271416D9B96B9F1C0AA /* encode.h in Headers */, - 53173AB1CA85F90E17497E52E2599469 /* encode.h in Headers */, - 9C89AA6B595A11EE799DEADA6335B1A3 /* encode.hpp in Headers */, - 006605FA9484AB215DA0CB65725ECBA3 /* endpoint.h in Headers */, - D616F224D6C37783B777A289A695E652 /* endpoint.h in Headers */, - 863DBF79161CC118585DF52AD9038F69 /* endpoint.upb.h in Headers */, - 1C06C4CBABB0C0D1C2AEA501F44556C4 /* endpoint.upb_minitable.h in Headers */, - 0C1AEBD93F87476F0FFDD30DC931EB5E /* endpoint.upbdefs.h in Headers */, - B88D775B3B9A73F5D96CF455F5044D4E /* endpoint_addresses.h in Headers */, - 00F8573CF5F9FE0DC3D44F9EBD3C3210 /* endpoint_cfstream.h in Headers */, - 262CF181090C34A5E6E135E5F0C707B3 /* endpoint_components.upb.h in Headers */, - 2FF2BBA993F7F3ADBBC891FBABE8164B /* endpoint_components.upb_minitable.h in Headers */, - D9F4F1309F10576E07138DB44ED29FDD /* endpoint_components.upbdefs.h in Headers */, - 005ADA0ED10047580A0F81831A91E871 /* endpoint_config.h in Headers */, - 562DB2DCD6FB92135F3AF37185B5CD9D /* endpoint_list.h in Headers */, - 8BAF2C50159C663DD08CFB1210397AAF /* endpoint_pair.h in Headers */, - 6107E23163156158F9D72C3E3962ED5E /* enum.h in Headers */, - 1D87A780802C50051D8786F066477C88 /* enum.h in Headers */, - 13ECB0B3296E3E885B14BB2CDEBCFB8A /* enum_def.h in Headers */, - 170D54C627FBF9E94EC71C0B88FE0039 /* enum_def.h in Headers */, - 5BF41080EC208CE7642B9A0AD4E882EC /* enum_reserved_range.h in Headers */, - 7F05117194918F857179FFFF0BCE1F65 /* enum_reserved_range.h in Headers */, - 2B6E6B85580B3394F21D2387CC9172C4 /* enum_value_def.h in Headers */, - 50DD33A3834DB4DE0C0A8223FD8065F0 /* enum_value_def.h in Headers */, - 7B582B45C761AF7C14FE36607E235B6F /* env.h in Headers */, - 40A9DBA33C44999C3A0DDF3E670808A9 /* eps_copy_input_stream.h in Headers */, - 8AF1A6D86C87390C202A4DF637B98FCB /* error.h in Headers */, - 529F13981187E204ED5DC503856051BF /* error_cfstream.h in Headers */, - AA52A9CDC77D4681CCF5EF4CB60085AF /* error_utils.h in Headers */, - 3D0910008D57082F2B6B8B7E28748C27 /* ev_apple.h in Headers */, - 1303C376E69F3D6E7AE794AE83575DD7 /* ev_epoll1_linux.h in Headers */, - B43FF39A396874A87AFD6AE7739DD283 /* ev_epoll1_linux.h in Headers */, - 676CAB6D5ED17A0594886B494C6A1D6B /* ev_poll_posix.h in Headers */, - 132FFDF5D750FB469A0BE2021ED403FE /* ev_poll_posix.h in Headers */, - 404E21EF189AD7FDA6284DC43462B022 /* ev_posix.h in Headers */, - 4A62C263504A00A3F1B67011003E1FE5 /* evaluate_args.h in Headers */, - A39D8C761D7CC1FC4A040497DC1C4172 /* event_engine.h in Headers */, - D6E67C4E612CB8A31B8BAEE6BFC3684F /* event_engine_client_channel_resolver.h in Headers */, - 16AAE54499A9462646F42A30D512B196 /* event_log.h in Headers */, - F2BBF7DADAD7902101733A084247B94A /* event_poller.h in Headers */, - 1A8303D091FF29E641DEEAB3F459B671 /* event_poller_posix_default.h in Headers */, - 6E3803BDE745AF1CF6A0018C38519C21 /* event_service_config.upb.h in Headers */, - 1973B5A008D41EF483B1775A7B1B1C7B /* event_service_config.upb_minitable.h in Headers */, - 886BDFB808CC57CB71E09223D907A44F /* event_service_config.upbdefs.h in Headers */, - E403641E425D3842F1711374B2CC63B4 /* event_string.h in Headers */, - 901D49213774C410B5788BA2F6A8A047 /* examine_stack.h in Headers */, - 5C0551FCB676F1DBAFEA12EB00FC547A /* exec_ctx.h in Headers */, - 080FD47C0A13819E27795C9B1E158FA2 /* exec_ctx_wakeup_scheduler.h in Headers */, - 96F9EA0502E4264ABFFE26F83B2B88D5 /* executor.h in Headers */, - 428AD4F64B1007468EC25A368D9B5846 /* experiments.h in Headers */, - 8970F60853F333CC0CC61B021764ACA9 /* extensible.h in Headers */, - 55619FC75F5ED41493BBB1617D14C019 /* extension.h in Headers */, - 6C425C3CB8AC4AEEF8C420804705B9D5 /* extension.h in Headers */, - 549E00AE6DB0E65C1D80B262A48FA231 /* extension.h in Headers */, - EF19C6F359EE64E3840D04B7A79E9C6C /* extension.upb.h in Headers */, - 03A55B414C1BF77432A3D2167241F5D2 /* extension.upb.h in Headers */, - 14AB421D44506BD967DC6CEC4FD2E440 /* extension.upb_minitable.h in Headers */, - F74C7D49A16950918C684CD1991925D2 /* extension.upb_minitable.h in Headers */, - 96229021BD5AD01BB2D2D29A0B9A3C16 /* extension.upbdefs.h in Headers */, - E499E8693FEF5D84E68AB1271B54EAFB /* extension.upbdefs.h in Headers */, - A1A0CF81F6B4E7BE66223B9DE230F662 /* extension_range.h in Headers */, - 9BEF40124098F689A269F519098DB091 /* extension_range.h in Headers */, - 98730273DC2ED6B4A23648218D62C256 /* extension_registry.h in Headers */, - 3ADB05AB664BC7DDC4F02DE8FE58D79C /* external_account_credentials.h in Headers */, - C8CBF500BB87112334BF06ACDEAA9A6F /* fake_credentials.h in Headers */, - 79DDDF5AA147F924C1200F82C5246B7A /* fake_resolver.h in Headers */, - B440550E363567FD31AA266F444367CA /* fake_security_connector.h in Headers */, - 872E26BDA10DD48CE47D802EDAB66749 /* fake_transport_security.h in Headers */, - BC76AD5445A627C698932AF9D804B565 /* fault.upb.h in Headers */, - 4E3F428C61BBF3D9F5176D58F0DD74D7 /* fault.upb.h in Headers */, - 98CB2F9552B2E92C7D407550914DEBBD /* fault.upb_minitable.h in Headers */, - F4B0299793C5EFDBA8AD444C46AA1717 /* fault.upb_minitable.h in Headers */, - F5208A82F77FBCE9BEC9AFCCC148B3E3 /* fault.upbdefs.h in Headers */, - FBCDD8C7AFF6AB22E31FAFE1AC56B21C /* fault.upbdefs.h in Headers */, - 5786E79E1B15A0CA54374DFFA3A45D15 /* fault_injection_filter.h in Headers */, - DC2B2759B80582DD98DF3E3C93AA660F /* fault_injection_service_config_parser.h in Headers */, - 4B84F889E703CAD8BAFD808D1A1E1F38 /* field.h in Headers */, - 845B0B5ECBFC5C84B1FE2BD1128E9844 /* field.h in Headers */, - 54459C0EE1ECF1431DD0504B8CAA01D9 /* field_def.h in Headers */, - 53F77A9E452A4E8E8130D26A8CF67AE5 /* field_def.h in Headers */, - BFAE929860AC3BDBCA2F67D53CDBEBFF /* file.h in Headers */, - 2B085F8BD8BE155CCB1F87A5E67E3F9D /* file.h in Headers */, - 845F6EBF49C08B8867F89AE663240F51 /* file_def.h in Headers */, - 54A213EF117120BA6A73D990B308E2BD /* file_def.h in Headers */, - 3CD5A49C38AB4426A7B9DDBC44402B2C /* file_external_account_credentials.h in Headers */, - 69D3540FD02D46196E290B8347B0B3C6 /* file_watcher_certificate_provider_factory.h in Headers */, - 7C4A979E65DD339A11FC40802BCAEC49 /* filter.upb.h in Headers */, - C9BADF21B00E4E9ABAA7557C214C8655 /* filter.upb_minitable.h in Headers */, - F179B899D60EB3EF14727F323CFD2BBD /* filter.upbdefs.h in Headers */, - 8E0D7ACA959C65E48422C78CF96BFC91 /* filter_state.upb.h in Headers */, - CD14117E5A18F1BFD15D98D5EDD80196 /* filter_state.upb_minitable.h in Headers */, - A357A751BCF28FC7E53D91CFC108FE66 /* filter_state.upbdefs.h in Headers */, - B4DEC0C739FC62E75D3BB696FDC1ECE5 /* filtered_re2.h in Headers */, - BBD660A3BE6184E5D986409D02D54F09 /* flow_control.h in Headers */, - 18C049EF52D95F103E7D656450C74115 /* for_each.h in Headers */, - 1FB7697D2E0927AB34C5E9B56613BC39 /* fork.h in Headers */, - 2EBB4EFAB6FD7C06C23024F13F8A796C /* fork.h in Headers */, - 2924F9222B1240FB557CB0D99E959209 /* fork.h in Headers */, - 4ACD67DCFE980D79438FEE6F9A017BA3 /* forkable.h in Headers */, - FCA1DA1185FE88F4E57FBF210F5EA161 /* format_request.h in Headers */, - 3F9D95D7276C1F3C72462486305D7615 /* frame.h in Headers */, - 18F9FE818958A4625CEAACF7463C3F14 /* frame_data.h in Headers */, - CB513E7845EBCC5D25F2633259B5CE79 /* frame_goaway.h in Headers */, - 3A95B829A044DBBE1F87E50F25E97AFA /* frame_handler.h in Headers */, - 8CD7D0072B822ED5FFB356E0596391D1 /* frame_ping.h in Headers */, - 6D1DE07E9EB273F35A55CA9839752E28 /* frame_rst_stream.h in Headers */, - 1036BE63CF71EB4FE9C8D7E6094EBA27 /* frame_settings.h in Headers */, - F299F97BE6F3F1AD4464712F6524BE91 /* frame_window_update.h in Headers */, - A6E7C28CC6F9D649C6D9740BF31D5471 /* generated_code_support.h in Headers */, - 5A7C9E085F7A57FCA4311E634725D0C0 /* gethostname.h in Headers */, - E631152BA7CC97F79F753CEA2A2A7033 /* global_subchannel_pool.h in Headers */, - CDCEE0448FC0C8EBF6F4EEA36B024604 /* google_default_credentials.h in Headers */, - 4E26F8F7337E5DE921E32D69D0871966 /* gpr_types.h in Headers */, - 334DA0D9B3EE6FA59D2874E9F0483531 /* grpc.h in Headers */, - 9BC9B5859A4369763BDE2CE6E3EA2CB1 /* grpc_alts_credentials_options.h in Headers */, - E0EC765764B1A7057C56CCCE3376C3F1 /* grpc_ares_ev_driver.h in Headers */, - 27898C8BADF909FC36F6C98229FBC18F /* grpc_ares_wrapper.h in Headers */, - 5F2081D45129AD6AA325D69773D1873B /* grpc_audit_logging.h in Headers */, - 4AB918C330DA3F548F080BAA22C67FF8 /* grpc_authorization_engine.h in Headers */, - 9B2C4964BD31059DBB857E9BFFB41321 /* grpc_crl_provider.h in Headers */, - 25CEE4245C5C66C51F6E9FAE5B22CD1F /* grpc_if_nametoindex.h in Headers */, - 7CDF8267B5010A14C7B604239653CDFE /* grpc_method_list.upb.h in Headers */, - F1148056FD844D667D2D3A163BA84DAA /* grpc_method_list.upb_minitable.h in Headers */, - 03E30E887E234BC57BA126D4AEA80736 /* grpc_method_list.upbdefs.h in Headers */, - D2668DD5BFB5E88DACE87C9496008557 /* grpc_polled_fd.h in Headers */, - 579F69F4E3560DB476F0E1557F024E59 /* grpc_polled_fd_posix.h in Headers */, - 7347DC6F8C11E6AF3A001927665188E7 /* grpc_polled_fd_windows.h in Headers */, - 78C7DD679CD5E70407CC8047D39BB470 /* grpc_posix.h in Headers */, - FAE036BD0DFE7FE97D01D2CDD43BFB08 /* grpc_security.h in Headers */, - A029E9243564DCC8F874F9094391CF58 /* grpc_security_constants.h in Headers */, - CFE7DC51830C81726788960BC3667A7E /* grpc_server_authz_filter.h in Headers */, - 119D0802EFE68A86F1EB033339BCBB79 /* grpc_service.upb.h in Headers */, - EEB6A84FBE7EDD954590EAD32F9D95E9 /* grpc_service.upb_minitable.h in Headers */, - 48263CC9844319ECB26C8B831BCE7330 /* grpc_service.upbdefs.h in Headers */, - FCE4231AEDD5FF5EB8776FDC0F340EC1 /* grpc_tls_certificate_distributor.h in Headers */, - 64A0940A650C258807E833D8C56E1329 /* grpc_tls_certificate_provider.h in Headers */, - 9074D52346678B64F768DD36303402FE /* grpc_tls_certificate_verifier.h in Headers */, - 650540FB3BE50A61B447AFF4A4BE1D93 /* grpc_tls_credentials_options.h in Headers */, - D9D754458D5FB170BF029091C720B294 /* grpc_tls_crl_provider.h in Headers */, - 7BF6D3A390218EA58937A77248421F01 /* grpc_types.h in Headers */, - 426FAFF8B185DABD04E0DE4B093B2880 /* grpc_types.h in Headers */, - 93FBF320F33630C3576F1CA64F6FDBC2 /* grpclb.h in Headers */, - 630F62ECCE015C7B9AE2F9315814F0C1 /* grpclb_balancer_addresses.h in Headers */, - 82F6F0BA3E7DE75F8B224F3088221F1C /* grpclb_client_stats.h in Headers */, - 294E9D364FC31A1481C65277810E5635 /* gsec.h in Headers */, - 49E08CA02291681E65FD9FCC98AC522B /* gzguts.h in Headers */, - 593315FA07B3330B010AA8AF32757139 /* handle_containers.h in Headers */, - D0F33607A9D3E09CBADABB706CAF0F30 /* handshaker.h in Headers */, - 8C0FB06A248252CD0821799D272BC18D /* handshaker.upb.h in Headers */, - 265BE7E3B9B1E76DCA801973054B9837 /* handshaker.upb_minitable.h in Headers */, - 310E7638FBC9D512B6C3477A4769E566 /* handshaker_factory.h in Headers */, - 7F35AECAF389424E77EF4A256843A80F /* handshaker_registry.h in Headers */, - 2B4D22A98F42075FEC4623C501ABAD3A /* hash_policy.upb.h in Headers */, - 826CFEA105DF999596CDFBC2728441FF /* hash_policy.upb_minitable.h in Headers */, - 2FD07CF35357A5003684C0668AE0611F /* hash_policy.upbdefs.h in Headers */, - 8CA87A9242F36E0EAEB31605233D681A /* health.upb.h in Headers */, - B0BBBF99A3D3870DF2DB185925FC6A49 /* health.upb_minitable.h in Headers */, - 8FA6DA9D154D5F6DEC148B422BDA4D6B /* health_check.upb.h in Headers */, - 93487E342F50BD3845576D045F6F73BB /* health_check.upb_minitable.h in Headers */, - 84820A64E20FF6DD0A945998BCC7D588 /* health_check.upbdefs.h in Headers */, - 40922B294B5B33494FD5F018E143AE64 /* health_check_client.h in Headers */, - 333D786A2EEF1C62ED49F93B4C2427B4 /* health_check_client_internal.h in Headers */, - 45D0C565E1FFB7E1EC0AC7ED67861721 /* histogram_view.h in Headers */, - 6DA47D9C80D5470241F9FC3E1C664386 /* host_port.h in Headers */, - 9086BA1320C749471563B525C1225715 /* hpack_constants.h in Headers */, - 9B1152701CAB5FA193207D35F74F904F /* hpack_encoder.h in Headers */, - 0530094A5D0335AF69FB3F8568DF4130 /* hpack_encoder_table.h in Headers */, - A1923436790C9987406690256023A806 /* hpack_parse_result.h in Headers */, - C2D0505AE225CEA92EDC9F00BA313057 /* hpack_parser.h in Headers */, - 881277268A6E67CDA622389DED75772F /* hpack_parser_table.h in Headers */, - EA0EA856ADAFFE05471A9D39453308E6 /* http.upb.h in Headers */, - 1CD94949BE6C9B0B8F9C578E0B0D886D /* http.upb.h in Headers */, - A617E056957AAECDA0EEE8FF13407BC6 /* http.upb_minitable.h in Headers */, - 809AD8E476FD167ADD4F5E010E2EA167 /* http.upb_minitable.h in Headers */, - 33F4A0420A53EDD16D2C843C0229E4B2 /* http.upbdefs.h in Headers */, - D0B0C527AB374AE64143B0F54195C400 /* http.upbdefs.h in Headers */, - 013E87C8156531F6491E0AA61B8B062C /* http2_errors.h in Headers */, - AC2777A8492EF2555A5C97382C13BAB5 /* http2_settings.h in Headers */, - EFFCCAB61273CB49A962DD15A66CC53F /* http_client_filter.h in Headers */, - B16BBB2AB2F27C960FDDA7DA053ACF88 /* http_connect_handshaker.h in Headers */, - E2CA5A8A9E29574EDA96E96CF2EDA5FA /* http_connection_manager.upb.h in Headers */, - F790DC23D164F8D4708916DF60A34F37 /* http_connection_manager.upb_minitable.h in Headers */, - 9C0C89ECBCAEFF79F23CE14B47E4A4A9 /* http_connection_manager.upbdefs.h in Headers */, - FD726EF8D5A90FECEE06702778A2A6A7 /* http_inputs.upb.h in Headers */, - 62BC5EDBEE6B81E9452A91ACED035D31 /* http_inputs.upb.h in Headers */, - 9458526402B41FBAF22D6A041050B91D /* http_inputs.upb_minitable.h in Headers */, - CAE5B12701935E34D06BBAAD3595D3D8 /* http_inputs.upb_minitable.h in Headers */, - 296CE47B9494E55A92BF3BE155557290 /* http_inputs.upbdefs.h in Headers */, - 288F06B80921584B8C9751199EACEB11 /* http_inputs.upbdefs.h in Headers */, - 2C77D86FB73E328F0570AA8321D2063C /* http_protocol_options.upb.h in Headers */, - 4EBDBCED62021503EDA9F555D31D04B7 /* http_protocol_options.upb_minitable.h in Headers */, - C88269F7FF36B2EB9F28815783D29AA3 /* http_protocol_options.upbdefs.h in Headers */, - 1EA076BD1A3984D18E476A7C781A74DB /* http_proxy_mapper.h in Headers */, - D0102ABF0B4459900A5621371F3E57ED /* http_server_filter.h in Headers */, - B9E0C604347EAA70357797E85729CC65 /* http_service.upb.h in Headers */, - 7ADD4BF9C5657B12DB02AE71F3C243C2 /* http_service.upb_minitable.h in Headers */, - A3CAC4494F3BF948DFC9070E598B2607 /* http_service.upbdefs.h in Headers */, - 48A7A18038805B8B84A63262831871E9 /* http_status.upb.h in Headers */, - 849EC2BDE414EF1BDAD43EDDAFC08745 /* http_status.upb_minitable.h in Headers */, - E150BC23A0DFAC72651F17E54BFCBE1B /* http_status.upbdefs.h in Headers */, - 9A20D1B80E09E3359D21E6543DF9F010 /* http_trace.h in Headers */, - E5B99EFBB3692B5A34D6A30A271F0CE6 /* http_tracer.upb.h in Headers */, - 367AE1D880000506CBB305448E2C2A96 /* http_tracer.upb_minitable.h in Headers */, - 3C9D5C8459ACA05E7217AEF49D407FA3 /* http_tracer.upbdefs.h in Headers */, - 4507CE78E2395C1D6B1EE39F48CE0B89 /* http_uri.upb.h in Headers */, - 86154DAE2018118815D05CA8A9CCBDB9 /* http_uri.upb_minitable.h in Headers */, - 7DD38003CA3F3528BEA6640ECE3EB993 /* http_uri.upbdefs.h in Headers */, - 93EA4E97E880E65A795CA58F358360EB /* httpbody.upb.h in Headers */, - E7F0BCF569165FE3375A4FFA72339E57 /* httpbody.upb_minitable.h in Headers */, - CE17C81FC5A406CA338D0C6DC9EB4C03 /* httpbody.upbdefs.h in Headers */, - FBAFB3386A6E70CBA551C7887CA566E9 /* httpcli.h in Headers */, - 8E7A529240D62649215437D3344F6E9D /* httpcli_ssl_credentials.h in Headers */, - 695EC46768CAEE0258D7FFC7EA69AD5D /* huffsyms.h in Headers */, - D4CFE7A8954F0E29633CD8E63DEC4B9E /* iam_credentials.h in Headers */, - 07F3D4FA4DFB91790965C1E0072EA43D /* idle_filter_state.h in Headers */, - 7F402DF5843BCE2F4253EC75E2DEA6C8 /* if.h in Headers */, - AC02C3E08F88E682AE80863326417A82 /* if_list.h in Headers */, - CA5A5B6FBABAC74044DA2489A77E3488 /* inffast.h in Headers */, - 23FFAC15EFA9372B1D6525780CAA0C52 /* inffixed.h in Headers */, - 075FA1C56B84E72ED8111651052431E8 /* inflate.h in Headers */, - 5723FF1719C4A9586C26B28E71082DF3 /* inftrees.h in Headers */, - AEFF24ACC6154ED4B2931D9B8EB8AB44 /* init.h in Headers */, - E0BE935A2D6AE1170C2249D30A8C16A4 /* init_dump.upb.h in Headers */, - ED646ECC7D03327607EF353F9F86D483 /* init_dump.upb_minitable.h in Headers */, - 8110A0959127E4F66399DF7F660D3BAC /* init_dump.upbdefs.h in Headers */, - 55BDEE3FE597482878E245458C061CF4 /* init_internally.h in Headers */, - 68561D084A14855744BAC642A90DC585 /* inproc_transport.h in Headers */, - 73A463B94D8E97A0F319E8B860036305 /* insecure_credentials.h in Headers */, - 8849ACB6556E3534A346C32FA11A516B /* insecure_security_connector.h in Headers */, - D879161178705DDE28F82C553D6D0F07 /* int_table.h in Headers */, - A9D9B36630D9AEE9EB0DD8E58609F9E4 /* interceptor_list.h in Headers */, - C7621F6C606A61129D5BF6D37B6764BD /* internal.h in Headers */, - E645ADCE4B7697B75E9D5FEB5B3D38F3 /* internal_errqueue.h in Headers */, - C4C8DAE6E9BC39B6B270A68128FE0445 /* internal_errqueue.h in Headers */, - 9B8CB51D982B483F995F2B42F6710E89 /* iocp.h in Headers */, - 3A1560C43683AA00436AE6B0BC555964 /* iocp_windows.h in Headers */, - 8FE1CDC25A7986FEABDE1F9CD7B746D0 /* iomgr.h in Headers */, - 01BB9EFFA65061589C5AB775EFF20638 /* iomgr_fwd.h in Headers */, - 6800567DBBD9DD6D90B4AA05CC1B6BB5 /* iomgr_internal.h in Headers */, - CAB9FC842372166C2EBA9C21CC4C0E2B /* ip.upb.h in Headers */, - 3C9CF6FA136C66CEC7E59215278C7F4E /* ip.upb_minitable.h in Headers */, - 577EBE5252ECCB6F9D05EAF563F7C8E6 /* ip.upbdefs.h in Headers */, - 656CF06E5DA10F83A93534BFE273191E /* join_state.h in Headers */, - 0B5B8D81C2F81F51F3BBEABB43F90892 /* json.h in Headers */, - C6341CBE330C2F89EC95224F908B455F /* json.h in Headers */, - 8B2CEDE99D1E7F3A3E97E8D93702F4F0 /* json_args.h in Headers */, - 1DD28D8DFAB9E31C0179008A2FEF4F71 /* json_channel_args.h in Headers */, - 756251F49131059C87F7503575B56079 /* json_object_loader.h in Headers */, - CF18637E02A1D634CD71EC3C2DB9FD87 /* json_reader.h in Headers */, - 5A2B641F1D16A4562D3B4CBC4BB3B75D /* json_token.h in Headers */, - 242B1A85D3FCB65D5CA96A7AC65772B9 /* json_util.h in Headers */, - 92573EB135F9BE589A7C217788EAD982 /* json_util.h in Headers */, - 42277DE06A0E3486C8E9919B3C20E46B /* json_writer.h in Headers */, - 648F34ED0A6BFD13941715E2D17903AE /* jwt_credentials.h in Headers */, - 99B03FF67B9EA94EA5B771E156D86556 /* jwt_verifier.h in Headers */, - 5BC84EDA8C9F8530870E810964419FCC /* lame_client.h in Headers */, - 30ABCDCCCDCA5DD90A547BDA95C936EC /* latch.h in Headers */, - 24FD05D1ED89DAB989EBC454C0736C79 /* lb_policy.h in Headers */, - 7C2B847460B8383A535C537D98A13ABB /* lb_policy_factory.h in Headers */, - ABEC24E7B74BBD310CF2E1E95164C3D9 /* lb_policy_registry.h in Headers */, - 2BFDBE9A294443826C0A9CD1FB7C6B37 /* legacy_channel_idle_filter.h in Headers */, - 6A5430DF49E3D7E3CE32580D3C03A397 /* legacy_compression_filter.h in Headers */, - D6827E4A70D99F55EB88FCF44BAAC9CC /* legacy_frame.h in Headers */, - F4C0AC655B8EAFB78E17C29A05FFDA9A /* legacy_inproc_transport.h in Headers */, - 37D7DE3C8382F45D491D73EEEA2C76EE /* lightstep.upb.h in Headers */, - 21CAB56E31FF20B991C78D81E1252ACF /* lightstep.upb_minitable.h in Headers */, - 3BFA87FB59EEFF39F1FD960999971155 /* lightstep.upbdefs.h in Headers */, - B208DD82CF2E4AA87BB7705FBA150C4B /* link.h in Headers */, - B1D9812C0B412BD74E2CB3232592011C /* listener.upb.h in Headers */, - 46B4B5BC2F8F7A25E2E59873B92997B4 /* listener.upb_minitable.h in Headers */, - C637393CE0811DC7CB47B297F34F661D /* listener.upbdefs.h in Headers */, - 02EF4C5AFC9DD87F41DE20AC6C011AE2 /* listener_components.upb.h in Headers */, - C54CE22C3D5685321EE1EC581B35D7AF /* listener_components.upb_minitable.h in Headers */, - EEB70D6F072AD6FBB6C7287887C6E445 /* listener_components.upbdefs.h in Headers */, - 2ECE2CA38DDBE2C43C29EC38D91CB329 /* listeners.upb.h in Headers */, - 7BC71EE9CB6DA77A6B01177F509ACB7D /* listeners.upb_minitable.h in Headers */, - 2E35606E4DF78D6F1174D15B750FBD51 /* listeners.upbdefs.h in Headers */, - 6F340EB23719EB6CB9344E7586B70165 /* load_balancer.upb.h in Headers */, - F36F814B0772F2770C98C61741F92D62 /* load_balancer.upb_minitable.h in Headers */, - 4F99AB51EA2507B85275057F1CE14F82 /* load_balancer_api.h in Headers */, - 330018C82E5885B0121FECB3894B0010 /* load_config.h in Headers */, - 641C89F4EEDE05109DA48859EE852C23 /* load_file.h in Headers */, - 6B3CBB4055EEE09E2A1AF393FFDC51A2 /* load_report.upb.h in Headers */, - 0DC9227CBE27E2A8801A1220EE267B17 /* load_report.upb_minitable.h in Headers */, - C887DAD50EA49516F4D2016CED72E350 /* load_report.upbdefs.h in Headers */, - 11E7668F654B5FCB887C01FB3BB52C08 /* load_reporting.h in Headers */, - 81779D518C2DA4F90E948A9DED9FECEE /* load_system_roots.h in Headers */, - B48E0BDA66993C2BA90A364C560E209F /* load_system_roots_supported.h in Headers */, - 6F61B3106FCEA25B79871696FB8A4D67 /* local_credentials.h in Headers */, - 7E615A1100932DF95F32CA6D5AD10333 /* local_security_connector.h in Headers */, - 49C6D906A0FED497FF7CEDFA5C01DD00 /* local_subchannel_pool.h in Headers */, - 26A4B46BDED50A763AE4B4EC13407103 /* local_transport_security.h in Headers */, - FCE6692D73D373D6518EFAE51C48106B /* lockfree_event.h in Headers */, - E10CF7EC144D222D357314821BAA2999 /* lockfree_event.h in Headers */, - 5BA7F10BFA27290BB46C03DB98DB38B6 /* log.h in Headers */, - 2BECC4259FCFB7A8CDB52223F1E01607 /* log.h in Headers */, - 3B9F7DEAE4D05C508A3E9BF9F2F6B6F8 /* log2.h in Headers */, - 5A03812A862B03DA2B64A0CE3D8D500B /* log_internal.h in Headers */, - A64C825633B6E332F17AAE034D14EFED /* log_windows.h in Headers */, - 2B0F3E0987343F1B88B6AA4CD2CBB398 /* logging.h in Headers */, - 65E7EA8AB85CA8B759034C4898B9EA8A /* loop.h in Headers */, - 39CECC2BC928605A8C706B6F04E8E7C2 /* lrs.upb.h in Headers */, - 6806B00A2A7EAD0660F9AD268A72D9B4 /* lrs.upb_minitable.h in Headers */, - 2C97477AE12A0568B419D4862421E86B /* lrs.upbdefs.h in Headers */, - 1A9552E7C3DBCCBC4261709C14B8FBA2 /* manual_constructor.h in Headers */, - 31C3A47B3291E5D639B2D94575401DEE /* map.h in Headers */, - 9F74062C8BE6CC9B3EFADE6D3734D464 /* map.h in Headers */, - 64F508DAABD37A2542A76DA231DC8B52 /* map.h in Headers */, - E764B809A3919BFEE628CF642C051A6E /* map_entry.h in Headers */, - BE616BF72D9823F93D12AD12EAFB9A58 /* map_gencode_util.h in Headers */, - EA5E53300397D9C5CE137FF0D06A5B2E /* map_sorter.h in Headers */, - 5F74D9B7BA0D9FFF83A1F68CCB7D2569 /* match.h in Headers */, - 4FE14BD318970D79F5E072A8B0B1AEAF /* matcher.upb.h in Headers */, - 6D1F36C7C59EBE9241FD730C2A06557F /* matcher.upb.h in Headers */, - 1ADFF2F4892E0E6125ED01F3EF2DC5D2 /* matcher.upb_minitable.h in Headers */, - 92C120252ABA413C87FB3FEE440B0E60 /* matcher.upb_minitable.h in Headers */, - 872BFBBF7948F02F49E3A7542A29E47F /* matcher.upbdefs.h in Headers */, - F7E6B15BEB623B84FE755E0B30E70AAC /* matcher.upbdefs.h in Headers */, - E02F83932B9ACCC32DE1C788F9AF50A6 /* matchers.h in Headers */, - FCCA2AF815420E6A31B87A8EC39213C6 /* matchers.h in Headers */, - 343D8655A0B64A3B6D12A05D91825C1D /* max_concurrent_streams_policy.h in Headers */, - 2E0C17B845D41B1F41CDEE6879181697 /* memory.h in Headers */, - C3BD9F60ABA6B4AB9557E4663538FA2F /* memory.upb.h in Headers */, - 418EF26E98BDEE72114DF338A9032A05 /* memory.upb_minitable.h in Headers */, - 5988BADE952609AA15510B503120D2E1 /* memory.upbdefs.h in Headers */, - 929BAD2D4FC67EC1C1DE59C669F4C76F /* memory_allocator.h in Headers */, - B498811759CF217572E53D142AF56545 /* memory_allocator_factory.h in Headers */, - 25602ACB4922B5295EDBE1A953F19BA3 /* memory_allocator_impl.h in Headers */, - F840AE6B11EECA48F1D347DF1357286D /* memory_quota.h in Headers */, - F0C08A46A82E5FD4886A9BC10B0A4315 /* memory_request.h in Headers */, - 41944A3821D9FA4D4DBBC92E7A58DA05 /* message.h in Headers */, - 649B5C46566D4E7026C54C09C6884EB9 /* message.h in Headers */, - 8E3165ACD0FE5DB2E27BEE64975331F8 /* message.h in Headers */, - 5EC9361171C63447EFB4AB7A58188C96 /* message.h in Headers */, - 929CD9313A3F98776D67E57D4B0D2625 /* message.h in Headers */, - 41E43A06D7763603F396D7CAEECA570B /* message.h in Headers */, - E7C683797616E936F4D7FCDE0E15C6CB /* message.hpp in Headers */, - 3E0DD9AC0D352DF8BE21DDFDAC269003 /* message_compress.h in Headers */, - EDE67D2C8721A2EC54B60130A9CE13C1 /* message_def.h in Headers */, - D2E985B12C092826E2E5932AF07D2946 /* message_def.h in Headers */, - 6F0CCAEF11EC839B76B276F1189FF04B /* message_reserved_range.h in Headers */, - C36A188073812FC8C08E0383BFF5A919 /* message_reserved_range.h in Headers */, - 2F6EED4ED413DC2E00F5EAD5ADED312A /* message_size_filter.h in Headers */, - EC4C34221C212FEB70AEC30C1605E1AB /* metadata.h in Headers */, - 4004124779DD6DCA3EDEC43CC63ECD3B /* metadata.upb.h in Headers */, - B500985447110C2ADEC68301583D5C92 /* metadata.upb.h in Headers */, - 43A9043EF70CFE58EDC1EC1DF2B63AC4 /* metadata.upb_minitable.h in Headers */, - 33300208F68FA414A5C0C60602FFD52F /* metadata.upb_minitable.h in Headers */, - AD449A1BC8CD8711C063333A9A18A80C /* metadata.upbdefs.h in Headers */, - 73FB858884B8C5ED2DA9AEA5C02C128E /* metadata.upbdefs.h in Headers */, - DDEC56001C3D9900BAC3FEF14D2441EB /* metadata_batch.h in Headers */, - CD444806C8F370D6E46C4E675DEBEED1 /* metadata_compression_traits.h in Headers */, - 282F3AAFCE936835AFD21E63943598F7 /* metadata_query.h in Headers */, - A64FE3A0FCACBF58C41E32CD97620B37 /* method_def.h in Headers */, - CCB9F106E4854548070BE1E0305A35AD /* method_def.h in Headers */, - C6EE189DCBEF4418FBC70D34FFB65928 /* metrics.upb.h in Headers */, - AB70CE7D35B037ED34D8282978BB9089 /* metrics.upb_minitable.h in Headers */, - 5DD40D1DF9D9CDBD787D6219E2A6C683 /* metrics.upbdefs.h in Headers */, - A64F53452F58F70544BA4C192F089835 /* metrics_service.upb.h in Headers */, - E37F88A97B40E0FE7D74202659AF54DE /* metrics_service.upb_minitable.h in Headers */, - B13857197021AE00D8ED13EF52707B89 /* metrics_service.upbdefs.h in Headers */, - 7EFCB79D93D7EA0700E3549B0E1C4185 /* migrate.upb.h in Headers */, - 5F5AB7CAA62BCC36B7D7604195F63BFA /* migrate.upb.h in Headers */, - C7F599C9440EED74587F4B8BC01A943F /* migrate.upb_minitable.h in Headers */, - B70FE5768C7F30E41E15B68FC7D66419 /* migrate.upb_minitable.h in Headers */, - 92C78D891CD7202342289FFD2BEBF946 /* migrate.upbdefs.h in Headers */, - 912631990CDA3776693C54E0AF2789EB /* migrate.upbdefs.h in Headers */, - 4F724D27EF4091A7797BC27380FEF7D2 /* mix.h in Headers */, - 68A88224CC576804C9C443523C76AB02 /* modifiers.h in Headers */, - D07BB990328011A9F56034A318BEE836 /* mpscq.h in Headers */, - 77CB51CB38804C53499B1B5F5AF72BE1 /* mutex.h in Headers */, - 0F4304FEFDE6BFFC5FF7489EDA25F6D4 /* mutex_stats.upb.h in Headers */, - B1C20FEB85658F2EF78B073854447DC1 /* mutex_stats.upb_minitable.h in Headers */, - 5B15D9C9F16B8B3F2215CA3C6F8AA96C /* mutex_stats.upbdefs.h in Headers */, - 9E3BDD5F24A6424AEA4F4F20280DADFF /* nameser.h in Headers */, - 4496D12CD45302F7C7999D9EE6CDCBA2 /* nameser.h in Headers */, - 2D0F1F5FE2DDE55F52586F1D072BC32C /* native_posix_dns_resolver.h in Headers */, - E88E57289CFFACC6DD01211B100DF670 /* native_windows_dns_resolver.h in Headers */, - 515ADE7E794C20B99AA65BF77135C786 /* no_destruct.h in Headers */, - A0CCA0A814DC5863FD4314A3CE86D075 /* node.upb.h in Headers */, - 6EF76C74B21AEF126FE876A27335B780 /* node.upb_minitable.h in Headers */, - 05B8A5061F738062E3E9D1F380B34524 /* node.upbdefs.h in Headers */, - 246F67220AB84E86471219807525FCD2 /* notification.h in Headers */, - 863321D5D5A88E74876D08F6C5FD5500 /* number.upb.h in Headers */, - B46E240C56F3BEE2538909CC8F65CFF0 /* number.upb_minitable.h in Headers */, - 47FA0A350F4AAFC85D38A6044513ABA2 /* number.upbdefs.h in Headers */, - E90731450D63CB70CDEE4C682792AC1F /* oauth2_credentials.h in Headers */, - E03A7AE974C33348D22241207653B0CA /* oneof_def.h in Headers */, - 2D3181914F8A2BF8A1C61015C54DD5CD /* oneof_def.h in Headers */, - 71E47E505CE40CFFA67544BC751C9E76 /* oob_backend_metric.h in Headers */, - B7EE03AB225B1FF8652F392C71BF7573 /* oob_backend_metric_internal.h in Headers */, - F7A978AFD18F95E2868ED85C193BDDD4 /* opencensus.upb.h in Headers */, - 98AF659A03788512EA2AC8EDF01E50EF /* opencensus.upb_minitable.h in Headers */, - 5AF74CF8C16AE6171700B1EFAB1BF5E6 /* opencensus.upbdefs.h in Headers */, - 35DBE712C5B065402F994268C14D6325 /* opentelemetry.upb.h in Headers */, - 169FAAF6FA933F313C57C3713B05379F /* opentelemetry.upb_minitable.h in Headers */, - 1F5CBC019DD0C66F5A34E6C9102CBBC0 /* opentelemetry.upbdefs.h in Headers */, - A5B694BD738562A0C354EF64D5512474 /* orca.upb.h in Headers */, - 398358B745EF370444FEBFA559B68932 /* orca.upb_minitable.h in Headers */, - 3D90857F1D3D2133E12F870167CF0F88 /* orca_load_report.upb.h in Headers */, - 3E80BE665FE25523D9646000CA472E99 /* orca_load_report.upb_minitable.h in Headers */, - 0EA33BE5C67D1E27D60E7D4E49853F35 /* orphanable.h in Headers */, - 6FB17AE3644D9F6CE5D0F728CC226840 /* outlier_detection.h in Headers */, - B2E0F01CA0C69687A0328F768E23A4CB /* outlier_detection.upb.h in Headers */, - 1519BCB1DEA7C046AAD5936BC7EBFA08 /* outlier_detection.upb_minitable.h in Headers */, - 1B67F1C195A622AC45A41F697A356B34 /* outlier_detection.upbdefs.h in Headers */, - 164F7FF92FF99FC2ECF60FE7D1856C8B /* overload.h in Headers */, - F472C95E4D435197043AA80A80617C7E /* overload.upb.h in Headers */, - 2845A9FB0E470182C609D04B2D0B690A /* overload.upb_minitable.h in Headers */, - EF417DF967F614048EB81A1029D2781F /* overload.upbdefs.h in Headers */, - F79C54957D373BAFFEF7570017DF4228 /* packed_table.h in Headers */, - F9AEBF6F55210318BFB92BE184E8D3D4 /* parse_address.h in Headers */, - 51169C9D0D6D4742AB4CD5BA1EB8ED52 /* parsed_metadata.h in Headers */, - D17B4710652CC17A3441441E3C0D0831 /* parser.h in Headers */, - E575986F83AA65A3EA77AAD74C909557 /* party.h in Headers */, - 7147E73E45A3EF24B85C15257C12DC00 /* path.upb.h in Headers */, - 3CB5CB4975D9A9CE68FEFB35B14D862B /* path.upb_minitable.h in Headers */, - 89831AD5D19A653C1FF702AC9FF0392A /* path.upbdefs.h in Headers */, - A81C6E1EE61AFB74AFB250D0931A54D2 /* path_transformation.upb.h in Headers */, - 53B4ACEE24D3A72B29CFD2F7ABDC3FF5 /* path_transformation.upb_minitable.h in Headers */, - 3DF9E9ADF4C1F485A9E8B34C24670046 /* path_transformation.upbdefs.h in Headers */, - 9716BFBF94FA46ABE4F452BC5DC40939 /* per_cpu.h in Headers */, - 4258BDCBFCA84949E314E52305C0ADCB /* percent.upb.h in Headers */, - 0F6B7AC835950F4F8BAC18C2A63F8CF5 /* percent.upb_minitable.h in Headers */, - E123AD9E22FCFB7986C868586FF5AACC /* percent.upbdefs.h in Headers */, - 861639903FBE19CD3463AB34BA72DA0F /* percent_encoding.h in Headers */, - DE1005B059F7D5D88FFC320F0E13C146 /* periodic_update.h in Headers */, - 24B31C3EE21AF70A16FD34BD28FCF41D /* pick_first.h in Headers */, - E3672BBA04AAA3DBABF25227F0BBB787 /* pick_first.upb.h in Headers */, - EE2A1DF816AB1AF5FB39D2FBCD00305C /* pick_first.upb_minitable.h in Headers */, - 3E4A44F9D4B0BBFC156B6C9272B247BF /* ping_abuse_policy.h in Headers */, - 38728F0320A253E677A27C5646A66B83 /* ping_callbacks.h in Headers */, - 69C54701FF4EC59D02028527A5A31480 /* ping_rate_policy.h in Headers */, - 55E8F131598F0F3FB538BA949E1ACA0A /* pipe.h in Headers */, - C529A341F7E04400BDE9C70043F11832 /* plugin_credentials.h in Headers */, - 614683EA45A9818EC062D905F8B159EC /* pod_array.h in Headers */, - 511FE8CF47F933B96DCB723857B05583 /* poll.h in Headers */, - 82DD14CBE471958E768846828E4EDDC4 /* poller.h in Headers */, - B69C89E57D5B50713919B3F14537294A /* polling_entity.h in Headers */, - EAECE0D77CA09EC979A7425B0292565D /* polling_resolver.h in Headers */, - 8A875A239CFC19810DF689420AA968D6 /* pollset.h in Headers */, - C0A754BB5167F732ADD473E6A59B3EEA /* pollset_set.h in Headers */, - F12E3EACEEDF3AF52829EEEC830699B4 /* pollset_set_windows.h in Headers */, - 0E0133C3873696D6C4428EBD6B20A6CE /* pollset_windows.h in Headers */, - A2164931B9158AC801300325DBD9E711 /* port.h in Headers */, - 0E4F79448153025B9A8656F6DB56019B /* port.h in Headers */, - 12CD9D5122DF143AF7AFA8F13C1930B9 /* port_platform.h in Headers */, - D3F8178DA5568062B582CB2B840C6FCA /* port_platform.h in Headers */, - 0B583F1711A83E0B3C33130B0BBBD61C /* posix.h in Headers */, - C8A71B902D4AD88DB2329CB482282389 /* posix_endpoint.h in Headers */, - E93512DA9AD573AEB4E3178D30DA13DC /* posix_engine.h in Headers */, - A4879D63BC15F9C04C70454DF1572D7B /* posix_engine_closure.h in Headers */, - 0CF5EACCDF33ED8A97C7D0246AAA6F1C /* posix_engine_listener.h in Headers */, - 59268734D9554502039C26E68F20DCC3 /* posix_engine_listener_utils.h in Headers */, - 4D51AC5C679EA5E22F153239624A633A /* prefilter.h in Headers */, - 2C76306C035B5D2AD9B6A7F25E1DA3C3 /* prefilter_tree.h in Headers */, - FD0910E94980925CC41EE6097200B6BB /* prioritized_race.h in Headers */, - E390A2007B50C17F5F24C6A1CB6F534F /* prog.h in Headers */, - 47C04ECF1A0AF52A6B8C425C1AC38DFB /* promise.h in Headers */, - 59A80DA3CD5247587229B6907F008FA4 /* promise_based_filter.h in Headers */, - B29A40E328ADF04A8C2182C51F254087 /* promise_factory.h in Headers */, - AE72EE12FA3CB043FE40CA2D5F2A7C1F /* promise_like.h in Headers */, - 0D0C6D4D855534D0026C5EA00D38F89C /* propagation_bits.h in Headers */, - 9FBBFCB35877B7110689230CBFFBCBC3 /* propagation_bits.h in Headers */, - 94CC5EB757F083EBF86D79395CB4A796 /* protocol.upb.h in Headers */, - 965994C5D68E6B45AD7A2F95E1622E64 /* protocol.upb_minitable.h in Headers */, - 6A348C558721AE3BDD680AF5C698EF8A /* protocol.upbdefs.h in Headers */, - F2BD9837CEAE9809928467EEEF44AF34 /* proxy_mapper.h in Headers */, - 4AF850DB289B4C6C62A32390112CA889 /* proxy_mapper_registry.h in Headers */, - EA92DA4C0AE7B4B0E00F54E8D3C46437 /* proxy_protocol.upb.h in Headers */, - 78E44AA59341B3CF8048D30D3695BF21 /* proxy_protocol.upb_minitable.h in Headers */, - 05BE1439F0FC530BCBB327F7DEADCF61 /* proxy_protocol.upbdefs.h in Headers */, - 3C34130398769B330599EC7B7B7D6E63 /* python_util.h in Headers */, - DC2CD0410E5195FD07D1771FA0A14A69 /* query_extensions.h in Headers */, - A51826DD401272720D5A39060DD8AA67 /* quic_config.upb.h in Headers */, - 1EFA2C996AD56E6254B79BC86E78586A /* quic_config.upb_minitable.h in Headers */, - A16092B752969090E60BC8FFC787B3AC /* quic_config.upbdefs.h in Headers */, - 073CFB088FF442E095D414A84C344C83 /* race.h in Headers */, - 1020A8FD895222820A6AB9978BD46731 /* random_early_detection.h in Headers */, - 3B8E4CBCA261BA22DF05234F38FCD949 /* range.upb.h in Headers */, - 4073E0098902F07C038ECD11DFB5F8DE /* range.upb.h in Headers */, - 7DAA6F52631D28196C5ED9935FB4A0D3 /* range.upb.h in Headers */, - 02734F8FAE6DAC51E8B8FB7C9837C2B2 /* range.upb_minitable.h in Headers */, - 60F0A689A2B9836501B3B0E8F048142F /* range.upb_minitable.h in Headers */, - A3C10668D9FE168947FFAC6D4D0F5E93 /* range.upb_minitable.h in Headers */, - 0B2670A262D3C5294ED2455FC4C460A0 /* range.upbdefs.h in Headers */, - AE059E946A0C645947D16AB2A9F29FDE /* range.upbdefs.h in Headers */, - 7AA3376311E190C2EF9B90DC5EE33510 /* range.upbdefs.h in Headers */, - C6241F2C494FF23CC0525E2B228500D6 /* ratelimit_strategy.upb.h in Headers */, - B02A3926106F8D1EAB1B823214C34786 /* ratelimit_strategy.upb_minitable.h in Headers */, - 1414C9D545B18E26B5CC74D24C362BFE /* ratelimit_strategy.upbdefs.h in Headers */, - 2B5BF7654C12AFFF4DFCCBABB6159240 /* ratelimit_unit.upb.h in Headers */, - C156FC56D79D4861FBD2895FADC4F3B9 /* ratelimit_unit.upb_minitable.h in Headers */, - 7DACC9D322363CE3A635236093D92C98 /* ratelimit_unit.upbdefs.h in Headers */, - 683B35D68A2637A5DDCA3747355BAD8B /* rbac.upb.h in Headers */, - BE3D41437D96AA885804A1B8AC80746B /* rbac.upb.h in Headers */, - CF622D98D37E00E61D29C3010D08F766 /* rbac.upb_minitable.h in Headers */, - E6C07D63D6307DB8C3969910604A6302 /* rbac.upb_minitable.h in Headers */, - 9C082BB1C78750407410525F90CB544E /* rbac.upbdefs.h in Headers */, - CE8E13E41AA43DEF2EDE46F75A6F46FC /* rbac.upbdefs.h in Headers */, - 70848ECF50284CB278176373C5445F15 /* rbac_filter.h in Headers */, - AB1526F07980C9152013F36BBDF6D889 /* rbac_policy.h in Headers */, - 4DA899A5352214CD96528A898819B5E1 /* rbac_service_config_parser.h in Headers */, - 10D6EEC55AD3899BF4D73CA051A17D00 /* re2.h in Headers */, - F791759A967B273CD67AE8FAE4587A7B /* reader.h in Headers */, - 84DB78D3DCF5E09122371AD142814FD2 /* ref_counted.h in Headers */, - 8BDE659A31F3D04C48C639502D284269 /* ref_counted_dns_resolver_interface.h in Headers */, - 0CF3CD4DD58751706616DC0936FFCF13 /* ref_counted_ptr.h in Headers */, - F78E5AB40E555051587175D49D3FDA0B /* ref_counted_string.h in Headers */, - 087B8EA7AEAA0FC70FC1B58727F8F3F2 /* regex.upb.h in Headers */, - FEADF4EB3DCB5AE8EB2CB93AE56EB6B6 /* regex.upb.h in Headers */, - 2385D49E4EF1464944DB45DD22379E65 /* regex.upb_minitable.h in Headers */, - 6E5923F26325D35E5A1A8DEBBDF2652E /* regex.upb_minitable.h in Headers */, - 8A5001568757C6F827437B93A4DF00E0 /* regex.upbdefs.h in Headers */, - 6FAEC35EDCBE8A6C2F2ED676E2095538 /* regex.upbdefs.h in Headers */, - 737C8289019C945D71FFCE4461B4ED5F /* regexp.h in Headers */, - 396976DA02E9C1688ED71D5B2364BF75 /* resolve_address.h in Headers */, - 1670FA6AA18252C716B6714F31D40155 /* resolve_address_impl.h in Headers */, - 5AC16A80DE1415C83766BD45E149C121 /* resolve_address_posix.h in Headers */, - 726EA9E06212CF4B549BC6909C914916 /* resolve_address_windows.h in Headers */, - 7447470913C8739D4629166EAD79BAC1 /* resolved_address.h in Headers */, - 59EC917941B205D62BA3C6BA88E0CA94 /* resolved_address_internal.h in Headers */, - BE5BA8C374D478A807CC1A557E240E66 /* resolver.h in Headers */, - E36C74F2C5A07A96482DED5702A96B45 /* resolver.upb.h in Headers */, - A044C46D83FBDA32BB0D34CA59B5BAF5 /* resolver.upb_minitable.h in Headers */, - 3DF64E9380605CBE5BA96FD61641C392 /* resolver.upbdefs.h in Headers */, - 1A6AF6352E3577EBDCE3B0E128E2C294 /* resolver_factory.h in Headers */, - DAEBBEC202F77C6B5DDDAF9228827621 /* resolver_registry.h in Headers */, - 6810C9D3166524C47B54B4540B3C33D6 /* resource.upb.h in Headers */, - E49E7FD6BB6B08F9B533FC18D067691C /* resource.upb.h in Headers */, - A6BB7B0098DC7E38B50EA8D77FE38AF7 /* resource.upb_minitable.h in Headers */, - 7C3A0F3C5648E0BCCBC3F5302BE412DF /* resource.upb_minitable.h in Headers */, - F1E6A5EBA887262C611244610D26BC55 /* resource.upbdefs.h in Headers */, - 133002D2F236C3BD70D5C55CE2297A23 /* resource.upbdefs.h in Headers */, - 0EF59BC68B6047EF8960EE538F1A548E /* resource_locator.upb.h in Headers */, - 06EB847A45D1CB77D855DB296AC69608 /* resource_locator.upb_minitable.h in Headers */, - 586B7B7A814FD80BD6010D6B58A0DE74 /* resource_locator.upbdefs.h in Headers */, - DEC072A36F62E802D166A4334E9D979F /* resource_name.upb.h in Headers */, - 267FB1D8F8AD8C5646DF2759E4303C87 /* resource_name.upb_minitable.h in Headers */, - 356EBC3079525286C2ECAB9A71BC4664 /* resource_name.upbdefs.h in Headers */, - 364D6C98AE610F2C8CC68AB8B50DAA01 /* resource_quota.h in Headers */, - 65FCB38A0BAE9FC7548FF3280463118C /* retry_filter.h in Headers */, - B0A3D0046A46D1BCBFCD9E4940BEC13D /* retry_filter_legacy_call_data.h in Headers */, - 1EAB71ECF9875373738325CB7EA26B74 /* retry_service_config.h in Headers */, - 3BDBA14EAF99A3A851C35DC38214FE54 /* retry_throttle.h in Headers */, - 37103C57A8D90A566F3C855AF74901F4 /* ring_hash.h in Headers */, - 1DE8A9466AEE21CD1BBC9390396110D8 /* ring_hash.upb.h in Headers */, - 1E0FB9586BC6E0BC3E8DC38F9709BA7A /* ring_hash.upb_minitable.h in Headers */, - 806415880FB57C58EE2F210930652F9F /* rls.upb.h in Headers */, - 484794AF46820919822D0AC71D6EA369 /* rls.upb_minitable.h in Headers */, - 0162F5294AF604BA109F967A1C9566B9 /* rls_config.upb.h in Headers */, - B190E23E4A69A95CFEB8291F2E3AC7F9 /* rls_config.upb_minitable.h in Headers */, - B7AA38BBFCF3E962AD1A0854F38BD755 /* rls_config.upbdefs.h in Headers */, - DFC3C714F12CDA309F85FE1D7774A76F /* round_trip.h in Headers */, - F174C9564A1476DD704EBC05D059A4B7 /* route.upb.h in Headers */, - A5862E505E77B39E29A0F6B4AEB00C1C /* route.upb_minitable.h in Headers */, - 9B5D98204EBADC889108FBD981705ED7 /* route.upbdefs.h in Headers */, - 106F9DA502ED583F81D863260F95C40C /* route_components.upb.h in Headers */, - 4EAB572A93F5A316E720E0B08B8DD247 /* route_components.upb_minitable.h in Headers */, - 7EEAE54BBBFE450F79B64367070A00C5 /* route_components.upbdefs.h in Headers */, - E964A7AB9B1736C7AD8D8C91686EB1C0 /* router.upb.h in Headers */, - 3042CD62CC137547772C5FC615E09961 /* router.upb_minitable.h in Headers */, - C2F7BFE763B30DD90D2F9C324DA971AA /* router.upbdefs.h in Headers */, - 671609FB160D18B5A898ADCB166B2377 /* scoped_route.upb.h in Headers */, - CD05AB666F0AD62EB572F70E215AD05E /* scoped_route.upb_minitable.h in Headers */, - C633EDB48AC37B26453AD605A3B98EB8 /* scoped_route.upbdefs.h in Headers */, - 9F114A1E73DE50508AE5A96F78F1351A /* secret.upb.h in Headers */, - 96CB94BAA9AED5C98075EC1E315AE55E /* secret.upb_minitable.h in Headers */, - 745E5E41A41D60320B20EC640A493F08 /* secret.upbdefs.h in Headers */, - 43DCA595ADC1B33E1319F276B1749001 /* secure_endpoint.h in Headers */, - 61A9DE87A9DE8A4E434493A1CB1D3C18 /* security.upb.h in Headers */, - F02E1A34462EF4362E57D9CB046BF842 /* security.upb.h in Headers */, - 62F5353D58D31AB48C3CC329F527F391 /* security.upb_minitable.h in Headers */, - E3AC8ACC1CD3080E1E30640A758E7B78 /* security.upb_minitable.h in Headers */, - 523C750DFCC3012EB318B038246BE70F /* security.upbdefs.h in Headers */, - D18E982228C4E5CADA1A201ADB586A5D /* security.upbdefs.h in Headers */, - 1CAC484100F577FF3E1011EE747109C7 /* security_connector.h in Headers */, - 7B6C35C6508668FC0F47A48CF6094A60 /* security_context.h in Headers */, - AA7AC6C59B5D7815ABE0287350DFACB2 /* security_handshaker.h in Headers */, - E8910C47F69B9BFF00781BF7B9B8695B /* semantic_version.upb.h in Headers */, - DE6C475960C0D761F52CD8C05B0C484B /* semantic_version.upb_minitable.h in Headers */, - 76B11DAF17F754925EC2A857D8E6C320 /* semantic_version.upbdefs.h in Headers */, - 5750297EC66C2DB73C811801134891A5 /* sensitive.upb.h in Headers */, - 76172B7D9611228F8029542159722EA9 /* sensitive.upb.h in Headers */, - 39618920B95912D946E9DFFD3F24E4FD /* sensitive.upb_minitable.h in Headers */, - 0F24CC06B7C937551B789BC5E5DDE44C /* sensitive.upb_minitable.h in Headers */, - 8F3474F53E24748CA79972917A547DC9 /* sensitive.upbdefs.h in Headers */, - A0E9B6C32A8FB2254009F0721E2A4596 /* sensitive.upbdefs.h in Headers */, - B8EAA2BA4BE274B6CBFDB52787303843 /* seq.h in Headers */, - 2EF8A9A38693E624F2F7AB0336A462F6 /* seq_state.h in Headers */, - 5C6307526AA9FB3CB0A0A88CE0361BE1 /* server.h in Headers */, - 810CABE51CD7D2B7C25E292AA49DF5B7 /* server_address.h in Headers */, - C663E5CDAB0426BB5647C07E636152CE /* server_config_selector.h in Headers */, - D692F59F073B7B59D9DF4BBCD99F70B2 /* server_config_selector_filter.h in Headers */, - 869CBF8F577199843CD15FCDBF3F6EFB /* server_info.upb.h in Headers */, - B7FF9AD88B29F8EBB73482E2D177501A /* server_info.upb_minitable.h in Headers */, - F998255F1120C92E832F48533D0F7E6E /* server_info.upbdefs.h in Headers */, - 15B7790C66DFBB344D4E442CA39364CE /* service.upb.h in Headers */, - D8E377F9E27A1B82C05D644736F1B148 /* service.upb_minitable.h in Headers */, - 20B9D8091B4E42E958FD41CE6355C5B9 /* service.upbdefs.h in Headers */, - D4CCE7B6163AC0000F8D2CD50050F3B3 /* service_config.h in Headers */, - 069716848E4F5C846E6CADE876169687 /* service_config_call_data.h in Headers */, - ABBB60C17132B2129EB9A45020BD2863 /* service_config_helper.h in Headers */, - 750CD219CC4E0AFD3643024352703D66 /* service_config_impl.h in Headers */, - 81F83A25CB77BC46E297B2B22BB0AB34 /* service_config_parser.h in Headers */, - 22E4D7447AC49CC6DF867A9603124DC9 /* service_def.h in Headers */, - 7C39AE23F582648A42A3511D034397CF /* service_def.h in Headers */, - 40DBC677E11B693288E3966272728110 /* set.h in Headers */, - 47E1009E160881B1E9CEDB6A64725E5F /* shim.h in Headers */, - 78157AFEAE04E6F76053F01F7E2F5A30 /* simple_slice_based_metadata.h in Headers */, - B92614E37D3E7F8B5ECEA8D3F2D271C0 /* single_set_ptr.h in Headers */, - 0CFA2EF351EDE593C836E5F85C8522A8 /* skywalking.upb.h in Headers */, - 9E3B585E1452A4E07B643CC6D0B7DB99 /* skywalking.upb_minitable.h in Headers */, - E90D8B5902698B932BD5A796B045EFB7 /* skywalking.upbdefs.h in Headers */, - C9DC3597BFB0E779D113F496D72DE397 /* sleep.h in Headers */, - 350EC299D10EBD84AA4EC054172EAF1E /* slice.h in Headers */, - 8A3645A90E51B485BE4A5CE7274D5169 /* slice.h in Headers */, - 261A17AE9CE8F94BC35B90F34A8BAE67 /* slice.h in Headers */, - 6E0D97306E0991370AA17B911FB4C12E /* slice.h in Headers */, - 4638584AC1B30E4F2ABC6E905F7EAE80 /* slice_buffer.h in Headers */, - 92A9773DF0F45ACE3F91DDE77A92919B /* slice_buffer.h in Headers */, - 277895CE3FA07C265E4AE809221D3B5D /* slice_buffer.h in Headers */, - CC8C261FE2CFF4C337EE0502A185B97B /* slice_cast.h in Headers */, - 6EEC979F6FC40F0BDC7915C04D560419 /* slice_internal.h in Headers */, - E0664ADA5D8F9E52868A5BB405B0BC52 /* slice_refcount.h in Headers */, - 59210C0E294EF250C12085E6E9AC6DD8 /* slice_string_helpers.h in Headers */, - 648CFEF87E94A945CAA79BEB661971BE /* slice_type.h in Headers */, - 362CDF8655742105A5ABB42A559A770E /* sockaddr.h in Headers */, - 2096EBDF947F59EC8A1F02ECC04F954F /* sockaddr_posix.h in Headers */, - 9A673D7F07C23237D5F43CFC615B522A /* sockaddr_utils.h in Headers */, - 1D09D64E239B44581E6E697EF6D7E7FB /* sockaddr_windows.h in Headers */, - 51BC6CB6D398F2F60FABE575183D3595 /* socket_factory_posix.h in Headers */, - 153C5C09B0D9821DA38EDE88DC431770 /* socket_mutator.h in Headers */, - 50E46D4BB34BA24FE0F0ADF7398795CA /* socket_option.upb.h in Headers */, - 1C2FDC2AD5748B672D9F888FC2898C71 /* socket_option.upb_minitable.h in Headers */, - 72A43DFB99D09694CD458D47286E6A45 /* socket_option.upbdefs.h in Headers */, - 070C98B3516E748AC5C2007E0DFDF243 /* socket_utils.h in Headers */, - D1A50B96FAA55900AFA58CC6D09785A7 /* socket_utils_posix.h in Headers */, - 888FE92912F2930E5B33BF4D1AA4B11E /* socket_windows.h in Headers */, - C2B95103103827AA15CC5E4CAD2AFB79 /* sorted_pack.h in Headers */, - B003A65D933A2CF2CA174B3D5B87E3B0 /* sparse_array.h in Headers */, - BEC111502522BEE528BB91A51F4C0010 /* sparse_set.h in Headers */, - C2CDC19C0EAFE0BD5883EC1261F6B56A /* spinlock.h in Headers */, - 6DF2002A0824A310AC5B922F960D1105 /* ssl_credentials.h in Headers */, - 6952B2943561C9F4CA1AD4F392E3C5F8 /* ssl_key_logging.h in Headers */, - 9401E2F6D86AF103824C1884BDFBD21B /* ssl_security_connector.h in Headers */, - 8D95598DC12BFBCF4F07D9D46248A9D6 /* ssl_session.h in Headers */, - 7D2E54FA38C869DEBDF96D5DA18C5CB1 /* ssl_session_cache.h in Headers */, - B10019BA846CD84137A7126DC0FB74D3 /* ssl_transport_security.h in Headers */, - 876200961D8A06451812658DCAD7B9F0 /* ssl_transport_security_utils.h in Headers */, - 634889EE7AFCAAD285BB24CC0F04C9A4 /* ssl_types.h in Headers */, - C715876DDB4811FBDA2FD4C68DF2B856 /* ssl_utils.h in Headers */, - 4334DA7AA8FA123F8829B611FA955E8A /* stat.h in Headers */, - DBE1A9E326AD42BEC9507AFE0CD58817 /* stateful_session.upb.h in Headers */, - AC6BAB2CA826592D47CE7E8274DDF119 /* stateful_session.upb_minitable.h in Headers */, - 84CF12DBBA8165C4ED4C48F6F40A6BB2 /* stateful_session.upbdefs.h in Headers */, - 9FB53C9AF873C744939600C68E91F456 /* stateful_session_filter.h in Headers */, - A6CB83A340D09F71B294082CCC47FD9B /* stateful_session_service_config_parser.h in Headers */, - C3C6C5C56F58F6E751C8158AFDE6EC0C /* static_stride_scheduler.h in Headers */, - F98E57A5E2C382D69A46288F096B6A56 /* stats.h in Headers */, - 7F85DD1118BB00ABA6F9093263C72EE6 /* stats.upb.h in Headers */, - 1A1831818C297CF2DCF9A48DB3716262 /* stats.upb_minitable.h in Headers */, - BCB48471E87BDEB0969D238E69B736B4 /* stats.upbdefs.h in Headers */, - 8843761FB4DC3FFF52ACD69BDAC7910D /* stats_data.h in Headers */, - 07FEFC1A35CD498A988A06FF4FFE35FC /* status.h in Headers */, - 753B51D057023EEC8484D6F3BCF36CF6 /* status.h in Headers */, - 05DEEBF18EFAB8D00DC69FF011B17808 /* status.h in Headers */, - 0580A9FD2CF7E9B89191AA5629F2CC1E /* status.h in Headers */, - 858E79248858D9313CE6DA5D4C031595 /* status.hpp in Headers */, - FF43684731CD9F53B25049B8BA1D0F52 /* status.upb.h in Headers */, - EF0913BC8DF69A93D7A9C1AD9487E4DA /* status.upb.h in Headers */, - 9B5A9D56E8053D182AE6F61820071EB2 /* status.upb.h in Headers */, - 12BB888F85D582CDC984A2B0449149EA /* status.upb_minitable.h in Headers */, - 687FF5D6BE63156E85AB08421D751947 /* status.upb_minitable.h in Headers */, - ABE9E41BC84B9DF4077D9880CD24ACAC /* status.upb_minitable.h in Headers */, - 6694DC0A098224E3F538869B139DDBAA /* status.upbdefs.h in Headers */, - D7B692D7AA60AD076D7F38A7FE51F73B /* status.upbdefs.h in Headers */, - 97A1EE006FFA03B8C207C27E7863526F /* status.upbdefs.h in Headers */, - 69D93B524EE896B3BB2538545F2BFA08 /* status_code_input.upb.h in Headers */, - 163865649A33BA81CE8989423905230A /* status_code_input.upb_minitable.h in Headers */, - 7689076732E300DF98CE5365B4F90648 /* status_code_input.upbdefs.h in Headers */, - 92B66F90B4C85227B4A7795182DAFDA7 /* status_conversion.h in Headers */, - 13ECFB15F0B4F31D90EB79B5DEEA8DF1 /* status_flag.h in Headers */, - C99FC657CF998A7433B570CBBB48EB7A /* status_helper.h in Headers */, - 7675F86AEE1597E6B4D11A928B56D0C4 /* status_util.h in Headers */, - FED5F3A0CF13DB021F61B5E31F58A727 /* stdout_logger.h in Headers */, - DF551469451B01A866F5B1D754B1110F /* str_table.h in Headers */, - 994D306D89E3CC75F0808EE95697B411 /* strdup2.h in Headers */, - 9B698C9FED969BC077DEE617FF861090 /* strerror.h in Headers */, - F1E08B376B4FC313DAA5C393F24273CC /* string.h in Headers */, - 1F5610456021ECB615EBB868CF29F189 /* string.upb.h in Headers */, - BB0F76B30954B70FE25CEF9E553D858E /* string.upb.h in Headers */, - 4CBC29E5EC107FBEE10C193D86902A9A /* string.upb_minitable.h in Headers */, - 8AC2BFD244FCD0ED5BE528AA1595A3AA /* string.upb_minitable.h in Headers */, - CD2BE40DB859C8C95053FC51F57D4BE4 /* string.upbdefs.h in Headers */, - 28B7D285E3CA44CCECC3D0154BAE4847 /* string.upbdefs.h in Headers */, - 40F9D4B0F23FBA99E7D3098C3A4EE2B9 /* string_util.h in Headers */, - 2B2D53DD4C45B70FC7A67FAA74A5272C /* string_view.h in Headers */, - 8D0DC3E2E78FE99EB31A7235ADEA7F2E /* stringpiece.h in Headers */, - DCB85585AB10012E33C0D49A67187F9E /* strtod.h in Headers */, - 4FAA3F57D96BB177AAF4F9948929A64F /* struct.upb.h in Headers */, - 6B642A567082F20C29F09CC2AE6609EE /* struct.upb.h in Headers */, - 214C1D9F3642831F6C65BF99A46FE4E0 /* struct.upb_minitable.h in Headers */, - 6627C62EE2359CEF3D1C19F477133F21 /* struct.upb_minitable.h in Headers */, - CE8A69B21E9121007CAB01139A024F51 /* struct.upbdefs.h in Headers */, - 6ADCFCED88DA80826C5A08B35F2BDE02 /* struct.upbdefs.h in Headers */, - 7082F7EE413A95928CAA8C4A7FE432E4 /* strutil.h in Headers */, - EF0C2C4C465E71529C8843B89E0DCE91 /* sub.h in Headers */, - 388D874AA209FDFAFB5776EA2CE3E0E2 /* sub.h in Headers */, - 1C0981EE85C8C8106C5FE1C9A6D58287 /* subchannel.h in Headers */, - 81B2EB8687F00F5FC11C7BAD87919FEF /* subchannel_interface.h in Headers */, - 704A58C6EE4A235CD80359597A50355D /* subchannel_interface_internal.h in Headers */, - 7CE0D7EFF04871ED0A5C82045A7258C7 /* subchannel_list.h in Headers */, - 19C028651C9D5BEA3B20FB1C5FF5DFFF /* subchannel_pool_interface.h in Headers */, - B3BDEEBF36DF5CFC222FCE77ABF7B39E /* subchannel_stream_client.h in Headers */, - 4B4EBC1B6A82912EAC1D19E3664AFBCD /* substitution_format_string.upb.h in Headers */, - D2D2A788DC3B9579E294787A13CCD7C3 /* substitution_format_string.upb_minitable.h in Headers */, - 9D11C0FDCCBCF62F12DA1EFF54DA65C7 /* substitution_format_string.upbdefs.h in Headers */, - 42BC8F307B18C185DF09DDE7D153CAF5 /* supports_fd.h in Headers */, - B1578EF0C8A62EDA89D81383512BA212 /* swap.h in Headers */, - 36F4C18FCEA169CA40A65760541B6B9A /* sync.h in Headers */, - E29DBE1BAE1D3E77892AABA235714551 /* sync.h in Headers */, - F74B1565871A8647C829ACB1131C717C /* sync.h in Headers */, - 7B68DBA46FB600F8217C32AB8DB98EEC /* sync_abseil.h in Headers */, - 1F72C14B1A31DA0A241B2CCDAEB29DCB /* sync_abseil.h in Headers */, - 628FAC5CCFF24F63B98B1EC8C09EE2A1 /* sync_custom.h in Headers */, - FF2178A79A83BC3530796DB59E1BEB0A /* sync_custom.h in Headers */, - 0751A188D18BC9BC87F3B8D1C5EC0556 /* sync_generic.h in Headers */, - E25ACF639FB4F673765E002E86824A95 /* sync_generic.h in Headers */, - 6A0B340C0AC50132037FD78CCCE9A19E /* sync_posix.h in Headers */, - A9A556CFCE34C7944964D5D317621D8D /* sync_posix.h in Headers */, - 297E19E62FE5FBF3798F89C02997A45E /* sync_windows.h in Headers */, - 6882864D69F96A13A30764069A4D0EB8 /* sync_windows.h in Headers */, - 5159531F5C72C4EE8FDB4F9ECC44E3C0 /* syntax.upb.h in Headers */, - 6172ACC86F6315FF1FA4D13A68A817EF /* syntax.upb_minitable.h in Headers */, - 0EE1E6C21D8C5239949103DCC5B6161D /* syntax.upbdefs.h in Headers */, - 540AAFEFD183769027EECF929AF255AA /* systemd_utils.h in Headers */, - 33C7EE176C7BB89DEC456A8CA6CD5AB7 /* table.h in Headers */, - C103882D22C4A72EFC4D6998D51C0EC6 /* tagged_ptr.h in Headers */, - C70CFB07263FEDA67B2D7D12623B73D8 /* tap.upb.h in Headers */, - 371A52EC7220814CFDAABF8608A92334 /* tap.upb_minitable.h in Headers */, - BCF2267921D95E67B30F0D9DD6D37DF9 /* tap.upbdefs.h in Headers */, - 454FB47A35DB3F2BFDFF4136C3BF07AD /* tchar.h in Headers */, - CB72DA35C7B19137DDE7542F9DC28C6A /* tcp_client.h in Headers */, - F8B05E4A5C61151447E77954A7DF0463 /* tcp_client.h in Headers */, - 7C7EED1C0CADB40ED6935A22B3E629B6 /* tcp_client_posix.h in Headers */, - 5684864B31E0E2CC891307D6B80DB22E /* tcp_connect_handshaker.h in Headers */, - CE3EDC6B15562F82A478B87678015A17 /* tcp_posix.h in Headers */, - 06FE6B282F222B0B93B70F06CBE01003 /* tcp_server.h in Headers */, - D620C719357382D8AE64DF994F5C52CD /* tcp_server_utils_posix.h in Headers */, - BDDC5777863E80AE3BF7B0BFF47C064A /* tcp_socket_utils.h in Headers */, - 6D099EDE97A0D4CE57A46F8C2026FCC3 /* tcp_socket_utils.h in Headers */, - 47910717CAC423D5DBA6D8CE7F07410E /* tcp_tracer.h in Headers */, - 7BA51DC1CC48BA8D76F99482F7457282 /* tcp_windows.h in Headers */, - 70B078B4255E36F6A9F7D7CA24294480 /* thd.h in Headers */, - 67E28BB77FF980AACC83F58826C8333C /* thd_id.h in Headers */, - C4E0F7D69684FED006B4F9EC093DB082 /* thread_count.h in Headers */, - 27253B2D61AC99B84033C6738689DFA9 /* thread_local.h in Headers */, - 7E152FD279299EDE5899AF38A14252E1 /* thread_pool.h in Headers */, - A084E3F1ACC752EC1978BF0BCB4D47A8 /* thread_quota.h in Headers */, - AFDDF8E8BC4879C1AA28228FD19C5C63 /* thready_event_engine.h in Headers */, - BE8CFC3E344199DD186B157BF59FB9AB /* time.h in Headers */, - 459E247109D46F3E7832DD40ED0F2EC6 /* time.h in Headers */, - B80198AB2237CCEAF73933F9FA8980CF /* time_averaged_stats.h in Headers */, - B561ADF6E0758FD42F033EB33C00FBF8 /* time_precise.h in Headers */, - DD7522EBF94E614DED0E433869282ACB /* time_util.h in Headers */, - 93836FF427EEBA6CE0435125AE7952E5 /* time_util.h in Headers */, - 4DAF418E07C2B7600231957B7768B290 /* timeout_encoding.h in Headers */, - 3B0A866A1D702B27FA7BD14D7E5166F9 /* timer.h in Headers */, - 15972D44A268CDD6EA906BA1EF18B0CE /* timer.h in Headers */, - 766E980F535BBC0260C2CE5290888B2F /* timer_generic.h in Headers */, - 244B90D6C869BF069C695D1A5912E4FB /* timer_heap.h in Headers */, - 337A075EDC1C70D4AFE349B839221F5C /* timer_heap.h in Headers */, - B02AD5F494EC86B27BB589B7532B257A /* timer_manager.h in Headers */, - 4E5F09B157D3B55F283E81A0D5E48CF3 /* timer_manager.h in Headers */, - DDB91501D3FA0835BEFE8354D39E63F3 /* timestamp.upb.h in Headers */, - 4D47FE7202705D610BE8B84182626FB7 /* timestamp.upb_minitable.h in Headers */, - D376D43056E1D1447D651C2752CF6F12 /* timestamp.upbdefs.h in Headers */, - B0F16FE856B8D0011A47B2896EDB34F5 /* tls.upb.h in Headers */, - 571CA51D21B0D9CDDFDF0663FB86D8B1 /* tls.upb_minitable.h in Headers */, - 9EC8ABF0DA7B2932324C142C7D181764 /* tls.upbdefs.h in Headers */, - 60AD4F224929B9CA19DE0705A4750927 /* tls_credentials.h in Headers */, - EBFEEC58E626C6F5F9FA3EC0CC63E1B9 /* tls_security_connector.h in Headers */, - 2AF68A83513000E1767AA3BEC1A3C01C /* tls_spiffe_validator_config.upb.h in Headers */, - D753C0BFDC5E3875A6A3AE5038173025 /* tls_spiffe_validator_config.upb_minitable.h in Headers */, - C0BBAB91109EDB1BDDEF380D16674BC3 /* tls_spiffe_validator_config.upbdefs.h in Headers */, - 9C2FFAF0AE44AC20FA59A6093B48A739 /* tls_utils.h in Headers */, - 520405F72B6FAFF55CCBB9D14919E61E /* tmpfile.h in Headers */, - 45E3BEE98420B784C88E37ACF069D40F /* token_bucket.upb.h in Headers */, - 9B64F8DC3193DEB59FA73D3D4562AB6C /* token_bucket.upb_minitable.h in Headers */, - 80B70414B21E5743CA3257DD70689522 /* token_bucket.upbdefs.h in Headers */, - 87D09F021413DE7A8A85914328EAB35D /* trace.h in Headers */, - 9AF98271E9D783EB14324479C8790E98 /* trace.h in Headers */, - 6880E1FE7DC14CD14C0DE09514EA4F0A /* trace.h in Headers */, - 072B7A19A440082218B1FC43F0CBB271 /* trace.h in Headers */, - 358D81CAB922ED5654ED2D951BE27CAB /* trace.upb.h in Headers */, - E3EE80AB5DD098AF936CD9EE24F724CB /* trace.upb_minitable.h in Headers */, - 37AD4071E17DEBBA98141C29CE6E7E91 /* trace.upbdefs.h in Headers */, - AD294D9F1D22D9C7778948FFCEC9804B /* trace_config.upb.h in Headers */, - C614D455D69DA8F5952A421BF91E4D74 /* trace_config.upb_minitable.h in Headers */, - 380206F250CF0186998A83E5E2ABF909 /* trace_config.upbdefs.h in Headers */, - 85627B8B58F9F3682BF8625E03EBEC3F /* traced_buffer_list.h in Headers */, - DB45AE1318A6F112F2631D9D300D6442 /* transport.h in Headers */, - 50FE46268890B217EA2EE27805207361 /* transport_fwd.h in Headers */, - 734CEED865C68D12D9196EA52794C674 /* transport_security.h in Headers */, - E8DB81EE2C0335918E39E9A5ECB5E7D7 /* transport_security_common.upb.h in Headers */, - F3AC781A27E9AE4967C3DB0FFB55BBCA /* transport_security_common.upb_minitable.h in Headers */, - EFA9E59AE79DA70D94A9CDABE37EC4A6 /* transport_security_common_api.h in Headers */, - DF7B2A3C9B1A81D32F8F26BF2702B6C0 /* transport_security_grpc.h in Headers */, - D499B4892822A0D436BA8041F82CC9A0 /* transport_security_interface.h in Headers */, - 5189ECA2C13BA21E299D5850A9F19A15 /* trees.h in Headers */, - 830F885D394D63B92A9D967C2EF97965 /* try_join.h in Headers */, - 128FB4F8D9D581722A236BF577FD671A /* try_seq.h in Headers */, - 19E0294826EBC5B5687EE20ECF89DDDD /* tsi_error.h in Headers */, - 5F74921FF8059114AE301F218EDD5F51 /* type_list.h in Headers */, - CCF35CFB78922E452B7ABFA120D27BCD /* typed_struct.upb.h in Headers */, - BBCCF94022AE72627A8B9F66042DB00B /* typed_struct.upb_minitable.h in Headers */, - C3F1B4E080A023788D9C6BAF4F9C3EE7 /* typed_struct.upbdefs.h in Headers */, - BB06B3A8E67BF565DF520CCBFDEE5A91 /* types.h in Headers */, - 8349A1BA4493FF8F41E53F477F2BB399 /* types.h in Headers */, - 615BC27FFFCB0868D8D9B1E2DAEAE0F8 /* types.h in Headers */, - BFF0C1B97FB1CDA313E311959DBA0120 /* udp_listener_config.upb.h in Headers */, - B2E112D91CADF988F409F83C9FE4D965 /* udp_listener_config.upb_minitable.h in Headers */, - D5CB3A4DAE2DEFCBBA1AE3C0033611EE /* udp_listener_config.upbdefs.h in Headers */, - CDE4A0F71F57353EF75B5E4F463D7922 /* udp_socket_config.upb.h in Headers */, - 9F4B7E1AAD1FDD452B25F9EC33759FC2 /* udp_socket_config.upb_minitable.h in Headers */, - F64BDF5CFA173B10117D594113103AFF /* udp_socket_config.upbdefs.h in Headers */, - E693B51C8BC10F8702BBA5CDB18126FD /* undef.inc in Headers */, - 1ABF53F8C37F9409025C358C8BDA4DD5 /* unicode.h in Headers */, - F3758A616CEEA9359ED0BEAE13E60113 /* unicode_casefold.h in Headers */, - 9CFCF7870B5A0EE2429EC2FBDEEC1170 /* unicode_groups.h in Headers */, - 7514CDC69B1769AEB5D3BBDE5A19E0D7 /* unique_type_name.h in Headers */, - C313950C019FC019E41BC7E9089FB3A9 /* unix_sockets_posix.h in Headers */, - F97CC0C30672264F976C79CCDEAF622B /* upb_utils.h in Headers */, - C0596DA2B3CCD0C82C28FCF265AE3CDB /* uri_parser.h in Headers */, - 03384EC73DF0268BC4DEEBAF69200DB4 /* url_external_account_credentials.h in Headers */, - 4F38ACAE4D407957DC20E5236AD00891 /* useful.h in Headers */, - D4B688FAD2FFE03F08A4F3CB20AB9174 /* utf.h in Headers */, - BBE055E8E8E5F63D87029398F4A81DA9 /* utf8_range.h in Headers */, - 5CC25BEBF5218F7DCF3B68258BA8EF0B /* util.h in Headers */, - 62D16A10271463FCF3E8CAC3F03D7EB5 /* utils.h in Headers */, - 9B1442FAA7CAE4672E5667C0FF6942A1 /* validate.upb.h in Headers */, - 0F600BC7589A47AAAC3F21A409AFCA84 /* validate.upb_minitable.h in Headers */, - 7BD153A315AF4E69736D82C665D15461 /* validate.upbdefs.h in Headers */, - 9D731E969A20C54804377BF86FBE07C1 /* validate_metadata.h in Headers */, - EF69725017CF82CC62107E2A54E7FC7D /* validation_errors.h in Headers */, - FBD7F19996335B5DA0013DE6F5270738 /* value.h in Headers */, - 7C17D20F5AD838D6D2E41C853E58BB65 /* value.upb.h in Headers */, - B9276034AE6ADC47DE5D728C049CF9AA /* value.upb_minitable.h in Headers */, - F2183FD9ADBB0682C47B8CF9BB513702 /* value.upbdefs.h in Headers */, - 594D63E4B0BF133279A2512BF9A3CE9B /* varint.h in Headers */, - 62EA77EEAF203D92176E689414E3AAFF /* versioning.upb.h in Headers */, - 28F1E41F1CB1C0C32CBBB7BB42D6E168 /* versioning.upb.h in Headers */, - 80DF6CE8AC3D79C227B75C6D4B27C588 /* versioning.upb_minitable.h in Headers */, - FF570F57795F054F915C343600AFD517 /* versioning.upb_minitable.h in Headers */, - 4075071C4BD1265EEBB2F4DEED63AB62 /* versioning.upbdefs.h in Headers */, - BE0DF4E60E6563DC318F2A4925B485C3 /* versioning.upbdefs.h in Headers */, - A75E7AE25ED78157AD1863C671BA3EB3 /* vsnprintf_compat.h in Headers */, - 68F3BCCE522AFA868A639AD8F3D3A5B9 /* vsock.h in Headers */, - ECDDF642DE575165F6C84D2D74CF7992 /* wait_for_cq_end_op.h in Headers */, - E6950ABA062B8A4B506EE57FFECB108D /* wakeup_fd_eventfd.h in Headers */, - 18C0D49B630D13FB72AD6E1FF7F19BFF /* wakeup_fd_pipe.h in Headers */, - 20ED2887377C4872F3FF2AE0CB208406 /* wakeup_fd_pipe.h in Headers */, - 4B37B65BC002753EE46AFBC11D74F3E4 /* wakeup_fd_posix.h in Headers */, - FFA454F88C222D8B669C2363F902B89A /* wakeup_fd_posix.h in Headers */, - C6E266D56B4C631F38451A89378D75D8 /* wakeup_fd_posix_default.h in Headers */, - 0EF69767AD30B53DAAD8CAF798D4E562 /* walker-inl.h in Headers */, - 3508063C504C19FF66AB41FE4CBE8A1B /* win_socket.h in Headers */, - 8A0276FBDDECCAE2B354BFB170B894C9 /* windows_endpoint.h in Headers */, - F52FE4704CEB36936B47F8B4D2B8DE0B /* windows_engine.h in Headers */, - C41AAC4B5B4655E60371DD162C7904E3 /* windows_listener.h in Headers */, - 8B106F67C8C7D9E862852180F9212B57 /* wire_constants.h in Headers */, - D236ED815DBF89F3E4787EAAB74988E9 /* work_queue.h in Headers */, - 89AC1FCAF0EC478FA350FC4E650A0B8B /* work_serializer.h in Headers */, - C8128138D18CD7578FB1656999090EF1 /* work_stealing_thread_pool.h in Headers */, - 3E258034B647542F78DF83BAE48DF995 /* workaround_list.h in Headers */, - 9DA1AE2FE572A457B176F057482C527A /* wrappers.upb.h in Headers */, - 5839616547D480385485FDF4D9EA24CB /* wrappers.upb_minitable.h in Headers */, - 7D18597E143361B1722B903ABC91FBA8 /* wrappers.upbdefs.h in Headers */, - D06A9468529179CE34DDEAD205235015 /* write_size_policy.h in Headers */, - 7094EA12A0E6457F260CAD2C700FD02A /* wrr_locality.upb.h in Headers */, - EFC8FCC5B6C5F2676582498D8C219FD8 /* wrr_locality.upb_minitable.h in Headers */, - 37DFC1912D9217C977E7C2FA6FE24060 /* xds_api.h in Headers */, - BB51EA9BCF8540BA787A254179BB97C1 /* xds_audit_logger_registry.h in Headers */, - 6B867E1DB3C9BFA74FD9225DB8A143AC /* xds_bootstrap.h in Headers */, - EDBA001928BBC18330DE0CE64B76935C /* xds_bootstrap_grpc.h in Headers */, - 1E176A66D8825C5BA84DE8E3795C3E3F /* xds_certificate_provider.h in Headers */, - 6E0D4F56EB773949EAEC177798EF9AFF /* xds_channel_args.h in Headers */, - 23A4E0ED088982C5D2341090C365C19F /* xds_channel_args.h in Headers */, - A99F841BF3560DDAC06573D0D3D4AF7E /* xds_channel_stack_modifier.h in Headers */, - E3F5C08BEB1CDF9C4087A204AE56586A /* xds_client.h in Headers */, - 11A112F83F9C7C536D2D63C58131716D /* xds_client_grpc.h in Headers */, - CC664ACD30E0F5F831C0D74E30C1333E /* xds_client_stats.h in Headers */, - ADDF53DC143928531C10B712077E94AA /* xds_cluster.h in Headers */, - 42688633F09940CA54E53C7A616EC74E /* xds_cluster_specifier_plugin.h in Headers */, - 49E0EEB1AB1FE94607D63F5556B42434 /* xds_common_types.h in Headers */, - E6F09E86146A00D3D8FCF642D6379278 /* xds_credentials.h in Headers */, - D6467EEFEB379DB3BCE26442A2109EF9 /* xds_dependency_manager.h in Headers */, - 25E6DA4863788CC57D099F7C6E1866B6 /* xds_endpoint.h in Headers */, - 15BB2C09F1852F4F26639ED81A3F7271 /* xds_health_status.h in Headers */, - 1CB06F1C0C95677AB5BA81251A74F084 /* xds_http_fault_filter.h in Headers */, - 7EC632B148F27C406163FA91030729CA /* xds_http_filters.h in Headers */, - 51342F026D671768D163B903BD381038 /* xds_http_rbac_filter.h in Headers */, - 367EE327769CB1AEEDDD8BAFF5A7AA3D /* xds_http_stateful_session_filter.h in Headers */, - 6E0AB4E509F1929D1988AC5484F06DC5 /* xds_lb_policy_registry.h in Headers */, - 336851FF21BE0DA33EFBCD402C191E81 /* xds_listener.h in Headers */, - 5FD8BCDA21BA635EA374B2A9758FCFF7 /* xds_override_host.h in Headers */, - A423555C960931037009674266C71F0C /* xds_resolver_attributes.h in Headers */, - 148046131C01991B55860A1A4F6B1AA1 /* xds_resolver_trace.h in Headers */, - F3F38B5338576BA51AA4893EF91D0A6A /* xds_resource_type.h in Headers */, - A09F46CCC2440CA17B26D54F13A45E93 /* xds_resource_type_impl.h in Headers */, - 80A1EEFDEDBE20F93A866F634EAFEB5A /* xds_route_config.h in Headers */, - 74C2B526ECE5AB04FC17ACD627169948 /* xds_routing.h in Headers */, - 293036F11D08889F59D3797BA8512DEB /* xds_transport.h in Headers */, - 08146CC5CFBBDAA34A55C7D67147BC4C /* xds_transport_grpc.h in Headers */, - 7FB18BA3640D99BBA52560FEE2E4CDE7 /* xray.upb.h in Headers */, - 03EC649177614829513429C778E2BDD3 /* xray.upb_minitable.h in Headers */, - 8463E5F2B877DD6E2458CD5AF38182C0 /* xray.upbdefs.h in Headers */, - 6C18E56A5F57E88F656DC075CA2FB758 /* xxhash.h in Headers */, - 28A2C18E060673594C55EA201574A5F3 /* xxhash_inline.h in Headers */, - ADBF72BC32A611A92FFBF803C047C7EC /* zconf.h in Headers */, - 87812F82197C05F2FE417BB739CD6FC6 /* zipkin.upb.h in Headers */, - C8FA6877DA64880D6F865296983D5DA5 /* zipkin.upb_minitable.h in Headers */, - 04136C7A84D76C01E0FF36F90DCC6F0A /* zipkin.upbdefs.h in Headers */, - 568903EAC6AA0A104023D69839701450 /* zlib.h in Headers */, - CC13FF022D0B6EC8B0D0478E416F9158 /* zutil.h in Headers */, + EBEF962014C2CB0675C7BBAF51AB6F4A /* FirebaseSessions-umbrella.h in Headers */, + 89E7710746BDE2D9E092CE1CB92A1B1F /* FIRSESNanoPBHelpers.h in Headers */, + 19940D07B402F635610185A62A158045 /* sessions.nanopb.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -35160,6 +37409,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 54FBFB309E6AC28C508ABC096C2A55C0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1B9F6E15B46FED765CE0FF6F11185947 /* PromisesSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5FA4790A32ECD84F2CEA55509107BD0A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -35168,32 +37425,286 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 67ED91098CEF07644203FB7AA11CF4CE /* Headers */ = { + 6821F288DD8EA699F444F3D56D9A152B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 850D95DB9EFA3077F7589E8F7D200AE0 /* FBLPromise.h in Headers */, - C6885D24A61CC1144B81F2A502FFF141 /* FBLPromise+All.h in Headers */, - E0C37958646DC5EE6E4C0523A4661B91 /* FBLPromise+Always.h in Headers */, - 4ABA946C3CEA7DCC81D3C3EAF081A28D /* FBLPromise+Any.h in Headers */, - D3B8DD44A5F21D3F45ABC1B8750CBAC6 /* FBLPromise+Async.h in Headers */, - C6C7E0120F195C2BF00448F50890FD18 /* FBLPromise+Await.h in Headers */, - 71F10A7002E11389115AF9216FCECA60 /* FBLPromise+Catch.h in Headers */, - 46A10787E70FFBA35631A73C26790338 /* FBLPromise+Delay.h in Headers */, - 9E7B066AF0D68235377EA180566A21AD /* FBLPromise+Do.h in Headers */, - 75A421E9EB550B20FA4153DC07AB7BE8 /* FBLPromise+Race.h in Headers */, - 115B4108C122D87484F0D71A3E9F7D9B /* FBLPromise+Recover.h in Headers */, - 72AFE7FD02E22793C067BF5FBB5E6446 /* FBLPromise+Reduce.h in Headers */, - ACD03900A829282D401EE708D0AC009B /* FBLPromise+Retry.h in Headers */, - F5C4D0E2C02E3893267159B071178160 /* FBLPromise+Testing.h in Headers */, - F94628CE2377FD9E7025977F5753EA59 /* FBLPromise+Then.h in Headers */, - 21B6A25EF77493F553C17E384ECEB8AC /* FBLPromise+Timeout.h in Headers */, - 1F32811769EDBD922CC2953524FBBA2F /* FBLPromise+Validate.h in Headers */, - 43187786A8696F3D54F5056090F4911C /* FBLPromise+Wrap.h in Headers */, - 1319D3962F41BAB1BF566B0170B25014 /* FBLPromiseError.h in Headers */, - BAB8589D7F42418FC55998EED32F0E73 /* FBLPromisePrivate.h in Headers */, - 2B98EEB65D11443F81161AB9C8FAF609 /* FBLPromises.h in Headers */, - DBF95D953DF0C5B6324B241F5BBDF744 /* PromisesObjC-umbrella.h in Headers */, + BF3DAAE62EA4BD7AEE32E34FCEFC9D7D /* abseil-umbrella.h in Headers */, + 1922034391AD9856E31AD24A4EB38276 /* address_is_readable.h in Headers */, + 42F46C3B2577E39E4C793A7FCC36AD94 /* algorithm.h in Headers */, + 504A2AAE20DBA0091D045D871F3F5336 /* any.h in Headers */, + 25C69C9A3ABF87E8111B1B799EA2CEA5 /* any_invocable.h in Headers */, + 3A4430EF181379A823F066E83123B120 /* any_invocable.h in Headers */, + D1BB7761E39FE3A650DF90B5BE7C743F /* arg.h in Headers */, + 6A52259B723D1F6930BEE0B705CCB919 /* ascii.h in Headers */, + C7F85FEF5F07C76C211C521D5AEECDEA /* atomic_hook.h in Headers */, + 692D98C70C09F9F964CD043CB5DE1C5D /* attributes.h in Headers */, + 29457413B1B5BC1C0A896BBE2817EC51 /* bad_any_cast.h in Headers */, + AC41E07BC9888234AC6D1B9D14199C2F /* bad_optional_access.h in Headers */, + DF583ECCAA3FC210978433E5A0D4C8B3 /* bad_variant_access.h in Headers */, + 116EC8F69F0CB00A43998F16592D4B72 /* barrier.h in Headers */, + 48430A0714EF8BF9BA3EE460E4CC3E8A /* bernoulli_distribution.h in Headers */, + 0095ED03F8E86270037F571AB0E25E74 /* beta_distribution.h in Headers */, + 62194BCA15496A53A017D4428C5DFCAE /* bind.h in Headers */, + BDB8852113DC93E0E57FAC2895469089 /* bind_front.h in Headers */, + D0970BCF9CA19EA62AE9CE9BC9F5D69D /* bit_gen_ref.h in Headers */, + 0CF7745400D41832CC3FD3CF8F1BF6E6 /* bits.h in Headers */, + 7D24841F6142618903D9FE36A4AC853E /* bits.h in Headers */, + C7F8C45624AFF1AC351C32F0A775D505 /* blocking_counter.h in Headers */, + C17E5BB842EBDD335755F7352FEBAE5E /* call_once.h in Headers */, + DE0D18BF9CA85BCC3E2148D8D64FC923 /* casts.h in Headers */, + 8B5F4BD948EB3B5C451FEBC100961B4F /* charconv.h in Headers */, + C8CD7542C650AB9FB48B91D73E0ABDDD /* charconv_bigint.h in Headers */, + AEC57045254E05F6B6D08B80344CD515 /* charconv_parse.h in Headers */, + 1C6370BE1D8B5CB479F8B233FDFE4C67 /* charset.h in Headers */, + 768DB060DB70B215CF6A24ACA78F1E44 /* checker.h in Headers */, + F3220A3727B8B3E272EAD71F217453DC /* city.h in Headers */, + C4ED465703930C870E2917AE8D3301EA /* civil_time.h in Headers */, + 1A30899B6A33A62CAC97834537E0F124 /* civil_time.h in Headers */, + E38C1A764FE644C8409E0E52750B92CE /* civil_time_detail.h in Headers */, + DACCCDF6B928EA8D937D53AFFB78E34F /* cleanup.h in Headers */, + 9181D4A911A5D9DF0EB33D73844FC21F /* cleanup.h in Headers */, + 401A18CF4606C31388002981B0241BBE /* clock.h in Headers */, + A265973687EBF7536B33986149348676 /* commandlineflag.h in Headers */, + D355B44DA26425283632A4D2562DAFFD /* commandlineflag.h in Headers */, + 6A832F390911921CDD6240FF72751655 /* common.h in Headers */, + 1994DD53523B82952069C0D948385002 /* common_policy_traits.h in Headers */, + 823E04EE96EB425CD719B1650F01D6B4 /* compare.h in Headers */, + 64DC088A1E71BA3EDED492B9D970B1E5 /* compressed_tuple.h in Headers */, + 07B6AF1E12A9269B547AE5598664645F /* config.h in Headers */, + E4A2917F44799AD9731E732D56F169B9 /* config.h in Headers */, + 6579B069DA8FB2F9A05CDD63D99BA5FB /* const_init.h in Headers */, + 79B28ADB4E421E2C469B938A321A21E5 /* constexpr_parser.h in Headers */, + F7FA9D08E23DCE3E47ED459C27D3BD85 /* container.h in Headers */, + E5634996917E637CB6C19F7FD36166E8 /* container_memory.h in Headers */, + 656C3594E8DDEC4C636E0436DBA01CBF /* cord.h in Headers */, + 374C91AB6DE4E7EC11131DC5B0773921 /* cord_analysis.h in Headers */, + 7EC70861335994C7169EE708B2811E74 /* cord_buffer.h in Headers */, + EBC0470092751E5CD8BCA8E478F974B3 /* cord_data_edge.h in Headers */, + CF509186841A33F687D9F40CB0EABA04 /* cord_internal.h in Headers */, + E654A9073BAC7FA1B971074B758DC27C /* cord_rep_btree.h in Headers */, + 473FAD50CF9F97AE4DE9507BF8BF267A /* cord_rep_btree_navigator.h in Headers */, + 5B4607D123E1A63F93E8D25A1565CCE9 /* cord_rep_btree_reader.h in Headers */, + B9EBCC8C9C4B112E84989523886712B7 /* cord_rep_consume.h in Headers */, + 74345F84C240D29D065D8023327A23BE /* cord_rep_crc.h in Headers */, + A765A0782BF645F74582352243F8E616 /* cord_rep_flat.h in Headers */, + 7D5A8098AA4659F7FD5BC29CD7502531 /* cordz_functions.h in Headers */, + BDE5A7D164FCB2C48B803835669E9DBE /* cordz_handle.h in Headers */, + D87A5B38B0DCB40B7179F29A73EDE5B3 /* cordz_info.h in Headers */, + 3DF402F5F965FA6095762EF9F618AFD9 /* cordz_statistics.h in Headers */, + 07FA977A969FC23BAFB87BDFC0DD5BE3 /* cordz_update_scope.h in Headers */, + 69F7A2DD0A25006C0604819457D4A284 /* cordz_update_tracker.h in Headers */, + FD9DB72EFFE622D553D18852D8797D34 /* cpu_detect.h in Headers */, + DD2594C0D8BDECCBC6FBF7EFF2265E95 /* crc.h in Headers */, + 2622E2E7D66E9B800B7907EA71F08A5E /* crc32_x86_arm_combined_simd.h in Headers */, + 235B24FAB18207170A208B5BBA509487 /* crc32c.h in Headers */, + FD650F127389B895CBC642478C48EE96 /* crc32c.h in Headers */, + 7A0BC674E76868942619A61B4A4F6C8C /* crc32c_inline.h in Headers */, + 26B3356655C61D7CADE27B9F7C962411 /* crc_cord_state.h in Headers */, + C5098B0FA18042407FDE957261CCF58F /* crc_internal.h in Headers */, + 2569F0B445540B3571BC2DB1950E449D /* crc_memcpy.h in Headers */, + 62888773E5F920A86CEFC38E3A311014 /* create_thread_identity.h in Headers */, + D034B7AB79DF8CA55CF07AD6B502CC62 /* cycleclock.h in Headers */, + 359A33F15D1DCAAEDF4C0F7F55476528 /* cycleclock_config.h in Headers */, + 831A16A132A46AB6193D16860624474F /* damerau_levenshtein_distance.h in Headers */, + 87E920ABEE51E7D6FE4314B1789AC49D /* declare.h in Headers */, + A3C07042F08A80D2A95BBABD87BAFC23 /* demangle.h in Headers */, + 17F08DDB46C96B7FEF67721AEDCAFE90 /* direct_mmap.h in Headers */, + AA21F9C6E4A8B81A44B59546B09A6746 /* discrete_distribution.h in Headers */, + 52BDC4D149CBE70CAF8BD87B156682D4 /* distribution_caller.h in Headers */, + 3746382B6870964BA2A725A2FF0DA997 /* distributions.h in Headers */, + 9BE6AF540F3013FE2335A93C3FACD9C6 /* dynamic_annotations.h in Headers */, + 5E838E407C3DB9EAE3E09F43D42AEA25 /* dynamic_annotations.h in Headers */, + 0FE1A23951F5CA6D8B61DE704299A610 /* elf_mem_image.h in Headers */, + 8AE9270B2C3EA0F8BA140153F9FACF1F /* endian.h in Headers */, + 0A204547DF7B851D31441F53CCADAA2D /* errno_saver.h in Headers */, + 394F700E11BAEA81D06B3BD1B2B917EC /* escaping.h in Headers */, + 41696000B51E00033FECBCF2A1F90EC0 /* escaping.h in Headers */, + E35CB3AECDBDEC821CEBFAA0E51320D4 /* exponential_biased.h in Headers */, + CEF67959F5F7C5F3D5D38BC07CC07CCD /* exponential_distribution.h in Headers */, + 18E7C79EF34D935240E5D56FE3EAA021 /* extension.h in Headers */, + 1452F634E761111FC3E803C52D2435ED /* fast_type_id.h in Headers */, + 8D24A60298DACE32C619F7D11AF929DC /* fast_uniform_bits.h in Headers */, + 8FC3D86FEFE43C47A9BD9FBC57EA8650 /* fastmath.h in Headers */, + 1EB24D529E61E82EF1C6D7D28BAAC0FB /* fixed_array.h in Headers */, + 9BE3FDF238E50CECD368870B0CB1EE2A /* flag.h in Headers */, + 455909929B2ACD4BF08FB0E8F390B825 /* flag.h in Headers */, + 5002685C195E286D78F0AF5FB8DD2A23 /* flat_hash_map.h in Headers */, + 9884DDF037292BA25D9C1D49CB109ED3 /* flat_hash_set.h in Headers */, + 7E6FA9078B6A735F4EA5C11C3529C136 /* float_conversion.h in Headers */, + 2D2395A4BA0D1E8D14630F2EB6DC52CB /* front_binder.h in Headers */, + ABF91B5A8FB839D699976E39193E84B1 /* function_ref.h in Headers */, + E361B22FE2A1CE74D847A37C6665F6D6 /* function_ref.h in Headers */, + D0842D06E52E4088FEA82DE03B58C681 /* futex.h in Headers */, + 64402CBAC2FA52B1C5936FD4D76AE0DA /* futex_waiter.h in Headers */, + 6380B66C9BBB1693D84F0C2E86ADEDB2 /* gaussian_distribution.h in Headers */, + 9F7A9D11B154F64ADF661CF403765D4A /* generate_real.h in Headers */, + 64E477F05317C5BC028D8B847AFA842C /* get_current_time_chrono.inc in Headers */, + 8DFF6762936BF33FEC7B45EC9F481106 /* get_current_time_posix.inc in Headers */, + EABC7ED140BC5F7F8D7154CECCE3F751 /* graphcycles.h in Headers */, + DAF7C89B1AB94A837375861861CA7F6A /* has_absl_stringify.h in Headers */, + 95CA90F878BDF24F6A9E5B28C1F41778 /* has_absl_stringify.h in Headers */, + BE927ED214BE3E00660F8E05BAC3DA10 /* has_ostream_operator.h in Headers */, + AAB745F889BEF79611596D52FC0631C1 /* hash.h in Headers */, + 77E6DBEEA074DBB02F975130BFBD35E5 /* hash.h in Headers */, + 3D0607A1A314A24B26FBE0A105EB378A /* hash_function_defaults.h in Headers */, + E15694389D1E2D32A9B9E9E5BD010417 /* hash_policy_traits.h in Headers */, + 36F34F0F74C81025CE3BB1353C00961E /* hashtable_debug_hooks.h in Headers */, + 07BD3E48FDCCE80515CCAB5582C5D002 /* hashtablez_sampler.h in Headers */, + 5FD5D36E1DA026B53D48B094CFEEFBD3 /* hide_ptr.h in Headers */, + 556F84C945952CA04F3CBF96B1568184 /* identity.h in Headers */, + ABF0A77BA73C86ED4E02CA1E1078CD34 /* inline_variable.h in Headers */, + 65CDC41A0B1F974B305F2767B1C6BC53 /* inlined_vector.h in Headers */, + F212C6087006C4DFECD7767AB3128ABA /* inlined_vector.h in Headers */, + 6A2291A3B507C2A46E0482ED3958E6ED /* int128.h in Headers */, + 0FDC0E32364738CFCAFFA45D56A2B313 /* int128_have_intrinsic.inc in Headers */, + D3C8DCA01E5F655F29EB6E6BF1C220CA /* int128_no_intrinsic.inc in Headers */, + CD9CC8D3D2CA49F2A2B39620E78A4442 /* invoke.h in Headers */, + 38EC12B80F515DB6C09D1FE5195CD918 /* iostream_state_saver.h in Headers */, + 4C78B614D60AE4B57B1F4A293284A304 /* kernel_timeout.h in Headers */, + 96CAE36C9C05B2225F0C6CDE4E05CC4B /* layout.h in Headers */, + 56C14C181673B2EBCB6591C5314010E8 /* log_severity.h in Headers */, + 60B36BA8B4F000AFDEB35CD1ABE6B0EF /* log_uniform_int_distribution.h in Headers */, + BCC6C69E53D7DB2DC817FDF5595FA5D7 /* low_level_alloc.h in Headers */, + 62A4FA3C02759E23F68D2AA679529017 /* low_level_hash.h in Headers */, + F0053A24627BF063DBD494869B36D02C /* low_level_scheduling.h in Headers */, + 010D68E24D9C389B467DDBFC4C90E108 /* macros.h in Headers */, + 3E7F9F5E63DC7670CFE4A68547F61A14 /* marshalling.h in Headers */, + BCA3557F27BF922F5C6A815064B6EF2D /* match.h in Headers */, + DF5702069816C2BEB61B7B70703F8364 /* memory.h in Headers */, + 20DB69593528CEC099CCDD9C40C2348F /* memutil.h in Headers */, + C41CAD73F601B0A8CC244BF0882DEFCC /* mutex.h in Headers */, + 4DB8BC3E87F876F6FEEE4AB6CC341E79 /* no_destructor.h in Headers */, + 5AB8CF6C6F7C583D0A350A5C53D7CB38 /* non_temporal_arm_intrinsics.h in Headers */, + 3A5F4D2076FD68630A05E2AEEFBEF929 /* non_temporal_memcpy.h in Headers */, + F883AECCEBFFF56678119778643776CD /* nonsecure_base.h in Headers */, + EAC7C84649EBB00A274A9FC540C4F005 /* notification.h in Headers */, + B0D7277A0D3A0A39A074F56838EF28E0 /* nullability.h in Headers */, + 20B95D9E2AA325639B94D04C30026C58 /* nullability_impl.h in Headers */, + 536A6B2D114CBC2683A38ACD99DC76F3 /* numbers.h in Headers */, + A91FB226ECFC7787C818560BF2E42B10 /* optimization.h in Headers */, + C2D2C68BB6C72A177CF43E3429E9E69C /* optional.h in Headers */, + 33541374C01044116627A72AD98D28A6 /* optional.h in Headers */, + D621CA0E3B25E7504D14BB9C5FFD7B5A /* options.h in Headers */, + 993DD43585314507036CCAD80C088CD4 /* ostringstream.h in Headers */, + 01D82603D851C7122FAABB27B2E8CE1D /* output.h in Headers */, + 09EE363EA270F456BF75DF8AB4F5E35B /* parser.h in Headers */, + 31D0A3163F3825C18D60BCD82B1BBC96 /* path_util.h in Headers */, + 968C7DA220C1FCDC611A3BA4A2523237 /* pcg_engine.h in Headers */, + A0EC5404F7FD8DA9A3D88241B2482BF4 /* per_thread_sem.h in Headers */, + C2D94DA4E9C9E5B104B2D149E05C5665 /* per_thread_tls.h in Headers */, + 6CD21D0DF90A91E0DE8ACD2EA618AE6F /* platform.h in Headers */, + 91040D52F8C8DC867E591015448E50BD /* poisson_distribution.h in Headers */, + 9F5F99CA816EE830B221205CC2C32A51 /* policy_checks.h in Headers */, + C96E5DEA86679EC5255A2C88DEE88AC6 /* pool_urbg.h in Headers */, + 6C652C74A94FB3FDF8130069FB3229CC /* port.h in Headers */, + 49D44AF69FA31705AC3FC1ED0C4C682B /* prefetch.h in Headers */, + 640B4629A846CDA71EDF1016411053E2 /* pretty_function.h in Headers */, + 271BD5CF3C0644796C978D50411A14E5 /* private_handle_accessor.h in Headers */, + FB37DA765FDB42D1A81DB42A6A006234 /* program_name.h in Headers */, + 2A4AA939AED528C8B29A0B8216CECB21 /* pthread_waiter.h in Headers */, + 9BFD239896BBA86A455DD92F9CEA660B /* randen.h in Headers */, + A6945D3AB5697727BE84A2DB988731A8 /* randen_detect.h in Headers */, + 8062F63C67B43EF0271D72DAFC16ADB2 /* randen_engine.h in Headers */, + 7AFB935953417D1E79F08BD46257A450 /* randen_hwaes.h in Headers */, + A0C8BFC8E6238907E509782BFCFF5613 /* randen_slow.h in Headers */, + 47561F80226A2F9E987A0B2C0B3F567E /* randen_traits.h in Headers */, + 3CAB82A1F13B6851515A0F28B6896872 /* random.h in Headers */, + 65E9D5091E6DFE97827BA143B60C250F /* raw_hash_map.h in Headers */, + 90248DE30B5E92B02B7473FDAED908BB /* raw_hash_set.h in Headers */, + 91F22C04885AA4E76DB30D5C2C85BC33 /* raw_logging.h in Headers */, + 0C5EB285D9E110E2EB8DFB4B5A28FB11 /* reflection.h in Headers */, + A0A9FBB592C8A450AF099B7B9C7EBF97 /* registry.h in Headers */, + 4AD44686487540E337DBE8CA2CA6EE6C /* representation.h in Headers */, + 33B5815CBC7E576F5094779A45E10914 /* resize_uninitialized.h in Headers */, + 4D289035FE6BEF9D293302E1C309C32A /* salted_seed_seq.h in Headers */, + 2F6B0D764DA3D5E23979F1F6752BB4DD /* sample_recorder.h in Headers */, + 7C16823539E190C30C3E9403665EE8D1 /* scheduling_mode.h in Headers */, + 10DF17F529218689788A43BE2D9C86FE /* seed_gen_exception.h in Headers */, + 60637AA3EF6478A0753C65A0A263A015 /* seed_material.h in Headers */, + 1D0322323CB2D7A72E02B0E81DBFA6D8 /* seed_sequences.h in Headers */, + 37C341E2B4CD89B6C3338EB4EB61D61A /* sem_waiter.h in Headers */, + 64DEFCEC7D2B80FA9069DBA94814CA77 /* sequence_lock.h in Headers */, + 65AE4383FAD0DFE4F8B0236DD54B41F5 /* span.h in Headers */, + ED42B3E155468AE4BBE8CCC88FE1CB8E /* span.h in Headers */, + D2F3789EA8B03808E81E400013B989BE /* spinlock.h in Headers */, + 92D9C4C3B002D7B83DF9693DD0D4AB9A /* spinlock_akaros.inc in Headers */, + CC184FCFCA39D8172DA61CBFB8E37D1A /* spinlock_linux.inc in Headers */, + 641B4E6B1C1302B894DB1D44F53D3953 /* spinlock_posix.inc in Headers */, + B1DE328DECF889F5CE98BDA386417A01 /* spinlock_wait.h in Headers */, + 4FC96B64F37296FD54C5851FE2E89D78 /* spinlock_win32.inc in Headers */, + 869E4F318E5F3936803062896D2B25B5 /* stacktrace.h in Headers */, + BD9F676408B24925C5B40D4BBFCBB9CE /* stacktrace_aarch64-inl.inc in Headers */, + 1E55207A4B93691A6C900ADAB34279F9 /* stacktrace_arm-inl.inc in Headers */, + 02936C36FEC5553D490FD35FCC925008 /* stacktrace_config.h in Headers */, + 3486D2F6593EC3583706363A06B2AB73 /* stacktrace_emscripten-inl.inc in Headers */, + 6902D785A69604BDFE45D460B85589F7 /* stacktrace_generic-inl.inc in Headers */, + 2F83949FC3CA17D5AF40448B20582BDA /* stacktrace_powerpc-inl.inc in Headers */, + 9F1EE6CDB9BD454C9EE678531307D22F /* stacktrace_riscv-inl.inc in Headers */, + A75431D028C7A1B71E1EAFD37E465C0D /* stacktrace_unimplemented-inl.inc in Headers */, + 697AFF222A8E58239B8FCF467CDAA4FA /* stacktrace_win32-inl.inc in Headers */, + 5AB3F443D28087A496EDC905EC4AD23C /* stacktrace_x86-inl.inc in Headers */, + 8E43BB5533E2ED480E487377BCCE3EA9 /* status.h in Headers */, + 6ACC1FE8E4EDA1D654BB82C204FE69A7 /* status_internal.h in Headers */, + BF0D06D589140EC3C0751BD0312B20F6 /* status_payload_printer.h in Headers */, + A29B1C12396960B6DA7EBB40F4C4BF39 /* statusor.h in Headers */, + 9A646F23BA70130C2E1F60D3859B8093 /* statusor_internal.h in Headers */, + B581022A8ECBB69C8663A7416ECE2DB6 /* stdcpp_waiter.h in Headers */, + 50394B01CF97F30FD8DD7A6A90FBC525 /* stl_type_traits.h in Headers */, + DA526ED1E007EA1EC6870E1A40A93B8C /* str_cat.h in Headers */, + 0013E2FA8E407C6CA0C38DF6F968C090 /* str_format.h in Headers */, + 437FA899890958B3A803F124AB47F2EC /* str_join.h in Headers */, + 237E83C4689043DCB03E64AEC2C00B95 /* str_join_internal.h in Headers */, + C32501997D3BF08564263111004F700A /* str_replace.h in Headers */, + DA7A3373120A224745CC577D878C02A4 /* str_split.h in Headers */, + 76A290C3EB683D0A664EAA909FC00B9F /* str_split_internal.h in Headers */, + E16D53957C7FE70C9A89BBC603DA5C32 /* strerror.h in Headers */, + 29B1B2458D8CA0403233EA36585C1772 /* string_constant.h in Headers */, + 6B20C606C344FF68FD3EEB56249B1FE7 /* string_view.h in Headers */, + 55ADF3E524CC1ED3A3374B670C9CDC5B /* stringify_sink.h in Headers */, + E960264E6A36A4234470FA96A1C3CAB6 /* strip.h in Headers */, + 6454F66A9B536C71B368DF5CC26AD840 /* substitute.h in Headers */, + 85FB608EE7286CCB2A2D3476895A0209 /* symbolize.h in Headers */, + 88AB1E41CC30DD6FA5BA36D50602AD7B /* symbolize.h in Headers */, + 83A9931334765E2F03866350532CDEBC /* symbolize_darwin.inc in Headers */, + D97E8BDB1C7F132FA83FDF279507D66A /* symbolize_elf.inc in Headers */, + 8A61169635F0F85190F733386D7D97B4 /* symbolize_emscripten.inc in Headers */, + 409C85F94A74E496FF330F7EAF3BC9C6 /* symbolize_unimplemented.inc in Headers */, + 75D2980F62915BB6C56279E9A96457D5 /* symbolize_win32.inc in Headers */, + 084246030B5545ECFC6AF39CB4C4FE3B /* sysinfo.h in Headers */, + E9727B3D8CB3F0DBDDA0F86B8F317E66 /* thread_annotations.h in Headers */, + A607DF3756102FF737A85BC6B7B3F71E /* thread_identity.h in Headers */, + 5AAC98101B7588C06F308228724724DE /* throw_delegate.h in Headers */, + 2CD6BC622EFB7F3B7CCCAD121B84D370 /* time.h in Headers */, + 47661AB55764649D12CB9BBFB6F43955 /* time_zone.h in Headers */, + 8C9DAFAFDC4805BCA47C9805F86A4BEE /* time_zone_fixed.h in Headers */, + 5C04049D791C4EC14EA1EB7EADFA2082 /* time_zone_if.h in Headers */, + B88628E7BDB98D63452E558020093FC6 /* time_zone_impl.h in Headers */, + 4175C14CD95D8760CCDA7D32299E8091 /* time_zone_info.h in Headers */, + 0DB4F2DADD37ADEE059CCD2FB50B52D0 /* time_zone_libc.h in Headers */, + B2D97BCAAB3B4B8C4A438B6FAE556AF3 /* time_zone_posix.h in Headers */, + F85B9420EF0FB8A04C062AE3AE692062 /* traits.h in Headers */, + 97D01B85B48D8C3EF1462DC5C1F6CD41 /* tsan_mutex_interface.h in Headers */, + 9A09D28199DCD4360A527B72696F544A /* type_traits.h in Headers */, + 5EBD0177B31F6AADC54E0AE64312E85D /* tzfile.h in Headers */, + C36F03646F0A930C7F1EC94FF35EE921 /* unaligned_access.h in Headers */, + 159EA7F12C2924E74A79A3C744C26C5E /* uniform_helper.h in Headers */, + 18EC236E4B552ACB4296AD987FAEC02D /* uniform_int_distribution.h in Headers */, + 8E932F5F946E31D8296F3B60732BCEFA /* uniform_real_distribution.h in Headers */, + C9E7158E319DEBD465957630BAB8EE95 /* unscaledcycleclock.h in Headers */, + BAA5C74A6E3E229EA3AFFE683AF35646 /* unscaledcycleclock_config.h in Headers */, + 32BD991E67849085DDC6040761AFA4A4 /* usage_config.h in Headers */, + 2471573509AA44840499B699BD45E646 /* utf8.h in Headers */, + 8E4B5F1E37D055F79CE820AB8F714919 /* utility.h in Headers */, + 93973F72719372AE47FEE19ECEC7349B /* variant.h in Headers */, + 8DAE215BE671D06BBDF9439CF929B51B /* variant.h in Headers */, + 4C8BE462B06273C4E8E4281C6D28A1BF /* vdso_support.h in Headers */, + B3FC512F007376CD9F1C9D1DD4A6128E /* waiter.h in Headers */, + FB8CAD680E58CAF82EBCFD7F934F6CE7 /* waiter_base.h in Headers */, + DF00E248230083429D91F7E302F498A0 /* wide_multiply.h in Headers */, + 9F1AAE651D93FC5274BC2DAF7285A841 /* win32_waiter.h in Headers */, + D58E771C0613C6B3058A8F8541C1ACAE /* zipf_distribution.h in Headers */, + 4ADB8F70ABD19C5D7823B62CF8BDD865 /* zone_info_source.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -35209,1848 +37720,275 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7743E9FF10A6E75D4370D2833988D269 /* Headers */ = { + 6F917A04781A145F22DC37B55733D6A0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BAED7726BB43DF0B6211FD455177140E /* RCAActionProtocol.h in Headers */, - 287A52CB8174A6C47F2EF7D138F10DD8 /* RCARecaptchaClientProtocol.h in Headers */, - 09B61F61C5B873B41430E580D8FF1C25 /* RCARecaptchaProtocol.h in Headers */, - B3BB2D7230FB32ECA926DAD058CDBE78 /* RecaptchaInterop.h in Headers */, - 26FF43A80EEEC201ECEB8C3C8806B18F /* RecaptchaInterop-umbrella.h in Headers */, + 5465442CE7BB78A9CC43C3A7746D3D0C /* FIRAppInternal.h in Headers */, + 2C156E1C5F8ADB73F4CBA78D91B545AE /* FIRComponent.h in Headers */, + 790D13F91DC608F65527CD2D38D753A0 /* FIRComponentContainer.h in Headers */, + AACFFEDD019F10489E773DB897C6F889 /* FIRComponentType.h in Headers */, + A762E707D418B16231D46CB846B8AE2F /* FIRCurrentDateProvider.h in Headers */, + ED489D682F57B4D6924B70F99D838B1D /* FIRDependency.h in Headers */, + 9CE6C5F5B75479A01D08DAC19184A2FE /* FirebaseCoreInternal.h in Headers */, + 14920FF47103C33EE77148C15DEEC325 /* FirebaseInstallations.h in Headers */, + C56FAFCC91CBCD1843939AC8CF34D1C4 /* FirebaseInstallations-umbrella.h in Headers */, + 0CA2058B016F42F2D3FB648B6F408A06 /* FirebaseInstallationsInternal.h in Headers */, + 2F9D97CE153716F89C8695B9CD782315 /* FIRHeartbeatLogger.h in Headers */, + 5A4B1A4D444EE9E518ECD556173BCB0D /* FIRInstallations.h in Headers */, + 4A556BB4C2D5DA65D0E2C7DE53C6AB2D /* FIRInstallationsAPIService.h in Headers */, + F692F4F2DB9B90D0744E3BB9022E6302 /* FIRInstallationsAuthTokenResult.h in Headers */, + 4F19FF897BBB74669A2E9A09E6DA249C /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + B53D670F5542DDEA1B9E5963F7F59B7C /* FIRInstallationsBackoffController.h in Headers */, + 0E9A4EC384F63B46BBFDF0D3BC2E81F4 /* FIRInstallationsErrors.h in Headers */, + 7B8577851B33DB964D450338BD163C06 /* FIRInstallationsErrorUtil.h in Headers */, + 87F5B0BE4E09A9F47696E2003B75189C /* FIRInstallationsHTTPError.h in Headers */, + 2950E700FD81937F1281C2BFEE531E1E /* FIRInstallationsIDController.h in Headers */, + 94DE78420D83935405A644441DAD368E /* FIRInstallationsIIDStore.h in Headers */, + 090A7E702DAEBDC0C9635840976BB5B6 /* FIRInstallationsIIDTokenStore.h in Headers */, + EB5196753653ED216ACAC2AE87C4C76F /* FIRInstallationsItem.h in Headers */, + CE17A815C9E1059FDFE84E7AD46FA207 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + A18E6F19DD0B87A896D38341A8E2C94C /* FIRInstallationsLogger.h in Headers */, + A31DA855471AFB3A81178200B0D9E3AF /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + C8E876BE950CDCB6C29EC4511FAD6CE0 /* FIRInstallationsStatus.h in Headers */, + 3E3E4A4F97FB1F4FABF1E83917A03384 /* FIRInstallationsStore.h in Headers */, + 5F84B1EFC820E06789AF39DF6D17BF25 /* FIRInstallationsStoredAuthToken.h in Headers */, + 71A55E4DFF1C4ADECD9F2B179559523A /* FIRInstallationsStoredItem.h in Headers */, + E51D59937BB6FB8CBC86132B10DB2B58 /* FIRLibrary.h in Headers */, + 196C5262E963CDE653989C4072D304D2 /* FIRLogger.h in Headers */, + E1204D5E2B1430BB020A2CF1D66DB984 /* FIROptionsInternal.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 892B6BFFE54673422B902A4B941E31E3 /* Headers */ = { + 787FB6013593BD026487346E9AEE54A1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8077E9156DC779DEE8FF2C187BC785C7 /* FIRAppInternal.h in Headers */, - B802DE260E175E8E3A3458EE7E646230 /* FIRComponent.h in Headers */, - CE70F922FDB1C85050A811509A467FC2 /* FIRComponentContainer.h in Headers */, - 414E8BAD8A2C8EFEB1E9A4C92AF91077 /* FIRComponentType.h in Headers */, - 73DBB04C3FD12C8CDAAEE02D31E42A5B /* FIRCurrentDateProvider.h in Headers */, - 09ADA590CFFDB9E5DE2E3F5BC63DAC9A /* FIRDependency.h in Headers */, - 520FA7C61A50198F3513932FAC771658 /* FirebaseCoreInternal.h in Headers */, - 3E053D15724E3251406290543708F583 /* FirebaseInstallations.h in Headers */, - C487A3EB440A7CE230D62DED88E368F8 /* FirebaseInstallations-umbrella.h in Headers */, - CCECC1735B4350AFCA7206B99DD93C4C /* FirebaseInstallationsInternal.h in Headers */, - CDD181C0E3037FFBC3260AD3B3FA8A6F /* FIRHeartbeatLogger.h in Headers */, - 63C58902EE9D8E0DDBCD677187135103 /* FIRInstallations.h in Headers */, - 23EB66318290242681F971E6E58E9FE1 /* FIRInstallationsAPIService.h in Headers */, - 393738F7DECA0206AAF28E227BAFABC8 /* FIRInstallationsAuthTokenResult.h in Headers */, - 0DAD472DD2BBA340D94F726D9BEAAE3A /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - E92D64175F03E27614D3E9859683D9D7 /* FIRInstallationsBackoffController.h in Headers */, - 60D5B2A6B28F12243CAF79DD3034185A /* FIRInstallationsErrors.h in Headers */, - DDA391379BDE3AE834D6D0CC6FF4DFF9 /* FIRInstallationsErrorUtil.h in Headers */, - 0DFEB71E3D1D918A2B0F88F178B2C675 /* FIRInstallationsHTTPError.h in Headers */, - 3C1BC3E10CC61F5BB254E1652D5CCA21 /* FIRInstallationsIDController.h in Headers */, - 3C4C69502D6DC17C692B13C08BDAC664 /* FIRInstallationsIIDStore.h in Headers */, - DC33B42999CAFF632167C6C110490246 /* FIRInstallationsIIDTokenStore.h in Headers */, - 5AD98ABCE3AA41E406100981C37D4375 /* FIRInstallationsItem.h in Headers */, - 4BAEE768A5B9EAEB4F2647291FD6B6EC /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - 59CD2435B86FF5AD568B33DE9F57818C /* FIRInstallationsLogger.h in Headers */, - A649D4AC26EBB723800DDDD8BEC2B7CD /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - DC98BFDBF38241AA5B57D982B2EE7CBF /* FIRInstallationsStatus.h in Headers */, - C5A6ED3FF201A339CEEEA3BAD6077D01 /* FIRInstallationsStore.h in Headers */, - 154EE7AA48BEA6563E1B492036C65C14 /* FIRInstallationsStoredAuthToken.h in Headers */, - B0BA0625B8C906FEDEA5E9F5B6FB12A5 /* FIRInstallationsStoredItem.h in Headers */, - 8012FF9C5828FF38FCD85D588150AB20 /* FIRLibrary.h in Headers */, - F3454FFF89BC06C17E4CBEA1CF1A090B /* FIRLogger.h in Headers */, - 386BA1ACF8BAA4F38F11354EFA6EFF62 /* FIROptionsInternal.h in Headers */, + 61A0992622F1486580E33C8E2AE9EC57 /* FirebaseRemoteConfigInterop-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9169C994FC8A48166745E41FB2700BFA /* Headers */ = { + 7C155EA3D7857D52B3C2886997BD250A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1C7FE47BE3DFB824E63D3951D60963A7 /* FIRAggregateField.h in Headers */, - 74A3636B7A8EB79B5853FC8597AE7308 /* FIRAggregateQuery.h in Headers */, - 83377C7B46035B423531F0A24BF363C2 /* FIRAggregateQuerySnapshot.h in Headers */, - EBE8C0A319906DBE52F8E3066CC12B52 /* FIRAggregateSource.h in Headers */, - AF6CBD9B6E0DE41B2F221C13CE63116F /* FIRAppInternal.h in Headers */, - 2EE8AEA2BE874D2DDBEDFC19481160A6 /* FIRAuthInterop.h in Headers */, - AFF45A4018CB33F23E19C8D4417008EE /* FIRCollectionReference.h in Headers */, - 23F8AC7A31B73BFC01EA72CF279A2C56 /* FIRComponent.h in Headers */, - 1B2543D41C48846A8376B4F4E99704CD /* FIRComponentContainer.h in Headers */, - AA19E14B654E495AF144DE8029DD2253 /* FIRComponentType.h in Headers */, - 310B76B7B04C971CD0CE9C9EDF150930 /* FIRDependency.h in Headers */, - 1BBB7EE473AB4829EB4CE226392F3EE4 /* FIRDocumentChange.h in Headers */, - 4BAF751759B3ED00862B3B8380004B18 /* FIRDocumentReference.h in Headers */, - B1CC0E82F9E29331662281F0BEFB7EE8 /* FIRDocumentSnapshot.h in Headers */, - D01AE53C686525A02CD2F1359AC63A46 /* FirebaseCoreInternal.h in Headers */, - 297D92AFDB2FB3388413EAD760C20169 /* FirebaseFirestore.h in Headers */, - D29063600454832E519B836C3D81BC3E /* FirebaseFirestoreInternal-umbrella.h in Headers */, - 51E8111B5DBD55CF4A5495D0CD00EB98 /* FIRFieldPath.h in Headers */, - BD17F52E77D15FF085669F7E163D27F3 /* FIRFieldValue.h in Headers */, - 5EC0ED3BF9F0E86ADC14905AF098A56A /* FIRFilter.h in Headers */, - 5FD20C4B712D27A22D665E2788A2670D /* FIRFirestore.h in Headers */, - AE6FFDDB3979038117E1A359A674B6DA /* FIRFirestoreErrors.h in Headers */, - 5169FB1B84246212CE7B9C2483FCA4EC /* FIRFirestoreSettings.h in Headers */, - 811F4D34E6D631C718A4E12532354672 /* FIRFirestoreSource.h in Headers */, - E45C7B6FF0977BF6A1D2D1006D117127 /* FIRGeoPoint.h in Headers */, - 83CDFE5E82F3A0FAD0033DC30FC143D2 /* FIRHeartbeatLogger.h in Headers */, - 9BA4121909365421BA736B5B476C197C /* FIRLibrary.h in Headers */, - 8423FA0347C0E797C9160FCA868431AF /* FIRListenerRegistration.h in Headers */, - 15587F7B9735EC3856AD646E396834B5 /* FIRLoadBundleTask.h in Headers */, - 7A510B71BE4B34BFF9C5281163F7C63F /* FIRLocalCacheSettings.h in Headers */, - 7E8B6942C28594887AB7144666F84217 /* FIRLogger.h in Headers */, - F299F0E2703B85DC40A13E71798806F1 /* FIROptionsInternal.h in Headers */, - AFCF9A0F2EFFD545CE23D912536B5043 /* FIRPersistentCacheIndexManager.h in Headers */, - DA29B4AD07F4B8922C215ACA178D0B65 /* FIRQuery.h in Headers */, - 2A28A5B1A3DFE06607C8A8C9EF674083 /* FIRQuerySnapshot.h in Headers */, - 80D5B9EB70B8FF609DE98FE1D97ACDFD /* FIRSnapshotListenOptions.h in Headers */, - B1E62EC72BC2652C541C305C34D699B1 /* FIRSnapshotMetadata.h in Headers */, - 762609EB98B5F3B8B8AB301C759D0040 /* FIRTimestamp.h in Headers */, - 4493FDF3A2783006B60203FDB43A4602 /* FIRTransaction.h in Headers */, - C8297A167C097D1F82EF10009EF3C666 /* FIRTransactionOptions.h in Headers */, - 60242DC27C2BD5BD7A505E642DC38791 /* FIRWriteBatch.h in Headers */, + C3CA810A0D67763134C1A81756C209BB /* nanopb-umbrella.h in Headers */, + C4E62E9B3DACF7F28FC1088D1FDC0AFD /* pb.h in Headers */, + 417A7DF73ACE14374D635CD6DD8225CE /* pb_common.h in Headers */, + D00E72B51C322C8B16187CD16DAB321F /* pb_decode.h in Headers */, + 9A4CC75F5609EEB2E2A4AA3B68DCCDB2 /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A388BBF3AB86E92A16FEFECFA92E8ADB /* Headers */ = { + 81E62CECA9C145BBDA2A69ED1315AD95 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 77855957AC47E0D97059A8D8A613E0E2 /* arena.h in Headers */, - 3A41AB0C92251ED84D50F71BF023CAD5 /* block.h in Headers */, - 2D66964862AA6C4DFEDC3F64B87F0E0F /* block_builder.h in Headers */, - B11FD9EDC67E475C754CF507E8A67603 /* builder.h in Headers */, - E11B6A8025FF90CEE1E8EF37FCFF2EE4 /* c.h in Headers */, - 458A9D1D71C288FA9A69697D4EB0F73E /* cache.h in Headers */, - 12A80F45ADD1258F3CF84214A8868286 /* coding.h in Headers */, - 6B13E9AC70D2CF4377B78604B9C82F90 /* comparator.h in Headers */, - 9AB3366EB8668322CD58C9CB3BDF179B /* crc32c.h in Headers */, - 4EC0993E1A0EC3F56DF7568D757E9E68 /* db.h in Headers */, - 6878D2186F72C7E0ED0738474431CF04 /* db_impl.h in Headers */, - 75D8448B3DCB568AE118C6689461977E /* db_iter.h in Headers */, - 2033DCDBF12364D5DB214D93463AD208 /* dbformat.h in Headers */, - 29BC93B2B75687785EF376D9A1DFFE25 /* dumpfile.h in Headers */, - CF371712879567FBBB8C91AEFFC2E7D6 /* env.h in Headers */, - ED3EF99AB9D6558C956590ACD1237EFA /* env_posix_test_helper.h in Headers */, - DBC658937AC018E57D4E330D113AB61F /* env_windows_test_helper.h in Headers */, - F1FA4A207E0AFB13428850EC78B792FF /* export.h in Headers */, - 9524CFC338A08491BAE9892EDE5AD865 /* filename.h in Headers */, - 024F671451A2A9E351C821E6E4A9919D /* filter_block.h in Headers */, - EB8B9ED9776D54C7FF85BF1C541848B3 /* filter_policy.h in Headers */, - B9B49364D09817A1BEDAF4B38FF4B173 /* format.h in Headers */, - 6B903994454D78E1942B8701FA871345 /* hash.h in Headers */, - 6FBCD5616506299065BE10B24F4AB1FF /* histogram.h in Headers */, - 193362D3527362C0203BD5B1C6245176 /* iterator.h in Headers */, - E0BE882AA343DB7F3D7D205A7ED949DB /* iterator_wrapper.h in Headers */, - 03E0D88CCD43C8293952DF629033A6DE /* leveldb-library-umbrella.h in Headers */, - 4DB3D14275DB026EF9BDA7F784E34538 /* log_format.h in Headers */, - 0FABC46F30D7E8E38213CAC70A61CD67 /* log_reader.h in Headers */, - F93BFE9046A1707E35F168B12D98B089 /* log_writer.h in Headers */, - 51F904E47629965D557FB74869E29EF0 /* logging.h in Headers */, - 9948FF1CCDB840E85765A035C8810711 /* memtable.h in Headers */, - 91BD38F54C32729179F65D7F418F72BF /* merger.h in Headers */, - 6E11969675423D3444BB18CA1E319129 /* mutexlock.h in Headers */, - E24CC01084B2A15A00355BABACB649E3 /* no_destructor.h in Headers */, - 72C2A1CBA131F92ED419A33DC86B265E /* options.h in Headers */, - 140C37F1B39D5DC05EA5E376C1BA54C4 /* port.h in Headers */, - 27FF7A2DED309DE91CD00399A68C30B1 /* port_example.h in Headers */, - CD493E4D25B6B884C54E9612F64E6D52 /* port_stdcxx.h in Headers */, - 3AA7A8F88A6376FB83C0EA34DD25BA4E /* posix_logger.h in Headers */, - A7727FB949B193B13F1229F2B56549C3 /* random.h in Headers */, - BEBC105CAD3CCF717F9B575F9095572F /* skiplist.h in Headers */, - 67DD18B4CFED08BFE99CEC5E6573B8C2 /* slice.h in Headers */, - BAFBA2EB3E438A23B89461FFD78F9A13 /* snapshot.h in Headers */, - 9BA19F033FC99D43B097C43E19A9B965 /* status.h in Headers */, - E6AC54C6E0C80F548DD8804EAB12200B /* table.h in Headers */, - 6794E59179C6B447D7EE066712F13D3E /* table_builder.h in Headers */, - E265876C53B803D5138FA8A87E4317D8 /* table_cache.h in Headers */, - 2BB2D7F4CBE209F2AB663C3FB70835A3 /* testutil.h in Headers */, - 09580A3B3B1D1FAAFA422CD3AE223F4F /* thread_annotations.h in Headers */, - 17C5408FB9D6E5E0093088DA793EE982 /* two_level_iterator.h in Headers */, - DB1DC70AC4BCEF164D4DDC6757E9A209 /* version_edit.h in Headers */, - 6FC700AC7C33017810DAC243FBF52833 /* version_set.h in Headers */, - 66B1427C44A2A1368644643F2BE94FE5 /* windows_logger.h in Headers */, - D5385BA68CDE48B56B6B91B894B2C003 /* write_batch.h in Headers */, - 703755DD0A9F64B999B2EF2F8DFF598D /* write_batch_internal.h in Headers */, + D126AC638930DE01119843513FD1A652 /* RCAActionProtocol.h in Headers */, + 6A92BBF59CF76956804ECC848324E5DA /* RCARecaptchaClientProtocol.h in Headers */, + E8CE42C5BA47FA19158857BA7F4B6EBD /* RCARecaptchaProtocol.h in Headers */, + 612E0502D0A070E78122E43A21D6705B /* RecaptchaInterop.h in Headers */, + 3742A04C536867961D3198C14C30FAED /* RecaptchaInterop-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A71B3CAEECECC3AF6E52B4E49D4C8692 /* Headers */ = { + 8F0D7858518DAA211FE566D35ED5787C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 207E617E29B3E5A4B7AEF91B61E27083 /* FirebaseRemoteConfigInterop-umbrella.h in Headers */, + 0FEEA14557EB91D8E2AA1EEBD01422DF /* FIRAggregateField.h in Headers */, + 58DB96F033F321F18D071FD54CF210C7 /* FIRAggregateQuery.h in Headers */, + 733E8CA81E9EAC80537D63D0B23432EF /* FIRAggregateQuerySnapshot.h in Headers */, + 980CD0C9DB0B1FD1A6422C49AC368A02 /* FIRAggregateSource.h in Headers */, + 3D30FAC015725502E1C511B82BCF7ECA /* FIRAppInternal.h in Headers */, + B3A997368E23A23C4DCB973106BF9ABF /* FIRAuthInterop.h in Headers */, + F2A7D6FE6592801AF85D38037536A540 /* FIRCollectionReference.h in Headers */, + 973DB506F6FF5B203C9AC19B70F79F85 /* FIRComponent.h in Headers */, + 34FB516210E8C8E01A8760013E149B86 /* FIRComponentContainer.h in Headers */, + 9C6B9E4A77E73E0F8943E79764E6B872 /* FIRComponentType.h in Headers */, + FE247047BEAF02BA8D06BA95DA860B83 /* FIRDependency.h in Headers */, + 8AD9C9D0A33BECEFC78547CB24674C0F /* FIRDocumentChange.h in Headers */, + 93062C3FF870EC7C3F961A4910EA80B1 /* FIRDocumentReference.h in Headers */, + 45542AE08045E5408D128BE708441D1A /* FIRDocumentSnapshot.h in Headers */, + 5B3A451772B2F2CE07452E1F1CC6B90C /* FirebaseCoreInternal.h in Headers */, + F37B6CCE389BD6487D031DF4084BE419 /* FirebaseFirestore.h in Headers */, + EC7C25E2C9378B9D074248A63CBBAEA1 /* FirebaseFirestoreInternal-umbrella.h in Headers */, + ABC68C5BD87F3B91436EC2C75C39E93F /* FIRFieldPath.h in Headers */, + 3F0E2479F9E926F8C36AC52F9A89256A /* FIRFieldValue.h in Headers */, + 4743B8F608B896EE1C4A1A0BC2AE4051 /* FIRFilter.h in Headers */, + C135EFAD7E6A570DAED063347F3FE56B /* FIRFirestore.h in Headers */, + 512A4EC8098E949B6538EAF7B246C5E5 /* FIRFirestoreErrors.h in Headers */, + 590678055EB921D3E246A6F60A51C060 /* FIRFirestoreSettings.h in Headers */, + C37CEDE327FDE757B14293E1961ED554 /* FIRFirestoreSource.h in Headers */, + 40343EB90C0A23739A8E53637628BECB /* FIRGeoPoint.h in Headers */, + 602A900FFADC478F67D2ACF603C3CDD0 /* FIRHeartbeatLogger.h in Headers */, + 4B656A22FA21F5E031C12155D412BE7F /* FIRLibrary.h in Headers */, + 87C03FF92D0F1797D2EFABD1E4A19091 /* FIRListenerRegistration.h in Headers */, + 3FFF326B0DB54F08BBA47AAA29025819 /* FIRLoadBundleTask.h in Headers */, + 413E5257AD31722D1FAEE94FAAF851AB /* FIRLocalCacheSettings.h in Headers */, + 680F3B76A7E88852A7CBCDDCDB5D225C /* FIRLogger.h in Headers */, + 8965D0BA0BD65E816F8CF7937C0DF652 /* FIROptionsInternal.h in Headers */, + EC364C7D70A8BFB3367D66FA08E16FC6 /* FIRPersistentCacheIndexManager.h in Headers */, + CE0903984718EE33085657D198A673BD /* FIRQuery.h in Headers */, + 0C7B7CC86CE4EB0EC24CC9EF09EA23C5 /* FIRQuerySnapshot.h in Headers */, + 2F16D16400F3F7302F0D4392137C75BD /* FIRSnapshotListenOptions.h in Headers */, + 80EA53600CB7EF15248E84032B2FA493 /* FIRSnapshotMetadata.h in Headers */, + 060E18FEC24D7E630262A896D5CD0A9B /* FIRTimestamp.h in Headers */, + 415070FCE375F201662663BE9CF2758C /* FIRTransaction.h in Headers */, + 36552AD869D46D24B5CA3996D2F37FB6 /* FIRTransactionOptions.h in Headers */, + F144311D12DFD661BCF9245FC6F503B3 /* FIRWriteBatch.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A9EE8DF53A3C46707673FABABA1A7861 /* Headers */ = { + 97A28D5A24695F55E26A175BC5E2D670 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5E01E556ACF7B3E09E8BD6A929AFF1EA /* accesslog.upb.h in Headers */, - 1ED20DF456F62EFDCB88218E8C054BDF /* accesslog.upb.h in Headers */, - 54E253F682499E7B30272F7C29BA41A6 /* accesslog.upb_minitable.h in Headers */, - B86A69E70BD2C146C976A3F3F264B1AA /* accesslog.upb_minitable.h in Headers */, - 6326B8D624F0E4A013B8CC620791A43D /* accesslog.upbdefs.h in Headers */, - 6D7DB9F741EAB760B1764B8D69C40EAE /* accesslog.upbdefs.h in Headers */, - 218F1A9AB538156B209CD1A42CF2B84A /* accessors.h in Headers */, - 1C8607FBC0CC64FCBA59ED17E7E7E981 /* accessors.h in Headers */, - 7680EDBE804C2798C24DA83DCAF2A3F8 /* activity.h in Headers */, - 413EA7E0158FD3162C7615E7902AAD45 /* address.upb.h in Headers */, - 64CA121A697A663A43F9F8E54BE1140E /* address.upb_minitable.h in Headers */, - BB5F2328F163D31683E37AE3C6C3A634 /* address.upbdefs.h in Headers */, - F33F49F39435931F3DE1CE0FB6C97775 /* address_filtering.h in Headers */, - 90D99B6EFED65EC62A07217494F811C8 /* ads.upb.h in Headers */, - FD7B6808E7F3197DA70FF8C960D83A68 /* ads.upb_minitable.h in Headers */, - 327F40CFA65A94EF6AB93B113E9633CD /* ads.upbdefs.h in Headers */, - 0C5FDF9F35088BDBA363377957F1F34D /* alarm.h in Headers */, - 149D02D6433BBB2B3C14C8C4D30F16C4 /* all_ok.h in Headers */, - 6ACC51F82A241FAF31D65A11199EB08A /* alloc.h in Headers */, - 8B981B0E4E81163C421569ECF3B284F4 /* alloc.h in Headers */, - 42E9DE93111D338BF145744532994235 /* alpn.h in Headers */, - 84DD519AE82CC1BE4779CB553F68BDE6 /* alts_counter.h in Headers */, - AD0008F159B323757783BD8D734469EF /* alts_credentials.h in Headers */, - F15286A9D90D0CC236E8ADDCA901228F /* alts_crypter.h in Headers */, - EBB321384E5EA5A8444210217D03A3FF /* alts_frame_protector.h in Headers */, - 9C11150F3DC52C9F31007ABC46A0A76E /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 8C5028668CD73E04AF85FB516CF6EAC8 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - FFB410B3567DA9F5B7A94157EA3A554D /* alts_grpc_record_protocol.h in Headers */, - 8A0CF1DAA9E1690F25B29A9F5E782E9E /* alts_grpc_record_protocol_common.h in Headers */, - 3987C48F5133AE28BD878F28D181353F /* alts_handshaker_client.h in Headers */, - C4F9DFF93D91DFCA0FC2B16DD50922F1 /* alts_iovec_record_protocol.h in Headers */, - DA558B158BDBA601AB1151DC5D2FCBA1 /* alts_record_protocol_crypter_common.h in Headers */, - 11A1913F7DECBE79F7F680733AD0E5FC /* alts_security_connector.h in Headers */, - A51E82F35DF3A5375F43DA0DBE7CD2D4 /* alts_shared_resource.h in Headers */, - F1B7152EC20557E09D5E6AD0E65608EF /* alts_tsi_handshaker.h in Headers */, - EEF44B960211335749903E7BBD96E7F1 /* alts_tsi_handshaker_private.h in Headers */, - 4B0F6FC6EC2461E33FF57C52C94BEE77 /* alts_tsi_utils.h in Headers */, - 54E04CAD493672E3F5FBB90E13CF3348 /* alts_zero_copy_grpc_protector.h in Headers */, - C3326FBADAFCA0BC3F68ED0960F2F578 /* altscontext.upb.h in Headers */, - 56BE670A857DE62933899B066046BECE /* altscontext.upb_minitable.h in Headers */, - BAED631505C034F7F6DB03F893BC204F /* annotations.upb.h in Headers */, - F0D6D2585AB0B8600803C48EC37A5321 /* annotations.upb_minitable.h in Headers */, - 70A2A89014C1B9A2AE8BAD5EE6203525 /* annotations.upbdefs.h in Headers */, - F3338343AEB3AE34093160EF06B9942E /* any.upb.h in Headers */, - 1D2F979ECD8C55EEA5ECD56B814EAE4A /* any.upb_minitable.h in Headers */, - D270B0E794792D256158C3CC0A42BFD0 /* any.upbdefs.h in Headers */, - D6402C2DA2BE6E034B14EA790B0EE0C0 /* api.h in Headers */, - 8AD02C3EE88A7779125BE036BEF476C3 /* api_listener.upb.h in Headers */, - 8F5B396984DB27BAF2B4E2CA11C55FC8 /* api_listener.upb_minitable.h in Headers */, - 120F997029FFCB7956BF30067976AE14 /* api_listener.upbdefs.h in Headers */, - 2BC4B98184A602222770B977B1BE2FB1 /* api_trace.h in Headers */, - 57B52DDCC033D5115CE6E23EBF0E3163 /* arena.h in Headers */, - 1503221E98F5809FFF2FC989F8A5A703 /* arena.h in Headers */, - 4DAAC02542557AEA87CC0EF61F321A8C /* arena.h in Headers */, - E11F01B9522B11585F09A6A42CA04296 /* arena.hpp in Headers */, - 12C2D45918A0FD132BDA012DC6B950A7 /* arena_promise.h in Headers */, - FAEE36623A1AF1A0DFB3368AFAF3B95F /* ares_resolver.h in Headers */, - 53883A3C4D2548AF1E253B3902670F02 /* array.h in Headers */, - 374B5F140C273F80B235E2CC71878E38 /* array.h in Headers */, - 6D15A7D1240B5C71C41E665D34174173 /* async_generic_service.h in Headers */, - 65691A660139AF0E86C57C09844776F0 /* async_generic_service.h in Headers */, - 4AD1D2FBA28A52720BE768B2938639A1 /* async_stream.h in Headers */, - 194C83DA8DFC4AAC0210F43806DAD9D6 /* async_stream.h in Headers */, - 0D2EF61C78FF3E9D1CEFF11CFEA82256 /* async_unary_call.h in Headers */, - 9A5E1FE4B134CFE056C1EA4228462B86 /* async_unary_call.h in Headers */, - 2747974DD110381E82261660BEE6319F /* atoi.h in Headers */, - 8827000B4BF7814842C29219132C8903 /* atomic.h in Headers */, - 3E6FAEFCC6AD9895D194E5B052C99925 /* atomic_utils.h in Headers */, - 218E909707E621F2957A2728CDB4ACB4 /* audit_logging.h in Headers */, - BBFB24FDFDB29DA91CAD0D82B57D1D08 /* audit_logging.h in Headers */, - 151E0A8CAA543F5A47E0F3CF78AC4A18 /* auth_context.h in Headers */, - 74A8B81ABCCA75BD0972CB5D0C824414 /* auth_context.h in Headers */, - 4A38DDCD0102375DAE0F16249E9A90E0 /* auth_filters.h in Headers */, - 1A60BA3602A815F1F09CBFEDE2D8196C /* auth_metadata_processor.h in Headers */, - CDD3FA71E749C6890B9E012062A77A01 /* authority.upb.h in Headers */, - A6A0821E6C8B755ABE9791A512610CDC /* authority.upb_minitable.h in Headers */, - 52C6CCB75FDC6946443019B3D31FD5CB /* authority.upbdefs.h in Headers */, - 1ABCD22DA9DFCDAAE1C537B769B6232F /* authorization_engine.h in Headers */, - 5DEFE60C2C324CC0F3CB0882094587F9 /* authorization_policy_provider.h in Headers */, - B4995A55A53AECDE78B558EC892B4A57 /* authorization_policy_provider.h in Headers */, - 8F8F8CB958977DA98C412C911CF9B44D /* avl.h in Headers */, - 641E3A3E06E27CA0AEED8785502CE51D /* aws_external_account_credentials.h in Headers */, - 18505975C7B4B8EB1DC2E62853C4CD54 /* aws_request_signer.h in Headers */, - 0E8A8CDECC88D1623A1E5E68E962A999 /* b64.h in Headers */, - DC3CCC43630EF0F6CA363B7B51F62FCE /* backend_metric.h in Headers */, - B755440EF7417AF7D4D0396C84E585B7 /* backend_metric_data.h in Headers */, - F2270B50975CCCF2CF731C02F0C36A2C /* backend_metric_filter.h in Headers */, - E94F606A513A8903F0EAAF53AE1A8E71 /* backend_metric_provider.h in Headers */, - AA14A6782D5FDB9C53F8E160ECF75D0D /* backend_metric_recorder.h in Headers */, - 81B27452CAEB14F9E56A47CC209307C2 /* backoff.h in Headers */, - B35CBEB0104D7FFFDF4BCD8A2B9C9CDC /* backoff.upb.h in Headers */, - DFD823787E288A85AA70780AB817F253 /* backoff.upb_minitable.h in Headers */, - 5CE5F057C51C825E99757010B09C898D /* backoff.upbdefs.h in Headers */, - 4E44C11C868326C714E6C72ABB225442 /* backup_poller.h in Headers */, - DAE21DBD964279A6D3D3201922A1376B /* base.upb.h in Headers */, - 3F8E377FB96B6CBB0BCE5C80AF925916 /* base.upb_minitable.h in Headers */, - EB1C36C64F1AC2469D701C0AD4E55735 /* base.upbdefs.h in Headers */, - E64A4117A300721B75CF441F0FDC283D /* base92.h in Headers */, - F730E6C79F157C364E406248B01C2B94 /* basic_seq.h in Headers */, - 198CFCEDAF023D57E03EAA469A029834 /* basic_work_queue.h in Headers */, - 96F7778C1AFF7062A626D244CF2E5FC7 /* batch_builder.h in Headers */, - 9CC74280347AA147C4652079AE9D9AF5 /* bdp_estimator.h in Headers */, - 5C213DC10E579AAFB1A0C5CEA80B830E /* bin_decoder.h in Headers */, - A7464DA47A7AEBF2B00F28EC60B7F89B /* bin_encoder.h in Headers */, - F048107F66C9A8162675A86182015627 /* binder.h in Headers */, - EC29A2CBA22C87EBDD6C37AFDC823C16 /* binder_android.h in Headers */, - 03634BBC6B68CFA6DCF54889C60ED073 /* binder_auto_utils.h in Headers */, - 4834EED12C77C6C8AD074A311D84D538 /* binder_connector.h in Headers */, - 8346B19F38373A1E6EE2327BEB982C20 /* binder_constants.h in Headers */, - C837933B2E8712114E6AA69E7FA4F729 /* binder_credentials.h in Headers */, - 162984546FAD0FF10AF470B56A14B77C /* binder_security_policy.h in Headers */, - ECC49AD36D451DDEE1FEE58B2EA85A2D /* binder_server.h in Headers */, - 591D599580A2395FD19E87BE94AB2931 /* binder_stream.h in Headers */, - F98602D181572861D1AD3040AD70F945 /* binder_transport.h in Headers */, - 29D18333E54D569C22512EC9F4D2E1BA /* bitset.h in Headers */, - FCF13DDDDF569ED6B3839EC926F975E9 /* block_annotate.h in Headers */, - FBA7293FD0B469C7A7CE8563528E97ED /* bootstrap.upb.h in Headers */, - 108279ACC1CC9ECC7B00FAE93B591762 /* bootstrap.upb_minitable.h in Headers */, - 48EA2C059739346B1C496801FF9B5C0C /* bootstrap.upbdefs.h in Headers */, - CE79AD485A967F03DEEECFFF4579EA7F /* buffer_list.h in Headers */, - 9D9565E41769ACD204A1D08951C18D45 /* build_enum.h in Headers */, - 525FED7A9743F7F20BE94ADE8CC09AD9 /* builtins.h in Headers */, - 938D8BB2F6C25AE69A4F88316B35199A /* byte_buffer.h in Headers */, - 7D360245DAAE0A495AF5BB6C298B57D8 /* byte_buffer.h in Headers */, - 5585BD32F09E3EC0560EC820F0ACBD13 /* call.h in Headers */, - 624835A4BB50620B3DB316DE70632500 /* call.h in Headers */, - 8CF403C6CE5A5169E7AD0AF2A9C3FD92 /* call.h in Headers */, - D69E22854B58B55CB8851D161B029499 /* call_combiner.h in Headers */, - A447A8A0BC4720DBCAB633B672A8094E /* call_creds_util.h in Headers */, - A673AC9488360B826FAC03F8E0147C12 /* call_factory.h in Headers */, - 49275A8A1D5BD254C090891F1D41E56D /* call_filters.h in Headers */, - B57BA46C28BE4965C56B8A4A28B78C3E /* call_final_info.h in Headers */, - 0B97AB53DE1B145DE37E6FDC1B19DE7D /* call_finalization.h in Headers */, - A491122D2784E2DF8EE0347B268D7F67 /* call_hook.h in Headers */, - C031979FA0C8467774A747308EEA47F2 /* call_hook.h in Headers */, - FEA4ACFD6AED333F4F4E9AF4CD6A7C3B /* call_metric_recorder.h in Headers */, - 439111B9CC36E4BC1754DDDDF1CB0E63 /* call_op_set.h in Headers */, - 9BACE92A853A61AC097203E5B339185B /* call_op_set.h in Headers */, - 92EC152444BB85514F3F291C113413EF /* call_op_set_interface.h in Headers */, - D706E200D036B86CC7BCDABFD7367B33 /* call_op_set_interface.h in Headers */, - 3AE75B819E1ACFAD08EEE7B6D57516D6 /* call_size_estimator.h in Headers */, - C18349801809C0440EBDE94683541CEC /* call_spine.h in Headers */, - 6B6389F4C66AE08A3CB14C1AF04DDD1D /* call_test_only.h in Headers */, - CB9E61126F2300FF46A720AA27D05A78 /* call_trace.h in Headers */, - 5E4DFA22E75F48FB94667DD898F072B7 /* call_tracer.h in Headers */, - 3E9CA42FD0BF760B15919FDB77B2E774 /* callback_common.h in Headers */, - EBD3BB542C711A381A53144B37517793 /* callback_common.h in Headers */, - 3E0C647FE8765D366D0FFB33592D0EDC /* can_track_errors.h in Headers */, - 6D308843AD789ACD07F9BA7047F86D7F /* cancel_callback.h in Headers */, - DAE264A402F34F6DA98CD39A09FFBB58 /* cel.upb.h in Headers */, - 463C00C4582150E1AB1E460BD56C3F13 /* cel.upb.h in Headers */, - F33738E5027E2325E04911709B9371C0 /* cel.upb_minitable.h in Headers */, - 2178E2C34516EC50343D226002BFB217 /* cel.upb_minitable.h in Headers */, - 22B8BE24F841228ACCA21FF4080BE4B0 /* cel.upbdefs.h in Headers */, - 58E52D172385D1455D160D8D7EA57854 /* cel.upbdefs.h in Headers */, - 2227FCDE625780E467C9D917A4F564F1 /* cert.upb.h in Headers */, - 53FA350057ED4A2D40B47199812B40C1 /* cert.upb_minitable.h in Headers */, - 4B36182062B3B6275D415B75B5BC5BDD /* cert.upbdefs.h in Headers */, - E5A05F72CB9CE7DB2A6FF6FB4C3AED92 /* certificate_provider_factory.h in Headers */, - 73027D793F98BB969A9D8CEBB76C5BCF /* certificate_provider_registry.h in Headers */, - 060D613B53E0A3F0DEF85B783C3A22BC /* certificate_provider_store.h in Headers */, - E1CE2937F9C63443FDE88278A496ED93 /* certs.upb.h in Headers */, - 6BC314CFDE2D7F0C8BDEBCEA62E71D53 /* certs.upb_minitable.h in Headers */, - EBF91E1627CDC5687E6AF89DE2DEF273 /* certs.upbdefs.h in Headers */, - 763A5C97746159393619F84359975EC6 /* cf_engine.h in Headers */, - ABB7F4253F97EA50024E4EB3964EEF50 /* cfstream_endpoint.h in Headers */, - 50D427DD08DC638E292E838768A5CAA8 /* cfstream_handle.h in Headers */, - FB7D2B5555A13BC1DF8D977770631359 /* cftype_unique_ref.h in Headers */, - A52A58C108B6090A52DB6F9352FF4F4E /* channel.h in Headers */, - 0DE5A3DA9348025FAC1322D2BCAF3376 /* channel.h in Headers */, - D49005B479AF357777A695ABE7CD8765 /* channel_args.h in Headers */, - 4D3C7ABC39ED7A8B32B5B635CEC0218E /* channel_args_endpoint_config.h in Headers */, - 8E97CFBE4B0AFF62CA897CCA923F4982 /* channel_args_preconditioning.h in Headers */, - 7611ACD2D66FFBC69C132E33B3BE31C0 /* channel_argument_option.h in Headers */, - 9DA8819E1D7E267895F6A31DBF8CA86A /* channel_arguments.h in Headers */, - 022397710CB7EEDF1A0884A0582D7AAC /* channel_create_impl.h in Headers */, - F9966D644277F9E1CF856B8C2CB1C402 /* channel_creds_registry.h in Headers */, - C9C824C16D5133206414C52A857407C1 /* channel_fwd.h in Headers */, - 0A4EFF69A8593DD96268982993F6BB2F /* channel_idle_filter.h in Headers */, - CCF6096484E85176978397A935A262EF /* channel_init.h in Headers */, - EB03AB9D4487C14F9EA170899AB1A474 /* channel_interface.h in Headers */, - 352E739882B54217B0C8E4C6C6FEE4C6 /* channel_interface.h in Headers */, - 39018CF7CD2D604379249D23E4CE922C /* channel_stack.h in Headers */, - 6A8DFD927A30F65B4E4B4A180AF94583 /* channel_stack_builder.h in Headers */, - F8341157A4AE09A9A01A7F595EDA2A68 /* channel_stack_builder_impl.h in Headers */, - D72AFFC7335BDC220172C6BEF4E0ED68 /* channel_stack_trace.h in Headers */, - 36AB702562E3120271C4C189C5B6F56B /* channel_stack_type.h in Headers */, - F7F30FDC85BFF88CE2FB7E8A0B8992B6 /* channel_trace.h in Headers */, - 0F98012CA6D231B6AF40CF45F65855F3 /* channelz.h in Headers */, - 5DD70D845E33A6CB78FFE63B61D28309 /* channelz_registry.h in Headers */, - 1382C2C23A80DB25515C3334DD6C674F /* check_gcp_environment.h in Headers */, - F96EE862D20AA843B502DF8FAAFB3002 /* checked.upb.h in Headers */, - 9F292485ED1E172F2CAAAFBEC5325255 /* checked.upb_minitable.h in Headers */, - 2EF26A97F091A152EB87B5C0780AA49C /* checked.upbdefs.h in Headers */, - C5CFDE9779B2381B5202B3A3CB751263 /* child_policy_handler.h in Headers */, - 54C17D07E94CE00985F196BE04A3703F /* chttp2_connector.h in Headers */, - DA3351B34FE11DF5DBDBE4105F4173AB /* chttp2_server.h in Headers */, - ABD0DE166E5E6267B49BF9A7CD09D319 /* chttp2_transport.h in Headers */, - 687C337A43804B77F799A7488096EA8A /* chunked_vector.h in Headers */, - AA304BA41F0AC8B6E4F59B542C7C617B /* cidr.upb.h in Headers */, - 20456C47F73A45A03E548186B780F7D0 /* cidr.upb_minitable.h in Headers */, - 0D46795879C33B25CEA8498EB0069EF9 /* cidr.upbdefs.h in Headers */, - D5A834CB12D2975232CDEF40E3F1CB60 /* circuit_breaker.upb.h in Headers */, - 34E3EF2285CE3AEC3DFE2D6B5260EB2D /* circuit_breaker.upb_minitable.h in Headers */, - 79D5BF73ACDB44ADDD38A189CD309954 /* circuit_breaker.upbdefs.h in Headers */, - 3CE32146E3FA3DDDBB680543C99D66EB /* client_authority_filter.h in Headers */, - 338CA38DE89771701F8B5461CFBBF3AC /* client_callback.h in Headers */, - 7B430818E3E351A271E26853DA0CEEB2 /* client_callback.h in Headers */, - 6EC4FC81E6678CA6F9306FEA272A51C6 /* client_channel_channelz.h in Headers */, - E0F67B59ACF45B92F3D307F338F1A6A8 /* client_channel_factory.h in Headers */, - A33239F682CF00E58B7988DE7E5D1D93 /* client_channel_filter.h in Headers */, - DF262A379852998C49D778FDAF7FCA02 /* client_channel_internal.h in Headers */, - 3EE27D95446A697C5D5CEAA18EA388F2 /* client_channel_service_config.h in Headers */, - 1D55AD2CA455D5AEED14DB4CFED8DD17 /* client_context.h in Headers */, - BDD98090B317A971F82CD813013E7DF1 /* client_context.h in Headers */, - 91D319ED8B30F2A62F0A7AD50F7091D8 /* client_interceptor.h in Headers */, - 2CC22486712DAF72E8DAFEA6747141B0 /* client_interceptor.h in Headers */, - 39C4DD8F92BD0AA30677B7986C1A7795 /* client_load_reporting_filter.h in Headers */, - 344A5D918214E60015DE7782778AE143 /* client_side_weighted_round_robin.upb.h in Headers */, - 33C46385130416F2CC2376C1558D0B3C /* client_side_weighted_round_robin.upb_minitable.h in Headers */, - 9349A8A407149D39D626806AD256C69A /* client_stats_interceptor.h in Headers */, - 5A50E608C7E9357E9575946C693C7463 /* client_unary_call.h in Headers */, - DDC9459AA11007E1FAB24E130F659A83 /* client_unary_call.h in Headers */, - 01B447793D546D88AF89276BFBBEB5AA /* closure.h in Headers */, - F005D7E1688B78E0CFDE036B7180938C /* closure.h in Headers */, - 7183E734666413A8F8CE2B7EE018CED5 /* cluster.upb.h in Headers */, - 2670E22D5DC3A84BD69A3C759BA8CA42 /* cluster.upb.h in Headers */, - 87C0493054929F3A03A85014ADFE3B63 /* cluster.upb_minitable.h in Headers */, - 7C23F1200851EF99497C045D56639B85 /* cluster.upb_minitable.h in Headers */, - EF3D527D453C51D7969D401C1B0E72B1 /* cluster.upbdefs.h in Headers */, - BE6B463AA990B09ADE4E5419354296C1 /* cluster.upbdefs.h in Headers */, - DCAE00342A7C1C26CE4AF7AB16028E0E /* clusters.upb.h in Headers */, - 6CE6FFE53A197D2047C3ABDA351F54FC /* clusters.upb_minitable.h in Headers */, - 05634C15EAC843AD1D816F4C82F6E70F /* clusters.upbdefs.h in Headers */, - 8962E67BCFBC0CDCD149B2E1A1D096BF /* collection_entry.upb.h in Headers */, - C3191A04CFEBB32B800631EBC36456C9 /* collection_entry.upb_minitable.h in Headers */, - B243AA849B1D91FFA111222D1292C177 /* collection_entry.upbdefs.h in Headers */, - 596913F617175C337128439AABBADCE8 /* combiner.h in Headers */, - 58A4948678D96E68D613528BBAFE91E4 /* common.h in Headers */, - 70B9A9AF1FEFB4B44DC485376000A6C4 /* common.h in Headers */, - CB88692CD34234583B6DE7F462D57467 /* common.upb.h in Headers */, - F55CDFD05665413E13965BCB291A1645 /* common.upb.h in Headers */, - D71602ED70B76CC8E5052623DEE9AD0C /* common.upb.h in Headers */, - DA8C89B23E7CDA469AF3182AD16DBB3B /* common.upb_minitable.h in Headers */, - 1B307BBE70C226129CA662594F94B9F6 /* common.upb_minitable.h in Headers */, - 6122079140AFB186673C0652AD1E972E /* common.upb_minitable.h in Headers */, - 802A8BD628DD997E2EF525027CE7CDCB /* common.upbdefs.h in Headers */, - 6F5B5D6462D2B7E28DE0E91D00870CA1 /* common.upbdefs.h in Headers */, - 0415679A402A4088846B653BE153C760 /* common_closures.h in Headers */, - 7EFCEB08E6AAEDA5684A138069D4CDC0 /* completion_queue.h in Headers */, - D45EB4CED356C7E3AF5EB67B32C18717 /* completion_queue.h in Headers */, - FB51CCD492FBEB177D2354DFC79E971B /* completion_queue.h in Headers */, - DFC11CE7E34ADA41B30BB843CC1D7C78 /* completion_queue_factory.h in Headers */, - C45CB378F9ECA9DCE1D8CA63342F8218 /* completion_queue_tag.h in Headers */, - 0A07ABF939447E967FD2642875B7F9D0 /* completion_queue_tag.h in Headers */, - C877437E6DE376A7C3FAFFB5D1A20444 /* composite_credentials.h in Headers */, - C6BD2343273539593FD53B5D01EB6F1F /* compression_filter.h in Headers */, - 8A924D0AC81415E80D7C187E59A09F31 /* compression_internal.h in Headers */, - 0B899668A64C4082E05BD6466CCBDB25 /* config.h in Headers */, - 54492B65879B9197E8ACA6BCC60B5141 /* config.h in Headers */, - 9C84A88033068A5840EE319E364AD5D5 /* config.h in Headers */, - D07B6E31110160F7EBDF9B603C3452DC /* config_dump.upb.h in Headers */, - BD8073F2424446BEB24199243D8A6633 /* config_dump.upb_minitable.h in Headers */, - 2707F63D0769C407C076E20411D6C013 /* config_dump.upbdefs.h in Headers */, - 920F02B6F49C0F0010D5395F5E7427E0 /* config_dump_shared.upb.h in Headers */, - E3AE5585CAD9309E63226FED60D1331A /* config_dump_shared.upb_minitable.h in Headers */, - A454743CFB64E17DFE30DD62F5979A36 /* config_dump_shared.upbdefs.h in Headers */, - 2FD98CB6859104D794572089A617B87A /* config_selector.h in Headers */, - 941B1E1A9835C0BA06BF40F31DAA9938 /* config_source.upb.h in Headers */, - F44BF9DAC11ECE84684BEB043FF8A0FB /* config_source.upb_minitable.h in Headers */, - 165F46E5CFD8C972B4243FBA455AB1D1 /* config_source.upbdefs.h in Headers */, - D82E303472818AC43436ED00AEDE7466 /* config_vars.h in Headers */, - D5E97A0561B93B00C1B4DF64443F306F /* connected_channel.h in Headers */, - BFB62FE5160C5D2BCB5692F8703A3BD1 /* connection_id_generator.h in Headers */, - E9BB92023802889AFBFBB9CF027C76AC /* connectivity_state.h in Headers */, - 4581B678644E9FD0C9CAE043C6A6D397 /* connector.h in Headers */, - 2016EC1264718E81C4B888821CFE4C8F /* constants.h in Headers */, - AEC3B7DE421A615FAA4AB16498C69D5D /* construct_destruct.h in Headers */, - 0FC8292F14CB3742F9443739C000664B /* context.h in Headers */, - B0B18D4702F66EC223C6C701FC2E6118 /* context.h in Headers */, - 43108799D69CBF4730C9FE7DBFA84F36 /* context_list_entry.h in Headers */, - 7C8ED435C427EA54A60A4BEE46EFCBF0 /* context_params.upb.h in Headers */, - CFAF262E0CAA28200FF3025D69986A23 /* context_params.upb_minitable.h in Headers */, - FE0D03907462E8D1DD3610798D5D354B /* context_params.upbdefs.h in Headers */, - F7A8C862E7A01173D96C2084BFCAC374 /* cookie.upb.h in Headers */, - 0456519DA04F0751BC3821D323730BBE /* cookie.upb.h in Headers */, - 29A19D6E759264029C16CE737E9CABF2 /* cookie.upb_minitable.h in Headers */, - 3A55A1AA648D648469AD6880B8F1136B /* cookie.upb_minitable.h in Headers */, - DABC98DF569F5CFE94CB9FE5F6FB2A04 /* cookie.upbdefs.h in Headers */, - 0C458EAED6CE041A9A81C90DD87512A4 /* cookie.upbdefs.h in Headers */, - 797E9BED13734A2A33A27B846B286E98 /* core_configuration.h in Headers */, - 7562D655A2B4CDF61A2EF56DBC05E1BE /* cpp_impl_of.h in Headers */, - 9C8446C6762156D1BE2751A300298A2F /* crash.h in Headers */, - 1C906576DFB908E76A4AB1F858ADF24A /* create_auth_context.h in Headers */, - 51C55A9F34067DAE1E6A6DA6A3748104 /* create_auth_context.h in Headers */, - 1ECA347C3C6F920137517335EB1EBD47 /* create_channel.h in Headers */, - 489D55A8A6ACEE13F4D2616783D75C97 /* create_channel_binder.h in Headers */, - CB3636F2FADB3E9CF932412D24A7555A /* create_channel_internal.h in Headers */, - 5CA2C44B67E145FE25CB43A8E32E68B2 /* create_channel_posix.h in Headers */, - 65C4870CBC1EE0C2502818B038294720 /* credentials.h in Headers */, - AFBE5BD72B1842518146A0404EBBA52F /* credentials.h in Headers */, - 6A901543EEB86C8323A8964D508E2237 /* csds.upb.h in Headers */, - 9EED497F9A7E21D7712974E1D8766854 /* csds.upb_minitable.h in Headers */, - 3D8FAD94F91E64766BCD0D2AD44C8EA9 /* csds.upbdefs.h in Headers */, - 41130733D51A7511F9C4BB58BC713638 /* custom_metadata.h in Headers */, - 079088292B5DA2C6CFE31C266DF5B728 /* custom_tag.upb.h in Headers */, - 9387B54AFC9E2919D0DF2222470CD788 /* custom_tag.upb_minitable.h in Headers */, - D978554E907EABAD69E1843F0B08DC92 /* custom_tag.upbdefs.h in Headers */, - 1683E7C69FF8EF0040D87551C211CAAF /* datadog.upb.h in Headers */, - 3138F349B19B07A8962759AD76A0FED9 /* datadog.upb_minitable.h in Headers */, - 6D1DF8BD88B5525D09818ED1C293108A /* datadog.upbdefs.h in Headers */, - 95D5326F1E2DC03E340C6279706E16EE /* deadline_filter.h in Headers */, - A5FEF7CE8C242391717A2B97774AFF0D /* debug_location.h in Headers */, - A035E056B112B0DD5C950B7E9BC0CE65 /* decode.h in Headers */, - 843E0B102D0DCCECA51E22FDD740560F /* decode.h in Headers */, - B0CC657F6E768999287EF080402C09E4 /* decode.h in Headers */, - 0DE32203E9A393AF90BDF335E0966D61 /* decode.h in Headers */, - D007B04015BFA75FAFDDD969C3D1FC70 /* decode_fast.h in Headers */, - C9132D556674B400597C2DD9FECE4119 /* decode_huff.h in Headers */, - D96162E8C172721F4D301F7D9C8D5A3F /* decoder.h in Headers */, - 7F4E8345D6DD229337B2159C2B7AB260 /* def.h in Headers */, - 1E2C09C8F727A068597533E75D40E04C /* def.hpp in Headers */, - D5EAE3AD2F2159B294BE4AE2BB54653E /* def.inc in Headers */, - AE269B5F9F95B5416C0CFF0565109459 /* def_builder.h in Headers */, - 122E5142ED034EE80280A173E6451E25 /* def_pool.h in Headers */, - EAD0EB99C16035473509E3919B74D727 /* def_pool.h in Headers */, - 03C0DBC79CAF47D1EB521827C6E3F0AB /* def_type.h in Headers */, - D09CC86074AFD818E10D713379E3ECCA /* default_event_engine.h in Headers */, - AE46665A46BCE98804A186225F309028 /* default_event_engine_factory.h in Headers */, - 22194014B36C9AE923A7563DB72E3600 /* default_health_check_service.h in Headers */, - 3FEB8992BDA18BE7E942E5E549C33FF7 /* delegating_channel.h in Headers */, - 962B69A9B4C6A2B9FE297A05F0174964 /* delegating_channel.h in Headers */, - E23D6E04AB41332BE60F662FA17123AF /* delegating_helper.h in Headers */, - 0E218BBE5C8089C7245309FE0D125911 /* deprecation.upb.h in Headers */, - 5BA976636B91AC5A43E23707FDF89F4E /* deprecation.upb_minitable.h in Headers */, - 56F2025E6AA25AE7C5302EBE9E38771C /* deprecation.upbdefs.h in Headers */, - B62560D8DC1C367D77F61A1EBFA37570 /* desc_state.h in Headers */, - 0970217ACFDA2CEAA206FBB87AA7291A /* descriptor.upb.h in Headers */, - 9CFF163AB0A206A00300C4EAD258B15A /* descriptor.upb_minitable.h in Headers */, - 7AEA39E648B0728D6E2CA69933D0B424 /* descriptor.upbdefs.h in Headers */, - 8C5A549C04A4DA4886BC9000B9171A3F /* descriptor_constants.h in Headers */, - 625E2F26B14ACE01B66DAB7573F8C646 /* directory_reader.h in Headers */, - 2BC1AADC3665C9DF089428F0D3C0775A /* discovery.upb.h in Headers */, - A0B77563BFBC95871C0527F6848FD376 /* discovery.upb_minitable.h in Headers */, - 2283DCC551F4955A3A07603F92C1760F /* discovery.upbdefs.h in Headers */, - B629839CA6874964F162E610927E9FE2 /* dns_resolver.h in Headers */, - 8E6D30E090167F8A943762735492A31A /* dns_resolver_ares.h in Headers */, - 29A08C85CB13692D871E1ACE10E9DABA /* dns_resolver_plugin.h in Headers */, - 6A4251427E1C3D856085E9B0A738CF09 /* dns_service_resolver.h in Headers */, - 284354979ABFCEEFD128EF9BE7D8BAC0 /* domain.upb.h in Headers */, - 0B4BC347909CC6EA01BB4187978FCA50 /* domain.upb_minitable.h in Headers */, - 0841A1246DDFA4CFF1CBE901C0078E9D /* domain.upbdefs.h in Headers */, - 012A70C8CC9579BB37DF463BB25CB2D1 /* down_cast.h in Headers */, - C062F6AB376A602EB864E1D1D2C96DC2 /* dual_ref_counted.h in Headers */, - 942B1EB160800D5489B9DAFDEEC07CD3 /* duration.upb.h in Headers */, - A772D40CFF646BA84AE133B5B4B1AF6A /* duration.upb_minitable.h in Headers */, - 34B987692D142433A6EB31F2DEC8E0CB /* duration.upbdefs.h in Headers */, - 17690E4EF99CC581EAE0FA70EBA92BF9 /* dynamic_annotations.h in Headers */, - E7CF31E93BCF03723D886EBBE11C2E33 /* dynamic_filters.h in Headers */, - 0A98127B51008D063E725CDD26A19D75 /* dynamic_ot.upb.h in Headers */, - 06F269473D2E62CAF986C020683F54E9 /* dynamic_ot.upb_minitable.h in Headers */, - 3A9471B0F81865C8BF459EADD94BD769 /* dynamic_ot.upbdefs.h in Headers */, - C6AFCD3C25C007DDFA4E89F858F9E4C8 /* dynamic_thread_pool.h in Headers */, - 9A1D360E1DBE2FC0C20ACBAAAD270DEF /* empty.upb.h in Headers */, - 04F2BF5154D8C1FDC9528E947CC93858 /* empty.upb_minitable.h in Headers */, - 53B79C35D65FD885A0F452E657F66A57 /* empty.upbdefs.h in Headers */, - B5C029E00D993753583FFFB17C885DC1 /* encode.h in Headers */, - 5DBAE38791201F074792CEBBB744A49E /* encode.h in Headers */, - 211AAB55AA0273390A73E8C6C0575CB4 /* encode.h in Headers */, - CAD698E8763DFB2421BE8A53D225727B /* encode.h in Headers */, - 11308EE96197FD2AD2E8E8AEFEB29CC7 /* encode.hpp in Headers */, - 111F6CD7F0EB36F848771E31B9C866F1 /* endpoint.h in Headers */, - 4C03887179408C2DE8D99F1B701885A7 /* endpoint.h in Headers */, - 3D7CE2BEDFB382D901146813BCB1CF9A /* endpoint.upb.h in Headers */, - 36256FBB8871BCF3D54098D96EB263A0 /* endpoint.upb_minitable.h in Headers */, - 8DD9E2AF1FA04B4B9F52D0B4C97593A6 /* endpoint.upbdefs.h in Headers */, - 79BFAC0F1F8A60274111A8BBE87FD7DD /* endpoint_addresses.h in Headers */, - 8D4AA5FB4EEEBB86D62A53150DDB1FD7 /* endpoint_binder_pool.h in Headers */, - 648F0BD647272C94F476A934BDE3D4FD /* endpoint_cfstream.h in Headers */, - ABEED864C9698AF415E6AC7E71906D0E /* endpoint_components.upb.h in Headers */, - 3B9F7FECDCD78B1595E49943DE02C40B /* endpoint_components.upb_minitable.h in Headers */, - 045B99866D1C944EEBC279D004F59A81 /* endpoint_components.upbdefs.h in Headers */, - 327EF813BF4BAD729536019C32848596 /* endpoint_list.h in Headers */, - 05C847A1CA493B124B7D1035DDA8AC2A /* endpoint_pair.h in Headers */, - 0BCD08F1B42F2F00C5989852BF063BC7 /* enum.h in Headers */, - CEB6F310DDE558890E97C530E6695937 /* enum.h in Headers */, - F39C41C0BE1677DC8E5BE0217A284257 /* enum_def.h in Headers */, - 2BC6962EAE9BFD7C39AC74B76651D02C /* enum_def.h in Headers */, - 10E591FBF40C1B8FCF0566DEA91C13C6 /* enum_reserved_range.h in Headers */, - 225D34CF89A87617AD6C330472994817 /* enum_reserved_range.h in Headers */, - 5F38546A5EBC776E61A9C99C01CC7978 /* enum_value_def.h in Headers */, - EF9D1C99BA065BA74E63AB2D973E0FD1 /* enum_value_def.h in Headers */, - B9208155240D504E21B923D343BF22B4 /* env.h in Headers */, - CF6BA2697199CB74C70A855DD134BB40 /* eps_copy_input_stream.h in Headers */, - A0AD531F2A0F22B85EE160987249D0CA /* error.h in Headers */, - E4199F715166657E659400A8F01F95EB /* error_cfstream.h in Headers */, - 2C39D1F015BBE512A757D73B14F4AF4B /* error_utils.h in Headers */, - 465CE6A44CCF653E39967782235CCF33 /* ev_apple.h in Headers */, - 773D96A97A424A704A08160E1A84390B /* ev_epoll1_linux.h in Headers */, - A84941D6F0F7FE3772131729417B861A /* ev_epoll1_linux.h in Headers */, - 8B446A5C3F8E4F838951D7F6727BAE30 /* ev_poll_posix.h in Headers */, - A477CE4CC779F4B8FEAC5DF2C6FC32BD /* ev_poll_posix.h in Headers */, - 42510EA5EEAA57992214D869FFECE9BF /* ev_posix.h in Headers */, - 68AC2C51B2EC5FD0570B31519207259C /* evaluate_args.h in Headers */, - 5F767C98AE9C33920239EABEEA38E269 /* event_engine_client_channel_resolver.h in Headers */, - 76AFDC816CE82BB4BEDF1A16D1F7464D /* event_log.h in Headers */, - 52FCA997A800537C0723B4A435BE2292 /* event_poller.h in Headers */, - 6E32C7F5E0C7333749044903CA624558 /* event_poller_posix_default.h in Headers */, - 12FF4E0BAFA1DA818B76DE1F2F3DEAF7 /* event_service_config.upb.h in Headers */, - F98F784B456669C9BF60421A6BC86393 /* event_service_config.upb_minitable.h in Headers */, - 4F05651D45799AF4F51000A1AEA496CE /* event_service_config.upbdefs.h in Headers */, - 42EBE3482E171DDB5A2CADD34E449BC5 /* event_string.h in Headers */, - 7C82A93A3B89CB63EE6A177B60FBD3D1 /* examine_stack.h in Headers */, - DAD2F38A22F55316CE67DC8BC6E43751 /* exec_ctx.h in Headers */, - 9662D1FA70F1D0E174DF655E4BC67D4F /* exec_ctx_wakeup_scheduler.h in Headers */, - 6AAE21B6D946A6D07D89BAF6283DC151 /* executor.h in Headers */, - F6ECF6BE207D9C69FD46EB4296518B2E /* experiments.h in Headers */, - D24D36AC0F73DD5F74FF7D5E74425B90 /* extension.h in Headers */, - 02D0B11556FBDEB6A0326A06ED944077 /* extension.h in Headers */, - AC8887E1F34F3FE2D498F03C5B126CEB /* extension.h in Headers */, - F21ACD6760313FF2560EC3E2777E4E5B /* extension.upb.h in Headers */, - 677869FC0C95F5F87A6EBC2C4BAF6CF1 /* extension.upb.h in Headers */, - AA089C28EFD9426047531753DC35C9A3 /* extension.upb_minitable.h in Headers */, - 6E8F9DCF642689178364355F5E5CA0D4 /* extension.upb_minitable.h in Headers */, - C02C18D424DDB445EBBAF761FEA5D318 /* extension.upbdefs.h in Headers */, - 6288E3A326822ED5F44C1C90199F97E4 /* extension.upbdefs.h in Headers */, - 059B9B68813219C4D40032EFF28E4352 /* extension_range.h in Headers */, - 55D8685C2D3B07FB1513389B210830CD /* extension_range.h in Headers */, - F8576F77214942CC85814EF1AD796B3F /* extension_registry.h in Headers */, - 29415ACC6AA34C018DFEB35178263A3F /* external_account_credentials.h in Headers */, - A1825D9FFDC1B9485B3C57820E85DFF8 /* external_connection_acceptor_impl.h in Headers */, - 2AEF14470493ECC1C04251F703A026E1 /* fake_credentials.h in Headers */, - 92D065D762FB6A744EE90DA3B709841A /* fake_resolver.h in Headers */, - E851C605E232F27B6AD8ABC235E111D6 /* fake_security_connector.h in Headers */, - 9E2830A7957B84DD5285D77B8606F572 /* fake_transport_security.h in Headers */, - 4AB6B7654C438469DEF40F8B56748BEC /* fault.upb.h in Headers */, - 851B541A7DFC70251664B1AB4448E2B2 /* fault.upb.h in Headers */, - FE44CADCDE6BC752CE56AC9B2B7F9AB7 /* fault.upb_minitable.h in Headers */, - 6CD1FE274EE7938AB398606D0FD667B4 /* fault.upb_minitable.h in Headers */, - 7EBE13B76768F38CF3C40FDC57F255C3 /* fault.upbdefs.h in Headers */, - 3881B8C2F19664D8635E2AB35F7E6177 /* fault.upbdefs.h in Headers */, - 42D2F40AED03D1C2518C38ED4FA98DC7 /* fault_injection_filter.h in Headers */, - 5837D2E0B8A4294BEB4D1115D2A8D0B5 /* fault_injection_service_config_parser.h in Headers */, - 4BF9A2B16AC0E5DBA17587AFA8F5C549 /* field.h in Headers */, - 3A35581441E5C4C4723BA5A14287CE59 /* field.h in Headers */, - 6C375EEFB1439628BA5818C941467644 /* field_def.h in Headers */, - 7B7C4F7DB1686DF5BDB69C2402DAE1E8 /* field_def.h in Headers */, - 22EAA58B9C88384872FC21B2341A8912 /* file.h in Headers */, - 32FCF11D9B74AF6A71ECCB3DB407F63B /* file.h in Headers */, - 3617CB95069862B7DAE912A41CBC7053 /* file_def.h in Headers */, - AC57D487695B4EE1DDA0C2BA61B6EEA4 /* file_def.h in Headers */, - 0A42EEA1E44BCAF508A77FBF8552FFDC /* file_external_account_credentials.h in Headers */, - 76DEA9F0F721A5575EE97006F8B132BF /* file_watcher_certificate_provider_factory.h in Headers */, - 705F2EB88758581444C5CD2FA0560868 /* filter.upb.h in Headers */, - 748CCFF1879805F267F9863AB6672CA3 /* filter.upb_minitable.h in Headers */, - 9283093F842E22CCF3BDECE957B86E1E /* filter.upbdefs.h in Headers */, - 051D317548C6EC1B555E98CEE7FDC1D2 /* filter_state.upb.h in Headers */, - 1B53404008CFC256F613D2977AC510E3 /* filter_state.upb_minitable.h in Headers */, - 711B6C5B13FB4ADE87E1C9E85E22B14C /* filter_state.upbdefs.h in Headers */, - 207BFDC8FFA4A3ED171B362928AFF0D3 /* flow_control.h in Headers */, - 195F08410620E1860C75045478D7C302 /* for_each.h in Headers */, - 3738B9983D732A63FE86121A82E9138C /* fork.h in Headers */, - 104F05F77E35BAB76FB1F608C3EC4F14 /* forkable.h in Headers */, - 4AAEC33D76B0431D2AF9BE034454A8BE /* format_request.h in Headers */, - 57B5FC595704A33D7F1A788FA2942067 /* frame.h in Headers */, - 65B89183ADB4EFFBCD83B1DDFA58F072 /* frame_data.h in Headers */, - C06ADA9F82D222518F85528CE7DE1025 /* frame_goaway.h in Headers */, - 4660BAE7F04CEFFDA5FD5309F393A751 /* frame_handler.h in Headers */, - 8D9F47ABAC44D145A6956529AB44BD4A /* frame_ping.h in Headers */, - 6720426B9CACB22D45E40CC27C3B9933 /* frame_rst_stream.h in Headers */, - 7829AA95019266174C700D570A28EE69 /* frame_settings.h in Headers */, - F33395D0088A8D83D6CAC0184BFBCA9B /* frame_window_update.h in Headers */, - C9C02D66E7DDC66C33451318810661BC /* generated_code_support.h in Headers */, - 9F4255A7D5E5C072DBD3E49A7C8A871E /* generic_stub.h in Headers */, - F7C7869E54119791C8CE161CC63E8D71 /* gethostname.h in Headers */, - 04F3A77D6F797609339058CE7CE8C493 /* global_subchannel_pool.h in Headers */, - D423BEFA7C50F9A2F0A459645FE12DE9 /* google_default_credentials.h in Headers */, - CEF920278BDD534EA64A0F664F27120B /* gRPC-C++-umbrella.h in Headers */, - 61581907672CC6DFAAD07B9954BB58CF /* grpc_alts_credentials_options.h in Headers */, - C985161C7404C5A3E8278F94370DC5DF /* grpc_ares_ev_driver.h in Headers */, - CA09BFF5F9086330ED37F7B99089DBF7 /* grpc_ares_wrapper.h in Headers */, - 74670BC6A50D145188F53603A9CF9E61 /* grpc_authorization_engine.h in Headers */, - 4F192EB06A177DDDAC8D8C65761B3203 /* grpc_if_nametoindex.h in Headers */, - 842CDDD759039123DCFD185FAAAA8597 /* grpc_library.h in Headers */, - C0565DCE9688905B57742EAD6D2D3F30 /* grpc_method_list.upb.h in Headers */, - D4073BE5B393980F331A1D2C716E40C7 /* grpc_method_list.upb_minitable.h in Headers */, - 2A425612E3CB0C0D41D67088404E7E3D /* grpc_method_list.upbdefs.h in Headers */, - 95D1955584F5147D5A97B08F0AD2DFE5 /* grpc_polled_fd.h in Headers */, - 897EA35FB8B39BCCA9D4EB818B92CE1C /* grpc_polled_fd_posix.h in Headers */, - FE11DDBBDF36498F937127B91B53A002 /* grpc_polled_fd_windows.h in Headers */, - 11A5116CDA24B288E7FE1BDCE6F48648 /* grpc_server_authz_filter.h in Headers */, - 4A9D65AED21C5A3FCDA09A0622A613AD /* grpc_service.upb.h in Headers */, - 43A66794D4FC02FF29EDA0E2FF90E899 /* grpc_service.upb_minitable.h in Headers */, - 9555AA73B2E2597538632BB767B60E68 /* grpc_service.upbdefs.h in Headers */, - 5BA7C55521E4B6580F336BCDC9B32B9F /* grpc_tls_certificate_distributor.h in Headers */, - DDD9095E64595238997492783C387BB8 /* grpc_tls_certificate_provider.h in Headers */, - 700BA9E5AD34060E345213A0671FA3DF /* grpc_tls_certificate_verifier.h in Headers */, - CA456BAA6CA75DBBE1F48857B42896C6 /* grpc_tls_credentials_options.h in Headers */, - B88927D8FEE5A83DF881F47755D4A9B5 /* grpc_tls_crl_provider.h in Headers */, - FBBC3D1320A1A83A267095192C4334E1 /* grpclb.h in Headers */, - 5D8D4E977170058F3277081BE0246066 /* grpclb_balancer_addresses.h in Headers */, - 2A9FF82EA4A002EDA6A167580397505B /* grpclb_client_stats.h in Headers */, - 58A6D53325114B9847B28AB0013E8D8D /* grpcpp.h in Headers */, - 7E1E55A40E4A71697A19BFEE5E513696 /* gsec.h in Headers */, - 5D4EA28B342B4FD079B5E01EE1A379FA /* handle_containers.h in Headers */, - D76D67D7E867ECC22730CC0CD535DC9A /* handshaker.h in Headers */, - FE1B590113C70C315C29B31626E4185C /* handshaker.upb.h in Headers */, - 128DF8264151547334F6D07EFA120453 /* handshaker.upb_minitable.h in Headers */, - E6C3576525DC87D0161585AF256D13B7 /* handshaker_factory.h in Headers */, - A6F36D482A05C84D3D4ED1648E66C8D2 /* handshaker_registry.h in Headers */, - F4D5A143E6DC021828920F14AF869611 /* hash_policy.upb.h in Headers */, - 2731AFE5AB24717F2A27BC093530BD3E /* hash_policy.upb_minitable.h in Headers */, - D05AD3A28E5419BC576CD77088C28BBF /* hash_policy.upbdefs.h in Headers */, - 3CF8141B89C0EEABE867302089B88219 /* health.upb.h in Headers */, - F2A65333FDDF61EE2EC4C71B2FA6C0FD /* health.upb_minitable.h in Headers */, - 6007501A4CE6C4E4520E018381F6A87F /* health_check.upb.h in Headers */, - 22B66C8CC3B61B5C78EA9C9FEC75087E /* health_check.upb_minitable.h in Headers */, - 3E1897BF8595F8907091BE7E15A2318F /* health_check.upbdefs.h in Headers */, - D3323708EFCA11DF2BF97387422C6C2B /* health_check_client.h in Headers */, - D0645EB3D7CFCF27E5EFCE70C18A1FE2 /* health_check_client_internal.h in Headers */, - 60F7BCDFBFDA56873A2E7021582E8D21 /* health_check_service_interface.h in Headers */, - F5C505A1F8FF89AA92C5A856A9AA5A35 /* health_check_service_server_builder_option.h in Headers */, - 1159FC2153BEC7FFDE2B748A1AD8F8F4 /* histogram_view.h in Headers */, - 308E750279A3196C03997561D3ED53C8 /* host_port.h in Headers */, - 3A9C8ED678E2EACF93E726E235448FA3 /* hpack_constants.h in Headers */, - C06DE015AFB42752E67E2543A81B70D4 /* hpack_encoder.h in Headers */, - 4B4B943013E8B78550560D23811B9B65 /* hpack_encoder_table.h in Headers */, - 0FF2E68C21E0575B4CFD5E1F62B6A739 /* hpack_parse_result.h in Headers */, - 1A3AD848178BFE83B7AF856EF3623399 /* hpack_parser.h in Headers */, - 8C4A8A07AC57AB09AA112390A517FB4F /* hpack_parser_table.h in Headers */, - 524DC30524EBE4F844D474B0D6351085 /* http.upb.h in Headers */, - 405677C959A60A4E39A7F3DC773E1474 /* http.upb.h in Headers */, - B71933A3800838D1C924456A83B200C6 /* http.upb_minitable.h in Headers */, - 16979390FC512628007F43F6CF9D64AB /* http.upb_minitable.h in Headers */, - 241D2DB83F157C81B3B6FBA871F51B4F /* http.upbdefs.h in Headers */, - D1547451CB0AF5E24F818FEDFB4B66A9 /* http.upbdefs.h in Headers */, - 857AE670E8F907B5B0E25B9284E2336C /* http2_errors.h in Headers */, - F33DDDEB59B4EB9B8D7A4DBB28AA1DAF /* http2_settings.h in Headers */, - A69599C87D3CC79682542E8C057CD6A4 /* http_client_filter.h in Headers */, - 9C83977A1D8E97F415D0FF23BC9F80B9 /* http_connect_handshaker.h in Headers */, - 7522B3FCC33AE5369FAC560B7A38C037 /* http_connection_manager.upb.h in Headers */, - C3DF48B131F6A26AD2FEDA2AB348A15C /* http_connection_manager.upb_minitable.h in Headers */, - FCA432D971AF09574097B810EA41D34C /* http_connection_manager.upbdefs.h in Headers */, - 21928A88BDF134D05D3A68405255578E /* http_inputs.upb.h in Headers */, - 787FC2F926ED5C9FA49025D63F2081A4 /* http_inputs.upb.h in Headers */, - 80A4FDE27E0082B4464DD69C570EB33B /* http_inputs.upb_minitable.h in Headers */, - 9EF4B2233221AFDE2C6E7B7F99C28977 /* http_inputs.upb_minitable.h in Headers */, - 54EB3821A0B9CB6BAD54227D2DE9501F /* http_inputs.upbdefs.h in Headers */, - AAC886A65B429B7E5EF926DE2D56CA92 /* http_inputs.upbdefs.h in Headers */, - 5418BC38EF9647BC3E22F6581027FAB9 /* http_protocol_options.upb.h in Headers */, - ADD3416E1284B6055765C11777493A28 /* http_protocol_options.upb_minitable.h in Headers */, - EC5CD8777C1A94FEC6A9E7F40CE946F1 /* http_protocol_options.upbdefs.h in Headers */, - 6B64AB4D66DB14FA75DF30935B9BEE31 /* http_proxy_mapper.h in Headers */, - 9E69B4AFEFB7AA51EBE2F1BAA1CBB420 /* http_server_filter.h in Headers */, - C770A762B733B98CEA17138F413DA658 /* http_service.upb.h in Headers */, - 801737049F8A7E998D567175EFB4FCE2 /* http_service.upb_minitable.h in Headers */, - 5212C1B95A2B6883151FD8E98725FC2E /* http_service.upbdefs.h in Headers */, - C6BFEAD211F6FB3F74B28DA598BCA645 /* http_status.upb.h in Headers */, - 8B61B2A3D0702C887FCFDCEE899EF97E /* http_status.upb_minitable.h in Headers */, - A643CC4BF8DAE052CD0FBDADC1F66547 /* http_status.upbdefs.h in Headers */, - A479B61B31B3C15165C411A5B58ADDE7 /* http_trace.h in Headers */, - 6329790921BE54370A3663643DE2C501 /* http_tracer.upb.h in Headers */, - 6B81C34EF305D6B479187D12C25BCAFA /* http_tracer.upb_minitable.h in Headers */, - 597A89EEF9A12A4F73A33C5A27B3ABC1 /* http_tracer.upbdefs.h in Headers */, - 19C267F22EC1480079654D9036281D81 /* http_uri.upb.h in Headers */, - C3D318E394038F84D88F165BADF7BCED /* http_uri.upb_minitable.h in Headers */, - BB51F53D59186317A26F3605A291A2C2 /* http_uri.upbdefs.h in Headers */, - 5304EE528042929C470DAA555BB065C2 /* httpbody.upb.h in Headers */, - A439426108EB453D57AAE950422B8441 /* httpbody.upb_minitable.h in Headers */, - 4C185C9DED6ACD6D28CD2C3B900E45B2 /* httpbody.upbdefs.h in Headers */, - 0C4FB8C2CB7FC2F6CC01D716BA685658 /* httpcli.h in Headers */, - C3E50923A590167E88999A8908AC1350 /* httpcli_ssl_credentials.h in Headers */, - 1A4AF85DF2CE8441BDD035298896BBBC /* huffsyms.h in Headers */, - 1C61B990F3AFC8F4EF5CB4757B67A67E /* iam_credentials.h in Headers */, - 59B8CF84ED2C58BC1EEFB79CA0ECFF5F /* idle_filter_state.h in Headers */, - 3DBC3D01636C6A18CD06F3C2E7598A4A /* if.h in Headers */, - 9883B22A2770934FB78EC52D28A62170 /* if_list.h in Headers */, - C6BE2E8B6841C9ACCC75FB4CF0E66C8A /* init.h in Headers */, - F2201097F64837A2540EE19BBA3F7EAF /* init_dump.upb.h in Headers */, - 5029C184BF77486244122506E0E646E8 /* init_dump.upb_minitable.h in Headers */, - 9C652FE3879ECC31E7C684A42061DB1B /* init_dump.upbdefs.h in Headers */, - 71672B81E48C7D5585F8B091D497E0AB /* init_internally.h in Headers */, - 76C345834C76354D120AE29E9400A3EC /* inproc_transport.h in Headers */, - F45775B92A75028DC5D772E84D8C2E17 /* insecure_credentials.h in Headers */, - FC68D72077B700AAA3875302CF71728A /* insecure_security_connector.h in Headers */, - CF62616357586D3EDA5348B892658688 /* int_table.h in Headers */, - E58F8377B14D2EFE8938B2A1DC945A69 /* intercepted_channel.h in Headers */, - 53285CE6B45175C8E1EA335FBAFDBD4F /* intercepted_channel.h in Headers */, - D058E3FBD46D9EB98AE176296B2FC752 /* interceptor.h in Headers */, - E57B8CF18A511584F2B24A38D994E840 /* interceptor.h in Headers */, - D5FFBF589B6B53C20DC7807ABA8A62B4 /* interceptor_common.h in Headers */, - C4D29FFC1A90BC6E5F95A5DDC80EE910 /* interceptor_common.h in Headers */, - 96A2380DA1B7B590223C3FF927D04BE4 /* interceptor_list.h in Headers */, - A967EC6940969705FA6034A0474CBDF6 /* internal.h in Headers */, - 8B5B303B2077D5526480162345E05623 /* internal_errqueue.h in Headers */, - C25CAD71F8186F0332B000EA6350C711 /* internal_errqueue.h in Headers */, - 5BC2FE4635C0259773B40813642EB43B /* iocp.h in Headers */, - 4B9FE693FC527C1975E58718615666F0 /* iocp_windows.h in Headers */, - E23345CDB48AFBB02C52E746C2032EBD /* iomgr.h in Headers */, - D43A8805C6C8BF8DCFDEFFDAE37D6B3C /* iomgr_fwd.h in Headers */, - D2DB1B2B1048221F7C47D325FFD05F3C /* iomgr_internal.h in Headers */, - 9B98815C1849ADF0966AE07B971EE9C9 /* ip.upb.h in Headers */, - 95DCCC8DB65B952E86A25B882ABBE06C /* ip.upb_minitable.h in Headers */, - 25A2C46F65CC1921D95B593666F0D25A /* ip.upbdefs.h in Headers */, - B20E5CDB96E6D4D5574157BC373F1AF9 /* jni_utils.h in Headers */, - 937472ACDB18D07C14A1E951EFC058B9 /* join_state.h in Headers */, - CBA77DE21CDEAA45428C9AADF929AE3C /* json.h in Headers */, - DCFA3549A4348E5B31CF5027B64D7FA0 /* json_args.h in Headers */, - 612C0059074CB5EE04225F87DBA9F9BA /* json_channel_args.h in Headers */, - 369C3261B2F7AF97F2552AD7C5366826 /* json_object_loader.h in Headers */, - 6C63008003C88211035126B3B2B8C10D /* json_reader.h in Headers */, - 87083792980A670EF14D2F759D6716B3 /* json_token.h in Headers */, - 2FFAAE75623726A050487CBCF018A5E5 /* json_util.h in Headers */, - 20156FAF337544F29BE5EE9F47645D1A /* json_util.h in Headers */, - C7DD2C1E1E5C80763CE9B45408650C57 /* json_writer.h in Headers */, - 51D109876C2918DEC7ACC7B83D15A943 /* jwt_credentials.h in Headers */, - 71920D719E65F523C1FEA33A4374CF86 /* jwt_verifier.h in Headers */, - C2436F0411C722CC7D5E72F30A04E48C /* lame_client.h in Headers */, - ED8A84DA032073B9628BEF224EF9DA3B /* latch.h in Headers */, - 59BA7C48B34F41F2FF7D5D7663086A76 /* lb_policy.h in Headers */, - E9AFCDB895BBBB8A9B8B2DAAE34CDCD3 /* lb_policy_factory.h in Headers */, - 50C16D6C23B12208ACAD60062321099D /* lb_policy_registry.h in Headers */, - 18DC6E1A84463DE1231322C9EAD59482 /* legacy_channel_idle_filter.h in Headers */, - A8C7A3287E301F8F2A2A528831ECA4E3 /* legacy_compression_filter.h in Headers */, - 72DB9523F117597867667F5412A035F2 /* legacy_frame.h in Headers */, - 3707F1D0029DAE580D7CDACE085C70EC /* legacy_inproc_transport.h in Headers */, - E33718D962CA34738484CF570AD0FDB4 /* lightstep.upb.h in Headers */, - B3B72EF77568175381F037C31BD8BB96 /* lightstep.upb_minitable.h in Headers */, - 8B5296A77743697EFB868CC44071E1F2 /* lightstep.upbdefs.h in Headers */, - D10229CF1C0BA8094A2069D33C62CE97 /* link.h in Headers */, - 03CEA2B6C9484198ED725C057A782F66 /* listener.upb.h in Headers */, - 817D51B3E46DDBCCA9422D61040166F7 /* listener.upb_minitable.h in Headers */, - F0A10DABC915BB86267C55A737324E5F /* listener.upbdefs.h in Headers */, - 9DF8E9150D18053AD19BB10A6A211427 /* listener_components.upb.h in Headers */, - 58B35A8AA0EFF48D9ACE5CBBC6985912 /* listener_components.upb_minitable.h in Headers */, - B5EB8BB3E7A42BAAADCC324D982D673A /* listener_components.upbdefs.h in Headers */, - D8F9E788E45364B05178E822A65571A2 /* listeners.upb.h in Headers */, - 9948ACB77F672BBECDFA95B53405DFB4 /* listeners.upb_minitable.h in Headers */, - 7E6F5249FF05641DDD905073B2227C98 /* listeners.upbdefs.h in Headers */, - 1B5B10740A2175D5C46F016DE884298E /* load_balancer.upb.h in Headers */, - 4AEEA5B854AFC582B8A318A114F52C44 /* load_balancer.upb_minitable.h in Headers */, - 6EA4C66987D8DD1C0233C3B6663D3FCC /* load_balancer_api.h in Headers */, - F51F92042E6B319131DEA96E59D0F161 /* load_config.h in Headers */, - 9C0771C278439A8239C312C3424AAE66 /* load_file.h in Headers */, - D8AE723B80504ABA043EC5A44852BC14 /* load_report.upb.h in Headers */, - 5E3BB38735CC68C50DCEA1DB5AD90FED /* load_report.upb_minitable.h in Headers */, - 4014616FFA975ED2234FECC282150225 /* load_report.upbdefs.h in Headers */, - 440DB0AE39A9A5841013DABBB23A8DDC /* load_system_roots.h in Headers */, - 119899BDE16A40333200E80A36F2C307 /* load_system_roots_supported.h in Headers */, - D6F1472263A9719B9192CD1E43F123E7 /* local_credentials.h in Headers */, - 03544FA088244D4203470560700B2DD4 /* local_security_connector.h in Headers */, - 4F25DEF67C04916CAD27B6B34F864D59 /* local_subchannel_pool.h in Headers */, - CAA0BB72A551A1BC748FB516C4801A2D /* local_transport_security.h in Headers */, - 38940046B32F87D21062BA6A30B8872D /* lockfree_event.h in Headers */, - E3B7DCF95F4FFB9D28DA730128E64558 /* lockfree_event.h in Headers */, - F148B9CDF5A1182C1898B036D8CE4C1D /* log2.h in Headers */, - 3F3B208285D9B785BDE49E4ECD1C2704 /* log_internal.h in Headers */, - A7E5504E200646DC1FB5D70E9E29EEC8 /* loop.h in Headers */, - 318163E84408DD33D984C2C980E7CACE /* lrs.upb.h in Headers */, - 52B2786B66B86C96B4BFC16E5F42F599 /* lrs.upb_minitable.h in Headers */, - 4CA0B476C14DF59C2A28AF7EB81E537D /* lrs.upbdefs.h in Headers */, - 98B91D8CA2BE77F2265525A05B596EAB /* manual_constructor.h in Headers */, - 006DA721D6BE8135FA7C1443FDEBA1A5 /* map.h in Headers */, - 96F694C98C68D5C2965ED76A43141E5E /* map.h in Headers */, - 6F7EEA0A119430F0E28F41F5AB388AE0 /* map.h in Headers */, - 562B5D8BA8A5A0BD8E9A2D2ACAD93090 /* map_entry.h in Headers */, - 5BB6FB1FC2420415DA2E2BBD5390BE07 /* map_gencode_util.h in Headers */, - 20FD62234A087726B03BD43150318BAE /* map_sorter.h in Headers */, - A1D47A1AF1C681800C544C9E9F4BAF87 /* match.h in Headers */, - 7C7C0B6299FAA3DA21581DC69549B635 /* matcher.upb.h in Headers */, - 0880F4FA128B5123D3669F8D77234640 /* matcher.upb.h in Headers */, - 308B9AB6619913DFA381A5D19E37F849 /* matcher.upb_minitable.h in Headers */, - 52BDC21AC8295F042BA519ECE75FD3E5 /* matcher.upb_minitable.h in Headers */, - 8B58B6BABCBB345CA191A1FD74BC09EC /* matcher.upbdefs.h in Headers */, - 445CDA724650583DFC5A50C07B8C7E35 /* matcher.upbdefs.h in Headers */, - B932430BA9BC234A887C63E2347ED838 /* matchers.h in Headers */, - 8DD5BD8E08600B6BBEC787D57AFEC7FA /* matchers.h in Headers */, - FD1E440A32753F78A9F400C7EAA3E124 /* max_concurrent_streams_policy.h in Headers */, - 7DD70CC31B3D2578BD9909C0D9228B8B /* memory.h in Headers */, - 4C6CF296D3EBF0B06A4FFF67E0D8CC20 /* memory.upb.h in Headers */, - 72D3278FBEDC8BCF4819DC17C2662E45 /* memory.upb_minitable.h in Headers */, - A51BDC374E58EEDD293E892E42EE9953 /* memory.upbdefs.h in Headers */, - AA827A748F5E2213D98B41933A6AF1D0 /* memory_allocator_factory.h in Headers */, - 8A8EBE6FAFC61428AC04290D410C550F /* memory_quota.h in Headers */, - 3CD465971BE32FF09CAA8FF61BAC730F /* message.h in Headers */, - 792AB8B027F2F4D3C8563543909D4D2C /* message.h in Headers */, - BD2CB1F3FB4762F084F9B1ABD212427D /* message.h in Headers */, - F5D9821B9904741CB9573C2C8AD68364 /* message.h in Headers */, - C83F091A15A2C40D021EF3C0727C468C /* message.h in Headers */, - CC9E2A345FE6ABF925C4AFA01730088C /* message.h in Headers */, - 29B901666BF1763C0CE0910FB142AA91 /* message.hpp in Headers */, - E0B427E0379D7B183999D3A49BCEF202 /* message_allocator.h in Headers */, - 023299A416A9258A1070CFE31489DCF7 /* message_allocator.h in Headers */, - 13CD86899306A2A77E66C64E62577EB8 /* message_compress.h in Headers */, - A0F6F90F47E2416F528E1DC8418C0752 /* message_def.h in Headers */, - 9DCFDFDA41DDE4235233A8A0B0DB9DDF /* message_def.h in Headers */, - B4C46EF9B3BAEC8F4B143933777641E4 /* message_reserved_range.h in Headers */, - 46417CCBAA0267F09BA7BFAD819C94BE /* message_reserved_range.h in Headers */, - 7D36A1330BBDA22F46730A2E19CCEF3C /* message_size_filter.h in Headers */, - E59C021D68658F59BD8E62DE42F5C113 /* metadata.h in Headers */, - A4A79F91F53E5CE9BF310DCE7D3FAB6C /* metadata.upb.h in Headers */, - 70227EEEDED06FEFF3B7A8AFEBCDCAB4 /* metadata.upb.h in Headers */, - 026D67F7AA3B9FE083C7CDF4A8FA80D6 /* metadata.upb_minitable.h in Headers */, - 257E9C7BDB2C51A273F36127A8454AE3 /* metadata.upb_minitable.h in Headers */, - F8C6939759685A26EF0430152A64B593 /* metadata.upbdefs.h in Headers */, - 0E13127E5B27D6A3B5B8D8C6F616E3CD /* metadata.upbdefs.h in Headers */, - 369CD3A3307B90445A9AC8C4A599B49E /* metadata_batch.h in Headers */, - 91A34EBAE475871ACD7B5417B91B7FE9 /* metadata_compression_traits.h in Headers */, - AB9183CC089491543B6B8397DF83A36C /* metadata_map.h in Headers */, - 6AC33B6D3F8E0B471E2FD0104EC8B5A6 /* metadata_map.h in Headers */, - 609B72FA4A55DCB6349A9FF8A129CB81 /* metadata_query.h in Headers */, - D89B854F15B6116978C31C350DA6293E /* method_def.h in Headers */, - 56FE17D62C361FF750AE513272FD8F35 /* method_def.h in Headers */, - 210CC5A3DA54B06EC13B67EAEB8AACD1 /* method_handler.h in Headers */, - 86E6491E17C71A8C75CD839807185A56 /* method_handler.h in Headers */, - BD85196C13B72E70CCFD32259976B87B /* method_handler_impl.h in Headers */, - 10BF727044456DAE9F4EBB795426E15C /* method_handler_impl.h in Headers */, - AFD4E073181F4E6451F32BED22DB2A8B /* metrics.upb.h in Headers */, - 97F8ED1F7658AEE9D65063AE7AEC9308 /* metrics.upb_minitable.h in Headers */, - B916C7C907BAB1359B6AB8A32C9F4D2C /* metrics.upbdefs.h in Headers */, - 8E3B1956C50F12F71BDE727A035AE167 /* metrics_service.upb.h in Headers */, - 8377E5EB843B6C98AAF927C9C3BA3896 /* metrics_service.upb_minitable.h in Headers */, - 9BFC49B851034E608664A590A5353F50 /* metrics_service.upbdefs.h in Headers */, - 93B9C6989F827B1591022E3A88457DAA /* migrate.upb.h in Headers */, - 9055E86C091B0047A05AA7F0473AA002 /* migrate.upb.h in Headers */, - 492D1D277EED36D4B02169D16A9511CA /* migrate.upb_minitable.h in Headers */, - DA754693AD597B586F77EC5464383AE8 /* migrate.upb_minitable.h in Headers */, - 8F9D6EE6FB57A845CC5B5BB4074957BC /* migrate.upbdefs.h in Headers */, - B61B44AE2F9382C5E52A82C854E27EE1 /* migrate.upbdefs.h in Headers */, - 1D899939ECF1CDF0C8EE9C24F6C280D3 /* modifiers.h in Headers */, - A2CD240C9D120B6F3DB1DE6974F2E015 /* mpscq.h in Headers */, - F4CE571EBAD1996CF3646D798524F0AD /* mutex_stats.upb.h in Headers */, - 0650F5851825B5E5AF94D6A6756831A8 /* mutex_stats.upb_minitable.h in Headers */, - 76ED06122F6D178CDADBA8F19DA0B8E4 /* mutex_stats.upbdefs.h in Headers */, - D7946F430747A3568B33E8AD77EA1FB2 /* nameser.h in Headers */, - E989A741D0FDB56A113EFCCDE9CDA54B /* nameser.h in Headers */, - 4B8CF91966BCE450AA6CA41EFA823E93 /* native_posix_dns_resolver.h in Headers */, - 881E4E76041DE8F09027FCFBD2E632FC /* native_windows_dns_resolver.h in Headers */, - 72BE21CE9BEB29E198790B8D87AA8F53 /* ndk_binder.h in Headers */, - D9467A62F35A4F280311F7A8BD919CB6 /* no_destruct.h in Headers */, - 1AF0DA1A1DEEE7C067663D23E15EF357 /* node.upb.h in Headers */, - A97E90D9F29D54FA0258F25D6EDE5298 /* node.upb_minitable.h in Headers */, - 49833ACD3C282E6273DD3CB42B8E621D /* node.upbdefs.h in Headers */, - 68333144AFAE53A1C79963C5B1F9EF7E /* notification.h in Headers */, - FEAF09A8E0EC7633CD7D03B810E99375 /* number.upb.h in Headers */, - 4741183D0A0580E6822387A1D3749D30 /* number.upb_minitable.h in Headers */, - 87B9C694DD3AADADCD1C4D087E924ED5 /* number.upbdefs.h in Headers */, - F3328C19F224E47D3963B5C75E79BB4C /* oauth2_credentials.h in Headers */, - 23F97ADA5B629F1F27D01ABBFC848069 /* oneof_def.h in Headers */, - 0A90F8EDBC747A75A4F1D1B9A864C32B /* oneof_def.h in Headers */, - E7805181D8DECACF7D1FC03036B7CEF2 /* oob_backend_metric.h in Headers */, - A2857E5310A2C3D8110C6EA826603305 /* oob_backend_metric_internal.h in Headers */, - 3DF31F0269C4CBA18BF80ADB75408860 /* opencensus.upb.h in Headers */, - B325DAB41DF3C2093D146C3BC33C6D01 /* opencensus.upb_minitable.h in Headers */, - A42269B0AAF5DD5A2336E20E32E652AC /* opencensus.upbdefs.h in Headers */, - 43BB3E0B60628D499A59E445D145C90F /* opentelemetry.upb.h in Headers */, - BE014F9FF903751867634BCFDC48056D /* opentelemetry.upb_minitable.h in Headers */, - 4EC5F61361791FA557B592A39CABA651 /* opentelemetry.upbdefs.h in Headers */, - 1219B0807405D4D272786F77D42562D0 /* orca.upb.h in Headers */, - FAE8786D598EA1BECEC71748A0263654 /* orca.upb_minitable.h in Headers */, - 225DCF9ABB533CB0C35F7666F87A8060 /* orca_load_report.upb.h in Headers */, - D19F6CCD4A5D56B4DBE5E1C422DA762F /* orca_load_report.upb_minitable.h in Headers */, - 58CFEE15E0B30C18333D0354F50BFA31 /* orphanable.h in Headers */, - 2DA5F9E9B9F683C3C467EEF9B5E16CB5 /* outlier_detection.h in Headers */, - CD78339F5E8BEAE88AFF5DB12C22A8FA /* outlier_detection.upb.h in Headers */, - 4771A9086D09614E7A2C965208ADF8F9 /* outlier_detection.upb_minitable.h in Headers */, - 7985C57CAC3546A170505C03333C6EEF /* outlier_detection.upbdefs.h in Headers */, - 14CB300EC68E00F340DFF388048272BE /* overload.h in Headers */, - 4D60B69A697BEA88874FBF9D4EECA26F /* overload.upb.h in Headers */, - 95DF3726D51D5AB3752D3C43BFC97819 /* overload.upb_minitable.h in Headers */, - B9369CAFC77503EC27BE70D3CEA0763E /* overload.upbdefs.h in Headers */, - 7E39424DE6F628FCF889C08743FB440E /* packed_table.h in Headers */, - 0480BFDA68E804DC636C3C26DB5895C5 /* parse_address.h in Headers */, - 15F4FE6E0813C54C62307D01F8A450B0 /* parsed_metadata.h in Headers */, - D8746020BF6D2A90865DEBBCCCE53C00 /* parser.h in Headers */, - 4D61F0757B41AEC849F455A10C683F7D /* party.h in Headers */, - E59D021508FE56CA806F064FE6C7D6A3 /* path.upb.h in Headers */, - 2D652171BAA8EE95CF8652119A6B570E /* path.upb_minitable.h in Headers */, - 963FA0F77FB02FA2E60DE6ACE00D7114 /* path.upbdefs.h in Headers */, - 23FB19AD2E3211F281FAACC78B80EDE3 /* path_transformation.upb.h in Headers */, - AB845570BE752765AC00E6A67B31A0E6 /* path_transformation.upb_minitable.h in Headers */, - 07D05D5A6517F6BA9CDCB1FB404A1C48 /* path_transformation.upbdefs.h in Headers */, - AAB63FB9C5CBA79AF2BEA5156A0E64A3 /* per_cpu.h in Headers */, - 3A506760943577E1BA61AD205927F4E3 /* percent.upb.h in Headers */, - 141EB766597A52FC1B06558A909AB59A /* percent.upb_minitable.h in Headers */, - A2C9FD3EEB604B58B364F91D7D194A5A /* percent.upbdefs.h in Headers */, - 87C273B95ABE20B1843F27008B336BF7 /* percent_encoding.h in Headers */, - 1F980E6123F780598934474A780C5CE7 /* periodic_update.h in Headers */, - BA37586CF236EE2C0877EC50E23F5AE3 /* pick_first.h in Headers */, - 8215570204382B0F93A4920016A3ED73 /* pick_first.upb.h in Headers */, - 2D702C15EE2972D99A8A620C5D9190FB /* pick_first.upb_minitable.h in Headers */, - 1DD2FA9034E56547CEDEE8DC8FDAC825 /* ping_abuse_policy.h in Headers */, - FB8BF8966687E5131428F7F63F5D754B /* ping_callbacks.h in Headers */, - 78B8C9D1087DC46B212D3BAB942B3EE9 /* ping_rate_policy.h in Headers */, - 40866C1F32FAC035381ECBD11370EA1A /* pipe.h in Headers */, - 0F2204AFA539874DE9C778EC1C963824 /* plugin_credentials.h in Headers */, - 47F21C00470EAF41AAB09A2491281508 /* poll.h in Headers */, - FBB7B9326F40D4E187DAF10A06DD4515 /* poller.h in Headers */, - A4C40D152D67A4EDD30AB46FF725A6D4 /* polling_entity.h in Headers */, - 06E8DEE60F70DBD6D53ECB8701DA6A4B /* polling_resolver.h in Headers */, - 40BDFC0D4F017F507CF4499BD6B68C0F /* pollset.h in Headers */, - 789B54A01543080E4F588364B7B7920D /* pollset_set.h in Headers */, - AF2BF62767377FC0D34324881862CB6B /* pollset_set_windows.h in Headers */, - 42908913C41E29651199B8451CD30754 /* pollset_windows.h in Headers */, - CF8A9DA0D9431EF30AB30AA05B2880EF /* port.h in Headers */, - 2FF9B7672998C43828DD17A86F55D867 /* posix.h in Headers */, - 4618BBCEEFA8A0BFAF7415EE722E6ABD /* posix_endpoint.h in Headers */, - 534F25160FFB3D49CD1FA420C2A98CF9 /* posix_engine.h in Headers */, - F0ABEC616A2967FDF7DB22DA8104E6A4 /* posix_engine_closure.h in Headers */, - 613FF8A121647304D836190CE69CBAD4 /* posix_engine_listener.h in Headers */, - 0E4937609FB39790BC468FF84263D853 /* posix_engine_listener_utils.h in Headers */, - 9E7496860F12EEF6106D5D9F0CC84BA0 /* prioritized_race.h in Headers */, - 0B72807BE686CBCA6C5BF6A67B34AD3E /* promise.h in Headers */, - 62386BE429F2F9DF006B940E151E8C3C /* promise_based_filter.h in Headers */, - 5778293D5E8DA493FD5D9273CA2C3992 /* promise_factory.h in Headers */, - A22CE706610A1897B57322466A8706FD /* promise_like.h in Headers */, - 80B42598B22309C10C261AEBB1FFE16A /* proto_buffer_reader.h in Headers */, - 1C26B159D144BBF6302144330EE82873 /* proto_buffer_writer.h in Headers */, - 313311F8C68CC4C238EE8923E3C525C8 /* proto_utils.h in Headers */, - 1823BED530DD406CFFB9E33063639611 /* protocol.upb.h in Headers */, - E0D4DEFFC8D83545BE361E2C36EE7E4E /* protocol.upb_minitable.h in Headers */, - E2568609515278536414F3BEA9E03514 /* protocol.upbdefs.h in Headers */, - 318FA3129A441EDD24E52596DF3DC63C /* proxy_mapper.h in Headers */, - C3CFFF01F604D0D9708B775022DD4088 /* proxy_mapper_registry.h in Headers */, - DDA88E3A60666EE69863FFA55A6F47F1 /* proxy_protocol.upb.h in Headers */, - B4907D95D1EEF3678E21CCA69503A9D9 /* proxy_protocol.upb_minitable.h in Headers */, - 7EA5529EA4380CE2EE80A64929EB6AB9 /* proxy_protocol.upbdefs.h in Headers */, - 1CEA32C4F934080C3BCD564C4B025731 /* python_util.h in Headers */, - E4BF14CD1896AF3D8D298A549EABB6DA /* query_extensions.h in Headers */, - DC40214A7B6A61219E862248E259CE79 /* quic_config.upb.h in Headers */, - 77EB4081ED6F08C295202727AA682CA3 /* quic_config.upb_minitable.h in Headers */, - B31096B2F3428E445C73BBEDEE50A134 /* quic_config.upbdefs.h in Headers */, - C06115ECEFD7A4F8F263F83C01A25709 /* race.h in Headers */, - 96AC665C3551A1E76E8F88A224E6C78C /* random_early_detection.h in Headers */, - 40243652852BA35C37CBC3F28CE95539 /* range.upb.h in Headers */, - B8A7D28BC7DA3EBC7F5CA9122071CC65 /* range.upb.h in Headers */, - 5D3201073988FE81D2852368E5760B2F /* range.upb.h in Headers */, - 820297E4220C95FF9E05DADDC84B06B3 /* range.upb_minitable.h in Headers */, - 5D3F7F1FAAAB5BE79EB01A6DB1332E4E /* range.upb_minitable.h in Headers */, - 60A9BF2C3B0CDCF376B268324FADC88A /* range.upb_minitable.h in Headers */, - 375BB5B785EA03371BBE873D9F321F88 /* range.upbdefs.h in Headers */, - 5FC1CCECA4D00688FAB20958D070BE3F /* range.upbdefs.h in Headers */, - 0C68CC8FD40375FDE06B8DEC8C5153B1 /* range.upbdefs.h in Headers */, - F0BEC0C3D207E9C85542C5A02D709BAF /* ratelimit_strategy.upb.h in Headers */, - E2F1774D4EB8F71DB2D32635BD63CEC0 /* ratelimit_strategy.upb_minitable.h in Headers */, - DF5F4269BC562B5BD2FDFA30478E65C3 /* ratelimit_strategy.upbdefs.h in Headers */, - 0DBA44B7C8D6B43386BF4060BE21383C /* ratelimit_unit.upb.h in Headers */, - 3F5AC14678ECE006780D232F930C4ED3 /* ratelimit_unit.upb_minitable.h in Headers */, - DB484F490A96DFB1BFF4CE288BB15B87 /* ratelimit_unit.upbdefs.h in Headers */, - E773389F9DFBB6B298C8972AD5114026 /* rbac.upb.h in Headers */, - B67EBAC9B1A8A66A1F07254E8E286215 /* rbac.upb.h in Headers */, - 54ABA81B0EA38AC0E7E9C57A6114743F /* rbac.upb_minitable.h in Headers */, - 1F8CDCBBE9608A2ECA2B116E6E3C48F0 /* rbac.upb_minitable.h in Headers */, - 85421AF13ECF7016F1142E40ED6A7D64 /* rbac.upbdefs.h in Headers */, - CA7CEF9E6EA1132FE273C4860B87871A /* rbac.upbdefs.h in Headers */, - 5D8682FD9650EA7187AC842E60752564 /* rbac_filter.h in Headers */, - C41B450E32BE44A7690E8512EDB9FDE3 /* rbac_policy.h in Headers */, - 152012EE03E6A4DDAD33C6E31059B59A /* rbac_service_config_parser.h in Headers */, - D85B0A21468A8AB4AF214D6318820640 /* reader.h in Headers */, - EF3B4959EABCE9BD25051B83C032A475 /* ref_counted.h in Headers */, - 25556E3C5AF44BE822EFDC6EF3BA2956 /* ref_counted_dns_resolver_interface.h in Headers */, - EB4D03AD3B17A5972F4C2A1B0EA9A214 /* ref_counted_ptr.h in Headers */, - 4D5516A11075FECBEAD196B4D12AAA34 /* ref_counted_string.h in Headers */, - FD4C1D1E8ED5EEBABCF24D39927690C9 /* regex.upb.h in Headers */, - B8E1D68E87014DA0BC705C608FDFC59E /* regex.upb.h in Headers */, - E347E732B07ADFCF72BFD37EFA44FA05 /* regex.upb_minitable.h in Headers */, - 5027A6B946FE2FE59A6E2281BA2D664C /* regex.upb_minitable.h in Headers */, - CFC1D0F44E64DCEAD8926C382205FA4B /* regex.upbdefs.h in Headers */, - DC18C6D623801B2C80958CE3096397AB /* regex.upbdefs.h in Headers */, - DA09E97B247987B1CB57B66BEFC218FF /* resolve_address.h in Headers */, - C24CC682B4EA1AE20043F3D7EB7A30DD /* resolve_address_impl.h in Headers */, - A81CE7419870479284DF2A084655D8CC /* resolve_address_posix.h in Headers */, - BF3BA8EE4180AA7D01B26962044BEB51 /* resolve_address_windows.h in Headers */, - 0A7547A0B9C6663D4EE88492C8AAE5E3 /* resolved_address.h in Headers */, - 460E00AF990909D3787B49AE78E57E0F /* resolved_address_internal.h in Headers */, - A139A7DD5B03C77B4157873174D59249 /* resolver.h in Headers */, - 4485E682C843CFCBC506BF8971313F2C /* resolver.upb.h in Headers */, - 40E9D7646505A6CD7EB0206F9A321632 /* resolver.upb_minitable.h in Headers */, - 6F8D3982F9997173238EC921CBBF5400 /* resolver.upbdefs.h in Headers */, - 952811E71AB35F20B0DE8C7E9D21D713 /* resolver_factory.h in Headers */, - AE3F9F969F240A8FCE9CAD251CCBE656 /* resolver_registry.h in Headers */, - 1564FFC34581EA9B9298EB40BCE8C865 /* resource.upb.h in Headers */, - 938E6EE3C7A3BDA2E24BECE972D4FCF8 /* resource.upb.h in Headers */, - 3621579629EAF83E56EA7420981F09A5 /* resource.upb_minitable.h in Headers */, - A234F0E8B4E5703A84F41881410993B0 /* resource.upb_minitable.h in Headers */, - 6EB1116CE81E713B1B46D31162A4E295 /* resource.upbdefs.h in Headers */, - 606C763C23C0445CF1AB8879BA38C1FA /* resource.upbdefs.h in Headers */, - 911D0D9542B9845461812DFB363489B9 /* resource_locator.upb.h in Headers */, - 199EA8DE792DF89AB9EEBAA72D92C659 /* resource_locator.upb_minitable.h in Headers */, - B2689405DDE71B7D8180DFC399132097 /* resource_locator.upbdefs.h in Headers */, - D0EA3C90FA90A77C3C008336ED785461 /* resource_name.upb.h in Headers */, - E6F2EA9BEB31A390EDD28BC9983AF620 /* resource_name.upb_minitable.h in Headers */, - 5F8CFB11327D9582F74D0A71026CCA89 /* resource_name.upbdefs.h in Headers */, - C8CD27788DF51050FC5BDC0D89090891 /* resource_quota.h in Headers */, - 6C2A2F6B208918C7B36F8DD8A17F2AB1 /* resource_quota.h in Headers */, - 5D3E0F7599185DA5A918FD9698DEA18E /* retry_filter.h in Headers */, - B154A21876F66C0AD21EDE1D3EF27699 /* retry_filter_legacy_call_data.h in Headers */, - 29D60E30E19D5A00CF0B2994C789C648 /* retry_service_config.h in Headers */, - 69621F8C202817A0A7A9B7E563EA3918 /* retry_throttle.h in Headers */, - 33CC9E68E29625158AB9EF80DEB440AA /* ring_hash.h in Headers */, - FBC6C1A1063A7AEA7956ECA205EE6F36 /* ring_hash.upb.h in Headers */, - 0DDFD8A0D5B82E1422D0C4009821E9E3 /* ring_hash.upb_minitable.h in Headers */, - 727ADEE7E28B99533B2A614E9F04404B /* rls.upb.h in Headers */, - AAB1B5FB4C4A0220F9B7FEFAF2D06928 /* rls.upb_minitable.h in Headers */, - B5BE1254039B15A14128057D1F56D2FC /* rls_config.upb.h in Headers */, - CB1DE7F3CAD9EFD1C22AF766006FCEBC /* rls_config.upb_minitable.h in Headers */, - EC8B360E5C3BC00745C2A955D523E84B /* rls_config.upbdefs.h in Headers */, - 7DFF74E54C4EB76F23127A8AD6E57694 /* round_trip.h in Headers */, - C9EC14BCCC4F3607CFB5542BB02BF39B /* route.upb.h in Headers */, - ED1F2BE3AE87A1B11AD817DF496C8DCA /* route.upb_minitable.h in Headers */, - 12492EB12A9FD1A48B6805E2AFA98FFF /* route.upbdefs.h in Headers */, - 9CC8DD4CA702CB5339A64F23C814B45A /* route_components.upb.h in Headers */, - EDD09A251AB1D419B682DA63DDC0063B /* route_components.upb_minitable.h in Headers */, - 2152AEF4DF58AF98C4824D3E1AD3A91F /* route_components.upbdefs.h in Headers */, - C1A4DC31352F61C42B5496B37FE9590D /* router.upb.h in Headers */, - E79950E637E45FF50FD955DD005070CD /* router.upb_minitable.h in Headers */, - 6D22334B2DF7968942E2F1B7D901BBF6 /* router.upbdefs.h in Headers */, - 47CB97DDBBD438495E9D82F0EC5D6CA2 /* rpc_method.h in Headers */, - 9637E2B362625345890608923E00B58D /* rpc_method.h in Headers */, - 75D733001790F4105EDAE63E9A255464 /* rpc_service_method.h in Headers */, - 26DAE5343E0112C44E37C8FC7FC4E000 /* rpc_service_method.h in Headers */, - 9EEE0612BDF4D2B1E9DCAE49C659841C /* scoped_route.upb.h in Headers */, - 4DFCD35578AC294C9FAF7409D8FBEA2F /* scoped_route.upb_minitable.h in Headers */, - B926D037E979B98F4ECC474493814FDB /* scoped_route.upbdefs.h in Headers */, - 358C343C266E8EC50F8B1574F150BC21 /* secret.upb.h in Headers */, - 9D3F5116BCB9A7156E3D6E644F7E1E08 /* secret.upb_minitable.h in Headers */, - 929399AC4B47565BDB14DA34605D8819 /* secret.upbdefs.h in Headers */, - D70FBA7027CF8FD4D15DF8BDCD20908F /* secure_auth_context.h in Headers */, - 649180E78EA70BDD0308DF86FDAFF8D8 /* secure_credentials.h in Headers */, - 3006B7E203E43747BE489A7147CAADB2 /* secure_endpoint.h in Headers */, - 1222A14D775B6631240191DB4BE47F5A /* secure_server_credentials.h in Headers */, - 098204470072581F75067E8DE7BE1147 /* security.upb.h in Headers */, - 7A1D39CBF6E97D7ACF2D0BF94F82CD3D /* security.upb.h in Headers */, - 5A635C6B8F738E6C6D50B17008BC61B3 /* security.upb_minitable.h in Headers */, - 95E3CE53E87A5AE0522CA707752A8D7F /* security.upb_minitable.h in Headers */, - 22D2E6D45B1768FAC57D60F3897D99BF /* security.upbdefs.h in Headers */, - 35DBABDD108EAE0B1E1AB90556AD106D /* security.upbdefs.h in Headers */, - DFA43180FD5D1FFB6636CEE47A7FEAD4 /* security_connector.h in Headers */, - 20E7B6C12F59A32FB3DDCC1952E07C74 /* security_context.h in Headers */, - 461BB01DB2D17F37770308905BA4149C /* security_handshaker.h in Headers */, - E70055651B4227746175DB725261A071 /* security_policy_setting.h in Headers */, - 4B61670FF155E47049078B66BCCB9121 /* semantic_version.upb.h in Headers */, - 0EC3E7359AF0C4FA7E7ABF3ADE6705E9 /* semantic_version.upb_minitable.h in Headers */, - 97E629A02665F8CC1DDF68C810378788 /* semantic_version.upbdefs.h in Headers */, - CC551491B26503BA14A7180866DF1D7D /* sensitive.upb.h in Headers */, - 3CFA7C5C782ECFE359E0997854FEC32B /* sensitive.upb.h in Headers */, - FB911A60E604EEBB3FA8E07CE9753313 /* sensitive.upb_minitable.h in Headers */, - 32B347CA1E078DCE709114E3216E82D6 /* sensitive.upb_minitable.h in Headers */, - FF0774C9A91932D1B0A22CD484F32FE2 /* sensitive.upbdefs.h in Headers */, - B00EA6A20CDE4A3FD06DA571278D075F /* sensitive.upbdefs.h in Headers */, - A049DFBC981ECA084757F43097A9252F /* seq.h in Headers */, - 11E5E6A4B8BF286BAEADDCEFCFB0D1DC /* seq_state.h in Headers */, - 1F47ACB467E8A76797AD9B2A260ED53D /* serialization_traits.h in Headers */, - 2F38AA6C442F4604CE4F0D85EAEF7DA0 /* serialization_traits.h in Headers */, - 65862F2811320EEC4BB8A6A252059769 /* server.h in Headers */, - 91D82C78ECCE5C09C99D2488BDCC5648 /* server.h in Headers */, - B0AD6AEEC6B8BF594125579B580D6950 /* server_address.h in Headers */, - CBD7141081F722A8F4C3B01A5A04AB6A /* server_builder.h in Headers */, - 28E5C10997E42C32605CBFF3813B2D61 /* server_builder_option.h in Headers */, - 06A8D06DD76E7B7022A703E245E65CD9 /* server_builder_plugin.h in Headers */, - 91CA3B4037478B280AD53207F02B1705 /* server_callback.h in Headers */, - 11879228CACBBEF6131635FC25A6FF16 /* server_callback.h in Headers */, - BA84C4EC52806590D3A39E756692886F /* server_callback_handlers.h in Headers */, - 60CB76F2DDF2827AF809B1BE827E466F /* server_callback_handlers.h in Headers */, - 553D92B5FA8C25AF1912B92F33DF277F /* server_config_selector.h in Headers */, - 49B472CC8061D2168B8C2D178F4FBD68 /* server_config_selector_filter.h in Headers */, - 5B68C53F35E5104A203F448DC0E96675 /* server_context.h in Headers */, - B2D823C6CEFFACDDB8102E5E4D6B6D18 /* server_context.h in Headers */, - F8DEA734EDAD8B16ED2A16B369A7B3D6 /* server_credentials.h in Headers */, - AB09E43A91E3FFAF7B21062CF8B5BA32 /* server_info.upb.h in Headers */, - 6868C7EEF84548B0C76263F6746B70D5 /* server_info.upb_minitable.h in Headers */, - 61FB0BE11BD11A93912467B5473BB7AE /* server_info.upbdefs.h in Headers */, - 5CE3F7D762F4026428FD5CD3562F6B3D /* server_initializer.h in Headers */, - 27BCE94BE88641724E2E30D73E231725 /* server_interceptor.h in Headers */, - 7AB4367DF110193AEA7BD4EF8376BA18 /* server_interceptor.h in Headers */, - 52C1424FCDE2B65176BFAB03F3CDD4C4 /* server_interface.h in Headers */, - 4492C1EEEF090CBAD513419CA3AFBB18 /* server_interface.h in Headers */, - 4F4F93C6B51AFE3544E6B8C631694A41 /* server_metric_recorder.h in Headers */, - AA48BED3B27D254CEC465282F595C8BD /* server_posix.h in Headers */, - 576C377611ABDAAEB76596C6FCBCA546 /* service.upb.h in Headers */, - EEEBB60EF95F691EF093951EE490259C /* service.upb_minitable.h in Headers */, - AAC96315557CF976443837CA7C85F4F7 /* service.upbdefs.h in Headers */, - 145B9862B87748C6DC961DCBAB39D4E9 /* service_config.h in Headers */, - 198DF91FA884377CE7A8546CE8E8098D /* service_config_call_data.h in Headers */, - 0DC1DDA0CF4EE57E1565F0855ACB55B2 /* service_config_helper.h in Headers */, - 562EBF91ACDB4D275CBE1A3613394FD0 /* service_config_impl.h in Headers */, - 9CC695A340AC3CBF341F61BD76D08FDB /* service_config_parser.h in Headers */, - 75B0B73F6E085435047337A8572922A5 /* service_def.h in Headers */, - 94091E0B0FC72DA562110C0A69D4005A /* service_def.h in Headers */, - 68472ECE76A1FE9FF082C69A3C57E731 /* service_type.h in Headers */, - 0303C232C5C8C1F3E6F428A18D634AE9 /* service_type.h in Headers */, - ADB3D1E133FF12C524DBCADE7A693A4A /* shim.h in Headers */, - A451A16CDACE51911996AA72E31D3BDC /* simple_slice_based_metadata.h in Headers */, - E7397AAB9D96B71B92E2DCF549F985E6 /* single_set_ptr.h in Headers */, - D19F98D5FCC1B11065C5C2E6736C793E /* skywalking.upb.h in Headers */, - 8DA306B8A2C457C4363871A81C2D4904 /* skywalking.upb_minitable.h in Headers */, - 693B01E68F90E798DAEA0C00A59CAEAD /* skywalking.upbdefs.h in Headers */, - BD05FAA109B0E8243E4C0290D5185A45 /* sleep.h in Headers */, - 6F37EE6895E434B9F9C5C1F3DBF814F2 /* slice.h in Headers */, - 5F256A905BA20B6848CECC4AA5ED6BDD /* slice.h in Headers */, - F551F6ACD1907A1B0A217D7EFA5A25FB /* slice.h in Headers */, - D80D75C7416440BC675E012DA578B5CC /* slice_buffer.h in Headers */, - BB84FD84657589EA7F35E692F0C614D7 /* slice_internal.h in Headers */, - AD1341B894FC5374342D5C3E33A265A7 /* slice_refcount.h in Headers */, - F2EDBE894602ECD3D170AC13BDFAFAF6 /* slice_string_helpers.h in Headers */, - DBE3F5463066979918020EBDDCF3AB4A /* sockaddr.h in Headers */, - F88B5D28A7DF1E2A5294EC946DA411DD /* sockaddr_posix.h in Headers */, - 4BDFFAF2745D8A84B84E2E4D8753E973 /* sockaddr_utils.h in Headers */, - 354E4789FE2C38CE6B872E0A565156CF /* sockaddr_windows.h in Headers */, - 3E3EA009B36D167A9A0CD07BDAC1B862 /* socket_factory_posix.h in Headers */, - A802CF58520A2E706EC6CABD9EF9216C /* socket_mutator.h in Headers */, - FCBA5457D4D9BB306DF3E50AAF90A892 /* socket_option.upb.h in Headers */, - 3FAA71604C48DCB96CFD68A859A52CF1 /* socket_option.upb_minitable.h in Headers */, - AAB51354030FE2F4A50614014E9485E0 /* socket_option.upbdefs.h in Headers */, - 535D84C942E6DBF2C58785E41E1B06B1 /* socket_utils.h in Headers */, - 55F67EB9CFDF09BB499A4547BF2AE15D /* socket_utils_posix.h in Headers */, - 49158123B0BE305D40A0F5ACC7068D37 /* socket_windows.h in Headers */, - E49A3A7150445CB67DA3F336BB969CC5 /* sorted_pack.h in Headers */, - D4165B893C1E9EBC424D292EF71EAB3F /* spinlock.h in Headers */, - 637794F2514B958102DAEBBE444679AE /* ssl_credentials.h in Headers */, - D6238F43BD0D68D9937C71C775470940 /* ssl_key_logging.h in Headers */, - 4B72583C44A1464363CF6950894576FD /* ssl_security_connector.h in Headers */, - 6D1176783FB0AB54C101441B0400588E /* ssl_session.h in Headers */, - 8C1C03059FA7B4ABCC08D695085E539D /* ssl_session_cache.h in Headers */, - 42F24C1D1E429C6B2884EC98EFC2D30A /* ssl_transport_security.h in Headers */, - D3540AC12388CCF41C2DAB7B0AC29B56 /* ssl_transport_security_utils.h in Headers */, - EE96C347B7FEA143A96D4B739B5C5261 /* ssl_types.h in Headers */, - A929C31ECD240BE79B779B1869E78E08 /* ssl_utils.h in Headers */, - 7BEE4782516AF3EAABE25B125C6F87F3 /* stat.h in Headers */, - CD2E0A3255F662A4C7481C25C70C2471 /* stateful_session.upb.h in Headers */, - 604C7A9D792963DF53DF16A343BDFCAB /* stateful_session.upb_minitable.h in Headers */, - B6C664A4494E49911461E72563784722 /* stateful_session.upbdefs.h in Headers */, - 07A93395730BECC8241B1C970A00CFAE /* stateful_session_filter.h in Headers */, - 2058A520FAA272906883306B95E7554C /* stateful_session_service_config_parser.h in Headers */, - 8CA2E10D807F7E528C1B93D7C5EA54F4 /* static_stride_scheduler.h in Headers */, - 0BDF00A8D41353FE056EF7E9A85EEC7A /* stats.h in Headers */, - 09033583A3D5F66E83E7AEF21688AE53 /* stats.upb.h in Headers */, - 4A09AD06B769FFC8F65D9AFD7CA2E2A1 /* stats.upb_minitable.h in Headers */, - E3F05474B22D3BACBCD6890A8B4398FC /* stats.upbdefs.h in Headers */, - 3037D01D788E1DC24195C669D29AB72A /* stats_data.h in Headers */, - A2F5E85747AE34096AAADB7B355571BA /* status.h in Headers */, - DFAD1FDA515A29F0E9AF73B862ADF273 /* status.h in Headers */, - 195197CF8A1FA4D57D189561E828A904 /* status.h in Headers */, - C65318341FC04AC9A20D96EF8D19709E /* status.h in Headers */, - A32A1DEA3A381713A23AF3BEA0C2B732 /* status.h in Headers */, - B2BB3A52AAFD3FF623A7E5CA152DCD1D /* status.hpp in Headers */, - 07FD8E79E8D78243008E2466F3B6B323 /* status.upb.h in Headers */, - 83F3ED3DEF137F813ABE482E3F98DC54 /* status.upb.h in Headers */, - BF269FA929EA25E830AF78DA350FAC5E /* status.upb.h in Headers */, - 7AB2F101F4B68AF2FF735DA7B01198BC /* status.upb_minitable.h in Headers */, - 2B8F82C3B363DD258B5013B67718D23A /* status.upb_minitable.h in Headers */, - B7535830C4F3BACC02C82EEC9E9AEFF0 /* status.upb_minitable.h in Headers */, - 50E4B5621E65316CD2BF68160756916D /* status.upbdefs.h in Headers */, - 3D3EA65D007FE33C2EA7059E8486500C /* status.upbdefs.h in Headers */, - 23E2C508823008A2B4934BAAFBF14A8C /* status.upbdefs.h in Headers */, - ACEC549F63461B3ECD5A5C8F8D7519AF /* status_code_enum.h in Headers */, - 49FD838F2AC1CCCFE9523F521C888E16 /* status_code_enum.h in Headers */, - 99429C19EA14CFC907B29377ACD9D301 /* status_code_input.upb.h in Headers */, - D90A78E46D1ACE35B5774AEABCBAC0D4 /* status_code_input.upb_minitable.h in Headers */, - F9EA4F467A4A5FE7C578762E1A0C2834 /* status_code_input.upbdefs.h in Headers */, - A3EB914D88A18FF5C5BED547F34C55C6 /* status_conversion.h in Headers */, - 8DB7EA68E35C0C8C54EC0C72E8D1C305 /* status_flag.h in Headers */, - 4F3504DA63F088DB8DD0FB5E62D7552E /* status_helper.h in Headers */, - AC72964329FAC03F3C832825F1372091 /* status_util.h in Headers */, - F13C3B21188B1AF8FBF259E85F318F3A /* stdout_logger.h in Headers */, - 66032DC46A86F68E9DE5A93D967E6586 /* str_table.h in Headers */, - D0B6F192A3EC66904FB5FF1A48516108 /* strdup2.h in Headers */, - 1A7C0F728E030A75BB7CEAA2276AEB6E /* strerror.h in Headers */, - 73C728718F6B9B3A678652F94824E8D0 /* string.h in Headers */, - EFD5FF94E8CCE5E3EC6A58D462D9F344 /* string.upb.h in Headers */, - 82C1BCD21ACF4B3168996F745A4301AE /* string.upb.h in Headers */, - 25B459A04D64863811461F71B7F5BC44 /* string.upb_minitable.h in Headers */, - 210BCFDC758C986AC439538D42BD474A /* string.upb_minitable.h in Headers */, - D8C5428369BE50321FF05DC82EE63CC4 /* string.upbdefs.h in Headers */, - BED8FB09AE2C1E6C5BBAD311B27528C0 /* string.upbdefs.h in Headers */, - B4F599FAB8AF97167D4FEE2A06E50D3E /* string_ref.h in Headers */, - 1F3FD4EFBA83EEC3C06F3EF421BBC88E /* string_ref.h in Headers */, - 9492FA23672A5073B3840DC1A059B98B /* string_view.h in Headers */, - F1DF0DFC2BA12FA5995CD66575C5D782 /* strtod.h in Headers */, - 9755EEE139C06B3F8A90420F4B4BB0BB /* struct.upb.h in Headers */, - AEA6F5D5BAFCB935D687CFB8F8A10200 /* struct.upb.h in Headers */, - E103D7BBA00EA57B5539C33B18E0BD14 /* struct.upb_minitable.h in Headers */, - 04FF66B349B80C2945E93CD788473570 /* struct.upb_minitable.h in Headers */, - 3A08101F15F735ABDCF65B21F16F08FB /* struct.upbdefs.h in Headers */, - CDF4D99B78532A78A899BD29ED09CEF4 /* struct.upbdefs.h in Headers */, - CEA809224E5D541498652F136A3F920A /* stub_options.h in Headers */, - 7FADC1107DBC911E2535DE8B4241B46C /* stub_options.h in Headers */, - CAF22D6FBBF45ED574E1AD8CF0B86B8C /* sub.h in Headers */, - FEE4231AA70EBBFD427730A37B33D689 /* sub.h in Headers */, - 3E1A8D52CFB0D990A077183023829303 /* subchannel.h in Headers */, - 38DF296DCAB55D23566DDA39F3AB2AD3 /* subchannel_interface.h in Headers */, - 5F730809800D7E465FC9EEC18CBFD42A /* subchannel_interface_internal.h in Headers */, - 84AD5747717242FCD50FEBF8536CE2CD /* subchannel_list.h in Headers */, - EFA461BFF541A1512B04A48BD611365B /* subchannel_pool_interface.h in Headers */, - 0AE5EAD21939C26A64FE4CB7CE097E30 /* subchannel_stream_client.h in Headers */, - F2BC371FA3453BAA0BCC597B786B39D7 /* substitution_format_string.upb.h in Headers */, - 837C0F9257A6C7FC615037C37DFC4EA0 /* substitution_format_string.upb_minitable.h in Headers */, - 8ADC7745B176DC572DABF3502129AED5 /* substitution_format_string.upbdefs.h in Headers */, - 8AAAC1267B0A3D49F2B04E73F2402546 /* supports_fd.h in Headers */, - 399B5ED188D40AFFF46FD27C26EECEC9 /* swap.h in Headers */, - E4686A07D4F14817AD51AADFBA0B7C77 /* sync.h in Headers */, - DD08A68572EED995E062A3B99B2D289C /* sync.h in Headers */, - 66ECB3B91C271FBE6769F63E768AA386 /* sync.h in Headers */, - FBD2C9CD3F322C1394A7015A5DB4A6FD /* sync_stream.h in Headers */, - 62AAC724998D86362F210EAEAFA08671 /* sync_stream.h in Headers */, - F22EBDBDD42D874F4D29F1ECD9F1BA24 /* syntax.upb.h in Headers */, - 7EAAC90A232643790DAD02BF362600C7 /* syntax.upb_minitable.h in Headers */, - 20B99B76A2E7E8B9E17E39C9836AD8F4 /* syntax.upbdefs.h in Headers */, - 8FCD9E6BF0CB59681940716058FCE0D0 /* systemd_utils.h in Headers */, - 75C134977894ED2D8C9A8C6BD2D722D6 /* table.h in Headers */, - 3AC9B10B267F82E3840B9C9922752AEC /* tagged_ptr.h in Headers */, - 02C3E220F84964C54DF406061FAC93CB /* tap.upb.h in Headers */, - 1C890DB9794730E51FC84C7D4E7CE668 /* tap.upb_minitable.h in Headers */, - E5FD5312DB39AB2AB1EEF5130B576623 /* tap.upbdefs.h in Headers */, - F7584F339C97D763C8E9EAF67780E83B /* tchar.h in Headers */, - 39F4F873A00E56A948CA098D9AB93DD5 /* tcp_client.h in Headers */, - E4BFE4BF9CFEF921FC29CD76A92C923E /* tcp_client.h in Headers */, - D8AB834A2F73AC85EFF006EEE532805C /* tcp_client_posix.h in Headers */, - DFD4E92ED512A1230C5702496754D68A /* tcp_connect_handshaker.h in Headers */, - F53C326B9DAA092B68E22343C84C23E7 /* tcp_posix.h in Headers */, - 9C55FD04DF47C84473A278117AEEAEDB /* tcp_server.h in Headers */, - BBA9C2C7DD3C9B4861DEC991A9A946F6 /* tcp_server_utils_posix.h in Headers */, - E0FDA3FC550D61A42A350813B729B34A /* tcp_socket_utils.h in Headers */, - AB5EE1BCD48662E68F02D152B9103968 /* tcp_socket_utils.h in Headers */, - 66CDFDD215985805ABB50B1B686B4A38 /* tcp_tracer.h in Headers */, - 826A642E1E822EFC6C6D96AFE6B13A83 /* tcp_windows.h in Headers */, - 231175340F3C2E811BBA3F57D012E8D3 /* thd.h in Headers */, - 16D89A1A0A63E64798B48858130A297E /* thread_count.h in Headers */, - 5F2EBDFD103DF80B270D58A734EA9B0B /* thread_local.h in Headers */, - 00BF7B3CD103B8EE58DBF1A1E83896EA /* thread_manager.h in Headers */, - 8B2548586D3BD44CB5A587A6A7FDF03B /* thread_pool.h in Headers */, - F252FE27EAD2588508E0524FB4BD6520 /* thread_pool_interface.h in Headers */, - 23D1D9CB0F735B2D1AA1375EE5D44291 /* thread_quota.h in Headers */, - 984F3704F1E829A38A9B7F5877380F6F /* thready_event_engine.h in Headers */, - 963B7DC90FAC50B7B9CB9C70E62F12F9 /* time.h in Headers */, - 075E5F566C5997FB2C3BE843CDCA6A9C /* time.h in Headers */, - E6F2DBEAFB8748D1E833F8D795E76C17 /* time.h in Headers */, - 58CD339D8DC0A67DEED4A6E766126A56 /* time_averaged_stats.h in Headers */, - 6F74BF1C757DEF81ABA864D9EB757488 /* time_precise.h in Headers */, - 8FB56BCE184A82AB78DE8CB133A5ED8C /* time_util.h in Headers */, - 8CCB7A71917952276CCCA054FCE5ECF4 /* time_util.h in Headers */, - 66C46FCABA0DD64789CF3ACDC7CFB0DA /* timeout_encoding.h in Headers */, - 14E7B0BA761F431001EAE33A94B4E958 /* timer.h in Headers */, - 7B50FF0EEF2708839AD51CA91D2502CB /* timer.h in Headers */, - 421E4CC3DBCC336E5361EB142FCEF382 /* timer_generic.h in Headers */, - 098A7A5C9DF8B97B216EF246C13884D6 /* timer_heap.h in Headers */, - 2191AA992213A5978909A1E44893707E /* timer_heap.h in Headers */, - 27F2A8D811331E45386849366199B4EC /* timer_manager.h in Headers */, - FEEC611F488D56FD83D3A7B660C4E3F6 /* timer_manager.h in Headers */, - 54BF4C86CF9A0A123F94E5B2E6D0774A /* timestamp.upb.h in Headers */, - 3B35E4281971BAD2DE38CA62A8E6E6D1 /* timestamp.upb_minitable.h in Headers */, - D75259896060A1CC5F1E5AD5E6E4E0DC /* timestamp.upbdefs.h in Headers */, - AE99F3B4C220B22E2CA00288557AA0DC /* tls.upb.h in Headers */, - 75BD6F371EE57428C05EF1343F2712AE /* tls.upb_minitable.h in Headers */, - 020F6684E479085B748D9136C66C47EC /* tls.upbdefs.h in Headers */, - E948D10E850A451FF28E69E621B3C8EA /* tls_certificate_provider.h in Headers */, - 9D7C1B847A3C7E578ED821296B40D395 /* tls_certificate_verifier.h in Headers */, - BA19B528A3C751BF4FBC979DFDB5304C /* tls_credentials.h in Headers */, - 7F0C1CC30073030CE19CCDA69C20A8B9 /* tls_credentials_options.h in Headers */, - 15B4CED306B480187DC0150E9FCFC3BD /* tls_crl_provider.h in Headers */, - 346E8FDF38EDEA33F4A10D80488C2A84 /* tls_security_connector.h in Headers */, - B50E153AAEFAF2DEC1D162CFCD1F868F /* tls_spiffe_validator_config.upb.h in Headers */, - 8F8DE8AECFEE003CD4C5929611E3450B /* tls_spiffe_validator_config.upb_minitable.h in Headers */, - 4C5C64B8C44BC5ACAA6F0A809DDD6FB8 /* tls_spiffe_validator_config.upbdefs.h in Headers */, - 25C534AAA0439880BB78F1CC36E19688 /* tls_utils.h in Headers */, - 315DF1E6358BF4E2F7F25CAB0815AB75 /* tmpfile.h in Headers */, - F6157F7A06C065225256A4FE4DE635BF /* token_bucket.upb.h in Headers */, - 06A15E0602DF36B67AC34FD24146A315 /* token_bucket.upb_minitable.h in Headers */, - BC845CA0FDE9979407EEFD497E8DA7F1 /* token_bucket.upbdefs.h in Headers */, - 61034E3F7922EB479F3E28EEA964C1B3 /* trace.h in Headers */, - E15821C4EEDAD3F0B271A1D4D434409A /* trace.h in Headers */, - DCBF7B9A621836BBA68B34718FBD031C /* trace.h in Headers */, - 18325B19C70853DB3CC83407589717D6 /* trace.h in Headers */, - BF3EF0DFC0B9A8DC3ED132A54FFB65CB /* trace.upb.h in Headers */, - 9A30B20CEC52FE00CDE2C56AF469D418 /* trace.upb_minitable.h in Headers */, - BABD4B714A019C42B45C2DA6FB5C11F2 /* trace.upbdefs.h in Headers */, - 922BA998937A77C835F3BAF8AFA7A4F6 /* trace_config.upb.h in Headers */, - 8D843E162D265FF50390EF76F1AF406D /* trace_config.upb_minitable.h in Headers */, - E084AD2B401BED4EFB4AE7EFD0CE315E /* trace_config.upbdefs.h in Headers */, - 7E4629BE2BA6B0B215F380671C2CD50F /* traced_buffer_list.h in Headers */, - 1756826E58C90EBF76AF515E0D85B36B /* transaction.h in Headers */, - 1B05235C5E75342DDBEC706ED08DB51B /* transport.h in Headers */, - 20A7707899C1073DBE217C45238930AE /* transport_fwd.h in Headers */, - 5E73F3DEA4F6FCA0D40610BFF9B00133 /* transport_security.h in Headers */, - 88FAC0FFFC32F9776C64A9908AD55109 /* transport_security_common.upb.h in Headers */, - F54B4C316D9E962A4EC4440320CD3224 /* transport_security_common.upb_minitable.h in Headers */, - BAA9B87D02C5B91941EFBA4BD40E19A4 /* transport_security_common_api.h in Headers */, - 43E324242273E120DF9C3D76CF174682 /* transport_security_grpc.h in Headers */, - E13E2C9C527DC8D3326454627E6E9CE4 /* transport_security_interface.h in Headers */, - 56E4FE89B9E4F26FD63958EA31E8DFB2 /* transport_stream_receiver.h in Headers */, - 46AE1432EEC258D78BF330A856060FF4 /* transport_stream_receiver_impl.h in Headers */, - B3D1E7B88CD2662DAA3100CA676A4AE7 /* try_join.h in Headers */, - F860690E9A66E1BCBDC9EC67A905A4B8 /* try_seq.h in Headers */, - 624B2C4BF2A81FE0F3F41DE7672F9A6E /* tsi_error.h in Headers */, - 8446084E2074AF36B4EC7856D474AE8A /* type_list.h in Headers */, - 92F454DEBD6A0B5E222138E6B61FA826 /* typed_struct.upb.h in Headers */, - A75B89FB34DAEADFD5CB292C520142CE /* typed_struct.upb_minitable.h in Headers */, - A3FD169989B7D9741B5306284626E61F /* typed_struct.upbdefs.h in Headers */, - C2FCA3AE320D88868E0559C9DA9DD07E /* types.h in Headers */, - 5999B64A350313CB47B6DC5D782DA1E1 /* types.h in Headers */, - DB367C67F29B2FFAD65762ABDAB6A2BE /* types.h in Headers */, - 24F818D1E65F8FAB80DD833080645104 /* udp_listener_config.upb.h in Headers */, - 26A58403B4725B58CDCEC0609BE13B77 /* udp_listener_config.upb_minitable.h in Headers */, - 159B23EE4A8A69E2B85360BCA8FE65CA /* udp_listener_config.upbdefs.h in Headers */, - 807365DA3E8E47CD87712CB4FF856BB0 /* udp_socket_config.upb.h in Headers */, - 1AB18BCD08EF839072B29CB78FD4AE0A /* udp_socket_config.upb_minitable.h in Headers */, - 2B67641D5635301964A35DCA0F177765 /* udp_socket_config.upbdefs.h in Headers */, - CAB55522149874C7AA4529D15A8943C7 /* undef.inc in Headers */, - 54A45A57A27E9149C8B40D44FC876848 /* unicode.h in Headers */, - 4804E91E8C9A95C51AAB2299DD9363F9 /* unique_type_name.h in Headers */, - 1A61FC778BEEC2AAE4259D551102FB72 /* unix_sockets_posix.h in Headers */, - 6C5DE160D3BF439460D18576DA7EAB95 /* upb_utils.h in Headers */, - EA35A9AB253D1B93E3B361924B2D6E5B /* uri_parser.h in Headers */, - 8F572C2C612C1E6A6BE89131F40D3754 /* url_external_account_credentials.h in Headers */, - 54359FC87D1FA35D46C226562CF73848 /* useful.h in Headers */, - 2006914EF17F5DCE7418665860E0CA19 /* utf8_range.h in Headers */, - 28C904A1920AF3C8BAB1F53623B3AF76 /* utils.h in Headers */, - 81A94B5DE5BD99F93C4AE2A939E3FA0E /* validate.upb.h in Headers */, - 50B76B1724DC7B8A7C762BEB5FDF350E /* validate.upb_minitable.h in Headers */, - 595C276F19ECD252996678BD2B87C7DF /* validate.upbdefs.h in Headers */, - BE554EE150CE0F265CB15407CE86C95F /* validate_metadata.h in Headers */, - 34BB76D1DE4B8CFC440EE9B1D37E6165 /* validate_service_config.h in Headers */, - F4FF2BBF515A37CD08544ABD9E68A842 /* validation_errors.h in Headers */, - 5995EFF37D95359518119F6122BC6DD8 /* value.h in Headers */, - DB8D05CAC75A33E9D98A8E910A2B9847 /* value.upb.h in Headers */, - 7B155A6228E8D42E1A879A7D70199CCF /* value.upb_minitable.h in Headers */, - 6328644741490E736F686FC1887C63BA /* value.upbdefs.h in Headers */, - 40C5C32B75EF3BDE857D5837402A52D5 /* varint.h in Headers */, - 7481A5E86BF658B6347B2D49AB98B30B /* version_info.h in Headers */, - F41978CFFD10A9064789513CE0B8F122 /* versioning.upb.h in Headers */, - 23C5447C33BDBFD798E4BDAE36758227 /* versioning.upb.h in Headers */, - 84FD5CEF6350D0A7C1DD690753F5B184 /* versioning.upb_minitable.h in Headers */, - 92CAB3C0034D9A0439A1DAD626EAAC10 /* versioning.upb_minitable.h in Headers */, - 3C5172358BD10FE3B61A11FB761FF748 /* versioning.upbdefs.h in Headers */, - 11DB94B907F324166E7DF2DC96836727 /* versioning.upbdefs.h in Headers */, - DD853F310F660952CF78AC7D56F7460B /* vsnprintf_compat.h in Headers */, - 909234B19227242DABB899B5FD2A994B /* vsock.h in Headers */, - 15605A74CCB58BD86E1CB4935406470C /* wait_for_cq_end_op.h in Headers */, - C7DA1B4334DC09074129CC7B47E7C8EF /* wakeup_fd_eventfd.h in Headers */, - D30E89416C503A5B3ED68F1231542891 /* wakeup_fd_pipe.h in Headers */, - 00CB9B1490E6E4C121D532921BF1D7E8 /* wakeup_fd_pipe.h in Headers */, - F87FE134DB9AB231C62C4506C15D5A37 /* wakeup_fd_posix.h in Headers */, - D0376B5C618F25DD223EC91723DBF945 /* wakeup_fd_posix.h in Headers */, - 99E0A255DB59FD5673132702C322891B /* wakeup_fd_posix_default.h in Headers */, - 9BF94DF5BCA27495A849C0CA74B1428F /* win_socket.h in Headers */, - 30CD347D03E5D0B385F83D9E75114DF2 /* windows_endpoint.h in Headers */, - 58E2038DA9233CA73702C153EBAF01B1 /* windows_engine.h in Headers */, - 1B2EB08AB641D85E92B2D36F2D16A53A /* windows_listener.h in Headers */, - D91EC06DE6B44330700EC110DFCAFDE3 /* wire_constants.h in Headers */, - 42425D690AAF738DE3BF9D28D4C6A970 /* wire_reader.h in Headers */, - CABD392520C37A7ADD0D8B7822C6FB65 /* wire_reader_impl.h in Headers */, - 1F83EC1FE8A3C7548E3444BF53E826A7 /* wire_writer.h in Headers */, - 7FA98D473E47EBB86F1F40F51AB4D142 /* work_queue.h in Headers */, - 3A92BBDB7DF5AE1FFD19BCC92FEEEA99 /* work_serializer.h in Headers */, - 848895D6C341B3F54A3FBCB380B62D3D /* work_stealing_thread_pool.h in Headers */, - B57F41399136EDA1057CDC4B2D030CA2 /* wrappers.upb.h in Headers */, - BA09CB6D50A447F3EF3108794B5AAD27 /* wrappers.upb_minitable.h in Headers */, - 13E22C4F6E081F5475AB8D2411E20387 /* wrappers.upbdefs.h in Headers */, - 12CD4723861351C5D46496478CFFE5CB /* write_size_policy.h in Headers */, - 6A72BBB0DCCF901DD4C13F8B306A7412 /* wrr_locality.upb.h in Headers */, - 5F4EF8103F559D6B0D19B6D038A9B99B /* wrr_locality.upb_minitable.h in Headers */, - 88A194BFCFFB8BE7B50F16E649C03E70 /* xds_api.h in Headers */, - 26E44908945CC0AB1DA621C4A1132007 /* xds_audit_logger_registry.h in Headers */, - 0BA96FCB7E2B1C42FF575B52C7F63E50 /* xds_bootstrap.h in Headers */, - B3822843178BBB7ECE681142D8E91CBA /* xds_bootstrap_grpc.h in Headers */, - 80430F8A147C876F4DC0F00351022038 /* xds_certificate_provider.h in Headers */, - 62BA0C80057048108B5067AA391F9282 /* xds_channel_args.h in Headers */, - 5B542EAC9F9676F952AD5C96B65FAD1E /* xds_channel_args.h in Headers */, - 2A5266332DEBA1550A531AC987AEA88B /* xds_channel_stack_modifier.h in Headers */, - 994D24A099396D64E8B33FD0AC1A2C2E /* xds_client.h in Headers */, - BABA47D5CA9ACE0B7B8DE0050337B3CD /* xds_client_grpc.h in Headers */, - 5F1DC10EF88E1F751757F413E4C19347 /* xds_client_stats.h in Headers */, - 6057978390755B26F154FD956231B5CB /* xds_cluster.h in Headers */, - EB7C749E7A79BEF289914D4D30900286 /* xds_cluster_specifier_plugin.h in Headers */, - AFDBB225BBC260254F26D054ABE5A0AE /* xds_common_types.h in Headers */, - 208EC6AAFAFEC0437B138F2540BF0505 /* xds_credentials.h in Headers */, - 58EB5C0B21C3FD02B839422C430641C9 /* xds_dependency_manager.h in Headers */, - A5BE1E647C5C199EB4B2EE31EFCA15F8 /* xds_enabled_server.h in Headers */, - 6F0FF0D9E0133C155203C3EC55D1BB04 /* xds_endpoint.h in Headers */, - CC51D4ADFBC63A89692A54C9D9D214AE /* xds_health_status.h in Headers */, - 45A1CCD635E2FFCFD00AFC9A429A50F2 /* xds_http_fault_filter.h in Headers */, - B70DA02412638FAEE0AE5117BEDACD1B /* xds_http_filters.h in Headers */, - E84B8F583757ECCA416E9E398210BB68 /* xds_http_rbac_filter.h in Headers */, - 590F3CFD4D84E68F0CCEEBFAECCA3D87 /* xds_http_stateful_session_filter.h in Headers */, - 1CE988BE7FC1E58AC7208F753D9B438B /* xds_lb_policy_registry.h in Headers */, - B0E882788A9801B52B58570305553388 /* xds_listener.h in Headers */, - 167B65D9F51C42C053B46E63DE6A956E /* xds_override_host.h in Headers */, - C9C687019F7FCD275859AD06F847B011 /* xds_resolver_attributes.h in Headers */, - A892A43912BEA7A9649F2EE798CCA361 /* xds_resolver_trace.h in Headers */, - D228FD60D1B6AEA925C9FDA65D4A91F6 /* xds_resource_type.h in Headers */, - B3FFD713C9215C9C554D409BB9D1FA7A /* xds_resource_type_impl.h in Headers */, - AC5761DBB91E1A02263DD1DB0F097CDF /* xds_route_config.h in Headers */, - E065786CD0609947EB692682214C2335 /* xds_routing.h in Headers */, - 791299FC6F36F8738E321DD5AC50584D /* xds_server_builder.h in Headers */, - 5ACCF2831F3B68C8D229E1C5AE613FFB /* xds_transport.h in Headers */, - 4FD1F40E49E7AFC97B5EA12E405A4607 /* xds_transport_grpc.h in Headers */, - 02CD0FE6F04FF9954747B1DB7DE2C90A /* xray.upb.h in Headers */, - BE722D2AB3B48335198D71EE8F7EBE89 /* xray.upb_minitable.h in Headers */, - 2F016E5C1380816F9ADF37A1C0BFF78B /* xray.upbdefs.h in Headers */, - 07EC6C32233542B64EFEB9EA4EDF2B83 /* xxhash.h in Headers */, - 3246F881C144331C0B0F3B88C44A6374 /* xxhash_inline.h in Headers */, - 656556C82027429094A3A7F2697284EE /* zipkin.upb.h in Headers */, - FBCBA32F5787E40E966C0C7F49914A85 /* zipkin.upb_minitable.h in Headers */, - 75E7BDA6B6BC1E34832629AC5704B23D /* zipkin.upbdefs.h in Headers */, + 2C83B71998A20C15BA06F27992E70ECD /* FirebaseSharedSwift-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C43E3A7759DF041B1F623330F8D4DDE1 /* Headers */ = { + 9B3E68E8B7F1DD4D513809D413BA5F0B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 677176E6F0A4B0ECC5E136DE1C2BD52B /* abseil-umbrella.h in Headers */, - 145DDC703782C8E0C4C97471D899FB05 /* address_is_readable.h in Headers */, - 5B6C59AA3D5D7CB35F620E8B6C493BCA /* algorithm.h in Headers */, - 59F4D284F6D3F2C7BB1AFC82D3115124 /* any.h in Headers */, - 14C4EBB4FA41E2FFFF4CCE4D00DA68FB /* any_invocable.h in Headers */, - 6337BC55370FEAD21C20A0C14EAAF4E2 /* any_invocable.h in Headers */, - C73CC961AC7405632B2CD7C572BA1681 /* arg.h in Headers */, - 8329E61E14948ED3C889E0044314FDA4 /* ascii.h in Headers */, - C25C6EF84BE530E6294E40AD5808B694 /* atomic_hook.h in Headers */, - 4DAAE24229717ABE050CEAE1C08E9BC3 /* attributes.h in Headers */, - C8193F26176D1B5A522BD99C80293277 /* bad_any_cast.h in Headers */, - 8A0F6A26D4CBF89EDB50FCA62068CE55 /* bad_optional_access.h in Headers */, - 130FD9E581D3A2F7D775790191EBCF39 /* bad_variant_access.h in Headers */, - C80EE4A5B4DB3F844207A061C590581B /* barrier.h in Headers */, - D2CF10613D7C27AD9942B8A7DB46A7A9 /* bernoulli_distribution.h in Headers */, - 3910D868080E2FAA85EAE2F562369DA8 /* beta_distribution.h in Headers */, - 0D9F28225AED361AF8E2421434E7F999 /* bind.h in Headers */, - 04289219E323274FACB9AB07FA3689E7 /* bind_front.h in Headers */, - 5B1BD69A98A8A26AB76B8676FC7AC260 /* bit_gen_ref.h in Headers */, - CBB7CF651901775431CB9A254A432B0B /* bits.h in Headers */, - 9E7A44989FC32978CF6AF4EFD743FC50 /* bits.h in Headers */, - A5E22B7DCCFCC410A106921618E1BC77 /* blocking_counter.h in Headers */, - A1A6088725DFD64460CF4311C9CD158C /* call_once.h in Headers */, - D42181E5E77878D898CC7BFB9425DA07 /* casts.h in Headers */, - B06072FCB6D325699F88111CA1B6EEA8 /* charconv.h in Headers */, - C5857630D49FC565A87E0C4A60069940 /* charconv_bigint.h in Headers */, - 5BDACF78ADCF94DAFB3688B78C5D01B8 /* charconv_parse.h in Headers */, - E10FD5F6D75011BC33D2A310D5DC540D /* charset.h in Headers */, - E417BA491946362C0D35B0A8D399BDEE /* checker.h in Headers */, - 7E4EAB39CD5112C4D78CFB37774B404D /* city.h in Headers */, - BA46BE22A67B85DCD3AB264EA4427ACA /* civil_time.h in Headers */, - C4E779A0C728F674AA89240E863A8B78 /* civil_time.h in Headers */, - 9E723E7524A8F9BCFE3738D0C13253BB /* civil_time_detail.h in Headers */, - 225FA337232A56C9765ECD41B84E45F9 /* cleanup.h in Headers */, - FB0F3DF2AC425392D6B7992BF3B76CF2 /* cleanup.h in Headers */, - F0948DE27C671D46D1D74F84C9AA9CCC /* clock.h in Headers */, - DB3B9263DB81E224DB4D93B5F083F125 /* commandlineflag.h in Headers */, - F4AC1DE6365CA9DA7B87436182D449C6 /* commandlineflag.h in Headers */, - 28D01200AA1DF3DBA1A3101EBB8A73C3 /* common.h in Headers */, - 242F113F1C9BD063B54034C01A309D98 /* common_policy_traits.h in Headers */, - 1BA372F4EE0FEB3462D0D72E830002CA /* compare.h in Headers */, - C6B909AB4C408DD09419E8E818934355 /* compressed_tuple.h in Headers */, - F3C533D7CE565472D84930849755951B /* config.h in Headers */, - F0B7C68EC2CA4AFF4EA89333467A6D76 /* config.h in Headers */, - 7B901273D3738B7CBDFA5791DC165A6E /* const_init.h in Headers */, - F5CD9A01E31AB936DFAA6E83BFD37015 /* constexpr_parser.h in Headers */, - 79730309B54AB5BE9F41BB08B9849E9A /* container.h in Headers */, - 6AFB82EF524AFA4468F85D7843480BCD /* container_memory.h in Headers */, - 5E651CB99E85DDFB37AE2960FF06D353 /* cord.h in Headers */, - 7D5CF2021AC34AE5404B873A9F24B397 /* cord_analysis.h in Headers */, - B2E4316F53B2C04C31B352A13412873D /* cord_buffer.h in Headers */, - A102361CBE6912822D0B79FE50DB6B46 /* cord_data_edge.h in Headers */, - 89BD17E07F592F62A089912DC6775613 /* cord_internal.h in Headers */, - 155508D306B23324BAA68A9A5C273670 /* cord_rep_btree.h in Headers */, - BBA4DE2686EFC33055D1280D2F9B0BB5 /* cord_rep_btree_navigator.h in Headers */, - F003A65F993BE72D8C7192CFA0CF84DE /* cord_rep_btree_reader.h in Headers */, - 2909E5FB0C6BC1A0B58EAF11F9E411A7 /* cord_rep_consume.h in Headers */, - 7F9A94859D307E448C59A7574105A030 /* cord_rep_crc.h in Headers */, - D6D4E6F5E342F552FB8D343CB2677703 /* cord_rep_flat.h in Headers */, - 978BB1F82178BFB5CDE1B5BAB4C15D21 /* cordz_functions.h in Headers */, - 21432F83C3F87C29E9C142CAD71B9688 /* cordz_handle.h in Headers */, - 8D15F4132AAD899D6799DEA584610E70 /* cordz_info.h in Headers */, - 4E9BFD2B9ECF4B3E8B41B6CB427DD6F6 /* cordz_statistics.h in Headers */, - 75F7C4B12D1B436A8ADD5EBCB7CF3F63 /* cordz_update_scope.h in Headers */, - 4C2FA0E6A5CB98536FC5C1D637197096 /* cordz_update_tracker.h in Headers */, - DA954C74EEC15A19715E23C801E9A064 /* cpu_detect.h in Headers */, - C70F81E69B9D246347F0AD021E52BAA0 /* crc.h in Headers */, - 91FB9319D5E7F90786D29CF50D902D83 /* crc32_x86_arm_combined_simd.h in Headers */, - 18A1F47C1FFF62D6D96501DC27F214CB /* crc32c.h in Headers */, - 39677C0475E3F894840F6F25B496C049 /* crc32c.h in Headers */, - BCC47E6CD4252E336D02ECC36D80E5DA /* crc32c_inline.h in Headers */, - B04CA5A486B42D4AC07418507F9641AC /* crc_cord_state.h in Headers */, - EE05D393D208372A8FD8D5FD983C5944 /* crc_internal.h in Headers */, - 2D590FF057382E9958EF3D1C399883B2 /* crc_memcpy.h in Headers */, - 60103F4EF5E3E27B386497B13366CCEB /* create_thread_identity.h in Headers */, - 841D0BC22CD20D91B36BA5517AB118A0 /* cycleclock.h in Headers */, - 7A2987B9ADC1CAF17E0804315CBFB5A2 /* cycleclock_config.h in Headers */, - 78843DC3D626059F60B13CBA31E4A403 /* damerau_levenshtein_distance.h in Headers */, - FD00369BDE34F27C52A4B4E54A9C10E7 /* declare.h in Headers */, - 272AF4DD030E673701AA97DC47CD6BA3 /* demangle.h in Headers */, - 2F08E7296F9F11A23344FD17A32B01FF /* direct_mmap.h in Headers */, - 63567E3AC9B00D5C1131A3E3ECDE7C28 /* discrete_distribution.h in Headers */, - E7BC569A6BDD11408843F9546315FC71 /* distribution_caller.h in Headers */, - FC9A3912D0284F02B4820D31FE59A3AE /* distributions.h in Headers */, - 0D8068156868BFE7200916D14E0A60F9 /* dynamic_annotations.h in Headers */, - 9A2C9F0F40E50C8941CE413BDA6CB5DF /* dynamic_annotations.h in Headers */, - EF33B7A56410360F21E6859539576D7D /* elf_mem_image.h in Headers */, - A183682AC796D905DD5CCAE12995F9A0 /* endian.h in Headers */, - 54E448D1E7D14DA38ED902AD311DFE87 /* errno_saver.h in Headers */, - 470BF71071C96FD9163AF90C695A8FA9 /* escaping.h in Headers */, - EB159D3D60C7E89983EB5B7D467A7D14 /* escaping.h in Headers */, - 10DE85704C3A247FCFFB3AA3D8A24FAF /* exponential_biased.h in Headers */, - A20A755B63811F2781502F8199565D6A /* exponential_distribution.h in Headers */, - 87DE33BF81BF5F33E43E78314CAD201B /* extension.h in Headers */, - CB9B7F9C7128FD0A74D74D4D5367ECEF /* fast_type_id.h in Headers */, - 00934B62450B8483DB435EB24DB4DE2E /* fast_uniform_bits.h in Headers */, - B8636CD03740BA70494C321A24CA205B /* fastmath.h in Headers */, - D9990EE25845F695534A4263E7FA3159 /* fixed_array.h in Headers */, - B6CD9E51B7F79F3492247811BD7F431B /* flag.h in Headers */, - FCCE1487D847188408B416B65709668C /* flag.h in Headers */, - 51E00956081856BBB265B1FADB446548 /* flat_hash_map.h in Headers */, - 5B3BBFC7E7367F4EB8D0AA076F2DED01 /* flat_hash_set.h in Headers */, - 8673B268BD4CB9501F718C30C8668FE9 /* float_conversion.h in Headers */, - 1B94922DB61CA7BEFF91A34FFF38F7BD /* front_binder.h in Headers */, - EE12844A3C94BB429BEC9A636F894C92 /* function_ref.h in Headers */, - 187C3C5E034819C507B8C2CC819746CB /* function_ref.h in Headers */, - B3C2C1BE80CAFD5BF94564EA59F5FDEA /* futex.h in Headers */, - C13E381D4D4061685C1AB8FAFB377ABF /* futex_waiter.h in Headers */, - DCFF018516FACD90159A481ADCB06B4C /* gaussian_distribution.h in Headers */, - EAC1F17FCEBF1194725F46BCB8A70191 /* generate_real.h in Headers */, - 8CE59881A834C6FFE0459D2618400E3E /* get_current_time_chrono.inc in Headers */, - B2A801094BD33DAD83CEFF877724E933 /* get_current_time_posix.inc in Headers */, - 97F31B0B97664B9CAB3CA65475F7F4F8 /* graphcycles.h in Headers */, - 0B6118667F1D811516169E798AC36B42 /* has_absl_stringify.h in Headers */, - 82CC2F39306E890122290B305F10C58E /* has_absl_stringify.h in Headers */, - FDB33BB5373CC103D4A7C7855DBC86AD /* has_ostream_operator.h in Headers */, - 1FCD0FE21B53DC5B237849D2C09C3E08 /* hash.h in Headers */, - 30853FFC039BCEAD9CD7A6B248A9F358 /* hash.h in Headers */, - 4A900B112673DEEE59AB71B01DDD658E /* hash_function_defaults.h in Headers */, - 57DB3BF977C4C0B510299F568A8AEEA7 /* hash_policy_traits.h in Headers */, - FF80D5851093CE364ABD51AE38D80756 /* hashtable_debug_hooks.h in Headers */, - A3A380ACBFD9759549FD1B2A247643A2 /* hashtablez_sampler.h in Headers */, - C4D40D51262E1B4AC6E4D7C4AC3AE449 /* hide_ptr.h in Headers */, - 8FC6012BD1CC4C2EC6A7F9F1C3987A9C /* identity.h in Headers */, - 4C16182EAC9AF7E574D27BEE5A370404 /* inline_variable.h in Headers */, - 8A3A6C9763C35405BFA17829D9AB5076 /* inlined_vector.h in Headers */, - 79B168AFC0039B2E674DD78718B7D82A /* inlined_vector.h in Headers */, - F48BB1FB66D374522F3FFF02F2F2BE91 /* int128.h in Headers */, - 6E0EB42128EA098B836E677C828569DC /* int128_have_intrinsic.inc in Headers */, - FD0688CFB135C2D2A3647350329D4DFE /* int128_no_intrinsic.inc in Headers */, - 298FF4330E273BFC06911CE785EE9E7A /* invoke.h in Headers */, - 07F06A65CCA27381F0736E6291835C5A /* iostream_state_saver.h in Headers */, - A2E31D529235112CCD87E131F1F969CB /* kernel_timeout.h in Headers */, - B45F651C83FEE1F7C7E56AF03F048C29 /* layout.h in Headers */, - C3FC8F7A269BA0D455C69B04BA5879F2 /* log_severity.h in Headers */, - F60BF25529ABD557FCE7F30C3BAA34E9 /* log_uniform_int_distribution.h in Headers */, - 55DFDA0E6B9B02D38721B218994AD330 /* low_level_alloc.h in Headers */, - 47A7FAFDE35F1907516AEB7C622447B7 /* low_level_hash.h in Headers */, - 86C0FF646F71D663A96681C4E33F2871 /* low_level_scheduling.h in Headers */, - 3CB4795819D1CE84573E1EB62C36BD1D /* macros.h in Headers */, - D5A0C617B1A729E3B23D0AB1A2729F98 /* marshalling.h in Headers */, - 2E10A2F97E1AF7503BFC0637AAD45E94 /* match.h in Headers */, - 9E49AC9C8116FFE73A2C3E52940865E6 /* memory.h in Headers */, - 64FD3560FB457C08D8AD499BBA4F55FE /* memutil.h in Headers */, - CC7422E5629096DC38E2ADB6CD960F00 /* mutex.h in Headers */, - C09DB4869AA05A6B5C9008ABBB62C32A /* no_destructor.h in Headers */, - 4192E8E4C25E8B8F9DD8FE76CA2E05BC /* non_temporal_arm_intrinsics.h in Headers */, - D3854CCE1DAC9AD4A075C06C0804E0E2 /* non_temporal_memcpy.h in Headers */, - B27455692B77D6DE957F7DFE9A06197A /* nonsecure_base.h in Headers */, - EBD2B115576CBF31939211E37AE10E89 /* notification.h in Headers */, - D67AC290478B54C919E08F7D0F29704D /* nullability.h in Headers */, - B49147DABAABFA07476F82FABCE41543 /* nullability_impl.h in Headers */, - 0033F21A64DC756A3B2A2E15D2FA7EDE /* numbers.h in Headers */, - 33EB4731BDE3FB8AB319DDBBB9DECFEF /* optimization.h in Headers */, - 229F8E9A30D2B430C61F36AAB6A90751 /* optional.h in Headers */, - 44422E8439C337E1D5AF8B814BBD90A8 /* optional.h in Headers */, - 0D0441160F7BAF459E8ACE8244202F17 /* options.h in Headers */, - ADA0C2E3B392DBA7F9C6BA21A2F2F019 /* ostringstream.h in Headers */, - 1327F6688EC08B084058FB0266361A5B /* output.h in Headers */, - 8C4A9117CF43D3D095B0C8E0D2D02EDD /* parser.h in Headers */, - A8532CB01F86EC6A2D2003845EE8C6E8 /* path_util.h in Headers */, - 8666DD6599B636F45D2BC2F2512A8910 /* pcg_engine.h in Headers */, - E383AB80C1784B6981BFEFC1A1F2EF6A /* per_thread_sem.h in Headers */, - A6A95BBC49C03488C4D94AF4B74EFB45 /* per_thread_tls.h in Headers */, - 6116EAB033064EA5BE978379096E0BCF /* platform.h in Headers */, - 6DF6D7518C68199C0ACA388A12DF8545 /* poisson_distribution.h in Headers */, - 123A79C8A299E9383CEA4FACB63E2FC3 /* policy_checks.h in Headers */, - 58BC99B49812CBB6B42C32CCF370E6E9 /* pool_urbg.h in Headers */, - 691BDDDDEC548F41EF77A0D572D638FA /* port.h in Headers */, - AFD7DEFC86D6E2344C0F83A435957667 /* prefetch.h in Headers */, - 78E7597988CA83852C70339C45C9E4F7 /* pretty_function.h in Headers */, - 696BF10D44DE1F1928443ED878B98902 /* private_handle_accessor.h in Headers */, - 07EBEFE9D2E2D5AE88E3DCE58041F66C /* program_name.h in Headers */, - 68452595258D13246B5E88A8CA43C038 /* pthread_waiter.h in Headers */, - 0DDB9D866E0EDACD7BE8E4F0A752B821 /* randen.h in Headers */, - EAB2074CE338D12438CDD5C1E30ABA45 /* randen_detect.h in Headers */, - 47EE0CCAC36C103318091ED251D6FCC4 /* randen_engine.h in Headers */, - 10CE352014293489AD2B47B0AA1426A1 /* randen_hwaes.h in Headers */, - A21AA72EC5590A9BB5DC8FCAA306AEDB /* randen_slow.h in Headers */, - 2FBF04DE6F3BC2B534AEC92524B85D2B /* randen_traits.h in Headers */, - 6D32303646ED82095262FE13666ED832 /* random.h in Headers */, - C17C397B490370A383AA768EEA897743 /* raw_hash_map.h in Headers */, - B16766B54258CF5555EF9E15D6733C2B /* raw_hash_set.h in Headers */, - AACC85F0E3E01FF20EFA9BA7980B8612 /* raw_logging.h in Headers */, - D707C4D1C74974B6C270C581482E21B6 /* reflection.h in Headers */, - 16676785F2483FE1279569BF01449BA9 /* registry.h in Headers */, - A6052E7322DC8163C274B34BE3B6FAB2 /* representation.h in Headers */, - 39A333C8DF1F0E2EB8585AE70616D5E6 /* resize_uninitialized.h in Headers */, - 88C59D28788D33FB72E0E11816B63DF9 /* salted_seed_seq.h in Headers */, - 4E65EC343813445C227C65D9E45A3991 /* sample_recorder.h in Headers */, - 77D55488295B844954FE3EFF69AD8960 /* scheduling_mode.h in Headers */, - 37A59DE4E245F810E671AC4F4351908B /* seed_gen_exception.h in Headers */, - C6B989A3A1329256044C6A614B3F17B0 /* seed_material.h in Headers */, - 8128CB484F6E4754FA4C95AB134CF986 /* seed_sequences.h in Headers */, - 57F8FD0BAB2418B5BE6F58B0B61F5F9A /* sem_waiter.h in Headers */, - 064375A501406B337688299295D1B520 /* sequence_lock.h in Headers */, - 52EC80A10A846A004467F8A6AA63CAB0 /* span.h in Headers */, - 9F746E6E58EB9E848290F49E374F81D9 /* span.h in Headers */, - 290187E3D66C33FBF7DA4B1E6A0D2506 /* spinlock.h in Headers */, - 9DA3DA713B371DFB398B0580DD06290F /* spinlock_akaros.inc in Headers */, - C87134707983B9EF9A54DEDF7DF5F403 /* spinlock_linux.inc in Headers */, - 335B0485DBEED9F0006EF264C90D07F4 /* spinlock_posix.inc in Headers */, - 198B37123B4BF57AF91E079FF04CF8DA /* spinlock_wait.h in Headers */, - 27A05CB3A2C319E2E81613D87EB0F5C2 /* spinlock_win32.inc in Headers */, - 9428C216FA304DBA525C2A40EDD471D3 /* stacktrace.h in Headers */, - 6A64C823A8F6212EE1615F05F703257F /* stacktrace_aarch64-inl.inc in Headers */, - E8FD0D6B50ED24785B8C1E8C24B8D4C2 /* stacktrace_arm-inl.inc in Headers */, - 37D916832A3B65A00950DA8834534B50 /* stacktrace_config.h in Headers */, - D487DAD9C3B7A40E1E9CB718CE0A49C8 /* stacktrace_emscripten-inl.inc in Headers */, - F2FFD838DDF68A45E8A655E622BC1BBD /* stacktrace_generic-inl.inc in Headers */, - 206284AEACDBA177BA3B841C847CED7C /* stacktrace_powerpc-inl.inc in Headers */, - 10CDCB01F5EC808B132562C1F2FF06A9 /* stacktrace_riscv-inl.inc in Headers */, - 27A614BE6366EB21A1940B693E60A692 /* stacktrace_unimplemented-inl.inc in Headers */, - D61EDF08482C94DB0E7107F78D39AC98 /* stacktrace_win32-inl.inc in Headers */, - C93FCF8EDE22BCE3196B25D0354DFB61 /* stacktrace_x86-inl.inc in Headers */, - 7C6F9C06E90247A50852D7B0C884C64E /* status.h in Headers */, - 5248524F0C9C6C473FD8BC78FB66EBE7 /* status_internal.h in Headers */, - C00875759FAA368A17818BEB7EED7E15 /* status_payload_printer.h in Headers */, - D18F1438EB200BDC5C8B7CDE6D96485E /* statusor.h in Headers */, - 907234E366016B6566C98265E2B21CEC /* statusor_internal.h in Headers */, - 74D4310A9CF21D6789908349AB928F17 /* stdcpp_waiter.h in Headers */, - D3ED722B557209F85E6DDE69413B2F0F /* stl_type_traits.h in Headers */, - E074563E39790D0073644F4470D27BE6 /* str_cat.h in Headers */, - 042CDBA330A49E6B5292C2BD69540324 /* str_format.h in Headers */, - 3D9CCB41A121F4F7F67F94AC1D2445DB /* str_join.h in Headers */, - 9D8C71B0FE51957FCEACFAD6717EA67C /* str_join_internal.h in Headers */, - E2B011576BB9D2645E54F8F2B0EB920C /* str_replace.h in Headers */, - 107CD09CE48689B176B0A6B1C627049B /* str_split.h in Headers */, - B80DDA48F936928AB3056C4E2F313E7B /* str_split_internal.h in Headers */, - 97D031B200010E690B4EE834E40B4858 /* strerror.h in Headers */, - 84FFFDBB08E9B0DD118321BCF7EB9250 /* string_constant.h in Headers */, - BF724BA3CD3D6F74016885678F02E3B5 /* string_view.h in Headers */, - 9D14AA702E594FC3D885F7BC788C83E1 /* stringify_sink.h in Headers */, - 7E687DECE9E386DA3BCA99242079ECED /* strip.h in Headers */, - 40FBDBEE83FCD2B25CB3A4C239E37B47 /* substitute.h in Headers */, - 4B3CDF006990B97B94E554E3BFACC483 /* symbolize.h in Headers */, - 4D8F0BCE491EE624746C31C65A002EB2 /* symbolize.h in Headers */, - E947D269704015967A86ECE4F60E815C /* symbolize_darwin.inc in Headers */, - BCB5A5BC84FDA28237263FF3D8B7651A /* symbolize_elf.inc in Headers */, - F54D7A5B789AD392EDDA5412FDAAA3F6 /* symbolize_emscripten.inc in Headers */, - 2D15EA189FA62851B099FCC1BD004100 /* symbolize_unimplemented.inc in Headers */, - 255384C7B6941273D57D227BD668BF8E /* symbolize_win32.inc in Headers */, - 1728954675B44E3A53EF59C040DF82A2 /* sysinfo.h in Headers */, - 2EB3BDD7D7591964DC8116C14B7687F5 /* thread_annotations.h in Headers */, - 15ACA900C0F578547BBD6C44ACEDA475 /* thread_identity.h in Headers */, - 8753F7CB2D78E0FC2306ED8B61B81BD9 /* throw_delegate.h in Headers */, - 731626A42E48FBB12370D84F94B7D012 /* time.h in Headers */, - 4FA2E2EC62E67A33E16380ACFD93A734 /* time_zone.h in Headers */, - 6C50AB1FA868484C1A64B9065F848E14 /* time_zone_fixed.h in Headers */, - 3F49463779800332019B4DCBB6EA6509 /* time_zone_if.h in Headers */, - 84761D8CF8D586AA4E37F4C8FCE8864C /* time_zone_impl.h in Headers */, - 11B8758EDDB97B27DDF21AB27B06EEA2 /* time_zone_info.h in Headers */, - 7031FE127CD53E778F4F419B8387DC6D /* time_zone_libc.h in Headers */, - 05A321642D494B5D887386BAA4180BFE /* time_zone_posix.h in Headers */, - 65B11235A5A4E825CEC10C90D731E519 /* traits.h in Headers */, - BA332703D30FAEF10E56E9F2A8498F08 /* tsan_mutex_interface.h in Headers */, - 0364EFB3AFBAFA52C2CEC19DC3093DA0 /* type_traits.h in Headers */, - 2E2E658F36CEA04D306DA94C4118FBFC /* tzfile.h in Headers */, - CC1D417573BA9831477D799291A0DCCA /* unaligned_access.h in Headers */, - 3F9FF70BA222967C6528B6CDE228678C /* uniform_helper.h in Headers */, - 8F32A308A5C48F7403E795B66E0B15ED /* uniform_int_distribution.h in Headers */, - FC5F5A2288B7C3C57B3B6108BCACB6CD /* uniform_real_distribution.h in Headers */, - 6805EE07EE7C72663512637FAAC751C0 /* unscaledcycleclock.h in Headers */, - B3DEC14A6DD548855451F497F08F88FA /* unscaledcycleclock_config.h in Headers */, - A3173503BA72DC5E1FF8C86AE445351A /* usage_config.h in Headers */, - C37B11854B4DB25CE8E6DC50C3721962 /* utf8.h in Headers */, - 25BAA3FD7373351AAE4A10339565C34B /* utility.h in Headers */, - 91EAF67892ECA53097607D719C3DAF67 /* variant.h in Headers */, - F5FC9DA854C3ED7ABE60525AF6480F44 /* variant.h in Headers */, - CB2C47FA9751BE7D49ADF531CF2A7339 /* vdso_support.h in Headers */, - 9EFF5F0F17816BB8BB350597E0FFFB83 /* waiter.h in Headers */, - FB0C10D35B5072A02623046E6BB63688 /* waiter_base.h in Headers */, - 2FEC502EDEE6356D6D33992D1F629500 /* wide_multiply.h in Headers */, - A48F7FFB2451A6D7B5C6AD8F1801EAE5 /* win32_waiter.h in Headers */, - 92D119C97F4FBC76AA7294EE6749ABAA /* zipf_distribution.h in Headers */, - B86B5AF1B3D7D97C542828A7256E75A4 /* zone_info_source.h in Headers */, + 79F7BE9904FDB790E7744DB435BDF790 /* GoogleUtilities-umbrella.h in Headers */, + 62A56D359D3AEBAF58A065849D14C493 /* GULAppDelegateSwizzler.h in Headers */, + 631ED0EFB9B6CC41EDA65522329F9839 /* GULAppDelegateSwizzler_Private.h in Headers */, + AC420304D6DF3C1A7EDEC2AC67EFC14B /* GULAppEnvironmentUtil.h in Headers */, + 2C305D8CD344ADB2992C0EB109915033 /* GULApplication.h in Headers */, + 1E31EB450685BDE2DD67CD3E9E8A1FC8 /* GULHeartbeatDateStorable.h in Headers */, + 3D57447CD2C986C8854DE7083B819135 /* GULHeartbeatDateStorage.h in Headers */, + 42B1CD5E5126E18A9ECDC38595BE3212 /* GULHeartbeatDateStorageUserDefaults.h in Headers */, + 75A77F237EE0898CC4C84A4605DA60D2 /* GULKeychainStorage.h in Headers */, + C0D33A90840ADE1A2D20A039E1F232FF /* GULKeychainUtils.h in Headers */, + D7881D066C1A7B28C2179A89FB16C548 /* GULLogger.h in Headers */, + 4BA9B91E655DB542056857A7FFBEAE62 /* GULLoggerCodes.h in Headers */, + 77270AC63ACC860138047BEAA7A8089E /* GULLoggerLevel.h in Headers */, + 6DB5EFACF6F5595CDDB6F46606916298 /* GULMutableDictionary.h in Headers */, + D899339821728B0E8D098C1C6A8D7299 /* GULNetwork.h in Headers */, + 1D92BDA3339AC266BFB5C4D72BA2A702 /* GULNetworkConstants.h in Headers */, + 6B29B04BA3BB9C6F02621C94F0E11E26 /* GULNetworkInfo.h in Headers */, + 69BB1640380DDB2CBE9F9005EBEC85EB /* GULNetworkInternal.h in Headers */, + 3FB3C08450F5B4E53D1686FBBAE6F181 /* GULNetworkLoggerProtocol.h in Headers */, + DDF3B002F009DB8FB4BDC2F4A6D492CE /* GULNetworkMessageCode.h in Headers */, + 01A979F8D2267EE0F0669659C23BA9B5 /* GULNetworkURLSession.h in Headers */, + 99212185B56DCB8ECE36950AEB64F049 /* GULNSData+zlib.h in Headers */, + 9D3182D7B85BCE93E1368AF170B4EF67 /* GULOriginalIMPConvenienceMacros.h in Headers */, + 8E81D346724F33F867B6D6F289BA0226 /* GULReachabilityChecker.h in Headers */, + 29AD860FC3005300BB92D262DBC38C63 /* GULReachabilityChecker+Internal.h in Headers */, + 5A7B4D08305FA2ED47C4CA8BA664ADD8 /* GULReachabilityMessageCode.h in Headers */, + BD8CA88A8E6B8F0BF76C54EA00EE1CDD /* GULSceneDelegateSwizzler.h in Headers */, + 29293AE03106905D00DF5F499D316477 /* GULSceneDelegateSwizzler_Private.h in Headers */, + 895E74232480EB7AD3D07771631AC32B /* GULSecureCoding.h in Headers */, + 49F509F6F6BAD743E0C30ADAD9DF6ACF /* GULSwizzler.h in Headers */, + 44699EE7E3BFE7C05ED3F1CA6092BFEC /* GULURLSessionDataResponse.h in Headers */, + 99F5C54064DA274983C7B7CE537C9A95 /* GULUserDefaults.h in Headers */, + 129B780A23CC9B668F35C9EC4E4770AC /* IsAppEncrypted.h in Headers */, + 6CC36020DCF5D7E47F192D65D1AC228A /* NSURLSession+GULPromises.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CB21B6767EC9AEBEF37BED5107BDB676 /* Headers */ = { + AE12951B4AC7EDE8DE69BD505191B4AD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 488F2D8C111D27808965FEA221D8F082 /* FirebaseSessions-umbrella.h in Headers */, - 0FF2DB491F8B439B5CE661CA19F27AC6 /* FIRSESNanoPBHelpers.h in Headers */, - 0AC23FBFDE7E525BE71186E616F5A299 /* sessions.nanopb.h in Headers */, + 8E66E4669CEA69635116B211D48FC826 /* FacebookCore-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CB4E5E65EFB71E251424A34DB0D7A2C8 /* Headers */ = { + B2357902595F41DD0AB2E27070B5CB7F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 02A05315D9A34686B8DF77C12FB3CDCB /* nanopb-umbrella.h in Headers */, - C97A7069C27A668EFA1E0EFC57691C06 /* pb.h in Headers */, - 028D67CA1589359F45C2A9E67C36F5B7 /* pb_common.h in Headers */, - C3124A0340C23DAC1BAA98386247FCCC /* pb_decode.h in Headers */, - 9FAC03834C89E9A9754AA7A26413218D /* pb_encode.h in Headers */, + 31621BFC1F2A3E738413E339C4D9CBB0 /* FIRAnalyticsConfiguration.h in Headers */, + A7C1B119EF8879D19FD91804DEDD7D67 /* FIRApp.h in Headers */, + BC2CC0281EBB61678D431673E045520E /* FIRAppInternal.h in Headers */, + DE9E08319D57648CD64AEC485FF34619 /* FIRBundleUtil.h in Headers */, + 4D30F6B86E9A18F6185A83009A16AB56 /* FIRComponent.h in Headers */, + C4758E6D73BF4754481562207C6AD188 /* FIRComponentContainer.h in Headers */, + D78ACDC54286C3C6E0F2C7B15963CA26 /* FIRComponentContainerInternal.h in Headers */, + D97D9C683F3BA7C8DC19B075B29266FE /* FIRComponentType.h in Headers */, + 0F6F0FDA982A7D8CCBA7D7D6999D13BA /* FIRConfiguration.h in Headers */, + 427D381B6DD54884598BD777F56DCB76 /* FIRConfigurationInternal.h in Headers */, + DA09C592F04DC7339697F3ADB86E8486 /* FIRDependency.h in Headers */, + 947301847B20094A026122EC2D3A3159 /* FirebaseCore.h in Headers */, + C4CE45AEEE004A34B808FA7A0C19A180 /* FirebaseCore-umbrella.h in Headers */, + 78BB44C82B43A29E02329E5D0DED1DBF /* FirebaseCoreInternal.h in Headers */, + 356C30D7557A15FAB75D01E915355F79 /* FIRFirebaseUserAgent.h in Headers */, + B0C016D5BF5F35651EA444D7B5C0E240 /* FIRHeartbeatLogger.h in Headers */, + CBE2E26D0EB4E170C908754BFC5B1C4C /* FIRLibrary.h in Headers */, + 062457D380C6F101283E9D0358A6A17D /* FIRLogger.h in Headers */, + A48541B046649F130D0F5706A03CAE14 /* FIRLoggerLevel.h in Headers */, + 9F3D4C3BDC3A90BA6F8015A3BF2C6FA0 /* FIROptions.h in Headers */, + DE72DC773933ADB1DD2883CD205CB490 /* FIROptionsInternal.h in Headers */, + 8391A94497C013AF279D0EB5ECB53109 /* FIRVersion.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CEA822D3EFBB181FABFE145C313D6206 /* Headers */ = { + B47A77C91AD2671E3DC947D68A3C9AC6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9AC205CB9D8876AB0EDC15128555BF0E /* cct.nanopb.h in Headers */, - 5B60A93364959A25FE4ED8C04BE9DE01 /* client_metrics.nanopb.h in Headers */, - A09E551BD7F3CBDD8060CBC21FC20AE5 /* compliance.nanopb.h in Headers */, - E944C8551EBF2AFEA0462CF40077B0A8 /* external_prequest_context.nanopb.h in Headers */, - A35ED478A24B8A02C14D38158199B196 /* external_privacy_context.nanopb.h in Headers */, - 5913BCB98F24771F26D6FD64C55B24AB /* GDTCCTCompressionHelper.h in Headers */, - 3AD9A9F8223F76A85BEFC1E2E0FB30F4 /* GDTCCTNanopbHelpers.h in Headers */, - 6DFFB1C448794BB0906FED78234E9013 /* GDTCCTUploader.h in Headers */, - 73F242A4791CFA2EBB716229BB88BA4B /* GDTCCTUploadOperation.h in Headers */, - 17499BF9E690F61F9CF12F61FEFC15D6 /* GDTCORAssert.h in Headers */, - 69CFF33679B90B2F1A4ACF478AA035C7 /* GDTCORClock.h in Headers */, - 1F1B90C4A9825E77EDB24D8A281067E7 /* GDTCORConsoleLogger.h in Headers */, - 275BE73F0F843BC9A7FA859D82937826 /* GDTCORDirectorySizeTracker.h in Headers */, - 90007CFF9FDE2AE741F155B2C8F92FE6 /* GDTCOREndpoints.h in Headers */, - 90DEB91108DC9A27D0D0CC5374A4CD0A /* GDTCOREndpoints_Private.h in Headers */, - FDD45B24CD0D53CB06DAEDE7FE03A5A9 /* GDTCOREvent.h in Headers */, - 415290080FE6E380C4D746CEBFC8747D /* GDTCOREvent+GDTCCTSupport.h in Headers */, - 87F8C426A8BC1B9119C28A718CEAC5B4 /* GDTCOREvent+GDTMetricsSupport.h in Headers */, - 12042A2B12E60ED4377520201090909D /* GDTCOREvent_Private.h in Headers */, - 7D74A9736F6E4B8FAEF5A9471D80DB50 /* GDTCOREventDataObject.h in Headers */, - 5B3BDF1DAE695B6D0E8322406EE63939 /* GDTCOREventDropReason.h in Headers */, - 7E8CECC581C51DCE5CE4D6EA256DD691 /* GDTCOREventTransformer.h in Headers */, - A3CB8F9AB4FB95CC42D3F9D61B31A55D /* GDTCORFlatFileStorage.h in Headers */, - C5592FDA9D1DA6C0DAC9A03EFA332653 /* GDTCORFlatFileStorage+Promises.h in Headers */, - 93C785DBA3B34F9787D4088CF6C718A1 /* GDTCORLifecycle.h in Headers */, - 8917D1E0FCEDC93FF57879201E0BF796 /* GDTCORLogSourceMetrics.h in Headers */, - 091B406F12C9FA51D47494B31061A06D /* GDTCORMetrics.h in Headers */, - 7DAE6EC95424C53DD06E12F643AE4663 /* GDTCORMetrics+GDTCCTSupport.h in Headers */, - B2CC68DB54B94BE51E9C7818578EC74B /* GDTCORMetricsController.h in Headers */, - 1A1C59ED1D7E4B7A7A08CCF2CA190D3A /* GDTCORMetricsControllerProtocol.h in Headers */, - 5DDF2439A4EFE7D0B141EAE0CE6ECF90 /* GDTCORMetricsMetadata.h in Headers */, - 098EFC850301A81D676B977265A94A71 /* GDTCORPlatform.h in Headers */, - 7DB175CEBA4DA28D2C134B5392515FE0 /* GDTCORProductData.h in Headers */, - 58808B68C2FF82FA1DC22845B09D99FF /* GDTCORReachability.h in Headers */, - 14CCA8A74E1AEF41531B45F56CBC18DA /* GDTCORReachability_Private.h in Headers */, - E677DC8529CF15C0EEBEAD161D4012F9 /* GDTCORRegistrar.h in Headers */, - 36A5D9C0FACCAE0672C9B0ABF82480BB /* GDTCORRegistrar_Private.h in Headers */, - F0F5FC3312FA8B66195A5DC42589C625 /* GDTCORStorageEventSelector.h in Headers */, - C5245DC68440C76D67C4A5DB78178969 /* GDTCORStorageMetadata.h in Headers */, - 5800620F023547A791911AFD0AAF4CCA /* GDTCORStorageProtocol.h in Headers */, - 81663C5C07BCF40C161BB417D9E2BBC3 /* GDTCORStorageSizeBytes.h in Headers */, - CC2160397E97F67CFE28B7D3E3B0A95E /* GDTCORTargets.h in Headers */, - 864645E1F0D975BE09E249F84AF835BD /* GDTCORTransformer.h in Headers */, - 64E394EDF7622973A01404DB331A4514 /* GDTCORTransformer_Private.h in Headers */, - 839B0E3B706EF997BF071E579F71DD73 /* GDTCORTransport.h in Headers */, - CF26DD71682AECFDA9B190F109DBBA25 /* GDTCORTransport_Private.h in Headers */, - 2A5EA262AFCA4AB051C25E2138436B68 /* GDTCORUploadBatch.h in Headers */, - DB1EA82E14283CCF0D2FE51B31931ACB /* GDTCORUploadCoordinator.h in Headers */, - E473B8482D15324E3ED2D438BB355CC6 /* GDTCORUploader.h in Headers */, - A10C05574C7F84E2F5DD6E111DBF6B02 /* GoogleDataTransport.h in Headers */, - 250DC870CDAA1C70291A3BF77FBC7C3E /* GoogleDataTransport-umbrella.h in Headers */, + 054B4AFDFF0F17A932329B0A2EC9AD83 /* cct.nanopb.h in Headers */, + 0E3C438788D64A7E230EE04BB85BBF32 /* client_metrics.nanopb.h in Headers */, + 0028B2BADD05FC23DD6C0DAC316B889A /* compliance.nanopb.h in Headers */, + E330894C245E9944654A03E3350147E1 /* external_prequest_context.nanopb.h in Headers */, + ECEACC1BBEC4A61630CA72663F545455 /* external_privacy_context.nanopb.h in Headers */, + FFF8EC5652FB9A1E3CF51DF02E7389CD /* GDTCCTCompressionHelper.h in Headers */, + C6ECCEFB5E113A98DAB654F255034CEA /* GDTCCTNanopbHelpers.h in Headers */, + E53D2A5C99DD6AE584ABA07EF65A831C /* GDTCCTUploader.h in Headers */, + 4AE3A7EEBE6024F870965E4FAD80F1FD /* GDTCCTUploadOperation.h in Headers */, + 3A2C7CB1F97033CF214B3A3759CC4A79 /* GDTCORAssert.h in Headers */, + 747B9F0168E5B9A8E6B12A48C85A7ECE /* GDTCORClock.h in Headers */, + 7B5D1C4454EBBF2AE6EFE35C44CCEE96 /* GDTCORConsoleLogger.h in Headers */, + 9D43A6AD828714C6BF199712609F312E /* GDTCORDirectorySizeTracker.h in Headers */, + 652C5991B9681D57FCCDB13ACF6CAA37 /* GDTCOREndpoints.h in Headers */, + 8D9C670E74EEA14D61A28949FE33AE7B /* GDTCOREndpoints_Private.h in Headers */, + 1464DE5062E95E64E49DE03211ACEFCA /* GDTCOREvent.h in Headers */, + 9851CE41AF3F6D8930452487B7DEA916 /* GDTCOREvent+GDTCCTSupport.h in Headers */, + 86FCC23952DB329B45AF4888614EE121 /* GDTCOREvent+GDTMetricsSupport.h in Headers */, + 54508B42166CAB015519DE195C33DB20 /* GDTCOREvent_Private.h in Headers */, + 9AF5EF45841AD9079073C786398880E1 /* GDTCOREventDataObject.h in Headers */, + A9DC3AA68F45D672A2D159C6CD254174 /* GDTCOREventDropReason.h in Headers */, + A0DB4903C70B29725F1FA6CD06C232AC /* GDTCOREventTransformer.h in Headers */, + 6B15C572E7F412B88B00FE970A5F70E4 /* GDTCORFlatFileStorage.h in Headers */, + 2842F1C4E005F522F8C429D0BA415890 /* GDTCORFlatFileStorage+Promises.h in Headers */, + BD3D6AE7AFE7116C20A920E59D7DB668 /* GDTCORLifecycle.h in Headers */, + 6CEDB7951ADAFA0CFF7A3485BE377C3D /* GDTCORLogSourceMetrics.h in Headers */, + E12D02459A2A4FF33FAB159FF4B358EB /* GDTCORMetrics.h in Headers */, + E44ECBE051A5A0C074FDC4D630DA189C /* GDTCORMetrics+GDTCCTSupport.h in Headers */, + E87AEE3CE5388FCB7E69F496269323AA /* GDTCORMetricsController.h in Headers */, + E62A6C38A1A49AA43A6218ABEF0BA5C8 /* GDTCORMetricsControllerProtocol.h in Headers */, + 59C3484DF0624912B951A8685F8F47DB /* GDTCORMetricsMetadata.h in Headers */, + 2E482D2FB0F4EE1DF9C77F8388F643DD /* GDTCORPlatform.h in Headers */, + F41AE48E3FA506BC3C5B66EC8578AB1F /* GDTCORProductData.h in Headers */, + A4A5D5CD3957622DC42709EF7531AA76 /* GDTCORReachability.h in Headers */, + BED6B45773B70C165989069379F6CFBC /* GDTCORReachability_Private.h in Headers */, + 19D5235BA0B0FF44459555335A665373 /* GDTCORRegistrar.h in Headers */, + BD18740B3816A90807C9F7B3C7E3F0E4 /* GDTCORRegistrar_Private.h in Headers */, + 52150992C5F41B2539BD09F9C832E519 /* GDTCORStorageEventSelector.h in Headers */, + BF96989187CBA0DC4E7ECFEC5F6D34F0 /* GDTCORStorageMetadata.h in Headers */, + 56C173967F7BFE7A9B3EE2B30058F45A /* GDTCORStorageProtocol.h in Headers */, + 86BB8B99FC49A56431257AC38A04519B /* GDTCORStorageSizeBytes.h in Headers */, + D3CACB2EAB5858B19599BC77A26E1299 /* GDTCORTargets.h in Headers */, + F49CF937F53F1C2B641E342160FD9F7F /* GDTCORTransformer.h in Headers */, + 94956BC0BCC27DF05EA8626E0E5D17BB /* GDTCORTransformer_Private.h in Headers */, + 5C75DFBA3F39D6FC0F7A37876564769C /* GDTCORTransport.h in Headers */, + AA14441398507D051A9C69EA876C8391 /* GDTCORTransport_Private.h in Headers */, + FE42312B1A87F5F8B608B5C7BC9BF1E5 /* GDTCORUploadBatch.h in Headers */, + 329A8A3F575D64A154C87AAEAB803BAE /* GDTCORUploadCoordinator.h in Headers */, + D58FE4679E8D58B623B4415EE3CCFA8C /* GDTCORUploader.h in Headers */, + 118922AE13BE2D89D004CE9CC5F72D52 /* GoogleDataTransport.h in Headers */, + 642CC20715D8D3FED7364BAA925F9DE5 /* GoogleDataTransport-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CD4F50BCF0B76FCCF936916ADFE506D0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0277C62D500B1C58EDAF34A0E238188C /* Pods-SwiftProject-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -37178,6 +38116,154 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D81A4A96B80AF472FFD78E162052E190 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 776ED9F932113DAF5ACB6D92DB17033A /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */, + 0069C264F67D40D60A264BBD1A6E73D8 /* FBSDKAccessToken.h in Headers */, + 9E95007F217781E68CA9A73F499927D8 /* FBSDKAccessTokenCache.h in Headers */, + 2E97C81F3FB0E44CD0CEC74D46390403 /* FBSDKAccessTokenCaching.h in Headers */, + D08016646D014372BE9AF4CF1EE92FC5 /* FBSDKAccessTokenExpirer.h in Headers */, + EA469A76285C72C95DB270F97F0B5CF5 /* FBSDKAddressFilterManager.h in Headers */, + 2BF651BBE989D4EBDE84E863AC193074 /* FBSDKAddressInferencer.h in Headers */, + A7F825E03A29B3BA7F2ED7FC519F6EB1 /* FBSDKAppEvents.h in Headers */, + AA501D7FE8A7B91ABFA764F1549B7ACC /* FBSDKAppEvents+Internal.h in Headers */, + 753AF8D6706D9BC0E27AECA0B0E5AA9E /* FBSDKAppEventsDeviceInfo.h in Headers */, + B6801623A56359E3B792FE38F2BB21F5 /* FBSDKAppEventsState.h in Headers */, + 6EC90E5E6503E93B3417242B8BE2272D /* FBSDKAppEventsStateManager.h in Headers */, + 89FECFC919B6E2B3145DE10FEBAE0DD1 /* FBSDKAppEventsUtility.h in Headers */, + 2517C430AC76496A44E0AB205FD3371C /* FBSDKApplicationDelegate.h in Headers */, + BCB0D7211B1707A65CA492D129946243 /* FBSDKApplicationDelegate+Internal.h in Headers */, + B95CCFEC21965F6CF194DFF91158D271 /* FBSDKApplicationObserving.h in Headers */, + A80F559526B00593A6ED8071A843325B /* FBSDKAppLink.h in Headers */, + 0F1D561B1037872DB0404C0538A0A376 /* FBSDKAppLink_Internal.h in Headers */, + B5B8E30246B9A22854677FEC9858121C /* FBSDKAppLinkNavigation.h in Headers */, + 40177514F2DF5992274E3CD34C8A8C0E /* FBSDKAppLinkResolver.h in Headers */, + 5225E9B5E7B7969DF3A4E26A37834558 /* FBSDKAppLinkResolving.h in Headers */, + 519E48BF6A0E214F4B5E72025E005C2D /* FBSDKAppLinkReturnToRefererController.h in Headers */, + 98283170274057D65F6EE01411B3C5B6 /* FBSDKAppLinkReturnToRefererView.h in Headers */, + D1526E08CAFBA71159E7A719FDE671A8 /* FBSDKAppLinkReturnToRefererView_Internal.h in Headers */, + D8D357A06CA07F08BD326E49AEDCE10E /* FBSDKAppLinkTarget.h in Headers */, + 87C0791E451EC3266C2A8AFA7E2385B9 /* FBSDKAppLinkUtility.h in Headers */, + A750C39CD9307A75E0FC96D5C425E3D3 /* FBSDKAudioResourceLoader.h in Headers */, + A46A76317FC89C00B94593FDC189886E /* FBSDKBase64.h in Headers */, + A3B87CBB4D70D2AD193AC1B674A83A70 /* FBSDKBasicUtility.h in Headers */, + 753970B8C85FE4DD4CF6CABE21A73C44 /* FBSDKBridgeAPI.h in Headers */, + 94D76C8C6695F3273427668E7DF4D1BC /* FBSDKBridgeAPIProtocol.h in Headers */, + 95C9A759B6FE348495C07DFA67F2B5BF /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */, + 6EBC14436C0B825D3F7ED12E140E9B58 /* FBSDKBridgeAPIProtocolType.h in Headers */, + 4ACADB984B3D06BF5AC7E9BD0B08D9CA /* FBSDKBridgeAPIProtocolWebV1.h in Headers */, + CCF740EE1B7DAD5E4E440D05032E59DA /* FBSDKBridgeAPIProtocolWebV2.h in Headers */, + 56546D21C1DF95B5F79911B2A80724EB /* FBSDKBridgeAPIRequest.h in Headers */, + 46C4EDC51E47D461E293E705019C8BCD /* FBSDKBridgeAPIRequest+Private.h in Headers */, + 975F7D48D2ED88B61BF5925CA093C6FA /* FBSDKBridgeAPIResponse.h in Headers */, + AF6AD1CD20D9B45D819E2A6258BDE66D /* FBSDKButton.h in Headers */, + F2A26CBB847D36A0F91E665DBF79BF8E /* FBSDKButton+Subclass.h in Headers */, + DB0AFE65A43B9DC4081909EB447A65A2 /* FBSDKCloseIcon.h in Headers */, + 4E6C04D96B190473AB60E6B07C24318E /* FBSDKCodelessIndexer.h in Headers */, + 9696792322A500AFBBB82CF4C815ABF4 /* FBSDKCodelessParameterComponent.h in Headers */, + 530F06D1EC812FB13FAFB6D107F4838F /* FBSDKCodelessPathComponent.h in Headers */, + E6FEC220816BEFE0240391B0A0A0F62B /* FBSDKColor.h in Headers */, + F50CFF3A34BD55C1730E5FCFD17CD2F1 /* FBSDKConstants.h in Headers */, + 63289E768A2C6AE7CC7175615E3D1ACB /* FBSDKContainerViewController.h in Headers */, + 7741C7AD8EAD14AD310D9D8BD8A5B174 /* FBSDKCopying.h in Headers */, + 5103C16A96BA87F72670984456974A1A /* FBSDKCoreKit.h in Headers */, + 93167F34C64A10D6D41A9C08C8593441 /* FBSDKCoreKit+Internal.h in Headers */, + D0085AD3E08DE050EC5E894F55A5ABA3 /* FBSDKCoreKit-umbrella.h in Headers */, + 1ABC7D943034117A4B5A765B661E9C90 /* FBSDKCrashHandler.h in Headers */, + BCDA57439399B9A5DF6750BE4A88F749 /* FBSDKCrashObserver.h in Headers */, + 517F86CB9884F26504407D9554918707 /* FBSDKCrashObserving.h in Headers */, + 884BA0E06D25F59199CEB262D479305C /* FBSDKCrashShield.h in Headers */, + DF4B4EFF7D68C666E7B7634F292D80D0 /* FBSDKCrypto.h in Headers */, + 0578D31D5BEB8C07CF8DBE46B6FB25F1 /* FBSDKDeviceButton.h in Headers */, + C1AEA907AED13589659E37E417D9163E /* FBSDKDeviceButton+Internal.h in Headers */, + 13153ABCF0E4B73EE27BF51D02E5DA9A /* FBSDKDeviceDialogView.h in Headers */, + 50ACC6B31CF4793084DE8A304A9CD83B /* FBSDKDeviceRequestsHelper.h in Headers */, + 9E0A93ECF7EDAADF27A5196B032FACB7 /* FBSDKDeviceUtilities.h in Headers */, + D8E01A1E7AB7F9D4C7470EF68A8F1EC8 /* FBSDKDeviceViewControllerBase.h in Headers */, + 314A8E2D0597FA52DA48F773219CBA05 /* FBSDKDeviceViewControllerBase+Internal.h in Headers */, + 21C5C4C0CF473FD89EB47F8F21A619F8 /* FBSDKDialogConfiguration.h in Headers */, + 88D667D4352655E382BF778344F1CCA0 /* FBSDKDynamicFrameworkLoader.h in Headers */, + FD425CF720AAEA558238B03F32782C19 /* FBSDKError.h in Headers */, + 53BDF85F1D961F7A20A242AC199FF60E /* FBSDKErrorConfiguration.h in Headers */, + FDA43DD6C593072F473DEE6DB44DAB62 /* FBSDKErrorRecoveryAttempter.h in Headers */, + EEC8B4564AAAF00409BAEFB0E06DBAAC /* FBSDKErrorRecoveryConfiguration.h in Headers */, + 67985F57558F6C2F837DE79728A5BE1A /* FBSDKErrorReport.h in Headers */, + 9B9D0202614A2C80A9376283E1268704 /* FBSDKEventBinding.h in Headers */, + 6B25D392DDB7FC82B70B4B0A70F7B94D /* FBSDKEventBindingManager.h in Headers */, + F55E0149E3543C57B123412A87B092EC /* FBSDKEventDeactivationManager.h in Headers */, + 5F4C09FE50D4B95FEE63D1485DF9F002 /* FBSDKEventInferencer.h in Headers */, + 742F7EE2A8CD23E4795F08A7E7B47213 /* FBSDKFeatureExtractor.h in Headers */, + 6D6B0E72F34320A7A4F01FC5709611C6 /* FBSDKFeatureManager.h in Headers */, + 9791B38352A037AADC37A15B2BABAD51 /* FBSDKGateKeeperManager.h in Headers */, + F48AC474D43AD5717BC6F1DCDA8ECA38 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */, + AE8018FC76A814399B5EDF064E79D34A /* FBSDKGraphRequest.h in Headers */, + 7A1F1B8811C7591FD59A59774B1C40E8 /* FBSDKGraphRequest+Internal.h in Headers */, + FA80C84BC0FFDBE0BA7DB50B518FD8BE /* FBSDKGraphRequestBody.h in Headers */, + F8BC5E3C7D976F113A48FCB4E8AC50C1 /* FBSDKGraphRequestConnection.h in Headers */, + C6A90581D70DA1E5B3203299D5385EE8 /* FBSDKGraphRequestConnection+Internal.h in Headers */, + 9BA2594CA7FB0E991593F0735E0EF93E /* FBSDKGraphRequestDataAttachment.h in Headers */, + 6B2A63F391953D4534E1966B3CFE33FE /* FBSDKGraphRequestMetadata.h in Headers */, + ACD79FD1FEE1E8F62EAA93DFFA989BED /* FBSDKGraphRequestPiggybackManager.h in Headers */, + 9CC149577889746AFB23BCC764507417 /* FBSDKHybridAppEventsScriptMessageHandler.h in Headers */, + 5085D58DF16AE35BC8DE02A54FE574F7 /* FBSDKIcon.h in Headers */, + FD55DA33123D256EA1E0C8167DD49E61 /* FBSDKImageDownloader.h in Headers */, + D2D6443ED270A8E048244CDF711C391F /* FBSDKInstrumentManager.h in Headers */, + FA759FB6D1B7A06CDE092E2F231C3F65 /* FBSDKInternalUtility.h in Headers */, + CD5F14B02DF9D964E11C746431C44BDB /* FBSDKKeychainStore.h in Headers */, + 637C8A2A48C7AA51532DDFD8861F003E /* FBSDKKeychainStoreViaBundleID.h in Headers */, + 0F39A2601FE5437EE321341211CF8805 /* FBSDKLibAnalyzer.h in Headers */, + B19B6BFE67E1CFF44F3C07DF42292274 /* FBSDKLogger.h in Headers */, + A12E08F1A267A1B458807C984559AF20 /* FBSDKLogo.h in Headers */, + 7F95CB04B2AE83725DC5ABEE1EA90543 /* FBSDKMaleSilhouetteIcon.h in Headers */, + DD9DE7ADE28DB44C91ACBE977BD1C164 /* FBSDKMath.h in Headers */, + 8282406B302CA5D364658480486299C1 /* FBSDKMeasurementEvent.h in Headers */, + 9EBA5CE9A47F50CBC769AC6D03B6A99B /* FBSDKMeasurementEvent_Internal.h in Headers */, + EB3236A4072E0CDF39E43D2DD42F264E /* FBSDKMeasurementEventListener.h in Headers */, + F8FA037BD8EC4AF5E6E6CF4B3AA442E4 /* FBSDKMetadataIndexer.h in Headers */, + 242D438B808493E2A3D950314B270B2B /* FBSDKModalFormPresentationController.h in Headers */, + 342EEA4A1F0D018879CD5017754D1AF3 /* FBSDKModelManager.h in Headers */, + 7049A48AEC9EBDB85EDED7A10B33A661 /* FBSDKModelRuntime.hpp in Headers */, + 75F6BBA6FDF2B1E717445F86099813BA /* FBSDKModelUtility.h in Headers */, + 11316E2C5809F28196927F7EFD2C4F12 /* FBSDKMonotonicTime.h in Headers */, + 4576E171FDCF42D83B7DA48F1D602F0A /* FBSDKMutableCopying.h in Headers */, + 597C1340734BB6E9F3EB046C2983C85A /* FBSDKPaymentObserver.h in Headers */, + C87A2851013238C628DD524DE2A6A283 /* FBSDKProfile.h in Headers */, + 2BFB6F17AD8DD6FE3C161CA8B8CEF0E5 /* FBSDKProfile+Internal.h in Headers */, + E1A786C3CCA5F321F64A08C0F843C5F3 /* FBSDKProfilePictureView.h in Headers */, + 2575BEEC86D6E2B53E451774B32A5270 /* FBSDKRestrictiveDataFilterManager.h in Headers */, + 8B8212C3B6886024E58822210C3DFB9D /* FBSDKServerConfiguration.h in Headers */, + 1619201850C3A07D74D242E351B3CB36 /* FBSDKServerConfiguration+Internal.h in Headers */, + 29EEE9E55B4747BB2EB332CA7D9E2730 /* FBSDKServerConfigurationManager.h in Headers */, + D7AEA33794785C95193429C815F58575 /* FBSDKServerConfigurationManager+Internal.h in Headers */, + F855B865BB6CBC2E7A027B29805B442E /* FBSDKSettings.h in Headers */, + A9038AFA203A191855D6AB809BB1D937 /* FBSDKSettings+Internal.h in Headers */, + 63D39A9B2185E28C1EFA651A5417FB70 /* FBSDKSmartDeviceDialogView.h in Headers */, + 577EBDBA62389A3038F5813D81FDACB3 /* FBSDKStandaloneModel.hpp in Headers */, + A1CB940C87B96289EE3A4DB16C348431 /* FBSDKSuggestedEventsIndexer.h in Headers */, + A9BD0ED810931FA827AA2E577CDF71F1 /* FBSDKSwizzler.h in Headers */, + 9727D779BB056EC2C54B1B75D6AF14FD /* FBSDKTestUsersManager.h in Headers */, + D3CD758FC8482CB8D6BDE52F4F8D8976 /* FBSDKTimeSpentData.h in Headers */, + 597CB8B27A36E0909448B8D86C8A34F7 /* FBSDKTriStateBOOL.h in Headers */, + FF8E445F9C27648D89DF971C0DCE707D /* FBSDKTypeUtility.h in Headers */, + D236849CD174D19CDF12BC1D1B5264E9 /* FBSDKUIUtility.h in Headers */, + 17BE7BEB7066975E2445BEF3876726AD /* FBSDKURL.h in Headers */, + 0971963063B24E9F3C64353D89D3DCF4 /* FBSDKURL_Internal.h in Headers */, + 31DCBA5C2E9EE22AF2F6816FE686F415 /* FBSDKURLOpening.h in Headers */, + BF4D44CE8F1DCAB8F88D53E779363F28 /* FBSDKURLSession.h in Headers */, + B5110D00AA64CCE8C6783DDD14C70E11 /* FBSDKURLSessionTask.h in Headers */, + 1874F98DED1B13A0A43E57BF1F0AEB8E /* FBSDKUserDataStore.h in Headers */, + 42CD9151CEE17557B4B56673D7C13C83 /* FBSDKUtility.h in Headers */, + 9983B93F513A12534907CE0224388DFF /* FBSDKViewHierarchy.h in Headers */, + 78B19CAF42DC7A25CA8AA685E261B9F1 /* FBSDKViewHierarchyMacros.h in Headers */, + 384D3AFD42ED476D6BA40BBD0FFF2756 /* FBSDKViewImpressionTracker.h in Headers */, + 3801F50F68EE7A63B9ADD7DF38087672 /* FBSDKWebDialog.h in Headers */, + 94376C8B450EBFC3CDDB7615AD3298DB /* FBSDKWebDialogView.h in Headers */, + 56FD2942C919264BB890FA8F0E0E9579 /* FBSDKWebViewAppLinkResolver.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D9BF0DC977C7D68D00D07341BBEE7DDE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -37233,19 +38319,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E2ED4C8012595DF14DDF8FD34D5D13B1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4B3C844CB483FC99731D4CE83A5097CC /* GTMSessionFetcher.h in Headers */, - BE1E3C846FE8E446E46EC3BB17644EF1 /* GTMSessionFetcher-umbrella.h in Headers */, - 53DB6F0D90AD6F1C9B054DB42CE657FB /* GTMSessionFetcherLogging.h in Headers */, - 98E16E5972B62A85CE56B44D5D2E36C7 /* GTMSessionFetcherService.h in Headers */, - 0E7B9223C101AECF6382858662ADBBDF /* GTMSessionFetcherService+Internal.h in Headers */, - 233753438E74E676C4C69052C8281C73 /* GTMSessionUploadFetcher.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E5AC98079A1132C30D29AA80B6575DAF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -37411,6 +38484,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + EC14A314D7F0F4F45CF0318E94220C10 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 378AF47F24384441ACBB9BE83C4F1F6C /* GTMSessionFetcher.h in Headers */, + 8835210225D7DD6537F9AD2F7E4E3C63 /* GTMSessionFetcher-umbrella.h in Headers */, + 026998C4DC1B2DDD7B8D5813CB030027 /* GTMSessionFetcherLogging.h in Headers */, + 87F20D91DD20BFC5A7985A91129B41A0 /* GTMSessionFetcherService.h in Headers */, + 3EC39249543E56A1132585F97D8E917F /* GTMSessionFetcherService+Internal.h in Headers */, + 68DA676AF43541C223174A4B188AFB78 /* GTMSessionUploadFetcher.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; ED12AA7015568FEE3FAA009FC97DAAD5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -37427,35 +38513,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F52558F8D519CD67D4A28D576F855819 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 46D1AC427528D84C075969A085C7D7D6 /* FIRAnalyticsConfiguration.h in Headers */, - 7365633077C462B2D68843C185E6389C /* FIRApp.h in Headers */, - 50DDD59B5EC0A0E0C1688B8FC3A3765B /* FIRAppInternal.h in Headers */, - 785721011C2BAD57A38B6AA8AC3CC2F7 /* FIRBundleUtil.h in Headers */, - 04D8034293ECC4411225CC4E392D9603 /* FIRComponent.h in Headers */, - 37F1D55E483CE83244BDEC216946A5DA /* FIRComponentContainer.h in Headers */, - CC26AC65F5180AD844D43DFDE5A60233 /* FIRComponentContainerInternal.h in Headers */, - 417F41C00893EDA9785C9D21BFDDCEF2 /* FIRComponentType.h in Headers */, - E6CA281EABFC6C00D5F68F732A0307E2 /* FIRConfiguration.h in Headers */, - C6BC403FB4CA4E608DEB5C1AEE0367F5 /* FIRConfigurationInternal.h in Headers */, - A0699013F3551382B11CB96332EAE435 /* FIRDependency.h in Headers */, - B0A2E13FC3BD85392FA98FB5556432F7 /* FirebaseCore.h in Headers */, - F7A534F0DEA8B72C9F96B0358D75B87F /* FirebaseCore-umbrella.h in Headers */, - A30055AA2DE5842601AA44A4E2E21F43 /* FirebaseCoreInternal.h in Headers */, - 49C075F31C1996FE06140FBF4201847D /* FIRFirebaseUserAgent.h in Headers */, - C4E770CFCCB7B27C3586EAB0008F6CFF /* FIRHeartbeatLogger.h in Headers */, - 92B1F41787A973856CEAEBF9F7D7301D /* FIRLibrary.h in Headers */, - 06D43BBB9F7DC1FC3673C59D59CC0BDE /* FIRLogger.h in Headers */, - 7E7073978BBF00E5EF726D31ED99D074 /* FIRLoggerLevel.h in Headers */, - CF53C62E582C0605FC1F73F35F9CE31B /* FIROptions.h in Headers */, - 203AB5C73F00854D05D2160091F040EB /* FIROptionsInternal.h in Headers */, - C4BAC021A0F5D6D7DBE1F0A567FBC9D8 /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F87A69F2AAAF0B3983AC20C5F5FFE432 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -37464,11 +38521,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FA2B11C304A0174274DBF954CEFD7052 /* Headers */ = { + F98DD18B59452C98BAA454AE8DD4E28A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EE57B775C313B2CB4E350F1BE9F2A644 /* FirebaseCoreInternal-umbrella.h in Headers */, + B75BDFADB6D963710C2AD327F588F94A /* FirebaseCoreInternal-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -37477,11 +38534,11 @@ /* Begin PBXNativeTarget section */ 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 54ED0F0ABACEB1AC32877E5EB6DE9E78 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; + buildConfigurationList = 6DB6CB31F0A50B12CB5971A773552046 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; buildPhases = ( - D522250C9EB1732899C3DDD6AFC5C240 /* Sources */, - 57F9B638B3CEE1B9C3D90FB7CD495069 /* Frameworks */, - 5DDEBF1EFE2E356039CD1EC30A212000 /* Resources */, + 7EB8B8CEB85DEC41F061D06A00377EA7 /* Sources */, + 797F350D4AD357ACC351FBB0DF4696A8 /* Frameworks */, + E5FEB665F01919282677C8EEA1604D91 /* Resources */, ); buildRules = ( ); @@ -37494,11 +38551,11 @@ }; 17CBCC6221F62B870268E935098B7D7D /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = AA5F37D76DF766CCB040AC7B3C17B54C /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics-FirebaseCrashlytics_Privacy" */; + buildConfigurationList = 00CE833F5D4C13C6644E8AC100BCBF3F /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics-FirebaseCrashlytics_Privacy" */; buildPhases = ( - AF6A44810D7EF7E20781C5EB67259CAB /* Sources */, - 47FD336A86BEDAE0CD42D086D452C9D8 /* Frameworks */, - 2F1C6697B6F70269FB027D717C312634 /* Resources */, + 203AE2BF728F74AFD7287B48B17714ED /* Sources */, + B1433D3819BFDD635C117608683F96F3 /* Frameworks */, + 692B24EE7ED47E92157B88D14444F2A2 /* Resources */, ); buildRules = ( ); @@ -37529,50 +38586,52 @@ }; 1B25576CD15D25D1B5123F238F0C37F6 /* Pods-SwiftProject */ = { isa = PBXNativeTarget; - buildConfigurationList = 80B6703D972A9F12F6AF1531A47D5A0C /* Build configuration list for PBXNativeTarget "Pods-SwiftProject" */; + buildConfigurationList = 66B457D90619FDBFECFF5D1FB2E6A42C /* Build configuration list for PBXNativeTarget "Pods-SwiftProject" */; buildPhases = ( - 43581E4BC0B343138294A41EB0662E48 /* Headers */, - C237935B291DC7870B802BD975B6A224 /* Sources */, - 7E3DC51F36C3A9A20F8B8206A86AAAFE /* Frameworks */, - 8675B1885705A51749B6B805A2292712 /* Resources */, + CD4F50BCF0B76FCCF936916ADFE506D0 /* Headers */, + EF36B36EC4A79224DC4388A5F076DB7F /* Sources */, + 1696655BF7B402F737B21958B239B1D5 /* Frameworks */, + 06CE7FAD7C77772852C6711EDD45A92F /* Resources */, ); buildRules = ( ); dependencies = ( - 1A278F492D03EF2059C1AE8DE665CF8B /* PBXTargetDependency */, - 3EFD4CC9FC8FEE94F6139D536D007009 /* PBXTargetDependency */, - DD9A5A99474197358364C668433D7266 /* PBXTargetDependency */, - F144079CC26A48A6E9ABF9AB03D90508 /* PBXTargetDependency */, - 2A5C2EA5F5AE3724BDED0E7A4FCE47A8 /* PBXTargetDependency */, - D3FB9E2E442513134B4A4B76FBFA6749 /* PBXTargetDependency */, - E6E0578725B8CD8C5FE594143F2E49A7 /* PBXTargetDependency */, - E7C861D058C68C240483544FB8F89E28 /* PBXTargetDependency */, - AE09438A0E47A714C01BE6FCCED70FEC /* PBXTargetDependency */, - E5CD7B6384F908A8E3ACB0D913CC0EC2 /* PBXTargetDependency */, - D1D277029044B6C1B95BAE5B6BED6196 /* PBXTargetDependency */, - 20CAE4E415D10972328FA7D2B5174C7F /* PBXTargetDependency */, - A36B5D2792A15C500538BBC30D2A25DD /* PBXTargetDependency */, - AC099D3B49E08FB79E9ABDEACEF838CE /* PBXTargetDependency */, - CC28D1D679EEA45F53FADBEAC727A77A /* PBXTargetDependency */, - 7AB7B9429F4EBC90A6C81863FB30A912 /* PBXTargetDependency */, - D425016BB6A329B4F2F493BBBEF48C67 /* PBXTargetDependency */, - E4CEA67BB45BEB09A1621C379235BA58 /* PBXTargetDependency */, - B39CE0A6D9C76C5304B9C50DD4E7B25A /* PBXTargetDependency */, - 44844AF55CA269F3715572A19833952B /* PBXTargetDependency */, - 0161C05E77F03C767E572A9656CC423A /* PBXTargetDependency */, - 37419D0AB3E5CE95490CD620A8A50C74 /* PBXTargetDependency */, - C8C9F4000B21D9D74DB8A890FC8101B7 /* PBXTargetDependency */, - 57C6306827B42CDE295010FD0D28E35C /* PBXTargetDependency */, - 94FE459684669DDE498F560204549F9B /* PBXTargetDependency */, - 259BC66CAC125A02A79EC4DD47C1F79B /* PBXTargetDependency */, - F1F94852924C842E3CC400660BED361D /* PBXTargetDependency */, - 0C46CD3DDA489529F844B99492096BB9 /* PBXTargetDependency */, - A1C8C204FAF94D588DB301566C2807A6 /* PBXTargetDependency */, - 1D8D453EA774CA4BA342ACF681043E5F /* PBXTargetDependency */, - 80B2C18C9BC1EEE5AD2E97BE36CF23C2 /* PBXTargetDependency */, - D0F8538011A66EEC40903F51608510DD /* PBXTargetDependency */, - 9350796FE4128C1CB5F42E45365B462D /* PBXTargetDependency */, - E3C265C3B05332FFCB2F770E17DCCC8A /* PBXTargetDependency */, + 53D4D231E020E7005932E6C048536A9E /* PBXTargetDependency */, + 81F96C587DDD1C841C688C9696C5CB9F /* PBXTargetDependency */, + 241DD96CFEC89425E04DCD6E005C1DF3 /* PBXTargetDependency */, + 91C2B85774B2CAB5BEE8E8FA7CA36112 /* PBXTargetDependency */, + 4826EE51159EB29FEB605FC1748D99B6 /* PBXTargetDependency */, + 880404C29E51BF7B6D74FE525084E84C /* PBXTargetDependency */, + FB678C813CC8FE4ED3D934F71BC4C9CF /* PBXTargetDependency */, + 4E613BBDAF0498A3621A37213D95B0F5 /* PBXTargetDependency */, + 5205641FF022D8ACE4668B24FB587B1A /* PBXTargetDependency */, + D9001133DECE2720C7DB21AB978B70FE /* PBXTargetDependency */, + D8F3339CC20DD9DAB450231F3269A806 /* PBXTargetDependency */, + C99C432A3C53029F33B878BD1A747C65 /* PBXTargetDependency */, + 7EE829D1900C091E49B073D4E864B09D /* PBXTargetDependency */, + 9A3F1A7103E57377591164AE0676615D /* PBXTargetDependency */, + C93B11CAD072E5D6E3F8804B3122E6F4 /* PBXTargetDependency */, + A707570064882E094B80745C3A9397D3 /* PBXTargetDependency */, + CA54B4B64053547FE0801D1D6682C4F0 /* PBXTargetDependency */, + 77E8342A9A13CDA222A92E899B7427BE /* PBXTargetDependency */, + 90F9672C67E727B454A1505EDAB554AC /* PBXTargetDependency */, + 26A86CBE562FE40B51A9465D5A6CBF9E /* PBXTargetDependency */, + 1A5AECC48D28215E51EA009B97A8FE93 /* PBXTargetDependency */, + BD2754DA25C2062BBD6CE7C51DDDA886 /* PBXTargetDependency */, + 90B41C4EE2C4B99A98E68C1ECE65DCD2 /* PBXTargetDependency */, + 8135A2ADD9B74ABB771CB75324322564 /* PBXTargetDependency */, + 2AB14FAB44ABDC68D394041A742B80F7 /* PBXTargetDependency */, + C894A5DB5EE6C68CBE68C825A30630D6 /* PBXTargetDependency */, + 0BF2D76C74401BDC40A16579FC6FEF9D /* PBXTargetDependency */, + 0A03BD5FCABD7C277E15B7FC9CEF7A7B /* PBXTargetDependency */, + 6174EE3927061FE575CB27881A326D6F /* PBXTargetDependency */, + 104311BA561E13A27C0903E0F0EA6B98 /* PBXTargetDependency */, + 48F92F3C39EA6332412A71EA93F0F06A /* PBXTargetDependency */, + 1952F82919056680B183EC72E63088B1 /* PBXTargetDependency */, + 23A3C438D0258BE0FBD085590928ABD9 /* PBXTargetDependency */, + 4E69D3705FEF938DB8262B48E1C6137D /* PBXTargetDependency */, + 2AFBE8D0C9F9CDBCCF58B2741F43099F /* PBXTargetDependency */, + 99EDEA4B26BAF60EC791C52B05379FBE /* PBXTargetDependency */, ); name = "Pods-SwiftProject"; productName = Pods_SwiftProject; @@ -37581,11 +38640,11 @@ }; 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 7EEEF2327116D0C360285246FAAD9984 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; + buildConfigurationList = 15C9A280DA74C5B93BF147415ACAD417 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; buildPhases = ( - 52B8635C481669603C2F5AA3952A032D /* Sources */, - 42614723C6DB27E65DB8651F2DF1109E /* Frameworks */, - D0C91D243192FA2C800EE2FA0CE3299D /* Resources */, + D9A6914F2985B02CDC05DB357711D148 /* Sources */, + B070B2D245960BD75BAE3BB81CB81ABD /* Frameworks */, + 3D5A5607233490396FDA2867615BDED4 /* Resources */, ); buildRules = ( ); @@ -37598,263 +38657,263 @@ }; 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */ = { isa = PBXNativeTarget; - buildConfigurationList = C7D2976233C856C6FDF2CB2AFCBC233E /* Build configuration list for PBXNativeTarget "gRPC-C++" */; + buildConfigurationList = 788F93977A190B56DE2F8E9D902A8BCF /* Build configuration list for PBXNativeTarget "gRPC-C++" */; buildPhases = ( - A9EE8DF53A3C46707673FABABA1A7861 /* Headers */, - 924869C8AC537C2C5AB04975F97124A7 /* Copy src/core/client_channel Private Headers */, - F7B56449BC8E84DFA359BEEBFCD10B7A /* Copy src/core/ext/filters/backend_metrics Private Headers */, - 6C528E2F9662B5FD2F2B363F0CFC0FD6 /* Copy src/core/ext/filters/deadline Private Headers */, - 50CB4548A7DB6C12BFA6B8B75E9FE439 /* Copy src/core/ext/filters/channel_idle Private Headers */, - 333B7FEDD137033ABFEC10B915C7C6C6 /* Copy src/core/ext/filters/http/client Private Headers */, - A0001289E7C8568AAA34BEBAC71ED9AC /* Copy src/core/ext/filters/http Private Headers */, - AAAD6BA6B2CFB62F8213EB58792A7BC0 /* Copy src/core/ext/filters/fault_injection Private Headers */, - B96AE49EC812F7D64712CD3A5D279025 /* Copy src/core/ext/filters/http/server Private Headers */, - 35B72A2BF6B6E32462C1D72EDE0C5AEC /* Copy src/core/ext/filters/message_size Private Headers */, - 81DFD6502C1AA5F816826277C188DD86 /* Copy src/core/ext/filters/http/message_compress Private Headers */, - 14AFB085202AD8602A034A1757592A9B /* Copy src/core/ext/filters/rbac Private Headers */, - CCE792CFBD235B8839105112679D5173 /* Copy src/core/ext/filters/server_config_selector Private Headers */, - 5A1D9F03F398FC76CE8968207F185E2C /* Copy src/core/ext/gcp Private Headers */, - A2FE1D0ACBF879B789C15F44B1BFFA79 /* Copy src/core/ext/filters/stateful_session Private Headers */, - E9DD5E09D6556BD75B4D9EBB8849CADA /* Copy src/core/ext/transport/binder/server Private Headers */, - 15A6706451311EC3C8CDD89B4EAEAD4A /* Copy src/core/ext/transport/binder/client Private Headers */, - E2C43B6A5D3324955870542D1C4C7111 /* Copy src/core/ext/transport/binder/transport Private Headers */, - 57C4AD20701E10FFAAC0951CB39142A1 /* Copy src/core/ext/transport/binder/utils Private Headers */, - 1B0C87F30188D41A62F3A2E2A8F51406 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - 93821A3F0CDE68E5BF4E31D3A1EA9D65 /* Copy src/core/ext/transport/chttp2/client Private Headers */, - 62C6449064736CBCC3DE902439F485E6 /* Copy src/core/ext/transport/chttp2/server Private Headers */, - EC18A005E61A01A4750BE5F7DA96D4EE /* Copy src/core/ext/transport/binder/wire_format Private Headers */, - E8F803B7A48EA1CA3DB5DF00DAC1C736 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - D16761904416523813C2F4BA9B9DBFD8 /* Copy src/core/ext/transport/inproc Private Headers */, - 0C31FA3907847094B67ED8BF752CBA0A /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 064F823E13B4A3E027BAA8DB09537808 /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - 4825CAB04B41D29EE3FF602AE3F9A402 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, - 056BBFA5D55A2D517BA813346F832137 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, - DA75FDA839AD8D47ABD46F3421ADBEC4 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - F9713ACA4EF3890A5E78407BB4A20443 /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - 672599F64B345876B5B4134EDAA618CC /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 5C5EA1DBA741EC77330AD63C93CA91D8 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - 29E807D5556DC7093C96843D91912217 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 7C3E8DA0B53410DF02E4FAFD4963E77B /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - C259B43063F1800370831966CDA75C47 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, - 9346672664C803BB81BDDF6352CDA057 /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, - 5E032949321210940CA244D01C86541B /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - 1455A502C5721706356B619DCE581C8D /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, - BE4E38884C6DE4A12CAB16B709E7783F /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - B7D21E74FB3D601732005AEE1258284E /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, - 5352F7B1F39988673404B6FBD9528992 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 6180A52CDE1ABE1A79CF9651CF32E43D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - BA8116DDBF51CF267877E4686DB5160B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - B8948083FC531CF933845C2A04C06CB1 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 7E888ABD542E967E6E5BAB0CD89357BE /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - E2058206712CADAF0F2C117CBE436662 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - 8F7A066E2426D0234288019B4225BEAF /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 3A0A548694B207FD9E4D525F635ED946 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - D1A0938F654E0DE43901640902602A1A /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - 34380900A9EE177D9BB7CAF6B3B3C912 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, - E68A9181CE9B4139E0CF9B1B597F082D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, - 67406CFDB5D856FD9D45379352E216E3 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - BC65A6103719DB27352F25D7BB5BA033 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - 01B88E7882B4E9B475C2E5CA8C94DE32 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 613EE9E83A4E8DF83D8D577CE39C4E96 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - 117963FF940C1EC1565E6C00943AF413 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - 9F089AC522613D3D8C174DFFB432E4BB /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, - D20DFF32E542155F243CA122E0A31F5A /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, - E11321575BAEE0CD0A5D8AED4AC9D108 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - 6C86EAC1E9422C3ED4F8C64D19991132 /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - 7093DEAE008348E5A8101A3E0037ABF8 /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, - 7D2BD819C8C5480AFB35B104A209989F /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, - DFA3902A1916C93B8CDA380467E43ED4 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 9717875727BAA6565CD05732B193FAE4 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - E49D15DFE9B46C8A9E36016D3DB18057 /* Copy src/core/ext/upb-gen/google/api Private Headers */, - EEEB80A105C7EDF2D6429D656C82103B /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - AADC6A385FEB02AC057D9A56F68C3B51 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */, - 99410EFB1682EC4DBD124F8AE62E3CFF /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, - A13DFAB277E4A899F28EE0B19E8A2028 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - A14848E93722775519D41EC37A602BFE /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - 074A9FB6D9BAECD7D20F433EA6FB8522 /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, - 7F61E886418F10066B27D8892831D59E /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 2CF63FE283A1CD6B17A5386AD550C08E /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 409FC1F0E70A197A6DCC355871AE1799 /* Copy src/core/ext/upb-gen/validate Private Headers */, - 84D9F779768F210B1113368CFFF2FA43 /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - B3C2DE9C61EBCB0A201D43ECEC5C3237 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 7D559ED7BE615734E5F03329CC1B9B8A /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, - C8AA663322DBDBFECF979264ED50DC6E /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, - FB819F1F324086FF201165642AB3519F /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - D4E93F27DAC109E93345C3DD5000E8DE /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - F2875B81DA041E9A308C06FFED637440 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - 749B69C8EC164C0D0F88D7605E382AE7 /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, - 601A6970B7E2F7DDFBC66DDEEC4E7AEC /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, - D6454BD64835C423D2862B390EF6444E /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, - 46ED1C5CE7731D76F25D4FAEF2F6B4D8 /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, - 5FE54D9DF3807470BCF4FEAECE7479F9 /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - 3BCB38BAFA7CB2C6CCA5ED6F585416E5 /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 62FC234AC9A6FCB109F9F47370F010A0 /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - BFDFDE804DC8DBD2DFDC56EFC594B86A /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 28066F6661E364650ECB4E0A3D8AA1C2 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, - 381F5C50497C5FE0DF931EA4FA210A91 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, - CBB9E74D9D5E64F208BAC5E081623A38 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, - D0B7AB3F7C36F9E54B4A30187897A9C4 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, - 377F970EA5BDCF59804A76E5AB338181 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - 3E945E21B2A4A0762C5BBB80CA07B86F /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, - 7F918B956AA9AE180475F1A274D3A508 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - F16DF5F06A99785FC438DCE2B0633916 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - 1E4E51CAF3127D1FE7BE6A7F723DB558 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - 44CA22E844B4FC9B5DC042EA89D630CC /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 6FDD87F1E8E15097DA8B32853343E89C /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - 50F827E35B70E1F76C4048F62649E13F /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - 777939ED1EE7AD792B138536313EF3B7 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 6DDCFEAA1196508DF16752B2B6071B07 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - 20334AC8957C276805620D6EEA3D4707 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 72C9FD4AB1BF83BC36B014A59C4C0A80 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - 2C676254AFD51630FF35B040D11AA5C8 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 7B30C79D6091EBC110B75D569D521A2E /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, - 490FE3F1C837CD1B4F6EF5CB281164B1 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, - 23AC2BE422AF223ABDC9581A058C3368 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, - 42E4F9A63A1692A02FACF8BF0C725FCA /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, - 70C95F260A23A2E7EDC1E01648EEF203 /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, - BA151B7213ACA214269A5965168CAF18 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, - 72DD85D4D405B12424FDA82748869B47 /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - 715163F0E0749A6E63999B44E681F1A0 /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 5023FD87010572961AFFAA3DE425D933 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, - B9B34914BBB23748E20CF9B295074C21 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - CB998882D873A0890969D3468A4CA7CE /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, - D6B0DFB324B15A13377E86E256728CD5 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, - 64F54212720D0683F24484D030C4478F /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, - F57AE9800F8F16AE4EE593785CACAC58 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 6B83B466C4F964F0D8E3175DE3615CA8 /* Copy src/core/ext/upbdefs-gen/validate Private Headers */, - C4C70E7B4BA17396CD7A91EC56A5BB33 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - A04E080F29435AE3DD5FDE1BA4F3708C /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - D543E274F21671755FB96C045EBF3DDD /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - B4CD5DCAC46A94944E826D200ECE7238 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - F0C9FEE8084711FA72A6FCB68DBA2EDD /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - 48EB0A61CB7CEE24371B27B84317E434 /* Copy src/core/ext/xds Private Headers */, - 2918F40C93598CAD2C1DF8AFBEAB328C /* Copy src/core/lib/avl Private Headers */, - 6693CD647F2E326ECBE7E39DF03864D6 /* Copy src/core/lib/address_utils Private Headers */, - 019A8C879EC4505831C830D2AE8CABF3 /* Copy src/core/lib/backoff Private Headers */, - 7426086E581975ACA6E5BCE8E3B53148 /* Copy src/core/lib/channel Private Headers */, - 2093EB82DF097C9C081366F4C82A9464 /* Copy src/core/lib/compression Private Headers */, - AAA1D14A3CAEAC0BFBEB83054A3D2C0C /* Copy src/core/lib/config Private Headers */, - BCA686103D3F591D9984C527C0C2035C /* Copy src/core/lib/debug Private Headers */, - 32D3A4B8EDE7062D8FBD4F391E6A398E /* Copy src/core/lib/event_engine/cf_engine Private Headers */, - B82CBE4A6F6A0458DE509D030938D98E /* Copy src/core/lib/event_engine/extensions Private Headers */, - 22A105129A2120D3FA9E8D86467C82A4 /* Copy src/core/lib/event_engine/posix_engine Private Headers */, - EA1E4FF313AADCC41CC63D83923CF1B9 /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */, - 17E262CAC70ED2697C2D09C858FDDDCA /* Copy src/core/lib/event_engine/thread_pool Private Headers */, - BE3FCBD28B6F3A2173F3389798AA6493 /* Copy src/core/lib/event_engine Private Headers */, - DBF3A8A93DD990C70BCD52B282D8C87E /* Copy src/core/lib/event_engine/windows Private Headers */, - 468020E7D3671082C3D04F69B3C7E418 /* Copy src/core/lib/event_engine/work_queue Private Headers */, - 712A6F2AA9E576519AC8AC296A373D9C /* Copy src/core/lib/experiments Private Headers */, - 0DE38C6136E1C04B439C4AC1B64FD10A /* Copy src/core/lib/gpr Private Headers */, - 386B9EB1C3ECE95C5C95FD93C95F49DE /* Copy src/core/lib/gprpp Private Headers */, - 8109926E39A9BC02F26556525DFD1170 /* Copy src/core/lib/handshaker Private Headers */, - D4151DC5C7FA358BB4AE07173B811DF9 /* Copy src/core/lib/http Private Headers */, - B4C70DE80BEBE768971FB0FDA48C9831 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - 1D0BDC1F2A9EE9EA14C93D48FF6A064A /* Copy src/core/lib/iomgr Private Headers */, - 96FB3708A5516C060559E867CB646B67 /* Copy src/core/lib/matchers Private Headers */, - CF1E2215596CB0C7EF2CE2DB689AB252 /* Copy src/core/lib/json Private Headers */, - 12E745A8A7BE2C338E22EC876FC466FC /* Copy src/core/lib/promise/detail Private Headers */, - 7AFA5B2D9B0B79BCB5E5698C8662799C /* Copy src/core/lib/promise Private Headers */, - 716A58EB868215979E4F2EBF91D8FEC7 /* Copy src/core/lib/resource_quota Private Headers */, - F9E0DAEFFE79F14059D95EE8480ED7AD /* Copy src/core/lib/security/authorization Private Headers */, - 063B9D943BBE33120F1C9D3FC808DEA0 /* Copy src/core/lib/security/context Private Headers */, - 9233FAE9D4DF9ABA611896E5056544E7 /* Copy src/core/lib/security/certificate_provider Private Headers */, - CB7EDD7750624F8E07EFD28E7502EB05 /* Copy src/core/lib/security/credentials/alts Private Headers */, - 0399D4A2D4E939356E243109C93E8A39 /* Copy src/core/lib/security/credentials/composite Private Headers */, - CBD38A4198D884B1F75FE5A11E6AAFA6 /* Copy src/core/lib/security/credentials Private Headers */, - 120D5C3A813BC9EB3157A9B678D12B48 /* Copy src/core/lib/security/credentials/fake Private Headers */, - 8A33CD8AC9A56BB63ADF1632794E279E /* Copy src/core/lib/security/credentials/google_default Private Headers */, - 2F08FB5F569FE16AA583F7B98BC6F295 /* Copy src/core/lib/security/credentials/iam Private Headers */, - FA3B0E944CD41318581C9250839AACF2 /* Copy src/core/lib/security/credentials/insecure Private Headers */, - 9BCB3FBA5F73321B716B86F6E82B8008 /* Copy src/core/lib/security/credentials/external Private Headers */, - 58CF5FDBD800F6969DE1648FEECDB294 /* Copy src/core/lib/security/credentials/local Private Headers */, - 93167F0F755AA142DC450AF8CF23526E /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - D59FA37F7A0B5819ABE418A1603EB8D9 /* Copy src/core/lib/security/credentials/plugin Private Headers */, - B5A67E3DB2018254F10EA78B0DEEBCEC /* Copy src/core/lib/security/credentials/ssl Private Headers */, - E8DC96FBC92B5AEC98084DE05212E62B /* Copy src/core/lib/security/credentials/jwt Private Headers */, - 10028498FDFABEE7E64274352CA67716 /* Copy src/core/lib/security/credentials/xds Private Headers */, - 5DA070DAED082DDC7634F0F7FA715E79 /* Copy src/core/lib/security/security_connector/alts Private Headers */, - 32178B301C34B451FCBD4A2B55C85D3E /* Copy src/core/lib/security/security_connector/fake Private Headers */, - 7A8C234787987EE8BD9FAAC6BB84543C /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - 3F2460D73B4A3D4E03EA2A3CA377F4FF /* Copy src/core/lib/security/credentials/tls Private Headers */, - 2B94875E54AB89A22DFC4EE7A3AE4026 /* Copy src/core/lib/security/security_connector/local Private Headers */, - 9479D4C0AE0ED4BC213B9A07D351B979 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - 7DAF48AE23A8D93B075584A6879ACF9A /* Copy src/core/lib/security/security_connector/tls Private Headers */, - 721608BFBA3213B90187851B0E7E68BB /* Copy src/core/lib/security/security_connector Private Headers */, - 1740578281ECCED480C9DE058A648972 /* Copy src/core/lib/security/util Private Headers */, - 18DEF3C35060D9CFA7408B17D8EEF3F3 /* Copy src/core/lib/security/transport Private Headers */, - 254D55DE7FCB83F557789113631740EA /* Copy src/core/lib/slice Private Headers */, - 1520166C1845838DA1CB2D4ED6496991 /* Copy src/core/lib/surface Private Headers */, - FBF1CCC1E8539C84A2C02EF6B3625597 /* Copy src/core/lib/uri Private Headers */, - 3E4DDA672F3FC7B34ED95D21F3712942 /* Copy src/core/lib/transport Private Headers */, - A3BE713286DC91F0F4959D57F22A3542 /* Copy src/core/load_balancing/grpclb Private Headers */, - 0725AB274CF1EA9BE380C4AC36F5EE2A /* Copy src/core/load_balancing/outlier_detection Private Headers */, - E0C305DCD3FFC955C7F25952D346F887 /* Copy src/core/load_balancing/pick_first Private Headers */, - 3D756E9811BE5B1D2ECBA623F9BB27FC /* Copy src/core/load_balancing/ring_hash Private Headers */, - 50E650E9802B6BD5C49CEF4D82D9CA55 /* Copy src/core/load_balancing/weighted_round_robin Private Headers */, - 1C4A194CC2E33FDAEDEDB01A25F9E573 /* Copy src/core/load_balancing Private Headers */, - B75056C50A2FEE80736B8ED82BAC5DAD /* Copy src/core/load_balancing/xds Private Headers */, - 3593124CFC1002BE660F067413C647FD /* Copy src/core/resolver/dns Private Headers */, - 055CB7B238A7D72ACDDD8FA34CF844EC /* Copy src/core/resolver/dns/c_ares Private Headers */, - 0BB779608FDA1C786043742045229D06 /* Copy src/core/resolver/dns/native Private Headers */, - 89D83BE44BFF70CACEC1640CD20545AA /* Copy src/core/resolver/fake Private Headers */, - 04E83E79422F19091D68548E63252FDF /* Copy src/core/resolver/dns/event_engine Private Headers */, - 299EB4E9C9A04C317456B2933274B81A /* Copy src/core/resolver Private Headers */, - 52F9A14AF8A51EAF5DEFC1CD348DECBC /* Copy src/core/resolver/xds Private Headers */, - B244D6247D8AAD28901AC13BAE33291E /* Copy src/core/tsi/alts/crypt Private Headers */, - AFFD1D5F629CED8AC206C5710C763257 /* Copy src/core/service_config Private Headers */, - B03F1E126120FE11450CDC46D8547F2B /* Copy src/core/tsi/alts/frame_protector Private Headers */, - A34D0CC5328B14CC7A0013B84F4A41D3 /* Copy src/core/tsi/alts/handshaker Private Headers */, - D86F7822705D326E81E83DB106584A4E /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 4CCFD27A6BEBC962D552A9FB8CB200F0 /* Copy src/core/tsi/ssl/key_logging Private Headers */, - 18619F54FFB6365CE5898660A95C8616 /* Copy src/core/tsi/ssl/session_cache Private Headers */, - 4ED18DCF02969BC076BB63024EC7B8D7 /* Copy src/core/tsi Private Headers */, - 42DD77661DABAD8FB646161E6CA3EFEA /* Copy src/cpp/common Private Headers */, - 1A2025F9EB349B3E03284F073F511C3F /* Copy src/cpp/client Private Headers */, - 575E0B48B67C7AF65D6F1A7F1C9C4CAA /* Copy src/cpp/server/health Private Headers */, - 7719420D68C7A6D58513C86EFD6178A3 /* Copy src/cpp/thread_manager Private Headers */, - F89DAACE59420B216387805403F79C95 /* Copy third_party/upb/upb/base/internal Private Headers */, - D94ECB57D8DBB4E07589D8CE4A5C4931 /* Copy src/cpp/server Private Headers */, - 0038274A4A24418D5725891A68DDAEF3 /* Copy third_party/upb/upb Private Headers */, - 8708EB37895EE0ACAB9F6E94DED8DE3D /* Copy third_party/upb/upb/base Private Headers */, - 2286CF5D8233A8CAC7352DC59BECA0AB /* Copy third_party/upb/upb/hash Private Headers */, - FEC769224232EC210B5C101B5D1F8AD9 /* Copy third_party/upb/upb/json Private Headers */, - F3DE41FCBD8DB3F065080DA515956390 /* Copy third_party/upb/upb/lex Private Headers */, - 0D765F34F6A7EDA0E01A0B1A25A21DDA /* Copy third_party/upb/upb/mem/internal Private Headers */, - 6AB2431CA2490D48EFEE036F5315DCCC /* Copy third_party/upb/upb/mem Private Headers */, - B44F22E861C676DC59989023683845C2 /* Copy third_party/upb/upb/message/internal Private Headers */, - 272BAE217570B26879D233D2FFFD076F /* Copy third_party/upb/upb/message Private Headers */, - C6C1D6ABC8E0DD834BA14B40F0DEE339 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - A7F5319FAA41BE19F372B4683684B09C /* Copy third_party/upb/upb/mini_descriptor Private Headers */, - 66B05C851C9E7EDC53028E816BBFA48C /* Copy third_party/upb/upb/mini_table/internal Private Headers */, - F9183B1D949A751530EDF05B7A6B1C13 /* Copy third_party/upb/upb/mini_table Private Headers */, - 849B3A2DC88CC387A1A9834420E1945C /* Copy third_party/upb/upb/port Private Headers */, - 04246FB841A53DEE02D95933EC1B7E86 /* Copy third_party/upb/upb/reflection/internal Private Headers */, - 2BDD212054839DB5EBCF6D744705EB01 /* Copy third_party/upb/upb/text Private Headers */, - E3277EBD93BE1A8CA24E02E1820BC2F3 /* Copy third_party/upb/upb/reflection Private Headers */, - CEFCC88691FA09C038ECF5046142BB5B /* Copy third_party/upb/upb/wire/internal Private Headers */, - C333DA38029A299A2FC19AF27CE56DBC /* Copy third_party/utf8_range Private Headers */, - 85E1BD8DF7F551CC1A8F24D22669CE5B /* Copy third_party/xxhash Private Headers */, - 88B4621B37A5C531C4827C7D8F854E02 /* Copy third_party/upb/upb/wire Private Headers */, - 8786554FBC12765A9284D1143C5EE616 /* Copy ext Public Headers */, - 3381AC13C50980438AC8C34174937A33 /* Copy generic Public Headers */, - 2F4A914529905CBDFB12DAD0F1254E82 /* Copy impl/codegen/security Public Headers */, - DA4CC49D0D22132874EB466C13816AA6 /* Copy impl/codegen Public Headers */, - D983D6A87B9403C5120B5FFF5D2ACC9B /* Copy impl Public Headers */, - F2E80200447D349301E0D99A847CCF8C /* Copy security Public Headers */, - F6FC44C39B777028CE587B72B51D15B8 /* Copy support Public Headers */, - 9E377CC0E917463EA1F726A79D7218C3 /* Copy . Public Headers */, - 73DD026482BBD98AD7BC7D8D5607917A /* Sources */, - 61D09B759F3A2B8C6F1A6A89D2E10E99 /* Frameworks */, - 70DAA21E34D252A70DF8ABFF681A6F54 /* Resources */, - 7F460263EDD6F65D200F29F10D43DA09 /* Create Symlinks to Header Folders */, + 0C03B9C077A0C87033021B301C26C235 /* Headers */, + E737221DBD1F259424527D7525C3539F /* Copy src/core/client_channel Private Headers */, + 6B1B7D3EE1CA44873E6165258E2CC720 /* Copy src/core/ext/filters/backend_metrics Private Headers */, + 5D602C77A833E5FF05DACA9877F4E48F /* Copy src/core/ext/filters/deadline Private Headers */, + 7DFE6DCBDE5BF39BD5F8DE224699C3A5 /* Copy src/core/ext/filters/channel_idle Private Headers */, + 6B2126717E165BE60437A406FB7B0046 /* Copy src/core/ext/filters/http/client Private Headers */, + E17650FB5CBF670F71362E4BD0C9159B /* Copy src/core/ext/filters/http Private Headers */, + F6C8F07C3EC06BCB4EDB42C879EF97D3 /* Copy src/core/ext/filters/fault_injection Private Headers */, + 0C3B447EBAD6C856C3D71E44E6F29C89 /* Copy src/core/ext/filters/http/server Private Headers */, + 63BE5EFAE9D8989613911ADAE5206605 /* Copy src/core/ext/filters/message_size Private Headers */, + A3D12FF56CE23B42E0D28766B363CB5E /* Copy src/core/ext/filters/http/message_compress Private Headers */, + DE3B69ED17D72D456DF9F1A3344A3CA0 /* Copy src/core/ext/filters/rbac Private Headers */, + B8B102337D08DFDA85F79A304157B8C8 /* Copy src/core/ext/filters/server_config_selector Private Headers */, + 9A6DE530ACA47749C89A9A5620A841B6 /* Copy src/core/ext/gcp Private Headers */, + CFEC8EC0F97005941C704774DEFBFA8D /* Copy src/core/ext/filters/stateful_session Private Headers */, + 9ECCE056A2DF5889E7616B34EDED958C /* Copy src/core/ext/transport/binder/server Private Headers */, + 8A15F9654A16D59D9A321A0519D28CB6 /* Copy src/core/ext/transport/binder/client Private Headers */, + 544E25E4D2715B6D769F13E493A3E8ED /* Copy src/core/ext/transport/binder/transport Private Headers */, + 39E36CBD296AA925E42EC8F4897E791C /* Copy src/core/ext/transport/binder/utils Private Headers */, + 9A242AD4512BF4244AE41D1F293887FC /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 9D62CB8C225C978B6E415929E61E959E /* Copy src/core/ext/transport/chttp2/client Private Headers */, + 5B2D26E891BAB6B6ACCF0BD5740453C4 /* Copy src/core/ext/transport/chttp2/server Private Headers */, + D838CC8C23F825C2FE009AFC5CF66D64 /* Copy src/core/ext/transport/binder/wire_format Private Headers */, + EA9EF05169909B7A1692F711A602F23A /* Copy src/core/ext/transport/chttp2/transport Private Headers */, + D17963760D070FF9F677DD14604C52D3 /* Copy src/core/ext/transport/inproc Private Headers */, + E097DEF768611DA3BDDD7E76DA07748D /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + A79C14AB85D1307F15F33D5DC7B524BA /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + E1315F59C0AB67ABD97F016587D70E03 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + A66AE30EFBE9A44293E6A1E387A3CCF5 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + B5C8AD37DAE8BFBEFF377BED94BBC8D0 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + 7ED3A4B2360ABF28AFA58A0A0E6B2E1D /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, + E04D3B5D2C0312862BB19C3E0CC287BA /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 4A71C7FEE5ECE5C57589EE9A08F5E3A2 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + F35AA43CFAACEC67280920CBF1BB2E9C /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 020701C1322EDD554EBEB52C79B399BA /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 960AC943C439949CB5BC3C8254C13FC8 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + E4E63E418F886E65D13585C889E5789C /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, + 7340BB9DA06CF7A41ECC26575278651C /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + E1ECB1E8AB90F5E3A34F5FD6A95C1C0D /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + 9FA40A8A896A0CCFE7E7C233218F5116 /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 4D042D52618B739B3C41F97551480344 /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + A31F36C372DDDC339D32E666935B7CC9 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 1382CD9666FFDE788A35E2E2DA21C58B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + 7D8F30C54FDCD3C78EF7342BA57B549D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 42380F30CD5E0E4CEFBD5B4D7032C1B7 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 0B6D8054118F1C46559883BCACDD2CD4 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + 52F2CF05EE858C6945E12D05F21DC238 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + 827F08211CD2DBA7AA6C3A69AF4A9F8D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 083C19B095F48102866F3AFE94C151D1 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 3821FF0DE37565234A77BB5D76386A9E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + 06155A513771ABBF931E01484DE5546F /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + 93B76814D92A96E5E29B637C3126A14D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + D627623F25F639C11C341EC04D90C56E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + 728392CDD9EBED72032AEE2313EF2F5D /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + D9ECC42311B3819C3FD4348A35813915 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 0488FD7B9165901BF5A22DB7A1474E5E /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + 51E61AC28B6904A1CBE6099681FF4C87 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 447FEB98624AE8DDDA85EAD2E4395B10 /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, + 1F44A821324D92C6A3DC9DD9D23163CC /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + 9C92FECA49A161051C4B0793B7DC20C6 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 1066F9514777799921FF8C1E2248CBD1 /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 7C56E0E651DAABB13F8FEAFAC4652A1E /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, + 958CC5E2CF9B05666F1FDB4027510C3D /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + F9F09EEC60C74832D8E5F65ED0ADE125 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + ADF1D7EA6D8FD3DF4DA289AEBEAEFA81 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + 3575D82FB12D3C0BD3AA6B328EBEC7D1 /* Copy src/core/ext/upb-gen/google/api Private Headers */, + 43C480FCC291543BBBAD4958FD9776E5 /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + A96FA445B8A6ECD2242592B0A71565B5 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */, + 2239580BBD3AF6BFD50A6FD901090540 /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + B4AA20D9FDBCBE42DAD0765DF6BCE280 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + 21A6230A680169BF811BF6EC806F1469 /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, + 6C599E77D3E5B52AB1BC25EC372ACA8B /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + AFA1ADE649BE309129FDE0FF8D185B9D /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + EE24E6B7A262204C7CEC9016E0214FE1 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + C0C8103DD590A9C1738059067E25A044 /* Copy src/core/ext/upb-gen/validate Private Headers */, + 29912A7E8B30615DEE0F3090D23CC03A /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + A44DEDEB19C14B6190358796FE86A0A3 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + D198D9496D507E3696F4D5ED0814B641 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + 560CA94D3F6E5D2ACA6CA0623475924B /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + 0C915EE597B189CBF0E8BD0B98B94AC2 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 544A6D60E674E28965BBB076D4C68B1F /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + E5A950B41C1601157F30DBE20C7E95B1 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 8FDA23244771F78CD631E273E70A9B30 /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, + 1697B4BC87331A3BFE8009F65FE80027 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, + 259831AB2C3BD7035CE83BE96E4CDCBC /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 522086A590685FE13FE1FAF7C6BF385D /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, + 01EDCEC61B9715EE8C22E29C9CFE900F /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + F73C4F17FBB2D50E1F4F20329FED68BE /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + D6A16C710CAD3CB8BDE381C04477D5BD /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + 2AB7913EBA56BDBD206D6C15E05A4281 /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 136C1BA563C7716D718E0CDCFD64C4C7 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, + 89F643C50E0D7F2DC81EA3F8DD2FA7C3 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, + D8F462C988C6AD8FC15DD8D0774134C9 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, + B7C75F421FF87A517FBF8E61706B3BB2 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, + 04E79FC6847C3E97F630CC8BB052EA53 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + 122EA14A275FC1833BB2CB2B78C3C0C6 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, + F4FC82DA99FEB71C3C0A9FD87038DA32 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 855B50143BD8E439CB3037EE4364520C /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + FFD4615377C1290107F1833D943CA622 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 6A04579943BE509656A1C549C1919AE0 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + CF8826E55BECABDDBAF629DB5F2F0256 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + B4F553CB360879086750FFDEB4E76845 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + 287FFB5CF57E295D1809E41BD822B10D /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 752B22DCD5F2DD1F5B146CEF8B9FE33A /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 7B96942D70275AB42D18F7DDDCC580A7 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 905C3C635CF53CB814C410FD112B6980 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + 49EBE0F1766D4AD535218D81A47A35F6 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + E7DB3C0A690163E27CF3B399C555B91A /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, + 31722097938870C6C0D6FF5707286853 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, + 6F560E88B25EB812EB3C07E736693B37 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + 107C37D9158102F9EBC2FC82B5FBF4D1 /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + C338318802B120CA01FEFDAE63E65124 /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, + 470B72583B637CF82132A6693B6B5D78 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, + A17BB2D7E7DFCB8C22E58E653F6F6503 /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 7EC27CD2067A825A4DDCAC9B0F5B4E1A /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 488C521438D79D077EC9E727AB07B664 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + 8439D5DBB7B5BDFA60757CE8DDDBA2B2 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + 222C811B5465CD453A5B967D1414D367 /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, + 40D7C19071A420CC486B61882F3DB16C /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, + 0C401C42E48356E7980C1FDF11B657B5 /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, + F1846F36B6484A2F59F35D6B7125BA07 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + E76DCF2F778D5D5469169DDAC227FF15 /* Copy src/core/ext/upbdefs-gen/validate Private Headers */, + 6068F35F3B3C0025929B853EB25D3458 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + F2B2C348F6B203A6D4EBD7EB4C224BCF /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + FD7C48CD53591A371621978C4E48FCB1 /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + 2097EEB1884F12F060ED60F5582787CA /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 1F8AFACA7868D4DF0D89E7D7D2125241 /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + 4FDB5FB9B950EC32AAC7FB34206BE7DB /* Copy src/core/ext/xds Private Headers */, + 467E7AF8A7769C3444DB5CF7C48D4651 /* Copy src/core/lib/avl Private Headers */, + E77AA7ADA241A103A961376E9C67BA9F /* Copy src/core/lib/address_utils Private Headers */, + 2B98D34CC21978A7AE5B3C4939F55098 /* Copy src/core/lib/backoff Private Headers */, + C9C85C5157D7DAC3F5518C4149B165A0 /* Copy src/core/lib/channel Private Headers */, + 97E19642C2825466240764D6C2E1B250 /* Copy src/core/lib/compression Private Headers */, + CEE10CFB236BC306E9F80520995D6CB6 /* Copy src/core/lib/config Private Headers */, + 39D54080661720020FEEB557FAC9F95D /* Copy src/core/lib/debug Private Headers */, + C1138D46FA2CB84C027B70900FC9D002 /* Copy src/core/lib/event_engine/cf_engine Private Headers */, + 19134F8032D269B7ECA8078AD27A1CDB /* Copy src/core/lib/event_engine/extensions Private Headers */, + 77E85E1BA0B68487BD4F4200B8CC59AC /* Copy src/core/lib/event_engine/posix_engine Private Headers */, + 1436BB31FE243E40D4A9E381A40E7F8B /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */, + E634FDB73CAFEC2FA176CB34D4DC8526 /* Copy src/core/lib/event_engine/thread_pool Private Headers */, + A701C502523EE63A4BF2322ACF0692A3 /* Copy src/core/lib/event_engine Private Headers */, + 6DB39F67C2EE79CEEF4080D890E75384 /* Copy src/core/lib/event_engine/windows Private Headers */, + 5CDF0618211F664336D8D2726CD6558D /* Copy src/core/lib/event_engine/work_queue Private Headers */, + 5073733690965DE5780D953F52B49B14 /* Copy src/core/lib/experiments Private Headers */, + 5129088D15CE6EC5EBB92839922C921C /* Copy src/core/lib/gpr Private Headers */, + 85F8A8FA5124007419C7D0B09746E568 /* Copy src/core/lib/gprpp Private Headers */, + E495AE60065916E458312439D112DCF3 /* Copy src/core/lib/handshaker Private Headers */, + F02F7F284B301CBEA7839C60429E8E14 /* Copy src/core/lib/http Private Headers */, + 2968EC62E0286237D43914F21E19163F /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + 22BCFCB9736F1B5D60E835E5F7E2C025 /* Copy src/core/lib/iomgr Private Headers */, + FD38DB57A75021B4F8401E02CEBFB61A /* Copy src/core/lib/matchers Private Headers */, + 920B4D0129A4055BC9A5CE97E7081139 /* Copy src/core/lib/json Private Headers */, + A2C0ADDAA99C96AFEC3956764D714872 /* Copy src/core/lib/promise/detail Private Headers */, + 15233053F725920ADABD6D0BAB123145 /* Copy src/core/lib/promise Private Headers */, + 957CCEF256F873DDD8883D226E362162 /* Copy src/core/lib/resource_quota Private Headers */, + E38547DCAEA50A14A218C42572D78375 /* Copy src/core/lib/security/authorization Private Headers */, + 37FFE2E8D6E5A02B3F3B63297C92AD95 /* Copy src/core/lib/security/context Private Headers */, + 19A38FC90E3CCE3507B348A85E4F7483 /* Copy src/core/lib/security/certificate_provider Private Headers */, + 1E07AE3EA5495A200F507004736C22E2 /* Copy src/core/lib/security/credentials/alts Private Headers */, + 87045FCD4145929F982E05AF36C5EAC2 /* Copy src/core/lib/security/credentials/composite Private Headers */, + 190905943BC79692158124DA541AF471 /* Copy src/core/lib/security/credentials Private Headers */, + 6CC8C804A272394632D59FC4F52BE6AE /* Copy src/core/lib/security/credentials/fake Private Headers */, + 73907A1C606F19013C18F33D49DC91E6 /* Copy src/core/lib/security/credentials/google_default Private Headers */, + 47B5BC1AE593BFB383C0B17B90D02F1F /* Copy src/core/lib/security/credentials/iam Private Headers */, + 0147F6A3FCD88F09F940D25D6928B780 /* Copy src/core/lib/security/credentials/insecure Private Headers */, + 680286142B2E6816FF864D8B6BDBDCEA /* Copy src/core/lib/security/credentials/external Private Headers */, + AC4EA86D1A2F8DAB4F097E65454A1E63 /* Copy src/core/lib/security/credentials/local Private Headers */, + D11B972BA5DE969A8E71BFB016FB7052 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, + A76674C328EFF6357185CA52C8CDAE94 /* Copy src/core/lib/security/credentials/plugin Private Headers */, + B34733BD6EF4A94374EB2A842F050617 /* Copy src/core/lib/security/credentials/ssl Private Headers */, + 7915E1D9C5DE608D7726B1E39E8A2CA7 /* Copy src/core/lib/security/credentials/jwt Private Headers */, + EA2FDE34153E7C5733E12F7BDFD15C17 /* Copy src/core/lib/security/credentials/xds Private Headers */, + 9D79BCE8A0A34FD4E8CEF3F91D84E4D4 /* Copy src/core/lib/security/security_connector/alts Private Headers */, + D1580093E6AE29C54FD304AAE0610302 /* Copy src/core/lib/security/security_connector/fake Private Headers */, + 6643B050212816A72D6D4FA7D5DF1EBA /* Copy src/core/lib/security/security_connector/insecure Private Headers */, + AC139E1599419EE9909C96D64B5378C8 /* Copy src/core/lib/security/credentials/tls Private Headers */, + 6A78CBCDE285563CA9B22239D5B2112F /* Copy src/core/lib/security/security_connector/local Private Headers */, + 05B177037FD003C82C3313D112DD0176 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, + AD99E555E5DC1EBA2915334C2989ABFC /* Copy src/core/lib/security/security_connector/tls Private Headers */, + 79596EE0873A7C8E2CB725BA4789A947 /* Copy src/core/lib/security/security_connector Private Headers */, + 85832F1D87DB4C75C1A97D8431C445DB /* Copy src/core/lib/security/util Private Headers */, + B874664DC8659C4FECE5F1E5929A3B37 /* Copy src/core/lib/security/transport Private Headers */, + 23B588865E9347A519AC02615E803CE4 /* Copy src/core/lib/slice Private Headers */, + FBE6078417FFCC51D8102949468E77AB /* Copy src/core/lib/surface Private Headers */, + 38091E6ECE11DC0A51D4B5977B7E3F8D /* Copy src/core/lib/uri Private Headers */, + 0CF9D68BF83D066C2AE1F48A85F6224C /* Copy src/core/lib/transport Private Headers */, + 74B6F256E060E1478E7D70E03DE7EFA3 /* Copy src/core/load_balancing/grpclb Private Headers */, + 0CC4F99F09DAFC4CD318F726060C00CE /* Copy src/core/load_balancing/outlier_detection Private Headers */, + 07BE8C54C74B8D5E77F33E5D17BD9019 /* Copy src/core/load_balancing/pick_first Private Headers */, + 32AEE21E1E7B94D87CA5353592A90928 /* Copy src/core/load_balancing/ring_hash Private Headers */, + A400ECBE894CCDB9EC73C07F2A81D2EB /* Copy src/core/load_balancing/weighted_round_robin Private Headers */, + D8AA6207965EA7BF2609A6F75003E8FE /* Copy src/core/load_balancing Private Headers */, + 3125587507170CDC5F99BA19276A1ECB /* Copy src/core/load_balancing/xds Private Headers */, + 6404B9D1E6B080ABCA996B8F22310807 /* Copy src/core/resolver/dns Private Headers */, + EE03F43BD5E2798ED946574DDAA7F48E /* Copy src/core/resolver/dns/c_ares Private Headers */, + 418A476826A68F490D1E58A32FCC8380 /* Copy src/core/resolver/dns/native Private Headers */, + D49FB17346629468833843E048AD2BCD /* Copy src/core/resolver/fake Private Headers */, + 9A1E5B484D8C43E9AB0F4203D16487C5 /* Copy src/core/resolver/dns/event_engine Private Headers */, + CDBF13FB505F2704638D7837BB5A7DC7 /* Copy src/core/resolver Private Headers */, + EF3558BFD9DF5B1D328331530FFC4796 /* Copy src/core/resolver/xds Private Headers */, + 954C1AE6E4B5782ECF91E31911844E3B /* Copy src/core/tsi/alts/crypt Private Headers */, + E65FB9974B9A6F8BCEFCE7C6541F741E /* Copy src/core/service_config Private Headers */, + A619BEBE352AE473D8AF5A87E0939F50 /* Copy src/core/tsi/alts/frame_protector Private Headers */, + DEC917F4C85BB267A19922B9F3C2BCAB /* Copy src/core/tsi/alts/handshaker Private Headers */, + 0FA80D7E8188ABDFD1AF461D11184C34 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + FF194D71361BA77F3D35366CEEBA4F82 /* Copy src/core/tsi/ssl/key_logging Private Headers */, + 25B74735451F9BB2EACF3BD16C6B6A23 /* Copy src/core/tsi/ssl/session_cache Private Headers */, + 91158CD642DEFDB0B88B7D7917F5F9C3 /* Copy src/core/tsi Private Headers */, + D4648DD01E50653F6C15D9032DFEAD88 /* Copy src/cpp/common Private Headers */, + AA1DB7C7B06F5CC89B33B541C3F120D5 /* Copy src/cpp/client Private Headers */, + D9DA1D8A85C18634AFC6710B36DF3FC8 /* Copy src/cpp/server/health Private Headers */, + 54BED23B896A40778A4BEFB16096AB09 /* Copy src/cpp/thread_manager Private Headers */, + A502AA28DA996D1896AAF0D7F3B86DBF /* Copy third_party/upb/upb/base/internal Private Headers */, + 1738AF7C9C2BC9915802757B82EC4EE8 /* Copy src/cpp/server Private Headers */, + FC87485088728E07C5037FBF3AA5E3D8 /* Copy third_party/upb/upb Private Headers */, + 68CC38B90A22C4069B0290D06E962B0A /* Copy third_party/upb/upb/base Private Headers */, + 0B8E441FE1B0B022922F2B6F0B288605 /* Copy third_party/upb/upb/hash Private Headers */, + 84839B0632069E86827F29AE64B16E6D /* Copy third_party/upb/upb/json Private Headers */, + EEB3BC2DDDDBE0C45FB633A03C8C2511 /* Copy third_party/upb/upb/lex Private Headers */, + 3FF30F540B410E11A758115C6CC4A098 /* Copy third_party/upb/upb/mem/internal Private Headers */, + 4A113EDE05326A2B6AF226E9EAC84DFF /* Copy third_party/upb/upb/mem Private Headers */, + D3B8E377B4722448D678873C310BD94A /* Copy third_party/upb/upb/message/internal Private Headers */, + CC028AD70BB6E00A1DBCA50458216F6F /* Copy third_party/upb/upb/message Private Headers */, + B9C37F4465A225B46ED0954E762F626A /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + 60C00472754A174A67FD289D71E2CDAF /* Copy third_party/upb/upb/mini_descriptor Private Headers */, + B3AA1DACF4E21A20BC2A539455A7E7B1 /* Copy third_party/upb/upb/mini_table/internal Private Headers */, + A878AECCDC582AA04DFF1EC28138A705 /* Copy third_party/upb/upb/mini_table Private Headers */, + 9D4E53A631A937D1A045D8F2D3169451 /* Copy third_party/upb/upb/port Private Headers */, + E0703A0E7B0591D423940C597ADDC9B4 /* Copy third_party/upb/upb/reflection/internal Private Headers */, + 18937937CC9972CA6B960166B8CB4D6F /* Copy third_party/upb/upb/text Private Headers */, + B8BBDB9F9C7BCDB8496F81521933599F /* Copy third_party/upb/upb/reflection Private Headers */, + 4570E5EBFB12CED4EF93913B09785E72 /* Copy third_party/upb/upb/wire/internal Private Headers */, + F93855B6332061E15312883DF0A1F1FB /* Copy third_party/utf8_range Private Headers */, + 4D65E21A90F62FA8C3135A1B5D52D54F /* Copy third_party/xxhash Private Headers */, + D827E16A8F445329AE063DF4E97B3DED /* Copy third_party/upb/upb/wire Private Headers */, + 8DA3E8A6F25EE6C8E060A6C0546DDEA9 /* Copy ext Public Headers */, + 0CBD1B5C0BC0A9E26E9EC0843D43C65D /* Copy generic Public Headers */, + C57247247F4D1952D86F180C32AA7116 /* Copy impl/codegen/security Public Headers */, + 23EFC62101FF0D0599F5AC6D56A62BBB /* Copy impl/codegen Public Headers */, + F39BABBF53E38440461DBD845B5DF5D4 /* Copy impl Public Headers */, + F5D186F600FDAFFF867F8DA2CA195A09 /* Copy security Public Headers */, + 9DCF7E2E12040C84769B9735DA6A308F /* Copy support Public Headers */, + A0C96B08104C4C3B41DD629CA546DC85 /* Copy . Public Headers */, + C5F676196821DBD908AE5E0741EB2D63 /* Sources */, + 82A4576FCF40D921FDF0F151B3764D12 /* Frameworks */, + A6634D9A58A23F1D72B077C2071DBC62 /* Resources */, + CA3A6E9E89C7F3C92CFA8C2415C071BA /* Create Symlinks to Header Folders */, ); buildRules = ( ); dependencies = ( - 1297D8806C9135D35B65A66E7A9CCCC3 /* PBXTargetDependency */, - D92F63AA69DD9DED9AB76365E194FB70 /* PBXTargetDependency */, - B00235D59E5FBD1C8C9BAA1C0D199294 /* PBXTargetDependency */, - E8A301893F7F764C89FE355E9DB88022 /* PBXTargetDependency */, + D38B6DA2D417F9F0F8A81E83432C3352 /* PBXTargetDependency */, + EFC10B1C80CC96A984648DC102037DFD /* PBXTargetDependency */, + 0BBCAFD316D632370B0D899D6CD8F1CF /* PBXTargetDependency */, + D76ED8AC37ADEFA133FC67DE3927E1A5 /* PBXTargetDependency */, ); name = "gRPC-C++"; productName = grpcpp; @@ -37881,11 +38940,11 @@ }; 230F5EE18ECBB227C09ED2C571AFA319 /* PromisesSwift-Promises_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = E08561E1F458D36150583E15567612F7 /* Build configuration list for PBXNativeTarget "PromisesSwift-Promises_Privacy" */; + buildConfigurationList = D4AC9FC76FCEA728E0D2F876C333BE05 /* Build configuration list for PBXNativeTarget "PromisesSwift-Promises_Privacy" */; buildPhases = ( - 3183ED906873DE4220D0F01D8E3D0143 /* Sources */, - 9C60373C0FC3AF8FF6376CE1CF102C75 /* Frameworks */, - 467E3615A5B33F4C5400CEAA054FA6E4 /* Resources */, + DB3DADF5555F863822B98180FD51F73A /* Sources */, + 79DA025DF4455F31D412570F348FA156 /* Frameworks */, + 58C8AB510E2D6E77B7B6B65A91B9C702 /* Resources */, ); buildRules = ( ); @@ -37898,31 +38957,68 @@ }; 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = 4779AB7EFE135939ADF16990CC0DB95D /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; + buildConfigurationList = D0ABDBBDFD7593467696AC2DF096977C /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; buildPhases = ( - FA2B11C304A0174274DBF954CEFD7052 /* Headers */, - AA9CB66B4E86B7A79751CE1CEDC912F5 /* Sources */, - 34726137DA413EB5280A5C1AC0A0BA08 /* Frameworks */, - 17C0B705D849B8C8ACC367D9B1F0A949 /* Resources */, + F98DD18B59452C98BAA454AE8DD4E28A /* Headers */, + 6E094947D2A1ACC8BD47919A89056AD9 /* Sources */, + 9A7258B391568A11540E405D8FE934BF /* Frameworks */, + 7875DCE0DD006921EE950DAD771DC551 /* Resources */, ); buildRules = ( ); dependencies = ( - 7447ED78AE50282C263A40A29686C598 /* PBXTargetDependency */, - 7F728D8876D8347AB023BE21710B340C /* PBXTargetDependency */, + 56B6700D797FAC2C8297A18D1D1EBB3B /* PBXTargetDependency */, + 10E536A6BFA25FB75D64E38345BA24B4 /* PBXTargetDependency */, ); name = FirebaseCoreInternal; productName = FirebaseCoreInternal; productReference = 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */; productType = "com.apple.product-type.framework"; }; + 28907903AF6DD0AD321D92CD660E7E23 /* FBSDKCoreKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4A3010D682E60F9268D937C7029DBA50 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */; + buildPhases = ( + D81A4A96B80AF472FFD78E162052E190 /* Headers */, + A1CD5A97E1017FD6FC840308614A9AFC /* Sources */, + E0C70B551B03024ECDBFE31D4825F439 /* Frameworks */, + 0F2E6443655A5D662F01F25453AC0725 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = FBSDKCoreKit; + productName = FBSDKCoreKit; + productReference = EC8F4D0BE3B0C192EBA4A93F8887D89F /* FBSDKCoreKit.framework */; + productType = "com.apple.product-type.framework"; + }; + 290D7B2F80A1721A35508C1739C47F56 /* FacebookCore */ = { + isa = PBXNativeTarget; + buildConfigurationList = 38EAC68616D0C0CD37160973D2496801 /* Build configuration list for PBXNativeTarget "FacebookCore" */; + buildPhases = ( + AE12951B4AC7EDE8DE69BD505191B4AD /* Headers */, + C12FAAC83A887ED82AD93E309DF90F50 /* Sources */, + 97DB025352D31F09D7DB10FB988297C3 /* Frameworks */, + B52CA4F1C39ACEA92B881CC406412299 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + A64293F04D9FE98BEC6FCE5053BF2A2C /* PBXTargetDependency */, + ); + name = FacebookCore; + productName = FacebookCore; + productReference = 2841AEF52E29FA3509917881FAAF0B39 /* FacebookCore.framework */; + productType = "com.apple.product-type.framework"; + }; 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 353CA37726975F388D1B5A67CB28AB90 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; + buildConfigurationList = F8317051626E96A381476173444E3211 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; buildPhases = ( - 3486E26D060C45E393C964A4920AA2C0 /* Sources */, - 6DB6836CADFECE5DF3C1EA85A08C833D /* Frameworks */, - B67FE9F7CC990BECF98464CA83A97F89 /* Resources */, + F56511D6E98D036BE35141F07837CC0C /* Sources */, + 599F9B55E0EDB89E17528C44F047CAD5 /* Frameworks */, + 276E3A3A3EAAA0C600769B96B8FB57D4 /* Resources */, ); buildRules = ( ); @@ -37935,17 +39031,17 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = C97B6D1848D6864AD15A11769173EF69 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = 699A60014BCE6BE474F7C53197381EF8 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - 67ED91098CEF07644203FB7AA11CF4CE /* Headers */, - 66EC35C77559057C3BEB70EE908F64AD /* Sources */, - F34F5B54697A9B81D0D42656B2C72BAD /* Frameworks */, - 1DCF2703A2DDEC59E2F92FC1720D3CED /* Resources */, + 48AB22CA33DF09E9FFEDB88D092E3EA9 /* Headers */, + 8633FA0E4B35C8E713C191F2C59A1A72 /* Sources */, + 786FB770AAAD8370749742F4705A8167 /* Frameworks */, + 2AD38988DBB854E0A5DDF543FC9C5C1E /* Resources */, ); buildRules = ( ); dependencies = ( - 0DC2F3827BB1DCE34432D00A0569B5BD /* PBXTargetDependency */, + 9DAB54CAEF872776D78E6E7ACC01390D /* PBXTargetDependency */, ); name = PromisesObjC; productName = FBLPromises; @@ -37954,12 +39050,12 @@ }; 328CC04F43300C6CAB81659260A3799D /* FirebaseRemoteConfigInterop */ = { isa = PBXNativeTarget; - buildConfigurationList = 908EB0070E47BF74332656EB70C10683 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfigInterop" */; + buildConfigurationList = 789094F216AA108B7546EC3AC0E55260 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfigInterop" */; buildPhases = ( - A71B3CAEECECC3AF6E52B4E49D4C8692 /* Headers */, - 6A14BEC3895E33E0FDC1918E67ECAB16 /* Sources */, - 40806DABB3FC277CF4D66F4D51F0A99E /* Frameworks */, - F422E3229F4F8AD113A242B2934870FD /* Resources */, + 787FB6013593BD026487346E9AEE54A1 /* Headers */, + 5AED624F4A0E6EDB3C8338C8B23EEC3D /* Sources */, + BB4FB34632B9CD3827AD3918429CF7E0 /* Frameworks */, + EBC616A53594313E4E63BD9E0D0622BD /* Resources */, ); buildRules = ( ); @@ -37972,11 +39068,11 @@ }; 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */ = { isa = PBXNativeTarget; - buildConfigurationList = 515782CA87AFA2839D2E3E1D94F5AEC3 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; + buildConfigurationList = 7C4A591019C6BC2511F36699BC3ADB1F /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; buildPhases = ( - 1EF2CFBE7E39B216249EA912629DBF5A /* Sources */, - CEF03604A0B2AF1FCBFF758C90EA0DFB /* Frameworks */, - 27279E2603E28F726C9EBF4A005C79AD /* Resources */, + E2D49829FCBA9CD0465A2EFA166D67B8 /* Sources */, + 68815F7765CD1030BE2C3065492AD3B4 /* Frameworks */, + 30481F856F623169C39AEB99675B6538 /* Resources */, ); buildRules = ( ); @@ -37989,11 +39085,11 @@ }; 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 8D5E3AC996B43667F27D7B9FD00D1272 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; + buildConfigurationList = 7B10A87C5003F7C40C072B73FA96861F /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; buildPhases = ( - 5EC5D7938DF9F2B2B120BF5A15973981 /* Sources */, - DF60021AB8490B21564425D1A19A69EB /* Frameworks */, - B027075B4C25D16AD0EE104B7DE30BCB /* Resources */, + BDAD464EA879A18824E4B0FC2079DB6D /* Sources */, + 5708DC9B43B92A48ADFDE2E01E201639 /* Frameworks */, + E2FE8240360C877B0CA4D896EFB5F77F /* Resources */, ); buildRules = ( ); @@ -38006,23 +39102,23 @@ }; 3F8EC37C78673149F2B94E8BD9AA8737 /* FirebaseSessions */ = { isa = PBXNativeTarget; - buildConfigurationList = 0F183963F0F8DF924927AEAC81DE8932 /* Build configuration list for PBXNativeTarget "FirebaseSessions" */; + buildConfigurationList = 1FDD0F1D7AB052F7EA6D9D17FFA90F3A /* Build configuration list for PBXNativeTarget "FirebaseSessions" */; buildPhases = ( - CB21B6767EC9AEBEF37BED5107BDB676 /* Headers */, - CB4B577BE5568AD8F14F87EFA70334E4 /* Sources */, - 18FEE6A5F6FC520B932C2097C918200C /* Frameworks */, - AF5C7E5198BA8430AAEBC6326ADB2FD6 /* Resources */, + 48DF1A237454DAE2D70310794821D7CB /* Headers */, + A66B9B0BA94442B4B4BC3E828A4E381C /* Sources */, + C9150BAAB3DEF02A467EB3BF74BB5490 /* Frameworks */, + 53B446D575AAA1014EB78EF42236930E /* Resources */, ); buildRules = ( ); dependencies = ( - 643AAD80967B2810DA6C006351806931 /* PBXTargetDependency */, - A6804BEA74F37B5B893A3445815D7595 /* PBXTargetDependency */, - 05DA22CDFD6F68B9C08EE2FA3C36B712 /* PBXTargetDependency */, - B224B58D45056E6780370DBF57447148 /* PBXTargetDependency */, - 83FFAA6C1A3CD7A7631AAEED609C9773 /* PBXTargetDependency */, - 88A85F81277FBCCC0EDF846599BF15AA /* PBXTargetDependency */, - ECA18758B431D886C9C4AF8DF5B031BF /* PBXTargetDependency */, + C83CC16CF7E91F788DE234BDC35F53FC /* PBXTargetDependency */, + FE15489BA811E1F9F7FB68965612A284 /* PBXTargetDependency */, + 50C4C3CCE1D1CF2961B30ADF5146E7ED /* PBXTargetDependency */, + 667750C8D574C4E5F356808F9944F28A /* PBXTargetDependency */, + 8CCB6B1DFCDDD551D55E727B62DD1008 /* PBXTargetDependency */, + 833D4A66D8ACE04D0EA81DA6DB997126 /* PBXTargetDependency */, + 2FDEBC78E2DDBCF1F9AF5A011A54B2B5 /* PBXTargetDependency */, ); name = FirebaseSessions; productName = FirebaseSessions; @@ -38031,11 +39127,11 @@ }; 417B25AC44CA1D040034CC1F375CEE36 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = D03162B885C36232BFC6D348499696B4 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy" */; + buildConfigurationList = DBAF36BA05EBAFC3D91A92696FAB8730 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy" */; buildPhases = ( - AFDDC05C671E2DF8B219F1B9EC6B429C /* Sources */, - BB68EF6AC712531B3936F6695B8A12FB /* Frameworks */, - DA453FFE6938BEB821ACBD84877D77F4 /* Resources */, + 76AF739719170FF3F251A657FA59794B /* Sources */, + 59D54FC51FE8EC755DFC337FAE0EC2DE /* Frameworks */, + 855992826823B848828D42CBE41116F2 /* Resources */, ); buildRules = ( ); @@ -38048,19 +39144,19 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = EB7402A5A5650549C523DC507DFB64D8 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 6FCA4503B08B91F7378AB086C8E96E5E /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - F52558F8D519CD67D4A28D576F855819 /* Headers */, - 5CEEC2E25EE18CF0F25EE7C5817C6E3C /* Sources */, - 5F6D48C8F87825A15A5BF9ADB104B165 /* Frameworks */, - CB5AACA9AEEE47C5CAF834BADA7F114A /* Resources */, + B2357902595F41DD0AB2E27070B5CB7F /* Headers */, + 20BE7B8AC8CC25F08110C0D7B15F31F4 /* Sources */, + 1BAD4516BA2AA7AB4B3855E55571F63B /* Frameworks */, + 2FB8DEC7F3F9000B0A3690670DA406E9 /* Resources */, ); buildRules = ( ); dependencies = ( - 60AA0A489CBC588CF5E77B40A53F42EC /* PBXTargetDependency */, - 64930789337640B1A3745BD9CCFE6F8B /* PBXTargetDependency */, - 4CDBD39847266C81FE30E16C7E33FF0E /* PBXTargetDependency */, + 00715CEFFA79BF5DD5643758E640695D /* PBXTargetDependency */, + B496D606BF3ADF467CFA81CB4474E5AE /* PBXTargetDependency */, + 3B8B15BFD27D28B8489AA2DC8E8CB947 /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -38125,7 +39221,7 @@ buildRules = ( ); dependencies = ( - 225AED5EA54C7BE1D35F280777A98A32 /* PBXTargetDependency */, + 0E474AE0024AB5B676C0438C54E5A6A4 /* PBXTargetDependency */, ); name = "BoringSSL-GRPC"; productName = openssl_grpc; @@ -38152,253 +39248,253 @@ }; 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = 7967F953157CDC6C430CB927A5D9988D /* Build configuration list for PBXNativeTarget "gRPC-Core" */; + buildConfigurationList = 252250DD6D2C507FB295311F76E968D4 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; buildPhases = ( - 4F5EEB859FD48D183D339745A843ADEF /* Headers */, - 9AEA4FEA21790234199AB62A9C845B5F /* Copy src/core/client_channel Private Headers */, - 95789CB6B505188779CA2FD5A4263DD1 /* Copy src/core/ext/filters/backend_metrics Private Headers */, - 5374900AEC877843D83E7E9EB3738EFE /* Copy src/core/ext/filters/deadline Private Headers */, - 17509D4F9391287A8F59A3A46FB5B07A /* Copy src/core/ext/filters/channel_idle Private Headers */, - E6A6F7B290F24732E8FE14508C9D389A /* Copy src/core/ext/filters/http/client Private Headers */, - 3EFF04471FBF38A99B7EC3ED3B8870C5 /* Copy src/core/ext/filters/http Private Headers */, - 53BB1436E8EAEB7F5FEFD1D1641C7BBE /* Copy src/core/ext/filters/fault_injection Private Headers */, - 34DE757082A3E821D30BD7693F4A8F2E /* Copy src/core/ext/filters/http/server Private Headers */, - 9F85BBF6962E1773156DB18BE23516AF /* Copy src/core/ext/filters/message_size Private Headers */, - 0DE726A42C43AFDA4639DB18D0CFE270 /* Copy src/core/ext/filters/http/message_compress Private Headers */, - 6BFC7EE2A942BD98D425D9879780DAF2 /* Copy src/core/ext/filters/rbac Private Headers */, - A0E8C855E2475629F96BA8DA3B280F8A /* Copy src/core/ext/filters/server_config_selector Private Headers */, - BDD20A485058222CC5D9A8EF98D1B856 /* Copy src/core/ext/gcp Private Headers */, - 2B32E8B822E0D07BA1CC45C4B58E5FC2 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - F3CCCEE4C82B0A59305470A35518CEE2 /* Copy src/core/ext/transport/chttp2/client Private Headers */, - A32ABFFC8CC55DDB3CBA021A56EAFD2D /* Copy src/core/ext/transport/chttp2/server Private Headers */, - 34A79A1073AFB40027C8718345176BA5 /* Copy src/core/ext/filters/stateful_session Private Headers */, - B168CD8CD107F2D72DC2E09F1C286D8A /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - EBC7996F2D090BEC684BE6AF4047A2AA /* Copy src/core/ext/transport/inproc Private Headers */, - 82664D11575708BB29E2C405A0E949EA /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, - 240DC667FD3A48B02165B72381BC4880 /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, - BFA4D590B2B23BBFF107CA10F0DE2492 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, - 0BF67BE4853A1B873D424B8F378936A3 /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, - 3624A25E1FDF49EAE1AFA89E6FF15551 /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, - F6C2B7467F49F1FE5A28EAB5FDB900EA /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, - 6FD294FFC3BCB6FE5E8D6F2F75B9FA17 /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, - 62883354CDB2A2D36744C5C528E903D7 /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, - FBF32BBFBE3D7BE536784630E7774A66 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, - 2EE6D0D0FD35DBCD5473BE397F53609A /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, - EABBD4AC958E3AA43AB6085ECF46B21E /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, - 2D2D794AC12E5C7FFACE0C9B024B0D0E /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, - 74D70649FF7A9C0D7F1598188CDE4EF0 /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, - E999990BDADAB16EF3DF501E020B5E92 /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, - 5501CE8908B6BA6E8F4655D22DC0963F /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, - EC7BE8DCE851039FF03E1EE0E82A6976 /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, - D7C20DB56C30F6475BCAF00332272089 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - B78071D36646B3D331FBF5F83987075D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - 6C68DD6742A1BF209A175202514FBEAC /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - 170B8237DD8FD70BE8EFFAF71778DB0C /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 0BD8FDD714D606A8CBA155B9F147312C /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - 67A3D56C9FD1C2B25EC7E0C052E096DB /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - AEE7AB13743919B2447C76DA13C9763D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - FEF0F411D103602807AC0F3A8D89E4DD /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - CCB410F7660CC04BEDA42AD58495D94E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, - B29F3BBF079142319D9F06E80E2A269C /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, - 262837B20F4EE544172DEC1713FB626B /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, - 68F2C157B271F78FCA0F6B36646E946E /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - E66B0B3FA486B7AE87544F761EB1B4D4 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - ECBD1D6E0C81642C2AEA2BAAF26DCF71 /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - A523572C1EFA64507E310ED863BEDB64 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - 5716CB537741737189ED3BD933742F8F /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, - EBE57C19B45E0B8DB8F0B0A110EBB47E /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, - F9F8F722144C6D03176F8F1157B976BF /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, - 842BE91752FBD41FE1B25555C5E8A5B6 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, - 3F5611D60AD34C6D56C90A6DF5666CBF /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, - C99EA8A357EEA0BB133EED778786140C /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, - 3AAEA8594B8FBCA16B222493D952935D /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, - E3B9EE77BA16149B693CAA822107C209 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, - 05800FCD015E8A86EB275468AB7DA1D1 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, - BFD20C5D8B6DB9C48B04C64B160E77F3 /* Copy src/core/ext/upb-gen/google/api Private Headers */, - 15C88B946E616C8FAC56B2B66C5756F0 /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */, - 5FA17B5103C6BF8A92176D06B6A9896E /* Copy src/core/ext/upb-gen/google/rpc Private Headers */, - CA72391CD109DF10D43F8B8E63DDC371 /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, - CCD5FBA85E6D293D6205587F78D03E83 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, - 1A6C76578CE2965BB9FF19DFF6161039 /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, - 6C34E7EE9731DBAA71435B4EDCCC1BC7 /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, - 03ABA53646AB0CF7530A9CE891E919AE /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, - 72D20E70FB363488C344E4757CA68062 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, - 3E1BA9026E7B57BF1DEC6C5EBA34FBCD /* Copy src/core/ext/upb-gen/validate Private Headers */, - 1B8919A81DB4A802AFB707AE73ABC356 /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, - 3C9C5594B8786FAC7BF48499A3BB7104 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, - 32D8E63F641B69FF7DBAF601DF210584 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, - BD778689AC3130A2208C22695926B915 /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, - 6649C22BF67DE8DE52BBF16DB0C6B174 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, - 3726176A8FF181C5412707B856D42D6E /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, - EA125C4EBFDDD74591BF8618AAB00633 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, - CE0D59C8639B0CCE0AFDBCDC21C7384B /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, - EDEDD922F037981FA951F2F8A355C268 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, - DFA4EAF43A3B246FECA9147A4FBA86A2 /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, - E061D049D36B1FE95AC6B2BB82844EFB /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, - 91C1E2DE5A6F721DCE457B1D3CEBA8F8 /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, - 7D3D17AD6FC1004A49931CD4EA668F0B /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, - 4B1F9B097F812C9586D560AEFC4B4C1A /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, - EEBA8DAFC9051B7C8C9F3802C957A61C /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, - 0C9A2F2C27B75EB4543CD09E5A5065B1 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, - C870CD1E7EECEE2B455CC9B004468BEF /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, - BCF42A86C8806BC286531CCEA32C0CA0 /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, - 3160D4BFD7DF6FA46980334E9D834A75 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, - D7F0B1B10F254BE9C6AB624BCED45CE9 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, - 589C8578123773CB2E7B0FE46757BD41 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, - CECEBC74917A6181EA303723980F3B49 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, - F136C65BE58AAEFB610FB9B03BBCD371 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, - F9C64EB4FFDE5842D99617AD58018532 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, - B93D35FD0FBD49742FB01025773A57E4 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 9567DA099B0C629461D5D647F27AF422 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, - 535C76B92C7FE51FF404A9A1B4270179 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, - 094D012114C8B4E9658FD5E6F1C689A8 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 8BD75A641A88CAACC260CAFEC3F8F2BB /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, - 4017C8DD8CD070AB7EF86654E1D65724 /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, - 4ACC51D95CBBF2C46AA3C518EC173688 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, - 029ECB084E1C4F055F11C9078C7EDA05 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - D1F3464493BA147C3D0008D763E8ADCB /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, - DB6A75CC9E557D3677733B6E799E3CC9 /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, - 82C66779C4ED5CDC4E96D652F4BCFAD8 /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, - B67333D915FCAE3AC66CAB1F71484ACE /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, - 93E508290789CF8003C8330E817AAA8B /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, - 8D5B6BF0C5E6D61BA6222E464977279F /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, - 4D3C842DD41BB99D5086097B9DFFD6AA /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, - C0972939AEF9F912696D858AF6ABF03F /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, - 536F828E626898C1214841563A3D4AF7 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, - 2B398DF386BA71CF082E4BE2D242D133 /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */, - F58A80CA6ECD180E4097061E9309E74D /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, - 9B6BDCB0446E9E066874C5DFF0BF0444 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, - 42A353C5C5D2B126B73E4536C55960BF /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, - F12343EFCA1F87F3A805E5F026C00765 /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, - 95B67D6FC3CE4DB46ED92A1BDE656D9F /* Copy src/core/ext/upbdefs-gen/validate Private Headers */, - 8B980A8C8DCB29F1A0A7ED5B8B52798A /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, - 6B738BF5D54DC14214D326D281455FB1 /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, - 5DCBEB0A531648285F7BF044E1BC842E /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, - A6095AD38455F2D038EC40757B556181 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, - F112D2A4B32673A82BB08590135365B6 /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, - 1532FEE4AAED8725ADF675568B72765B /* Copy src/core/ext/xds Private Headers */, - 62AD393123E55369BD22E1A6E8FE69AF /* Copy src/core/lib/avl Private Headers */, - 42DE45E47A4FBB14955EE5F1611D6315 /* Copy src/core/lib/address_utils Private Headers */, - 9CFD41D55C6E328351105FFBDB3FAE34 /* Copy src/core/lib/backoff Private Headers */, - D24F3F442AB5C4AE25994AA85726A48D /* Copy src/core/lib/channel Private Headers */, - B91B9B508D773711B4F03605E9D55DA7 /* Copy src/core/lib/compression Private Headers */, - F1FE4E1E89CD819C1C1FD10C83E54330 /* Copy src/core/lib/config Private Headers */, - 9BE2EE581D8753504D0D4051AABFC9DC /* Copy src/core/lib/debug Private Headers */, - 8484A79A53914B572EB5BCE282CD8AC8 /* Copy src/core/lib/event_engine/cf_engine Private Headers */, - F6E6B128CBD4371A18E756B2D03D404A /* Copy src/core/lib/event_engine/extensions Private Headers */, - 0C7FCD21E118E7E4BE142F47CD198ACF /* Copy src/core/lib/event_engine/posix_engine Private Headers */, - 212261C6AE71CD36E27CDD9CBFA4DCB1 /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */, - A883DCFA66814C2415A1A84F139EC5D9 /* Copy src/core/lib/event_engine/thread_pool Private Headers */, - 208B611A750FA741769CD5EDE0339B1F /* Copy src/core/lib/event_engine Private Headers */, - 27A161FE1055F66B6EF07A8EF1582301 /* Copy src/core/lib/event_engine/windows Private Headers */, - 1C3CBF4A3081BC885B32345F9164F578 /* Copy src/core/lib/event_engine/work_queue Private Headers */, - 5F118DC53834C1A03A33A329254310A2 /* Copy src/core/lib/experiments Private Headers */, - 942B6897130214EE546317A7830FCCA6 /* Copy src/core/lib/gpr Private Headers */, - 11E9F5475C94684B89BCECD5F98DF7E3 /* Copy src/core/lib/gprpp Private Headers */, - 8C380CA45311807E89CD041A472DA759 /* Copy src/core/lib/handshaker Private Headers */, - 3B69CD1013D5F9AB37EA0F44F4A0E008 /* Copy src/core/lib/http Private Headers */, - 2BD8CD84C8BB2E4B7B8EDA93818DF665 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */, - 3B56CF1B4DFD6F13B9FE7E0D48DCF9DA /* Copy src/core/lib/iomgr Private Headers */, - E3820D028720F4D6401059A419801FAC /* Copy src/core/lib/matchers Private Headers */, - 512793802B19F9907BA7AAB294E533FB /* Copy src/core/lib/json Private Headers */, - EB1F3DD3FD56EE8E67D21E1C9467A220 /* Copy src/core/lib/promise/detail Private Headers */, - 876A5D3C1F1C63B57648CBC98866DEF0 /* Copy src/core/lib/promise Private Headers */, - A2017932022FD12987D783077DF3CBEE /* Copy src/core/lib/resource_quota Private Headers */, - FB48259010FFB63B53F44C77C8E06788 /* Copy src/core/lib/security/authorization Private Headers */, - C85648DA190870B51917E263B1267136 /* Copy src/core/lib/security/context Private Headers */, - 7AD8071B958E68EA06211AF02A590467 /* Copy src/core/lib/security/certificate_provider Private Headers */, - 7EC4DC8E450677FF0130FF9F403E71A8 /* Copy src/core/lib/security/credentials/alts Private Headers */, - EBEC44EA518D0C813715EF600C4FA55B /* Copy src/core/lib/security/credentials/composite Private Headers */, - 7AC71A70D30018E9A6B70A7871C28794 /* Copy src/core/lib/security/credentials Private Headers */, - F614F92A75B6D71CDCC4E314B97CA4F9 /* Copy src/core/lib/security/credentials/fake Private Headers */, - 4DE833AACACC12826E397CB497CA4FAE /* Copy src/core/lib/security/credentials/google_default Private Headers */, - 8A0EA0D5A7CB4E30D91257048F5D1016 /* Copy src/core/lib/security/credentials/iam Private Headers */, - AE50A7B5C2D76D83F54BFCAC965AF7F7 /* Copy src/core/lib/security/credentials/insecure Private Headers */, - A6806885D329E93230F95FCBB9A66D3A /* Copy src/core/lib/security/credentials/external Private Headers */, - 13EF3696078890C595B734D1E43E85FE /* Copy src/core/lib/security/credentials/local Private Headers */, - 1D0C94437FCCD9E4A941B9DFCD00C862 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - 3D897C9DD270F9E74BDB39EFA8BE1AD7 /* Copy src/core/lib/security/credentials/plugin Private Headers */, - 92D768636AB5B26B4A610E6744F1C907 /* Copy src/core/lib/security/credentials/ssl Private Headers */, - 29379B458A19B60B24C268F8E74B9473 /* Copy src/core/lib/security/credentials/jwt Private Headers */, - CE84CA8ACFE7D4156E0F6E1383B3EF01 /* Copy src/core/lib/security/credentials/xds Private Headers */, - 4525097FF8F49E4ECD43A176BABB2CDF /* Copy src/core/lib/security/security_connector/alts Private Headers */, - 318B153B0539FF1BA9B7D4EC9A5AC5BF /* Copy src/core/lib/security/security_connector/fake Private Headers */, - D6251A062177715160671482B304D4F6 /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - F34B525F42616E5E9714C94BA03ED71D /* Copy src/core/lib/security/credentials/tls Private Headers */, - 122642D27972E7D20BC80F682A30B6B4 /* Copy src/core/lib/security/security_connector/local Private Headers */, - 7F2449CAE104A525DA878411BF875800 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - 9230EC47DAC1FEC81C82F7BD0EA02BD6 /* Copy src/core/lib/security/security_connector/tls Private Headers */, - 912E8359F6882D96AEFE7160E4745E31 /* Copy src/core/lib/security/security_connector Private Headers */, - 2EBF3DB724AA6F1EC722DA16342585FF /* Copy src/core/lib/security/util Private Headers */, - FFB2A9EFA88EA7E7DA3603F6FD9525FD /* Copy src/core/lib/security/transport Private Headers */, - 0464E521A12D89B1A2E902B90AC04041 /* Copy src/core/lib/slice Private Headers */, - 898D6CE9DBDBD923F7B3392266D5E325 /* Copy src/core/lib/surface Private Headers */, - 321353A6DD992126F4F9888ADDE3D820 /* Copy src/core/lib/uri Private Headers */, - 938EC2003C732CC459EEE72405E4D119 /* Copy src/core/lib/transport Private Headers */, - 6B936F99F2CF803ED9AED5ADBE8FDCB5 /* Copy src/core/load_balancing/grpclb Private Headers */, - 9D785B9B841282173B8091190A54895B /* Copy src/core/load_balancing/outlier_detection Private Headers */, - 3E1618C9CF337A593C9D501D8E4E011D /* Copy src/core/load_balancing/pick_first Private Headers */, - F13CE40558615441341A125E41CAC980 /* Copy src/core/load_balancing/ring_hash Private Headers */, - 5EC50CA0CA4914C3FB3969AAB3F76F4A /* Copy src/core/load_balancing/weighted_round_robin Private Headers */, - AC64150CA72148A99C6C6A3CEE221EC7 /* Copy src/core/load_balancing Private Headers */, - 44B20733C17CF2639ECD4B9BECFC168D /* Copy src/core/load_balancing/xds Private Headers */, - AFE3826E2F35328402362472CD36598E /* Copy src/core/resolver/dns Private Headers */, - 9FEA59B99B34FF594E4D9D3DF7499B7E /* Copy src/core/resolver/dns/c_ares Private Headers */, - AAB242D7E1E8C7E39DF938EABC5F26EF /* Copy src/core/resolver/dns/native Private Headers */, - 88904A8034C91D5B0AF69EC9750D9215 /* Copy src/core/resolver/fake Private Headers */, - 9A6021C1E2FB72544C6C7FD64A6A6673 /* Copy src/core/resolver/dns/event_engine Private Headers */, - EA4A495DF4AE56B995F6DD0FD29AF332 /* Copy src/core/resolver Private Headers */, - C97ADB548F5BF56BC739BA3207D3310F /* Copy src/core/resolver/xds Private Headers */, - 741CE4956ADFB0576EBFBBF6E94C16C8 /* Copy src/core/tsi/alts/crypt Private Headers */, - 71771B088BDB53C9CF11252A6C675A51 /* Copy src/core/service_config Private Headers */, - 8151AA4CF572948E7A7206376CBC3B97 /* Copy src/core/tsi/alts/frame_protector Private Headers */, - 917624EC5C339065677B32190A54B630 /* Copy src/core/tsi/alts/handshaker Private Headers */, - CA7D844BBBB265D002AD13CFFAF4E1BC /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - B4A06F057DDB80DD03E4B84874F11393 /* Copy src/core/tsi/ssl/key_logging Private Headers */, - 7A35C0F0F96CB54AC3A7024963910B91 /* Copy src/core/tsi/ssl/session_cache Private Headers */, - 964D2573C5787E9D897E95EC3D413807 /* Copy src/core/tsi Private Headers */, - F8A6DD265B65AAC2296D9FA319936B47 /* Copy third_party/re2/re2 Private Headers */, - 35B26376B905DB1A7195175DEDF54E11 /* Copy third_party/upb/upb/base/internal Private Headers */, - 52EC046FE78457930C1DCF2775A0783C /* Copy third_party/re2/util Private Headers */, - D6DC461A7F8B17AEC1403E9FA06F5472 /* Copy third_party/upb/upb Private Headers */, - D7A73752191013D40D82127C492B05B4 /* Copy third_party/upb/upb/base Private Headers */, - BE2DD7AA57F2EC07F3A5B68EFEBD09F8 /* Copy third_party/upb/upb/hash Private Headers */, - 2C9E1EE3C7D48BF1F93823503412B41E /* Copy third_party/upb/upb/json Private Headers */, - 6991802BDB46FDCABF8ABF9BE7C01F2A /* Copy third_party/upb/upb/lex Private Headers */, - 2DD52AD979261619B82990D24B2FE081 /* Copy third_party/upb/upb/mem/internal Private Headers */, - 431BA95692C2B713072326C5C32AA336 /* Copy third_party/upb/upb/mem Private Headers */, - A7FA8BE5BB7F0FCE878DFFE985DE9958 /* Copy third_party/upb/upb/message/internal Private Headers */, - 154C9DE092E823414A380CF924164692 /* Copy third_party/upb/upb/message Private Headers */, - ABBC5BDE4F2301EB09B849B01FA9F987 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, - 7451898AA4E38DB7EF296C7FAA65352B /* Copy third_party/upb/upb/mini_descriptor Private Headers */, - 85C4BC45A14C7EA3A3B1DFC8D4A48846 /* Copy third_party/upb/upb/mini_table/internal Private Headers */, - 43957EDEA52DB348042A5C6CF034DFB2 /* Copy third_party/upb/upb/mini_table Private Headers */, - 0252471F99EE0A37E3D27A0A36F79FE9 /* Copy third_party/upb/upb/port Private Headers */, - 7DF03B20153CD726B0415E632FBBEBC0 /* Copy third_party/upb/upb/reflection/internal Private Headers */, - E5243E4E8CEFE28C36A15E99C295F5E9 /* Copy third_party/upb/upb/text Private Headers */, - BAF53461E2E6939B2FFA43BE3841CB47 /* Copy third_party/upb/upb/reflection Private Headers */, - B8AD2FC811391C76EB1D85FF3DB02C11 /* Copy third_party/upb/upb/wire/internal Private Headers */, - 1CF056DC9006F727B3A09C83FF15EA32 /* Copy third_party/utf8_range Private Headers */, - C1BF979CCAC11264660052A999AD2AFB /* Copy third_party/xxhash Private Headers */, - 5DCCA2FB06EFB79C982AFE033F0EB5C5 /* Copy third_party/upb/upb/wire Private Headers */, - 544509B9FE1F96AAE5CFBBDECCBE1928 /* Copy third_party/zlib Private Headers */, - 056370A53BFEEE4ED6790A96FF0DC71C /* Copy event_engine/internal Public Headers */, - 9CC1F8125B675760AEEDF6260E9E34DD /* Copy event_engine Public Headers */, - A234A301E7DA342F315D366324D3DF43 /* Copy impl/codegen Public Headers */, - 7897BE8C813EB6D57A4A41F8C75CBE12 /* Copy impl Public Headers */, - B22DEA72BAED37377F8D2642A749856D /* Copy . Public Headers */, - B82FE003690D5EEB1D57B72E7E6B8178 /* Copy support Public Headers */, - 59E1DB2FFE2D4EEEFD10F16AEA5F83AB /* Sources */, - D9C053FBF1A1C8094480291DD642529A /* Frameworks */, - 90BC29CB00F115F7FFA3968F488F5910 /* Resources */, - 0FB9DDE08E67C0FA09C0F8C7A6DA26C6 /* Create Symlinks to Header Folders */, + 47C698B6D78A3B9359A3B73CDEF093A7 /* Headers */, + 7F2188D3A0B6AA2EDF48C66F969978E3 /* Copy src/core/client_channel Private Headers */, + 37E30E9FFB4E79D445C0CF31C72C02CE /* Copy src/core/ext/filters/backend_metrics Private Headers */, + A9A7FA150E289ABC5B0E057342C6D5FC /* Copy src/core/ext/filters/deadline Private Headers */, + DF7EED9151547C5F30AFCEFB5B798BC8 /* Copy src/core/ext/filters/channel_idle Private Headers */, + F1B43A95CA780D165D903AE147D4376C /* Copy src/core/ext/filters/http/client Private Headers */, + 1C45004C7BB6619E8CDE56132D374CA4 /* Copy src/core/ext/filters/http Private Headers */, + 662B830390A88BA8100E52E5E834D4F1 /* Copy src/core/ext/filters/fault_injection Private Headers */, + 33ACE8A2C009A62FAE91C2BE3B062347 /* Copy src/core/ext/filters/http/server Private Headers */, + 79666B74C433559C413FD3DD34D48001 /* Copy src/core/ext/filters/message_size Private Headers */, + CB80094D081571DEA674C3B28EF1861A /* Copy src/core/ext/filters/http/message_compress Private Headers */, + 8147708B2737EEBB39E2D43C54216038 /* Copy src/core/ext/filters/rbac Private Headers */, + 9E036874F5B429F62E119D673155B084 /* Copy src/core/ext/filters/server_config_selector Private Headers */, + 15A9156DD1AFC0D142D3EE6BFA99DC39 /* Copy src/core/ext/gcp Private Headers */, + 92593D0516521A2FEEEA640145A494D2 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, + 3AD4CEC8ED51B84E6119D82CCA11AA8A /* Copy src/core/ext/transport/chttp2/client Private Headers */, + EE863590793B598BB8941C5D8ECDC59D /* Copy src/core/ext/transport/chttp2/server Private Headers */, + 41677832F4F3D4644711F34CD56A12B9 /* Copy src/core/ext/filters/stateful_session Private Headers */, + 0EDBABEF200B9C1D90FBC4EF0460D64F /* Copy src/core/ext/transport/chttp2/transport Private Headers */, + 62646D4AA4545A03789793A0B047C0F8 /* Copy src/core/ext/transport/inproc Private Headers */, + ACB40B4064FFF13E918EB831C76D09CA /* Copy src/core/ext/upb-gen/envoy/admin/v3 Private Headers */, + 6E485ECC27F11A979C74C04228BF21FD /* Copy src/core/ext/upb-gen/envoy/annotations Private Headers */, + C455FDA6FD9F5E783A46DCD80AE042C1 /* Copy src/core/ext/upb-gen/envoy/config/accesslog/v3 Private Headers */, + F569DBC6D078BAC9C427D4D880352F5B /* Copy src/core/ext/upb-gen/envoy/config/bootstrap/v3 Private Headers */, + 9470A6DB4F5C21FAA1942301A715119A /* Copy src/core/ext/upb-gen/envoy/config/cluster/v3 Private Headers */, + A679CF3C2AA729B21B0904ADFD3A2B36 /* Copy src/core/ext/upb-gen/envoy/config/common/matcher/v3 Private Headers */, + 517EE30B695301F1E099F541444032A6 /* Copy src/core/ext/upb-gen/envoy/config/core/v3 Private Headers */, + 2AB0AB2FDA4B3846C3377E786582091E /* Copy src/core/ext/upb-gen/envoy/config/endpoint/v3 Private Headers */, + 31693803C38274CCD6AD2B92AD139D82 /* Copy src/core/ext/upb-gen/envoy/config/listener/v3 Private Headers */, + 9DB0DC8BB8DF3BBB1F0BB5BA1B11B775 /* Copy src/core/ext/upb-gen/envoy/config/metrics/v3 Private Headers */, + 441D1CBDDD71DBB0D1C91DD9E40279B1 /* Copy src/core/ext/upb-gen/envoy/config/overload/v3 Private Headers */, + 262CE25AF8E8CD34573C11D765504A5D /* Copy src/core/ext/upb-gen/envoy/config/rbac/v3 Private Headers */, + C84F30038AE69506E05613E0ADCAFD4A /* Copy src/core/ext/upb-gen/envoy/config/route/v3 Private Headers */, + 289DB606B20EBCE420049DC93B373A58 /* Copy src/core/ext/upb-gen/envoy/config/tap/v3 Private Headers */, + B132AB81CD249482AC4AF9A8DFE57CB4 /* Copy src/core/ext/upb-gen/envoy/config/trace/v3 Private Headers */, + 251574FAE9254F5B61FC3B216AC6172A /* Copy src/core/ext/upb-gen/envoy/data/accesslog/v3 Private Headers */, + 4113685D0B8570CA9568F31B09E7DA28 /* Copy src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + 068320B9A47DE1ACD85DC3425B36C0B5 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + 075D455F9FB02770A5256A3CFC5516A1 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + 74F18B4602BB13C6A33C1A5721BCC3B3 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + C5E9CBBFE3B5E32F6E08D37BB4D0CD5B /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + A9EAC7E41C61BC7950EB1A82EE37F33D /* Copy src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + 9245BD9ABEAA9E3E935536A60523A0D8 /* Copy src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + DDA9FE22D91BBA0B945AC2F540789C41 /* Copy src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + 39C0C66532C60A86F73ACA3BBC1A22A9 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 Private Headers */, + 9874315657B3A855B2BED71CF61C7EA2 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3 Private Headers */, + 21630D0E8C32D7F91137E060FB1D73BC /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3 Private Headers */, + 6F8BC8A6A87B7FFC6B4C7BA22A3F4E06 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, + 24B4F72B9FD32E8B02624DCC908B1BC2 /* Copy src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, + 7EB21AC7A53978D5ABA6F62E0400197A /* Copy src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + F9FC839806B21AD2B7659949E8D169B8 /* Copy src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + F124FA4599F19A1A61B11E20A78E7211 /* Copy src/core/ext/upb-gen/envoy/service/discovery/v3 Private Headers */, + 5BA2500C737DBEA608B4A8284350D962 /* Copy src/core/ext/upb-gen/envoy/service/load_stats/v3 Private Headers */, + 699B2E706AFB4349F7B347D68E97FCAF /* Copy src/core/ext/upb-gen/envoy/service/status/v3 Private Headers */, + 169E8BD7E54C996C7ED123C002473549 /* Copy src/core/ext/upb-gen/envoy/type/http/v3 Private Headers */, + 46BCC7CA841C404AE39FC073E15B84EA /* Copy src/core/ext/upb-gen/envoy/type/matcher/v3 Private Headers */, + 33317C223E3349E7E2179434BB70B607 /* Copy src/core/ext/upb-gen/envoy/type/metadata/v3 Private Headers */, + D8FEC079274A5A04F0527B1FA8D8D017 /* Copy src/core/ext/upb-gen/envoy/type/tracing/v3 Private Headers */, + CC7D0CA484C269FA4E1CA9FAE9006EF9 /* Copy src/core/ext/upb-gen/envoy/type/v3 Private Headers */, + 33ED8E636A020FFA0E73F7CD834FADC3 /* Copy src/core/ext/upb-gen/google/api/expr/v1alpha1 Private Headers */, + 91C7ADB22FAF38B541C546E00AF76705 /* Copy src/core/ext/upb-gen/google/api Private Headers */, + 3731987163363B2AD295BB2E8962992F /* Copy src/core/ext/upb-gen/google/protobuf Private Headers */, + 85F790DB540AE26ADA8C3A14C168E8A8 /* Copy src/core/ext/upb-gen/google/rpc Private Headers */, + 79F62CEE7DF57373E1760F2AD99748DF /* Copy src/core/ext/upb-gen/opencensus/proto/trace/v1 Private Headers */, + 0CA1F1E0A60957931BA68814431C6781 /* Copy src/core/ext/upb-gen/src/proto/grpc/gcp Private Headers */, + DCBD88653D1C19EFA71BF81705DF357A /* Copy src/core/ext/upb-gen/src/proto/grpc/health/v1 Private Headers */, + 3E58B2196216C926D5BC6A7745209EEC /* Copy src/core/ext/upb-gen/src/proto/grpc/lb/v1 Private Headers */, + 2E83B98BB1ECA00B8F514CDB1F8CD50C /* Copy src/core/ext/upb-gen/src/proto/grpc/lookup/v1 Private Headers */, + 722D457F962EB178BA92FFCD6B5E9A99 /* Copy src/core/ext/upb-gen/udpa/annotations Private Headers */, + 2C4AC5E8E8AE33B61AE3DDEB8D7BD3CB /* Copy src/core/ext/upb-gen/validate Private Headers */, + 34C825E082DE187BE81210562D7D86ED /* Copy src/core/ext/upb-gen/xds/annotations/v3 Private Headers */, + FC31F160437FF6D071AE664474112404 /* Copy src/core/ext/upb-gen/xds/core/v3 Private Headers */, + A7B654A0C7379AC631F5E9CF5ADB7F76 /* Copy src/core/ext/upb-gen/xds/data/orca/v3 Private Headers */, + 630E1590D6295C3CF6CB88F74D3672A2 /* Copy src/core/ext/upb-gen/xds/service/orca/v3 Private Headers */, + EE7C9034E8C09A724FFAFC5E50516407 /* Copy src/core/ext/upb-gen/xds/type/matcher/v3 Private Headers */, + 2454DE5F38AB0A4282CF6BC4196CDE6E /* Copy src/core/ext/upb-gen/xds/type/v3 Private Headers */, + 8BAC9C59B9A14C646D1997F0B72B3645 /* Copy src/core/ext/upbdefs-gen/envoy/admin/v3 Private Headers */, + 381E8DF47BBEA24E6F58161EA88AEB6D /* Copy src/core/ext/upbdefs-gen/envoy/config/accesslog/v3 Private Headers */, + 2BA14217630ECCC0A6FDCE4940025377 /* Copy src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3 Private Headers */, + B51061D0B51609F6701AFCC268678FCE /* Copy src/core/ext/upbdefs-gen/envoy/annotations Private Headers */, + 2AB64D8A484B3C0ED2FAE80D4978165B /* Copy src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3 Private Headers */, + 3D554AC0703938D0FFAFC50DB342AE9C /* Copy src/core/ext/upbdefs-gen/envoy/config/cluster/v3 Private Headers */, + B9DF941D1ABAD5F47E8DE1170705EEB6 /* Copy src/core/ext/upbdefs-gen/envoy/config/core/v3 Private Headers */, + 52D5AA68C2A8709D8BB9D1D54DB2C685 /* Copy src/core/ext/upbdefs-gen/envoy/config/endpoint/v3 Private Headers */, + F857F7833132B3D604CA9F51E30626BE /* Copy src/core/ext/upbdefs-gen/envoy/config/listener/v3 Private Headers */, + 83F3B268A024983D82651EE9BFBA7682 /* Copy src/core/ext/upbdefs-gen/envoy/config/overload/v3 Private Headers */, + 0C8C12BB4D232D62947EE4247755FFC7 /* Copy src/core/ext/upbdefs-gen/envoy/config/rbac/v3 Private Headers */, + 9ED614D3D5C259DB9FAB446489D45E4B /* Copy src/core/ext/upbdefs-gen/envoy/config/metrics/v3 Private Headers */, + 257FD86E341AB6F97958E0B59A580411 /* Copy src/core/ext/upbdefs-gen/envoy/config/tap/v3 Private Headers */, + 3A46712E473E02DF372649EA66EEEBA4 /* Copy src/core/ext/upbdefs-gen/envoy/config/route/v3 Private Headers */, + 6EAA1E1EAD858FC1DD1D970FEB259EA4 /* Copy src/core/ext/upbdefs-gen/envoy/data/accesslog/v3 Private Headers */, + BEC19138F5D53E62E2330370216A8329 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3 Private Headers */, + CBE7D956DD367C2257FE3DC8AFB3E1A3 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3 Private Headers */, + 0B7C3B068B81F1D0A116C579B2F850B4 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3 Private Headers */, + BDE9E89B43AFDB1A355511FE73122BB5 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3 Private Headers */, + 8616C174886288B619592166C9888FB6 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3 Private Headers */, + 017682064E072882F1AFA6186B773481 /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3 Private Headers */, + F74962D3C9376211326821BF1F7D28FA /* Copy src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, + 5A2A3CF49F5D37DC2D87D013FEC20C2B /* Copy src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3 Private Headers */, + BB0C0E424468D8C9B63261300F3CC10A /* Copy src/core/ext/upbdefs-gen/envoy/config/trace/v3 Private Headers */, + 5AB8654E11F66990DFCA421ABCA03F4B /* Copy src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3 Private Headers */, + D57D0C95214210BF008DF0BE59688BDF /* Copy src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3 Private Headers */, + 6C1953F307EB729388CBC12931D1E2C9 /* Copy src/core/ext/upbdefs-gen/envoy/service/load_stats/v3 Private Headers */, + 633ACB171DF9E84B58CC70710EF6B65D /* Copy src/core/ext/upbdefs-gen/envoy/service/status/v3 Private Headers */, + D471A0719B8AF8D2B8C2294A2542AD5D /* Copy src/core/ext/upbdefs-gen/envoy/service/discovery/v3 Private Headers */, + 75BA3510BACDC3541535A02F6BDCFB94 /* Copy src/core/ext/upbdefs-gen/envoy/type/http/v3 Private Headers */, + 3A4EDD9C9D08016DA0D137177BDFB60F /* Copy src/core/ext/upbdefs-gen/envoy/type/metadata/v3 Private Headers */, + 4013EAB1E9D712EB4F4076B6A64682F0 /* Copy src/core/ext/upbdefs-gen/envoy/type/tracing/v3 Private Headers */, + 14D8B838F86079A9536E825628E91FFD /* Copy src/core/ext/upbdefs-gen/envoy/type/matcher/v3 Private Headers */, + 936C01A72FC6FECF095865A3B333E4EA /* Copy src/core/ext/upbdefs-gen/envoy/type/v3 Private Headers */, + 50A107D8C6795740B4A992F3242D2B15 /* Copy src/core/ext/upbdefs-gen/google/api/expr/v1alpha1 Private Headers */, + D06B53054CF727D86F5BD1D032CD0CCB /* Copy src/core/ext/upbdefs-gen/google/api Private Headers */, + BA604063DEDFC95E76FDEB82D382F55B /* Copy src/core/ext/upbdefs-gen/google/rpc Private Headers */, + 7FF391E32EF81ADE6795EA273C03FE35 /* Copy src/core/ext/upbdefs-gen/opencensus/proto/trace/v1 Private Headers */, + 1EEC63C929CB1ACA5FB3B52E745CAAE0 /* Copy src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1 Private Headers */, + 8CA3437B2A1F1459AAE8C69B21B3BE2D /* Copy src/core/ext/upbdefs-gen/google/protobuf Private Headers */, + E14B0E9BF51D2BC464A02D064A873C8E /* Copy src/core/ext/upbdefs-gen/validate Private Headers */, + 20796FC1E19DBD9DA2B7B574D4C06B09 /* Copy src/core/ext/upbdefs-gen/udpa/annotations Private Headers */, + 3F5799C23F98B1554745A1CEB8E5694B /* Copy src/core/ext/upbdefs-gen/xds/annotations/v3 Private Headers */, + 4AC959CAAC66CB6E8FB47F5C9A78FD7E /* Copy src/core/ext/upbdefs-gen/xds/core/v3 Private Headers */, + ABB17367EA7E0E5BF3EDBFA1103D20C6 /* Copy src/core/ext/upbdefs-gen/xds/type/matcher/v3 Private Headers */, + 0D7B521E95D8F91DA8B3D8B35045285C /* Copy src/core/ext/upbdefs-gen/xds/type/v3 Private Headers */, + 1A2599EF1AAAEA490B4A77BC755CB77B /* Copy src/core/ext/xds Private Headers */, + 0F726642B38AF76EDCEBDF2097EAA27D /* Copy src/core/lib/avl Private Headers */, + 162A23C7ACB8ECE714A07A445CD32CF7 /* Copy src/core/lib/address_utils Private Headers */, + E616DB5575B87970A9854470D7484A34 /* Copy src/core/lib/backoff Private Headers */, + 27838EEADB7498EF148BF57C381FEAC1 /* Copy src/core/lib/channel Private Headers */, + E0D7FC972A8E42068E73DD7FEE875B3D /* Copy src/core/lib/compression Private Headers */, + 26459BBDC0384506CD4452B75A4DBC12 /* Copy src/core/lib/config Private Headers */, + C2506DED9702F7C7604236E14655AA76 /* Copy src/core/lib/debug Private Headers */, + D58D8814263CB0CBFB787F9C89798792 /* Copy src/core/lib/event_engine/cf_engine Private Headers */, + 5EF9A267830F38846BA90BE949C75FA8 /* Copy src/core/lib/event_engine/extensions Private Headers */, + EBA30C5C2E865DFFA5656ABE88A17E58 /* Copy src/core/lib/event_engine/posix_engine Private Headers */, + 200BCDB5D698765725FBECE309AED31F /* Copy src/core/lib/event_engine/thready_event_engine Private Headers */, + CFBE13BE110392EC66B1ABC956ABFFF4 /* Copy src/core/lib/event_engine/thread_pool Private Headers */, + 9C14A12F0162919FF338038308FBCB63 /* Copy src/core/lib/event_engine Private Headers */, + C17A77C9D449CD4300F73008F05E4D99 /* Copy src/core/lib/event_engine/windows Private Headers */, + F4C089F42112980025D67C09509BB3D3 /* Copy src/core/lib/event_engine/work_queue Private Headers */, + 385EE07825B4932D4D98C4722369CCA6 /* Copy src/core/lib/experiments Private Headers */, + FF4E2626F202ADEBA1FC800A331AED7D /* Copy src/core/lib/gpr Private Headers */, + 5773F051D78EC67904E7AAA7C7A14B5B /* Copy src/core/lib/gprpp Private Headers */, + 11E86B8609CA552C393386AECE635284 /* Copy src/core/lib/handshaker Private Headers */, + 056B1A1F8D9643AB3537BB68D2A44D0B /* Copy src/core/lib/http Private Headers */, + 48DA3EB5A9C68D0849FE13CE89032959 /* Copy src/core/lib/iomgr/event_engine_shims Private Headers */, + DEDCEC3507A4B442ED8666BF57295942 /* Copy src/core/lib/iomgr Private Headers */, + 2F43707F73557CCE3DBDDAF14E17CA91 /* Copy src/core/lib/matchers Private Headers */, + 3767A199D25398F63262510265CEE493 /* Copy src/core/lib/json Private Headers */, + A5F972F0667B0B90E3113A48F4B51596 /* Copy src/core/lib/promise/detail Private Headers */, + 55CED78713ECF2695A42A429022E825D /* Copy src/core/lib/promise Private Headers */, + 6F40DAD5A3A8B0E1A8D98FFED76A5261 /* Copy src/core/lib/resource_quota Private Headers */, + 0F5050147D02F09B8B1D5D063FD162A2 /* Copy src/core/lib/security/authorization Private Headers */, + 8C26FF1E102545D1E601EADBA53D8155 /* Copy src/core/lib/security/context Private Headers */, + B4044576CD0296998D64E09C98E1DAF3 /* Copy src/core/lib/security/certificate_provider Private Headers */, + 3D6655480E829A88D4F62B6719637823 /* Copy src/core/lib/security/credentials/alts Private Headers */, + CD7C8AE2BFECEC9AAA47A4492C22204D /* Copy src/core/lib/security/credentials/composite Private Headers */, + FB5E198AF7C7739BC68D9FCC168182F3 /* Copy src/core/lib/security/credentials Private Headers */, + DC1986BA4AB7D09A57CB43A8D7460808 /* Copy src/core/lib/security/credentials/fake Private Headers */, + B461E7D024F09A3371A85D23A2DC771E /* Copy src/core/lib/security/credentials/google_default Private Headers */, + C3857752E3D243BDF78E2617D307E7FE /* Copy src/core/lib/security/credentials/iam Private Headers */, + 13B8C877AB3126098A1251F3DBBA7864 /* Copy src/core/lib/security/credentials/insecure Private Headers */, + 4B82592BF619B87BD480A9B057AED543 /* Copy src/core/lib/security/credentials/external Private Headers */, + 4D42D42DD609E6F9E371EED39D6C37C7 /* Copy src/core/lib/security/credentials/local Private Headers */, + 64D57092CCFAB3FE1FABF445301E2E53 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, + F1E38C0C5275E03C44DD0F19AE8E8CD9 /* Copy src/core/lib/security/credentials/plugin Private Headers */, + 11E6D96B99A44BA557A505F0DE6B4631 /* Copy src/core/lib/security/credentials/ssl Private Headers */, + DAC6AFA75B16662B9B544072FD90978E /* Copy src/core/lib/security/credentials/jwt Private Headers */, + EF4C7513A90BB146AB17475DAA80ECB0 /* Copy src/core/lib/security/credentials/xds Private Headers */, + 51122D4D4069F4FC255FA29D6A30FE0A /* Copy src/core/lib/security/security_connector/alts Private Headers */, + D044D80115095A770CB94779D06E3964 /* Copy src/core/lib/security/security_connector/fake Private Headers */, + CB022D1441C632B4005619C706710B39 /* Copy src/core/lib/security/security_connector/insecure Private Headers */, + D057CC037D551B4337FCB2B01FA63708 /* Copy src/core/lib/security/credentials/tls Private Headers */, + 324EC1F4E33116296838C21A07FD6ECD /* Copy src/core/lib/security/security_connector/local Private Headers */, + E9AD52041E0EDAF82375737C61C6FC99 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, + F1AF2FD6B106454F53585A752C8D2FEB /* Copy src/core/lib/security/security_connector/tls Private Headers */, + 5F19034D7DC835F42C63733292B173B2 /* Copy src/core/lib/security/security_connector Private Headers */, + BB2A899C21716F8DF2660C140D5A657C /* Copy src/core/lib/security/util Private Headers */, + D9FA9F26F37487D10A02F5F180651349 /* Copy src/core/lib/security/transport Private Headers */, + 9A06676FFC6E78D9285F399BFB7C3609 /* Copy src/core/lib/slice Private Headers */, + 88780CAA5D401518E6FF2E88EF30D951 /* Copy src/core/lib/surface Private Headers */, + EE29B6A7ED7A62D9FBCC6AE8CD399EDB /* Copy src/core/lib/uri Private Headers */, + 2F86C1B9D3C729ECAAE0E716C5403A7D /* Copy src/core/lib/transport Private Headers */, + 1528A102B9D50249FEA45100BA9EFFA5 /* Copy src/core/load_balancing/grpclb Private Headers */, + 417065B76999103CEF9685CB46EB9EF6 /* Copy src/core/load_balancing/outlier_detection Private Headers */, + 745CB49CA204D30B1CCC131EED73ECAE /* Copy src/core/load_balancing/pick_first Private Headers */, + 9600760AF8B21E05F89B2D07EDEC0FC2 /* Copy src/core/load_balancing/ring_hash Private Headers */, + 806192B8677026E588072E8A2819B021 /* Copy src/core/load_balancing/weighted_round_robin Private Headers */, + 3D04B716A0C8BC194289393C91249EA3 /* Copy src/core/load_balancing Private Headers */, + 2C9AD9B57792256B3845F05AD4C4446F /* Copy src/core/load_balancing/xds Private Headers */, + 756A0527283E4584D76895D40A3C0F05 /* Copy src/core/resolver/dns Private Headers */, + 39FBB477991209E4EFAFBB3E7C9C6E6F /* Copy src/core/resolver/dns/c_ares Private Headers */, + DCFC7C70F645175C39228B690D9ABBBD /* Copy src/core/resolver/dns/native Private Headers */, + 98EF2EDC28BEF3855C34C2F2C1CE7B1A /* Copy src/core/resolver/fake Private Headers */, + C206C51552FB08D415335FA012A0447B /* Copy src/core/resolver/dns/event_engine Private Headers */, + 7E15ED629990033CB283429DAEE00FE8 /* Copy src/core/resolver Private Headers */, + 09A8DAA96A055B73524F5159C3A9D9E7 /* Copy src/core/resolver/xds Private Headers */, + BDE3204CDA0ADEA24D10F4C7F5DB9DF1 /* Copy src/core/tsi/alts/crypt Private Headers */, + F5608E7A036AB70560F9DDE71308979D /* Copy src/core/service_config Private Headers */, + 55440B8F558B64F72A0B745C9F2AD04F /* Copy src/core/tsi/alts/frame_protector Private Headers */, + 3C7259419EE7370876CC2746C1F87960 /* Copy src/core/tsi/alts/handshaker Private Headers */, + 70574ABC7563D31542756F14C8515F01 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, + E0871124E485B6F5EFD90861F590966D /* Copy src/core/tsi/ssl/key_logging Private Headers */, + A965EBD3EE5719740A689477B11ECD70 /* Copy src/core/tsi/ssl/session_cache Private Headers */, + 8B0025D38585CF8FD561E9E285900633 /* Copy src/core/tsi Private Headers */, + 4EB7B48D847F4A2BDF3A5417ACCF3D71 /* Copy third_party/re2/re2 Private Headers */, + 673EAAB6805A6F28EB2821CA5413C90C /* Copy third_party/upb/upb/base/internal Private Headers */, + 58A3DD0F373E55C1B8179858D4FED192 /* Copy third_party/re2/util Private Headers */, + B5D362064F80A2D79A5BE7D9086E24FE /* Copy third_party/upb/upb Private Headers */, + DB4424AB3D6D76C9366E3B4A7E50E919 /* Copy third_party/upb/upb/base Private Headers */, + 59669A2B7210208F411779464E2A54CB /* Copy third_party/upb/upb/hash Private Headers */, + 17DF309E87571F31D145CBEBD712FEF1 /* Copy third_party/upb/upb/json Private Headers */, + C2D544706BDF45AB08D047562EEE5C4F /* Copy third_party/upb/upb/lex Private Headers */, + 7F0846F47851EA62B28F964472B404A8 /* Copy third_party/upb/upb/mem/internal Private Headers */, + 53D8C7E38998B40495276F6CF62D5CE2 /* Copy third_party/upb/upb/mem Private Headers */, + D628CE8419D6E9BD9652C3C1E2E8E949 /* Copy third_party/upb/upb/message/internal Private Headers */, + B6C02F75529288FAFFAB15871BF991FB /* Copy third_party/upb/upb/message Private Headers */, + A6A1A5125DE7B32605A487E571924AA5 /* Copy third_party/upb/upb/mini_descriptor/internal Private Headers */, + D781955A751F13C459EA5B2BAFA4D455 /* Copy third_party/upb/upb/mini_descriptor Private Headers */, + C610FE5C1C4D0212490D57D13E5E60CB /* Copy third_party/upb/upb/mini_table/internal Private Headers */, + D93EB1AA128D47938CEEC5A571093A67 /* Copy third_party/upb/upb/mini_table Private Headers */, + FB0C40E3B211B13A4F4E685855BF8832 /* Copy third_party/upb/upb/port Private Headers */, + 151921B958E8DC850C02D1BFF1A8954C /* Copy third_party/upb/upb/reflection/internal Private Headers */, + 0D11DCDE6890515EC96DFA495E187233 /* Copy third_party/upb/upb/text Private Headers */, + 1CD010F3B431020E9BB8CA24BC1A5F0A /* Copy third_party/upb/upb/reflection Private Headers */, + AA013EC410EB57DBC4EC90D98E365A89 /* Copy third_party/upb/upb/wire/internal Private Headers */, + AC643B92D1C5D794791CCF9F220617DA /* Copy third_party/utf8_range Private Headers */, + 0D635D3D8EA0862EF4787284CDABFFA6 /* Copy third_party/xxhash Private Headers */, + 265732BCF97D643D45E0C2140D4DD047 /* Copy third_party/upb/upb/wire Private Headers */, + BBC5253605BC9C2670EE39AB88413A52 /* Copy third_party/zlib Private Headers */, + CEA06B0CF4C22C057B8D8C0D40773216 /* Copy event_engine/internal Public Headers */, + FD1996DF9D6134FD17A978D06B1011EF /* Copy event_engine Public Headers */, + F44826B69B5571AB8850AC150F1FEC66 /* Copy impl/codegen Public Headers */, + BD03BBD428F7FEE58E2C2AC4F00529A1 /* Copy impl Public Headers */, + 16F71D447818371977F5077B21F67755 /* Copy . Public Headers */, + 7367B3450865769FA684C8D614ECCA15 /* Copy support Public Headers */, + EED24A4E76EE685DB6F6DB392F41CDE9 /* Sources */, + D168FCE7F5D87B0A55BCBAB50AA4462E /* Frameworks */, + F810F8F5737B04AB901FE6CDB311D061 /* Resources */, + 0B335DC2F9269F16BA26A25DA6670BC4 /* Create Symlinks to Header Folders */, ); buildRules = ( ); dependencies = ( - FF031C165A812C24C309DD1E3568A189 /* PBXTargetDependency */, - 55F4A2498BE78776740220D14FBB337C /* PBXTargetDependency */, - 9A4E91C9D3C87A2EB94A995DB16D3113 /* PBXTargetDependency */, + D4E8513DAFECA5DCBA7F67DBC75BB7A3 /* PBXTargetDependency */, + 2080D00B7A7128A936D62375277CE744 /* PBXTargetDependency */, + 43C51D674615A3A7210B0D6938FDC4C6 /* PBXTargetDependency */, ); name = "gRPC-Core"; productName = grpc; @@ -38417,15 +39513,15 @@ buildRules = ( ); dependencies = ( - 92194D58CD9D886BA968218BCDF796C1 /* PBXTargetDependency */, - 84063DA7D51611583AF28C495FE59747 /* PBXTargetDependency */, - 74D463781B2483F18F94D5E6BC75FB00 /* PBXTargetDependency */, - A29708D19C5FF41A7DE27EA8FF72A53E /* PBXTargetDependency */, - 6F43DA6733FA9CBDB48A12D6BAF203A4 /* PBXTargetDependency */, - 4975836239A74C152DE8AE1A24572886 /* PBXTargetDependency */, - 06422BFF9B183C0D285635130BC68E92 /* PBXTargetDependency */, - 99901A52928FD0750E82E81CB1697322 /* PBXTargetDependency */, - C7948859CBF4720BF618F417AB47E9F7 /* PBXTargetDependency */, + 927E896DD4FE4C66E8DAAD222B35894D /* PBXTargetDependency */, + 71DEA34F71E64CC277BDCE0F8C4231AA /* PBXTargetDependency */, + 75A0AF7A0142CAB10BA64E00D2C4708A /* PBXTargetDependency */, + 9C23B4074C80663B47B678089EA2AFA7 /* PBXTargetDependency */, + 83CD765EDA673EE96A340F84003F6B63 /* PBXTargetDependency */, + 11C12CC999AA40495A0080783C6A16C3 /* PBXTargetDependency */, + 261F44F235AFC6DCC66498D74542BA3D /* PBXTargetDependency */, + 56A7C78914A7F821CF5D0EFFB85A834E /* PBXTargetDependency */, + 67ACE43DDCCE5DDA32D049E845F77F77 /* PBXTargetDependency */, ); name = FirebaseCrashlytics; productName = FirebaseCrashlytics; @@ -38434,11 +39530,11 @@ }; 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 6E4159B6D6935B6FE6505121A758EF83 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; + buildConfigurationList = DFFC3A607B60A2E8F2A48B6792B3EEF4 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; buildPhases = ( - E46C75F7077556BA4460B2C29EBBDE79 /* Sources */, - C1480DF1DF4B18D9478172B9A8C70DD8 /* Frameworks */, - FAE0BF53C2E9DC0AE79A5FDD494B58EB /* Resources */, + 6AF6C7EC8B963EFC1C98306F88473445 /* Sources */, + 06CF1F55A4F92D3DF4FEC57D36700B71 /* Frameworks */, + DA78D8339ABB11A16250AA1340E56688 /* Resources */, ); buildRules = ( ); @@ -38451,11 +39547,11 @@ }; 591296C07DD97B6B624758F2DAF981DE /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = C716E5A837EDB58C6997D6901FAD0B93 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy" */; + buildConfigurationList = 36A34F9382BBF0A441D7FBB96C35EF73 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy" */; buildPhases = ( - 00998A17CAA1C806B66A7CF9EA08BB8F /* Sources */, - F31132FC1B413C791C7580F69F30CC7F /* Frameworks */, - 3D33E839DD8B970C6B4D9C0298D81F99 /* Resources */, + DEA9DE5DFFE0EA7C90E39658A0CE6D26 /* Sources */, + 9E80EC1B919F594B8CCCE7F636E635D3 /* Frameworks */, + 16391262F6C6D1B090E19AE6A368F70B /* Resources */, ); buildRules = ( ); @@ -38468,20 +39564,20 @@ }; 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D746CD05176BA0C4F40365BBC7692CC /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; + buildConfigurationList = 39B7F3E928F3D30C4E68FDC2E4893701 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; buildPhases = ( - CEA822D3EFBB181FABFE145C313D6206 /* Headers */, - F9FCA99EFE1BB812E0973FA2BA854E06 /* Sources */, - 84F3EA8D964983C03A7968AFD65A941A /* Frameworks */, - D38E17323DA64D4D19BF5A9C68D64D05 /* Resources */, + B47A77C91AD2671E3DC947D68A3C9AC6 /* Headers */, + FF85424237215CC67FC525AE2FB4938D /* Sources */, + 2EE64D126AD317FB9D1AB6AEA0D8D883 /* Frameworks */, + AEB2E0AC78BB93636D6B6113CC646DEC /* Resources */, ); buildRules = ( ); dependencies = ( - 3319C2AFC3C6F5002E91791ACAA90955 /* PBXTargetDependency */, - 3B2A94372DDD64A5F19D60D45E4FA3B4 /* PBXTargetDependency */, - 575BB1AEC6A47B124B3C3DCCD54247B4 /* PBXTargetDependency */, - 109454F3EFAF7A4667E89CB633449A4C /* PBXTargetDependency */, + B22F8FCF26754C5681F4F6D8D1B5C607 /* PBXTargetDependency */, + EA117D08216E1C8F93DC734F73D8BA08 /* PBXTargetDependency */, + D7350F30667B5DB58D979843516C268E /* PBXTargetDependency */, + D0ECCE9F8046C9B933B5D917A4EE113E /* PBXTargetDependency */, ); name = GoogleDataTransport; productName = GoogleDataTransport; @@ -38490,11 +39586,11 @@ }; 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = C3EAB96814A66865C94E6DC00D190791 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; + buildConfigurationList = D35BE0BE216F31BBC9DA85E7208B0928 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; buildPhases = ( - EBD964237DF7E653EC06FCB9F90B524A /* Sources */, - C6645C3C95DE2EF20591BE1FF717E56B /* Frameworks */, - 740BB3D48054BDCFEAD5DF58C7D9FAF1 /* Resources */, + AD65D5F8C1A9DA2A4BAD4104E7DFDBEA /* Sources */, + 9E87C585011C28649B6C0E5F88F4BA0B /* Frameworks */, + B05EF94B3C13A8827FEC37E429BDC9F5 /* Resources */, ); buildRules = ( ); @@ -38517,12 +39613,12 @@ buildRules = ( ); dependencies = ( - 1BF0CE67C1BDFD5C9FF47A680D2DB366 /* PBXTargetDependency */, - E333A39A44E238F69AFE0353F54550B6 /* PBXTargetDependency */, - 9561FAF5C876EDCA4A6ED2134C3B247A /* PBXTargetDependency */, - 82FA2DD7956E75368F93ADC39F9DB9C8 /* PBXTargetDependency */, - 6B12B159BD3A5C7E11E45F74FCB1645F /* PBXTargetDependency */, - 9601219547C4AC400FB0985E80DC342A /* PBXTargetDependency */, + A18000430D209480AEACE5888A2E342E /* PBXTargetDependency */, + DCA8FCC3EE15AB994FE35A05DE37A7F6 /* PBXTargetDependency */, + A95F5EC55B7628A780A7DFDD0A308C36 /* PBXTargetDependency */, + 098352967444C5ED6444A9483D677E28 /* PBXTargetDependency */, + 15FFBB6530941B81ED2209D188962F72 /* PBXTargetDependency */, + 889AB5CB5CAE4677013DC8E394BA135F /* PBXTargetDependency */, ); name = FirebaseAuth; productName = FirebaseAuth; @@ -38531,51 +39627,51 @@ }; 73CDC3D182DB953135F62609681B443D /* abseil */ = { isa = PBXNativeTarget; - buildConfigurationList = B4836BB4E61099AD8C44BD897C104B32 /* Build configuration list for PBXNativeTarget "abseil" */; + buildConfigurationList = 878328E761EFCD65EF30164893C71C80 /* Build configuration list for PBXNativeTarget "abseil" */; buildPhases = ( - C43E3A7759DF041B1F623330F8D4DDE1 /* Headers */, - 6C26A3689651C7CDB33AD9BF2C07D96B /* Copy algorithm Public Headers */, - F1501EE504FBED6DAE0C6EAB52A041DB /* Copy base Public Headers */, - F8F17881B031E5B2A37E22F2D76DD770 /* Copy cleanup Public Headers */, - 41B18693AD66C719E0488C29DFC2DC69 /* Copy cleanup/internal Public Headers */, - BA52A71F084A43F6662B93079D1C3C00 /* Copy base/internal Public Headers */, - 31CC5716B443BC340FA8214B575241B5 /* Copy container Public Headers */, - B88BEED5748EF26A9B139E67F5BB887D /* Copy crc Public Headers */, - C5B20BF64D83076C1B665A06DDC0139F /* Copy container/internal Public Headers */, - A504E1D0099F7F4925FC4298DA6D95CC /* Copy crc/internal Public Headers */, - D221C547C99B3B76926E0572483FE34E /* Copy debugging/internal Public Headers */, - 456E64FFE4A3743B10691384A5CC1D98 /* Copy debugging Public Headers */, - 617F6DB77D3942BEC1D3A609BAD3E779 /* Copy flags/internal Public Headers */, - EBF05A4DED02C08C824B4BC48F9C5A0E /* Copy flags Public Headers */, - C44C91BA3500C7214E3FCD4FC6485044 /* Copy functional Public Headers */, - 9FB859C64A5BC0BE297158FEF8FC5C7B /* Copy hash Public Headers */, - 6B89328CA318274DCE0FB4E6BE6AF2E1 /* Copy functional/internal Public Headers */, - 051713E449FAE76E994388515AB24EC6 /* Copy memory Public Headers */, - A5B98E728EC150112AD7A4D03D920DB6 /* Copy meta Public Headers */, - 9569DADD6A000693F6B33B010426CAF8 /* Copy hash/internal Public Headers */, - 50BD34C5346D1EA07942DC556892DF39 /* Copy numeric Public Headers */, - 34BD9D5795C2E645A66772EF6FD05A7E /* Copy numeric/internal Public Headers */, - AA446DBFC1B9794B0EFF4A7248B5477C /* Copy profiling/internal Public Headers */, - 20E91CB5F5A291147C1AE471EA2EECBD /* Copy random/internal Public Headers */, - 99334DC83CA7E85163531677D9C16E7C /* Copy random Public Headers */, - D0141AF4B477E0455B455173BE0BF6EC /* Copy status/internal Public Headers */, - FA1D34E8DEFEB0FC4F892AED55E37FB0 /* Copy status Public Headers */, - 1D02E44CE2E4AE42BDBD6E0F519E978F /* Copy strings/internal/str_format Public Headers */, - 49688BC9E2D6EB01CDC5FDAF2BDCE168 /* Copy strings/internal Public Headers */, - A78A8452022E274A7405ABCE2ED9A983 /* Copy strings Public Headers */, - 0952248496CB6A5C85878244160D8900 /* Copy synchronization/internal Public Headers */, - 6030CDC5D58107803F799EE8F8B5B0A9 /* Copy synchronization Public Headers */, - 42EE160CB103684F30AAE252825790AD /* Copy time/internal/cctz/include/cctz Public Headers */, - 1A1171D50E0183FA285AD6119916906B /* Copy time/internal/cctz/src Public Headers */, - A29F784E201CC8D12D4DA1D230E82301 /* Copy time/internal Public Headers */, - A58839F208D1334B5FBBAC9268AAC357 /* Copy time Public Headers */, - 97D37A4928441B244BA7AEE11BCD63F1 /* Copy types/internal Public Headers */, - A0AAC72AE601C75A688FD3596AB9329A /* Copy utility Public Headers */, - A342F2ECCF83C4B446593FFCD7EC6EB8 /* Copy types Public Headers */, - F732E0AEB12D1C64AE7F108F25299D58 /* Sources */, - 787BAE136069CB58AC70BDC255F60DA4 /* Frameworks */, - 28FCA1E4B5A53D927B1FECC659E33EAB /* Resources */, - F850FFC9FA6600B08F8374B57E9D09B8 /* Create Symlinks to Header Folders */, + 6821F288DD8EA699F444F3D56D9A152B /* Headers */, + A1870BBD247C6D02A79E641FE160BDB5 /* Copy algorithm Public Headers */, + C1E21AFD579B0AB5C30A12DDC295AE6F /* Copy base Public Headers */, + 313B24933739C02A19A78061321A301D /* Copy cleanup Public Headers */, + 49A62C984C571B34A32085F2ACDA5025 /* Copy cleanup/internal Public Headers */, + DF5F680EF042208750FEC461AAEB4E75 /* Copy base/internal Public Headers */, + 5D7679C37F4E2AED2C1BA25ADE63DA28 /* Copy container Public Headers */, + 57B45F8A6AC8584211DE3A53BF7627AA /* Copy crc Public Headers */, + 9DF4CBDEF02B20FBB3FDB7104381C820 /* Copy container/internal Public Headers */, + 108A33FFCC575E12179BE596357CCD99 /* Copy crc/internal Public Headers */, + E57CD14332F977973C3362376B89CC32 /* Copy debugging/internal Public Headers */, + 793A61AAE4F1400887FF01005D9D372F /* Copy debugging Public Headers */, + 40EAC51B18BD9F0D3922B32ACBBD7932 /* Copy flags/internal Public Headers */, + 8923B572689B96A1C1C0DC67435BABF3 /* Copy flags Public Headers */, + 6A8ED4AC22643F2DAFBECA57998846EE /* Copy functional Public Headers */, + 4AD5D90B5E67D804364AC794EE06E19E /* Copy hash Public Headers */, + 3B7A7110CCCC44D1A22D8D6696BD8E7F /* Copy functional/internal Public Headers */, + 0ADEDFB56A676559FB8AD471EC6CBFED /* Copy memory Public Headers */, + 49FDC9798BE49E3CA841C9ACD71B6E8A /* Copy meta Public Headers */, + 5772054BB8C45C1FB8CE6C0C7DD64C67 /* Copy hash/internal Public Headers */, + D387B8B8E9535781479E258048DA1115 /* Copy numeric Public Headers */, + F58CCBE2D51E4295EF586D2154C74DC3 /* Copy numeric/internal Public Headers */, + E184FB095B615AAB3EC9ABF107623D9D /* Copy profiling/internal Public Headers */, + 2FF09315DED635A8E009A498CB9B883E /* Copy random/internal Public Headers */, + D10842E863BA988BC16E3820ADCB1054 /* Copy random Public Headers */, + 136309B79A80D534ECCA67C1F904272C /* Copy status/internal Public Headers */, + DEB44BAF5C2C79107CBC9E458E97266F /* Copy status Public Headers */, + 55E36114E03B1946769106026831433D /* Copy strings/internal/str_format Public Headers */, + 4D97FDC21193293959B488595833AEB9 /* Copy strings/internal Public Headers */, + C31102CE3E81F0CF7DB002ABD3C9EE80 /* Copy strings Public Headers */, + 1C9DE79A378FC539A1C9590A103AE9FA /* Copy synchronization/internal Public Headers */, + F9FF2354A09559320B1DF5687A20E23A /* Copy synchronization Public Headers */, + 6145ECF7EED02FE03760A415B1DC30D3 /* Copy time/internal/cctz/include/cctz Public Headers */, + 49FEF4DA3B48F571636EBD06307FD027 /* Copy time/internal/cctz/src Public Headers */, + D87DDFEE0C85C98BF4C8221251752E70 /* Copy time/internal Public Headers */, + EEF89F02EB000C6C08273FE51E6E1B11 /* Copy time Public Headers */, + FB2CD24639EA363463593D944646E666 /* Copy types/internal Public Headers */, + DC1DF2FD1FCAF1567F6640565E4C21E4 /* Copy utility Public Headers */, + 843688FB1C26E46954A5FFCA1FCB3C3B /* Copy types Public Headers */, + 7B7C3D18F35715C9DCBCB1CBCD548B97 /* Sources */, + E55B3CA1E99D1E8FF2C5AEFE1CEF0F42 /* Frameworks */, + D101201F7043E4ADB47CEEF36F8DDF1A /* Resources */, + 42F5D32F33B5EDC2768B9E816A32D4E6 /* Create Symlinks to Header Folders */, ); buildRules = ( ); @@ -38588,11 +39684,11 @@ }; 86CFB548AF424CFBA176390BF5EDCC39 /* gRPC-Core-grpc */ = { isa = PBXNativeTarget; - buildConfigurationList = 1E6BFE4602DABB589E48C3AFF0020381 /* Build configuration list for PBXNativeTarget "gRPC-Core-grpc" */; + buildConfigurationList = F91130073550F9A5F604F45D45B54869 /* Build configuration list for PBXNativeTarget "gRPC-Core-grpc" */; buildPhases = ( - AAB7C06498C0280EC0259113DC4E13A4 /* Sources */, - F7099BFC32BDAFB23A2EA97504B4C8C6 /* Frameworks */, - B9F57543ED9E76B2618A3CF3B680043F /* Resources */, + C0E20791CBC664CCF99D84CC63BF1821 /* Sources */, + B7C188EBE49BC68F4567725E1BADF242 /* Frameworks */, + E3F214097A1CD1FF0BF2D74B11D79050 /* Resources */, ); buildRules = ( ); @@ -38605,20 +39701,20 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = 7BB931C9F0B1040F1E63A0A78471B806 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = B5869F5C3534DF98085A296972142757 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 892B6BFFE54673422B902A4B941E31E3 /* Headers */, - E670F429523E9792AC37B5E450E09A6E /* Sources */, - 1BEBD802CC790D962F3E730182708330 /* Frameworks */, - 60D53D87A27E55685F2D7A3CB89D4B39 /* Resources */, + 6F917A04781A145F22DC37B55733D6A0 /* Headers */, + BAEFC897B12D1CF270CFC0AD9B5CCBF5 /* Sources */, + 18C43F1E6AE121E326875EEA603DB8F8 /* Frameworks */, + 761EEECAFD041498BCD0F552702D91E2 /* Resources */, ); buildRules = ( ); dependencies = ( - 536D5D0D9D2FE69ACE998BF7941DAC5C /* PBXTargetDependency */, - 6634DC029F637A9F774A8BC9054A2550 /* PBXTargetDependency */, - B9FE998A440D22D5ABD5CF76F73D172F /* PBXTargetDependency */, - 3820DCC7F881A5D96918BCAA8AB7FE17 /* PBXTargetDependency */, + C556117ECB730040C9AE07D69C9A4753 /* PBXTargetDependency */, + AEE6A21CA84A37FAE0F149E8749B5DA4 /* PBXTargetDependency */, + 9EBB9FD63B859D771D08478B329C6A52 /* PBXTargetDependency */, + B1A40E55A392CBC85672F3A7B1DB4FA8 /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; @@ -38627,11 +39723,11 @@ }; 8AE1E2A4B497E543C01E68497F7C0901 /* leveldb-library-leveldb_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 618CFC3F0B9E3F14535AACCDF80984FE /* Build configuration list for PBXNativeTarget "leveldb-library-leveldb_Privacy" */; + buildConfigurationList = E97C799854E4510C7F41D85FE2CE3820 /* Build configuration list for PBXNativeTarget "leveldb-library-leveldb_Privacy" */; buildPhases = ( - 5BC5AF739C415F92B6CE433BDAC84B46 /* Sources */, - 958C3558A32E49CE44DEA383C5B3A60D /* Frameworks */, - B8F700CC6B6127F506D6ACFF8D04E2EA /* Resources */, + 1A16EA96A09C69A17714A102F973F536 /* Sources */, + 723701361AF546105634F9C2E2FF3C5C /* Frameworks */, + 7E059FFBF541F44740F2D84B835DD495 /* Resources */, ); buildRules = ( ); @@ -38644,18 +39740,18 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 1B6BDF0C556B53C4C527485490C917D3 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = A4827C4FB21C9376518CF95CD637F915 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 3947AAF586519ABE3B308CF4F86305C9 /* Headers */, - 0E32A9FABC185748F9BCC13579A05724 /* Sources */, - 3C20CB3B9566CA044C1B2830880BFC03 /* Frameworks */, - A66525A279F360DF13AB1F552E218F5A /* Resources */, + 9B3E68E8B7F1DD4D513809D413BA5F0B /* Headers */, + B47352B388D6A5000513C283327D3A24 /* Sources */, + F081A621A93E18D86C851419CD458AF6 /* Frameworks */, + 38F7C799C9D355B992C56F710A0D475B /* Resources */, ); buildRules = ( ); dependencies = ( - 427261E97ED6250FF74673ADC99C227E /* PBXTargetDependency */, - 17186E45B86AF497E3C40EBCF5EDE191 /* PBXTargetDependency */, + CB18986C421975195F01B4785EB168DB /* PBXTargetDependency */, + 3F3B494BB415E03F7F2371887461467C /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -38664,17 +39760,17 @@ }; 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */ = { isa = PBXNativeTarget; - buildConfigurationList = 8B23839AD7AD313FDF165993887AC268 /* Build configuration list for PBXNativeTarget "leveldb-library" */; + buildConfigurationList = 81DAFA8373DF6800F841332675A55D7B /* Build configuration list for PBXNativeTarget "leveldb-library" */; buildPhases = ( - A388BBF3AB86E92A16FEFECFA92E8ADB /* Headers */, - EEF400230C7C170D1572ACA9EBF42B41 /* Sources */, - 77FC0B81168A6BC6BAF7FABE40FD2F14 /* Frameworks */, - FDFDEDD0169202794DFD589F1014B0C6 /* Resources */, + 171540CA6FD085BB157C9B2EFEEF2710 /* Headers */, + 0CA7C1F75DB8D170C711758A4AAEE4C9 /* Sources */, + B7D79975DCD52FB20E7A7BF031D8E639 /* Frameworks */, + 56F94DAE72CD0EFB5BB709D9E1CD9CBF /* Resources */, ); buildRules = ( ); dependencies = ( - 72F8CBCEC924B28EAB614CAC4D3B5D2F /* PBXTargetDependency */, + 729FB28170CCC38DB80CA3F625971F92 /* PBXTargetDependency */, ); name = "leveldb-library"; productName = leveldb; @@ -38683,12 +39779,12 @@ }; 94706DD5BBE215339DF893D4434E1084 /* FirebaseSharedSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = E413DDE0F4720CEC033CEF79B125D79B /* Build configuration list for PBXNativeTarget "FirebaseSharedSwift" */; + buildConfigurationList = 28014C6FA8E254FB0950A9853409F842 /* Build configuration list for PBXNativeTarget "FirebaseSharedSwift" */; buildPhases = ( - 4B3EC1F1B6B89DFDE51995AA34BBAD20 /* Headers */, - 0E38D61FCDE15253E12D20B855C56D72 /* Sources */, - 0D5772BF624060A9424C5BFE11249A09 /* Frameworks */, - 302EF792E61CAD579AC9276C38AFB447 /* Resources */, + 97A28D5A24695F55E26A175BC5E2D670 /* Headers */, + 2C174B4877E7B042CCB95BE9AE65BB4A /* Sources */, + 684ED25EA32B5EE2270AFF247AFA2D41 /* Frameworks */, + 42AE97509D08C7D1879D1563773BF75B /* Resources */, ); buildRules = ( ); @@ -38701,12 +39797,12 @@ }; 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */ = { isa = PBXNativeTarget; - buildConfigurationList = 4F78335F1BD496C33935613B5DC77833 /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */; + buildConfigurationList = 4EAC678297DB4F405BDA0DF708080E89 /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */; buildPhases = ( - 7743E9FF10A6E75D4370D2833988D269 /* Headers */, - 282EC712F9103E502129A2089E8B860D /* Sources */, - 0A780B232ED38BE8C48C99BFDFC32FDE /* Frameworks */, - 0EC193A04EE0AA05807362308055DC78 /* Resources */, + 81E62CECA9C145BBDA2A69ED1315AD95 /* Headers */, + FF059D39F73A4EF25504854FBB1DAF99 /* Sources */, + 4345117AEAF4F86B2EEA0CB8505CBA71 /* Frameworks */, + 129D5D4C71EE9B659D971B1E57785EF7 /* Resources */, ); buildRules = ( ); @@ -38719,11 +39815,11 @@ }; 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = 65067A5A94D2628EA35EDDFAF3E75227 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; + buildConfigurationList = 74F29AE2C38FC6934406AFED895E246C /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */; buildPhases = ( - 8325CF60D01F84587D1B25FFE5945282 /* Sources */, - DD286CCFE153BE46F3DABBE41E996CDC /* Frameworks */, - 199C32832A7C1C555B26340B2E23E5E0 /* Resources */, + AF492FB7064154BC9174D014C8862126 /* Sources */, + 1472BA15E4660E70306C761BE9EBD26B /* Frameworks */, + 01B9D9E88BAF1068E90FA8190A547F58 /* Resources */, ); buildRules = ( ); @@ -38736,11 +39832,11 @@ }; 9C4575D64B2B6264CF6AB60FB03302AA /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 225DBB9B60BCFFFF8DAC8D389EA8B03D /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension-FirebaseCoreExtension_Privacy" */; + buildConfigurationList = 79DC7B17D66B99C870A5D9DB1606EDED /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension-FirebaseCoreExtension_Privacy" */; buildPhases = ( - D498C096C8FBD3CD18C3FE858160DE11 /* Sources */, - 1319EA1AD3115C001FDAC900FD174997 /* Frameworks */, - B512E1C3C86E396E04E3CAF93128A744 /* Resources */, + 2D75C0064B14ACEE7969536EFE974C00 /* Sources */, + 93F1E5C9796AE2D93F5FBED0E0D132A8 /* Frameworks */, + 98FD70C1F7904C716DFC4381300821E2 /* Resources */, ); buildRules = ( ); @@ -38771,18 +39867,18 @@ }; A979F9D3632CD5F2F7518F9A362CBAE3 /* PromisesSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 914750B209C55CC1897ED1F3AF7AD65A /* Build configuration list for PBXNativeTarget "PromisesSwift" */; + buildConfigurationList = A89E4FDCEA75EAA11484049CD39F4503 /* Build configuration list for PBXNativeTarget "PromisesSwift" */; buildPhases = ( - 3051C8CBA4039B7FF117E1D49961796B /* Headers */, - 50826211F9B6714068EFE5B634F08903 /* Sources */, - AF6816183D95D73983092996BD96EA7E /* Frameworks */, - 26E9D586E14720CDC9335E9D9BA852A6 /* Resources */, + 54FBFB309E6AC28C508ABC096C2A55C0 /* Headers */, + 60932B1554F19F2EE94EB01E97690E60 /* Sources */, + 26D18C046E5056AAEDC8A470536EB7F4 /* Frameworks */, + C8887BEC5DABF515FE29AE4F8CA74E99 /* Resources */, ); buildRules = ( ); dependencies = ( - CC8A0B1153DC49FB606CF0869C7286BC /* PBXTargetDependency */, - 51B1AE1C4824C5B520BC1187BBC21279 /* PBXTargetDependency */, + 15A606BC1C9F56F0D1E19E4C5EF49F63 /* PBXTargetDependency */, + 75656B7FA28B06EA15C1F809FF2B808C /* PBXTargetDependency */, ); name = PromisesSwift; productName = Promises; @@ -38791,11 +39887,11 @@ }; BE6D8CBE8245C88A1146DE42D80A7531 /* FirebaseFirestore-FirebaseFirestore_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 9990EDF808300605FA20E9FEA0CEE704 /* Build configuration list for PBXNativeTarget "FirebaseFirestore-FirebaseFirestore_Privacy" */; + buildConfigurationList = 3070AEE9726A8B014F8550DA45CCD5EF /* Build configuration list for PBXNativeTarget "FirebaseFirestore-FirebaseFirestore_Privacy" */; buildPhases = ( - 332C0C8179203B87AC6CAED0007745B8 /* Sources */, - 8DD833F82D4442C919B69BBEF5FFDEB9 /* Frameworks */, - 89E480DF3248FC90425A33162BF178AA /* Resources */, + AD09490451174431B4604689E15E19E1 /* Sources */, + A3D98E7D9D6F9399A39CF592757DCF84 /* Frameworks */, + BF15CDC12EAF116A2C4925E9DC683555 /* Resources */, ); buildRules = ( ); @@ -38808,11 +39904,11 @@ }; BF61C1A657C58D1D0C1169ACE0A38B81 /* gRPC-C++-grpcpp */ = { isa = PBXNativeTarget; - buildConfigurationList = 324971F9B18AF13D35420E5EF768975D /* Build configuration list for PBXNativeTarget "gRPC-C++-grpcpp" */; + buildConfigurationList = D288430B52743D97CD73E2E1A53C16CD /* Build configuration list for PBXNativeTarget "gRPC-C++-grpcpp" */; buildPhases = ( - 7BA52856F3C232F058B5856EF9F976C7 /* Sources */, - 59E9DB8BB8A7027E212A94E6960A6DBD /* Frameworks */, - A1E4A5CDBC1BD89A970DD4E55B420E0C /* Resources */, + D092341240D91E5FDE5F30F67809BC6F /* Sources */, + 0C6F9C5FC46ACBBC370D16D02BF34823 /* Frameworks */, + 7014CB380B675C98C3E600B2574DA6CD /* Resources */, ); buildRules = ( ); @@ -38825,11 +39921,11 @@ }; D0583478A3CCF5BCACD7E8105CF7918E /* BoringSSL-GRPC-openssl_grpc */ = { isa = PBXNativeTarget; - buildConfigurationList = 972D1CF08B0934214F9D7AF44E5DD10A /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC-openssl_grpc" */; + buildConfigurationList = 41F078C53EAE2F565A31AA1503ECC86E /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC-openssl_grpc" */; buildPhases = ( - D24AB668A8F5E0CF751DC7B2721713FC /* Sources */, - 20605D995D51E9F944D76C0DB47024CF /* Frameworks */, - 7831ECCE7B7845B5C627FECD649DA75E /* Resources */, + 4C4CBEBD0B7610A181FA793B95D7B2C1 /* Sources */, + A8E20325CA2FDF39DC6D06C8A5D4DC0E /* Frameworks */, + BC36BC159E90F308E040BFB30A19319E /* Resources */, ); buildRules = ( ); @@ -38842,17 +39938,17 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = E3920DEB506221DCE718EDEC2F140EF3 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = E086A89C6D0A43078A8A7F4E7D4AF141 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - CB4E5E65EFB71E251424A34DB0D7A2C8 /* Headers */, - 6DB4AE4D89F847F9F973B78B865C59D4 /* Sources */, - 56A12A342B28FB8F678E7E08CB9B9EA7 /* Frameworks */, - B79642A66B61B1EBE7A34D0219E68C6E /* Resources */, + 7C155EA3D7857D52B3C2886997BD250A /* Headers */, + 6B70AEC032AAA2FEC9DFAAF3CA60E085 /* Sources */, + AC0234623DA5866DC7623ACC0EEA57BC /* Frameworks */, + 1DC4F12658AF44F2885B349A3F01384A /* Resources */, ); buildRules = ( ); dependencies = ( - F0AC3E001CBF43501921DE5B96936875 /* PBXTargetDependency */, + 2D832F28A8619D97BFF96030FD317A43 /* PBXTargetDependency */, ); name = nanopb; productName = nanopb; @@ -38861,17 +39957,17 @@ }; D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */ = { isa = PBXNativeTarget; - buildConfigurationList = 94F26F8BFC833BA3F18C160E1C9BB31A /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; + buildConfigurationList = 2C28A1724F713E5ECAA2BFE2381662C2 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; buildPhases = ( - E2ED4C8012595DF14DDF8FD34D5D13B1 /* Headers */, - 38430C70B8BD4D411C447659DD069F0C /* Sources */, - F34C4F3F49B1FD4DF04F17C18675FB89 /* Frameworks */, - 1D0DA66B9900CF3AE35891A1076544F9 /* Resources */, + EC14A314D7F0F4F45CF0318E94220C10 /* Headers */, + C2C8940CD7459EC2E3EA91964B99981B /* Sources */, + A111AAA862828D82496A5BC81010A9C4 /* Frameworks */, + 8D501DA8A12B1EE5B063A6DCB3A058C7 /* Resources */, ); buildRules = ( ); dependencies = ( - 7FC622F823A6E22A2F8DD7B485E47AF1 /* PBXTargetDependency */, + 58EF6ADCD6EB76CD691296CC0E36C3F8 /* PBXTargetDependency */, ); name = GTMSessionFetcher; productName = GTMSessionFetcher; @@ -38880,11 +39976,11 @@ }; D994236C73AC9E758404DF574DAB4A9F /* FirebaseAuth-FirebaseAuth_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = C6E3A4025E246F6CFEE0E891C8507D34 /* Build configuration list for PBXNativeTarget "FirebaseAuth-FirebaseAuth_Privacy" */; + buildConfigurationList = 65BC6BCBEF2571563F5D39EAB7EFCDA5 /* Build configuration list for PBXNativeTarget "FirebaseAuth-FirebaseAuth_Privacy" */; buildPhases = ( - C6E1334A7A2AD30704E4F7F46B7C8FEC /* Sources */, - B611AE623DC09BE2E5C8F78FFB71AB26 /* Frameworks */, - 6ABC0E297F03BB9EE8C92D9FEB404389 /* Resources */, + 56E65E59442F18D3E34830F4255A02D5 /* Sources */, + 93EA75E56D54DC072B49150AE5A58A5D /* Frameworks */, + 42017F85A9AC92FB422E612B2B5EBC12 /* Resources */, ); buildRules = ( ); @@ -38907,11 +40003,11 @@ buildRules = ( ); dependencies = ( - FAA076DC17172C611B2D3A06978C0017 /* PBXTargetDependency */, - B59142412C6469B7A53E6B425C5CB945 /* PBXTargetDependency */, - BAF72B04DD3D9A4939747AF544E54A7B /* PBXTargetDependency */, - 2E1453DDCB4FACC7CBE3C84EE431D581 /* PBXTargetDependency */, - 2C3D668518AEA6C505802229FCABE1DB /* PBXTargetDependency */, + 14318116FCC5BFE5724ED7A51E720940 /* PBXTargetDependency */, + 6D4802C1D40A0BA83646140A6026791B /* PBXTargetDependency */, + 7FC1D9A9E348DD4B526DE94B9990E2CC /* PBXTargetDependency */, + 77D0596E9E531B0D948C3DD5A1401EF8 /* PBXTargetDependency */, + E84E46314846DBD588989F8BE365BE88 /* PBXTargetDependency */, ); name = FirebaseFirestore; productName = FirebaseFirestore; @@ -38920,11 +40016,11 @@ }; DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 7FC039826B91A207A6884E8D0F7C48A2 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */; + buildConfigurationList = FFB91A1E66128A2995C7DC0B05D03F73 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */; buildPhases = ( - 28366436370B458876F0F56B7F427D53 /* Sources */, - 3F5BB84EDEC957AAA317EA5D998B6CC8 /* Frameworks */, - B6C1B7A50F715F50FAE1A15B8EF2E4CC /* Resources */, + 19C9BAEB0A6C452FE039834A4704E2B9 /* Sources */, + C470D41E5B30C77A8B5F660B69DBEFCE /* Frameworks */, + 84DE70658C11EBF954F9F3304F7FB1A5 /* Resources */, ); buildRules = ( ); @@ -38955,24 +40051,24 @@ }; DE74CDAFE8319CEDA4F1232DEC00140C /* FirebaseFirestoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = BBC937B2AF3C5A14794E497F9FE68064 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal" */; + buildConfigurationList = 657AC2AB1C65ABB111131FC51DEF4B2D /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal" */; buildPhases = ( - 9169C994FC8A48166745E41FB2700BFA /* Headers */, - 174F137CB68072BD433EE15B85A314FD /* Sources */, - D78B8C951B758DEA60A0F7751BFDD8DE /* Frameworks */, - E95CE1FA9BDA106AF70FAA639A658CBE /* Resources */, + 8F0D7858518DAA211FE566D35ED5787C /* Headers */, + 8452C1AE9C1EC42F232DC4BAD2949A84 /* Sources */, + CC270D7B74EDD75A176841B9E06EA244 /* Frameworks */, + 952364C4B521BC626E28AAC7F16F70FF /* Resources */, ); buildRules = ( ); dependencies = ( - 3ECDAA5927D1A848BCAB66C17CCFC524 /* PBXTargetDependency */, - 0E753C214A22FFE468EEADFD37CA9D69 /* PBXTargetDependency */, - 6A5BFF16400048F53FC8FD60078EFFAD /* PBXTargetDependency */, - 2FF62AEFA2622FFAAB2719BD0F5A4D81 /* PBXTargetDependency */, - D6F98496304A5945BD7ED8C80AB6FCDF /* PBXTargetDependency */, - 5C292E8886C27ACDE8DEEFFA644EDE45 /* PBXTargetDependency */, - 2D18114E4045B5BF938B564ACAD5ABB0 /* PBXTargetDependency */, - D7C36939C0B374B854168E0259C4CFDF /* PBXTargetDependency */, + 3C94521F830BEC42FFE6E2AB2267D457 /* PBXTargetDependency */, + 8E7BB4F34B1E4BDFE0662028AD0D0573 /* PBXTargetDependency */, + B2A7044998D155D50ADADC695B7C052E /* PBXTargetDependency */, + 36A8AD61D9395D739C460E69B26E4536 /* PBXTargetDependency */, + 6E734151E5701D7064E3AC62763F90EB /* PBXTargetDependency */, + 425943C6C83C50149BE2656E97BF9618 /* PBXTargetDependency */, + CDC151846016644CE2A21F4AF27B4EE8 /* PBXTargetDependency */, + D067F7C763B396200627579A57680A3E /* PBXTargetDependency */, ); name = FirebaseFirestoreInternal; productName = FirebaseFirestoreInternal; @@ -38991,7 +40087,7 @@ buildRules = ( ); dependencies = ( - DA315171CE9E8B8D406FDCAAE48DD71A /* PBXTargetDependency */, + 1EB41A6490238D28C769744B6695E459 /* PBXTargetDependency */, ); name = LLCycleScrollView; productName = LLCycleScrollView; @@ -39010,7 +40106,7 @@ buildRules = ( ); dependencies = ( - F9991778FE8D5AFC6469DEA14975D745 /* PBXTargetDependency */, + 84FDDFBC400522612E8618A5B9E49F3C /* PBXTargetDependency */, ); name = Kingfisher; productName = Kingfisher; @@ -39047,8 +40143,8 @@ buildRules = ( ); dependencies = ( - EEA0A3426AAA92A5C7489474CC71FF0B /* PBXTargetDependency */, - 177B7E5B15A6732EE19DE6F13D9EB3D4 /* PBXTargetDependency */, + 8D7BA9570088F5C5D1C5FA3D5DE7198D /* PBXTargetDependency */, + F2E40727E544E87FC9699BD7E89201DE /* PBXTargetDependency */, ); name = FirebaseCoreExtension; productName = FirebaseCoreExtension; @@ -39073,7 +40169,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = F7C3B71C9A8A15F817DCF81DC990D2F5 /* Products */; + productRefGroup = BE0BD8BBDB10A328BD73A289828D45AD /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -39082,6 +40178,8 @@ 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */, D0583478A3CCF5BCACD7E8105CF7918E /* BoringSSL-GRPC-openssl_grpc */, 4CDD1C6C8885D07092D8EA708AAC0E53 /* DeviceKit */, + 290D7B2F80A1721A35508C1739C47F56 /* FacebookCore */, + 28907903AF6DD0AD321D92CD660E7E23 /* FBSDKCoreKit */, 072CEA044D2EF26F03496D5996BBF59F /* Firebase */, C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */, DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */, @@ -39137,10 +40235,26 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 0EC193A04EE0AA05807362308055DC78 /* Resources */ = { + 01B9D9E88BAF1068E90FA8190A547F58 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 18FC4B207334ACFD7B42BB9A299002AB /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06CE7FAD7C77772852C6711EDD45A92F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F2E6443655A5D662F01F25453AC0725 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 15487E2FE378853ED4CFE555C5631941 /* FacebookSDKStrings.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39152,11 +40266,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 17C0B705D849B8C8ACC367D9B1F0A949 /* Resources */ = { + 129D5D4C71EE9B659D971B1E57785EF7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6B5EEB49BD6E4C6DDE5856318E3BF69E /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 16391262F6C6D1B090E19AE6A368F70B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FBC20063FB41F060F3DD733042A16965 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39168,81 +40289,74 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 199C32832A7C1C555B26340B2E23E5E0 /* Resources */ = { + 1DC4F12658AF44F2885B349A3F01384A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0499A07FB45112B9D16742C5A889C8E2 /* PrivacyInfo.xcprivacy in Resources */, + 756FE6CC6DC1510480910B0488BC20F3 /* nanopb-nanopb_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1D0DA66B9900CF3AE35891A1076544F9 /* Resources */ = { + 276E3A3A3EAAA0C600769B96B8FB57D4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8E0A1176ACD1D95A7FEEB9CC66A2E1E7 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy in Resources */, + 6DE8DA1CA528F74D03CA211CFFFE7308 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1DCF2703A2DDEC59E2F92FC1720D3CED /* Resources */ = { + 2AD38988DBB854E0A5DDF543FC9C5C1E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 841E604E6915C342C3559988E5F7E8CC /* PromisesObjC-FBLPromises_Privacy in Resources */, + 719AD6182F44D176B599BA06453DE256 /* PromisesObjC-FBLPromises_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 26E9D586E14720CDC9335E9D9BA852A6 /* Resources */ = { + 2FB8DEC7F3F9000B0A3690670DA406E9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 54ED301BF3527EF4222DCC4C25F4F3C2 /* PromisesSwift-Promises_Privacy in Resources */, + D2E92DD05F3DFE9FBC121F5DB0A23689 /* FirebaseCore-FirebaseCore_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 27279E2603E28F726C9EBF4A005C79AD /* Resources */ = { + 30481F856F623169C39AEB99675B6538 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 987B3E4E239429B79E38EEC7E7C65450 /* roots.pem in Resources */, + B0CDA79D39FDFC4131C952DACEBA2905 /* roots.pem in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28FCA1E4B5A53D927B1FECC659E33EAB /* Resources */ = { + 38F7C799C9D355B992C56F710A0D475B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 651A8AA9A3FE8644B47348F95048EF1A /* GoogleUtilities-GoogleUtilities_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2F1C6697B6F70269FB027D717C312634 /* Resources */ = { + 3D5A5607233490396FDA2867615BDED4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0E2D49702E33ABA5BE9B2B051BB9F20C /* PrivacyInfo.xcprivacy in Resources */, + 82838F3DFE09A56C3098173CC3BD1606 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 302EF792E61CAD579AC9276C38AFB447 /* Resources */ = { + 42017F85A9AC92FB422E612B2B5EBC12 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + C1C813BB3E690862C763941066DAE507 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3D33E839DD8B970C6B4D9C0298D81F99 /* Resources */ = { + 42AE97509D08C7D1879D1563773BF75B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 885E49567166EBD82B74F08E1338E4CB /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 467E3615A5B33F4C5400CEAA054FA6E4 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D8ACB41F6711390FF133105ADD84D3D4 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39261,6 +40375,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 53B446D575AAA1014EB78EF42236930E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 565FD2058706F22D2347B30C65280F30 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -39268,52 +40389,59 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5DDEBF1EFE2E356039CD1EC30A212000 /* Resources */ = { + 56F94DAE72CD0EFB5BB709D9E1CD9CBF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7F7C8961939FFD5DF957937650F2ADB2 /* PrivacyInfo.xcprivacy in Resources */, + 74CA26E93AD7C06DC3ABED5DCBBC32D2 /* leveldb-library-leveldb_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 60D53D87A27E55685F2D7A3CB89D4B39 /* Resources */ = { + 58C8AB510E2D6E77B7B6B65A91B9C702 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1CCE7F80567DC19566A4A8F6B979BB78 /* FirebaseInstallations-FirebaseInstallations_Privacy in Resources */, + C72751345E6E19F2DA702702947AB470 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6ABC0E297F03BB9EE8C92D9FEB404389 /* Resources */ = { + 692B24EE7ED47E92157B88D14444F2A2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1891C2CC809D61818C92F398D186A271 /* PrivacyInfo.xcprivacy in Resources */, + EFA708FDE0C522A5FD1B8B2E998F030D /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 70DAA21E34D252A70DF8ABFF681A6F54 /* Resources */ = { + 7014CB380B675C98C3E600B2574DA6CD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 51192E43CB2D6090053FFA67A23E78E1 /* gRPC-C++-gRPCCertificates-Cpp in Resources */, - 028D7FE2E36759128C53E30AEC20693B /* gRPC-C++-grpcpp in Resources */, + 8B055CD8FA939D1211E8B8B1714DF46D /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 740BB3D48054BDCFEAD5DF58C7D9FAF1 /* Resources */ = { + 761EEECAFD041498BCD0F552702D91E2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2A9FEC43B85B2C9435816051948465F8 /* PrivacyInfo.xcprivacy in Resources */, + A3771DA6C68198B3FFC73252BD76ADC5 /* FirebaseInstallations-FirebaseInstallations_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7831ECCE7B7845B5C627FECD649DA75E /* Resources */ = { + 7875DCE0DD006921EE950DAD771DC551 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 37A749E1E30FB27AD3ACE55E0CD7A670 /* PrivacyInfo.xcprivacy in Resources */, + 0987CF608A5684AAB52D3173FD92D0CC /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7E059FFBF541F44740F2D84B835DD495 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0D8406DC9B7466AF99C734CA9BAB3BAE /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39324,10 +40452,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8675B1885705A51749B6B805A2292712 /* Resources */ = { + 84DE70658C11EBF954F9F3304F7FB1A5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + CBA1E90AD835244CCE292A904B02F72B /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 855992826823B848828D42CBE41116F2 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9549B3DE5BCAC04F7F256E14A9354B0B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39339,19 +40476,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 89E480DF3248FC90425A33162BF178AA /* Resources */ = { + 8D501DA8A12B1EE5B063A6DCB3A058C7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4338CE05245080761A88185C2504906C /* PrivacyInfo.xcprivacy in Resources */, + 1F92B8F59DE6E8468F320250F1E0ED38 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 90BC29CB00F115F7FFA3968F488F5910 /* Resources */ = { + 952364C4B521BC626E28AAC7F16F70FF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 68681DDB0BB7C6C57A62BBF8336258F1 /* gRPC-Core-grpc in Resources */, + E09BC3B67EFA8FF0E283F85A3C1C9842 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 98FD70C1F7904C716DFC4381300821E2 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9BA42FFDDCFBBB05BCABCD0B8B81B18F /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39371,14 +40516,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A1E4A5CDBC1BD89A970DD4E55B420E0C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A4FE3FAB7CBFF4DBD4246F8DB93B4BE /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A4CCC3CC21F770E272C54B18DDDE6DA3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -39387,26 +40524,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A66525A279F360DF13AB1F552E218F5A /* Resources */ = { + A6634D9A58A23F1D72B077C2071DBC62 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - EA4BA94294A25D89BBFE2D9290714EA9 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */, + AD69E5336FFAC34B1610DDCEC4E2C97E /* gRPC-C++-gRPCCertificates-Cpp in Resources */, + 48973407248F5B61D3D952EE32720FD3 /* gRPC-C++-grpcpp in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF5C7E5198BA8430AAEBC6326ADB2FD6 /* Resources */ = { + AEB2E0AC78BB93636D6B6113CC646DEC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + F9524B394C54D5EDF4894A4862E753F8 /* GoogleDataTransport-GoogleDataTransport_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B027075B4C25D16AD0EE104B7DE30BCB /* Resources */ = { + B05EF94B3C13A8827FEC37E429BDC9F5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 70E8F0318CAC33A98B8F0811885F2FF6 /* PrivacyInfo.xcprivacy in Resources */, + 9BE170E4EBACD5EF4522C9FD266DECC7 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39418,19 +40557,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B512E1C3C86E396E04E3CAF93128A744 /* Resources */ = { + B52CA4F1C39ACEA92B881CC406412299 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 45EE7847B2F84E093BB02E0833B085DE /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B67FE9F7CC990BECF98464CA83A97F89 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8A91E2F8FA229C7C13D8D9EDBE1EC083 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39442,90 +40572,81 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B6C1B7A50F715F50FAE1A15B8EF2E4CC /* Resources */ = { + BC36BC159E90F308E040BFB30A19319E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - C56E17664490514F568167D12E65571A /* PrivacyInfo.xcprivacy in Resources */, + D5D9482F32783AA318C4646738A05269 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B79642A66B61B1EBE7A34D0219E68C6E /* Resources */ = { + BF15CDC12EAF116A2C4925E9DC683555 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - F8901651DAB70645C038F03B0A9D8645 /* nanopb-nanopb_Privacy in Resources */, + AB70E82610AC8E1842F6E86A83EDAD4C /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B8F700CC6B6127F506D6ACFF8D04E2EA /* Resources */ = { + C8887BEC5DABF515FE29AE4F8CA74E99 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4C4842177E24DA7F51E35F56EA23F7AE /* PrivacyInfo.xcprivacy in Resources */, + 681D873A2BA28EAF7A201DF349871146 /* PromisesSwift-Promises_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B9F57543ED9E76B2618A3CF3B680043F /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 85221902520EC083DE3DA587F8FF9E91 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CB5AACA9AEEE47C5CAF834BADA7F114A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4111B2F8A6D9BDD59B52E128A7130627 /* FirebaseCore-FirebaseCore_Privacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0C91D243192FA2C800EE2FA0CE3299D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0767B9E019E9E3D9FAAB405A6C089BB3 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D38E17323DA64D4D19BF5A9C68D64D05 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2DD153252BBCBA86DBF15DBF807F1845 /* GoogleDataTransport-GoogleDataTransport_Privacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DA453FFE6938BEB821ACBD84877D77F4 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 138B13B32B9A185E8A0792F982363396 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E95CE1FA9BDA106AF70FAA639A658CBE /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1D6835C98A4415D9C35AA0082922F534 /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F422E3229F4F8AD113A242B2934870FD /* Resources */ = { + D101201F7043E4ADB47CEEF36F8DDF1A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FAE0BF53C2E9DC0AE79A5FDD494B58EB /* Resources */ = { + DA78D8339ABB11A16250AA1340E56688 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BED06CF3A7FC1ADE9142C4F18537AF99 /* PrivacyInfo.xcprivacy in Resources */, + F4ECFD3B6EB31785F7710D74C06709D4 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E2FE8240360C877B0CA4D896EFB5F77F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7D64DFEC852033E8F2C518818C451EFA /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3F214097A1CD1FF0BF2D74B11D79050 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A4B520A164682288CB0D85A8E7DD327A /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E5FEB665F01919282677C8EEA1604D91 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5B3FD8499D31BBA28ADFF9D6AD36A3B2 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EBC616A53594313E4E63BD9E0D0622BD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F810F8F5737B04AB901FE6CDB311D061 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3C1677A8C48D52BAD81EB6A5DD19DA05 /* gRPC-Core-grpc in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -39537,36 +40658,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FDFDEDD0169202794DFD589F1014B0C6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0E7F5A364C2244F2FAEF82A01B17BEFF /* leveldb-library-leveldb_Privacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 0FB9DDE08E67C0FA09C0F8C7A6DA26C6 /* Create Symlinks to Header Folders */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Create Symlinks to Header Folders"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; - }; - 3A4BEDE76E76C81CB3960FCB690DB355 /* [CP] Copy XCFrameworks */ = { + 06784DD191DAE72F6F99940506DE82D9 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -39583,7 +40678,7 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 7F460263EDD6F65D200F29F10D43DA09 /* Create Symlinks to Header Folders */ = { + 0B335DC2F9269F16BA26A25DA6670BC4 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -39601,7 +40696,7 @@ shellPath = /bin/sh; shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; }; - 87B9E2B85B46ADF2664B99C7707A226D /* [CP] Copy XCFrameworks */ = { + 42102368FEB4352EF58DF0AF432E30C5 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -39618,6 +40713,24 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; + 42F5D32F33B5EDC2768B9E816A32D4E6 /* Create Symlinks to Header Folders */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Create Symlinks to Header Folders"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; + }; B14E188CB5CD5E57554E551CB0DBC654 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -39636,7 +40749,7 @@ shellPath = /bin/sh; shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; }; - F850FFC9FA6600B08F8374B57E9D09B8 /* Create Symlinks to Header Folders */ = { + CA3A6E9E89C7F3C92CFA8C2415C071BA /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -39657,13 +40770,6 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 00998A17CAA1C806B66A7CF9EA08BB8F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0B3B2F7BA91168D9B2E7DCA676B48B34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -40016,42 +41122,49 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0E32A9FABC185748F9BCC13579A05724 /* Sources */ = { + 0CA7C1F75DB8D170C711758A4AAEE4C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4E7407105B3F37AE079BCDA02D7C5528 /* GoogleUtilities-dummy.m in Sources */, - 5C44582D6B7333727C024CBF8E07461A /* GULAppDelegateSwizzler.m in Sources */, - 65B3331977AA9BA1D260482B49ECA878 /* GULAppEnvironmentUtil.m in Sources */, - BB8F808AB67CE948293E1B2D46854206 /* GULHeartbeatDateStorage.m in Sources */, - 45EEE9DB8E317FE8D496616C93005BB2 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, - ED36AF5218BC54FAE45170081CD7D160 /* GULKeychainStorage.m in Sources */, - 524AD0A55C048A7E8A9553DB208D8885 /* GULKeychainUtils.m in Sources */, - FEB83C4D57EF2470D658F0D223DC7DCB /* GULLogger.m in Sources */, - B6F8686239F6DC65769051CF92C19E60 /* GULMutableDictionary.m in Sources */, - A8E768584CA36DF64818D33B3C3A3AA1 /* GULNetwork.m in Sources */, - 83B107BB4130E50326F0827654F14678 /* GULNetworkConstants.m in Sources */, - 0EE207CB7F18CA9C6BE7CD1E5CEE513F /* GULNetworkInfo.m in Sources */, - D0C34067B69A2C7AFA4DB678C6D79AC3 /* GULNetworkURLSession.m in Sources */, - 3D974D1EA1671D7E90AA484101766D31 /* GULNSData+zlib.m in Sources */, - 6139998736AFFA7A1FC0AAD75F4076F3 /* GULReachabilityChecker.m in Sources */, - 43661907C5883AAD33919987E73D267C /* GULSceneDelegateSwizzler.m in Sources */, - 011CADF0CCD654BF23A4C6C8A99C4480 /* GULSecureCoding.m in Sources */, - 783BB7866AC322B77366DBF575F1E02F /* GULSwizzler.m in Sources */, - 0EA8B46769965E8B0D282354F784087E /* GULURLSessionDataResponse.m in Sources */, - 611E3265CBBF687E79758582C3414564 /* GULUserDefaults.m in Sources */, - B15AF72CEBCBCBF686993B961C0FE481 /* IsAppEncrypted.m in Sources */, - 2228C73F449DFA6CC81BA71F027AD6EF /* NSURLSession+GULPromises.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0E38D61FCDE15253E12D20B855C56D72 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D576040CBE5F1549757D2D9E51737AB8 /* FirebaseDataEncoder.swift in Sources */, - A10C24D6DCD5C4736F806C2B956764DC /* FirebaseRemoteConfigValueDecoding.swift in Sources */, - BC664B114589710930E0B48EAE0FD4CB /* FirebaseSharedSwift-dummy.m in Sources */, + 22D976814B669216699AFA071A22BDB2 /* arena.cc in Sources */, + 12C4F6C5F2EA6C459547561F4660A096 /* block.cc in Sources */, + DF72BC6E6B0DC06440B2512AC0A7CEC4 /* block_builder.cc in Sources */, + 4FBC505F3174FA4379462D1637BC5A79 /* bloom.cc in Sources */, + 5D8450C6ED66D8F2FF53F94CEAF2A686 /* builder.cc in Sources */, + 26BA33EC2218F6055098068027A9594A /* c.cc in Sources */, + 3C5EAF6CFF9BC3B485600E9B3529F728 /* cache.cc in Sources */, + 1CC617CD02BD5EC3844A89C9091F490D /* coding.cc in Sources */, + EA12B6C97C5121AE95708BA8BD1932B8 /* comparator.cc in Sources */, + 2AC4D9DF54E4493F6E63B5DF98CDBAAB /* crc32c.cc in Sources */, + 7E80229BCCD364166A7D66D399C54B5C /* db_impl.cc in Sources */, + 0D17F6A6486744081EF5F37850931B8A /* db_iter.cc in Sources */, + F237D6C430BE48E63E006918C7F669E4 /* dbformat.cc in Sources */, + 7AEC42E4C073B0FF2ED5AC1490EAF534 /* dumpfile.cc in Sources */, + 3AEDE3D2DC93F8B078E927E176720133 /* env.cc in Sources */, + 8B3035FFA944D00B550A3A39857DD2C1 /* env_posix.cc in Sources */, + 3149141FA9C39272A32C056EF6CFB03D /* filename.cc in Sources */, + 1F76F32A85F7D3526EB3ED7C2441C5F7 /* filter_block.cc in Sources */, + 8D8FE4ECEAEB53F60D12EBF8C8C51DC6 /* filter_policy.cc in Sources */, + 6DDB3D3C0C45C5DAA335F20BB3C20B7A /* format.cc in Sources */, + 890FCB06204D1116D198F93152A8BB7A /* hash.cc in Sources */, + BF8279C1D57B3DE385D83EB450D1D679 /* histogram.cc in Sources */, + 035BA5EE01DAD0F8859CD3CB945E814E /* iterator.cc in Sources */, + 73A38246AE9FC4BBD33B8089BD0A7C72 /* leveldb-library-dummy.m in Sources */, + A339BF5257CC6D216C5DA5F654ABD340 /* log_reader.cc in Sources */, + 13CBD2EE53667F1B839302AE4F957E60 /* log_writer.cc in Sources */, + 7C947E267373EECE3A05FB39D2E139FD /* logging.cc in Sources */, + 20785F96BE384BD1C771A7213C74C29B /* memtable.cc in Sources */, + E56456995301EA003BF5A683D26239AB /* merger.cc in Sources */, + 31304394C6E2DFDDD89C15023017281C /* options.cc in Sources */, + 7754F75CA5EA9D2250D6D894C015E902 /* repair.cc in Sources */, + F49C8E7D0A19408321351D2DC6824DAB /* status.cc in Sources */, + D9FB00D80C97373E1A4C79A19C93C957 /* table.cc in Sources */, + 6C12ABB7B20A9AA3A4A144DE3A3E05F3 /* table_builder.cc in Sources */, + 01B512B48F4F72ADE8935A9091E8236D /* table_cache.cc in Sources */, + F763066ECB7CF9CD22A9A67705E5CAB8 /* two_level_iterator.cc in Sources */, + 8C36D285B9F7EB48EF23FBD7AFAE2CDE /* version_edit.cc in Sources */, + CCD29132A1FFD942224717B8A09AE27F /* version_set.cc in Sources */, + 484EB3CF3FD8FEDDD39310549C139FCA /* write_batch.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -40067,259 +41180,48 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 174F137CB68072BD433EE15B85A314FD /* Sources */ = { + 19C9BAEB0A6C452FE039834A4704E2B9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C77AEDA886E79CFC9F3C895BB49A6C1D /* aggregate_alias.cc in Sources */, - 03E545A46B3FFB76C4033C8E9CE6E609 /* aggregate_field.cc in Sources */, - 49DC5AD85826D6BF22FE290C0A374002 /* aggregate_query.cc in Sources */, - CA618759BCCDCBCC16C9ED56F376AEA9 /* aggregation_result.nanopb.cc in Sources */, - 715D06127D224DBA7E7D61695CFE76AE /* annotations.nanopb.cc in Sources */, - A82253F2E5BDF186AF583F09A5464C79 /* any.nanopb.cc in Sources */, - 341416D4B93BBFB43A0AA84C418C0F5D /* array_contains_any_filter.cc in Sources */, - E78F74E8158A5D55E56829D33DD98C92 /* array_contains_filter.cc in Sources */, - 29C6FD4BA5321F9BCAD64B0AF0382E47 /* async_queue.cc in Sources */, - 2F68F7D1007B40248F099B6F39473147 /* auth_token.cc in Sources */, - 7F808DE89A4AF6FC37E6599743EC54AA /* autoid.cc in Sources */, - 1F2FB5AB594CD733F37CC3353224560C /* background_queue.cc in Sources */, - 9CE4C9D6DF8A0C23ECA588A9E9E52897 /* bits.cc in Sources */, - 2E4C246CF162B3ECFF447FE7095A661C /* bloom_filter.cc in Sources */, - 44553F2BB361929D76AB607BBDF54A05 /* bloom_filter.nanopb.cc in Sources */, - 0A0976F2AF80389EE9176C605127F229 /* bound.cc in Sources */, - 0DCD34261EE85BFE0C3136FFF747AF29 /* bundle.nanopb.cc in Sources */, - E5DC2F96B6597B079D61B3A091867C75 /* bundle_loader.cc in Sources */, - BD00458A3D1D377B0CD768614E4EBE45 /* bundle_reader.cc in Sources */, - 75448BE3A05509700B0B466A52DA73C7 /* bundle_serializer.cc in Sources */, - 2F79B97D9EFB6D991FCFF565572FCBE6 /* byte_stream_apple.mm in Sources */, - 006648A51D1124E4140E7ADA59DC8A9A /* byte_stream_cpp.cc in Sources */, - 968360984C3E18AA6ACC74DCDD5A6945 /* byte_string.cc in Sources */, - 09F4DBEF559E223939C49CB9FCA20C5C /* collection_reference.cc in Sources */, - 60F765392718BD63A4F00EA19A1CE1AA /* common.nanopb.cc in Sources */, - 86FE7F8C838EC6AD28076923AF030AFE /* comparison.cc in Sources */, - EB612A9686B6D1B670FF159CF0C7384C /* composite_filter.cc in Sources */, - 164563B179D302D613CDE982EF821A07 /* connectivity_monitor.cc in Sources */, - C8B7085E5F9EA79A9BC65BFF56339E63 /* connectivity_monitor_apple.mm in Sources */, - 7E810E2A122BFA794C0A69CEE8897E7C /* converters.mm in Sources */, - A9B50834ADE9EF84A8B716D8F85DD9DD /* database_id.cc in Sources */, - 445D3389CD556352DDE486BD3DAE88FE /* database_info.cc in Sources */, - 1D95B45328470D0C4EF842D5E4676C16 /* datastore.cc in Sources */, - 0F2A35A7789D7F195B845D21BF9F286C /* delete_mutation.cc in Sources */, - 424EB03D83942791D9F0ED17B08F0660 /* direction.cc in Sources */, - 16DF9F206C48DDB516E4EAE08430B16D /* document.cc in Sources */, - EA5D3B3B46F526A6D9765FE4FABA198B /* document.nanopb.cc in Sources */, - 28345F42D4A0319136C3E96BF697F2A3 /* document_change.cc in Sources */, - 3BBCB62D63702DADF02152B7B13792D5 /* document_key.cc in Sources */, - 94925388B0CCB9EF7CBF058A8F4E16DC /* document_key_reference.cc in Sources */, - A50B65746D397952AE84BD922AF58C4F /* document_overlay_cache.cc in Sources */, - 5C808EC60B265A13B602D62FC4908174 /* document_reference.cc in Sources */, - C28D2165D8036CC13B4448F939BAD20E /* document_set.cc in Sources */, - C0BE02A6F852B7693B65732459EB13ED /* document_snapshot.cc in Sources */, - CBB7349C20BEAA5A9747C999910943D7 /* empty.nanopb.cc in Sources */, - B0176C9823BC61A683C34EC397B3549D /* error_apple.mm in Sources */, - 3018E70FEBF757CEE42BB7DA8EDD7458 /* event_manager.cc in Sources */, - 482DC8E97BA687B01E7CB333F9854BC3 /* exception.cc in Sources */, - 19E08C9C38D5BAB836292763C6A05302 /* exception_apple.mm in Sources */, - DE263DA4124252F08C956093059A09F8 /* executor_libdispatch.mm in Sources */, - 950851F634E7F3EFCC16B309E8E281E4 /* executor_std.cc in Sources */, - AAFD459482A139DE4C9397190B44FE29 /* exponential_backoff.cc in Sources */, - EFA8AC53F655A20C30E1CFBF1FBC6418 /* field_filter.cc in Sources */, - 08F1DD7A00893D66A9E521F785DFD08A /* field_index.cc in Sources */, - 9BEFCA36304363DC87068AB9BD3E1037 /* field_mask.cc in Sources */, - 6BCD2B615CADD5D974D79CBFE3142F53 /* field_path.cc in Sources */, - BDFAD43B33FFCD37D7BBCA7BC8B51A8C /* field_transform.cc in Sources */, - 754C7F08E2A7CC6ED278375F059164FD /* filesystem_apple.mm in Sources */, - 0E31E8D54ABBB6D9C5D7C49AFDD739AF /* filesystem_common.cc in Sources */, - D28494AFF3A94E0224100A72D562A381 /* filesystem_posix.cc in Sources */, - 5036571531669857C5440644141647EC /* filter.cc in Sources */, - FC958B6D7ADE3654BE0673E165BF781C /* FIRAggregateField.mm in Sources */, - 073AFA63CEE910768E0DEBF0F9B57F51 /* FIRAggregateQuery.mm in Sources */, - 47A17F66D3611B18CE6E089AF4DB1604 /* FIRAggregateQuerySnapshot.mm in Sources */, - 4D435AFE643FA5ED566BD6810F20009A /* FIRCollectionReference.mm in Sources */, - CBC9737F3456153FE088E7CECBD5FDA9 /* FIRDocumentChange.mm in Sources */, - 44BBA5D55EC9A4CC6827BC9EF710CFC1 /* FIRDocumentReference.mm in Sources */, - CC3B5A86AE484800B7B332B5F4493A3F /* FIRDocumentSnapshot.mm in Sources */, - 98FEFE6FAC64810D35E30641E747628C /* firebase_app_check_credentials_provider_apple.mm in Sources */, - 2A1BC4F7AD94FD3598460E9501C0B26A /* firebase_auth_credentials_provider_apple.mm in Sources */, - A5E803C96342571A5E97F65ADCA2BA4E /* firebase_metadata_provider.cc in Sources */, - 8A2F40EDB4C6C52E01064919B0ED444B /* firebase_metadata_provider_apple.mm in Sources */, - DBF93D22C643329C4BBD16A9E924044C /* firebase_metadata_provider_noop.cc in Sources */, - 876C0208F26459547AFFA811937AF075 /* FirebaseFirestoreInternal-dummy.m in Sources */, - 0A5B924C7128CA37BC6DC0C61E601951 /* firestore.cc in Sources */, - E5D5018AF35A149B1D9568419DFD2FEB /* firestore.nanopb.cc in Sources */, - 316F7B119F3606B8FCA410EFDB9DD402 /* firestore_client.cc in Sources */, - 49349CC51941FA5FB5E27F4F91785B52 /* firestore_index_value_writer.cc in Sources */, - 9BDC8A52C60894A9A1766EF84C950FB0 /* firestore_version.cc in Sources */, - 43DC498A6F492D656DC2E40A1ABB9B28 /* FIRFieldPath.mm in Sources */, - 89786B1A3F6A8C075E4DE7A5C9151598 /* FIRFieldValue.mm in Sources */, - F4F77CC7348BF8F7891D6EC77A8BC16A /* FIRFilter.mm in Sources */, - 32BB48B313B097ABA310D0E389E1CB81 /* FIRFirestore.mm in Sources */, - 527BFC3CD2E4C0931B011A367EFC39A0 /* FIRFirestoreSettings.mm in Sources */, - D4E70286ABEB359908E89E4B1211E51D /* FIRFirestoreSource.mm in Sources */, - EDB6F00E75B4A251A13E4C639543A248 /* FIRFirestoreVersion.mm in Sources */, - 23EFF6EA6AD662E189FE644736EAD629 /* FIRGeoPoint.mm in Sources */, - BAA04692B4638C97B4F57BD06E603F0D /* FIRListenerRegistration.mm in Sources */, - B37E6BADF4AB2E38A9B1C49642B10D3E /* FIRLoadBundleTask.mm in Sources */, - E1B1C5614EB405C49DF63C0F5A98DAD9 /* FIRLocalCacheSettings.mm in Sources */, - 0CBF9941AF3FACC3D92BD1107BDF5F45 /* FIRPersistentCacheIndexManager.mm in Sources */, - 752FC020C6FF20663DBB7FCD5BAE7762 /* FIRQuery.mm in Sources */, - 6EA90705A0835FCD08337A63152C93CE /* FIRQuerySnapshot.mm in Sources */, - 6CF1DE5977D91F5837E3CB3F9D329843 /* FIRSnapshotListenOptions.mm in Sources */, - 09F873CCF50F649CD7861A79B9D03288 /* FIRSnapshotMetadata.mm in Sources */, - 4B9EF60A2462FE7E7B3C3CD52B2EA7D3 /* FIRTimestamp.m in Sources */, - 8CFFFC68FA9BD4F9E0EF5EFBB9C27548 /* FIRTransaction.mm in Sources */, - 935761F53161D05FCA83C7A1694B7DD7 /* FIRTransactionOptions.mm in Sources */, - F1A2B4B5E22F8A59F81BC369B847AC8D /* FIRWriteBatch.mm in Sources */, - E4BA6A9BCB41E66709687394AA5ECDF3 /* FSTFirestoreComponent.mm in Sources */, - 6FC1FA9C22FF51677EB5BFACE6C0B164 /* FSTUserDataReader.mm in Sources */, - 838AA225E93EF2F6CC3B912D904BFE8C /* FSTUserDataWriter.mm in Sources */, - C0F367A895E4C816B2CCEBEFBF1BD0B5 /* geo_point.cc in Sources */, - 0859F84BDE0A78DD2AE4B4724058606E /* grpc_completion.cc in Sources */, - C0B8CBCAB4A23F79F79A05F8A6122720 /* grpc_connection.cc in Sources */, - 6776464AE114F9894718A8137CC505F2 /* grpc_nanopb.cc in Sources */, - E3526A9CCE0DB46ECEECA569CF2C837F /* grpc_root_certificate_finder_generated.cc in Sources */, - 7961A84A3B17ED180FE4A71E33B8B64C /* grpc_root_certificates_generated.cc in Sources */, - 65F84DB7E847D3528C76C3A0691A7E68 /* grpc_stream.cc in Sources */, - E67118966A804511EFC41AAA97634281 /* grpc_streaming_reader.cc in Sources */, - FB872E74D59542B3712031F4EFF7D66A /* grpc_unary_call.cc in Sources */, - 91C206AC405300DF551B5CC9B24E803C /* grpc_util.cc in Sources */, - 3D6B5C6E7FBC6846A1360DAB0CEDD187 /* hard_assert.cc in Sources */, - 4AA307E28064E8A6DA1FEBDBA74B48F3 /* http.nanopb.cc in Sources */, - C214A8DCCAB399CBF5D0ED7A5BDB7BD1 /* in_filter.cc in Sources */, - 271AF80CD640FCEF24BD9E5BD3976F28 /* index.nanopb.cc in Sources */, - 415CD93BB8F47FB636BFE38ABDB8B12D /* index_backfiller.cc in Sources */, - E83FE27FF5B408A91B652EEE0FBB5A53 /* index_entry.cc in Sources */, - A8303E8C5DBDF96B87DCA4D30A1E2B87 /* json_reader.cc in Sources */, - DDD3120858A08AB69812CE8EE25414C5 /* key_field_filter.cc in Sources */, - 08C5FD30CB4E62BF8EDF151DC5E6A69C /* key_field_in_filter.cc in Sources */, - AF02B4EB0D9087B36359060B06DB3812 /* key_field_not_in_filter.cc in Sources */, - 2E6B9C6D1E3471F244C7C7185D0329F3 /* latlng.nanopb.cc in Sources */, - 0CF3B668B6515849B368177CECFEE4DA /* leveldb_bundle_cache.cc in Sources */, - 2B646B75516C9059AEE545A3770DA335 /* leveldb_document_overlay_cache.cc in Sources */, - 75D142BD1EC9048B857B2F85AFC6623A /* leveldb_index_manager.cc in Sources */, - 5D7291D14FFC9E6C6B4098BAE2E6096B /* leveldb_key.cc in Sources */, - 178380733E0CA43B8C4B5B448D041DBA /* leveldb_lru_reference_delegate.cc in Sources */, - BB67A0605406DE06A5D036F66C5C74D0 /* leveldb_migrations.cc in Sources */, - 7E2EF6E7C4FD05991659AA540F1469AD /* leveldb_mutation_queue.cc in Sources */, - DDA3E56D7204C7CA2E364F9B9A6A91B0 /* leveldb_opener.cc in Sources */, - 7180DB0D3C991F52EC508D28D6873FB1 /* leveldb_overlay_migration_manager.cc in Sources */, - 2A69AB885FB3B28A229FBA1885E2AD9E /* leveldb_persistence.cc in Sources */, - F998F938999A296CA27906AB7058383C /* leveldb_remote_document_cache.cc in Sources */, - 1838D17B13F13E7C5CBE97A9E2DA102A /* leveldb_target_cache.cc in Sources */, - BFDD4B73A0AF967215ECA41DD195BB96 /* leveldb_transaction.cc in Sources */, - D0A2FB5258796FA335FD7F8C52DF5ECB /* leveldb_util.cc in Sources */, - C5F395338EAEDE1A8041E5C27D34D912 /* load_bundle_task.cc in Sources */, - 1E8FF4E0D4097AA9ABF6A9DCDD4C1733 /* local_documents_view.cc in Sources */, - 6B84C07D098A8A4A66A4403C678AAD08 /* local_serializer.cc in Sources */, - 4EDABA694753D89ADF8980B32875FA14 /* local_store.cc in Sources */, - 0802C78E4B471857520079E55301E775 /* local_view_changes.cc in Sources */, - 6743EAF3D173EC6231856A14FAAF2728 /* log_apple.mm in Sources */, - A87E3F9991589D6D31E2C22B8547401F /* logic_utils.cc in Sources */, - 7A20F6FEE11F00C3844911871D0F7B75 /* lru_garbage_collector.cc in Sources */, - 5A773D9005C77CAF6B2148B48413AF5D /* maybe_document.nanopb.cc in Sources */, - DC73171D3A795965766F77206A270BFF /* md5.cc in Sources */, - FD84BF589B5BF3136E9A5BD787DDCB30 /* memory_bundle_cache.cc in Sources */, - 0A265EF2E92490BA71F7D751C2730326 /* memory_document_overlay_cache.cc in Sources */, - E3C097807D64D62A2803E6A5F4A7908B /* memory_eager_reference_delegate.cc in Sources */, - 0BDE48E3F34977E50FABF7841A91068E /* memory_index_manager.cc in Sources */, - B675513A75251C6C6D69625BAFF539AC /* memory_lru_reference_delegate.cc in Sources */, - 51BEC34DA493109A59ABB91F66B60C87 /* memory_mutation_queue.cc in Sources */, - 285E15D7C26801DA3D33F8B2DBF68660 /* memory_persistence.cc in Sources */, - 4764C677160504E8488E3B9016F5CD5A /* memory_remote_document_cache.cc in Sources */, - 844B750030CDF76E333AD031B882A08B /* memory_target_cache.cc in Sources */, - 99A92E6184623D011FA97B961CCF18CC /* message.cc in Sources */, - B731FB7C2BE0ED84F6368C5FD8B29C75 /* mutable_document.cc in Sources */, - F5C7953CD005B5814EE94A1045F16B6D /* mutation.cc in Sources */, - 70C9CF597C5974ADD0C63C8909AAE89B /* mutation.nanopb.cc in Sources */, - 013BBEA1945287803C3479A4592C99B5 /* mutation_batch.cc in Sources */, - 173A00E1FD6375293E2D8CCA892FBE54 /* mutation_batch_result.cc in Sources */, - 4A71616BA216A668431DD7F16088EA28 /* nanopb_util.cc in Sources */, - F54B532A5566B560E31ADD159AEB76D3 /* not_in_filter.cc in Sources */, - A5EBA47D8ED0F794B6997519547660A0 /* object_value.cc in Sources */, - 29E9CA259A19352402499050034EA4FD /* online_state_tracker.cc in Sources */, - BEE9D8AA374897E088FF3BB8E4D93BCA /* order_by.cc in Sources */, - 92C43D9D7F0B5AE977317654629D8C65 /* ordered_code.cc in Sources */, - C47D789F9480EA84E196287083FA60C2 /* overlay.cc in Sources */, - 65E51E8A69B45550339B7F9892C0D180 /* patch_mutation.cc in Sources */, - 2FE386981F626BF106C68374D67B47A8 /* path.cc in Sources */, - 4CC52476AAFD78591545BBF6474B03AB /* persistent_cache_index_manager.cc in Sources */, - 365EDE644CE7EA447F1D9FE91E4784AE /* precondition.cc in Sources */, - BEC71C67576B59E5CE36AFC9BB2445CB /* pretty_printing.cc in Sources */, - 5045A2DA382AB8BA7433B39524C71D0A /* proto_sizer.cc in Sources */, - 33001A310213D4AC8928EB7051DAE9DD /* query.cc in Sources */, - 71F4BED576DEF14A81AD6CA17D823D0C /* query.nanopb.cc in Sources */, - A798F0F1ADD01B9A0F2BE4EEC97A1795 /* query_core.cc in Sources */, - DAAB2C0A840CDCF1CC0455748E40C067 /* query_engine.cc in Sources */, - 54B5AF3BAF222F724634740BCDE947E8 /* query_listener.cc in Sources */, - CB56AE805B5FE2037D3DCE42A4DBE045 /* query_listener_registration.cc in Sources */, - 0AEE83D63BAC2E70E89A1346D3C47FBA /* query_snapshot.cc in Sources */, - F21BE5E5F98CCC4B7382F89D4D198782 /* reader.cc in Sources */, - 2209182970460631E929AED921AAB7F1 /* reference_set.cc in Sources */, - 1ED9CF2D50D01AFD39D852D7FC232D58 /* remote_event.cc in Sources */, - 3021A21B1837647442D913983FBE668F /* remote_objc_bridge.cc in Sources */, - 582F7FC7983559E09952A17EF4C6ABA2 /* remote_store.cc in Sources */, - CCF8236C8BAD22C5E23AD17DCDD48777 /* resource.nanopb.cc in Sources */, - B205C533815AF5CF5AC1D7328BC93786 /* resource_path.cc in Sources */, - C8DC992173BB7208F1217BA4AC908B85 /* schedule.cc in Sources */, - 82329CE3FD7AB1E820D6ACAEE6D863AE /* secure_random_arc4random.cc in Sources */, - E22A1BD61039445FE245815A06AB4C46 /* serializer.cc in Sources */, - E75C9461A850E2407BF7D386A0EB6F4D /* server_timestamp_util.cc in Sources */, - F9D140AC9D77A4420CFE292834AD1BF1 /* set_mutation.cc in Sources */, - 3F703ED4FAADE79C2FB5118AF833BADF /* settings.cc in Sources */, - 70466CB62E3973D45F260BF6C89C523A /* snapshot_metadata.cc in Sources */, - 66CA97DA13E2B7CED9392DF3A5C1687B /* snapshot_version.cc in Sources */, - 0DE481BFB74C7A38E07766206767C0E6 /* snapshots_in_sync_listener_registration.cc in Sources */, - C8EB782AD615E08E521D165C82E2FF04 /* sorted_container.cc in Sources */, - FE057B104E30CE7D2E37F0A080731308 /* status.cc in Sources */, - 1F83432D2B786A5E45D17E3D228DA55A /* status.nanopb.cc in Sources */, - 7ECBFF114806140E7AC8D3F613EE4FE2 /* status_apple.mm in Sources */, - 281F8BDC6710EBC635A6D79D5FFEB072 /* status_errno.cc in Sources */, - 2685D9C928345111E3EAEB5558905B69 /* status_win.cc in Sources */, - 4AD1A4B31DDDA8A783BD5A0D303A31BB /* statusor.cc in Sources */, - 70A7D2863E3387B20A6DAE69196AEF8C /* stream.cc in Sources */, - C6E7957887FF1AB5D1E357ECA2132845 /* strerror.cc in Sources */, - FE8A7399592297B3DFCA6F0EA2D36AD6 /* string_apple.cc in Sources */, - BC608DB5FF7A4482E560D5E06FEE0CE7 /* string_format.cc in Sources */, - 29F76F085BC22E0C58DD750260F649A4 /* string_util.cc in Sources */, - 833CFD943A1AD754569999D27D91D4CF /* string_win.cc in Sources */, - 0C6F21E2F61960DCE5ADF5E822FDB197 /* struct.nanopb.cc in Sources */, - E7F5B541E52CD4AED677EB2323C41C4C /* sync_engine.cc in Sources */, - 739D653DF80F181ADD2AD4E78DB40195 /* target.cc in Sources */, - 09B852ABFB5E35C141CC467ECAA086EA /* target.nanopb.cc in Sources */, - DDDDCBC46FF8E14AA473D53F9D81DBA4 /* target_data.cc in Sources */, - E649E20CBF0360D29432241983A3809A /* target_id_generator.cc in Sources */, - 2114C09A845128DD2D7E722EE2E240CC /* target_index_matcher.cc in Sources */, - B996E246F1933069CB948F5FA23DA7A6 /* task.cc in Sources */, - 3E8D7588C3BE6EF2987BEF1C2E381DA7 /* testing_hooks.cc in Sources */, - 8ED8B0327D29936C359D53A7C7CAC495 /* timestamp.cc in Sources */, - D836E9D5B23F76F7095BB170DBAF5EAE /* timestamp.nanopb.cc in Sources */, - E26A3E041E41680FC51229AE1DF7D25A /* timestamp_internal.cc in Sources */, - D0A432E76A6A02A62A42D95A5ABF6A67 /* transaction.cc in Sources */, - 4C3F72B32CE6C5271B213A32BC64F73A /* transaction_runner.cc in Sources */, - 20B3E2FB043F3A36B9407BDD98A851A9 /* transform_operation.cc in Sources */, - 469576A9EBDED1C3D42AD33CBF785BE2 /* user.cc in Sources */, - 58481EC916C66550CB26EC27C180B3CE /* user_data.cc in Sources */, - 0E32045EB2CA047F00B2929561A65F10 /* value_util.cc in Sources */, - F9D98DD811BC2BCAAD658BABB222EC08 /* verify_mutation.cc in Sources */, - 02B590B42CD50A53968A4E5E7D9EC86E /* view.cc in Sources */, - A78C2CC5ACF98290DA3F93CBD285832B /* view_snapshot.cc in Sources */, - D03EA4ED2CCF4765C2B02B85262D08E4 /* watch_change.cc in Sources */, - 3DB9B3496EB0C857A5171DBB54EF8E3B /* watch_stream.cc in Sources */, - A51A5476C0E78DE16CEB1521A3EFA7EB /* wrappers.nanopb.cc in Sources */, - 947E302CDA616BEB3D9A8592F31864AF /* write.nanopb.cc in Sources */, - C4227B003330289E62D865A50C1708D3 /* write_batch.cc in Sources */, - 3C50FF122EEFDEF5D65BB50B782C2F44 /* write_stream.cc in Sources */, - 2038AB4EB06AB073D0BC42EF13E82DA2 /* writer.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1EF2CFBE7E39B216249EA912629DBF5A /* Sources */ = { + 1A16EA96A09C69A17714A102F973F536 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; + 203AE2BF728F74AFD7287B48B17714ED /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 20BE7B8AC8CC25F08110C0D7B15F31F4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A23FB54B5E68822E2CD5AC5E7AC87D6C /* FIRAnalyticsConfiguration.m in Sources */, + 1CB1FB3CFCC8C8F3CF76D8CAF739E429 /* FIRApp.m in Sources */, + 8FEDC38B18848235CEBA849D22AF2361 /* FIRBundleUtil.m in Sources */, + 2B272424B4AC4CF88840315B872E2161 /* FIRComponent.m in Sources */, + 2B58463C5EE6C1A8C3532F122AC4879F /* FIRComponentContainer.m in Sources */, + EEE348A66A9C7CD19FF02DE39BF9B428 /* FIRComponentType.m in Sources */, + 0E2ABEC46405637B1ACEE7CCA7D926B8 /* FIRConfiguration.m in Sources */, + F35100D8BC68C56D4D423C599A025C9C /* FIRDependency.m in Sources */, + 37746C1AF82073B928D9D32779563CED /* FirebaseCore-dummy.m in Sources */, + E55845F281B3BDBBCD1C434CCEC1661F /* FIRFirebaseUserAgent.m in Sources */, + C15DE1937DAE891062974CC1AE7DE5FE /* FIRHeartbeatLogger.m in Sources */, + 2BD48D482288EF07255295AE8E578101 /* FIRLogger.m in Sources */, + 11D42D0E738B9753B4D04DBCB2CDC503 /* FIROptions.m in Sources */, + F4A801D1447A4D1F30E18F9DE9484528 /* FIRVersion.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 277C3B3F937C6D40D2B777A164FAB89D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -40365,55 +41267,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 282EC712F9103E502129A2089E8B860D /* Sources */ = { + 2C174B4877E7B042CCB95BE9AE65BB4A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 326F4846C0B0E9422A020C6BCA36D2B7 /* placeholder.m in Sources */, - 5A8E93B8B119FA250429248D04E133BD /* RecaptchaInterop-dummy.m in Sources */, + 020A31FED354F66E8D015B809990741B /* FirebaseDataEncoder.swift in Sources */, + 7F1719E6413471B63191AF8FA2F81054 /* FirebaseRemoteConfigValueDecoding.swift in Sources */, + EE6B32BB692DC05BDC0F12748C023616 /* FirebaseSharedSwift-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28366436370B458876F0F56B7F427D53 /* Sources */ = { + 2D75C0064B14ACEE7969536EFE974C00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3183ED906873DE4220D0F01D8E3D0143 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 332C0C8179203B87AC6CAED0007745B8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3486E26D060C45E393C964A4920AA2C0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 38430C70B8BD4D411C447659DD069F0C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6CC0B4D320B73B217205EF9BEE1F13B0 /* GTMSessionFetcher.m in Sources */, - BF20413C2693E34A63A078333E0F06B5 /* GTMSessionFetcher-dummy.m in Sources */, - 88482540DAA3FEB5D6CA7E8E650C6846 /* GTMSessionFetcherLogging.m in Sources */, - 62051EB337C9BD982D66A03EEB1A8168 /* GTMSessionFetcherService.m in Sources */, - DEF6E75E28C1D9963FD58772DD58D1E2 /* GTMSessionUploadFetcher.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4BB76B024D854BF05C17FA65706B2CDD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -40483,1058 +41353,94 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 50826211F9B6714068EFE5B634F08903 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 117E4C4164BD70DBD917C31EB4DD270B /* Promise.swift in Sources */, - 56F53EE0CD68A6DCF67669431A14D4B8 /* Promise+All.swift in Sources */, - E29235EFEC8F30F3EC6A9C4B215EA41D /* Promise+Always.swift in Sources */, - 238AF0809C346CC270E69EAD3E077665 /* Promise+Any.swift in Sources */, - E1C46F80F3F3C4C708BF8219187AB738 /* Promise+Async.swift in Sources */, - 2F38075D08E11CAA48DAE1AEC480D53B /* Promise+Await.swift in Sources */, - 97C14659F83A0B5EE3E39FC4465D3AC5 /* Promise+Catch.swift in Sources */, - 9A238D1C5EA55853FA50D1762D2080BE /* Promise+Delay.swift in Sources */, - 250F6E040D2E346249368BA8C0E17714 /* Promise+Do.swift in Sources */, - F6FA719245B24447E3CCDB33DC6EDA82 /* Promise+Race.swift in Sources */, - 675657D335310A1992B0EFDD63F977EA /* Promise+Recover.swift in Sources */, - 5A2A48582656FE566EDE75E0FB823310 /* Promise+Reduce.swift in Sources */, - D4D7A6BD45A7AC8492A115DB2FC0AC8F /* Promise+Retry.swift in Sources */, - 192CC66A4667B1D0BAD58D8BB02F989D /* Promise+Testing.swift in Sources */, - 9423B50ED9FC669A6F31BC1337D6BDE0 /* Promise+Then.swift in Sources */, - 0161D9F94F33EAF7CB79420FFA1A56CC /* Promise+Timeout.swift in Sources */, - 967CCF24548E545E3B67C68402F2E70D /* Promise+Validate.swift in Sources */, - 506D51F76390770FBF68ECE67B3B8051 /* Promise+Wrap.swift in Sources */, - B087F56A21F4D6C3D53F374A6B497378 /* PromiseError.swift in Sources */, - 68B6410BB4359763D00217AD140E0AAD /* PromisesSwift-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 52B8635C481669603C2F5AA3952A032D /* Sources */ = { + 4C4CBEBD0B7610A181FA793B95D7B2C1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 59E1DB2FFE2D4EEEFD10F16AEA5F83AB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6CF7987112ADF47B99DBBB7784DB384A /* accesslog.upb_minitable.c in Sources */, - D192CF1DB362E3E3DAEADB6727BCC781 /* accesslog.upb_minitable.c in Sources */, - DC5C2E1F21DAB49B3E437423A85EC142 /* accesslog.upbdefs.c in Sources */, - 53837F57D87C6775E30501D902DB48A2 /* accesslog.upbdefs.c in Sources */, - 83E65345936B9475A284C90C8639946F /* accessors.c in Sources */, - DC1816D94ECB34BAEBEF13F9D62D65FE /* activity.cc in Sources */, - 5AD3DC26AA9DF42337914C423B83F809 /* address.upb_minitable.c in Sources */, - 703256D5642C8F70BF1BBA44540CD88A /* address.upbdefs.c in Sources */, - E7D6FA26FCFF2A6E10C5510C2ABE056A /* address_filtering.cc in Sources */, - 2345944110A79AA075CD4018CA4650CA /* adler32.c in Sources */, - 6172767165F155A0B127065D0FF42156 /* ads.upb_minitable.c in Sources */, - 1D4B96F5912A1D76B6F089612B9792FB /* ads.upbdefs.c in Sources */, - D092F8445EDC9CED97A8CE50E431CD89 /* aes_gcm.cc in Sources */, - 8F4FA472427471C192A6DFC5A8338B1C /* alloc.c in Sources */, - 5F21F9A55D579C445351348E3B20BACA /* alloc.cc in Sources */, - 20F6CA80C443DAB5EEA65A92A1239461 /* alpn.cc in Sources */, - E18DED8F520E449357F748ED5EF2B1CE /* alts_counter.cc in Sources */, - 6BDD180882EC6686F5DB5AC91DAD298B /* alts_credentials.cc in Sources */, - 0603A9150FC17EE81D2852385962E2EE /* alts_crypter.cc in Sources */, - EE1BEFB109242710F1F40DC1F24B6C61 /* alts_frame_protector.cc in Sources */, - 01BAB9D276C82446BB252F7D711BE907 /* alts_grpc_integrity_only_record_protocol.cc in Sources */, - 732ACCE4C4213FCF73EF4A02BE34418D /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, - 5F1405B4C931BB2D267BD15ED670C0A1 /* alts_grpc_record_protocol_common.cc in Sources */, - 267A728ABD3BDD95ADA22668958AD8B1 /* alts_handshaker_client.cc in Sources */, - 5E78F4BDA8F5B839AFD92680E5901954 /* alts_iovec_record_protocol.cc in Sources */, - 651585FC1235804ADEDBDF79A07F2E10 /* alts_record_protocol_crypter_common.cc in Sources */, - 68137E8A81D4C3A4C5BEE4CCC9603B8A /* alts_seal_privacy_integrity_crypter.cc in Sources */, - 4C1407C47F98BD353A95A45732C7A587 /* alts_security_connector.cc in Sources */, - 03581F85B1BDD1DD9AFB476190F76124 /* alts_shared_resource.cc in Sources */, - 7E12EE551708C010CABC7069D020B641 /* alts_tsi_handshaker.cc in Sources */, - 1648352E1F69E485C1EEC3CA9CB701E0 /* alts_tsi_utils.cc in Sources */, - 9E198D300B2F3819B38CE846728F5F8F /* alts_unseal_privacy_integrity_crypter.cc in Sources */, - 82CA706B8113932C8A6F86DD45A2478F /* alts_zero_copy_grpc_protector.cc in Sources */, - 64FEDBBBB80EB96DADAAA8E68B546A21 /* altscontext.upb_minitable.c in Sources */, - 51378A6A90885885F7E5E115BA075274 /* annotations.upb_minitable.c in Sources */, - 3292938C3BF6EBE5FCFC75AB52759CE6 /* annotations.upbdefs.c in Sources */, - A537102C764B054511383D13CCD5E084 /* any.upb_minitable.c in Sources */, - 741E8C726A63A8481AA0A8899F17C0AF /* any.upbdefs.c in Sources */, - 5B57A521C9B03470A9AAAED2FA6FF56D /* api.cc in Sources */, - A46A5C22868AB941B034199D26AE5382 /* api_listener.upb_minitable.c in Sources */, - 733349D5CC59BFBAEF3DF357ADEDA21D /* api_listener.upbdefs.c in Sources */, - 3909BB6162FDC3D1A5AB066973E5EF7E /* api_trace.cc in Sources */, - 3F6355841871DC89496D42BA8B909A6F /* arena.c in Sources */, - BA9505745D5A010C83D952CD9B1E6811 /* arena.cc in Sources */, - 0C1A8ACAA61DB138E60A5D9D38D94E65 /* ares_resolver.cc in Sources */, - 7EA5856566F974F377D0BACD95E730E4 /* array.c in Sources */, - 5918A099AAFDE22A4BA7EC9D31B7D01E /* atm.cc in Sources */, - 9363FBE90FB1B2155E84B98D00CA0715 /* atoi.c in Sources */, - 7334FDBFDBEF84D2154CD1D4E1BF6440 /* audit_logging.cc in Sources */, - 3EE668E54A641E3CA18BBD5EE905F1D7 /* authority.upb_minitable.c in Sources */, - A6FABCF5B3EB28DC245281523D30FC5A /* authority.upbdefs.c in Sources */, - 14E8604CCB8BA7367FB3FA259A3C8AE6 /* authorization_policy_provider_vtable.cc in Sources */, - 2209C672791296D6A7F7FD72D8CD0A9F /* aws_external_account_credentials.cc in Sources */, - 8D1474A572D94D0608B37A4B30400570 /* aws_request_signer.cc in Sources */, - 08F467070435E753E073EC9487EF33C6 /* b64.cc in Sources */, - 823524D7E318E85ED22EB048E10A6D1C /* backend_metric.cc in Sources */, - 09A98AC9F8B966E21C9986F547D457BB /* backend_metric_filter.cc in Sources */, - B03DEA890F591839F4846D8CF099F612 /* backoff.cc in Sources */, - 2FABEDCE87175485036590E077EEDD8F /* backoff.upb_minitable.c in Sources */, - AE2BDA6D449B13523121E1A9DC59A215 /* backoff.upbdefs.c in Sources */, - ACBF6AA41E2AA4ED2E7AF6C116C20B47 /* backup_poller.cc in Sources */, - 45E70083DEEDCCC9BF6F88B7C3F6B850 /* base.upb_minitable.c in Sources */, - 9F096D7FDB850D51674B91A8435D2FD9 /* base.upbdefs.c in Sources */, - 11183F01C286B06929A9886A4CE6400A /* base92.c in Sources */, - F5C8CE71EF58A3EC92B6B2FB08663FAD /* basic_work_queue.cc in Sources */, - F384950A48EA9CD58BAB375E8B743393 /* batch_builder.cc in Sources */, - 6797448377DE95CEF858C2EB5DC33D8F /* bdp_estimator.cc in Sources */, - 7B64AB9714E69E428686D97889AEFEF4 /* bin_decoder.cc in Sources */, - B44DC3CA533408F10A9ED9F6B4E36ACA /* bin_encoder.cc in Sources */, - 61186EC55095355FDB16784182F23601 /* binder_resolver.cc in Sources */, - A80619B6C8A1BE018D4ACDB05D1B335D /* bitstate.cc in Sources */, - 1D75DF605B8B0FA5684316E463C0A9A5 /* bootstrap.upb_minitable.c in Sources */, - 2A5C627B151CB2576B9513462A5764B6 /* bootstrap.upbdefs.c in Sources */, - 4608CC60E7ABBEB051F3721875509E94 /* buffer_list.cc in Sources */, - 105E9F2062DBB7BF7CD59E4DE49C0D64 /* build_enum.c in Sources */, - 09C4D3B17FF73F4794579CFAA3776C24 /* builtins.cc in Sources */, - CCCB10C0760D6DE5A5389EB227730FD3 /* byte_buffer.cc in Sources */, - 92681BD2E96AFA40B5B38FE9DBB794C9 /* byte_buffer_reader.cc in Sources */, - C3FEA1EA43D1F5F47C9F12BE1735A905 /* call.cc in Sources */, - B3F3C485ADD02BACAD6FB31FA741C4BF /* call_combiner.cc in Sources */, - 4A8AED5810EAD9C427950F6DD653B672 /* call_creds_util.cc in Sources */, - 2BBFE178E13EE2CBA244542C096A03FA /* call_details.cc in Sources */, - FE73481A415038C545029950AEEDE619 /* call_factory.cc in Sources */, - 24450A446F1827485EC68539D9C01103 /* call_filters.cc in Sources */, - 0FA19E8E37F76CD9075E1CCF7EB69CDD /* call_final_info.cc in Sources */, - 537659D4FF14D5F0E1DA17E489E4CB26 /* call_log_batch.cc in Sources */, - 5B0BE2EE9E68CEE913379411B8BB7828 /* call_size_estimator.cc in Sources */, - 295928D0D558D84C8EED06CCB0C1ECA2 /* call_spine.cc in Sources */, - 634CB905B6EABE0C4323434397433C47 /* call_trace.cc in Sources */, - 36E37C5A117280FBAC17728371C67957 /* call_tracer.cc in Sources */, - D1D3F6537F73287E8A2DC3EA2E2AEED7 /* cds.cc in Sources */, - 369CE63B8154C3BEA399DE6B7F0D2D4B /* cel.upb_minitable.c in Sources */, - 76A7BD8499B92ACB9653B260AF2BA3F0 /* cel.upb_minitable.c in Sources */, - 7E165B7E05A6552333487B2DC8E3CB4C /* cel.upbdefs.c in Sources */, - E847752437304AE4ACC3DFA6D2B4EDD9 /* cel.upbdefs.c in Sources */, - A70C2F6BBBEF6A33798B9CC1019C536D /* cert.upb_minitable.c in Sources */, - 01CD92F5B7126DF8B47AB31F70156AC1 /* cert.upbdefs.c in Sources */, - 0B1380585024BC05AAA3982DA1976217 /* certificate_provider_registry.cc in Sources */, - D513E9042F71DFBDF51838B4AE9DBA0F /* certificate_provider_store.cc in Sources */, - 8765D4A985E4FDE623979609D283BAA8 /* certs.upb_minitable.c in Sources */, - 878D9F5DBC6BDEF6EB5B1CEF3988341D /* certs.upbdefs.c in Sources */, - 559388E2C4BE188D320D64EB684227F0 /* cf_engine.cc in Sources */, - ED35C0C4B6591A2FA3443745B831DF9A /* cfstream_endpoint.cc in Sources */, - 610E4C05DFD9EE84489FF66958218F3D /* cfstream_handle.cc in Sources */, - 41346AB34B1A95B33F3D7A7EF0E2024B /* channel.cc in Sources */, - C885DBC5F5D2F44785C86DC43D08D145 /* channel_args.cc in Sources */, - 13965E029D43A5336A48B9DA7454A9A3 /* channel_args_endpoint_config.cc in Sources */, - FC94C6F78D6DCCCD4CFFDFE4D79C3EFD /* channel_args_preconditioning.cc in Sources */, - 946CBEC498B457B5239F2196A428A67B /* channel_connectivity.cc in Sources */, - 68B3E8A4ADC0BDFF502668559AA6C652 /* channel_creds_registry_init.cc in Sources */, - 7CF60A94308F186F9CA6FFC8C05BB15A /* channel_idle_filter.cc in Sources */, - 0AF4DAC33EB573891E911D7B31C7AD80 /* channel_init.cc in Sources */, - 136B56B4C6061C72AD26BC8C8257A1E8 /* channel_ping.cc in Sources */, - 85C26A0CEFB1C6F7A6EAF6A4943B55F4 /* channel_stack.cc in Sources */, - 7A518295D8280FFFD2527EF2A113D821 /* channel_stack_builder.cc in Sources */, - CCE9B6AAFC762F20F64E186FAD7F57A3 /* channel_stack_builder_impl.cc in Sources */, - 41F6072E1D13F8C3739B78D59963DA3E /* channel_stack_trace.cc in Sources */, - EC28E3054AF1F140AAC434D851F550D6 /* channel_stack_type.cc in Sources */, - 0C5592E0930D8558991C17B6E33895E0 /* channel_trace.cc in Sources */, - C5FEAA79F2E410DA803174AE6E2DBE91 /* channelz.cc in Sources */, - D17E11F09D7BF1F0B350BF26D44F322E /* channelz_registry.cc in Sources */, - 482E1DCB2020012578D76F0FF0E2FD02 /* check_gcp_environment.cc in Sources */, - 3C01E18562AE38A4278E5EAC1C5E6710 /* check_gcp_environment_linux.cc in Sources */, - 4E7421D5E6BE05A676363F5ACFAAD5FB /* check_gcp_environment_no_op.cc in Sources */, - 74754C3D2B8ABE915F77EAF019494F1F /* check_gcp_environment_windows.cc in Sources */, - C9E9EB10AC8DD878BAB3A76403925C78 /* checked.upb_minitable.c in Sources */, - 34767DDC279BB0BB7FFC65B7F4F2DE7B /* checked.upbdefs.c in Sources */, - 727BCE6A6E4EF98E7247CDFF3A4E0C58 /* child_policy_handler.cc in Sources */, - 09621ED5128DBAFEFC98B36879F32631 /* chttp2_connector.cc in Sources */, - 3A8F7F1C922915E8878A95B21132C118 /* chttp2_server.cc in Sources */, - 2F06179D10D89BAAF084696306C05955 /* chttp2_transport.cc in Sources */, - 4CAF76D5A52BFE1922F6232680A3195F /* cidr.upb_minitable.c in Sources */, - 73492B3E523082B661DF3A41DD08145A /* cidr.upbdefs.c in Sources */, - BB524E2FF2EFD7B83A0A37CCE9C9D54B /* circuit_breaker.upb_minitable.c in Sources */, - 0D2C3CBFF9446F271480CE8B9CCCB453 /* circuit_breaker.upbdefs.c in Sources */, - 506ECF1A9ADE132E0B6A3E0AF952652E /* client_auth_filter.cc in Sources */, - D2874C7E4398CC02AAFEDB1C615749E9 /* client_authority_filter.cc in Sources */, - 16CBF708814A5ED1BE95692A9DCC2C7F /* client_channel_channelz.cc in Sources */, - CE76AB80689C07855D44C817B4970E05 /* client_channel_factory.cc in Sources */, - 3038853D4BDA6B289A9A2998653CAC53 /* client_channel_filter.cc in Sources */, - D6CE469C7187855B41111CC3DED8BB3B /* client_channel_plugin.cc in Sources */, - B732246B082F45E0FFFA078C234D88B1 /* client_channel_service_config.cc in Sources */, - 95DD18FE3360C5DD7A1E454A1828C56B /* client_load_reporting_filter.cc in Sources */, - 58F8806C92D64ABB15E8F0774A06BC75 /* client_side_weighted_round_robin.upb_minitable.c in Sources */, - C7833C67D74D569DDD77766489044874 /* closure.cc in Sources */, - 2DDCB4C12E16DF24EC7D115761675587 /* closure.cc in Sources */, - 9E83F8236840590767883C651ED74EA3 /* cluster.upb_minitable.c in Sources */, - F74E42EDE3646433D4E3728A8F6F295A /* cluster.upb_minitable.c in Sources */, - AC0154CF27F4BA1DC75874371DDCDB34 /* cluster.upbdefs.c in Sources */, - 11BE0DDDE41AE423DB4A6B1DCE0750FC /* cluster.upbdefs.c in Sources */, - BB0C8FB744771D476326115EB25C4A31 /* clusters.upb_minitable.c in Sources */, - 5C70A3AC9A13B4BE1C092E04BF23814A /* clusters.upbdefs.c in Sources */, - 89EAC1EC3CB4070B89BD2282ABBAA624 /* collection_entry.upb_minitable.c in Sources */, - A62E45CA93EE006269C60963DC194845 /* collection_entry.upbdefs.c in Sources */, - 60F4DB8174100D46BF256C56CFBFFFEC /* combiner.cc in Sources */, - 0B704C96CE323E1EF877F67E42906652 /* common.c in Sources */, - 3F384155F32476EE7DC9352C8C860B16 /* common.upb_minitable.c in Sources */, - 7220A25D7CC2EF4C3788DD1710DC2233 /* common.upb_minitable.c in Sources */, - 3BA978E2A5403B86F4CF6120CD0C712A /* common.upb_minitable.c in Sources */, - A2EEDB070726D18A0BA053874FD4BE09 /* common.upbdefs.c in Sources */, - 77317A23D324D186CEB98C2483B25E14 /* common.upbdefs.c in Sources */, - 7639B85BA9E9CF885EB6755EF4151F04 /* compile.cc in Sources */, - A0A310FA1BAB4AAA52602D2E536BDAE2 /* completion_queue.cc in Sources */, - 25B7AD019C0A055D8D3423BC05EE1753 /* completion_queue_factory.cc in Sources */, - 0F1C884E0FF6135B4826B11DCA7DE75E /* composite_credentials.cc in Sources */, - 4C629CDC0F4B45E595DDA6F73462F748 /* compress.c in Sources */, - 9C32C9629BB14DA815C8E6998E287B7B /* compression.cc in Sources */, - 242E59FEA39A8DF4DD0B34F09AC6F897 /* compression_filter.cc in Sources */, - 0933A204DA4F341695D5E80C303BB51C /* compression_internal.cc in Sources */, - F54A63AD62F61F0E903D4D0FBED29DCE /* config.cc in Sources */, - E0B07A9B5EDD74307C83F36F01803605 /* config_dump.upb_minitable.c in Sources */, - 0C73E21B01FF51DF8F439E7586FC0105 /* config_dump.upbdefs.c in Sources */, - F608088AFAFA8A013A36E02DF5D4F218 /* config_dump_shared.upb_minitable.c in Sources */, - FAA8A1426CF64D47A7BAB5ED89CAD47E /* config_dump_shared.upbdefs.c in Sources */, - 4FE368D06006D8A12EC61D81AE2F543F /* config_selector.cc in Sources */, - 08AD9A7482923123D7D86E6C68544598 /* config_source.upb_minitable.c in Sources */, - BAAEB700B43B5686453C070E4404FB6A /* config_source.upbdefs.c in Sources */, - 196134EA6E3DF57175A8158FAD0BDF63 /* config_vars.cc in Sources */, - 778874D75CEAAB70AE5412A49B561536 /* config_vars_non_generated.cc in Sources */, - ABA965A7878EFDDB92F035F340F9613E /* connected_channel.cc in Sources */, - 6569717DA80EEAEC9EC28200C3E2FFC0 /* connectivity_state.cc in Sources */, - FD725E72A8390A3C8A9354A8C8F1E949 /* context_params.upb_minitable.c in Sources */, - 49DC759A70038A599BB5AB3CE70F09FA /* context_params.upbdefs.c in Sources */, - 487DFE0A3DF5929A940B4D16F72D492D /* cookie.upb_minitable.c in Sources */, - BDC2E4F917B1EB9675180D2E307A1DA9 /* cookie.upb_minitable.c in Sources */, - FC5F3B2283B23987FE84731DD796F3A8 /* cookie.upbdefs.c in Sources */, - 2852270777F1C1E3CD1745B6B0349AC8 /* cookie.upbdefs.c in Sources */, - 5473103E88A20D3A4E29CD014ACE6B9F /* core_configuration.cc in Sources */, - 52DDA8D342B2DFCD98A0DCBE053F8306 /* cpu.cc in Sources */, - 821F197391C0136E9DB7B1185D81BE6B /* cpu.cc in Sources */, - 20D4528E5968B018DD4F3395DDC494D4 /* cpu.cc in Sources */, - EB5F6091098461ECDE54F886EF35A8E9 /* cpu.cc in Sources */, - 89CA1E9FB12D194C6B5FE23D3A049B71 /* crash.cc in Sources */, - 27845B8ED249B4C036055BBD536280B6 /* crc32.c in Sources */, - 32912F29641BCD3F143CD71EA1818545 /* credentials.cc in Sources */, - 136D8EDCD79C4C0C0274B4705EFDF69E /* credentials_generic.cc in Sources */, - F8B8840FC45F1E15D32CDDDD8C17C230 /* csds.upb_minitable.c in Sources */, - D191DF53AF85F3EB637728C706C9586E /* csds.upbdefs.c in Sources */, - 423EA1431E568F08BFDA7DEC894DCD95 /* custom_tag.upb_minitable.c in Sources */, - 42066032EB59AC5493BA0CE2D3524799 /* custom_tag.upbdefs.c in Sources */, - E74B1616D0C03A256D0812880C116887 /* datadog.upb_minitable.c in Sources */, - 03AEABE4FFE421A0FFCE03F79E51E6D6 /* datadog.upbdefs.c in Sources */, - 171F258721B95C24B48F5FFB45A05D06 /* deadline_filter.cc in Sources */, - 569AC46853BB741C9C8A46F9123AFD3F /* decode.c in Sources */, - D84210989C06833963BC0E6D0B93CEB7 /* decode.c in Sources */, - 2A151DB3DB17EB946034C65D980F1F99 /* decode.c in Sources */, - 998A1D1BE44BB0CED0273CC27377C83D /* decode_fast.c in Sources */, - 8347CB1E6AC56FD52DF27A44442261D4 /* decode_huff.cc in Sources */, - 3B607615F5289FF44E88FDFF3BA22918 /* def_builder.c in Sources */, - 4EF967AD42FD6FBD2F69A1621CB3E8EE /* def_pool.c in Sources */, - F6AD86094C70AD1BB23CB934D0E6317F /* def_type.c in Sources */, - 1124F17DA33F36DF5AA00FA1E25085B5 /* default_event_engine.cc in Sources */, - 0E01D3A751AF128E617B048820E363FE /* default_event_engine_factory.cc in Sources */, - 674786AF87D2E7C2F0E2AC7E6E79A4D1 /* deflate.c in Sources */, - 3D860CDFA1DBEBEED69557657F81A7AB /* deprecation.upb_minitable.c in Sources */, - 1D60FAA93C46109F93764733D28D99DA /* deprecation.upbdefs.c in Sources */, - 8B4D9FE422BFC1E8E50CDD71E16030F2 /* desc_state.c in Sources */, - 0DC03C3AADDF26685B883021CDEBEDB8 /* descriptor.upb_minitable.c in Sources */, - A1D6DC5777CA6435AE9DAE27196765CB /* descriptor.upbdefs.c in Sources */, - 4E8EB5CB9962AE561F49AA3B18BA3FCF /* dfa.cc in Sources */, - F96DF222353B9744981AC7FAD929B278 /* directory_reader.cc in Sources */, - F8183EDC698E465CBAA87CF980BEF72C /* directory_reader.cc in Sources */, - 2BF4F27D1BCC62AA02445E4A19788B3F /* discovery.upb_minitable.c in Sources */, - BB2E7B44A98BD32E36AA349C0BA3A560 /* discovery.upbdefs.c in Sources */, - 8D09551CB35CC8CB8804446302B93618 /* dns_resolver.cc in Sources */, - F111A063BA24082742E89178D7F2F75E /* dns_resolver_ares.cc in Sources */, - 986EC7208CFE0199FFD0571359E0887E /* dns_resolver_plugin.cc in Sources */, - 903EC418C054944218466EC7D7D116C1 /* dns_service_resolver.cc in Sources */, - 54159502D6897538C46A215145E3CBBF /* domain.upb_minitable.c in Sources */, - 1519D4F8D1B35C74EE64267698747A95 /* domain.upbdefs.c in Sources */, - 62F0014DEDFFA41893FFAEEF29E883CF /* dualstack_socket_posix.cc in Sources */, - 5A78267374188DF5C6B82A01D82CAB93 /* duration.upb_minitable.c in Sources */, - B53F1C49B9A8234E0BBBA7EB3B816532 /* duration.upbdefs.c in Sources */, - B30388DC0C057C48D3DA9F8BB302AF53 /* dynamic_filters.cc in Sources */, - D0BB88E8B6B19FDA0A4D3E77C0CE42C1 /* dynamic_ot.upb_minitable.c in Sources */, - 7274CE7F84AD7951ADA8AC3172E75FCD /* dynamic_ot.upbdefs.c in Sources */, - BDE1017F403F3FA9D0AF1DB18A876628 /* empty.upb_minitable.c in Sources */, - 7E40206489338F8F407CB4D1E26A6A4C /* empty.upbdefs.c in Sources */, - BD1AEF98283364FBD2F5C68A9867A1A8 /* encode.c in Sources */, - 32850268074F9B695F61722AFB79C54B /* encode.c in Sources */, - 7BE23680C718499D8507DAC2892C1535 /* encode.c in Sources */, - D0D70420856A76FE5ADE7DB0B85F6004 /* encode.c in Sources */, - E2D9CF72A4C4C70145E837A0D7EE2827 /* endpoint.cc in Sources */, - 456CD16A0F04BB933D4C6C87E6487D29 /* endpoint.cc in Sources */, - 95681D2FD44E4B34312FD63D7CD31E87 /* endpoint.upb_minitable.c in Sources */, - F0FE4A70A2877AFE285377400E3A277F /* endpoint.upbdefs.c in Sources */, - 6B6E618528103F8615D4CFC8B845EEC5 /* endpoint_addresses.cc in Sources */, - F63BB7369DA658A4DBE971A8D6ACEC4F /* endpoint_cfstream.cc in Sources */, - 3C333F9DBB73992723F2168E3A5D4AA9 /* endpoint_components.upb_minitable.c in Sources */, - 7D91CC2F2C1F7A0FED4D273E46B0B994 /* endpoint_components.upbdefs.c in Sources */, - 5735F1415972B85E065AD899FD425365 /* endpoint_list.cc in Sources */, - 030814816B526AE862CEF31F743921A6 /* endpoint_pair_posix.cc in Sources */, - 14894233BABF9F8F87B56796A9DA036A /* endpoint_pair_windows.cc in Sources */, - DFD7F7E74B3F20136F3E1B3665086725 /* enum_def.c in Sources */, - AFF87674F5F005332022007FBD5FDD7B /* enum_reserved_range.c in Sources */, - 2FAB5D02FB5A0CC4C82F505D3127F306 /* enum_value_def.c in Sources */, - 129758B6905FFD00E11113E063222498 /* env.cc in Sources */, - B0EB80AF663D2B63E66CC480E2A61E27 /* env.cc in Sources */, - DF230A301627E07371236A3C797AFF8D /* env.cc in Sources */, - 9A8F5213C91712CFC28D94729E088C2D /* eps_copy_input_stream.c in Sources */, - BC0706740853CCEBD52413D0A006978E /* error.cc in Sources */, - D8A66E5A6D843E3B8C81D99500460E68 /* error_cfstream.cc in Sources */, - A634D72041FCBBC7236DE436FD1A6C86 /* error_utils.cc in Sources */, - D93C35C7DD70DC2C1E16FF54E4B911AA /* ev_apple.cc in Sources */, - D2A42350BCAD59B8745644007E5D292F /* ev_epoll1_linux.cc in Sources */, - 9D8D13D1DDB26974B1BE837C834F7CBB /* ev_epoll1_linux.cc in Sources */, - C5B1996F88C1D4D2016A33CAD733D429 /* ev_poll_posix.cc in Sources */, - 6F8459F4D76C1B48696F8FABBF135F20 /* ev_poll_posix.cc in Sources */, - CD4A2AB43DC0BAEE8A20847772BDC1A4 /* ev_posix.cc in Sources */, - DC50410DC68A7682F7C3F74975A18515 /* ev_windows.cc in Sources */, - FCCEB4756A7E406F998867164CFC5731 /* evaluate_args.cc in Sources */, - 37E51629F94B9C7EA46C2758B9655D42 /* event_engine.cc in Sources */, - E10186BD0F0F1350E79662BBE1EFCDAE /* event_engine_client_channel_resolver.cc in Sources */, - 454C4B2EB57F3DB80ECFABD0C095143D /* event_log.cc in Sources */, - 130464AF7C27FD4AC25836624CA21708 /* event_poller_posix_default.cc in Sources */, - 55F7D81375529030BA1B0BD997387640 /* event_service_config.upb_minitable.c in Sources */, - 1170C539DE7F4F7D54287F915D25E256 /* event_service_config.upbdefs.c in Sources */, - FE9FDD5ABCF77DE013BD1B7CC60A7E3E /* event_string.cc in Sources */, - DF409EDB6424C7D826CC4DBD6CB85C11 /* examine_stack.cc in Sources */, - 076F9E8747E2B385C7374FE3A0E13008 /* exec_ctx.cc in Sources */, - 2E3BCD8B2F66321AFC15312B803D5105 /* executor.cc in Sources */, - 51500905EBA021B432D7E4BE701A1463 /* experiments.cc in Sources */, - 6E04CBBBFF68B790DFEDB984EAA8CC39 /* extension.upb_minitable.c in Sources */, - 4C37A0BB79E2C8743000E6F61C425353 /* extension.upb_minitable.c in Sources */, - D01A37D520A07423FC72BA42CC6DA0B8 /* extension.upbdefs.c in Sources */, - 947C0EADDBF39353F4657359116ECB91 /* extension.upbdefs.c in Sources */, - 1888CBF619C461815E69C709680193D5 /* extension_range.c in Sources */, - 3E087B9A815E5448DECCAD61830441DD /* extension_registry.c in Sources */, - 23E57CD717B7D26DEF4E4F28F657727F /* external_account_credentials.cc in Sources */, - 991C519A101ECBC24169FD38668E124B /* fake_credentials.cc in Sources */, - BF588FE3972B213DF0A9C0306FEF223D /* fake_resolver.cc in Sources */, - 4B3418567A5C99EC59597C2BCA0DAD63 /* fake_security_connector.cc in Sources */, - F5FF54BEDBD0A2EDBD1F882356B4CE34 /* fake_transport_security.cc in Sources */, - 8BD64081A37260CBBF5490E19143999B /* fault.upb_minitable.c in Sources */, - 069A412F5E46F1396730EBCD89EAC09D /* fault.upb_minitable.c in Sources */, - 4B67333CF51FEC3EAE07E45563B7DEDE /* fault.upbdefs.c in Sources */, - 69EBAA0276E355AD245A369924665D87 /* fault.upbdefs.c in Sources */, - E64E0E010F580521E54E0925B3FB6E6B /* fault_injection_filter.cc in Sources */, - CDE59B4C5B0F10547E997699AA080AC7 /* fault_injection_service_config_parser.cc in Sources */, - 3B54CEB9CF203FE92BD6E4A4C9BA5B8A /* field_def.c in Sources */, - 0F618CC392DE1FC9A7514C81543A7FE7 /* file_def.c in Sources */, - B2C68E383FCED577E284AD495EB8A979 /* file_external_account_credentials.cc in Sources */, - 1A4CD57696EC33BD4F27AB3C01DA3C2E /* file_watcher_certificate_provider_factory.cc in Sources */, - BB406D6D85CF9ACDEE1118294557EC53 /* filter.upb_minitable.c in Sources */, - 5412CD93C3F72BAB7A64A1C9077B129B /* filter.upbdefs.c in Sources */, - 862BEAD948CA151FC162D971F99B1170 /* filter_state.upb_minitable.c in Sources */, - A360C395C3C9AE0D04673FDCEA188F39 /* filter_state.upbdefs.c in Sources */, - 981281D06BF38A701DE4C2C2C436A9BC /* filtered_re2.cc in Sources */, - E60C7E7850732A1E15BEA6D438A10AFB /* flow_control.cc in Sources */, - D664F924D020C92BD7FEA852865F7CA9 /* fork.cc in Sources */, - 330548865897C400762E14EDA7372CF7 /* fork_posix.cc in Sources */, - 2119DB167C3DD0FF3C8AB5D5D2B86CD6 /* fork_windows.cc in Sources */, - 6F1046060B253828D1388874DE67E51C /* forkable.cc in Sources */, - C307DA1C352865B17E42C3E21C51AE16 /* format_request.cc in Sources */, - DD02CD54C1DF487B237348E9A8512A98 /* frame.cc in Sources */, - 6F0ADE6BC26588CC23D884B162AEFF6C /* frame_data.cc in Sources */, - 4D0DA4AD46AEF842260D4BC8F195755B /* frame_goaway.cc in Sources */, - E40E3F84AACBAF918A53872C511ED943 /* frame_handler.cc in Sources */, - 75A6A9186D415A58F78642FA7B1B066E /* frame_ping.cc in Sources */, - 46FD05FB450C928851ED1CE7EDC18177 /* frame_rst_stream.cc in Sources */, - C189C6143DC7343D342155167CC047F6 /* frame_settings.cc in Sources */, - 260C138F0CF8890CDB626509CFAD166D /* frame_window_update.cc in Sources */, - 226C16ECF650B3627F0104F39A168095 /* gethostname_fallback.cc in Sources */, - A3F1ABEDF6BE84D5445E6116CFBD5A49 /* gethostname_host_name_max.cc in Sources */, - 326C38DECBBE05044DDDC00F7A56E411 /* gethostname_sysconf.cc in Sources */, - 406CC08086D9D0DD77800510404835A7 /* global_subchannel_pool.cc in Sources */, - 3FB2EFFBAAB19E8D854316638F69020F /* google_c2p_resolver.cc in Sources */, - 5CB819302B78921C687056F486A59BE2 /* google_default_credentials.cc in Sources */, - 50208B3ED969B48F02A2536D95B0EE08 /* gRPC-Core-dummy.m in Sources */, - CC5403B9B5001FEDDCBF0BD13F44796F /* grpc_alts_credentials_client_options.cc in Sources */, - 0545EF577B2774659E6D67394A1C74A7 /* grpc_alts_credentials_options.cc in Sources */, - 39DD524BC7D5B6538113339DE76CFACC /* grpc_alts_credentials_server_options.cc in Sources */, - E2FAF9BBA284A2DA59DF7D4DC8D56E46 /* grpc_ares_ev_driver_posix.cc in Sources */, - 77F3651B9247B9496E1E837551FC049D /* grpc_ares_ev_driver_windows.cc in Sources */, - 1D560EF3B7B68911A95548AB53BF888B /* grpc_ares_wrapper.cc in Sources */, - B07F5590236E2BC0801191BFD4D33D98 /* grpc_ares_wrapper_posix.cc in Sources */, - 3159B1D607775C0CD846A5CBA37648AF /* grpc_ares_wrapper_windows.cc in Sources */, - 1088F47A6FC41B8BD58A5DB2EDD00332 /* grpc_authorization_engine.cc in Sources */, - FD337A06A62D7A5620560274887B49A9 /* grpc_context.cc in Sources */, - 113FDC01FA79FB9946EC417AD6FC3AE5 /* grpc_if_nametoindex_posix.cc in Sources */, - 019ED89F76EBA3F0C89C4604D6946031 /* grpc_if_nametoindex_unsupported.cc in Sources */, - A5D9C086513395AD6A5CF68C9562F0C4 /* grpc_method_list.upb_minitable.c in Sources */, - 900FC6C8EA6CC54B77D9EBDAE40E1E1A /* grpc_method_list.upbdefs.c in Sources */, - 0036757873EB4531FAAB7BB5169B0D64 /* grpc_plugin_registry.cc in Sources */, - 5CD8B78A1AB561B2B06FE90EAFC7D74B /* grpc_plugin_registry_extra.cc in Sources */, - 6BB7F64A613BF7CC1130F94F73EA03B5 /* grpc_polled_fd_windows.cc in Sources */, - 6B870663F242F8F62A3B62D318CF3D1E /* grpc_server_authz_filter.cc in Sources */, - CDA843511476D4A05999B4FC3B335573 /* grpc_service.upb_minitable.c in Sources */, - EECA347E2C08016E8E376ECFD53D01F6 /* grpc_service.upbdefs.c in Sources */, - 9D9C5F0CD313B99F35B4B58F635311EC /* grpc_tls_certificate_distributor.cc in Sources */, - F606FFF474107901BB0C9237C08F40A7 /* grpc_tls_certificate_match.cc in Sources */, - 076DAC66AC9A1E4AD1028597B66E4530 /* grpc_tls_certificate_provider.cc in Sources */, - A1CA1B3490E74DE871A7E3D5232E8DD9 /* grpc_tls_certificate_verifier.cc in Sources */, - 9B4E1BA5AA272FEFFAFFD69DE56C6B73 /* grpc_tls_credentials_options.cc in Sources */, - F1905A0F456CEE8E8B7B390E2F71B6B7 /* grpc_tls_crl_provider.cc in Sources */, - DCE247C81AE5AED335505CCCC8103C1F /* grpclb.cc in Sources */, - A89C9BB7C048EE9877822E8303946F0D /* grpclb_balancer_addresses.cc in Sources */, - 16A264027616F8D13EBDCE2C9F04FEB3 /* grpclb_client_stats.cc in Sources */, - B02C0BB01A4B80D4D6707CE78B2E47F9 /* gsec.cc in Sources */, - 929A65B3E0462557F80C6FB0136BAB24 /* handshaker.cc in Sources */, - 05C5D60796B7F80368D16FE7D2998ED0 /* handshaker.upb_minitable.c in Sources */, - 9F2468035C35E4B2C7022DC5FB63033D /* handshaker_registry.cc in Sources */, - AEBE4B7FEC844085FC8B91AD12222246 /* hash_policy.upb_minitable.c in Sources */, - F9782E0506AD18D6BDB3C34FCB128367 /* hash_policy.upbdefs.c in Sources */, - 5ADFE0D2637C250E544776FC95DEC730 /* health.upb_minitable.c in Sources */, - 9CFAC34568D63E8D4F19E62AE6D349C0 /* health_check.upb_minitable.c in Sources */, - 112AF1649BC25FF6AA17CAF856317F05 /* health_check.upbdefs.c in Sources */, - 4F9EAA5AFA82F4F8C9B5DC3053DBA770 /* health_check_client.cc in Sources */, - F8EB99C7C5E066ED13EE823575DCA71C /* histogram_view.cc in Sources */, - 314FEE0C3867D66F792888E8A4AE7765 /* host_port.cc in Sources */, - A8A8396DA8BA143F721318D21517356D /* hpack_encoder.cc in Sources */, - 52EDEF6138C06777F85C7356927D76A2 /* hpack_encoder_table.cc in Sources */, - C0DF0114ADFFE25A523BFCD1E3F029D1 /* hpack_parse_result.cc in Sources */, - 1FEAB6878DE05C38C23A68483827FDB8 /* hpack_parser.cc in Sources */, - EA8675038FCBE620282F1461B5D9CB17 /* hpack_parser_table.cc in Sources */, - 17EF4634FA32D151107CCE887A800957 /* http.upb_minitable.c in Sources */, - 040FC543AB6033B922FE33D7BE920382 /* http.upb_minitable.c in Sources */, - ACA119465DB944D6914F5EC1CB87CDB0 /* http.upbdefs.c in Sources */, - 2D846B3910D4C658FAD7479494185AC7 /* http.upbdefs.c in Sources */, - C9D7EE5A731B0DDB012457495CA92E58 /* http2_settings.cc in Sources */, - 320C58CD11AF817DE054A36AF59254D7 /* http_client_filter.cc in Sources */, - 6810645BA4545116EC5106184045AC3B /* http_connect_handshaker.cc in Sources */, - C6590E8018AA3FE1F085F5D1B655EC2C /* http_connection_manager.upb_minitable.c in Sources */, - 22B9BE64EFA3EEFAE3E43E233C15126B /* http_connection_manager.upbdefs.c in Sources */, - 4764FBB146855DC6927852751C4F43E8 /* http_filters_plugin.cc in Sources */, - 43B358029CFCA379539C068816C442AA /* http_inputs.upb_minitable.c in Sources */, - 59BBE2D8124AC9AEAB9064CC35C2FD47 /* http_inputs.upb_minitable.c in Sources */, - BE5758567E223EB4E0123AF60665E802 /* http_inputs.upbdefs.c in Sources */, - 4F234A0CC9442D5CDBB02EEC32AEE5C6 /* http_inputs.upbdefs.c in Sources */, - 9C2176E037B97B838763E20D79037647 /* http_protocol_options.upb_minitable.c in Sources */, - 564F28956E9C5DEB9C46EE4B926FB206 /* http_protocol_options.upbdefs.c in Sources */, - 671B25BC3785A074583490AAE9C8C002 /* http_proxy_mapper.cc in Sources */, - 0D2C0B0F6E35939D6AC5BDB5CDCCBCEF /* http_server_filter.cc in Sources */, - 717ED99F2679D0DC749C3E2671DEC896 /* http_service.upb_minitable.c in Sources */, - C8D0E4A0801961B21B530BF5AAAE5622 /* http_service.upbdefs.c in Sources */, - 10DB368261A6A22B4CEC0DF97A3BEB85 /* http_status.upb_minitable.c in Sources */, - 46950FF78F9044FF05C3F43E3DA8AE56 /* http_status.upbdefs.c in Sources */, - 6161B63355ED9DF24FA24A5181A6120D /* http_trace.cc in Sources */, - EDE80D95C138B9C4CCACC8BD41D91470 /* http_tracer.upb_minitable.c in Sources */, - D66CBF1FE15430A22348676B350D80D7 /* http_tracer.upbdefs.c in Sources */, - 4A732ECACC87559C3D996C8CE3AD798D /* http_uri.upb_minitable.c in Sources */, - 7641C07D5DF02064616C6908BAD7C23A /* http_uri.upbdefs.c in Sources */, - 3B27337AE9E82DDB0C971F4B4F09F3BC /* httpbody.upb_minitable.c in Sources */, - A5A4F75FF9AB5C002F7493665C234DF8 /* httpbody.upbdefs.c in Sources */, - 5268ADD0DB7B8B4FE87682E72FDA9826 /* httpcli.cc in Sources */, - 533318E2260A226CA8958B44F281E197 /* httpcli_security_connector.cc in Sources */, - 9315E31C9EA478436B13CABD70891BF0 /* huffsyms.cc in Sources */, - C9E47E9CE0036C98A8E03C4F4E6524A4 /* iam_credentials.cc in Sources */, - 3DD8B0C730B67BA052F4F4045A09F6F9 /* idle_filter_state.cc in Sources */, - 36A4CB13AA42F119B02D114911032484 /* infback.c in Sources */, - D25D9139019B4C26AFC178956BB6D4C9 /* inffast.c in Sources */, - 87D191EE05DE81AE7868A56EB1418828 /* inflate.c in Sources */, - 70A4D6BD40474F7BAA8793CFB0FCF7BA /* inftrees.c in Sources */, - E1B3E76AD3ACE2D24839022E10B1A393 /* init.cc in Sources */, - 9F8E0C42AECE335493EA3793D4A967F5 /* init_dump.upb_minitable.c in Sources */, - 7DEC01297AAD52383D889E2670D2F026 /* init_dump.upbdefs.c in Sources */, - 134BD62933EC4DFC97507ED547FEB872 /* init_internally.cc in Sources */, - 0FAEC22FE02402D31F051578F53C9B18 /* inproc_plugin.cc in Sources */, - D702ADD515173904DF6EC5415DC6A19E /* inproc_transport.cc in Sources */, - 1C0240026E090487066AC7B5393D5C50 /* insecure_credentials.cc in Sources */, - 86C234EBBDAABF3B8445652D3E5D38E7 /* insecure_security_connector.cc in Sources */, - E6E0A3271110542A0CBB367B0A77058E /* internal_errqueue.cc in Sources */, - 5C7609DD76A9A003A6A8203BE29D6FF7 /* internal_errqueue.cc in Sources */, - 70524B39F96ADC5A5C79445EB8CAB86E /* iocp.cc in Sources */, - F3A5544A72CBE526DEE5B4D3EA278D59 /* iocp_windows.cc in Sources */, - 1787771820C3345E8DAFDAC6A7784353 /* iomgr.cc in Sources */, - 8C18D90D5B7FE0A12634EA5A1803B890 /* iomgr_internal.cc in Sources */, - A177F9D5975D9E324D74D20DBBFE18BD /* iomgr_posix.cc in Sources */, - E92A354B473DEEADAE6225471D9D3072 /* iomgr_posix_cfstream.cc in Sources */, - 910616E4EC71623166C69E7944CFCE2E /* iomgr_windows.cc in Sources */, - F79BA12D5A65B60AFA3DA3A54572D38D /* ip.upb_minitable.c in Sources */, - 2043AF61E609832B2006DED439932E8F /* ip.upbdefs.c in Sources */, - 4F7B20EEC2B7E4297E5BBFCC47CCE4F9 /* json_object_loader.cc in Sources */, - C4FD26D0D5B18E31F75379D16E4E8DF1 /* json_reader.cc in Sources */, - F71870D1547D20A740008417AE653329 /* json_token.cc in Sources */, - AE07FA1337D3A2D40677B0690699B6AF /* json_util.cc in Sources */, - 36E4BCD37CC6F935B2A59A01C7EC9C20 /* json_util.cc in Sources */, - 8FD5C5AC6EF289FD5AFE442267367E09 /* json_writer.cc in Sources */, - 1365696ACAE8DC18556FB8AEE5881FBB /* jwt_credentials.cc in Sources */, - 0570D95ACC720C0C5540D17BB3BF3DC7 /* jwt_verifier.cc in Sources */, - 741C1653F82A5951BD60B031399020A4 /* lame_client.cc in Sources */, - 9FCF41B19FC12CB1F72DB499D0403674 /* lb_policy.cc in Sources */, - CA3261B02E134ABE2610EA3599BFBC98 /* lb_policy_registry.cc in Sources */, - 1D2813078ACFFCA888C5CC8C70FC813C /* legacy_channel_idle_filter.cc in Sources */, - 705243EF78CA6DFE0D3A630E1FD74079 /* legacy_compression_filter.cc in Sources */, - 68BA82847756F9CC91E63F7D67B5A809 /* legacy_inproc_transport.cc in Sources */, - 803E18A30FCDCAD93581CF2006B4DD1C /* legacy_server_auth_filter.cc in Sources */, - D86F605AC39D7ECAB3FB4302A925C184 /* lightstep.upb_minitable.c in Sources */, - 211E465F2E92111C7F526DB6421871B2 /* lightstep.upbdefs.c in Sources */, - A57831B523AF913FDBED958893AABBAB /* link.c in Sources */, - DF72F80FB9E4222F15A779FD17F9B135 /* listener.upb_minitable.c in Sources */, - DC8C15242EAEBAC81E284DE2486529B7 /* listener.upbdefs.c in Sources */, - 9A6A1B4068F5A40ADEC7C8AAC76EDD1D /* listener_components.upb_minitable.c in Sources */, - 6549DA770660F57B936EC81144D730E8 /* listener_components.upbdefs.c in Sources */, - BD49922E63D4B31CC0FAED7DFC1D4AFF /* listeners.upb_minitable.c in Sources */, - C26AA93416B9A7B2A57E83D414FAA470 /* listeners.upbdefs.c in Sources */, - AEA089B701CF30C642048D4163A65623 /* load_balancer.upb_minitable.c in Sources */, - D5D73502EBF1F5590A586FDBAF939B7C /* load_balancer_api.cc in Sources */, - 45607530B7F76A9D1E0C6008A04EEFB4 /* load_config.cc in Sources */, - 69F7484BB93A5A7BCED9685063240804 /* load_file.cc in Sources */, - 6A6657FDBD6CD3E5F6CD3AD7DF97019F /* load_report.upb_minitable.c in Sources */, - 6D8C328B80DD4089BD0AE9A6C55AD935 /* load_report.upbdefs.c in Sources */, - 6D3B0EC049C728DE95931B16F9352CA8 /* load_system_roots_fallback.cc in Sources */, - 1CE0B4AE41B496894AE097FFF777679A /* load_system_roots_supported.cc in Sources */, - ECEC371F80F988AA510860148D7AC3B8 /* local_credentials.cc in Sources */, - D4FCDBAA8BD6478A55145DDD5D19B9D8 /* local_security_connector.cc in Sources */, - CB264C9F80F14AD4601D986106F5A86F /* local_subchannel_pool.cc in Sources */, - F711C7A700CD1332873FDBAC249DF844 /* local_transport_security.cc in Sources */, - E78A76CAB6071DEB96A0CC9282D309D6 /* lockfree_event.cc in Sources */, - 439FF8ACD6AFDA72EBED8226FB30CDA5 /* lockfree_event.cc in Sources */, - 5A2D57CFA964EA4FECB2AB6552B9043D /* log.cc in Sources */, - DDFE8C55F864613213E2986C0BDA6D80 /* log.cc in Sources */, - 4F7CA63C19BA0E63AED31F462A7E2FD9 /* log.cc in Sources */, - 440AAADDE9BA3D9079FF64D9A73D7861 /* log.cc in Sources */, - F87511A74D7E0EF7F73AADAD3918B20E /* log.cc in Sources */, - CAF9164267AE05EF828633343503633C /* lrs.upb_minitable.c in Sources */, - 99117648A7526BBBEA827129E05A0191 /* lrs.upbdefs.c in Sources */, - 14781198E6A62826BD2FDA3082D39202 /* map.c in Sources */, - 60DFAE816123852945E99910D3334A23 /* map_sorter.c in Sources */, - 48AB6619FD1E0777A14D3B58D7D5BD07 /* matcher.upb_minitable.c in Sources */, - 91A432535B28C44B91E1C6D52D77E1BE /* matcher.upb_minitable.c in Sources */, - D43D4982400736D3EFF06B025538BC7C /* matcher.upbdefs.c in Sources */, - 9D739591C46E00B89D35CDE4DE84981E /* matcher.upbdefs.c in Sources */, - D7D7359FE370B3D183199DA71F3923F9 /* matchers.cc in Sources */, - 6A6BB3E61798F7495064DDF81CCA9F96 /* matchers.cc in Sources */, - 486E65533F463923EC3CC66BA3D04D53 /* max_concurrent_streams_policy.cc in Sources */, - BBB8C061AE1E1985185C27479FC14C23 /* memory.upb_minitable.c in Sources */, - 4D8D00A071F7373470B7438BD5C281A6 /* memory.upbdefs.c in Sources */, - 83FD9A7CE144057551C25FEF127415B2 /* memory_quota.cc in Sources */, - F5B523A2476725A8A26009FEC476B0F0 /* message.c in Sources */, - 46E0CF84958402F2406C660CE6E94F2B /* message.c in Sources */, - 99511FA8FF6CAC75A45CDB2409B4BCCE /* message.c in Sources */, - 96C76510517B34CA81C3D750D21D876A /* message.c in Sources */, - 9FAD13363C00B46752FB8402D34BFE39 /* message.cc in Sources */, - A5BF3F4149B2643CEDE065CC7ECDF093 /* message_compress.cc in Sources */, - 13B5F4A625027183ECF3BEE9B29897DC /* message_def.c in Sources */, - 629F74E2DE3B46B9DE1AAA1B645097C6 /* message_reserved_range.c in Sources */, - D92B2854ED4C1C818B775DFAACB63538 /* message_size_filter.cc in Sources */, - 90CC745BFCAD3E543488B7B4564A1C30 /* metadata.cc in Sources */, - FB0A40E3D6E5DD06F97CA05D1C79A1BC /* metadata.upb_minitable.c in Sources */, - BEA9A2F15D6C0BABA9D9998522E14639 /* metadata.upb_minitable.c in Sources */, - 4B1695F084AED096AA5E14D9ECB5713B /* metadata.upbdefs.c in Sources */, - 0FAE16633356262B41A5D7406A75CAFF /* metadata.upbdefs.c in Sources */, - 2D0908D8D9DC154B7238E445342ABDAB /* metadata_array.cc in Sources */, - 0342B5FA0878E9F9BCD67B90E6999F27 /* metadata_batch.cc in Sources */, - 7F42E6870735B399F2F57DA6AA24135A /* metadata_query.cc in Sources */, - 054F7B830F9343B84EB6E32336215411 /* method_def.c in Sources */, - 4EC5640DCEC2792D31D7541CDB81698B /* metrics.upb_minitable.c in Sources */, - 68B1F23280406975954EAEE899B7B905 /* metrics.upbdefs.c in Sources */, - 363CF90A62788BA1C81815685BFCF1C6 /* metrics_service.upb_minitable.c in Sources */, - 974119ED0B23B99F0FFFAFAC782DE31D /* metrics_service.upbdefs.c in Sources */, - F5B2A45ED5D4DD972DBB48979019A7B8 /* migrate.upb_minitable.c in Sources */, - 421B2F0A100989C56D3BA0A9AE948881 /* migrate.upb_minitable.c in Sources */, - B42170D4C187E24D9456D20143CD239A /* migrate.upbdefs.c in Sources */, - 45EB011DEF2526081157BA7DCF595690 /* migrate.upbdefs.c in Sources */, - 3857731B5A518FFEFB29C204D273AE1E /* mimics_pcre.cc in Sources */, - D4400CAA9BEA8E80D728FAF60FBF2CA3 /* mpscq.cc in Sources */, - B2D5D3FE7704A691338A2445A6F879BA /* mutex_stats.upb_minitable.c in Sources */, - DB51EAA8667DC56444AF7400C3EC3BAF /* mutex_stats.upbdefs.c in Sources */, - 40E528B78986962E834166D03CA81727 /* naive.c in Sources */, - F7D8B6E2E09F346929C4492C164C5FD6 /* native_posix_dns_resolver.cc in Sources */, - FA753A4D7E3C8DD014B2F2E8F7BCC41B /* native_windows_dns_resolver.cc in Sources */, - 99AF54662B47328365D73953D5AD0875 /* nfa.cc in Sources */, - 1F67A911E7D5B35483B70972ECBEDB1F /* node.upb_minitable.c in Sources */, - 04F43667104DB4C7DB56938D5A1B38DC /* node.upbdefs.c in Sources */, - AE5C497AE4503E300A2E6C59CE1ACC5D /* number.upb_minitable.c in Sources */, - AB865A18D56C8EE4966D7C8C976F50A6 /* number.upbdefs.c in Sources */, - 2495EAFBA92E6DD6E544E148CC1E3549 /* oauth2_credentials.cc in Sources */, - 2ED1F361545CF911FE6D62A9FB4BF2B2 /* oneof_def.c in Sources */, - 1374CA912B598117DB59CA20790E4234 /* onepass.cc in Sources */, - 088F3CA2209F1C1788BAF7EE42D1BD5C /* oob_backend_metric.cc in Sources */, - 07D3B143EA0B85311084EE63D34DABAF /* opencensus.upb_minitable.c in Sources */, - FC026A9F503EF7AF553049AAA7F73947 /* opencensus.upbdefs.c in Sources */, - A5482E07B0977FE7747C28677BA569F3 /* opentelemetry.upb_minitable.c in Sources */, - 95528669457504413970D26BCABF473E /* opentelemetry.upbdefs.c in Sources */, - 9D9E99240A480C591CF913AFBC9C71E3 /* orca.upb_minitable.c in Sources */, - 958576044EB9A56AD81226C498AFE413 /* orca_load_report.upb_minitable.c in Sources */, - F9342E248BA64FA79273C210FA539C68 /* outlier_detection.cc in Sources */, - DA8653E573F56C4B3A5A41B2C2FC8F40 /* outlier_detection.upb_minitable.c in Sources */, - 7959C07A2CC3A097C5C9C76988FFF66E /* outlier_detection.upbdefs.c in Sources */, - 2FF16D04A05F5EB34CCFEA399E178F85 /* overload.upb_minitable.c in Sources */, - 87C214A3F7797AC65D7F2CDC99AA7CF4 /* overload.upbdefs.c in Sources */, - 751A3A8C4AD0549F4616E1EC8AB1248C /* parse.cc in Sources */, - 8B75BE7B55C80792C0BE54279CC6C1F9 /* parse_address.cc in Sources */, - 396206E2835046C327337BD9A661503E /* parsed_metadata.cc in Sources */, - AE88B11C950B09704931F3CB2C10715E /* parser.cc in Sources */, - 6A1C4040F903B131A81EB12043E200E5 /* parsing.cc in Sources */, - 1230C6C351607114F4D95E9D582C4B52 /* party.cc in Sources */, - 40EE4D58D1268FBAC1A0AD2913464C39 /* path.upb_minitable.c in Sources */, - F5B7145BB50CB6EAB1AD09BA351BCB5E /* path.upbdefs.c in Sources */, - 2AEA13D60202FFF8B7BF998D4E663655 /* path_transformation.upb_minitable.c in Sources */, - 9F0C5164713CC10A7895B981176B80B3 /* path_transformation.upbdefs.c in Sources */, - 8B06CAAB4C8190B6A5F0325E57235267 /* per_cpu.cc in Sources */, - FD915887B4C9C5BA1F5AE70F82943C0E /* percent.upb_minitable.c in Sources */, - AFB9BCED523D19EB265813B4CD6F42E3 /* percent.upbdefs.c in Sources */, - 3DEC9B9EF4CE9E8BD4C34F7FD3FFFB2F /* percent_encoding.cc in Sources */, - 97D6E58B2BC79892BE66974B72AF0919 /* periodic_update.cc in Sources */, - D914591947F58A8A26F24EFA54890CEE /* perl_groups.cc in Sources */, - B084213553879A56DF30DE999FF8630D /* pick_first.cc in Sources */, - 6781F89E60F0D894E447B4F1D3E7F35B /* pick_first.upb_minitable.c in Sources */, - 362FC23115AFDA24135C2E52E4766EC0 /* ping_abuse_policy.cc in Sources */, - EC36E08989A42AAC58244C3077717CF7 /* ping_callbacks.cc in Sources */, - 697363BB6F250F6BD6D210523631D95B /* ping_rate_policy.cc in Sources */, - 4421353BA9C40192BAE05EF8B44580BC /* plugin_credentials.cc in Sources */, - 62C84EFA23848A4274F2CD2350F9E228 /* polling_entity.cc in Sources */, - 4EAB504FFBC2442036893AA746F091C3 /* polling_resolver.cc in Sources */, - C6B1F5A3F797BCB386A505752344A745 /* pollset.cc in Sources */, - 94E42146077BE0F5C0A39FA0D4EBC8E9 /* pollset_set.cc in Sources */, - 7FC5A5A0653BE7EED4393AD70966341C /* pollset_set_windows.cc in Sources */, - 732367D7EF76E1578EA9AC826850AABD /* pollset_windows.cc in Sources */, - 21E9FC5802ECB914DDF5EC6FED95A539 /* posix_endpoint.cc in Sources */, - 54017A6BE411C2DAF347A2598D974FF4 /* posix_engine.cc in Sources */, - 984CD5F515292CE0EB4B39820FF010BD /* posix_engine_listener.cc in Sources */, - CC7AC1982330430ED68AF524D11A09A8 /* posix_engine_listener_utils.cc in Sources */, - E203C0508ED5F02A88990ECE32DF0252 /* prefilter.cc in Sources */, - 3E9E0EDF4FE33CAF7B254A862B9F5BD0 /* prefilter_tree.cc in Sources */, - 7B57CF652839581C4D8A0653E758CBE2 /* priority.cc in Sources */, - C03F60B37D930763DCAABB0DA0C53C76 /* prog.cc in Sources */, - 036EC76F9843DDCACC1FA9AB9B74F68D /* promise_based_filter.cc in Sources */, - 0084BCB6AB7FB1AC3EF4AE96EE21793B /* protocol.upb_minitable.c in Sources */, - C073BE88E3A7151DFB9EACDFE8AAA816 /* protocol.upbdefs.c in Sources */, - 45A57798AAFBE72F15822D727D54CB46 /* proxy_mapper_registry.cc in Sources */, - B611FE199A02E90C52F7B0D206D65A7B /* proxy_protocol.upb_minitable.c in Sources */, - D7CB23E2A466FD9866450B93554A1009 /* proxy_protocol.upbdefs.c in Sources */, - D526DA2A48660023D8F9994148B8AF7D /* quic_config.upb_minitable.c in Sources */, - CE35FE7D8CBACB3CD9E2B4C96E974AEA /* quic_config.upbdefs.c in Sources */, - 94BAA9A70117A37AF8780FA0AC856098 /* random_early_detection.cc in Sources */, - 89B9D5460DC66F2F903CB8DF98FAE40C /* range.upb_minitable.c in Sources */, - 49608014398EA9B853ACEAA4EA5046DD /* range.upb_minitable.c in Sources */, - B55F49333221B3514138B0E400E1B9EE /* range.upb_minitable.c in Sources */, - 5A8EEDF89FCE702DE6B11B26BAD81CBF /* range.upbdefs.c in Sources */, - 0843865D518AB4FB8B11BBB3E4649B71 /* range.upbdefs.c in Sources */, - B0FA6D6E514B7307D3FE4030A2667D6F /* range.upbdefs.c in Sources */, - 8C4AE8AABB862F7FCDF6575391D405AE /* range2-neon.c in Sources */, - 154C5AE7387308687B729D0F9BB21E33 /* range2-sse.c in Sources */, - 3EBA5EDE6300331CF4FAF64940C5E9F5 /* ratelimit_strategy.upb_minitable.c in Sources */, - B550917D9D2481FA665B7553AD106858 /* ratelimit_strategy.upbdefs.c in Sources */, - 07A65D9C6EA9BAD9F12611584D22F514 /* ratelimit_unit.upb_minitable.c in Sources */, - A691A9B557FACE9C5DD6915C5AD572A1 /* ratelimit_unit.upbdefs.c in Sources */, - B4A91914A7FBC68A03AF5130C320D27B /* rbac.upb_minitable.c in Sources */, - 7A23BC3DAEB62CAFF4A58FC57C86F6EA /* rbac.upb_minitable.c in Sources */, - 2CC214E42CD0A139D1DEE45EE13FCCB3 /* rbac.upbdefs.c in Sources */, - 28077F7B39D1C8CD56451F44E64E04CA /* rbac.upbdefs.c in Sources */, - A6282415CD86B571AD9ED255C3C62F2F /* rbac_filter.cc in Sources */, - B8946F0CB571F2635B6C712D7BFD42BC /* rbac_policy.cc in Sources */, - 8951A2C3EE699199D7515ED90811701A /* rbac_service_config_parser.cc in Sources */, - 3CA029D8D5FC6283983D084079D51BF8 /* re2.cc in Sources */, - EE245CC18B4007A43BDE7CDCDF42E666 /* reader.c in Sources */, - ECF43B654859F59E2A9916463FDB9928 /* ref_counted_string.cc in Sources */, - 8E2574535C48700300A55F13C89596D1 /* regex.upb_minitable.c in Sources */, - 6150BA2527504D4662FF74501E7A9A4F /* regex.upb_minitable.c in Sources */, - 929D89611F46006B0722FEBD4C0D0FFF /* regex.upbdefs.c in Sources */, - B401B35209383068A172615C0415F560 /* regex.upbdefs.c in Sources */, - 57240DC7C2D9954DC216A395920E266C /* regexp.cc in Sources */, - 93948EE3B1123D9CFA04EDCCAA1A3F1D /* resolve_address.cc in Sources */, - 50BB5095BC6EE09ECC3309C4034D9E2D /* resolve_address_posix.cc in Sources */, - 8F2469CC98C1063EF85E23181FDC0948 /* resolve_address_windows.cc in Sources */, - 2384FEA68CFD0C7D6F1F4F3EC71C577E /* resolved_address.cc in Sources */, - 45BB15BD5FD6583F7BF322FC24F0BAA9 /* resolver.cc in Sources */, - 748D2A8913354B0CB53803A8C866045F /* resolver.upb_minitable.c in Sources */, - B0D30D2FBFA479B52A82BF7DE2EB2080 /* resolver.upbdefs.c in Sources */, - 55B97D0F323032C65EAD91580FEA7647 /* resolver_registry.cc in Sources */, - 3BA1FB928AA9C67D5D4FEEDDE477D927 /* resource.upb_minitable.c in Sources */, - 01E05C71F44DB8BC5556423163877553 /* resource.upb_minitable.c in Sources */, - A7FC66EDD2CA504682FBEC4F10AB6C89 /* resource.upbdefs.c in Sources */, - A10890F5271D5530D63A207D9548DA60 /* resource.upbdefs.c in Sources */, - F43231B828790B19CDE24069A8C564D0 /* resource_locator.upb_minitable.c in Sources */, - 84C4FE98521B525F756624417112764E /* resource_locator.upbdefs.c in Sources */, - 0EF33F14013AA0C0639A9D99997FC87E /* resource_name.upb_minitable.c in Sources */, - F8D78B21770FB688F52314F7FEF1075F /* resource_name.upbdefs.c in Sources */, - 25A471B3D41D292B5E3F34288ABA540D /* resource_quota.cc in Sources */, - 3EB13D599EFF4D7E33FBC297BC3CC729 /* retry_filter.cc in Sources */, - 7A5E1C6A2F3421E0EAB4302FA9DBF88A /* retry_filter_legacy_call_data.cc in Sources */, - 163EE9F4E2810AE18DC34479B312E7F1 /* retry_service_config.cc in Sources */, - D9EB799280836F9D56CA21A06CF297A1 /* retry_throttle.cc in Sources */, - F22BD2A8B820E28C1B97987F307B0FB5 /* ring_hash.cc in Sources */, - C0C2D499F42FF0EAF89FDDF2B23F6816 /* ring_hash.upb_minitable.c in Sources */, - 79D601B4325CA1EA4315FCB1791408AB /* rls.cc in Sources */, - 0560A18B312CFBA50B96C916CC4EE868 /* rls.upb_minitable.c in Sources */, - BB2E9D7697A996D9C58A9851E8892D4C /* rls_config.upb_minitable.c in Sources */, - 7A02D6A4491061836A4FF5BB4A7FDA69 /* rls_config.upbdefs.c in Sources */, - 6C9DE2B598A0806E1C5FDAA80D8AE44E /* round_robin.cc in Sources */, - EC586B5640C2854576D5D3F7617BC82F /* round_trip.c in Sources */, - 9339B8C250BADA7974CB42549FFBCF52 /* route.upb_minitable.c in Sources */, - BE8305FA306C1D8E8DB6E95E7F4C7C3D /* route.upbdefs.c in Sources */, - 85C7CB7BEB8156C8B79CB49B676C4C3B /* route_components.upb_minitable.c in Sources */, - 76B33ECE53B3AB057969ADE2EED3D49D /* route_components.upbdefs.c in Sources */, - 1A2E07D72429DCA9042950EAD619E412 /* router.upb_minitable.c in Sources */, - 9094CA7E4B1DAD26B054E643EDCC2CD1 /* router.upbdefs.c in Sources */, - 25CAE920F2678F76983D53C1A2D38C34 /* rune.cc in Sources */, - CDDC0B6D1769E4A588029F13C60B3B4A /* scoped_route.upb_minitable.c in Sources */, - 7EE92A8C7F19761D8674FD2F4C3992F5 /* scoped_route.upbdefs.c in Sources */, - FE5C4947759E33668BC166AAA2D09C17 /* secret.upb_minitable.c in Sources */, - 418D2CFBE7C75C7AEA4F70C3C9851E81 /* secret.upbdefs.c in Sources */, - 5C12CD7F2C5B327AD3C2A12412E557CB /* secure_endpoint.cc in Sources */, - 68F008B9D4B0D60B8DF02C8577D4A9E2 /* security.upb_minitable.c in Sources */, - E370C28CF18BB0FB6AA69ECE28F10711 /* security.upb_minitable.c in Sources */, - 4640349DA620D46652A40CB695424EAC /* security.upbdefs.c in Sources */, - C342647A91949C9E4FB57B4BE3FDDAB8 /* security.upbdefs.c in Sources */, - 262C72993F3D22885F0678E56BC31FDD /* security_connector.cc in Sources */, - A471A6BBB6B6E0D06AD7E416DD045DFF /* security_context.cc in Sources */, - 80796A9F140BA3CCD7A34E75A0FB60BE /* security_handshaker.cc in Sources */, - 443599D87357134B804557E9F585C9E1 /* semantic_version.upb_minitable.c in Sources */, - 5118B2DD013611A237A7C3282ADE8AB9 /* semantic_version.upbdefs.c in Sources */, - 404FD12F03C357838A4D91A872910C1B /* sensitive.upb_minitable.c in Sources */, - CE3AC30B40606E67DFC71623F6ABDBAE /* sensitive.upb_minitable.c in Sources */, - 2D68200ED525B45FBCBB780409010824 /* sensitive.upbdefs.c in Sources */, - 6739154BF2E295DF3D2855A13D1485DC /* sensitive.upbdefs.c in Sources */, - 0C57A4FB056B9633FD22D3F710AD1298 /* server.cc in Sources */, - 74014737B29AA96AD2D50491A3FD4A36 /* server_auth_filter.cc in Sources */, - 201CCCE7114FCF428EB294A0E0E252AB /* server_call_tracer_filter.cc in Sources */, - 6A33EE292C8A6F003A92E583DE767408 /* server_config_selector_filter.cc in Sources */, - 73512427DC678A30DA2C3E71AE6C23C9 /* server_info.upb_minitable.c in Sources */, - D5F0C07047BF03E7612D76E35D8EDCE2 /* server_info.upbdefs.c in Sources */, - C38279B19E72CE0AFEB31DA92C2F0086 /* service.upb_minitable.c in Sources */, - C1C9A249BEDA2E0ACB9DCEA77A2464C4 /* service.upbdefs.c in Sources */, - CCA25F5B787FB8CEDDB9CA0DDC5DBBFD /* service_config_channel_arg_filter.cc in Sources */, - 83FDB314144C2A60234D6A4225842387 /* service_config_helper.cc in Sources */, - F859E48A86DC4D6321CC3BF16F6BB6E5 /* service_config_impl.cc in Sources */, - 6C7C9E7E91DE048AED4A5AC1DCEBF02E /* service_config_parser.cc in Sources */, - 5571EDBA7BFE01DFB7B5907A11445C23 /* service_def.c in Sources */, - 161BB989D41CBBF5684C4F4263109730 /* set.cc in Sources */, - 1B167C5EF10B3886CCD784412A8B4BEC /* shim.cc in Sources */, - 8FCF4ACBAA3A8A9CAA89FB2B4376C561 /* simplify.cc in Sources */, - D5B92D71D77CA355B17EC1422479A2D6 /* skywalking.upb_minitable.c in Sources */, - 59F77CBDFEA7AFDAECF8A17FD5D85F56 /* skywalking.upbdefs.c in Sources */, - FF1A7BB808C71448CF3C3B200D239DAC /* sleep.cc in Sources */, - F04180C243B00A93D71F0D5A4CF4C543 /* slice.cc in Sources */, - 79F910E74F516C6D238C193AFA01B5D7 /* slice.cc in Sources */, - 747E92452694EAE7828E32868DF36FAF /* slice_buffer.cc in Sources */, - 5389C25C8AD5E0C4F79E22DCD55639F5 /* slice_buffer.cc in Sources */, - 7F6E8F4BDB4347DFBF8C7D4264AB6084 /* slice_refcount.cc in Sources */, - 435A659239C5F1947E9F85C7FE73F8F6 /* slice_string_helpers.cc in Sources */, - F017749C89BBFCA5DFC3C47A46D7160F /* sockaddr_resolver.cc in Sources */, - 446C6E90C768341822A690704AE21C08 /* sockaddr_utils.cc in Sources */, - 8C10B9DE4E6ABE8D27A6AA538DE74F00 /* sockaddr_utils_posix.cc in Sources */, - C1BC1C1B1FA70D716CFA6560763BF6D7 /* socket_factory_posix.cc in Sources */, - 4EB00330C55245A2E79C6D443749CA69 /* socket_mutator.cc in Sources */, - EF7A17F79D19AA6B3103C774C7BC190F /* socket_option.upb_minitable.c in Sources */, - 33BBE5067C1F18126464E309E14B8007 /* socket_option.upbdefs.c in Sources */, - 18A5496997981B40EC5B01EDCC66449C /* socket_utils_common_posix.cc in Sources */, - 1E490882D13280BD52E07998BC9FC45D /* socket_utils_linux.cc in Sources */, - 7FB7CECD4A4E820879F22270F956E74A /* socket_utils_posix.cc in Sources */, - 78AE7C419992DCED9DFECD3A5612754B /* socket_utils_windows.cc in Sources */, - D2BEBCD71C3B315F3730B7771A17D2CA /* socket_windows.cc in Sources */, - 26FD94FD81F86FF60CBCB54956E3E975 /* ssl_credentials.cc in Sources */, - 5000F0ACE323F02F80CBE192469E1B01 /* ssl_key_logging.cc in Sources */, - 2377F0FD2DD6A2C75F217248AE172638 /* ssl_security_connector.cc in Sources */, - 6B708F6282DAC9A9F18B23CFC238C669 /* ssl_session_boringssl.cc in Sources */, - 1A84223606FEA51AD67D74F77E0E4A08 /* ssl_session_cache.cc in Sources */, - 4DFE9E8E36967401C2530CAE9D5E9165 /* ssl_session_openssl.cc in Sources */, - 563A993DA52FCA1A057208150AFDCB58 /* ssl_transport_security.cc in Sources */, - F66484AFC8E2D965B218C106DF3E6448 /* ssl_transport_security_utils.cc in Sources */, - CB01C9934271C597B7CF7C395AA284DE /* ssl_utils.cc in Sources */, - 7B5E40D5A0E2A79FC02BA2FEB344A4CF /* stat.cc in Sources */, - 008A5BA15B3FA8BAAE078C42CD04D11C /* stat.cc in Sources */, - BCF0E67541FD40F63D645D49696B9C7C /* stateful_session.upb_minitable.c in Sources */, - 655689782980DE384F7D970157DE50A0 /* stateful_session.upbdefs.c in Sources */, - 28FD4506D6AF46E0573447169754E60F /* stateful_session_filter.cc in Sources */, - A6108B5117E0CF1E523215E8B9266FA4 /* stateful_session_service_config_parser.cc in Sources */, - 45EACA5D029651ACDC40D5965D2C37CC /* static_stride_scheduler.cc in Sources */, - 47E4D382244D666D64892EF93C03B0CC /* stats.cc in Sources */, - FBECDD6FB4C7486CFCEB702EB3E03A00 /* stats.upb_minitable.c in Sources */, - 8D43AAC8934245D85AD9E365DDA8E380 /* stats.upbdefs.c in Sources */, - D45143C34BE58F8F031CF0094CBA72B4 /* stats_data.cc in Sources */, - A9660A01121ADA993457D543DF7F218D /* status.c in Sources */, - 27248F24D756856EBFDE2E779480B6BC /* status.upb_minitable.c in Sources */, - 0616C3C90D909CDDF3BC92A5A584A6E3 /* status.upb_minitable.c in Sources */, - C6BD7BFBEEF96766681E61B0BA0296E0 /* status.upb_minitable.c in Sources */, - 7111B2D3E13E307F59D43AE13C3D3731 /* status.upbdefs.c in Sources */, - D90CF2AE43BF374BA9C6EF23CEDEAB10 /* status.upbdefs.c in Sources */, - DA3DC9D123EEB0C219E854BFFE296CBE /* status.upbdefs.c in Sources */, - 031DE94F87430027BADD7A478E83CF89 /* status_code_input.upb_minitable.c in Sources */, - A4E46D05D9A9C774352865D6295155AE /* status_code_input.upbdefs.c in Sources */, - B001BDEF579878F3EC9DC3BE67FCABFC /* status_conversion.cc in Sources */, - 071ABFEFCABE5602E17C71AC1F792C0A /* status_helper.cc in Sources */, - CDD88E1069E382D83E3B5B718D66D73C /* status_util.cc in Sources */, - 3D7E1C65AC56F786117B7CCAA3FEBD87 /* stdout_logger.cc in Sources */, - 0A2663B3AF9385717D5D585C9A96BFAC /* strdup2.c in Sources */, - BA7296678D67D7EE31B71414AE40AEBA /* stream_lists.cc in Sources */, - DB2316AF6915C189B97B87E41C2D08D6 /* strerror.cc in Sources */, - 2FB13586724C2DE891F1C9706427FC1B /* string.cc in Sources */, - 32B164CAE42BDDDC747770D0C8255F73 /* string.cc in Sources */, - DBE2C5084E803859133EC63F70D02BFD /* string.cc in Sources */, - 426AFC370EC32B1E52A8EAF021084974 /* string.upb_minitable.c in Sources */, - AA08E682508E340EB0DB2F514FBB1D28 /* string.upb_minitable.c in Sources */, - E2D3C2EFFD690DAF2FB5271AE850176C /* string.upbdefs.c in Sources */, - 7D3CA6655A23A0CA20C186AA41AE5459 /* string.upbdefs.c in Sources */, - 09415D73C8735AC765CF4A68DF8B348D /* string_util.cc in Sources */, - 3F701A4C8BF6E78F615E26F879116724 /* stringpiece.cc in Sources */, - 6141B4598BC4188EB0E4F41E17203175 /* strtod.c in Sources */, - DA61354848CECD75E8BDE13521092F0B /* struct.upb_minitable.c in Sources */, - 20D360A283C81ACB4614F0CD79E03F19 /* struct.upb_minitable.c in Sources */, - 657200239BE1F9737A7F7B3A35057F77 /* struct.upbdefs.c in Sources */, - 53F7E7D73F3FE65993E7D8E103C4451F /* struct.upbdefs.c in Sources */, - 87EF92D0AFE4095F31E59EF12A86112A /* strutil.cc in Sources */, - 1A3F815CBA4268B1FF024131B11EED49 /* subchannel.cc in Sources */, - 5BBDFB79032F5D58DC36D7F68A83C095 /* subchannel_pool_interface.cc in Sources */, - 751962FC8F5AD3A4309385192B8D9245 /* subchannel_stream_client.cc in Sources */, - 9E14755D0E920318A2BB7921CD6C7462 /* substitution_format_string.upb_minitable.c in Sources */, - 47C2FA4AB27DF451813B4742749A6F71 /* substitution_format_string.upbdefs.c in Sources */, - C1BA0339CEB5C51D8D198CBB3C8FDBE8 /* sync.cc in Sources */, - 8762BEA012D81CC54B93578FBD4269A3 /* sync.cc in Sources */, - A30B626724BFE89527B2617BEBE1F2F8 /* sync.cc in Sources */, - B2F7A5ED726A8F25659D747D4FF391DF /* sync_abseil.cc in Sources */, - E2718F4BB42B91FB896EE8C5C2772471 /* syntax.upb_minitable.c in Sources */, - FD71BB49F91001B406DD065422632696 /* syntax.upbdefs.c in Sources */, - 3DC882719777F9EA87740D154174F835 /* systemd_utils.cc in Sources */, - 76D5C7F18D0725301A03C908311A788C /* tap.upb_minitable.c in Sources */, - 466CE34FC76C92C0A0DFA6AFADF39122 /* tap.upbdefs.c in Sources */, - A0FFA06F7FECC93170587391E9BBA170 /* tchar.cc in Sources */, - 16E4B4B769D99FC130891380E730A065 /* tcp_client.cc in Sources */, - 6C9324FB1C1997558ABE1DA2B596E426 /* tcp_client.cc in Sources */, - 9B74CE5CD00CFEA6E2749E26D1C8BC39 /* tcp_client_cfstream.cc in Sources */, - CF8BFA2288F3FB9B5AD36EB5E5FA0E1E /* tcp_client_posix.cc in Sources */, - 4EEB5E44B00F124E65C1E8741E431777 /* tcp_client_windows.cc in Sources */, - 8EB9B68EE51E177F68EF4E88D53A1CCA /* tcp_connect_handshaker.cc in Sources */, - 6A088DC943B985F8CE3C846CE70D0740 /* tcp_posix.cc in Sources */, - 381134228E53DF4EE35D7A2B06B8CCC2 /* tcp_server.cc in Sources */, - CF9BE594955D037B446F4136F0D83C15 /* tcp_server_posix.cc in Sources */, - A95B9DEAE718C20D3EEBAEEA5B92B9DF /* tcp_server_utils_posix_common.cc in Sources */, - 7E3EFA0AA4566ADD34D93D3BCF9ACC5F /* tcp_server_utils_posix_ifaddrs.cc in Sources */, - 3BA8E12C50A2438CA11981B96AFF33CE /* tcp_server_utils_posix_noifaddrs.cc in Sources */, - 82E3109851047F6DB8811A75AF741308 /* tcp_server_windows.cc in Sources */, - 79ACBF905732986D5CC8A8276FD72243 /* tcp_socket_utils.cc in Sources */, - 89EE49D03FF663D289DEF6ABF3EC9399 /* tcp_socket_utils.cc in Sources */, - D2BE4357EB09B7ECF49B7A6E033D7BD8 /* tcp_windows.cc in Sources */, - 5B3A942FA045AC450D005D84F71E7312 /* thd.cc in Sources */, - 16D2E19D5B03BE359CCD7BF0AA42BFAC /* thd.cc in Sources */, - 62C75F6B85CC9F389ECF737E34317355 /* thread_count.cc in Sources */, - E9830AB862D1A89E98E262071E1F50BB /* thread_local.cc in Sources */, - 24EBBB16EC3A6BB862E01482D26627A5 /* thread_pool_factory.cc in Sources */, - 31069CAB49103A2A59ED8E0F5326446C /* thread_quota.cc in Sources */, - FBF7F4079869503380F9E7D047CF462A /* thready_event_engine.cc in Sources */, - C326A2784C8D2E7BFF62FAAC0CB15D3B /* time.cc in Sources */, - B0324070E2C4B88A70C023D5D6827BFB /* time.cc in Sources */, - B922242B4940838734B7849AB797627A /* time.cc in Sources */, - D7EEB1B479902BF4B05C92AF43D39BA7 /* time.cc in Sources */, - E6C543135D7FA6E96723D61421C0F6C3 /* time_averaged_stats.cc in Sources */, - 8C6FF0178C51F1E3D841E4B0E55C8AB1 /* time_precise.cc in Sources */, - C3A133E050EAE58A235851ADF20E1379 /* time_util.cc in Sources */, - D978AA80B70B9C160B8921D91E1E17B5 /* time_util.cc in Sources */, - A15C5C6F3D602D6B797EA6EDF0764C9E /* timeout_encoding.cc in Sources */, - 9A5719B1161483B841681355B737BF69 /* timer.cc in Sources */, - D3B7E18ABC22FF1E2566747BE58EEA94 /* timer.cc in Sources */, - 8CB3E172CD4F9247E120D7A25D4AC6BA /* timer_generic.cc in Sources */, - 6687900E8D60F0EC8615BE42A3722DE1 /* timer_heap.cc in Sources */, - AC602CF71905B187234357F79E49202E /* timer_heap.cc in Sources */, - FA1F0947E548BBE4230021400ADC2F48 /* timer_manager.cc in Sources */, - 5371B73F41CBEB4590F23CE87722F9E6 /* timer_manager.cc in Sources */, - 7249876C895B8991B9DA142D1724E596 /* timestamp.upb_minitable.c in Sources */, - AB6E79C214FF643C63CE5920EE973022 /* timestamp.upbdefs.c in Sources */, - 121D0AAC0560DC6E3851B86E385C5761 /* tls.upb_minitable.c in Sources */, - C2B0456FF5F6BCAFDE25DB169A6105E4 /* tls.upbdefs.c in Sources */, - 80B4EDA2F36A124439A6FE9BED7F29EC /* tls_credentials.cc in Sources */, - 915C7981561D3C54067D6432D9989759 /* tls_security_connector.cc in Sources */, - 2010E0A2069C0543F510E22A9C3A49B1 /* tls_spiffe_validator_config.upb_minitable.c in Sources */, - 2DCCEE3F917C21FEECCDDF51DF6C1517 /* tls_spiffe_validator_config.upbdefs.c in Sources */, - D68155660E81ED1CDC819C5E591390CF /* tls_utils.cc in Sources */, - 25B0F96DE22C26364ADF22C97234E5B4 /* tmpfile.cc in Sources */, - 46F70DDB83AA759CE4A09B9EF61EDF16 /* tmpfile.cc in Sources */, - 1C77E5123B45A6623A5E2079872F1409 /* tmpfile.cc in Sources */, - 380D7AF94A77A024B28B5C99850EBB13 /* token_bucket.upb_minitable.c in Sources */, - C1C929C3F1696869788987037C4A6627 /* token_bucket.upbdefs.c in Sources */, - 8C6360F1F3EB1ED24856FD5A95B2C751 /* tostring.cc in Sources */, - C87C9C6C5A64916393A1B873490C6538 /* trace.cc in Sources */, - 2DCADA5193DBC82F8A3B088FCEB6B17D /* trace.cc in Sources */, - 02C8833FC5760BBB3F54E1A097A551E3 /* trace.cc in Sources */, - B5F2C4A270D0F213A5E5BB9719D9578A /* trace.cc in Sources */, - 7C49BEF440E14528E25791DBA19A35C2 /* trace.upb_minitable.c in Sources */, - 121C05BF4E7A24C237C37927C56B21F9 /* trace.upbdefs.c in Sources */, - B2C12725248C0C267F7623101BE522E8 /* trace_config.upb_minitable.c in Sources */, - 6A3D20F9ABEA1D7B567A2157EC918F7C /* trace_config.upbdefs.c in Sources */, - A647125A255ADFD94A30650C9BA12A27 /* traced_buffer_list.cc in Sources */, - C6E005DAE835B95C56ED5E613430D121 /* transport.cc in Sources */, - 4B5706D9A858B0E9FFCCBAD6F99D9ECF /* transport_op_string.cc in Sources */, - 0B453E09576EB19E3424CD9269D5FF36 /* transport_security.cc in Sources */, - 4C1A95E2C1FBDC38F0BD3F7C6A38DA9E /* transport_security_common.upb_minitable.c in Sources */, - 7D4AD7A64898DD2EC5E786073485B05F /* transport_security_common_api.cc in Sources */, - 5FA085389AEC1724D024C550A1297C0E /* transport_security_grpc.cc in Sources */, - 1F2D3EB31C910FB48536CD91F74F4528 /* trees.c in Sources */, - FD598874ECD2D71A962D59B248CC6E12 /* tsi_error.cc in Sources */, - D721F60920FCE9AC07091E0471F4CFFA /* typed_struct.upb_minitable.c in Sources */, - 1920A96002B868CE8C52DCAE7AAFF7B4 /* typed_struct.upbdefs.c in Sources */, - B542D1A64F26F0D4BF09D72836B0B541 /* udp_listener_config.upb_minitable.c in Sources */, - 4BC5580C0998AFC52F2E10C23E15890B /* udp_listener_config.upbdefs.c in Sources */, - B5A43BA1D01060804A60E42BE8A51E9A /* udp_socket_config.upb_minitable.c in Sources */, - B0F86638BBAB3E3E47F3EC3331C8B7D2 /* udp_socket_config.upbdefs.c in Sources */, - 45DCA3F3616151A934A1D900934E9027 /* uncompr.c in Sources */, - 947F7B490363451194A343283601DEFB /* unicode.c in Sources */, - 69EFB3CB4C0F9B0F058160FE3FA64E75 /* unicode_casefold.cc in Sources */, - 987AA68F0007D9D8682EAC4C388CDA04 /* unicode_groups.cc in Sources */, - A2507337CE1A6392DAC0312F842FDBF2 /* unix_sockets_posix.cc in Sources */, - 5710D08A63675321D7CFB8F77FD4CC8D /* unix_sockets_posix_noop.cc in Sources */, - D8898938414044ED6C3453716F04AFAD /* uri_parser.cc in Sources */, - 64C499C40D6154AF7B67A34A68A878EF /* url_external_account_credentials.cc in Sources */, - 152C9DDBF136D5D89174EC4B538367CB /* utils.cc in Sources */, - 1480B9F2D2466B5969187080F66EB0CF /* validate.upb_minitable.c in Sources */, - 386CD0B3CBDB1C34A748E5513A6E6915 /* validate.upbdefs.c in Sources */, - 3D1BC99F9782AF50AD478AF6AF3A0F7A /* validate_metadata.cc in Sources */, - 4AEEACE41C68B77691ED4236A9FBA6DE /* validation_errors.cc in Sources */, - 87A2E0211D31E1B03207D007F2C4E4B9 /* value.upb_minitable.c in Sources */, - 5BBB07F84C36527CFA16E930D0F0DF2E /* value.upbdefs.c in Sources */, - 6C6316D5F98084D441A8A733D7E72000 /* varint.cc in Sources */, - D51DBB7CCC8FB1C2EBA794DEE4610A21 /* version.cc in Sources */, - 09619B28AF2849466661DBD3E1958F2B /* versioning.upb_minitable.c in Sources */, - C28B3BC18F424A623C5241C956F4F211 /* versioning.upb_minitable.c in Sources */, - 6A347A2D909F4F7B35DF42CFB9768F0F /* versioning.upbdefs.c in Sources */, - 3000568177F6955041529CB4C147E18F /* versioning.upbdefs.c in Sources */, - 37C0EB3F3085BA53D19FCAC4D2B1203E /* vsock.cc in Sources */, - 87339E562DDCE326ED2E50CA494B69A5 /* wait_for_cq_end_op.cc in Sources */, - 9797657AF6A3C8A47AFB5C37A2CBEBBE /* wakeup_fd_eventfd.cc in Sources */, - 9E94BC88E22AE54F71A2B83AADC3ABED /* wakeup_fd_eventfd.cc in Sources */, - 54BB35DEEB1FF92CBB75F672E2797F4A /* wakeup_fd_nospecial.cc in Sources */, - 025E9AD5A9922A0B95484D68135C0A23 /* wakeup_fd_pipe.cc in Sources */, - EB468A45F23BCEEEC0AD8974354B14FF /* wakeup_fd_pipe.cc in Sources */, - 76DF7FCE48021DC0635E386FCF0140C6 /* wakeup_fd_posix.cc in Sources */, - CBA1DC8069DBD351EBE01EB5757FABD4 /* wakeup_fd_posix_default.cc in Sources */, - 79DF9AC8AC3534DAE87083656344E409 /* weighted_round_robin.cc in Sources */, - D8C890C682232B50DD97B015EBD74DBF /* weighted_target.cc in Sources */, - 4F5F7A01F13209A3872EA73470C29A5E /* win_socket.cc in Sources */, - 1957E97A63B323A93E0487F3B07D2439 /* windows_endpoint.cc in Sources */, - FC704CCA3428A01F1C74C32A29B74B84 /* windows_engine.cc in Sources */, - 192543FA31D16966CC8477F142B76874 /* windows_listener.cc in Sources */, - 82356F2AFF55F4B8C883B0C417AF45AD /* work_serializer.cc in Sources */, - A97AF400884F2362FA7591EC82DED828 /* work_stealing_thread_pool.cc in Sources */, - 1E9E8CB190C02E1C66D3735F6E27594F /* wrap_memcpy.cc in Sources */, - A60C8AB2308FEB8DCBAB8802EFF6924F /* wrappers.upb_minitable.c in Sources */, - 4865F29FBFC3AE3BB9A3B3A97DDE789F /* wrappers.upbdefs.c in Sources */, - A09ED206B837CDE2BEA118B15F2E5AF1 /* write_size_policy.cc in Sources */, - AC0B32C0C88F79D3BD2693347948A7D5 /* writing.cc in Sources */, - C12B6D87F4EDB277703CFA12A5327C70 /* wrr_locality.upb_minitable.c in Sources */, - E848C13E3611F9F2FADDD4DDB3D8FC58 /* xds_api.cc in Sources */, - D5B8A9C62D30FA25F09D0D530A443E9D /* xds_audit_logger_registry.cc in Sources */, - F00AEB195E613A473EA80EDCAC5E5E9E /* xds_bootstrap.cc in Sources */, - EF558E4D2718A880958766772EA760C3 /* xds_bootstrap_grpc.cc in Sources */, - BC117DEF0CEC8CF39EB82292A7AEE75D /* xds_certificate_provider.cc in Sources */, - 32819B0A7D8C7D1128A452E9D2ECC46E /* xds_channel_stack_modifier.cc in Sources */, - 8BADFAA97AF835FDEFABC5659634E724 /* xds_client.cc in Sources */, - E541594DAF63A1CFAC4B2D455B6902D2 /* xds_client_grpc.cc in Sources */, - EA1D29C7E9A6F736EBA3984590557903 /* xds_client_stats.cc in Sources */, - 9B4AD1BF4C63DB1C41B8ADF24A53A093 /* xds_cluster.cc in Sources */, - AA4279D7B476D8A3F462DC67D04E4C79 /* xds_cluster_impl.cc in Sources */, - 3F767C94B5E644465DB15C8E66367E0E /* xds_cluster_manager.cc in Sources */, - 2EE918E4FC669029AC00DDAB1E5A6621 /* xds_cluster_specifier_plugin.cc in Sources */, - 45B2862EE8857E47AC34BDA70E2AF5FC /* xds_common_types.cc in Sources */, - A35A6FF6FB117A5845E10B81A7D0ED11 /* xds_credentials.cc in Sources */, - 709670656C9BCD2DE5410C0610A66DB7 /* xds_dependency_manager.cc in Sources */, - 199246351B496E1FC515AF2D2A8A9865 /* xds_endpoint.cc in Sources */, - 3334D929DD3F922E291070BE88B42FB6 /* xds_health_status.cc in Sources */, - 106166CDD464C27062E15CA75A468E20 /* xds_http_fault_filter.cc in Sources */, - 13AE739508717BACB36FFD5FE3B43D9E /* xds_http_filters.cc in Sources */, - BB11C297C80CA01E40EC3558962B3986 /* xds_http_rbac_filter.cc in Sources */, - 76EDBBEB567BBC820BBED0902B7C7906 /* xds_http_stateful_session_filter.cc in Sources */, - E71E3C3E85BEBBC49922329BA8C3B352 /* xds_lb_policy_registry.cc in Sources */, - 64A941B0D318C62D2C5D6DF910DB63DD /* xds_listener.cc in Sources */, - AA3964B84B248BF35AAB5D7722D8E24D /* xds_override_host.cc in Sources */, - F82BC47F3CC8B7857E53D1229C48C6C9 /* xds_resolver.cc in Sources */, - AA0660648FBE6350B94E1868DADC12E3 /* xds_resolver_trace.cc in Sources */, - 0199C52C206497408DBACFBA4588C37E /* xds_route_config.cc in Sources */, - 5435B9D96A213D383E3D85387981F037 /* xds_routing.cc in Sources */, - CA2F71CA6AADF64E42A8E40AC9802CD3 /* xds_server_config_fetcher.cc in Sources */, - 2ACC524BBAAB58EE2A711554DFF6CAA5 /* xds_transport_grpc.cc in Sources */, - 7F3B9A95C2F980C6B7421D80BE52DBC3 /* xds_wrr_locality.cc in Sources */, - BB840D4267E91A3ADAB5935C4874E0F9 /* xray.upb_minitable.c in Sources */, - C4C015CF160C69190B70FDB2CCEDC241 /* xray.upbdefs.c in Sources */, - 17AD0D2CC9C47634706506930C57A7C3 /* zipkin.upb_minitable.c in Sources */, - 73EAEB8A176278807E1180B68C776690 /* zipkin.upbdefs.c in Sources */, - 420AEF958C3C1A3DD44227C6CA7CBC20 /* zutil.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5BC5AF739C415F92B6CE433BDAC84B46 /* Sources */ = { + 56E65E59442F18D3E34830F4255A02D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5CEEC2E25EE18CF0F25EE7C5817C6E3C /* Sources */ = { + 5AED624F4A0E6EDB3C8338C8B23EEC3D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A9FBD11AAB74FF83E806128CD472240F /* FIRAnalyticsConfiguration.m in Sources */, - 4F9F1202D565B259932DE8C3406A1B94 /* FIRApp.m in Sources */, - 7C4B9ED267B8C34B0947C0F74755E03B /* FIRBundleUtil.m in Sources */, - 5CE5E76C9084DD4F3392AAFF9CFDF8FA /* FIRComponent.m in Sources */, - A1884FB249BCE4D4425D715F18AC65B2 /* FIRComponentContainer.m in Sources */, - 8CD75B6EE1BDB0AD479C85CD84BA0FEF /* FIRComponentType.m in Sources */, - 759DB6E8F61B91817F728326B806AFB5 /* FIRConfiguration.m in Sources */, - 7958D5B42EC499267CBA95B9D9A77128 /* FIRDependency.m in Sources */, - 671E72015474AF77CEA4C04609670926 /* FirebaseCore-dummy.m in Sources */, - DE2D19343D5FD4FD031DEAF4E05B2E3A /* FIRFirebaseUserAgent.m in Sources */, - 044A3952BECF9793C2B411C9250F1220 /* FIRHeartbeatLogger.m in Sources */, - F52C3C13A0F5FFED81FA7465EEAA35BD /* FIRLogger.m in Sources */, - 1B0792EB16FB13185BC85E8F68DB3F12 /* FIROptions.m in Sources */, - 29ED8D8890E9111007CE7DFAD022FCEE /* FIRVersion.m in Sources */, + 9EAC1F14D127E10523006D1F70738BBC /* FirebaseRemoteConfigInterop-dummy.m in Sources */, + 2D4174BB1184A0A2F2FE6D12BD366DF5 /* RemoteConfigConstants.swift in Sources */, + 54BE9F07E9E675C828409D48E177FA20 /* RemoteConfigInterop.swift in Sources */, + 69E3F89AD8B748C2B9C7AD8094A4611A /* RolloutAssignment.swift in Sources */, + 1DB56D15962625783C84C1F89B2B248B /* RolloutsStateSubscriber.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5EC5D7938DF9F2B2B120BF5A15973981 /* Sources */ = { + 60932B1554F19F2EE94EB01E97690E60 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5574092236DF919D4705FBB120644422 /* Promise.swift in Sources */, + 3D8FDC5B818C642485F6374A2AFF8C9E /* Promise+All.swift in Sources */, + 2ED77D634A082488767B2532378E969A /* Promise+Always.swift in Sources */, + 5FE598E3DF7D89A2C14C5CE94CCE3EC7 /* Promise+Any.swift in Sources */, + D0BC7799D8DBEBBB3C998A87283E0C2D /* Promise+Async.swift in Sources */, + E184698472D62A55DF659949EC0049A6 /* Promise+Await.swift in Sources */, + 0DC5121B1649AC30CA739B01105179FF /* Promise+Catch.swift in Sources */, + 9B3B998185B09C67D9DAEE941745CAD1 /* Promise+Delay.swift in Sources */, + 80FA5D9548DD80F550E74FF579F3B901 /* Promise+Do.swift in Sources */, + E1D6EFE499F477CD53DF6693F5E533A2 /* Promise+Race.swift in Sources */, + EC0C7D91DB2BD132A534B280186B8D60 /* Promise+Recover.swift in Sources */, + 7DDFFC85AFB63B1E2B3A1822796532F0 /* Promise+Reduce.swift in Sources */, + 4E8A7D1700735E2FD751AA2EDEF3D997 /* Promise+Retry.swift in Sources */, + 44F0799BAC4266916209B5840A2C6DA6 /* Promise+Testing.swift in Sources */, + 35E32DA6E9242B4B4BFFC3D7B1A5BD6F /* Promise+Then.swift in Sources */, + ECE8C0639E9659FE46677C076FECE34B /* Promise+Timeout.swift in Sources */, + 9F2502771C3BAB0C8E9B942FD82D1342 /* Promise+Validate.swift in Sources */, + 1E2C2B86C227A11670C66BD1056CFA11 /* Promise+Wrap.swift in Sources */, + C7FA0A4B0ACEE949D9C9D0245882487A /* PromiseError.swift in Sources */, + 54CA98B255771B2F55A64FE14D876E5E /* PromisesSwift-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6AF6C7EC8B963EFC1C98306F88473445 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 66EC35C77559057C3BEB70EE908F64AD /* Sources */ = { + 6B70AEC032AAA2FEC9DFAAF3CA60E085 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 609F700123806E48F903C6A49F61099C /* FBLPromise.m in Sources */, - 4F8882A3B6779A710C0C94DA3694903D /* FBLPromise+All.m in Sources */, - 56CAD5445975D179454F38ABF425DD7F /* FBLPromise+Always.m in Sources */, - 03FBAFBF2E45E00D7ECB21B4B40A2004 /* FBLPromise+Any.m in Sources */, - 49A6EDD6649EA747C10D20FED45AFBC3 /* FBLPromise+Async.m in Sources */, - F024F9E4082E62A920212A68C6F210A1 /* FBLPromise+Await.m in Sources */, - 2319470B97FE66365447B1B365B291EE /* FBLPromise+Catch.m in Sources */, - BF1D7B2FC977F05DC98CA2755F09F7E4 /* FBLPromise+Delay.m in Sources */, - 5404CD089A6E8AB38FC10EA5AC1698AA /* FBLPromise+Do.m in Sources */, - B850C37C9D3477793D03A918EF947BA1 /* FBLPromise+Race.m in Sources */, - AC40E48B1F9C7498403A8F89D70D1003 /* FBLPromise+Recover.m in Sources */, - C3E82C7B2C3BA0068FB0E21B57240BA1 /* FBLPromise+Reduce.m in Sources */, - E226ED6ED3BCB6111760A37CFE4D89D8 /* FBLPromise+Retry.m in Sources */, - BEC2CD637770BAA042859A193E0674ED /* FBLPromise+Testing.m in Sources */, - DDCE3C2298F0F4A01F3A809C51BDF95E /* FBLPromise+Then.m in Sources */, - 869EFD46899AAC355070BD85EA06D089 /* FBLPromise+Timeout.m in Sources */, - F3E319EB12768A1D15AAD18057955310 /* FBLPromise+Validate.m in Sources */, - 351C75B8A34238D839C473819BC727ED /* FBLPromise+Wrap.m in Sources */, - 8879F15F31CE4B6050CF80B8D64504EF /* FBLPromiseError.m in Sources */, - F0AEEF4AA75AB5885C0E035BD3B63AF1 /* PromisesObjC-dummy.m in Sources */, + 71350169026AFF9B04DCEF3B572833C2 /* nanopb-dummy.m in Sources */, + D29520BC3CC0A932088ECB6AE814E06C /* pb_common.c in Sources */, + C2A476CD4E56B76EB9D7992510C7C210 /* pb_decode.c in Sources */, + E24C347860BDB7399534B05A409AF7A5 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A14BEC3895E33E0FDC1918E67ECAB16 /* Sources */ = { + 6E094947D2A1ACC8BD47919A89056AD9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 002461A79ED8B4D033DBB8838D4DF5AF /* FirebaseRemoteConfigInterop-dummy.m in Sources */, - 59737C9A6A8AF69103F006B063C86505 /* RemoteConfigConstants.swift in Sources */, - CE1C244970D9C76DDB35A8B84AC62345 /* RemoteConfigInterop.swift in Sources */, - BA0A05CC90D54475B7288D460ACE3C8B /* RolloutAssignment.swift in Sources */, - 0798B14A705061D930A2F7838D73C6C3 /* RolloutsStateSubscriber.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6DB4AE4D89F847F9F973B78B865C59D4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AE564A027A23E8C2C173C658ED44E87C /* nanopb-dummy.m in Sources */, - 1AACAC903501554BC7922740F23F4465 /* pb_common.c in Sources */, - 1C262B06242851146240E957E32B0870 /* pb_decode.c in Sources */, - DAB6A10971BA3E989D681189A518F517 /* pb_encode.c in Sources */, + BD6DF13B69BCC11F777121CD0D921621 /* _ObjC_HeartbeatController.swift in Sources */, + 906011115D3D2AD6FD9D904FFA506FEF /* _ObjC_HeartbeatsPayload.swift in Sources */, + 0504AA1427D6B2525EB50E06EE090323 /* FirebaseCoreInternal-dummy.m in Sources */, + 799AEE8157D704B227658BFDB38D39C7 /* Heartbeat.swift in Sources */, + DB3D9883FD3714960DCC3A1307F4B91F /* HeartbeatController.swift in Sources */, + E3F5C4E2888472EF68BA69EA5B8BABC0 /* HeartbeatLoggingTestUtils.swift in Sources */, + 099EEBE24F791EEEE1638FBE6E92837D /* HeartbeatsBundle.swift in Sources */, + 7FDBA161AD7637E824050526E0E7432B /* HeartbeatsPayload.swift in Sources */, + 77590E5BE2554AFA95DDEA23961EE323 /* HeartbeatStorage.swift in Sources */, + 212D812B9A69A99903724E62E235F6C0 /* RingBuffer.swift in Sources */, + DADD3E901AB517930F5C1CFDCEBBF378 /* Storage.swift in Sources */, + 2237F91D83CE158235BEC1D50CF28C7F /* StorageFactory.swift in Sources */, + 91CB0483D55BEC54B3646CE992D4F43A /* WeakContainer.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -41669,76 +41575,142 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 73DD026482BBD98AD7BC7D8D5607917A /* Sources */ = { + 76AF739719170FF3F251A657FA59794B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B407FD7E636AD5A1705CA94425BB8049 /* alarm.cc in Sources */, - 87864A917C2DB37AD3235320E0E04C8B /* async_generic_service.cc in Sources */, - 3732FFCB7ECB711B8F85307478299025 /* auth_property_iterator.cc in Sources */, - 4BA016DCA5BFB726800583C87D76E1AD /* backend_metric_recorder.cc in Sources */, - 047311A2A3A4828182CAA5906EBF774E /* binder_android.cc in Sources */, - 5FCCE27FD183993ED913D9883D1BB40C /* binder_connector.cc in Sources */, - 8A775F9512F3A8818BF5DBCC13F45CF5 /* binder_constants.cc in Sources */, - F8117B893AA74A4E9E626ECB15FB9DCA /* binder_security_policy.cc in Sources */, - FE99AC849942AF638AE36F5DA374CCE2 /* binder_server.cc in Sources */, - BA3049A67A83783AFAA9DF28C4E698A8 /* binder_server_credentials.cc in Sources */, - 507BF90463EB5781CCC4A8E724501041 /* binder_transport.cc in Sources */, - 5756C8F637D4782CDE9F7F6B01B2329B /* byte_buffer_cc.cc in Sources */, - 9AB0055081BCCFACEADAAFDCFA002A13 /* channel_argument_option.cc in Sources */, - 2FE92C1B93D0E5FA70530823DA16F2A1 /* channel_arguments.cc in Sources */, - 6B80DDE0AE7F22A92E2A16341507A35D /* channel_cc.cc in Sources */, - FA084BAA4EA427E8A6E7DBDB0EDCD6CA /* channel_create.cc in Sources */, - 8943B917305CAF9F6FD7DD1F9C772B9F /* channel_create_impl.cc in Sources */, - AE30B256790B50DEEFF6A3B1E507C6F1 /* client_callback.cc in Sources */, - D7E8FB18414ED5864A2B4FB875E4D4E4 /* client_context.cc in Sources */, - 8D92DBAD0AE25BB4EF62A5A246745D05 /* client_interceptor.cc in Sources */, - 0F3A9C3ED189CC39EDBFC125D06F05A6 /* client_stats_interceptor.cc in Sources */, - 3D734B1F2565BDC89CA9B9B20A0695CE /* completion_queue_cc.cc in Sources */, - 545C40A495286E5C9C792332A4271DC6 /* connection_id_generator.cc in Sources */, - C25A86B49618F4B3BA7CCC8B1208F81B /* create_channel.cc in Sources */, - 91C08F260B69BFE93E38695FA248734C /* create_channel_internal.cc in Sources */, - 9A194763410B4DB449EDE003BFA56E9B /* create_channel_posix.cc in Sources */, - 6FEFBA240D81620C7B0C191B1745D32C /* create_default_thread_pool.cc in Sources */, - 501CE53D05F1DBF11CC00B65753C6B7E /* default_health_check_service.cc in Sources */, - 6A29522B95EB97D62416E426066BE3A7 /* endpoint_binder_pool.cc in Sources */, - FA7A1328B3AD184E7C1507495838F447 /* external_connection_acceptor_impl.cc in Sources */, - DAD18B07E93DFD5426FFDF37C7D21B5D /* gRPC-C++-dummy.m in Sources */, - 291EA2C873C115C940F01E447847F4A4 /* health_check_service.cc in Sources */, - C1CE9038B6994DF0DB046E78B41ABD96 /* health_check_service_server_builder_option.cc in Sources */, - 55D5848BBADFD531275FE29AFA7EB068 /* insecure_credentials.cc in Sources */, - 3E7C957D053F9D45A595D2718678ECDF /* insecure_server_credentials.cc in Sources */, - DBBC550F014CBD332FACA00115AD3DDC /* jni_utils.cc in Sources */, - B00F93D8A382C4F7E51D9CF8A88080A9 /* ndk_binder.cc in Sources */, - 3EA15E6A5AE0560C5F10FCB997E20719 /* resource_quota_cc.cc in Sources */, - 79E57C30305B5B700B04EA201E3F182F /* rpc_method.cc in Sources */, - 8362046632081C826AD3DF5456E5BDF6 /* secure_auth_context.cc in Sources */, - ED3BA2A3C6E893CA07C24C6554AE48B1 /* secure_channel_arguments.cc in Sources */, - 7CCF4911947FC7B955EAB781D57F5BCD /* secure_create_auth_context.cc in Sources */, - 172043F68BFFB63E5059A8815C9B138A /* secure_credentials.cc in Sources */, - 6F047B0B8C8906B6282471F612E610D9 /* secure_server_credentials.cc in Sources */, - 495F18175E406582EA96F3AE09D91DD6 /* security_policy_setting.cc in Sources */, - DC1F93A1AE7259E5FE5F8750BFBDD90F /* server_builder.cc in Sources */, - B46BEF0BFD5C4E62ABF20FE676593F05 /* server_callback.cc in Sources */, - 03DE3A0F011AC90E54FDC47F49740F10 /* server_cc.cc in Sources */, - 47A93A381D99238C4ED0DFF07929B2AB /* server_context.cc in Sources */, - 64A7B832DC42B610089499ECBD5F0068 /* server_posix.cc in Sources */, - 4B82F4A23CD7DBC328D9CDBC9553693E /* status.cc in Sources */, - B26CBABFE9C3D7C26EA1419F908194F5 /* string_ref.cc in Sources */, - 84DBC1B22BA2351CA5BA5FC8AAD35C78 /* thread_manager.cc in Sources */, - A3773BDCB9BAB86B1616D2ADBE34059A /* time_cc.cc in Sources */, - 075B8F745650E9C0F6AB413FA65F0C0D /* tls_certificate_provider.cc in Sources */, - B4D459ED5D262B61D8C28942C6CF0C66 /* tls_certificate_verifier.cc in Sources */, - B8EFF6F658729D5C208962D1DD5562AA /* tls_credentials_options.cc in Sources */, - 8D23811EA739A9AF7D84D6423F3E2E36 /* transaction.cc in Sources */, - DA1176560618B7A92F2EC34B4B83C041 /* transport_stream_receiver_impl.cc in Sources */, - 2BB39D21C7F82FBB61ED05840FA4F86F /* validate_service_config.cc in Sources */, - C117E6E9A4CC9002AD84A1993C6AEA7E /* version_cc.cc in Sources */, - A6508FBD9BE164ABA15496D16B93721F /* wire_reader_impl.cc in Sources */, - 30638465A3C56843E94BB505A60F5EEA /* wire_writer.cc in Sources */, - AA262099E348448EFFE99B7A3248CE5E /* xds_credentials.cc in Sources */, - 450E47143E97BC8C759EEC5E5809E8C2 /* xds_server_builder.cc in Sources */, - 6E467D7C855B3E66201410D9C500B35B /* xds_server_credentials.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7B7C3D18F35715C9DCBCB1CBCD548B97 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A2F7ADCD95C0FFE9C65D08717E5686EE /* abseil-dummy.m in Sources */, + 83AD9D1ACF1FAAB54CADC605F4219696 /* address_is_readable.cc in Sources */, + B009FD3156AE669137BC7BD79D285BE2 /* arg.cc in Sources */, + 0811725178D83CDB67E857BEE4B5CC22 /* ascii.cc in Sources */, + 4B4669E1DED6E87B82F50B83BF00F35B /* bad_any_cast.cc in Sources */, + E4DDAE9627A7C4ACF63E10BCD8D5ACC2 /* bad_optional_access.cc in Sources */, + 9110EE4E2C8CF6151AAC3EC33ABB01B9 /* bad_variant_access.cc in Sources */, + 213EF10A60384FCB7CA3FD3D5603470C /* barrier.cc in Sources */, + CF22ABBD0E75D7F4ABEDB714897EE2E1 /* bind.cc in Sources */, + 8F441B95792665735BFD10D142EEB309 /* blocking_counter.cc in Sources */, + 03462A5E76F8BDF8C6133083CDAA7A13 /* charconv.cc in Sources */, + 324522300CB447773CDA3E420B779454 /* charconv_bigint.cc in Sources */, + A9A1F0915EB34E9731109AAB2057BD67 /* charconv_parse.cc in Sources */, + 5CD3F7D376C1BF062703F42C30E431FD /* city.cc in Sources */, + 6E4F13496F825AD6DC6AB80A14D32E34 /* civil_time.cc in Sources */, + 7D28468AD8A72429CB6CD5D50BDEBD06 /* civil_time_detail.cc in Sources */, + FAF631D2673488646FBA8EF38E02ABF4 /* clock.cc in Sources */, + 25FD1B18BF74B06F994F7552F50F31C0 /* commandlineflag.cc in Sources */, + 41A1668AAEF4DD92E54C1398D6067045 /* commandlineflag.cc in Sources */, + EAA840D343E7B1F2A4F1E0247C91191B /* cord.cc in Sources */, + AE6F04E6A1C163B3A80F73E18A21C57E /* cord_analysis.cc in Sources */, + FEE85F9511542CB4D96FAFEC743AD039 /* cord_buffer.cc in Sources */, + B7CCCE7927CEB64923ED5270DB9DEE33 /* cord_internal.cc in Sources */, + 20CFC80902DFD9224768BFC916B0F584 /* cord_rep_btree.cc in Sources */, + 10B2A1F84C37554203AAD6D7CAFCC633 /* cord_rep_btree_navigator.cc in Sources */, + A6DBBD2B13D8A3526AABDF2C8F3CCEA7 /* cord_rep_btree_reader.cc in Sources */, + 4059A31AA620C4B1655D0740BF0635FB /* cord_rep_consume.cc in Sources */, + C07707B339007FF67687E31BFB80C64D /* cord_rep_crc.cc in Sources */, + 0318B37E667CAB9B948A0EA4A3D3A2FC /* cordz_functions.cc in Sources */, + C4316538F35E74E1A969672DEB9B2DAE /* cordz_handle.cc in Sources */, + A328B1747EB33FBF0BA3C76D39C1B3FB /* cordz_info.cc in Sources */, + 07A92F8AC8E2FD76F5FDBBADC8F2EB4E /* cpu_detect.cc in Sources */, + 33521F3CA055FDEC207DD2524CE57354 /* crc.cc in Sources */, + F5DB32A33203F5119AC870EF8277D8CD /* crc32c.cc in Sources */, + 35C1910F89546AACF0AA7A1A2FB909DD /* crc_cord_state.cc in Sources */, + EFBDF809A9D3F878E79246DA419F877E /* crc_memcpy_fallback.cc in Sources */, + 03834E9DDF6E06E65DE47848FF369CD2 /* crc_memcpy_x86_arm_combined.cc in Sources */, + A9A7A094CB833B198AADDEA2CB66E4AC /* crc_non_temporal_memcpy.cc in Sources */, + 3FE520395D8961348C29846945758FC4 /* crc_x86_arm_combined.cc in Sources */, + 6A29A499C60A7A9F0D131AD2CEAEB051 /* create_thread_identity.cc in Sources */, + F3BB4730929EDBC9829E15421DC437C1 /* cycleclock.cc in Sources */, + 56FE905EEAF35DA6A5FC227A24737D6D /* damerau_levenshtein_distance.cc in Sources */, + 771D389311C2420A8F2C7380A48D66C9 /* demangle.cc in Sources */, + B4BA8A9914C5217DF8D57D4147966754 /* discrete_distribution.cc in Sources */, + 7DB57F21FF9518EC2A98F76B1C979AE2 /* duration.cc in Sources */, + E103024EA343063B6A2906303D5204B0 /* elf_mem_image.cc in Sources */, + 826D68208F77F2960586007C9CE5DC29 /* escaping.cc in Sources */, + A3B534D501A7260FC73A6A272B0D8CD8 /* escaping.cc in Sources */, + D78B34B1E03CAD5C1543C6A06678841B /* exponential_biased.cc in Sources */, + 51B0B443934AD090B6A0BAD88368422F /* extension.cc in Sources */, + 00980F3059F50C3CE54D50C31E20EE73 /* flag.cc in Sources */, + ED460410CE5D87E5097FCFE72750EED6 /* float_conversion.cc in Sources */, + 47D2E16BA3CD7223E9B33792AB35E161 /* format.cc in Sources */, + AAEF51AED21CB07ECB41AD1113CB9383 /* futex_waiter.cc in Sources */, + C9EB26FB136A2F7BC56339E9724A4742 /* gaussian_distribution.cc in Sources */, + 71077625D1391E867D30CDA837BC64B6 /* graphcycles.cc in Sources */, + 18E2A781513B3598D7992259B55682F1 /* hash.cc in Sources */, + 3C42500D4F621E042A7F67D8EC28DFB1 /* hashtablez_sampler.cc in Sources */, + 2C6C3BEDE5E372F406AEE1C7DD952341 /* hashtablez_sampler_force_weak_definition.cc in Sources */, + E187AEC1E42FA8F99AD39B5D96DFA87D /* int128.cc in Sources */, + 5A0696526763D780B50ECDC6865181BD /* kernel_timeout.cc in Sources */, + CAE3D9DE87631C1C3502F221CE340513 /* log_severity.cc in Sources */, + 0056DE1A952373D02349F7EE83438801 /* low_level_alloc.cc in Sources */, + 2A81446FB2F01871C2005917115AA3DC /* low_level_hash.cc in Sources */, + 8D1F2B321A1381BF4837109F08F91CF2 /* marshalling.cc in Sources */, + 3E2AFABF18EAEA632EDBD6BD28E5013D /* match.cc in Sources */, + 525F7E98D14B655B09B6281D3BDBB50F /* memutil.cc in Sources */, + 769E1E88D8496C3093C500044AA9C218 /* mutex.cc in Sources */, + 85A46CF3A32ACC4A4145C58B4815315F /* notification.cc in Sources */, + 86D18E4BC2D7410483CA1D9B9A6E85D6 /* numbers.cc in Sources */, + 262AF10483D14C66B73F850ED2111603 /* ostringstream.cc in Sources */, + 1ADAB5AD68D1AC1FF31CE73C11053DFB /* output.cc in Sources */, + E6FA9D4D0E3A33835FB247CBA1CD768A /* parser.cc in Sources */, + 0414303D90F54F0EE403B709E39C2C93 /* per_thread_sem.cc in Sources */, + 694B6D336CA4ABFA2E40F1F4007D994E /* pool_urbg.cc in Sources */, + 16667D80300066208EB9021CBAD748DE /* private_handle_accessor.cc in Sources */, + 90C5660916B08C966AC0EE5E06B4C2E9 /* program_name.cc in Sources */, + 9E61E49333C2DD66BF3245AFA108B5AF /* pthread_waiter.cc in Sources */, + 32C25160B2E4F189E92C367EFE8121B4 /* randen.cc in Sources */, + E89E8D8C1514D5921455B30AF2B68C52 /* randen_detect.cc in Sources */, + 57DB99DD1D7141D350CDD938574745E6 /* randen_hwaes.cc in Sources */, + 82A21D13E5DBB085245AF8A77A373B02 /* randen_round_keys.cc in Sources */, + F2CE1300D2AF73F6BB752FE8AE3A5448 /* randen_slow.cc in Sources */, + 8A25CA8EA9180F12F5278918616D2B96 /* raw_hash_set.cc in Sources */, + AD04E3FF668EC2F2384680016023C059 /* raw_logging.cc in Sources */, + AF131F8353A00E38E5B4D6D12F306C27 /* reflection.cc in Sources */, + 57B0A556730FE1080875494153D8A5D7 /* seed_gen_exception.cc in Sources */, + D09CD7914F5E62A21397EADA1FFFCCAB /* seed_material.cc in Sources */, + 96C2FEAAC1649B3C22F13B010E0E5F3E /* seed_sequences.cc in Sources */, + 313C7011FA0986A4EBDF85CE1EF2B317 /* sem_waiter.cc in Sources */, + 93A0FFFD4DE6549789DD223B1E1F8966 /* spinlock.cc in Sources */, + 726C50F40220A4B59345DCCBDFBD45B0 /* spinlock_wait.cc in Sources */, + 5EA3BA04C40DCB0B5DDF43A8C021FCE6 /* stacktrace.cc in Sources */, + 781243653F9E7B53751DA185B9EF43F3 /* status.cc in Sources */, + 3581FAE952606F6272DA7B96941BE631 /* status_internal.cc in Sources */, + 397D2956F65B27C9E26753D1BF2D53B4 /* status_payload_printer.cc in Sources */, + 83F2ED528E36E004C9507A314C51AC18 /* statusor.cc in Sources */, + 9EF5BC60B5B1D69D7C804F81DA8EE7D7 /* stdcpp_waiter.cc in Sources */, + 7AF09D59AD6B62EE4AC920DC6175A72A /* str_cat.cc in Sources */, + F8A31CCA12756E9D12C701AF323E7690 /* str_replace.cc in Sources */, + 571641ABBEEB0EAE049277C217DD3CFD /* str_split.cc in Sources */, + 2EFD486F1FA0C7EE3D47092A428DEBD0 /* strerror.cc in Sources */, + BA7CB84A4BFF37B8071C1A5BBF9F99A1 /* string_view.cc in Sources */, + BCCABF7337483D8E94109431BADF5601 /* stringify_sink.cc in Sources */, + BD29A0F0421714A86ECE60A1784B4F82 /* substitute.cc in Sources */, + 3C49108FBFA525EF458C48B1AD17D097 /* symbolize.cc in Sources */, + DF8E99E6797CAD1F07FC42E3308FFDAD /* sysinfo.cc in Sources */, + B5500080B07EAB969C09B5BADA19DFAD /* thread_identity.cc in Sources */, + 26ABABA6A0549CB52D4E20505766598B /* throw_delegate.cc in Sources */, + EDC3B8845774F1CC8294049ADA7ABFE9 /* time.cc in Sources */, + 9A15B1E4FDBFF42150A10C23D61B785C /* time_zone_fixed.cc in Sources */, + 6442315A59C5357A0598579C98BF25A1 /* time_zone_format.cc in Sources */, + 6EBDD50C2FD291BD7769D10BB82CC658 /* time_zone_if.cc in Sources */, + E1F3D0581CF6A2D9D057D730C5E2DCAA /* time_zone_impl.cc in Sources */, + 1B4492962C1AF43302C07085488C4DFB /* time_zone_info.cc in Sources */, + 0E4FBC2CD18FC040EEA8FC222E29204D /* time_zone_libc.cc in Sources */, + 4068CD13587D4FE00957DE104965BC96 /* time_zone_lookup.cc in Sources */, + 0A049C4D5C349567AFB0E8C3ABCA98DA /* time_zone_posix.cc in Sources */, + 897B92249A578A6CE99206BB997A4297 /* unscaledcycleclock.cc in Sources */, + 1CC05DC166A3FCA615331D28611E28B8 /* usage_config.cc in Sources */, + 08DFE2F16CA5BB63B192DADFEA287FB5 /* utf8.cc in Sources */, + 9A2EA678915AB7337C48C72619A1BAF0 /* vdso_support.cc in Sources */, + 67E5C028DF5E3C5D666003527A28826F /* waiter_base.cc in Sources */, + 93A84994DD616810DC330285B97BE50A /* win32_waiter.cc in Sources */, + 1DAB1B3465B35806BD22188B18FEAB28 /* zone_info_source.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -41787,17 +41759,283 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7BA52856F3C232F058B5856EF9F976C7 /* Sources */ = { + 7EB8B8CEB85DEC41F061D06A00377EA7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8325CF60D01F84587D1B25FFE5945282 /* Sources */ = { + 8452C1AE9C1EC42F232DC4BAD2949A84 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9073A1A9CF1A5AA6B17329C074D2A122 /* aggregate_alias.cc in Sources */, + F783AB8A688C31FE103AC6541C4B83CC /* aggregate_field.cc in Sources */, + BFC9A1A01BA6A699E43D0E871C8E2047 /* aggregate_query.cc in Sources */, + 3667F8983ADA5D96D88D64BE6961079B /* aggregation_result.nanopb.cc in Sources */, + 55A6A171B616A43A3E851F819DC62A4D /* annotations.nanopb.cc in Sources */, + F171A712A62B830DD93343617AEDC706 /* any.nanopb.cc in Sources */, + 9726DAC7DC7CD6BC5015E4E84946E9ED /* array_contains_any_filter.cc in Sources */, + 0D0703E7BDDAD81EAD9B76C73A722AB1 /* array_contains_filter.cc in Sources */, + B308E545F41A4408A3CA5B424B4E11ED /* async_queue.cc in Sources */, + 73A0C1BCF2F8314F818C7B30AD0A1567 /* auth_token.cc in Sources */, + C4C21ABB3D35417F56829DE588E7AF2E /* autoid.cc in Sources */, + E34CFADD2E2F2A0093EB69102F6C71CE /* background_queue.cc in Sources */, + 32E5EC8952D5A614BD936BFF50BDABAF /* bits.cc in Sources */, + 4566305D653773A59DAC8786FAB64545 /* bloom_filter.cc in Sources */, + 3F867FD7552871D96533E40E5EF8FEEB /* bloom_filter.nanopb.cc in Sources */, + C28111AB24AF921C0B6981865ACEBC5F /* bound.cc in Sources */, + 8DB2C2DBB673BE11F62864E1107582D5 /* bundle.nanopb.cc in Sources */, + 4D19A81ECD50CC217FDE073383E3E5CC /* bundle_loader.cc in Sources */, + 052D49E44F1F5781951C4C19B9801526 /* bundle_reader.cc in Sources */, + 41D63B060E9A93854F4349FB2D0B08C2 /* bundle_serializer.cc in Sources */, + B035E0179B80ABB9FD00A446E537AEA9 /* byte_stream_apple.mm in Sources */, + 19C0B09F8B593A9FECB2457E7DDD4231 /* byte_stream_cpp.cc in Sources */, + CC0E8213D2E97B923245FA6C0AE8371E /* byte_string.cc in Sources */, + 86A26E976B47313C4A654AA290F5F343 /* collection_reference.cc in Sources */, + 52F8AB0510500D3B49AE6E1C5D4D398F /* common.nanopb.cc in Sources */, + 982C293551F3F2568F208B74F0AB2533 /* comparison.cc in Sources */, + 0128F89B62A668AE577EC357941A80A3 /* composite_filter.cc in Sources */, + 03C132251B28F92ECF648916552AAD68 /* connectivity_monitor.cc in Sources */, + BEABE53B6E1A0BEEAB334D25D1B1A630 /* connectivity_monitor_apple.mm in Sources */, + 33704BE1BF3D3EE51B44F764CC1C4E72 /* converters.mm in Sources */, + A8EFB3722C2919D411902DB0F7F83A7B /* database_id.cc in Sources */, + 74FD7CB0B7FC824B02E02E79DE206C93 /* database_info.cc in Sources */, + 66DF3CE227C3B2BB62C84A85B9A296B0 /* datastore.cc in Sources */, + 99BB095248BD7E9F71E04DF0E1BC3122 /* delete_mutation.cc in Sources */, + 62E3E168E7C22E23E637F0ADFA9C1975 /* direction.cc in Sources */, + F6EF6799D745895DD40204E605C5BD0D /* document.cc in Sources */, + C21AAA053D17FF77E0559852081EAEA0 /* document.nanopb.cc in Sources */, + 23D7375B5F3F4414A101ECA8CBBB7F1F /* document_change.cc in Sources */, + 4365D1908FD17EA0DE50EE3F7D2B7368 /* document_key.cc in Sources */, + A1B23AE489002860D3300939DA654198 /* document_key_reference.cc in Sources */, + 5DCFCDCD2FB431346673A97994EF279A /* document_overlay_cache.cc in Sources */, + 04FE76167E82EE7951911D70DEDC203A /* document_reference.cc in Sources */, + FB870D69B993BF8BDB015D4046919BBC /* document_set.cc in Sources */, + 0CD4A532BC1B307A16A69F37D496A2E8 /* document_snapshot.cc in Sources */, + CBBB096027C642421D3C900EDF12BA78 /* empty.nanopb.cc in Sources */, + A21F653D9CB90F1D3537F7BE6C1ACC56 /* error_apple.mm in Sources */, + 3EDE280150730279A29DF4AD0DA2F2C6 /* event_manager.cc in Sources */, + 3DF5A73609EB7F7E4AA5C6B4B00F2ACA /* exception.cc in Sources */, + A7CAAF007BBC66F47FCD988489E5B5D8 /* exception_apple.mm in Sources */, + 100A3B007C512EDF738540DC9D8F1096 /* executor_libdispatch.mm in Sources */, + 4F34F5FB60B81BB045E99AFFF2E9C70C /* executor_std.cc in Sources */, + 18365B062C99168A882959FB3DFF90C8 /* exponential_backoff.cc in Sources */, + 5E72B9C961E70A73E008FB127F8BE9ED /* field_filter.cc in Sources */, + 7EED49238DFB6F76A37B32874AF8BA6C /* field_index.cc in Sources */, + 33BDDAE04792799D3E9084E39CFFB529 /* field_mask.cc in Sources */, + 594A747D3255705D90D0928BC0808E47 /* field_path.cc in Sources */, + 3B0C447E1BC34C7F0F678E4C7C8111D9 /* field_transform.cc in Sources */, + 365FC78EE41A85D3867A590398D69E91 /* filesystem_apple.mm in Sources */, + 44A84D4481D7F309CEE0DFDEAC76B663 /* filesystem_common.cc in Sources */, + 1DE83F9C974522B65447399894658EC6 /* filesystem_posix.cc in Sources */, + B7A95C426B71F0E3B91BA2D15BBD156F /* filter.cc in Sources */, + 846FBBE2BB0EBC4F68F3D5143674ECE6 /* FIRAggregateField.mm in Sources */, + E0B0B8F7C2F4388930CB56C1A956D61C /* FIRAggregateQuery.mm in Sources */, + 506E13345CD0D59746BEA096BEA9020F /* FIRAggregateQuerySnapshot.mm in Sources */, + 0443CFB1821478B7969789BC81E8295E /* FIRCollectionReference.mm in Sources */, + 753F47C1126661D94F65377D4DFC78F6 /* FIRDocumentChange.mm in Sources */, + 262EF15F4B6AA494B755410F63D27651 /* FIRDocumentReference.mm in Sources */, + 55F416B330BAACD5F5255EEE99F98361 /* FIRDocumentSnapshot.mm in Sources */, + 0A8C727F472FD1A8FBC449C602FBAF45 /* firebase_app_check_credentials_provider_apple.mm in Sources */, + 1CA1F865F189FC1B543847328092FD08 /* firebase_auth_credentials_provider_apple.mm in Sources */, + B3DC13B02F643C00C74304D2E9FA7A77 /* firebase_metadata_provider.cc in Sources */, + B94EED52003E3698D3F408DF13B725F5 /* firebase_metadata_provider_apple.mm in Sources */, + 32755D9AC263E719ECED45A6313C5893 /* firebase_metadata_provider_noop.cc in Sources */, + 1C43A50F9DA66629561512563A73519D /* FirebaseFirestoreInternal-dummy.m in Sources */, + 453F72917FF0A2ED03A5DB8E4721C633 /* firestore.cc in Sources */, + DA0B4DF3A1EDB32DE389F9A11619210C /* firestore.nanopb.cc in Sources */, + 607CB215A6EC7EE56BAFC8391EDB3337 /* firestore_client.cc in Sources */, + 9619B39161896EF37CC65CB5F8773A44 /* firestore_index_value_writer.cc in Sources */, + 30E7CB90263C45E796B2C1B1324550B2 /* firestore_version.cc in Sources */, + E8AB6EB1B04BEB453F6E45500C7E9785 /* FIRFieldPath.mm in Sources */, + 86B2FBC92233F5AFA27B53400DB82833 /* FIRFieldValue.mm in Sources */, + FF0379011E21744DFAAC72F9782180B3 /* FIRFilter.mm in Sources */, + 34F9993D456C0B31177BA705609CF3AE /* FIRFirestore.mm in Sources */, + D07A662B9FDB7EAD8556964B7F1FFF9D /* FIRFirestoreSettings.mm in Sources */, + 7701FC0F1C03FCF7567E3E834AABB333 /* FIRFirestoreSource.mm in Sources */, + F980642FD1DC9BC04CA2A0D131B21F2E /* FIRFirestoreVersion.mm in Sources */, + 86AC09B7C33877044D1846AF5E793010 /* FIRGeoPoint.mm in Sources */, + 7D663A7976B8BB5C42CE1D7967ABABF7 /* FIRListenerRegistration.mm in Sources */, + F4E27F8A30F195552DA018F0A314A750 /* FIRLoadBundleTask.mm in Sources */, + F5A8E312CF9C731813FCB60F284CF7B1 /* FIRLocalCacheSettings.mm in Sources */, + BF82684E4C6C26836ED91FEB85C1BFC4 /* FIRPersistentCacheIndexManager.mm in Sources */, + E3FED452237E4029D95E98AB4B0507BF /* FIRQuery.mm in Sources */, + 615592F1EE616AD830F77C157ED5756F /* FIRQuerySnapshot.mm in Sources */, + 73518AB2E6AF70FDB654BBCCC1EE4CF5 /* FIRSnapshotListenOptions.mm in Sources */, + F6B25EC76C31EF9DC684098D08C95A10 /* FIRSnapshotMetadata.mm in Sources */, + 9F0CD1457223323EC03D6C2D7F8558A7 /* FIRTimestamp.m in Sources */, + DD2B1D4687EEA84ACD9125EB6CC303C7 /* FIRTransaction.mm in Sources */, + 5D30160D25CA7173E2A9696AE8C7F3C9 /* FIRTransactionOptions.mm in Sources */, + 9D43B710788C9AD994500728CD2842FE /* FIRWriteBatch.mm in Sources */, + 24DF652D594ABD4F38ED6C5FA5F4838B /* FSTFirestoreComponent.mm in Sources */, + AF82D081020BB82A7F7BBE5C8D2210B1 /* FSTUserDataReader.mm in Sources */, + FD5793C7F084927324B3E8ACF85BC240 /* FSTUserDataWriter.mm in Sources */, + 9233F4F3F4491947F1AA9F333DAA8A05 /* geo_point.cc in Sources */, + 0CF9A25E33EC3997C396129E3795EB8E /* grpc_completion.cc in Sources */, + 3C9BFFEDD59E6437DB0E072F5302815A /* grpc_connection.cc in Sources */, + 52BC7C995265E48884499A096B85B444 /* grpc_nanopb.cc in Sources */, + 90D7BABE4479552B983D751551AEEDA8 /* grpc_root_certificate_finder_generated.cc in Sources */, + 584C1721F98860C3C3FA592BCEBBCC09 /* grpc_root_certificates_generated.cc in Sources */, + EE6616B06684C1D3AB0B79245316E43B /* grpc_stream.cc in Sources */, + CF2E9BB5B3E8F56A60FED9817E406EFE /* grpc_streaming_reader.cc in Sources */, + 04E7966EBDD449DCEF5F831232A8E62F /* grpc_unary_call.cc in Sources */, + 8B769B7B9D41E396843317907D9EB903 /* grpc_util.cc in Sources */, + 1658833D1CBDF141379584AAA208CD91 /* hard_assert.cc in Sources */, + 00FE139F0993F93E6154AC3D92A527FA /* http.nanopb.cc in Sources */, + B4F6E4F94BAB38A7BFC08DA137B49273 /* in_filter.cc in Sources */, + D19BF4B454E99109A915E4A66F575E5A /* index.nanopb.cc in Sources */, + CB68F23AAA67BC049C2894956911555E /* index_backfiller.cc in Sources */, + 89A82DA354108AD16CDAF5DD0642D2FD /* index_entry.cc in Sources */, + 473F2593A03A80A5564CE44747D3B4DF /* json_reader.cc in Sources */, + 710B772BDF33E4042AB24B76ACA44EE6 /* key_field_filter.cc in Sources */, + A722D028229135303F6AF1F5BCD7FCC1 /* key_field_in_filter.cc in Sources */, + D9FF69B61892258E1C2F14F394F6006F /* key_field_not_in_filter.cc in Sources */, + 8795A1FC82217654BC6123AF4A62AC95 /* latlng.nanopb.cc in Sources */, + CF19A113FFE22763F72B027B95488E5A /* leveldb_bundle_cache.cc in Sources */, + 3A02B0946F1166A0EAEFAE065DF18FF1 /* leveldb_document_overlay_cache.cc in Sources */, + 022F1075F468030EC2E49128463C33B1 /* leveldb_index_manager.cc in Sources */, + 1C936B315CD81E223451C693605FEE0A /* leveldb_key.cc in Sources */, + 00E6FB1E55499E93CA9AC7B52D68B82B /* leveldb_lru_reference_delegate.cc in Sources */, + 3A59F83C1054D1C5331324370DA943E2 /* leveldb_migrations.cc in Sources */, + F1B16071DE3D8018F1197995A946863F /* leveldb_mutation_queue.cc in Sources */, + AFF7736CEA2ABD90D88630CD3312A39B /* leveldb_opener.cc in Sources */, + 082803FE103672F8EA78D8F2F566E855 /* leveldb_overlay_migration_manager.cc in Sources */, + 23D1785500AB69F28ECAD07F370C86CB /* leveldb_persistence.cc in Sources */, + D7BA4109C8A69B0339541675DF84F511 /* leveldb_remote_document_cache.cc in Sources */, + 4114822C214232DF87A79BCD6124EB40 /* leveldb_target_cache.cc in Sources */, + 7ADB93E98B107ED4DE70600428E027DB /* leveldb_transaction.cc in Sources */, + 8E16E1EDF1B4306FF93ABC02CD5C9D73 /* leveldb_util.cc in Sources */, + 4D90EB9B245B86F315B96BD7A0C78D07 /* load_bundle_task.cc in Sources */, + 76983D1BB03C62AFBA4B0B87CB9244AE /* local_documents_view.cc in Sources */, + AF1F94D39A8CE0AC64062A9D6DBF93B7 /* local_serializer.cc in Sources */, + A7AE9DD4DDFB0927FA42F95446376898 /* local_store.cc in Sources */, + FD877BCFA7EC68293B36EA1AF5D63B23 /* local_view_changes.cc in Sources */, + 47E62EFC601857F98C671BC52BD1F076 /* log_apple.mm in Sources */, + B2A1D3647FCBE62A9CB848210C072EC8 /* logic_utils.cc in Sources */, + DF7A09C9E6FFEE2C224C62EA53B52147 /* lru_garbage_collector.cc in Sources */, + C9D55F22644F7ED5665AE0EE7AD53143 /* maybe_document.nanopb.cc in Sources */, + 2B4D261B2A09A2B0C6BFBECCE08C37C3 /* md5.cc in Sources */, + E476E75D2E3AEFD2B87577D2704638ED /* memory_bundle_cache.cc in Sources */, + 19FD01241ADA982408CB17F6246839F2 /* memory_document_overlay_cache.cc in Sources */, + C575643B1537FC5C3C106ADA1DAB1275 /* memory_eager_reference_delegate.cc in Sources */, + 8A101AA63CDFCA4895AE5174299368ED /* memory_index_manager.cc in Sources */, + AC86E5B32E5DF4A4A898B927D2F7DCBD /* memory_lru_reference_delegate.cc in Sources */, + B1B3010379BE91D2E1D7A6FA1E88E426 /* memory_mutation_queue.cc in Sources */, + 6E57742544692FF8410D52D448F07D65 /* memory_persistence.cc in Sources */, + 3006E3DEA7A5D0DC8402E4B965399888 /* memory_remote_document_cache.cc in Sources */, + A71EEDD945B6F5534B8D7945D0892824 /* memory_target_cache.cc in Sources */, + 4660E4FBF4CC48CF1F90DF934DE90211 /* message.cc in Sources */, + 3EFBFF5E8FBEE0AFCB43F0AC5BDD30C3 /* mutable_document.cc in Sources */, + 9E2D20EABED910F723E951B7C6E3D7CD /* mutation.cc in Sources */, + 01197136D2D101735FE94409F6A3BC8E /* mutation.nanopb.cc in Sources */, + 560E56980F96B76E0A22DA5473AA39FC /* mutation_batch.cc in Sources */, + 092ED3C220727E27B84AD61B66CA1C32 /* mutation_batch_result.cc in Sources */, + 985D2F7DE2FF0C34A444AD8362864C1B /* nanopb_util.cc in Sources */, + C67C363E2F39CA7F9B375061C9828EDA /* not_in_filter.cc in Sources */, + 3E57F4965B71DEA90B65ABF5C35CB6BB /* object_value.cc in Sources */, + 288754D722661AF2D3446C51B11C304E /* online_state_tracker.cc in Sources */, + 42CDABBD4865B82948EBCB5D2CABAF62 /* order_by.cc in Sources */, + 9E837829CEEEBF342EDA817186A1D33E /* ordered_code.cc in Sources */, + EA4EF29233703B07B615ED72BAA22A3A /* overlay.cc in Sources */, + 4FFD2B881665BE3F3595CC67825535B2 /* patch_mutation.cc in Sources */, + 9525FC984FD2F9153264C291DAE1AFFD /* path.cc in Sources */, + 01206EE15931B5D504ED1AE007424394 /* persistent_cache_index_manager.cc in Sources */, + FAD6AA712F36955110AFA7FA3A8957F5 /* precondition.cc in Sources */, + 54F220F763893268B329861B3DD75899 /* pretty_printing.cc in Sources */, + F52DF84EA4F9612CDD28C4B58EBA8F5F /* proto_sizer.cc in Sources */, + 297F8EF39DFCF377C145CC130BBA914E /* query.cc in Sources */, + DBD333E0475847E36EEBD6F25ACF9CD0 /* query.nanopb.cc in Sources */, + 228CF529A71293A0D97AEC140608BD97 /* query_core.cc in Sources */, + 15F9D83777AF3F926FBCFF1644938F9B /* query_engine.cc in Sources */, + 96959B7804F4E2428F2B4F55BBD3E70E /* query_listener.cc in Sources */, + 941245D2F9D6671D4A518DB7400FE07C /* query_listener_registration.cc in Sources */, + F228831B9FC99606DF3E03849E60210C /* query_snapshot.cc in Sources */, + 40E6F1934EC134A0928BD7CDA9485EEC /* reader.cc in Sources */, + 438BE7841DC7426CBD0179CA2C611C82 /* reference_set.cc in Sources */, + B0C42608232E1DD1E10ECDFDF74BC6F8 /* remote_event.cc in Sources */, + C3C707BF8ED288870876A5746442AD9B /* remote_objc_bridge.cc in Sources */, + 9DA7481B4654E9810075C406E9F75AAA /* remote_store.cc in Sources */, + 48923706777F8324A5BB5C9EC7F634E8 /* resource.nanopb.cc in Sources */, + 1FB470D64697E3E421D42AD730D5F032 /* resource_path.cc in Sources */, + A6CCED0E2EF25CF7D4E269C5D3D294D0 /* schedule.cc in Sources */, + 7C4DF7C3755686AB26F9437548CF54C4 /* secure_random_arc4random.cc in Sources */, + 37F18FB55700B3CE5B407BA07F061283 /* serializer.cc in Sources */, + 41D4D847996F43C41DB6766E038DFDCD /* server_timestamp_util.cc in Sources */, + 4866EF8B5913122EB14A3F6F3D3FC1A6 /* set_mutation.cc in Sources */, + 15610A58BD3C0D6AE911E1395C71E9F7 /* settings.cc in Sources */, + 9BEC7050EAD0BA0D86FB7BF118EFA94A /* snapshot_metadata.cc in Sources */, + 0EE06D93D6EBA2D7FB899CD897F36F5E /* snapshot_version.cc in Sources */, + E54AE9E14546311A7AD67A46D68D5462 /* snapshots_in_sync_listener_registration.cc in Sources */, + 8C6BC185F4D84A8F938C9371D5ACB672 /* sorted_container.cc in Sources */, + E690EBB46ED142D06D8B75F5D94BF1B1 /* status.cc in Sources */, + AC77712F4B5C4BCD92DB88E117DEA240 /* status.nanopb.cc in Sources */, + 70B1FE9790157AF13CC576D4DAD72B6E /* status_apple.mm in Sources */, + D494C2B8AAABF648CFD58F1B3966C8E2 /* status_errno.cc in Sources */, + 0F1C3E22D9396E766DB0D33E012105D3 /* status_win.cc in Sources */, + AFB33241E1E37778F14AE5F0738CA9F6 /* statusor.cc in Sources */, + A61DA17E63C9415B4F1282F57276885C /* stream.cc in Sources */, + 9BD062A2600FA727554288101AC11F0F /* strerror.cc in Sources */, + 2495F34878F6DA9B29E8941FC2D7DFA0 /* string_apple.cc in Sources */, + 845924D370ABCB876C905BA0084C43D3 /* string_format.cc in Sources */, + FB2C8AB994F5649A74EB197C9E93915B /* string_util.cc in Sources */, + E1F7A0525027BDD510706DA7C0C00A38 /* string_win.cc in Sources */, + D8148C0F4AD23F756673B307F346A498 /* struct.nanopb.cc in Sources */, + BCD8B59C38DBA8A508FDEFD3AB9398F6 /* sync_engine.cc in Sources */, + FF1986C2AB61B58C72DF5D2F35DD7D08 /* target.cc in Sources */, + 8FED31F0B87D01C0F6E59CBCF69F0C01 /* target.nanopb.cc in Sources */, + F097DACB8BD494CC01E61097A20CBFEB /* target_data.cc in Sources */, + 0AEEF962FC38BC52DE6BB4F7F68CF03B /* target_id_generator.cc in Sources */, + 164C513EB2F4B4DA32413531C40319D6 /* target_index_matcher.cc in Sources */, + D90AC1858C7E3170B87752C6507E2410 /* task.cc in Sources */, + 456BD0ADDC886A0EB7C6ABE6E4BB84B9 /* testing_hooks.cc in Sources */, + 5A0C3CE5914A3A3EEAF4E60966BA3B55 /* timestamp.cc in Sources */, + 47A8C34EC64ECF35434D6A5A3147D9DE /* timestamp.nanopb.cc in Sources */, + 63774D47646AC5043B1A89DA318BBA37 /* timestamp_internal.cc in Sources */, + B22CAE7E2A8DAC093238BB52E091E153 /* transaction.cc in Sources */, + A65AFD8C49CB7FB7A9AEBA88D5103FE5 /* transaction_runner.cc in Sources */, + 54D4BE97CE81C7978B43E900648E4B71 /* transform_operation.cc in Sources */, + A5A844176CDB24AC1FACE49E384FC7F3 /* user.cc in Sources */, + 2D2A5D49377D65C104159A7FDB75DCD0 /* user_data.cc in Sources */, + 5CC6CCD9237E4BA2BEA6A1053063E91B /* value_util.cc in Sources */, + AE7748E977BB72FFBEC5106446023195 /* verify_mutation.cc in Sources */, + AF6661983546BFD60B9569900C29CDFA /* view.cc in Sources */, + 2E5DAB8B858A3AF6511CC5AF33510F1A /* view_snapshot.cc in Sources */, + EA664BF8EFD4C21136E71423C730B895 /* watch_change.cc in Sources */, + 5B58A9635BD90DEDBA7B5575FD3A83DC /* watch_stream.cc in Sources */, + 7BA001CA7E2F503C4765030A9E1DC32A /* wrappers.nanopb.cc in Sources */, + 187178A9F203C9343FD1E7C78397BA5F /* write.nanopb.cc in Sources */, + B53CAFA8F6814BB6FE8BD84E90A30958 /* write_batch.cc in Sources */, + 7F2C510E9958D53231C01BAC1E788531 /* write_stream.cc in Sources */, + 2D42E99DC7A9EDDE23846364BBBAF053 /* writer.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8633FA0E4B35C8E713C191F2C59A1A72 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A8F5B24B32BBCD90F0FA9D7AFBD72CA8 /* FBLPromise.m in Sources */, + 921645250422328E0F238B4F642B354E /* FBLPromise+All.m in Sources */, + BE092DF9B0481DC976979EAC7DB38483 /* FBLPromise+Always.m in Sources */, + D7090B9E9C72092C2D218722F1E6E2F7 /* FBLPromise+Any.m in Sources */, + 4C20593E3F9D7910567635E1F01CD6DB /* FBLPromise+Async.m in Sources */, + 92F20E7657BC3E3644DF8A0034F91DDE /* FBLPromise+Await.m in Sources */, + AC65749FE9AD3016FC0210CCF281DD1A /* FBLPromise+Catch.m in Sources */, + EF6294EF14CCE1C60BB16A5D6D386D5D /* FBLPromise+Delay.m in Sources */, + 742B578DD7C868BC4236221C723BDC5C /* FBLPromise+Do.m in Sources */, + 4BD40E900B5DC8842E425CB39A1AE190 /* FBLPromise+Race.m in Sources */, + 78BE4E5E2E3B944E7CC08E5880C743A7 /* FBLPromise+Recover.m in Sources */, + 58193E85B089EDDF9DEAFAF7C95BC4E5 /* FBLPromise+Reduce.m in Sources */, + 2FD8025FE624FE3A7E166A1F983215FA /* FBLPromise+Retry.m in Sources */, + 4189060DAB34401BB792322E48891A0F /* FBLPromise+Testing.m in Sources */, + C9981F0843425AE2BB699C22074D129F /* FBLPromise+Then.m in Sources */, + F3E30633F8A1AA098D7DC498CD8B24DE /* FBLPromise+Timeout.m in Sources */, + 7DC65E0D4245D40330D54128924A57C0 /* FBLPromise+Validate.m in Sources */, + 49970A97B1EE40C998688EB148F78B93 /* FBLPromise+Wrap.m in Sources */, + 2795375FD1647F5BFC3723589B82C03D /* FBLPromiseError.m in Sources */, + B9558C149162F2BF8B6A64DAD88646BA /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -41909,6 +42147,159 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A1CD5A97E1017FD6FC840308614A9AFC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2D1C515841813E824A3964F6BDC19C64 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */, + F148E92923B70B9ED6F136A53228CC8B /* FBSDKAccessToken.m in Sources */, + 4DA77B1AF3426AF6C7574B17312E3A9D /* FBSDKAccessTokenCache.m in Sources */, + D35AF0677231584ECFE9C05A147AFF58 /* FBSDKAccessTokenExpirer.m in Sources */, + D52B9EB4C0265AD75F880EE5A50E8FAD /* FBSDKAddressFilterManager.m in Sources */, + 7A48CBDE50FB79F3CAB4D17320ED82A9 /* FBSDKAddressInferencer.mm in Sources */, + 792C5D2DC4B1DCB14834C51EF6459906 /* FBSDKAppEvents.m in Sources */, + 8F2B86226B64DAB5615F713C26F139A8 /* FBSDKAppEventsDeviceInfo.m in Sources */, + 23F20758A8A8761220F3507B6093D69A /* FBSDKAppEventsState.m in Sources */, + AE4D80FF6721793965E2FD02D7F6FBF3 /* FBSDKAppEventsStateManager.m in Sources */, + E73390436F1B5C3930A612D23D309F11 /* FBSDKAppEventsUtility.m in Sources */, + 880D9A321D81F25DA9CBB5F43C500A45 /* FBSDKApplicationDelegate.m in Sources */, + 875833A27A1F3EEA48E92DF07E962E00 /* FBSDKAppLink.m in Sources */, + 4FBB76664D6D5374056BCD0874525EAD /* FBSDKAppLinkNavigation.m in Sources */, + 290C9B7812DE77E35CDD3F86217B7DBF /* FBSDKAppLinkResolver.m in Sources */, + C2C18D6FDC2CE46F39793244A7C63537 /* FBSDKAppLinkReturnToRefererController.m in Sources */, + 532A4D5B60B23F74DA01B8503160B44F /* FBSDKAppLinkReturnToRefererView.m in Sources */, + AABCBEDAF169228DB631F544B5DAB378 /* FBSDKAppLinkTarget.m in Sources */, + 7DDB2ACE7A180BE06BB6EFF8DDE7402C /* FBSDKAppLinkUtility.m in Sources */, + 66B21A8EB0A31752C6790114ED1B1083 /* FBSDKAudioResourceLoader.m in Sources */, + 4CFD43D125BA96AC891821F572AF6E7D /* FBSDKBase64.m in Sources */, + 5BDBA4913D0100515F75C2BDD2965647 /* FBSDKBasicUtility.m in Sources */, + 47F76CDE8B4234172D8A4980070AE752 /* FBSDKBridgeAPI.m in Sources */, + DA0A54A184FC99AACA018967F5AF9AA6 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */, + 9EE7725E58F4546150AFD2C6A0DC8ACD /* FBSDKBridgeAPIProtocolWebV1.m in Sources */, + E7F3F5EDC98298441DE1B7AA0E9608E8 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */, + 4B065844AFF3B55EAAC80CF1907D02D4 /* FBSDKBridgeAPIRequest.m in Sources */, + 4639FC9E8CD09CC636E7FEF5A2669BD7 /* FBSDKBridgeAPIResponse.m in Sources */, + 54ED61E0625AB694E7E0B949D8DE2788 /* FBSDKButton.m in Sources */, + 1F54EB5907F7A2CA6AD8208B5E815CD4 /* FBSDKCloseIcon.m in Sources */, + 7BD7878545A1B8087B46610ABFE41DF1 /* FBSDKCodelessIndexer.m in Sources */, + CE657733322E649F92FF870205FFB580 /* FBSDKCodelessParameterComponent.m in Sources */, + BACB36CBA02C6919C90A119D1F1733B3 /* FBSDKCodelessPathComponent.m in Sources */, + 13BE0A1906713A4BA9D5E54AEB3510C8 /* FBSDKColor.m in Sources */, + 5DA9671654028E1B10BF26C8387FDDBF /* FBSDKConstants.m in Sources */, + 3622D5F903CE3D05FD9F1E4AB9FE629D /* FBSDKContainerViewController.m in Sources */, + 0EE04FF6D17793BCA9DFA29FAE82B432 /* FBSDKCoreKit-dummy.m in Sources */, + 6FE070F6AB062747269ED690B800ED5D /* FBSDKCrashHandler.m in Sources */, + 00B4AA4478644BBE28BE5FBC4ECAFF1F /* FBSDKCrashObserver.m in Sources */, + 9F678FDD92F8B1AB9D1A53EA8A0E395F /* FBSDKCrashShield.m in Sources */, + D3B2D57E3FF63DAB326C3DA64F2FB8AE /* FBSDKCrypto.m in Sources */, + 7DC61D49F7AF529A98E97230432E42F5 /* FBSDKDeviceButton.m in Sources */, + C26116243561A6041DB30F1E377F20D9 /* FBSDKDeviceDialogView.m in Sources */, + 179A26B572E7604B23D47146F084E252 /* FBSDKDeviceRequestsHelper.m in Sources */, + 239559C4D11BE9E5002759B1C83B34AF /* FBSDKDeviceUtilities.m in Sources */, + 577C795A42BFD3DD0F5993194F6B7F8D /* FBSDKDeviceViewControllerBase.m in Sources */, + 12B44BD26E808FF84FADA5FB75667479 /* FBSDKDialogConfiguration.m in Sources */, + 4CBA415A3F8AA531D4F8495DBE8254FA /* FBSDKDynamicFrameworkLoader.m in Sources */, + A7BC739B5DCA949F108BA2F24599F3D0 /* FBSDKError.m in Sources */, + C6B5726F785AB87667DE83CED96F62C3 /* FBSDKErrorConfiguration.m in Sources */, + 0D83A2189D3E669A52A47FDC7EB31485 /* FBSDKErrorRecoveryAttempter.m in Sources */, + E28F07275CDE643ED020AB8701340C8E /* FBSDKErrorRecoveryConfiguration.m in Sources */, + BACD451C113933130E49D3C2D579E53F /* FBSDKErrorReport.m in Sources */, + 4B9D12F4CA724E216568D7444C0BC9DA /* FBSDKEventBinding.m in Sources */, + 8A80092D9B43668D3893CD4D6CEC8998 /* FBSDKEventBindingManager.m in Sources */, + 10B6C286874467B7ABC645F02119CB40 /* FBSDKEventDeactivationManager.m in Sources */, + FC3056D51D9737359E3FED63A4300460 /* FBSDKEventInferencer.mm in Sources */, + 584D4240DB610B576FAA013BF10BE230 /* FBSDKFeatureExtractor.m in Sources */, + E931343977D31EF3F0A8BEFE3B8EF564 /* FBSDKFeatureManager.m in Sources */, + 5A8562BDEB5C6E7B1117E4F86DFF464B /* FBSDKGateKeeperManager.m in Sources */, + 42C1214A8897EF7BEE9DB3CAC634310F /* FBSDKGraphErrorRecoveryProcessor.m in Sources */, + B436CE9486C6282FD39F68D3485CD7DA /* FBSDKGraphRequest.m in Sources */, + B80A8F4FBC03F26A3210406547287421 /* FBSDKGraphRequestBody.m in Sources */, + 0DBDC7E3A4E2A9F19B30A94FEE001809 /* FBSDKGraphRequestConnection.m in Sources */, + F855E39CCEB3EA48FD5F012DE762FE7E /* FBSDKGraphRequestDataAttachment.m in Sources */, + 17F7611CAB8B030547FD99BEFE96806D /* FBSDKGraphRequestMetadata.m in Sources */, + 0D05BE9A1EAC6035EB8A3512BF80312D /* FBSDKGraphRequestPiggybackManager.m in Sources */, + C1FC797A12CCBFC23B1DE0601DF21BC2 /* FBSDKHybridAppEventsScriptMessageHandler.m in Sources */, + 7887A800A64B33CBAA063D003A64C4D9 /* FBSDKIcon.m in Sources */, + 670E8B064EFDA4369D8084A09DCB2E6F /* FBSDKImageDownloader.m in Sources */, + 184354D05E499C6F59FDD49FB17C1A0E /* FBSDKInstrumentManager.m in Sources */, + 284D33BDD24E03BA21D34B305860F4C4 /* FBSDKInternalUtility.m in Sources */, + EDF62493E52F9CDFC5D64670DEC23090 /* FBSDKKeychainStore.m in Sources */, + 6B12EFFF08EADDD85CC7F89F78F17D86 /* FBSDKKeychainStoreViaBundleID.m in Sources */, + 1C94C7A207E61ED3CD900E83028F1B15 /* FBSDKLibAnalyzer.m in Sources */, + 42543B516F8DA1A9A4A951BB05016F2E /* FBSDKLogger.m in Sources */, + EC38D01C60F5ECE7B45F349601262E58 /* FBSDKLogo.m in Sources */, + 3AE75C7BC72B6A5C06BFB4088A9B44BF /* FBSDKMaleSilhouetteIcon.m in Sources */, + 1B40164462247DC46EE3ABD4117F2948 /* FBSDKMath.m in Sources */, + CCACE40B8C65683CFD158A3E1EF09823 /* FBSDKMeasurementEvent.m in Sources */, + 4532BC3349902A02F82A5CB1375474B9 /* FBSDKMeasurementEventListener.m in Sources */, + 68B88F0F8603FB3438AFA8A8299D4862 /* FBSDKMetadataIndexer.m in Sources */, + CF9E1D3F06C8FB4673DE6656A8D11EA0 /* FBSDKModalFormPresentationController.m in Sources */, + D7CC74BC196B7DCB850338CEFE16F7B8 /* FBSDKModelManager.m in Sources */, + 303002996D0386FA52575A29D0185FC7 /* FBSDKModelUtility.m in Sources */, + D3CBE0562205C911324FED56A5993DCB /* FBSDKMonotonicTime.m in Sources */, + 5DF6561D8A1DC2E8D5D6ED9303ED702A /* FBSDKPaymentObserver.m in Sources */, + D33CD93F8D6808DC0C678E0D3EAD7B32 /* FBSDKProfile.m in Sources */, + 4450842D203F808090C38EA825A7AD26 /* FBSDKProfilePictureView.m in Sources */, + 7020FE412EA2CB865185818AB912EBE0 /* FBSDKRestrictiveDataFilterManager.m in Sources */, + A13846FD677F45F0DA707D8793485AD4 /* FBSDKServerConfiguration.m in Sources */, + C2ACBBA2F0516014F31619BD57E8955B /* FBSDKServerConfigurationManager.m in Sources */, + 9FFAFE80969572CE29249B8BB16D8EAA /* FBSDKSettings.m in Sources */, + 48DD3869E8A9A8C4FC71D77EB7CE7FC3 /* FBSDKSmartDeviceDialogView.m in Sources */, + 87193FF63CC39B8DF7AC609D79D782F4 /* FBSDKSuggestedEventsIndexer.m in Sources */, + EE1FA5F95396B6F87636D2B4AA9CF1A2 /* FBSDKSwizzler.m in Sources */, + A00CA549F5059ECEC241D3378B600FCF /* FBSDKTestUsersManager.m in Sources */, + CA6D4A6B85ABEFBAE4D9A919069C3CCF /* FBSDKTimeSpentData.m in Sources */, + E5EAFD3C516F56CC199C5E22C863E669 /* FBSDKTriStateBOOL.m in Sources */, + 6EBE8A80FB0F55796B6845CEBA2988B7 /* FBSDKTypeUtility.m in Sources */, + 51C13DEEEAF7DF3F8D8154252520FF4C /* FBSDKURL.m in Sources */, + 9AA4CDB34EEF1797DB8FB42DCBF2918B /* FBSDKURLSession.m in Sources */, + F9E4A66F61961707CC9675AA58EB2001 /* FBSDKURLSessionTask.m in Sources */, + 3B10467C119D682599BE01C8DF360654 /* FBSDKUserDataStore.m in Sources */, + A68202E696B40499C2A08357C5FC304F /* FBSDKUtility.m in Sources */, + 5FDC0B4E64EFF08256A64B3C4EE47354 /* FBSDKViewHierarchy.m in Sources */, + E70D2AB7B71E549AC6BB51ED66388D3A /* FBSDKViewImpressionTracker.m in Sources */, + E924DD0BDEF88A491B11C1136C946E17 /* FBSDKWebDialog.m in Sources */, + 7DC670F6AF32AB847E3E654B7D739058 /* FBSDKWebDialogView.m in Sources */, + 0AB8B2F5FCBB4E39F5A7CE1F0A13F903 /* FBSDKWebViewAppLinkResolver.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A66B9B0BA94442B4B4BC3E828A4E381C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B735FA12F716EABBC33FA304966663BC /* ApplicationInfo.swift in Sources */, + D72D2419BD4E2C7F43338C503F9E2A14 /* DevEventConsoleLogger.swift in Sources */, + 14B7E0E9D6D4D62F570A9C2F0B7D51BD /* EventGDTLogger.swift in Sources */, + A7713DB0C12C53EE69452A7BB8BB678B /* FirebaseSessions.swift in Sources */, + 90680CCD2AD88E5489027CD58243E474 /* FirebaseSessions-dummy.m in Sources */, + 79D0CFBE7C444ED13266CB07EC4A9843 /* FirebaseSessionsError.swift in Sources */, + 48B5A484C2BED3019609A0B82B2BCD56 /* FIRSESNanoPBHelpers.m in Sources */, + 441F2F1F0D6A28B357EBEEEBDD1E65F1 /* GoogleDataTransport+GoogleDataTransportProtocol.swift in Sources */, + 0201AA1C2AB80D81D5A49C9EC731A293 /* Installations+InstallationsProtocol.swift in Sources */, + 3E7E0DE230DC9398FDF82A374875ADA1 /* LocalOverrideSettings.swift in Sources */, + 791E7C78ABCC21570294A9458993C074 /* Logger.swift in Sources */, + 987DF2C72301319CE0CE83591377CEFC /* NanoPB+CustomStringConvertible.swift in Sources */, + 826C4BD271C857AEBF2119D3FDA4B8D7 /* NetworkInfo.swift in Sources */, + 3728B9D77F38FD3131F6BFABD26B72CE /* RemoteSettings.swift in Sources */, + 6C4E6076BDC36E2A9B2A6B110FC31319 /* SDKDefaultSettings.swift in Sources */, + 54D5471DF5358BB038AB252D0A829FE2 /* SessionCoordinator.swift in Sources */, + DAB96FFC85FDBDF297580A38F3912D9F /* SessionGenerator.swift in Sources */, + 284D3CAF8C2177F2B5B7DEF61313F51B /* SessionInitiator.swift in Sources */, + 14904FD518B3CBE0C4149D67E725BF07 /* sessions.nanopb.c in Sources */, + E2B0B5CA44039DEC03C32ACC335B0E07 /* SessionsDependencies.swift in Sources */, + 48049599C02F5A98B4DC4DF8656B3CC6 /* SessionsProvider.swift in Sources */, + 800B7023606B2810AB865FDA4EEDB341 /* SessionsSettings.swift in Sources */, + 8E5F827B9B326207EAD65B72DDA2AA0A /* SessionsSubscriber.swift in Sources */, + D6485A9D7F5C61E5139322C3E1EA6FB0 /* SessionStartEvent.swift in Sources */, + 8FF6ACF8C82CFD9CE250C35188D7AA39 /* SettingsCacheClient.swift in Sources */, + 3D2AF10951635344102E33DFDF30274C /* SettingsDownloadClient.swift in Sources */, + AAFA42E12E9432C40C440BED0AB36667 /* SettingsProtocol.swift in Sources */, + 7E1D7A88DD1ED4C386579ED7432BD337 /* SettingsProvider.swift in Sources */, + 310D2AB1CB388A84E0262190274C8EDA /* Time.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A7FB52000A4D74BA0305FC0109B5EC90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -41918,113 +42309,209 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AA9CB66B4E86B7A79751CE1CEDC912F5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EA8FC5DC33EBE98F3622A15DAEB44EA2 /* _ObjC_HeartbeatController.swift in Sources */, - D4FA5093BA6325AD7E6C54145228232D /* _ObjC_HeartbeatsPayload.swift in Sources */, - D5AF822AC42AADCADB7F3A6DDF1E78FF /* FirebaseCoreInternal-dummy.m in Sources */, - 65863B39D14AE7741112EC3DA1C61BEA /* Heartbeat.swift in Sources */, - 3A6671660BF3912A3AF5E8154B2C8725 /* HeartbeatController.swift in Sources */, - 2F0CCC00DA7515986AF7F62AE1138871 /* HeartbeatLoggingTestUtils.swift in Sources */, - 2D32DEB031C1CB14B66AE08B72D7BAF3 /* HeartbeatsBundle.swift in Sources */, - 6C9B4F65499F0F72C05E157973D9A0C0 /* HeartbeatsPayload.swift in Sources */, - E9CC91738164C9E11E22588931B35DD2 /* HeartbeatStorage.swift in Sources */, - 4E762F6C85EAF65474685C75C78E62F1 /* RingBuffer.swift in Sources */, - AA99300DF622A160AAB99D5F1D933707 /* Storage.swift in Sources */, - 029455727CA122A40149A4495788AA5A /* StorageFactory.swift in Sources */, - 5A81468BDE953F95A582FAD35575355E /* WeakContainer.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AAB7C06498C0280EC0259113DC4E13A4 /* Sources */ = { + AD09490451174431B4604689E15E19E1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AF6A44810D7EF7E20781C5EB67259CAB /* Sources */ = { + AD65D5F8C1A9DA2A4BAD4104E7DFDBEA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AFDDC05C671E2DF8B219F1B9EC6B429C /* Sources */ = { + AF492FB7064154BC9174D014C8862126 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C237935B291DC7870B802BD975B6A224 /* Sources */ = { + B47352B388D6A5000513C283327D3A24 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 65C5C28475B034BA6A08D6B16315E9F1 /* Pods-SwiftProject-dummy.m in Sources */, + EAD8FE86E671314A4AA9D5B7C005E24A /* GoogleUtilities-dummy.m in Sources */, + 9682FDA15AAC6E7903D11908C23B306E /* GULAppDelegateSwizzler.m in Sources */, + 1C43AC97466A99387A36478D35D88859 /* GULAppEnvironmentUtil.m in Sources */, + 02A87D19D6AE4AA0C566731D17725B3D /* GULHeartbeatDateStorage.m in Sources */, + 3264856DF3C1FE6E466DD768FBD80EF1 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, + CB5690ED7AEF4909102CE5A401685A9B /* GULKeychainStorage.m in Sources */, + 430A661B9F21083BCDEA5B0437F0703C /* GULKeychainUtils.m in Sources */, + D59C31643E09EC985873B244121F26F2 /* GULLogger.m in Sources */, + 9E2D4FFEA9F15E656DF4242887045106 /* GULMutableDictionary.m in Sources */, + EDBC4D08FE098FE7C41C31A5186E9553 /* GULNetwork.m in Sources */, + BEA6B5192AF2B73613C489536B7F6644 /* GULNetworkConstants.m in Sources */, + D196195290053A408295E2BFD633F217 /* GULNetworkInfo.m in Sources */, + E4C79928BE99ED42480C21B5F355BEBB /* GULNetworkURLSession.m in Sources */, + 144008DB75678C36EB978F7E6B7D792C /* GULNSData+zlib.m in Sources */, + 695D4D2FEBAEE430F32CFB8765333F84 /* GULReachabilityChecker.m in Sources */, + A0DA52A7511E6ED49A2AB310EDF5F8D6 /* GULSceneDelegateSwizzler.m in Sources */, + 8AA389A19F9CE53EC7506758A0920107 /* GULSecureCoding.m in Sources */, + FD206972FFE690BD69695EB819AEE79C /* GULSwizzler.m in Sources */, + B958CF54C1B3B5E3825BE529170278F4 /* GULURLSessionDataResponse.m in Sources */, + BBD5B4D11462667176D7E795015A4E1A /* GULUserDefaults.m in Sources */, + DE2C89C6D9FA6B1D322B76D5393E2089 /* IsAppEncrypted.m in Sources */, + 3EFE9857F51107480C0488D4DD1C0295 /* NSURLSession+GULPromises.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C6E1334A7A2AD30704E4F7F46B7C8FEC /* Sources */ = { + BAEFC897B12D1CF270CFC0AD9B5CCBF5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BE053952D4CAF582E0119EB7FE668810 /* FIRCurrentDateProvider.m in Sources */, + DB9B3ADBA4BE38481BCC32C26AABF6D9 /* FirebaseInstallations-dummy.m in Sources */, + B762A8FF27DF87EFF95F12D7A7B6F41E /* FIRInstallations.m in Sources */, + 7159B95FCEFF1281D00BE4FC68FD08AF /* FIRInstallationsAPIService.m in Sources */, + AA63D3D104BA45645BC680122372C556 /* FIRInstallationsAuthTokenResult.m in Sources */, + 78364AACCA2A30AD0673F120BD81451E /* FIRInstallationsBackoffController.m in Sources */, + 2DF3027CA2D682E9379A91680A5E20CB /* FIRInstallationsErrorUtil.m in Sources */, + A9F9E2C1ECE59E3A96ACA240DE39AAC9 /* FIRInstallationsHTTPError.m in Sources */, + BA0B94E4AF4074E935BDE3416BA09253 /* FIRInstallationsIDController.m in Sources */, + C52AEFF9AAE36A541EE95721441A2408 /* FIRInstallationsIIDStore.m in Sources */, + 3B54DED160D29C043355ACE7B0BE64EF /* FIRInstallationsIIDTokenStore.m in Sources */, + A4BF29A34797EEA246EDFB5859D1666E /* FIRInstallationsItem.m in Sources */, + 944FB5CD857CB35979C8B2002A2DB5B8 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + BE6BCBF17E4EB1F12741F1BF4F307BE8 /* FIRInstallationsLogger.m in Sources */, + C6BB85234562794188604F87A26A72DF /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + 764CECF59D231B48C86EA92AD318B325 /* FIRInstallationsStore.m in Sources */, + 708505BAE07309051D327A37FC40A47D /* FIRInstallationsStoredAuthToken.m in Sources */, + 1B7F8B91B846A3F6D8C11485B003DFD4 /* FIRInstallationsStoredItem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BDAD464EA879A18824E4B0FC2079DB6D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CB4B577BE5568AD8F14F87EFA70334E4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 956562C91D85A399917B636CC28064BF /* ApplicationInfo.swift in Sources */, - 54FA6FCACFF569C797F5A71FF6127437 /* DevEventConsoleLogger.swift in Sources */, - 3091C1A315FA87E7B3B32D1184F47CEA /* EventGDTLogger.swift in Sources */, - 95561B0C66C4E37F1CCA69EE982D3D75 /* FirebaseSessions.swift in Sources */, - 4471A77BAE23C877DBE14C79AA3CE654 /* FirebaseSessions-dummy.m in Sources */, - EF215A6844813DB8F1636EE1E1E38012 /* FirebaseSessionsError.swift in Sources */, - 036F53C32980D127AE8E31B67AC0CD01 /* FIRSESNanoPBHelpers.m in Sources */, - B42FC4DD7E64F557B5B8E6A4037E6287 /* GoogleDataTransport+GoogleDataTransportProtocol.swift in Sources */, - 8AAFD04A207C06E65FC3F1274EEB68C3 /* Installations+InstallationsProtocol.swift in Sources */, - 5C391249B994DFD506DDD5DCCC4659DB /* LocalOverrideSettings.swift in Sources */, - 6049DA9A17C5164AC80D19E345F1F5BA /* Logger.swift in Sources */, - 17988A4D473342DB7415D42778C617A7 /* NanoPB+CustomStringConvertible.swift in Sources */, - B2C87276253D1F0E6EE68B9670AC034C /* NetworkInfo.swift in Sources */, - 778E7C77BCEB9BC18694A76FB15FA5E8 /* RemoteSettings.swift in Sources */, - D88AA0CC4B784FD6A073ACCCDA2E6F1B /* SDKDefaultSettings.swift in Sources */, - E54F71F4503AC8C5835A8E225EC4C013 /* SessionCoordinator.swift in Sources */, - DAAB27729565B8407D388F80A1BF114C /* SessionGenerator.swift in Sources */, - B98540833FAD7745140A05AA6624AA85 /* SessionInitiator.swift in Sources */, - 1A502CB64E022ACC32D8048E9FCDA2A6 /* sessions.nanopb.c in Sources */, - 7AA91B47A3C87F0829151AA7180D345A /* SessionsDependencies.swift in Sources */, - 10D18F72975A7EC6944E00AC3B533153 /* SessionsProvider.swift in Sources */, - ACE634A9283FDDD966FF2B764E74D45A /* SessionsSettings.swift in Sources */, - 7AAEE31CB7DD64E22CA164B428F29C54 /* SessionsSubscriber.swift in Sources */, - 363C9FF9BAE2E4D10828BC01ED4FB30E /* SessionStartEvent.swift in Sources */, - A46FE34D31418B38A869A004D158B240 /* SettingsCacheClient.swift in Sources */, - 5E132EBA36E1E32CCA259D577BF9AF0A /* SettingsDownloadClient.swift in Sources */, - 8B856975CB88EF995330295FECB18DA3 /* SettingsProtocol.swift in Sources */, - C418DF911024A9D3B954672D9A737F5E /* SettingsProvider.swift in Sources */, - EDFEC29C1F697C1A9DF620C514E16687 /* Time.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D24AB668A8F5E0CF751DC7B2721713FC /* Sources */ = { + C0E20791CBC664CCF99D84CC63BF1821 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D498C096C8FBD3CD18C3FE858160DE11 /* Sources */ = { + C12FAAC83A887ED82AD93E309DF90F50 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2875B65DA393F60A35972F13528095CC /* AccessToken.swift in Sources */, + DE4B95E5CB56B3B45BBC6F7BA845FC36 /* Dictionary+KeyValueMap.swift in Sources */, + 06A7DF7ECD6C1CD123B3994B8A8811E7 /* FacebookCore-dummy.m in Sources */, + 79E0D7407334BFDD6AAF5961A3BBD791 /* FBProfilePictureView.swift in Sources */, + 9BD28EF96DDFF64B9F70D25405C9A20A /* FBSDKCoreKit+Typealiases.swift in Sources */, + D5059D23F0D8C905654291BCDD2AC684 /* Permission.swift in Sources */, + BAFF900C0428B7ADF0E85A9EE2DAC890 /* Settings.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C2C8940CD7459EC2E3EA91964B99981B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8241362B279B3414921BA5381AD5BC0F /* GTMSessionFetcher.m in Sources */, + 1FEB39C11CACFA3205261C9E1F7706A6 /* GTMSessionFetcher-dummy.m in Sources */, + D6E412E7ED66248BC615436E54DAB206 /* GTMSessionFetcherLogging.m in Sources */, + E4028FEEB9A1A091E8AB6CC6D0A0597A /* GTMSessionFetcherService.m in Sources */, + BA5EE8940FE083D6A2C3F248D52DDD12 /* GTMSessionUploadFetcher.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C5F676196821DBD908AE5E0741EB2D63 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5CC3CD0587C81D3722F08AF135E8C846 /* alarm.cc in Sources */, + 1FEB39F5030B0A00EFDD4E0EEB040C7D /* async_generic_service.cc in Sources */, + 923116A92DF550E950B2FC0C512CE31F /* auth_property_iterator.cc in Sources */, + C75AC012F478E761FF9BE92C1123E39A /* backend_metric_recorder.cc in Sources */, + 4706B6FCC2DE9F823D6D3CE50EE11E9E /* binder_android.cc in Sources */, + A6C599F9E1733D26E9A3CE1427B7A289 /* binder_connector.cc in Sources */, + 5C4B364A0164529344796F022972265E /* binder_constants.cc in Sources */, + 24AD90211461CB0693E21098A5D48098 /* binder_security_policy.cc in Sources */, + 31EFBAB156E84EC6940F290DC5E22EF7 /* binder_server.cc in Sources */, + C78EEF4F0EDE6BCABCCDB71C32B8AAFF /* binder_server_credentials.cc in Sources */, + 5241D183FB94CD01D4A622654DD73787 /* binder_transport.cc in Sources */, + D74DD3880DC66D1FA9EE0D2D7B3289FC /* byte_buffer_cc.cc in Sources */, + 27C524C33A82A6E85293E55F2A0ECC7D /* channel_argument_option.cc in Sources */, + 174D380B3E8938E70E3AB6BE3063210E /* channel_arguments.cc in Sources */, + 5D9D0A0432B9590ABCD00FAB3176372D /* channel_cc.cc in Sources */, + F9C886B3129560191FA0C629E9EB7595 /* channel_create.cc in Sources */, + E5D14693B09CFF0F5394500304A055FE /* channel_create_impl.cc in Sources */, + DFC6561A8E146F9F68D1ECFA0D3C83D3 /* client_callback.cc in Sources */, + 532470C19528FD3861A716FD0D2F41E7 /* client_context.cc in Sources */, + F1DCE3981FC1C1FF32F1AC76DE53766A /* client_interceptor.cc in Sources */, + 165E53DE3B4984DB605E652A3CCAB109 /* client_stats_interceptor.cc in Sources */, + 22066877F71590EF85181A5B5BA8C8B8 /* completion_queue_cc.cc in Sources */, + 38EB8F444B5F318673DAF717E123848A /* connection_id_generator.cc in Sources */, + 769291205D2FE5E0E6AC3B407A670E5E /* create_channel.cc in Sources */, + 67EC738381BA17A35A4E1C7DF9D90F02 /* create_channel_internal.cc in Sources */, + E4A27D442CC44D4C166A70BCA8D5D707 /* create_channel_posix.cc in Sources */, + E340646C86DB3C792732917BC912D850 /* create_default_thread_pool.cc in Sources */, + 6718157C69390FAB8837A40EF70857A2 /* default_health_check_service.cc in Sources */, + 601E016111ED539D9502653AD8BEE417 /* endpoint_binder_pool.cc in Sources */, + 5046742B686CF9FE388D2AA221845001 /* external_connection_acceptor_impl.cc in Sources */, + 4BA78EEFC8BB9380AD3EDE83E5A2269C /* gRPC-C++-dummy.m in Sources */, + FD56CA81535E9DD2497539311187D94D /* health_check_service.cc in Sources */, + 8B4EC3F54696FFDD8E8A5F3DEDEF0733 /* health_check_service_server_builder_option.cc in Sources */, + A1B3D730E041B411CDB91C935A2A8AF3 /* insecure_credentials.cc in Sources */, + 9485624DDA32E2BF11C9A99E4B7F5DF8 /* insecure_server_credentials.cc in Sources */, + A61BBCA592B791BE3FD18EE27E5C071C /* jni_utils.cc in Sources */, + CC8ED582BFDA4D4A07D2BE8261DADB2E /* ndk_binder.cc in Sources */, + 2995C480EBF6625C4877C470C991ED5D /* resource_quota_cc.cc in Sources */, + 720C2EC9978D04EF43B773F203F8CC97 /* rpc_method.cc in Sources */, + D16B8072F08930E2F00D87B5F745ED3C /* secure_auth_context.cc in Sources */, + C2E867984481B49FB60CD7EE082B06CF /* secure_channel_arguments.cc in Sources */, + AE0ADFA03C62EFAAC4ADD1C2B9983F30 /* secure_create_auth_context.cc in Sources */, + 7E904F52A60264F136E5313907E0054A /* secure_credentials.cc in Sources */, + F930468EC22FAD3FA0C5CCE568E12C7E /* secure_server_credentials.cc in Sources */, + 94AB0286C9065E5087A9C9B8552AADF2 /* security_policy_setting.cc in Sources */, + 4ECDD0E265F53734942B1AAA1B6DB3F4 /* server_builder.cc in Sources */, + 4DE5DA4F1D6026CBF3F95050BCFCF550 /* server_callback.cc in Sources */, + 7ECE9A20258A0C1DD894FDE9C241B24C /* server_cc.cc in Sources */, + FBDF940A49A2CF1DC8205A4D1F27AFF5 /* server_context.cc in Sources */, + 86D68A0F147B14FEBD0BB8F78662574C /* server_posix.cc in Sources */, + EAF21BE60851DF40846A5949E5631E09 /* status.cc in Sources */, + 510F154D204BDB7577BC62F358046490 /* string_ref.cc in Sources */, + 693224FC54108BED2A00EFAF2672DAF0 /* thread_manager.cc in Sources */, + 291A1DB394BBA3BFE6C13E39B23F26DA /* time_cc.cc in Sources */, + 745BAB5D1C29BC1A49D7E59EEDA4403D /* tls_certificate_provider.cc in Sources */, + 2CEA3443FE2C832BEE887B74035680D2 /* tls_certificate_verifier.cc in Sources */, + 981DDEFE437A851C69D7C0FF4C2323AF /* tls_credentials_options.cc in Sources */, + 1B8BA16EC39A4A4B4F9056599858B3A8 /* transaction.cc in Sources */, + 28D7D98D40C6C8ECD328D8115F9346D3 /* transport_stream_receiver_impl.cc in Sources */, + 65B379B1721E61EA06DFF2B1CC55E6B1 /* validate_service_config.cc in Sources */, + 783CDB4A91DF0540B21C81057ECC856A /* version_cc.cc in Sources */, + FE3CFAE9E0E8A20C73A8E05CE84C7B02 /* wire_reader_impl.cc in Sources */, + 4C2986A94D68AB50BDDE10FAA3180D1A /* wire_writer.cc in Sources */, + 43C1F492E9FE587172A171F25F2F0F0F /* xds_credentials.cc in Sources */, + A4337C40846B3278B1BFA95E38791292 /* xds_server_builder.cc in Sources */, + 6A57F36D1859286B4D02BBDFADE53467 /* xds_server_credentials.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D092341240D91E5FDE5F30F67809BC6F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D522250C9EB1732899C3DDD6AFC5C240 /* Sources */ = { + D9A6914F2985B02CDC05DB357711D148 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB3DADF5555F863822B98180FD51F73A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -42064,88 +42551,961 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E46C75F7077556BA4460B2C29EBBDE79 /* Sources */ = { + DEA9DE5DFFE0EA7C90E39658A0CE6D26 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E670F429523E9792AC37B5E450E09A6E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2E6906112225E063AE45F9A4502DB69E /* FIRCurrentDateProvider.m in Sources */, - 7BA0296B7956EAEEC8F5A50DF1364920 /* FirebaseInstallations-dummy.m in Sources */, - EA5DD5F7ACA0BEC0392B07BCB03E1E38 /* FIRInstallations.m in Sources */, - 7CA74122A1FB2F64B75DEC3C6E170DD6 /* FIRInstallationsAPIService.m in Sources */, - A49F4E449B4C33B29E9DAF0A3C6AC448 /* FIRInstallationsAuthTokenResult.m in Sources */, - 9ED3DD5CFF57735BE11B51951CB5B429 /* FIRInstallationsBackoffController.m in Sources */, - 140B3AB6DBFCAC8EFB0F9914B4BB4D69 /* FIRInstallationsErrorUtil.m in Sources */, - AC0691A758A831238615BCB79C9E1A1F /* FIRInstallationsHTTPError.m in Sources */, - BCBF92B515D1650BCBC2F0F572C175A8 /* FIRInstallationsIDController.m in Sources */, - E610B6CD3C3C4717EA14F1DB0BDCA3D7 /* FIRInstallationsIIDStore.m in Sources */, - E1F5F964620E2424D7EFECE8994DFEF7 /* FIRInstallationsIIDTokenStore.m in Sources */, - A3FF5E5CD1FE28DE4E3BC18B85DEF749 /* FIRInstallationsItem.m in Sources */, - EFBAC120EC0F42980C89E2DE0E6235C6 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - 982568B9028B760E3D656A5BDA155ECB /* FIRInstallationsLogger.m in Sources */, - 731629A9F3E56C5AF83523796A779813 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - D8D310D06EF7C1D96EEF209861894015 /* FIRInstallationsStore.m in Sources */, - 82D9CBD00D63C60D6D9FC2741287D192 /* FIRInstallationsStoredAuthToken.m in Sources */, - 781DBE76F408B8F5A891EF57149EADE9 /* FIRInstallationsStoredItem.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EBD964237DF7E653EC06FCB9F90B524A /* Sources */ = { + E2D49829FCBA9CD0465A2EFA166D67B8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EEF400230C7C170D1572ACA9EBF42B41 /* Sources */ = { + EED24A4E76EE685DB6F6DB392F41CDE9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 346BBCF9E2849F68C856F3E522180A20 /* arena.cc in Sources */, - CC75AB62A686556205043DAF9B36D414 /* block.cc in Sources */, - 215DA9A9EDFD886027B3A5C6CFD5FC61 /* block_builder.cc in Sources */, - 6C1A4D35D73FCD1533E72CF2A9ABC77B /* bloom.cc in Sources */, - A3B024E0FD939DD7659E5482E9E69367 /* builder.cc in Sources */, - E2BD32324D2C94AEF1FFFB261110DD84 /* c.cc in Sources */, - DC2626BBC02B8585798CA624B3960B0D /* cache.cc in Sources */, - 0A862429590A3D8017C261FB0C5791F3 /* coding.cc in Sources */, - 2AB5E11C47C580CB35CB77749EC052E3 /* comparator.cc in Sources */, - 68EC982DAC129E8EE4505A252994903E /* crc32c.cc in Sources */, - 6868A22B7807606A8F84870E9B971B18 /* db_impl.cc in Sources */, - 2E77925EB39F9C31086EF5F55F65779A /* db_iter.cc in Sources */, - 87674FEAE1E6CC2B1693EE91BE9AEC41 /* dbformat.cc in Sources */, - D2314349F4084C2C67625B1911DF2249 /* dumpfile.cc in Sources */, - E6F3CA80450333406FFA711FB1A2FFCA /* env.cc in Sources */, - 99A7359CDFDD50D6FA34B0FC45575A3B /* env_posix.cc in Sources */, - F6CF3E3EE5F4B5DAB14CACE40E9B7E18 /* filename.cc in Sources */, - CC3FC09DC72ECC1EC44ADF8BA6EA2642 /* filter_block.cc in Sources */, - A53D7F443092FE84FFB486B334C936AE /* filter_policy.cc in Sources */, - 679190FFB9C1E7D820394B7B669D56E9 /* format.cc in Sources */, - AFE3487BE963D2BDBD154F23D2B73747 /* hash.cc in Sources */, - E6B07E383253A6762C08918909E43A6D /* histogram.cc in Sources */, - E9D37870FEDE7499CC08DF27C469A205 /* iterator.cc in Sources */, - 6CD140FE4594BDD53A8BBD2BF6B8432B /* leveldb-library-dummy.m in Sources */, - 01F01B17F48647734A532D09F487988A /* log_reader.cc in Sources */, - C16A0F335EBA52888636998C76FCBA65 /* log_writer.cc in Sources */, - 9AE0E794114DAB270BEA656DCA2FEDF0 /* logging.cc in Sources */, - 746AFE064B7AB4AAB7B971E32DFA5E6B /* memtable.cc in Sources */, - 5B1E6CABC8B991CC77DE5B592E36EA59 /* merger.cc in Sources */, - 7B626FF5FC9BF9C17B67210B613D2362 /* options.cc in Sources */, - 31BF8D0F1F8F691B1C4724A0E07800EC /* repair.cc in Sources */, - 1D6A3807FD29875C8CCEAC2C1B7E1B80 /* status.cc in Sources */, - BD94BB0E74B802E8421DF9A977AE1E7B /* table.cc in Sources */, - 1A4F65BB2D2F9332DD9A19A96AE9630D /* table_builder.cc in Sources */, - BDB0719BFF6C06CFBCE7EC097E68BF98 /* table_cache.cc in Sources */, - 62D50E222E9AEF5E7FD5ECCF1D446FCF /* two_level_iterator.cc in Sources */, - BC43CA60BF973CB0299AB25AAAB9F4C2 /* version_edit.cc in Sources */, - 30247C376CB41CEFA90D7F747AB0ABB8 /* version_set.cc in Sources */, - B0F9AF638025AAA7574273B3FA67D719 /* write_batch.cc in Sources */, + 17DE7F6A4760D4D867F47C7A9C495415 /* accesslog.upb_minitable.c in Sources */, + 24B886DEA3F2F9B5595824614022A2C3 /* accesslog.upb_minitable.c in Sources */, + 32EE08A5BEDD6DA0BDB87D7F5B0BA9A6 /* accesslog.upbdefs.c in Sources */, + 272398936A1C200F578CB4DA9C79FCE7 /* accesslog.upbdefs.c in Sources */, + D25722CE90E0A8D0E5E2DC267252A40D /* accessors.c in Sources */, + 0BFF42788D7539CD82A871129742BED9 /* activity.cc in Sources */, + 094FEC76D5F269C9BB2D0E2DF6559712 /* address.upb_minitable.c in Sources */, + 8818D2D4A757535B1C02E3D66D88729A /* address.upbdefs.c in Sources */, + EB9386A61BBC6A7A373CF4C4FB3E99FB /* address_filtering.cc in Sources */, + 86F3D57AFAA1528FC6CAAF53234FF311 /* adler32.c in Sources */, + 43C4EBB533AF4796460CB704FE2A059F /* ads.upb_minitable.c in Sources */, + F9927DB68E8D47557F6DE17BDCE7872B /* ads.upbdefs.c in Sources */, + 3E5AC8A44774E756CDD9D1484E39D560 /* aes_gcm.cc in Sources */, + F1A31017F5A50D983B923028D492C4E8 /* alloc.c in Sources */, + D9103E3A819E78B9064723BC65516DCB /* alloc.cc in Sources */, + 10419AF408F73CE2C89E8B9C41D58906 /* alpn.cc in Sources */, + 3A065A0D8C1F5F935C01359D8BC2B9B3 /* alts_counter.cc in Sources */, + 01B7478E3A0DB1EBE080C894B13E0C8E /* alts_credentials.cc in Sources */, + 8E21B39023CC46487C948019F4325A8E /* alts_crypter.cc in Sources */, + 94150F4BD68038E1B47C101A3D57318E /* alts_frame_protector.cc in Sources */, + DAD9488CC408CF37867E0806DD0DED91 /* alts_grpc_integrity_only_record_protocol.cc in Sources */, + 5040610C8B2BFC69F7EC2B56C849CF50 /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, + B7ADC3ADAA4D81EEED58100B43D93F7C /* alts_grpc_record_protocol_common.cc in Sources */, + 754399BC21E14A6A82947C19FFDADE2E /* alts_handshaker_client.cc in Sources */, + 53CE10CFB4D3B4759D11DCBEB26299CE /* alts_iovec_record_protocol.cc in Sources */, + 03E79415C445F5966C1362A471421A32 /* alts_record_protocol_crypter_common.cc in Sources */, + 006D1BD0ED4FA64975A9918E13BFE051 /* alts_seal_privacy_integrity_crypter.cc in Sources */, + E5EDF101DA549F8ABD36928082F0DF2F /* alts_security_connector.cc in Sources */, + 0A85B9D6A0E94D962D051393DC6D37A9 /* alts_shared_resource.cc in Sources */, + 90CF2E8D9C303AC01824EA5E4A6B0085 /* alts_tsi_handshaker.cc in Sources */, + 882D26399E5D859C1F91C9E31CC87425 /* alts_tsi_utils.cc in Sources */, + DA6B606D62F44684C2C4B6E6BB1BC4CC /* alts_unseal_privacy_integrity_crypter.cc in Sources */, + 337E2984487FB5DF86994B06DE4C5491 /* alts_zero_copy_grpc_protector.cc in Sources */, + FBA2C9C7C61C978C45ABEBD1A4BEC84B /* altscontext.upb_minitable.c in Sources */, + 0B993E1E510DC8DD93F9EB65B671CFAA /* annotations.upb_minitable.c in Sources */, + 044FE6D5F022CA766873781EF93CEF47 /* annotations.upbdefs.c in Sources */, + 085297A3C9692B5568AFA5D556DC44B2 /* any.upb_minitable.c in Sources */, + 6D6A8E174CDFEF6113CF009841051159 /* any.upbdefs.c in Sources */, + 3DCBF23B9DC7C9F96340EF615D6A900A /* api.cc in Sources */, + BBDEE312FC3F1B9F3C6593F1111B0FAE /* api_listener.upb_minitable.c in Sources */, + D13EB3A96300428C6B496E02A756BF02 /* api_listener.upbdefs.c in Sources */, + 20244CA6DD8329F42C8E300B527B4A75 /* api_trace.cc in Sources */, + 4049E0CDD386A2B9A69C8E3634A35637 /* arena.c in Sources */, + 2CBCBADABFF55B6DBE1C5EC25383EAD8 /* arena.cc in Sources */, + 93AFF6E2A9F3376CBDA801E78295A7FF /* ares_resolver.cc in Sources */, + C8A2472BEE3E7151AA72540454815F03 /* array.c in Sources */, + D5FCB28F82EFEF3A8E6F7524EC41D47F /* atm.cc in Sources */, + 9E9A8DFB210F93A7D3F49B6FE0144CF0 /* atoi.c in Sources */, + 18F52185FA71DDC2A74FA1CD1A81A3A6 /* audit_logging.cc in Sources */, + 800C491C9CEE428F3BBDD9976689DFB3 /* authority.upb_minitable.c in Sources */, + 65324B3F82DBF429C59A4930FAC8B148 /* authority.upbdefs.c in Sources */, + 089C2524FBA519FBB8A823056765EBEC /* authorization_policy_provider_vtable.cc in Sources */, + B9EC9C1CEEE4770F581960F1F33BF231 /* aws_external_account_credentials.cc in Sources */, + DD5303C3F4418BD00489F68804A04099 /* aws_request_signer.cc in Sources */, + 9049A10AB18F0CC0D50584A90BD61803 /* b64.cc in Sources */, + DEE12EDEE7ABF8AFC27F44A72C1F1BC8 /* backend_metric.cc in Sources */, + E48B48FE0D8817904721B80C9DED3156 /* backend_metric_filter.cc in Sources */, + FEC8F686A4DA2DFA50B5442293BA4DEC /* backoff.cc in Sources */, + FACEC393741ECF2AB772D685852A006E /* backoff.upb_minitable.c in Sources */, + E3A24EC1631907D53117123173EBFC17 /* backoff.upbdefs.c in Sources */, + 1A2625F2AE40773648BC32920C0AA597 /* backup_poller.cc in Sources */, + 8B6DF7A13F2641E47C3FAB165D10B5DF /* base.upb_minitable.c in Sources */, + F78DD6797C774F98D9CFD756B8DFA842 /* base.upbdefs.c in Sources */, + 5A65240809188DB6C738827C5EC884D5 /* base92.c in Sources */, + 8E921586F1CE5C6A5BDB7825E669935D /* basic_work_queue.cc in Sources */, + 112325E68B73B7722BFC9DCB8F041F79 /* batch_builder.cc in Sources */, + 0FB004969C5CA036F68BA52ACE95D1F2 /* bdp_estimator.cc in Sources */, + CE26E379D3CFD6BB7566F5F9D1F327B8 /* bin_decoder.cc in Sources */, + 620C1E7C7452808AA4B876844F863A5A /* bin_encoder.cc in Sources */, + 98469DBD3B86F450DE4FE28BF470589D /* binder_resolver.cc in Sources */, + 8EBAF0021888468C9599F3CE7B45E97D /* bitstate.cc in Sources */, + 011188D18CDE4055607AADEC55EC07BE /* bootstrap.upb_minitable.c in Sources */, + BF64EB19DC05072C76E4EB8229570123 /* bootstrap.upbdefs.c in Sources */, + 8AE8A91EA8CB09ACDC9B2A8590FEAD45 /* buffer_list.cc in Sources */, + 4E45B4822BA46CDC8A763D89DF8BF6F1 /* build_enum.c in Sources */, + 4F27018F27FEA19D66A9D9C9114C4212 /* builtins.cc in Sources */, + B04777C9E067FFE422E73B20F9063D64 /* byte_buffer.cc in Sources */, + BED72783E44C17A6DCD73E280A26BA44 /* byte_buffer_reader.cc in Sources */, + 3E65ECD978A3947EC36FCC20E528B70F /* call.cc in Sources */, + FCF4C337DC5528E695529FE64B05E728 /* call_combiner.cc in Sources */, + A11067FB37037243C009BC28AE21D271 /* call_creds_util.cc in Sources */, + D976856C7C09DC2AEB9CFF365E739CED /* call_details.cc in Sources */, + AA97F02716812A0373650CFD3172707F /* call_factory.cc in Sources */, + D7F7E83D61D019112CD41009FCED1A64 /* call_filters.cc in Sources */, + 502E831C98A89E8E5E0FFDF319244BAB /* call_final_info.cc in Sources */, + F932AC11E0574724E29981CDC26D40F4 /* call_log_batch.cc in Sources */, + B087DC99FFDFE3411C42842D0F23739E /* call_size_estimator.cc in Sources */, + B85300B585B4A55CB5BB4BEDCBDFBDD5 /* call_spine.cc in Sources */, + A0B6EE8857E693C25506B71A242BE9B8 /* call_trace.cc in Sources */, + 9EF20FD6A4314E4019F40A1C9A3DC6C3 /* call_tracer.cc in Sources */, + BF8702A8190C78EA0146A64DF4619EBB /* cds.cc in Sources */, + 1F8CA1EC4EA73139C7375BC1E8A6ED3A /* cel.upb_minitable.c in Sources */, + 93A5D596F5C58A5E98DB292CF304F4E9 /* cel.upb_minitable.c in Sources */, + F6854938559205A6890F5A07AD892057 /* cel.upbdefs.c in Sources */, + C950D2907918DBBD5AA467E2E3E87C1A /* cel.upbdefs.c in Sources */, + B1B4BDDF5569D2E94716BD24ACC65184 /* cert.upb_minitable.c in Sources */, + 9C9E52226343BA863EFC102480244B60 /* cert.upbdefs.c in Sources */, + 3CA98F3C4EC50A33CF125382AB1A3F3F /* certificate_provider_registry.cc in Sources */, + 5D604EB93CBDCD8501306B4FE39FAFAC /* certificate_provider_store.cc in Sources */, + 11C4D433618D03344EA5474CBF02412A /* certs.upb_minitable.c in Sources */, + 3595D7D936B938E4BA8C16E6F0C87BEE /* certs.upbdefs.c in Sources */, + 2AE49EB32635FB2969B2CF5E4BDEB483 /* cf_engine.cc in Sources */, + A85D6A772A19CA7D99E885AAFE623B0C /* cfstream_endpoint.cc in Sources */, + 5EAE5F6CDEAE3254D9E1F6AABD25FCE8 /* cfstream_handle.cc in Sources */, + E89B454EE23B84FD9EBC48048CB5B1CA /* channel.cc in Sources */, + B6E9F9C0463EBE3999A2A2E0771E4311 /* channel_args.cc in Sources */, + 74D8C08BEAF979BE2D67E539BC257E6E /* channel_args_endpoint_config.cc in Sources */, + 95FCD301C270AFA24940A8170A75E36B /* channel_args_preconditioning.cc in Sources */, + F8F54CA19D3979E2FDF66E5B3DFD10B8 /* channel_connectivity.cc in Sources */, + F8C7D6558AA111DFC2F9DEF11B3E9018 /* channel_creds_registry_init.cc in Sources */, + 7104BC838EA22E2B8FEB3E64AB60DDFE /* channel_idle_filter.cc in Sources */, + 44E33EC3371D5F5B4E0437C6C324AD93 /* channel_init.cc in Sources */, + 3AE76612CC1A1E0431788EBC2CCFFCD0 /* channel_ping.cc in Sources */, + 02B295F939FFD184CB935DF151468273 /* channel_stack.cc in Sources */, + 773059E5D4E882E0312CF87C0F46087A /* channel_stack_builder.cc in Sources */, + E4CFFDF9EA3199CA1AD6EBC122F091D1 /* channel_stack_builder_impl.cc in Sources */, + A793AD3EBB1F47B5EA1783391F90F5B0 /* channel_stack_trace.cc in Sources */, + E06779E5A4B395D04C2C5D0D76FFCC93 /* channel_stack_type.cc in Sources */, + 93A2ACB064E6B1D9AD282FF9B5A87CAD /* channel_trace.cc in Sources */, + 32DC3D98CBB83A3EE5E10276026FE604 /* channelz.cc in Sources */, + 4D16A5A76908B7EC2078A2A9B8E07B8A /* channelz_registry.cc in Sources */, + 69C2EF2B28E59CDF15A29607B36D1394 /* check_gcp_environment.cc in Sources */, + 718C94466325B74A8B0B317872B424B9 /* check_gcp_environment_linux.cc in Sources */, + D0B5ED3E0FA6834F0ED007DDD247BCF0 /* check_gcp_environment_no_op.cc in Sources */, + 32FB776B2B8E4207BBF4DC9BD93B454F /* check_gcp_environment_windows.cc in Sources */, + 99761C3FD9D336A8E3FE8B4AF6284F2E /* checked.upb_minitable.c in Sources */, + 37D80BBD28D393AA407D3698CD5468B9 /* checked.upbdefs.c in Sources */, + DEC2BEF6FF6786EE37F7B4AD26711934 /* child_policy_handler.cc in Sources */, + 42E5DBB346DDBAC6BAFE7F909FF51AAD /* chttp2_connector.cc in Sources */, + FE7F00FE88AEA9B459B668BCD9232A14 /* chttp2_server.cc in Sources */, + 604C2C9FA20A7EE0DC8EB4CFA301AABE /* chttp2_transport.cc in Sources */, + 4A527C8DF96FC52DD9665CDBCC6C41F0 /* cidr.upb_minitable.c in Sources */, + 7F3FF318A1575D4EBED21B2A69F83A68 /* cidr.upbdefs.c in Sources */, + 1CC75176D329DFD4AC19C6C03BB9A1D2 /* circuit_breaker.upb_minitable.c in Sources */, + CA0625975E2181FBA559D3931C9FB828 /* circuit_breaker.upbdefs.c in Sources */, + F9457C84B8FF47C80F6FF19A3E8E781A /* client_auth_filter.cc in Sources */, + 0D561EF3DE2490152C93A3112BA83F96 /* client_authority_filter.cc in Sources */, + CBB3E8333BF54C88A93D7376971E939E /* client_channel_channelz.cc in Sources */, + A574FCA335210E5DEFCF6168AC0BABF1 /* client_channel_factory.cc in Sources */, + 5E34880E4001F10ACAF58879F37FF433 /* client_channel_filter.cc in Sources */, + 52B8F368BC7B87B374279807377EEB5B /* client_channel_plugin.cc in Sources */, + 0B053F3F47D31EFAA25F7CE64C3CC56C /* client_channel_service_config.cc in Sources */, + BCAAA545741BBAAECBDEBB2EE1486BE2 /* client_load_reporting_filter.cc in Sources */, + 0BCAF29ADF74FBA87C2111CD792A06A1 /* client_side_weighted_round_robin.upb_minitable.c in Sources */, + BDD51A97A085A473F0EC20939379708F /* closure.cc in Sources */, + 765ADAFBBF79613F89228D9E40E0F1C8 /* closure.cc in Sources */, + D2DFC21C03FCD308A4F70216A321482F /* cluster.upb_minitable.c in Sources */, + BA0E50E2822A3F31F007EF9623FBD001 /* cluster.upb_minitable.c in Sources */, + 9BD5C04F5F097D39928205705F0E9AD4 /* cluster.upbdefs.c in Sources */, + 75C6315496DF94E60DBDE11B126D79B2 /* cluster.upbdefs.c in Sources */, + 3184005CD8A45D9F2D72E283FB46E3F6 /* clusters.upb_minitable.c in Sources */, + 927B7B6031B45508377DFD140AB6DDE1 /* clusters.upbdefs.c in Sources */, + D8E008D8A9581F84A158E2EA94EE303C /* collection_entry.upb_minitable.c in Sources */, + 7F28BE9A2E234C59DB711BDDFA8DD2B5 /* collection_entry.upbdefs.c in Sources */, + C20FBF80FE23828B793BD093D726B6D5 /* combiner.cc in Sources */, + E019A9F39A43A795A53A9FB556BDCB86 /* common.c in Sources */, + 380BD8424A390E14FD3A73643981A076 /* common.upb_minitable.c in Sources */, + 56BBD076EC8DAADAACA5EC3006ED022B /* common.upb_minitable.c in Sources */, + 45251013C178FB81D2103A6C242452D6 /* common.upb_minitable.c in Sources */, + 6CAFEF1746F83E9295A0262B9B3FA8AA /* common.upbdefs.c in Sources */, + 8AE6735F9AB90DB23FF045F79760727D /* common.upbdefs.c in Sources */, + AF1A1B314F4D5C9DB51E478EBF0D73F6 /* compile.cc in Sources */, + 9433786BCC3FB715E609FF46C712E5B1 /* completion_queue.cc in Sources */, + 13B714681FC30C99C194F1D8501F6431 /* completion_queue_factory.cc in Sources */, + AF0CBFDE3953F345A656EE107945AD99 /* composite_credentials.cc in Sources */, + 4E6378010600DC75A658055E0EC101C8 /* compress.c in Sources */, + 4EF2741D7D9422384E1F39F93A51283A /* compression.cc in Sources */, + 72AC97E85269008272A1481AF6A4AD44 /* compression_filter.cc in Sources */, + 64A976D60542579A1B23111A3617A993 /* compression_internal.cc in Sources */, + F12CC6436C6C0F4805A86149CF25A868 /* config.cc in Sources */, + BFBAC105D118D9C5B463C69EA33A17E1 /* config_dump.upb_minitable.c in Sources */, + 0EFB5DCF150ED34BE8D484FF67DD8F25 /* config_dump.upbdefs.c in Sources */, + 959E89FF6E896710A61871717F94AD8F /* config_dump_shared.upb_minitable.c in Sources */, + FBDF3BB4F3C6DE2A603A3347F552BBE0 /* config_dump_shared.upbdefs.c in Sources */, + EB246205101A5D0A0DDE0136D9AC6E79 /* config_selector.cc in Sources */, + 88A2CC0957160237935FE46EC82D4984 /* config_source.upb_minitable.c in Sources */, + 86DBC626103A2A923F2D9B9AE8632CCA /* config_source.upbdefs.c in Sources */, + 1557CDA19CF4946EE42E351BFA2710D6 /* config_vars.cc in Sources */, + C8E21A69655CB1B0C3E688416DE19EC3 /* config_vars_non_generated.cc in Sources */, + DC805D173B6FE552BA21DF2EDB61EE12 /* connected_channel.cc in Sources */, + BD9944C87D66AEE9163F6339A6A43D8A /* connectivity_state.cc in Sources */, + B4F3BCB95223B32FB9930646D3EBF3E7 /* context_params.upb_minitable.c in Sources */, + B8A56DBB1616F67CCB7A6FDB05DFED2C /* context_params.upbdefs.c in Sources */, + 5F56AC9C30CD82B6EE29F73B29DD1049 /* cookie.upb_minitable.c in Sources */, + 178289FD987ED59D4CCBC10FD09E79B9 /* cookie.upb_minitable.c in Sources */, + D06754591C91AFDDB2F9923350F08C9B /* cookie.upbdefs.c in Sources */, + D7964BB2FA194DEF93DDFABC671D0F6A /* cookie.upbdefs.c in Sources */, + 24B077133EA193F6C2951195CCC836FA /* core_configuration.cc in Sources */, + BA53161A0DDA3AA1C50EF24C59855C0B /* cpu.cc in Sources */, + B1DC5CB6126CF413181356D367CC684D /* cpu.cc in Sources */, + 5D0129A076A9D8D69A413D860AEAB5E6 /* cpu.cc in Sources */, + B937FD28200C12FFD13A68B35BAB21FD /* cpu.cc in Sources */, + F4F578B613100F5A5F83F8849A300B05 /* crash.cc in Sources */, + B79AA722C16FBE11ED1FDE198ACE13AB /* crc32.c in Sources */, + 8A212D2DBEA4974B95DBC3276F6CBAB3 /* credentials.cc in Sources */, + C07BE4B69256003FB0E8FDC0342D10C9 /* credentials_generic.cc in Sources */, + E782EEAE5A34F0B864B928B3E162E957 /* csds.upb_minitable.c in Sources */, + A60A3F74F04E168532CB9A0812BF2EDA /* csds.upbdefs.c in Sources */, + 9CB3018E78F85D541598CC29668CC10B /* custom_tag.upb_minitable.c in Sources */, + A939DA76DC2DF5BD6DE0031EA3C1A122 /* custom_tag.upbdefs.c in Sources */, + F57B765CC6B7475076A058763BD98BB9 /* datadog.upb_minitable.c in Sources */, + 04AFE0D74E4139FB0FAE57D1F9305CBE /* datadog.upbdefs.c in Sources */, + B6D8A464C1E051492A82D2A354A22BC9 /* deadline_filter.cc in Sources */, + F86667A58B59837A9FB05A6213E6C986 /* decode.c in Sources */, + 97675427B9532FEAA6310C832C659BC2 /* decode.c in Sources */, + 00F3D0ECC348BC5CC2B8177CC7F603BC /* decode.c in Sources */, + 326B786A81218A22CD977F43BAED06DB /* decode_fast.c in Sources */, + B3F1AD2ED1192238B58C3682D4B05EDE /* decode_huff.cc in Sources */, + 8AA40DA3A85042CF2CB882B3723BF89E /* def_builder.c in Sources */, + 33022E8D8B9942097E49700AC273477F /* def_pool.c in Sources */, + 2FCD892F9005326FA2479F99F3815081 /* def_type.c in Sources */, + 3AC30356B1DFC774CAB1DA7943FD122C /* default_event_engine.cc in Sources */, + 3D224822CEA74DF436A97251B86876FB /* default_event_engine_factory.cc in Sources */, + 72F3ABF57659D17CA546ED90095728EA /* deflate.c in Sources */, + 2153014E4E34141435B85E653C9FAE64 /* deprecation.upb_minitable.c in Sources */, + 6046679236CAD4716283B08F6311072A /* deprecation.upbdefs.c in Sources */, + 28973F8FFC0FE2EEA229EBB8096FF15D /* desc_state.c in Sources */, + 0A7F6EAB53D5723ACEFE9819336AC64E /* descriptor.upb_minitable.c in Sources */, + 4E50B5DD36E8C837EE4FA2B628C529D7 /* descriptor.upbdefs.c in Sources */, + EA596F3A7B0C4BAF717A529EED06024B /* dfa.cc in Sources */, + 0B98AAAB92D7DC12DBE09248640F5994 /* directory_reader.cc in Sources */, + 044702A6BAB61D03220A2A0CB6E7E298 /* directory_reader.cc in Sources */, + CE59BC8970CAB8DEB0FB049570F53C73 /* discovery.upb_minitable.c in Sources */, + 94AAC6BFCBBBBB9F626F7EE0A993DD9D /* discovery.upbdefs.c in Sources */, + D79DEFC9DA70BB492117259F5D0823E0 /* dns_resolver.cc in Sources */, + 4F27F5E00FFE1CDE95FA45F074307D21 /* dns_resolver_ares.cc in Sources */, + 9A1B72501846FE146DBF71E629F5C811 /* dns_resolver_plugin.cc in Sources */, + A52BAD749F45497C1A880D9591989FEA /* dns_service_resolver.cc in Sources */, + EA9F6C421A849196AB6CED74990317E4 /* domain.upb_minitable.c in Sources */, + 9E153E75FEF705DF75F7D9AA63FF56C1 /* domain.upbdefs.c in Sources */, + 6496946E79823F454FF9105C4B114E26 /* dualstack_socket_posix.cc in Sources */, + 01226633C69D32F9B61298F19B252A4B /* duration.upb_minitable.c in Sources */, + 5C8E3F065C5E9556A42E5B59B9675A51 /* duration.upbdefs.c in Sources */, + 606491A30A064DF56FFA5329EECA17C6 /* dynamic_filters.cc in Sources */, + 5EFB7BA6F4B6683E1AC0BA7B854602B8 /* dynamic_ot.upb_minitable.c in Sources */, + 7D4959347D60559290C7BB7D71D0B827 /* dynamic_ot.upbdefs.c in Sources */, + 4F4E0CD76B4DC6C2E6CDCF76B5B67806 /* empty.upb_minitable.c in Sources */, + 2F29B65DAEB856B84D28081DAC849563 /* empty.upbdefs.c in Sources */, + F72083DEA882245128B98E3DC746EEE3 /* encode.c in Sources */, + 1A750F9FA054C96C3374205AA3A22164 /* encode.c in Sources */, + 87ED675D984DE17D08F9958BA8B80B26 /* encode.c in Sources */, + E88D43AA5BB6EA118ABA65948F631E33 /* encode.c in Sources */, + 903EF55CC844F2298D6889D82BB10EF0 /* endpoint.cc in Sources */, + B56E1FC8F07B673E87479F22C87F320A /* endpoint.cc in Sources */, + 31CE42C15E025EBD10333526FFC44F6B /* endpoint.upb_minitable.c in Sources */, + 2137788B6BF8FA455001E79AF5D96FE6 /* endpoint.upbdefs.c in Sources */, + 39EFF9E2FBC16F80629203659DC15951 /* endpoint_addresses.cc in Sources */, + 4153E5328A19A557E049CE80A66F06AE /* endpoint_cfstream.cc in Sources */, + F855AC34555AB477031DAE7086A396F1 /* endpoint_components.upb_minitable.c in Sources */, + 3256D3456FCF12A88279C37F9AF15B5E /* endpoint_components.upbdefs.c in Sources */, + F44639548F30B3CC544787B55200ABE8 /* endpoint_list.cc in Sources */, + CEDB737922D76455F42957AABB1B41C8 /* endpoint_pair_posix.cc in Sources */, + 294D12E0CBD2EA57399A525DB6FE502C /* endpoint_pair_windows.cc in Sources */, + 6791ED90E417FF01967C83E2D4F32F03 /* enum_def.c in Sources */, + AFE61A47A40DBD5656723D8D307FDBC4 /* enum_reserved_range.c in Sources */, + 3B135F1519446BE5223599CA2E060A30 /* enum_value_def.c in Sources */, + 5AC4AA863904A1038F9B5FC0B8F57F94 /* env.cc in Sources */, + 26FD43F397CAB944CBA00A61A4543826 /* env.cc in Sources */, + DDF8ACA286367EB682B3C08A4A234A09 /* env.cc in Sources */, + D85DAB8D8EEE803C4CD6DA568EE62A51 /* eps_copy_input_stream.c in Sources */, + DC39A73DC75E4D9DF49B5BD067853EA5 /* error.cc in Sources */, + 1522FCC5FB22810407EC1FC5FBCED142 /* error_cfstream.cc in Sources */, + AB801428BCEA1059DCE66544BEBB058C /* error_utils.cc in Sources */, + 15CF8C02E245875F04AF75C4660837D5 /* ev_apple.cc in Sources */, + 1F6D52C49B83C62692071CB7D2F2894D /* ev_epoll1_linux.cc in Sources */, + 2784172CA48B0987B92FEB3D4BCAD5F4 /* ev_epoll1_linux.cc in Sources */, + DCD125D1295DDA28A33B937B12B16BA8 /* ev_poll_posix.cc in Sources */, + DA65DB70CEE00D22A47E52C19E0B5DA7 /* ev_poll_posix.cc in Sources */, + 200BCE5102333261043AD38422AF6E7B /* ev_posix.cc in Sources */, + 5632AE88FEF44413E73ECAA8627380B8 /* ev_windows.cc in Sources */, + E3A8CF607C17D1FEE9CAAD01DD435A0D /* evaluate_args.cc in Sources */, + 6C8FA741DD39E6BF9B4145549D48139A /* event_engine.cc in Sources */, + 6D88E418DB344056D51950C74BC52FE4 /* event_engine_client_channel_resolver.cc in Sources */, + C00F2D1C77BB2A4D79FC6BCD5AF3AE20 /* event_log.cc in Sources */, + 730A156C7D81C342A60FD3577FCA66CA /* event_poller_posix_default.cc in Sources */, + 6ABB2B7E099E26189CB170660B34492B /* event_service_config.upb_minitable.c in Sources */, + 1381AD9B7E1DBC4052188CD9C60EE9C4 /* event_service_config.upbdefs.c in Sources */, + 8EC658C155C3A1813BF8AF4D1E4D4E98 /* event_string.cc in Sources */, + BD9035F28B1866315C1511B2AD47A138 /* examine_stack.cc in Sources */, + CB34EB4EF5EA8B60D94571D0445B08D7 /* exec_ctx.cc in Sources */, + 6CB235E33E167E9A7769E0C4A6763493 /* executor.cc in Sources */, + 7E1C7E6886C1AC7906A0D065E91AC524 /* experiments.cc in Sources */, + C2B18F3E7B3A499339B4825A8C399AB5 /* extension.upb_minitable.c in Sources */, + 41DB38A367D4A92306D8DD6C677D6233 /* extension.upb_minitable.c in Sources */, + 9866FB6120C073A8CE35FC48FE8CE824 /* extension.upbdefs.c in Sources */, + A4492021F067B71C3145AEBEE9C3C987 /* extension.upbdefs.c in Sources */, + 1E7C61459B56F53A64044FB26FBA494D /* extension_range.c in Sources */, + C7451A3752FFA7D43B5B081D4668E301 /* extension_registry.c in Sources */, + 3A72D0E50134ED59CECC78D11CC2A4A6 /* external_account_credentials.cc in Sources */, + 3FDC8DB69C7CD39690EF848F6D03662B /* fake_credentials.cc in Sources */, + 4FC93C1B344E0B8AB07918082F4BF98E /* fake_resolver.cc in Sources */, + C074B2C02B33C297D9B594AAA8BCA484 /* fake_security_connector.cc in Sources */, + 4596489E2F74593D01D9855EA6D78FD5 /* fake_transport_security.cc in Sources */, + B6FEE7A804551E7EBE3564B2DCFBF259 /* fault.upb_minitable.c in Sources */, + 54E8C4E445D9A93F6B116C7A94D366E8 /* fault.upb_minitable.c in Sources */, + 07C3623C114C74BAE524B9BC0DBDC025 /* fault.upbdefs.c in Sources */, + 532EAC18363EB8C6EBBF6D208BA2410C /* fault.upbdefs.c in Sources */, + 49B346FB56246DF011157861521B4375 /* fault_injection_filter.cc in Sources */, + ADA71BAB1C0E43CDCB615415A67A1694 /* fault_injection_service_config_parser.cc in Sources */, + E9E7C66EE1EE35268EFDECFCBEBEE739 /* field_def.c in Sources */, + F78BFE522D42CAA22CABD64F23CB0CC4 /* file_def.c in Sources */, + 127F289EB0318C78462FECC00BB28308 /* file_external_account_credentials.cc in Sources */, + CC477270C3B61DB5E63ACF0508B6CA1D /* file_watcher_certificate_provider_factory.cc in Sources */, + C4519AE1562DBABAACA274AD9233E216 /* filter.upb_minitable.c in Sources */, + 50461F6AEDD0D10031829A437ECD08B3 /* filter.upbdefs.c in Sources */, + 375CBD90F736D2878C50533C8045DFE1 /* filter_state.upb_minitable.c in Sources */, + 1F803B66C998D2372DE8A87E1E6FC16C /* filter_state.upbdefs.c in Sources */, + E1EADD9EAF0EFFAA1DFDBD384463D47B /* filtered_re2.cc in Sources */, + 5608079EDA611380694AD5F6E045909D /* flow_control.cc in Sources */, + CEDDAB9E9742080B47981917DA0E40BC /* fork.cc in Sources */, + ACEA152B0EFD810832BDC82EBD1E6C84 /* fork_posix.cc in Sources */, + 83E7C950B6E94D6FA5E8EB50F26759CF /* fork_windows.cc in Sources */, + 251B969163019A2BAFB0FDBD36D646DB /* forkable.cc in Sources */, + 73DE0508948F4252E3F76D3E4FE438DA /* format_request.cc in Sources */, + 1D3DA158CBA50C0284CEAC7E2BE8A08F /* frame.cc in Sources */, + 195FDF5630FEBAC3B89C4D24639CBD51 /* frame_data.cc in Sources */, + 4B75874866CFC5FF763477054A29E6FC /* frame_goaway.cc in Sources */, + DAB2BC189BCB0535BF3DB3EBFB6EC31D /* frame_handler.cc in Sources */, + C27E6190B67549CFE52C7E41192A0EED /* frame_ping.cc in Sources */, + 14AA08441123138EA18CA7962E767A0E /* frame_rst_stream.cc in Sources */, + E278FFC597ABCC9884E96518CC36A6FD /* frame_settings.cc in Sources */, + 7FF51862245DBC3739CD6BB75C8B499A /* frame_window_update.cc in Sources */, + FF7C3E26E83BDDEAEACA646280347588 /* gethostname_fallback.cc in Sources */, + A3AEC27317BE09206FE79639C59910B5 /* gethostname_host_name_max.cc in Sources */, + 60B2AA409D017618C25C502CBC85D498 /* gethostname_sysconf.cc in Sources */, + 73A94F0FF989DCA2245F9CCD4EDBE6AD /* global_subchannel_pool.cc in Sources */, + 917F43C5F1854ECDF819BA67E7DD8FF5 /* google_c2p_resolver.cc in Sources */, + 358FA8524C9002B915A0016B9086216C /* google_default_credentials.cc in Sources */, + 35EE412EE76FD22D46CB3DA027442241 /* gRPC-Core-dummy.m in Sources */, + 730E31FD550E253B544006D4B4EF202C /* grpc_alts_credentials_client_options.cc in Sources */, + 60D1966A5E3792B4CDB097D74ED899F2 /* grpc_alts_credentials_options.cc in Sources */, + 0354BF54E52A72E0DE3C87DC2DAD7067 /* grpc_alts_credentials_server_options.cc in Sources */, + 30057C41D7937FDEA8DF72DF492F2EC5 /* grpc_ares_ev_driver_posix.cc in Sources */, + E95FADCBF11BDEE5F414DD7C4C8B0B09 /* grpc_ares_ev_driver_windows.cc in Sources */, + CA5254DD2CA8B081122B37E3E8997FF5 /* grpc_ares_wrapper.cc in Sources */, + 79893D4D25DAA901411968B4852E5545 /* grpc_ares_wrapper_posix.cc in Sources */, + CE5582D42AE1142FA46C85CB83E87841 /* grpc_ares_wrapper_windows.cc in Sources */, + E6B9F1F5D3E349BAB8D79C26C915C638 /* grpc_authorization_engine.cc in Sources */, + 6D8C801587C61816E1C715247121D5CE /* grpc_context.cc in Sources */, + A22996F33D803B2B477A33317BAC403A /* grpc_if_nametoindex_posix.cc in Sources */, + EFAFF945FC6DB9890A42FE998B5C9DC8 /* grpc_if_nametoindex_unsupported.cc in Sources */, + EC0D82D74D22ADB89867E75670206712 /* grpc_method_list.upb_minitable.c in Sources */, + 2CD73CD8F3A2CCAA7FD61126DD4E66F4 /* grpc_method_list.upbdefs.c in Sources */, + E40C0576BD265896CB59C4DF4E3123A9 /* grpc_plugin_registry.cc in Sources */, + BE00CF4D0D7B3E570AF06E41F02A8A26 /* grpc_plugin_registry_extra.cc in Sources */, + CF164BE6A851258ED54C0B0FD1AD36EF /* grpc_polled_fd_windows.cc in Sources */, + A96D4F350EA0859FAF0F6D727A11AB35 /* grpc_server_authz_filter.cc in Sources */, + 0EA31846807CBB79FBD89DDF39A5CD74 /* grpc_service.upb_minitable.c in Sources */, + D08AEEA206CDA3D92F744FCA0DA1A981 /* grpc_service.upbdefs.c in Sources */, + C4BE36D5A0AF3FA0275777CA8365C048 /* grpc_tls_certificate_distributor.cc in Sources */, + 5D71A8EE0DD9BFFBD0A2125A8CC415BB /* grpc_tls_certificate_match.cc in Sources */, + DB260C7527F763249208CFAFCFF5C75E /* grpc_tls_certificate_provider.cc in Sources */, + A5A6AC93E93EDA242B9592FE71D9F231 /* grpc_tls_certificate_verifier.cc in Sources */, + 043EB0BC4F84073E62396BC3E3398079 /* grpc_tls_credentials_options.cc in Sources */, + 101A5BA5C791C237EC94294ED938E3A8 /* grpc_tls_crl_provider.cc in Sources */, + 93E1EB99A5511845DD576ABC8E3007C3 /* grpclb.cc in Sources */, + 94E8736D33D9851AD0BA527E93392EA6 /* grpclb_balancer_addresses.cc in Sources */, + 13CFD0FA00F719DCB93E96DB0E7009E7 /* grpclb_client_stats.cc in Sources */, + 6A0A7490B5AABC67850FC5F049FBE9DE /* gsec.cc in Sources */, + E0E2FFF3A77FB24DADFA3B8C0956F10A /* handshaker.cc in Sources */, + 1D1A6D81B53C82ABBF9842313AC1CA42 /* handshaker.upb_minitable.c in Sources */, + A7767FCC26AC0F3ADAC5B753EDC9220D /* handshaker_registry.cc in Sources */, + 9D0638FE70E2643AF6CFF2F493FE1BEC /* hash_policy.upb_minitable.c in Sources */, + FF2F0564C927BB09A021EF0F9EFAB4C6 /* hash_policy.upbdefs.c in Sources */, + 59E53BF34F5568F06CB8BB48C37DD108 /* health.upb_minitable.c in Sources */, + B79B355C04EB8A60AA9F4D7D9707E849 /* health_check.upb_minitable.c in Sources */, + A4112CBAAD079EDF1CE21E3785251DFD /* health_check.upbdefs.c in Sources */, + 71B018891A55B6D42355D2C2307F8D2A /* health_check_client.cc in Sources */, + F919AC133EA21E4B094D53EEFC040382 /* histogram_view.cc in Sources */, + 59005EB53B95D5D51C8F70EF957CBD91 /* host_port.cc in Sources */, + B26CF99DCC9E3D80C43068FEF6D131B0 /* hpack_encoder.cc in Sources */, + 8826CA4A7FD6BC41FB4DF9A63EDDC20C /* hpack_encoder_table.cc in Sources */, + 3CD2BBFD955DD75975A2EB16483BC7A2 /* hpack_parse_result.cc in Sources */, + F30D8B7CE6A3E7771C169A06F9146065 /* hpack_parser.cc in Sources */, + 619F693BE8132E9E1160A33620130307 /* hpack_parser_table.cc in Sources */, + 24A9C5BBCB604F66F3B2DA27C2AB646B /* http.upb_minitable.c in Sources */, + 876EEEB622D8CEBEFA8982A7DC9C93F2 /* http.upb_minitable.c in Sources */, + 85F42CA9CC3477E8C47B8475221FF881 /* http.upbdefs.c in Sources */, + C1ABBE1992E67265EA1721E95298DE59 /* http.upbdefs.c in Sources */, + 993715D032F796BDB7C27AAAE9646684 /* http2_settings.cc in Sources */, + F6213160A6A0E42BF5D2761AD53D5D68 /* http_client_filter.cc in Sources */, + 5CB6D24EA44B00D4B9BA0C817B0AB6D5 /* http_connect_handshaker.cc in Sources */, + DAA14501DD8430FEC88184A5B001CC50 /* http_connection_manager.upb_minitable.c in Sources */, + C8AB9F4A61F0D080EB32B24B06822907 /* http_connection_manager.upbdefs.c in Sources */, + 0DBC5D782B2F4834988D31E2DAB04F48 /* http_filters_plugin.cc in Sources */, + 684D92925153D4B6C03407A1E06DC158 /* http_inputs.upb_minitable.c in Sources */, + 83E7BF928EDA1A98DC48CE680C2BFCBA /* http_inputs.upb_minitable.c in Sources */, + F63A82730E685FB07B199B2E43B917A3 /* http_inputs.upbdefs.c in Sources */, + B4856C1A10C1D977C1AE9B8ACB8FA4F3 /* http_inputs.upbdefs.c in Sources */, + 76409C5172B3A09C55A9EA497744330D /* http_protocol_options.upb_minitable.c in Sources */, + 25EC6B484F57B317FE527562A1EC8F10 /* http_protocol_options.upbdefs.c in Sources */, + EC3AEB2D135E301A15F91799C82D4DDD /* http_proxy_mapper.cc in Sources */, + B73F8994B638ECCB0775D04BF3A8F0C8 /* http_server_filter.cc in Sources */, + 771FC1F47AF85CA2615AA46B048E2ED3 /* http_service.upb_minitable.c in Sources */, + AD788B0DDA352B08ECCD61E067C35B5A /* http_service.upbdefs.c in Sources */, + 9E2B8A941899E243FA370A754F9EF82E /* http_status.upb_minitable.c in Sources */, + 5BEC40D663A40A9FEDF382307B82AD2E /* http_status.upbdefs.c in Sources */, + BC92A5FDB826BAE098EB9CC921F162C0 /* http_trace.cc in Sources */, + CDA820426435AC4C932EB39F80B18499 /* http_tracer.upb_minitable.c in Sources */, + 3F8F626ED41F8C73D05A4FD934F9C64A /* http_tracer.upbdefs.c in Sources */, + 0F561B8F3B52BC5E0DF04B2B2A3935D6 /* http_uri.upb_minitable.c in Sources */, + 274605548A63C14CC8E927D2A0C1C8EE /* http_uri.upbdefs.c in Sources */, + ED59D6F23A2C5466089ECC4678D9BE6C /* httpbody.upb_minitable.c in Sources */, + 000A55F746201157A95D5208F6FA5F97 /* httpbody.upbdefs.c in Sources */, + 72B7BD45E2331B3E23A733C231B42E7E /* httpcli.cc in Sources */, + C037B48FDCAD4A524E2270DF8872A36D /* httpcli_security_connector.cc in Sources */, + E2A1A11C991B501F2890A492A33BA5B9 /* huffsyms.cc in Sources */, + 63494E61FD86D65E999EA70B1021BF9F /* iam_credentials.cc in Sources */, + E79D9F37F6C0102A26F1B54628EA0EEA /* idle_filter_state.cc in Sources */, + 7B328649F800F90812976C7F4FAEA1B3 /* infback.c in Sources */, + 7933B0433F8F2DE6CF14297DDF0F52CB /* inffast.c in Sources */, + 8CE90A82103009EEF1F68894E0FD48ED /* inflate.c in Sources */, + 432CD72F29EE4C6DA77F861F0EC1D4CA /* inftrees.c in Sources */, + 26F7587AAAF2445F45C4708DF1FE7EB9 /* init.cc in Sources */, + 6919C8787F5A3637EA83AA1F653EE25A /* init_dump.upb_minitable.c in Sources */, + E5AFFD1590ADAF2AF62C5231562BA765 /* init_dump.upbdefs.c in Sources */, + DD786ACB1812AF81599015C05D1B09A4 /* init_internally.cc in Sources */, + AC4861BD877A29B29AF160137B39C185 /* inproc_plugin.cc in Sources */, + E2FAA91254DA34B20B6C48655A2229DC /* inproc_transport.cc in Sources */, + 8B02279158616BE4EDD5DF2DC34681D5 /* insecure_credentials.cc in Sources */, + B9C4D5DB74D6F41029D44E603F58BD5A /* insecure_security_connector.cc in Sources */, + F5E9DEDDED4144E6BF66296EC379B833 /* internal_errqueue.cc in Sources */, + 087DEAF201F25D577F2EC1601BD0FF93 /* internal_errqueue.cc in Sources */, + D9E0B669372D12702E262B7F867E468B /* iocp.cc in Sources */, + 428D5322637EEA9528443A149902F6F7 /* iocp_windows.cc in Sources */, + 902ECEB31DE8CD53E01C9CF5D9E60432 /* iomgr.cc in Sources */, + 7C10BC1D15CE50170469994C0EB0FD64 /* iomgr_internal.cc in Sources */, + 418D9CC012BFF27B8F06EC545CCC5825 /* iomgr_posix.cc in Sources */, + 24DDAB5640FAD49E14DDBF8AB468751E /* iomgr_posix_cfstream.cc in Sources */, + C68B7572D856A5E1E61882EBFF180D84 /* iomgr_windows.cc in Sources */, + 2CD2D07D14E42A7949E884C4A185AC69 /* ip.upb_minitable.c in Sources */, + 53F30BA65F3A0BAC7E9DA8D415645DF2 /* ip.upbdefs.c in Sources */, + 1B5064E0477B0CC2EFDAEDC9D7C78FE7 /* json_object_loader.cc in Sources */, + 9529C47739F06E59BD4AD3C5A994AE2E /* json_reader.cc in Sources */, + 36779A6191D637D6B2BE2FBF85E99FA3 /* json_token.cc in Sources */, + 1F77E661ED9DBD7A0F60893C7858343C /* json_util.cc in Sources */, + E3FC7ACF4DBB1CBCC309A5BA87519F0F /* json_util.cc in Sources */, + F86FF84872E1EC4A3585F5FDDF181471 /* json_writer.cc in Sources */, + 01FC526554E70B66388AE97FAAEBA1F9 /* jwt_credentials.cc in Sources */, + 37F28076AC0322A2EB666BE60912E0B5 /* jwt_verifier.cc in Sources */, + F3973028792F2269F75C8A1CDD3E49E1 /* lame_client.cc in Sources */, + 2F0B00640C12B6E5279BE9403CE05BA9 /* lb_policy.cc in Sources */, + A4A686C14ED042DD914234A7B6E68D78 /* lb_policy_registry.cc in Sources */, + F288B8F501D77D88997317D8DB2D1B48 /* legacy_channel_idle_filter.cc in Sources */, + 9755D926DA5B528AEEF1A2D251D9A64D /* legacy_compression_filter.cc in Sources */, + CC9289D8E2F9E5AF43DA6575C19F99F7 /* legacy_inproc_transport.cc in Sources */, + 9E4A0023B0D945D81E4CBF7044B1134F /* legacy_server_auth_filter.cc in Sources */, + B9E2AAE7258C55536B6DA1542780F2D3 /* lightstep.upb_minitable.c in Sources */, + 7938F9969D6FAEF17E2FD0A3D52A0BAB /* lightstep.upbdefs.c in Sources */, + FCEA15DC58E1F10533F62643CDF120DE /* link.c in Sources */, + C3487CC30AA6D9EE05C3A40A0250625A /* listener.upb_minitable.c in Sources */, + C91A0E230EDE2CEAD10FD1F0C09C0842 /* listener.upbdefs.c in Sources */, + 76B8C6EF84C50FC27989A09EEC59B5E4 /* listener_components.upb_minitable.c in Sources */, + 19FE3A42060BEF3259B893DC672ADCDC /* listener_components.upbdefs.c in Sources */, + EDE739DEA549720286277D72EDD723C6 /* listeners.upb_minitable.c in Sources */, + 45AB44C85A96D540D000A4B851E46181 /* listeners.upbdefs.c in Sources */, + C504036F75E0F659CFF4BDE867834189 /* load_balancer.upb_minitable.c in Sources */, + 817653D9E6E464E2FDBB243454479F43 /* load_balancer_api.cc in Sources */, + F40DCBD322E77594E9B98339B92AF6D1 /* load_config.cc in Sources */, + 11AE4A4B4CC7C593FA8147DB7969355D /* load_file.cc in Sources */, + CBDE1943C7B31AC5895684E72B6F6B7D /* load_report.upb_minitable.c in Sources */, + 0FC435FF39FF846C077A83618EB862F8 /* load_report.upbdefs.c in Sources */, + E62CCCE0604946873FE7B9D9B85782F8 /* load_system_roots_fallback.cc in Sources */, + D327C180F5FA2AFC0A9F92976B18EEEC /* load_system_roots_supported.cc in Sources */, + 43B2A71889C420344DA3DEA38D5F9A4D /* local_credentials.cc in Sources */, + 1E66897FD1B539F2440CA3DC825E0A8F /* local_security_connector.cc in Sources */, + E61C19633C91BDC1208BF39758256B17 /* local_subchannel_pool.cc in Sources */, + A647C6A8B46058BD5A05998BEF876DC0 /* local_transport_security.cc in Sources */, + 51853EC83495A89A11D523A449220B76 /* lockfree_event.cc in Sources */, + D30F37B7ED94BD3224F2A30CB41B00ED /* lockfree_event.cc in Sources */, + 235664F931F4A07E1B64AF24550C0ABF /* log.cc in Sources */, + 77E39D2DF77C52F8697AC08B20C47381 /* log.cc in Sources */, + 791ECC1591052706BD2785BEEA7E5429 /* log.cc in Sources */, + 23E052F1218041C5CBE0355868BA298A /* log.cc in Sources */, + 54CD0021B744560C3794CB212AE6D4F9 /* log.cc in Sources */, + 9B83125128CC9B9D9FEC1B961F8C2429 /* lrs.upb_minitable.c in Sources */, + 8AE9CD6123D7C2D3DEA611FEFF1EBFFC /* lrs.upbdefs.c in Sources */, + ECFAFCC4A2DB05761534E59D05D63D1D /* map.c in Sources */, + 288804E6B5CFDD6F4F3F7EBB54E6AE82 /* map_sorter.c in Sources */, + 9D0152267343A8DACD85568A7ECF8537 /* matcher.upb_minitable.c in Sources */, + A07E649D6D86B020AA21A3F07415CED6 /* matcher.upb_minitable.c in Sources */, + 5C5FD43AC40833E93756F084BE696AA0 /* matcher.upbdefs.c in Sources */, + 910B594FFD8C7D7D67C9BAB7149CBEC1 /* matcher.upbdefs.c in Sources */, + A3EE812CE3182EC0FA9E42F5431CA7A7 /* matchers.cc in Sources */, + 0F580218F59A35B5E753969F4114670F /* matchers.cc in Sources */, + 4F6105D4B0FD2F53E2F595DD882BA291 /* max_concurrent_streams_policy.cc in Sources */, + 6B9E7ABD1681066649623F083533E149 /* memory.upb_minitable.c in Sources */, + 0275DB81324768767C5E47814ADE32D6 /* memory.upbdefs.c in Sources */, + 8187C765CA3BC9A2567C5FF3B92BBD53 /* memory_quota.cc in Sources */, + 80384CF27EEF8E439F797CF146116EC7 /* message.c in Sources */, + BFF5C273817A52177B3EB2E197DFEE7E /* message.c in Sources */, + BB23CD70E6F81D724E22EC788506CD6D /* message.c in Sources */, + 5EF7424C94E18CC03E7787FEC21ECBFD /* message.c in Sources */, + 939B81696969BDFB43F55DEA3F2793B9 /* message.cc in Sources */, + EC1A32D32F3AE21C356390C3771982FC /* message_compress.cc in Sources */, + 543F899B0E269D539156EA697A5F8B4E /* message_def.c in Sources */, + 5C8D114B966F8DC0FE473D007BF04484 /* message_reserved_range.c in Sources */, + EBAA846884597EA05A5A5BDFD862788F /* message_size_filter.cc in Sources */, + ABE36BEBBA458271F8A9F40EDFA39E12 /* metadata.cc in Sources */, + 83662D28BB4C41FDF3877512CD278B98 /* metadata.upb_minitable.c in Sources */, + AADF6BBF056A14324314A1730760794C /* metadata.upb_minitable.c in Sources */, + DAB1D398CCE28C0A6BE287A4E8BE5EFE /* metadata.upbdefs.c in Sources */, + C2B0BA768D4192D5A82D0502E6154561 /* metadata.upbdefs.c in Sources */, + 3E5E17F0A1A866BD69F0C65EA1C3A105 /* metadata_array.cc in Sources */, + 66474D186A01A75C2004B0141D25791B /* metadata_batch.cc in Sources */, + 6CE9199A8FD33367AD4F6FCD3337C5A6 /* metadata_query.cc in Sources */, + A07A0D4D53B1F4360B3E2F7605012141 /* method_def.c in Sources */, + CC7523D7C6664D9F0145201D220E0AA5 /* metrics.upb_minitable.c in Sources */, + 0944D0DE05BF53EAEBAE62AD7333DE65 /* metrics.upbdefs.c in Sources */, + 4CCA6A34B0F6F98C8ABCE9223E4B87B5 /* metrics_service.upb_minitable.c in Sources */, + D3FC523B08C6955BC5CB1221925D1340 /* metrics_service.upbdefs.c in Sources */, + 79A46B7C0AB9475CBAA95DF44A2F0A53 /* migrate.upb_minitable.c in Sources */, + FC8FA4D2B47030D586CA1382D925B88F /* migrate.upb_minitable.c in Sources */, + 52FE85D83CC4ECB0FDDA6250461692F0 /* migrate.upbdefs.c in Sources */, + 05B86B1044B8833FDCA152BFCA83AD9E /* migrate.upbdefs.c in Sources */, + 3543D37852B3F8AA486CB8C8F578F49F /* mimics_pcre.cc in Sources */, + D0A4B2791FD76808E1651E507C8048C1 /* mpscq.cc in Sources */, + 307262396B6771BFB6A5D8E259E86D38 /* mutex_stats.upb_minitable.c in Sources */, + 014BD48E01FFF42556FB343F9DBDE8FC /* mutex_stats.upbdefs.c in Sources */, + 102BB0ABDA1B9F3D0A05FF16A3BA38D5 /* naive.c in Sources */, + 10F4FAE6B8C4BEF3122E9015DDCCDA5B /* native_posix_dns_resolver.cc in Sources */, + 4E67EBDF3175BD83BF69994AC41522E7 /* native_windows_dns_resolver.cc in Sources */, + 1E241933408EAA013EACD47045684CBE /* nfa.cc in Sources */, + 801036367D1499FF4ECD77AC38F4611D /* node.upb_minitable.c in Sources */, + E9180731BC356E2C2855FD57CBD63408 /* node.upbdefs.c in Sources */, + E28738D2B27EAD5233DEEF39CDBFCC2A /* number.upb_minitable.c in Sources */, + 9ECAA8AB8F9E8F45FA996A68C2095923 /* number.upbdefs.c in Sources */, + 5622041C865118E97099368F6E203204 /* oauth2_credentials.cc in Sources */, + 624A71DDD5D9758986FFC7798F730DF9 /* oneof_def.c in Sources */, + 0E5102D7C487DA02B5244ADF91C83611 /* onepass.cc in Sources */, + C57E749A2D606FAC75F740394FEB5B8F /* oob_backend_metric.cc in Sources */, + 20142FF3237B93D60FAB45AB2265EC48 /* opencensus.upb_minitable.c in Sources */, + F86DAC5CF5D2526093EDA0FB6E37B4B6 /* opencensus.upbdefs.c in Sources */, + F89DC75BA5310578C08BABB755C4FA8F /* opentelemetry.upb_minitable.c in Sources */, + 4ED15005A70894768A6ED099DEB1BADD /* opentelemetry.upbdefs.c in Sources */, + 8384BB1FF1629C226383FBC7FBCF0357 /* orca.upb_minitable.c in Sources */, + 4F9CE814A99E98846234E3967480805C /* orca_load_report.upb_minitable.c in Sources */, + FF6D9D6B5710E0820402295F4079D1E4 /* outlier_detection.cc in Sources */, + 111D3F1879D1D74F0225E1E4AB91A36C /* outlier_detection.upb_minitable.c in Sources */, + 5FB14975C6D2C5259D5873755E4DD340 /* outlier_detection.upbdefs.c in Sources */, + 4C833902593FC89E17187C4B0E75D7CC /* overload.upb_minitable.c in Sources */, + 9FAF2A607D632F993BE4754CDFD9A5F8 /* overload.upbdefs.c in Sources */, + ECEA7502A22F34C8CFDED45BDA71A565 /* parse.cc in Sources */, + 8791968495085B269F8A2ACD2AEF708A /* parse_address.cc in Sources */, + 8EBE7CA5BCA4F084AA4A64F8E7063F70 /* parsed_metadata.cc in Sources */, + 24F8A65AA098768000AB15A3614AF41E /* parser.cc in Sources */, + 7F151675E2CC41857B361079F0040B9C /* parsing.cc in Sources */, + 0D3CC2FDC16B5285D73D39AD6CF65948 /* party.cc in Sources */, + E61EA7DECE49E7A08E2870CD65CC4CD7 /* path.upb_minitable.c in Sources */, + AB0D5888CEC0133E8752627FE22AF944 /* path.upbdefs.c in Sources */, + FEE12227758E91941BC358B269AD13DA /* path_transformation.upb_minitable.c in Sources */, + 543FC571DF4DB66F68B5B6DFB2629739 /* path_transformation.upbdefs.c in Sources */, + C856937E5E4C6F421851A56264AE6BB6 /* per_cpu.cc in Sources */, + 2AEC69F4CA48F4E9554C20C15D487E87 /* percent.upb_minitable.c in Sources */, + D0C8BC5654AF4A07FB434C6B7F1C85A1 /* percent.upbdefs.c in Sources */, + A9295981D69969BA64F570D18975DE01 /* percent_encoding.cc in Sources */, + 0E8C6E3C174FBBF07E0F4A8234D53712 /* periodic_update.cc in Sources */, + 91CD6BBF9D69586893BFD27150A9AF91 /* perl_groups.cc in Sources */, + 66A65F613DE70655C20AC7FABF2E12D6 /* pick_first.cc in Sources */, + E4CC45A818ADE7723DEA324C8450E3E5 /* pick_first.upb_minitable.c in Sources */, + 248636652988206FDDA6E23AAC8988B2 /* ping_abuse_policy.cc in Sources */, + 8C17918533FF0E07700EC226302B94B4 /* ping_callbacks.cc in Sources */, + 416E3A2F65AD01A3C353AD3A8E9A5A94 /* ping_rate_policy.cc in Sources */, + FAB09DF7ED642E3350029B019762DCE8 /* plugin_credentials.cc in Sources */, + 49C59F31FB0274EED226F6A85A594AC2 /* polling_entity.cc in Sources */, + 07C2AACDE80D0FCDDF1400E0BE7A1E94 /* polling_resolver.cc in Sources */, + 763D0F51340B3A57504F5B935C11AAFC /* pollset.cc in Sources */, + D594A2CA5F57C63A5F1E99DA9A567872 /* pollset_set.cc in Sources */, + 647754CA24A0A73E08D664C7608FDAB7 /* pollset_set_windows.cc in Sources */, + 707E7196235ECEDFF651C1AA3DD4C7B2 /* pollset_windows.cc in Sources */, + E5D9EE5F6BC6538D03E35479D2317B4E /* posix_endpoint.cc in Sources */, + E74937E3805107D435D35D41E58893B0 /* posix_engine.cc in Sources */, + 953780A0732F22C73A9B28C1D50496C8 /* posix_engine_listener.cc in Sources */, + E68E14842D9F3D522DD9A0F5579A0579 /* posix_engine_listener_utils.cc in Sources */, + 892F630982FEA57348D1A6DEA8EB189F /* prefilter.cc in Sources */, + 3B85C79E06FF9A9A7BAC7DE9DE2E9005 /* prefilter_tree.cc in Sources */, + EE4C61979095346B00F41DA43D37951E /* priority.cc in Sources */, + BF3F1D6BEFB348530668A9F8B5F9135B /* prog.cc in Sources */, + 5787EA162609508BEE2C5C57829EC835 /* promise_based_filter.cc in Sources */, + 77280867540A5BD397E2BEBBDE978421 /* protocol.upb_minitable.c in Sources */, + 2BC9AD5B9F5837523974BDC0826E407A /* protocol.upbdefs.c in Sources */, + A7D4344C4C56FDD80CBAFB74E92E39FA /* proxy_mapper_registry.cc in Sources */, + A36A81E4D1371359A9582AE1103362F8 /* proxy_protocol.upb_minitable.c in Sources */, + BB2F3C9D5B45590260B8CEEA01DB801E /* proxy_protocol.upbdefs.c in Sources */, + 64E571BDBC15D50F96842F9412061FA0 /* quic_config.upb_minitable.c in Sources */, + C80A7AF2549387D406FAD2B7702AEB28 /* quic_config.upbdefs.c in Sources */, + 70A733B04A70B176DC6601B94381F470 /* random_early_detection.cc in Sources */, + ECB62B75A60AA7A6BA041E768D280697 /* range.upb_minitable.c in Sources */, + 76E885CFBBC02FC6DE9EAFE054FD5757 /* range.upb_minitable.c in Sources */, + 9E475F1BE62711589E68E42955DC6987 /* range.upb_minitable.c in Sources */, + 516F10234FAF4E7A9D82B35A0AF7C2CD /* range.upbdefs.c in Sources */, + 77B42D2FFB091CFC0D3011E9FCA17EAD /* range.upbdefs.c in Sources */, + 0127689F0ABC0F084E2963B2A9A7D667 /* range.upbdefs.c in Sources */, + 7B50804960549582113CDFC48778B048 /* range2-neon.c in Sources */, + 975CF62DA4E2E1C230AC52E2AB8E8F16 /* range2-sse.c in Sources */, + CB60AB225FDE6F8E842F88592036E01C /* ratelimit_strategy.upb_minitable.c in Sources */, + 0134C8E6C8B847032BB040E7CC2D091B /* ratelimit_strategy.upbdefs.c in Sources */, + F268B6E6F59A099F80D6FDF7CEF9E02F /* ratelimit_unit.upb_minitable.c in Sources */, + 3AEEA905BA6F5B05DC3107C2FD86CB0E /* ratelimit_unit.upbdefs.c in Sources */, + FABEBEA10B6E86F40DC809DDB1F8378E /* rbac.upb_minitable.c in Sources */, + 6C3EFBAD3FBD8F63C62F8D47486696F1 /* rbac.upb_minitable.c in Sources */, + 4EA36555B088C3530345FE02E13EE165 /* rbac.upbdefs.c in Sources */, + 5C3084C0DAC011AB2FA9C63B81AD0AAB /* rbac.upbdefs.c in Sources */, + A8558A9A590CA13912B809D997DC8417 /* rbac_filter.cc in Sources */, + 3E773A70682099F40724460D6EDC9272 /* rbac_policy.cc in Sources */, + 8FD99627919157A4C3CAF0418314B394 /* rbac_service_config_parser.cc in Sources */, + 220FFCDC0625F1C089E048D1A875C7C5 /* re2.cc in Sources */, + 80AA53A09F74559FC47DA0A23A1FAFBE /* reader.c in Sources */, + C108D2B695DEDE54E5CCB85B26041C46 /* ref_counted_string.cc in Sources */, + A050B39650B1364C7E0E11DB7F07B90F /* regex.upb_minitable.c in Sources */, + AB3A2C92872F6A81402E433D2D8866ED /* regex.upb_minitable.c in Sources */, + 2A0C08FE17D986487BA170C81DF6CCE4 /* regex.upbdefs.c in Sources */, + C3013FB0CEA0FE75AB0B318BE0CC9C93 /* regex.upbdefs.c in Sources */, + 1F5A1C5FD0DF47D208FAA2961B2EABF4 /* regexp.cc in Sources */, + 1A1A41FB5D578148C7F3F67E798DE174 /* resolve_address.cc in Sources */, + 81E1B4D06A1E87035A4A56C58F94D8D1 /* resolve_address_posix.cc in Sources */, + 3D76D3A160B2AC8E1A3B13A2CEAB6F2B /* resolve_address_windows.cc in Sources */, + 846290D21B19663E8A5E01092F5F6EF7 /* resolved_address.cc in Sources */, + CE4EC9F54D65C197544913455A47EC85 /* resolver.cc in Sources */, + 1B02D06B79C083558DE0E42EB085E511 /* resolver.upb_minitable.c in Sources */, + 62ED7F1BCED82D53C27E396C9BF7B84E /* resolver.upbdefs.c in Sources */, + FD2346FAADC8D6C6DDF42ECB6CBC854E /* resolver_registry.cc in Sources */, + B8980BED6AF261C5572EAC125C7DC428 /* resource.upb_minitable.c in Sources */, + EEAB3557FFC5C4314C33D25DCED913F3 /* resource.upb_minitable.c in Sources */, + 37731E71DF2FEF990DF9E5A00BBD599A /* resource.upbdefs.c in Sources */, + 81EF4A35A5BF345818B0088B15C648B4 /* resource.upbdefs.c in Sources */, + 826B6E9FD21ABFA820B65A63B725C89F /* resource_locator.upb_minitable.c in Sources */, + DD39CA0915C505DC0F5F8267F63F00DC /* resource_locator.upbdefs.c in Sources */, + A6DE4FC7F379971A5BA0945E2A11CED3 /* resource_name.upb_minitable.c in Sources */, + 862627AFEEF9DBBF789B259A95CF2631 /* resource_name.upbdefs.c in Sources */, + 6EFED50820426D8059302B300E5AA008 /* resource_quota.cc in Sources */, + 70DE039CA9ACF6568D4B1A8E9E040698 /* retry_filter.cc in Sources */, + 8C50D4B9B173C5A6020B27655E8A11D1 /* retry_filter_legacy_call_data.cc in Sources */, + 56B00BB3F1CB97AFAD340FA515728531 /* retry_service_config.cc in Sources */, + 76592E316C01CEDD119637F4D766C89B /* retry_throttle.cc in Sources */, + 24E231CD3D5D23113015EF775FC147F2 /* ring_hash.cc in Sources */, + 06DD07DA0CCC934FCF462EF420566D12 /* ring_hash.upb_minitable.c in Sources */, + AF23E51F201D81324D3585D5A1970735 /* rls.cc in Sources */, + A36085E15704BBA29429AA7184BC3B7A /* rls.upb_minitable.c in Sources */, + 67694C318D16C954646F71283D2876F6 /* rls_config.upb_minitable.c in Sources */, + A154DD4AB60F4B908979A6A42577F8E6 /* rls_config.upbdefs.c in Sources */, + 05B024515835E16A2BC156C502FD840B /* round_robin.cc in Sources */, + 54FA805572BF498350F75EDD8B1D4CAF /* round_trip.c in Sources */, + 68E5C925A69E7D74A0EFFBB272F2BB69 /* route.upb_minitable.c in Sources */, + AE6F27D846AE48D3DA5631F663C05B70 /* route.upbdefs.c in Sources */, + A90EEEE07188EA46345316C5F119FBAF /* route_components.upb_minitable.c in Sources */, + ED94367FD8AD9FC74B525A217ED9DC54 /* route_components.upbdefs.c in Sources */, + 5B32B9B494C37C5525EFDD79547F278D /* router.upb_minitable.c in Sources */, + 0FE1AD8BE2652D5E9C01643A2DEB25F5 /* router.upbdefs.c in Sources */, + 04C52D0AC448C7381D56A53F15135688 /* rune.cc in Sources */, + C045352C75281EEBF6CD62FF5683D20D /* scoped_route.upb_minitable.c in Sources */, + D812E468B3CF22BFEE10DF431E1A7412 /* scoped_route.upbdefs.c in Sources */, + B57EE023F9C892228C2196D8FF7A9C26 /* secret.upb_minitable.c in Sources */, + C0B05B3F7D634D2ABF7C0007166B6F84 /* secret.upbdefs.c in Sources */, + D01008F0C62721B158AF4FECCC5DEE2C /* secure_endpoint.cc in Sources */, + 112508DCCCFB0D799E83942ADE34C7FC /* security.upb_minitable.c in Sources */, + AE6586C76DE001365E2749BB7FF870E3 /* security.upb_minitable.c in Sources */, + 37B6029D344838A3999C68156B637477 /* security.upbdefs.c in Sources */, + 56D261458C2A583CFEC228DB5C925898 /* security.upbdefs.c in Sources */, + 6F59C867F9D2DD0321CDE1F932065239 /* security_connector.cc in Sources */, + 1281B088F11F782A151747EB18594713 /* security_context.cc in Sources */, + 6A6429DE9A85092834364C3A6E6CE1DE /* security_handshaker.cc in Sources */, + AD18CED419026725E42DB116AE006565 /* semantic_version.upb_minitable.c in Sources */, + 54E85449FBA8FCE8611E54A0215470EB /* semantic_version.upbdefs.c in Sources */, + 3F0AF62344ECE03FCB7912DD3092BE80 /* sensitive.upb_minitable.c in Sources */, + 9EAE41972BD386598D524ADEB23EC6A5 /* sensitive.upb_minitable.c in Sources */, + D8611899427FC9679B72AF13122862FC /* sensitive.upbdefs.c in Sources */, + FD2DCEC75B858507962D493FB689C83F /* sensitive.upbdefs.c in Sources */, + B5601C77075F2D7B2FEDE7E608737B88 /* server.cc in Sources */, + 856AD89298E87D4033C3348A2F72420C /* server_auth_filter.cc in Sources */, + 32FF54D62EA90E02A407060C942D1887 /* server_call_tracer_filter.cc in Sources */, + 7CBD3530E62787D322D6AF4FC327EAEB /* server_config_selector_filter.cc in Sources */, + B29CB56D010B1BCEDA78B63D17329FB3 /* server_info.upb_minitable.c in Sources */, + 8522A9ABED0362861745B564F231164E /* server_info.upbdefs.c in Sources */, + D5DDF883A11F7B01224543F5C8F168A5 /* service.upb_minitable.c in Sources */, + 9146B5CB0A74F5D33A982D0DA4AABB80 /* service.upbdefs.c in Sources */, + 5DD85C1EF7131DEFDBF2B86A6188E3EA /* service_config_channel_arg_filter.cc in Sources */, + BF349B8DC17FF57AB203DC7BEBA35CFD /* service_config_helper.cc in Sources */, + 30E0F25C15BA11828EF487B06129F3F0 /* service_config_impl.cc in Sources */, + 4C1263025422C97137DAC95083CC3138 /* service_config_parser.cc in Sources */, + 98C8FA9A898F61F03D4248C8826C6787 /* service_def.c in Sources */, + 9C9613AFF19AD5F01391D6C0FC5C7F82 /* set.cc in Sources */, + BD44E5816D455F67CF2352467AB9734F /* shim.cc in Sources */, + C8D4541281052CD73C5332B49B1CD93F /* simplify.cc in Sources */, + 7172830DD61DD43D5DFB6CE64C973BBE /* skywalking.upb_minitable.c in Sources */, + 37E0201026D01A6600B72BB39A077CA4 /* skywalking.upbdefs.c in Sources */, + 5C0E7FA9E5FC89D5A295ADD3F4F783E0 /* sleep.cc in Sources */, + 765976F8416508A59C9CD281137A1A45 /* slice.cc in Sources */, + FDA68208E0C4026BCD3F3A54C5E06ECC /* slice.cc in Sources */, + 3295F7924971E532C1C71D8BD0706C40 /* slice_buffer.cc in Sources */, + 3EBC999BE0E89AFC43C10084F0D57614 /* slice_buffer.cc in Sources */, + AFB67F5FD71A5C16E49F2B8973D88CB1 /* slice_refcount.cc in Sources */, + 64331E7C8A41912DC12EAC72AEFF634B /* slice_string_helpers.cc in Sources */, + BD589EB2762F6B776667E8314223513B /* sockaddr_resolver.cc in Sources */, + AA908034D13ECD72EE4053437EEBF22B /* sockaddr_utils.cc in Sources */, + 40DC7AE79B96DCCFD250F74B255BB40A /* sockaddr_utils_posix.cc in Sources */, + 695511E38BA32F4854093EF32E46B133 /* socket_factory_posix.cc in Sources */, + BB63B2BB94FE269FBA5AE3B92A1481BF /* socket_mutator.cc in Sources */, + C92470ACFD865C7B7AD1364C4BA4D631 /* socket_option.upb_minitable.c in Sources */, + D3E28B5893B67B14DFBC4777C6E79C3D /* socket_option.upbdefs.c in Sources */, + 40B005EEA14353F5F7F79257995BA9B8 /* socket_utils_common_posix.cc in Sources */, + 083E0838D07E34D72A5CA6E88CC62C4E /* socket_utils_linux.cc in Sources */, + DEE2FCD15B12449EB79EEDD65A70D959 /* socket_utils_posix.cc in Sources */, + 6AF89081E0D7A55C867592C3C195E8D3 /* socket_utils_windows.cc in Sources */, + 18D67BDD90FC356B1300BCC9E7E98AD5 /* socket_windows.cc in Sources */, + 7DF3B837D490312649EF0AF950ADD94F /* ssl_credentials.cc in Sources */, + E141CDCA5107F44259777C8353B507B3 /* ssl_key_logging.cc in Sources */, + 8AEB9C3039B3815476424D19B41542B5 /* ssl_security_connector.cc in Sources */, + 9A87801045254327961C6B27EC957CE0 /* ssl_session_boringssl.cc in Sources */, + 02F815FB01EDE70845E21DAF3786F8D7 /* ssl_session_cache.cc in Sources */, + 60846B8963CC86FE156970A6466543B8 /* ssl_session_openssl.cc in Sources */, + A9906CA43134B2245554AB7EEB370746 /* ssl_transport_security.cc in Sources */, + 502355F41022F3923180FAC6DA85F23C /* ssl_transport_security_utils.cc in Sources */, + 8C6C3CE9ECD632F0905FD500A20260C2 /* ssl_utils.cc in Sources */, + 4AA657585D06FCCE5F3FF9F50A446FE2 /* stat.cc in Sources */, + 4596C17B38666DB92420F9FD643DB2E4 /* stat.cc in Sources */, + 128606C279A9BC38FF908F8BDE84B528 /* stateful_session.upb_minitable.c in Sources */, + FE9F43AEDE8212F0DEB2DF6557808EDF /* stateful_session.upbdefs.c in Sources */, + A98ED5C7EE03D466CF1B07F835E569AA /* stateful_session_filter.cc in Sources */, + AD9B7F0D10C9BE588E48423554E24EC4 /* stateful_session_service_config_parser.cc in Sources */, + E709FEB908E8EE2A6407057E8E10C44C /* static_stride_scheduler.cc in Sources */, + 85B9E568846BF4B23A829640AF00F2E4 /* stats.cc in Sources */, + 791C17545225F1E5C6DE0A37DDDD986D /* stats.upb_minitable.c in Sources */, + 42DCEDBB6DB84FC5623418A30C1A96CF /* stats.upbdefs.c in Sources */, + 6EDAFC0BE91D3118677C8D7C72B36031 /* stats_data.cc in Sources */, + 4A3CB78352AAC9001D0CF94BF6560584 /* status.c in Sources */, + 39713681B5AAB79E8CDA1BFBDEF7E392 /* status.upb_minitable.c in Sources */, + 488623BEBA690A2D64E0031B4E5D7BC7 /* status.upb_minitable.c in Sources */, + 00F73500A576C13D08BC06149A4C2C0D /* status.upb_minitable.c in Sources */, + 10FD38500E7479A5DDF2D363F596AAEA /* status.upbdefs.c in Sources */, + DE762866E6C48DAF3B7EEDF63CAFDC06 /* status.upbdefs.c in Sources */, + AA06A094FC39F826693A069651CBE97B /* status.upbdefs.c in Sources */, + 1A75E19AEE66409083B332EF82ECBDC7 /* status_code_input.upb_minitable.c in Sources */, + D0AB2C5279F181C8878CDC058A20BC47 /* status_code_input.upbdefs.c in Sources */, + 75E7FF9A5CCA94CEBF5E05563B196F0A /* status_conversion.cc in Sources */, + 1C71EF1C5B7EB48CF9A33F55640CA0EE /* status_helper.cc in Sources */, + 50549F4134EE5C81E6DAB340DE2CDD7A /* status_util.cc in Sources */, + 09A4356465FCD1959DF043AD2D6372DA /* stdout_logger.cc in Sources */, + ACE8ED4775D6F31B0F244FB4141A9B9E /* strdup2.c in Sources */, + B3D9E43392958AC9A13694F20FEF84C3 /* stream_lists.cc in Sources */, + D9FBA97851637F22C398C44E4CC25F95 /* strerror.cc in Sources */, + BC11A2D32004F8584C2BB29890D91611 /* string.cc in Sources */, + 45E29EEC24111D187F0E38EBDCC69CE3 /* string.cc in Sources */, + B70C1E3B0E00F4B56928CEEB1E769047 /* string.cc in Sources */, + 9215FCA7590B0DB15DC81F6A3561DB64 /* string.upb_minitable.c in Sources */, + 066B56BEA7DEB947EA2B390F99943BCF /* string.upb_minitable.c in Sources */, + 606DF393DC4C652898B5AC23602A1D24 /* string.upbdefs.c in Sources */, + B77D20FB09460055D3D7C9387B9E621A /* string.upbdefs.c in Sources */, + 7F4533B671721BD3E836DD970B852F65 /* string_util.cc in Sources */, + 70FF29FBA212A6C2C40ADA25AB3ECB3D /* stringpiece.cc in Sources */, + F535863BDF888F8726E7E4CC9A33D20B /* strtod.c in Sources */, + 983F6753B70FEFB9FB4102ABA524B9F3 /* struct.upb_minitable.c in Sources */, + 4B781AF6AD46586E9A1A7152EB465AB0 /* struct.upb_minitable.c in Sources */, + 8F94C3801AFB4D99A97D0E5E59F88051 /* struct.upbdefs.c in Sources */, + A91FBBA4222BB10BAB8E8BF2A0D75A3F /* struct.upbdefs.c in Sources */, + 02501B79B37EFCAE11E95CEA3073F25A /* strutil.cc in Sources */, + 9DDAD90AF038B245293DC732BCEDDB4C /* subchannel.cc in Sources */, + 5D024856E1EF89551D61846EBBAA78F0 /* subchannel_pool_interface.cc in Sources */, + 98445818AB615F53C5F14A914C7665B1 /* subchannel_stream_client.cc in Sources */, + 558D97B95315216F10F26BDC9655AC16 /* substitution_format_string.upb_minitable.c in Sources */, + 6E75FCA5E101D4D6E2D10F88A17A1FFA /* substitution_format_string.upbdefs.c in Sources */, + 26F15C1B86265D5E5345555059AD16FE /* sync.cc in Sources */, + 0ACE17F1C13CA334289F66F3D4FD6932 /* sync.cc in Sources */, + 4C879272F099B4B71E96D5880E090A40 /* sync.cc in Sources */, + 9B63B127AFA1FBE23EBCEC22DA760075 /* sync_abseil.cc in Sources */, + 9AF33369DE0B4999C7618573D467B299 /* syntax.upb_minitable.c in Sources */, + 0C11702D2D15BDB260C382D32513D43E /* syntax.upbdefs.c in Sources */, + C0F4F392AE2309D85DEA271CEE8FC839 /* systemd_utils.cc in Sources */, + 997304E9DBA260DC1F402D4C90FD859E /* tap.upb_minitable.c in Sources */, + 33DF93575988A7C8D5CDB860DF06CBBF /* tap.upbdefs.c in Sources */, + FA077D9FA3323EB0B21C73E55E1EBEF4 /* tchar.cc in Sources */, + 8FFF743480E2D8DDC10AB8B622ED6F5F /* tcp_client.cc in Sources */, + DC3BAD2D841F186302DAE4C7A19A7C46 /* tcp_client.cc in Sources */, + CA1864C3BAAD64EB3C303326EE75D5EE /* tcp_client_cfstream.cc in Sources */, + 0C9709973A1E67AFBFF1DA9468F6F3BF /* tcp_client_posix.cc in Sources */, + 431FF6D7A00E126E9998480FE6DEF130 /* tcp_client_windows.cc in Sources */, + FBEDCB795B6E6F87F6293DBF1C27F366 /* tcp_connect_handshaker.cc in Sources */, + 3C194B236D7E2726639A91394DEF3FB7 /* tcp_posix.cc in Sources */, + F25BD2589164E3BFF8CF2F75BCB71A06 /* tcp_server.cc in Sources */, + 41602152544BFBDC0436875BE8FA632E /* tcp_server_posix.cc in Sources */, + D0C38246263080FB4DF7C556EB767C9D /* tcp_server_utils_posix_common.cc in Sources */, + C121ED237DCC5C931296E38A80FE514C /* tcp_server_utils_posix_ifaddrs.cc in Sources */, + 928E74BA7837F1CE6B3598CD852D1413 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, + 0F52DA8F9CF8F71C6198ABB16B023358 /* tcp_server_windows.cc in Sources */, + C6371EC0F2C619BD9E8DBE218C142825 /* tcp_socket_utils.cc in Sources */, + 834E1C1C743FF7ED3DA4D5E58F984B8C /* tcp_socket_utils.cc in Sources */, + 041C2E67D4BA54AE63AD239E71E44107 /* tcp_windows.cc in Sources */, + EB8F16BB73DE364E0713C5A1AEA1E43A /* thd.cc in Sources */, + 7030E9998BB066F2E6502CF73E1423A3 /* thd.cc in Sources */, + 1AA1207946935EFBD8E660AE9B2C7CEA /* thread_count.cc in Sources */, + A81CE16D2439CE7D8606340B5A70D957 /* thread_local.cc in Sources */, + EF2702419744DDA2DF20FECEE6E74B5D /* thread_pool_factory.cc in Sources */, + 68B6255EDD0233FC9BBBB2D41A1CD3E6 /* thread_quota.cc in Sources */, + C48136871F422D9D934E0AA8E73F0EC3 /* thready_event_engine.cc in Sources */, + 0D24AD80BF0F602E48F1FF11B5B0D7C8 /* time.cc in Sources */, + 0C6BA0A0E1534498F574759E7EEEF329 /* time.cc in Sources */, + 4CD1FB946221B26AEED0AED97FAEB8B7 /* time.cc in Sources */, + 8C928097ECC26C0D888CC600526BF5A8 /* time.cc in Sources */, + 37FC9C0257BA0D87068A95DA4D09CC29 /* time_averaged_stats.cc in Sources */, + FA26AE37733E3C7CA92844E92072C6A0 /* time_precise.cc in Sources */, + 6E2A29E81D1CC8D7528AB4EC4E7CBA02 /* time_util.cc in Sources */, + FB08475833FE5D4FF548D975FE4467BD /* time_util.cc in Sources */, + 0FCCDFA0D3CB73BB1D96FD74FCFDE558 /* timeout_encoding.cc in Sources */, + 4799562522BA82259ECEE6079CF88FFA /* timer.cc in Sources */, + F53F723F44077AF49EA3A6AA68D2C44E /* timer.cc in Sources */, + 72E840139832CB9443753780AFD91C8E /* timer_generic.cc in Sources */, + 66B2DAC22557AA25686C23074DD1D26E /* timer_heap.cc in Sources */, + 2A87318C1640C855A06AAA96CDDEAEC9 /* timer_heap.cc in Sources */, + 990F9122243111E2888F72E50CBE1021 /* timer_manager.cc in Sources */, + C867EE73ECCB2B0E58C62C85FEFBA78B /* timer_manager.cc in Sources */, + 31AC8995EAB47EDAF590929BBBEE0329 /* timestamp.upb_minitable.c in Sources */, + 3622D6FD5DC81AF77065FB055083B0F7 /* timestamp.upbdefs.c in Sources */, + 6D676444E968D5F61C62C9677D868327 /* tls.upb_minitable.c in Sources */, + 090690E6A77101F48FF09BD940E1CBB8 /* tls.upbdefs.c in Sources */, + 98D21E2F8007559F02F2A15A9BA77523 /* tls_credentials.cc in Sources */, + CF08C74330593FCAB13BF26084D41DC5 /* tls_security_connector.cc in Sources */, + 435E60BB3DEC72B1529970AFBF6E6402 /* tls_spiffe_validator_config.upb_minitable.c in Sources */, + C39EA8EFDB42D0CF402630978B6E5EF0 /* tls_spiffe_validator_config.upbdefs.c in Sources */, + 69FC65826C33C632169D7614A1C20459 /* tls_utils.cc in Sources */, + 21BDF946BC96934C2F618573FB7B5404 /* tmpfile.cc in Sources */, + CBDFD6F68C9F4EAB3C32DB05729F5DD6 /* tmpfile.cc in Sources */, + 4B40547F849A9F8F8F81B07B0EA57ECE /* tmpfile.cc in Sources */, + ECD2FEAEABDC2008A3A41B2933047F9E /* token_bucket.upb_minitable.c in Sources */, + CAA5BD27211FF305C61399E0650BA811 /* token_bucket.upbdefs.c in Sources */, + 1AFDDCBE0AD0BC0692EC19C02323FB49 /* tostring.cc in Sources */, + 486649242E35D3838B9C2117DA27949D /* trace.cc in Sources */, + 6633C55F92945BE2DADE6206FA596A4C /* trace.cc in Sources */, + DF8DD820F6F99F652B61446C06EFFC8C /* trace.cc in Sources */, + 6FFF21448F6862FD4460CBBE89711C32 /* trace.cc in Sources */, + 4511317B190A7B96412540538E3F925D /* trace.upb_minitable.c in Sources */, + 2C03599661AF619BCE1482A5FB056B6E /* trace.upbdefs.c in Sources */, + A259950CDF1D5B05363782CB2D3355A4 /* trace_config.upb_minitable.c in Sources */, + 40EA575A946C4F5CB849F1F57B9D2C9B /* trace_config.upbdefs.c in Sources */, + 2AB591F7342CF4CCF2DA29FC203B100A /* traced_buffer_list.cc in Sources */, + C5974CAD503DB72E1A29D56D0D29AF67 /* transport.cc in Sources */, + 317297BC48FBB8E9597DEE03312F85AF /* transport_op_string.cc in Sources */, + BD441C865E2E73F3BD3361845F244BEC /* transport_security.cc in Sources */, + B47771EEE5C99BBFEC9D0AFE624E84C0 /* transport_security_common.upb_minitable.c in Sources */, + 6735FEABD26D7A6047FC101F95DEC2A1 /* transport_security_common_api.cc in Sources */, + 9BBEE4C0466C00703F24C2AFBC886F02 /* transport_security_grpc.cc in Sources */, + 9EFF3CE5D9EAF9978619AD2546FCE15C /* trees.c in Sources */, + 7539882A77AB71B63FF64C12B27C2AD4 /* tsi_error.cc in Sources */, + 1867403BA2EB148CBAB4783931D368DD /* typed_struct.upb_minitable.c in Sources */, + 51D8793E53FBB2A23C9BB4D8A775E12C /* typed_struct.upbdefs.c in Sources */, + 2A4F03FF42628B7028DB66E852581FC1 /* udp_listener_config.upb_minitable.c in Sources */, + 5D6F526910675C3F103991A1144C39F9 /* udp_listener_config.upbdefs.c in Sources */, + EB5B96E015475C62259BD9C73CBED15A /* udp_socket_config.upb_minitable.c in Sources */, + 32F8B78C608B6B251EB0A6E5C9CBDAC2 /* udp_socket_config.upbdefs.c in Sources */, + 0946D1E7C71C4A942A22FC58CBA6638E /* uncompr.c in Sources */, + 74D109DEAEB6C1F7F0AF39F3A852F0BD /* unicode.c in Sources */, + E8EC5BE6BFF9669224F23BE6107C470B /* unicode_casefold.cc in Sources */, + BADFBCE657D079B7AE5CFD3973A1F5F0 /* unicode_groups.cc in Sources */, + BF99DE5B208CEA01C0D8A6BB82E61B90 /* unix_sockets_posix.cc in Sources */, + 1D42B954A730213539D436837CCF3E17 /* unix_sockets_posix_noop.cc in Sources */, + 51EFEE048FB0CF498AECADDE8560A98B /* uri_parser.cc in Sources */, + 556B7C19F52CD990B8673A2E451A182B /* url_external_account_credentials.cc in Sources */, + 5424ACD9FD70ADE7F43A999B868594A4 /* utils.cc in Sources */, + 41D00D990F1E26E0BA488D6848E5F9CC /* validate.upb_minitable.c in Sources */, + 4A84C3F37F6A88397504A40CE2320989 /* validate.upbdefs.c in Sources */, + 0D3B32D160FC6E691E20377109E24FEB /* validate_metadata.cc in Sources */, + 29E46BEB650FBEF863762D55F98AEC1A /* validation_errors.cc in Sources */, + C778AFE43B83490B3A7ABC7A6FF97F73 /* value.upb_minitable.c in Sources */, + F2ABF17913E5BF9EECCC2B302513C503 /* value.upbdefs.c in Sources */, + F908D302EC4B9BB0B8AA22D1926ED356 /* varint.cc in Sources */, + 7B52F5A49F7F3838B1C9397CF7824A4A /* version.cc in Sources */, + 1694FBD9CB0F1D8BECC3869C17C10D64 /* versioning.upb_minitable.c in Sources */, + 9781CC8EF3DEA138DF44F2DC0E0C2520 /* versioning.upb_minitable.c in Sources */, + 9166989E4CE9C6395CA9B59024A3E2E1 /* versioning.upbdefs.c in Sources */, + F51BE49DD2E9A59D3E88DA65284273CB /* versioning.upbdefs.c in Sources */, + 5BDC407E857AD65E75260B76F60E2B7B /* vsock.cc in Sources */, + 82FA8167EFAAA90B62EB8778DB204F47 /* wait_for_cq_end_op.cc in Sources */, + 2C8417C4C1139B1DA42F75825E52FDF8 /* wakeup_fd_eventfd.cc in Sources */, + 3C3D4A30AF3B3CBCDFF7426811648DC0 /* wakeup_fd_eventfd.cc in Sources */, + BE1BD24668BAC5EBCF73E0438E6E62A1 /* wakeup_fd_nospecial.cc in Sources */, + 7CBEF52C815883933AE28DF65EE43481 /* wakeup_fd_pipe.cc in Sources */, + 59E2ECB29C8143381CC220A602E1058A /* wakeup_fd_pipe.cc in Sources */, + 0C4BB0074CFDE61D7790485A918653F1 /* wakeup_fd_posix.cc in Sources */, + 2D2727D32C5947AB4E6F465247198CB3 /* wakeup_fd_posix_default.cc in Sources */, + 4551875843D9904F4DEE8A9ACC06B395 /* weighted_round_robin.cc in Sources */, + CE8334647D9BC5C617CB8AD1AC5B032B /* weighted_target.cc in Sources */, + 4CD38DB1BA455471667B8915521D3793 /* win_socket.cc in Sources */, + B7B1C7E17A31178A5E5C058FBA8DFC6B /* windows_endpoint.cc in Sources */, + 0E957DF51589010EB758C0C921D740E2 /* windows_engine.cc in Sources */, + 3C13F27792A858B9D0C0FD8A1E06222D /* windows_listener.cc in Sources */, + 651873771223EC4EE365F4C7CC7398E3 /* work_serializer.cc in Sources */, + 16ECBC9867477DFEB682EC9699D01AEE /* work_stealing_thread_pool.cc in Sources */, + B36097590080D50CFF272A6F658EB2C0 /* wrap_memcpy.cc in Sources */, + 2AEA1314ED35AB364CBAFE26E7956174 /* wrappers.upb_minitable.c in Sources */, + 0C86EE6866CD92EF5DB239548FEDE937 /* wrappers.upbdefs.c in Sources */, + 42E7DF8EA3F36456E1CC440D878BA105 /* write_size_policy.cc in Sources */, + BAE2D95F2E6C41DF8D5CF5A1F7ABA3D2 /* writing.cc in Sources */, + 8E6E1DD09BA02BDA6686C433FF4240BC /* wrr_locality.upb_minitable.c in Sources */, + 2957529EE76B1815B93FC61266D8F45D /* xds_api.cc in Sources */, + 6B6FB74608C7882B3649FFE1B06C147E /* xds_audit_logger_registry.cc in Sources */, + 273F406023E73955EE5AC33D49432CCB /* xds_bootstrap.cc in Sources */, + 6057A2267961654FB8AEB57262290849 /* xds_bootstrap_grpc.cc in Sources */, + C5A7642A539CAE4CDE14FD59DDF38A2D /* xds_certificate_provider.cc in Sources */, + 8BC5F1DFD3353D54D22D90424B00DB49 /* xds_channel_stack_modifier.cc in Sources */, + 8051EA1B2FC2B3DB9624034ECB7C196A /* xds_client.cc in Sources */, + 5292AC440CB91F0EEF197925849246EE /* xds_client_grpc.cc in Sources */, + 0DF87B77EF843009036677F3ED0740E1 /* xds_client_stats.cc in Sources */, + C38C8FDC8D118D59E2065ED24CA6BF7E /* xds_cluster.cc in Sources */, + F3861E1A19BD99AF973E7B9A369E53F9 /* xds_cluster_impl.cc in Sources */, + BF84BE06668822E4C0B34046FDD3E655 /* xds_cluster_manager.cc in Sources */, + AD1456414DC9A7538376F6E3A33C1999 /* xds_cluster_specifier_plugin.cc in Sources */, + 2B70D9791B7E4F6919031EFBDD98FC00 /* xds_common_types.cc in Sources */, + 896445B84B1C2C659EF77E34EEB53B15 /* xds_credentials.cc in Sources */, + 4A087863C862FB3AE028CE01F567996C /* xds_dependency_manager.cc in Sources */, + 1B5FAF80C3AE2D3F5AC63686EABF1071 /* xds_endpoint.cc in Sources */, + 8623A0728DC5910B750C2FC03740356F /* xds_health_status.cc in Sources */, + 272865A3E56B7CBB503446C645690605 /* xds_http_fault_filter.cc in Sources */, + B215EEB8D1D26AACCE2BA02FE5F06382 /* xds_http_filters.cc in Sources */, + 6181387DB14F0A190BD2079A43FF40ED /* xds_http_rbac_filter.cc in Sources */, + 1FC86243A5440C7A75C3D4D60210A27E /* xds_http_stateful_session_filter.cc in Sources */, + 95D1EA0427D914376C2854925246FDCA /* xds_lb_policy_registry.cc in Sources */, + CB50D7651D8DF9193EAFB9717E0FF190 /* xds_listener.cc in Sources */, + 93607A1F4F8A10126CE0F10DD584AF9D /* xds_override_host.cc in Sources */, + DA0CA1A228CF3D47B29AAB6670738074 /* xds_resolver.cc in Sources */, + E8879135BF7A02BCD3028740F6421E37 /* xds_resolver_trace.cc in Sources */, + 9A85D5F0B9756C5AD391B0F00A1C36F8 /* xds_route_config.cc in Sources */, + 4FCEC80AEEEDA4FF34004DE595469751 /* xds_routing.cc in Sources */, + 829BED16E6DE896DEA964D929724A259 /* xds_server_config_fetcher.cc in Sources */, + 6FAE01C15A7A8FBD50473FF3F26E7102 /* xds_transport_grpc.cc in Sources */, + B61368A1F8748E380E19969B50BEF934 /* xds_wrr_locality.cc in Sources */, + 92977FAB0168F20C6E9907A8485A3C39 /* xray.upb_minitable.c in Sources */, + AA8CC807B68C6F7652ECB1FBC446A2E2 /* xray.upbdefs.c in Sources */, + 1C9BC3CDF228B924DD7B0101103BF6DB /* zipkin.upb_minitable.c in Sources */, + B0E55C7D3C53F3542CA018DACD109B63 /* zipkin.upbdefs.c in Sources */, + D7648163BC0506735F36EB897FA279D3 /* zutil.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EF36B36EC4A79224DC4388A5F076DB7F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 79AC1CD81552E562A8AD8FD8DB7724EF /* Pods-SwiftProject-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -42158,178 +43518,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F732E0AEB12D1C64AE7F108F25299D58 /* Sources */ = { + F56511D6E98D036BE35141F07837CC0C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EB6302BE87E3ED380BED6EE2DD461B01 /* abseil-dummy.m in Sources */, - AB282FFF34758678CB184E77460E8538 /* address_is_readable.cc in Sources */, - D27A2ADD4BF6AE0F437333B5B5071DEB /* arg.cc in Sources */, - 60AF154030A651C67E28A5C3C0B7ED5E /* ascii.cc in Sources */, - 00E418EE0A6AB5A700EF9F9AFB7A919B /* bad_any_cast.cc in Sources */, - 6E45878431375CFF242BDE2A29070AA1 /* bad_optional_access.cc in Sources */, - 87BA319EF764FF2C9FFB159AD78C1643 /* bad_variant_access.cc in Sources */, - 92C8F10B0C02AAFC07BECA46FEF4ECEA /* barrier.cc in Sources */, - 4BD979ABFAF1D9C8BBC89A3EDC3564C5 /* bind.cc in Sources */, - F19417EB7EE25792C22029EE0D175F17 /* blocking_counter.cc in Sources */, - 16407055E8101B4270344CAB16577E2D /* charconv.cc in Sources */, - F487508805C5627D869C11A728626B48 /* charconv_bigint.cc in Sources */, - 19A3DC607C4972D960555B79EFA3A768 /* charconv_parse.cc in Sources */, - 6DD18703A6FE9991661B2407DE0A1FF6 /* city.cc in Sources */, - A5FB862965FB54AF469C3C52B662D9D8 /* civil_time.cc in Sources */, - 35B3AD193CD7A65823B135DE00B986F0 /* civil_time_detail.cc in Sources */, - 1BB355702862947DBB86A62B2BC3D285 /* clock.cc in Sources */, - 5E85F2A9E95872511C1FD041099019D5 /* commandlineflag.cc in Sources */, - AF994E8BFB89C97BB60CFC9612A89D9F /* commandlineflag.cc in Sources */, - 309DBAA2800E56F9DAFD86124C413B7B /* cord.cc in Sources */, - 95BBA75024192E3C1EC3DFD15C541961 /* cord_analysis.cc in Sources */, - A6BC06401994370EBE38419D9114AC74 /* cord_buffer.cc in Sources */, - 65310320390AFBBF0A8C60CD5D1DA319 /* cord_internal.cc in Sources */, - 37ABADA0BF3CD0CF59384CEEBBEA2826 /* cord_rep_btree.cc in Sources */, - 716AC3926B86729B45988556F456498E /* cord_rep_btree_navigator.cc in Sources */, - 4A030FAF8C8B2064BF91BE3B4467BB1E /* cord_rep_btree_reader.cc in Sources */, - 023A4A525BDDF01E59A1EA942AC195E7 /* cord_rep_consume.cc in Sources */, - 9FDC488EB596E97D2AA002E5981AE2A4 /* cord_rep_crc.cc in Sources */, - 2BE5697997352ECFF8E06ECF7477935C /* cordz_functions.cc in Sources */, - 501A8BA74199B846A4F823549ADAB838 /* cordz_handle.cc in Sources */, - 9F14960BEED9868A2C47918BBE9BF0B1 /* cordz_info.cc in Sources */, - 1905E96E13BF64579CEE7BC3697AFF00 /* cpu_detect.cc in Sources */, - 5BB0CF65067ACAD703720F2DE3574BAB /* crc.cc in Sources */, - 925BBD26B61A97CD10493087EABB3FF0 /* crc32c.cc in Sources */, - 310E580F3F9BAD83192E851846C95216 /* crc_cord_state.cc in Sources */, - 230B045267F8C49873418D8C6475AFEC /* crc_memcpy_fallback.cc in Sources */, - 190C14A0B049A3DDAF6BFC48F73A90B4 /* crc_memcpy_x86_arm_combined.cc in Sources */, - AE6C7EF70BDDD318C8159CF6D108789B /* crc_non_temporal_memcpy.cc in Sources */, - A850CA55DAE924A7B3DFF189D5218330 /* crc_x86_arm_combined.cc in Sources */, - C0AE618A4881F00E7A360C4E4377270B /* create_thread_identity.cc in Sources */, - 50717EB1F4FC4CA5D09A0F9B78F720A3 /* cycleclock.cc in Sources */, - A0DE7F398715BF2C3EAFAA8518BC19A8 /* damerau_levenshtein_distance.cc in Sources */, - 5870C2A676443212AC67E1D0D16D427E /* demangle.cc in Sources */, - 29166052CE9BDB4A94FCA653DD60DA6F /* discrete_distribution.cc in Sources */, - 933A557690B943200DB22695AE7A677F /* duration.cc in Sources */, - A53CCB4A195FF3F9DC6FA4BA66B4EC25 /* elf_mem_image.cc in Sources */, - 30B328D86750C0803398A8BF65CF6683 /* escaping.cc in Sources */, - C1D8CF366BA7B1FC60F7901C8CD1A3F2 /* escaping.cc in Sources */, - AEDFE2307879E6A46569D91BA904497F /* exponential_biased.cc in Sources */, - D2D5658072F717802905A92266893457 /* extension.cc in Sources */, - 592723BDC9331F32B5466F36C149A019 /* flag.cc in Sources */, - 8BAB4D9C3AD7074DA6513CCCB3CFE4FC /* float_conversion.cc in Sources */, - 49408D815766DDF0790CDE134756F16B /* format.cc in Sources */, - 0A62F63AACC54A3DC32117DA9B6B3860 /* futex_waiter.cc in Sources */, - 449E76A8EC5AD2A0AF16EC31140D73D1 /* gaussian_distribution.cc in Sources */, - 47D961BE4CB5236159F8B9FF97D0474B /* graphcycles.cc in Sources */, - B7E084E57253931BEDDBBB81025A5DDB /* hash.cc in Sources */, - BC4CFACC153F2B16366BD4FB201812FA /* hashtablez_sampler.cc in Sources */, - 62BF4BEAD97E6B50E964AA0C1EB2182B /* hashtablez_sampler_force_weak_definition.cc in Sources */, - B0056B7155C67D73FD9B9075A6222612 /* int128.cc in Sources */, - 523734F45D65AB01F964EBF68D925819 /* kernel_timeout.cc in Sources */, - 9379E872D302D58BBAC4CD6B2110F91F /* log_severity.cc in Sources */, - 23ABB4F12119BC32E05B01CCA7DA47C2 /* low_level_alloc.cc in Sources */, - 4A3ECFA41B995EBB47D5D25B8EF5B577 /* low_level_hash.cc in Sources */, - AE16304E1CE3F4ECDE15016C79B335C3 /* marshalling.cc in Sources */, - B22F7F16940468910D614AD117AB54FC /* match.cc in Sources */, - 842AE2EA6AC02271BFBDA166FA3D5FFC /* memutil.cc in Sources */, - 25286E8F7C16A2104AB7A20FCBB32A6D /* mutex.cc in Sources */, - C106B3D80FA08885C783A6A7E6B630BD /* notification.cc in Sources */, - BAB70F78DD31CC6C95465A5DF3B9128D /* numbers.cc in Sources */, - 6222E4971D073A9C2E7BE63231365A5D /* ostringstream.cc in Sources */, - 421B2F7EFFFCFEDD1C16BF201AFC8801 /* output.cc in Sources */, - A086ED89A3E083766BCA166687A52EDE /* parser.cc in Sources */, - 0C624FB677BFDA6F57E2B2A3A25AF3AE /* per_thread_sem.cc in Sources */, - 76140064499172BA14C3FA0E1F66FDC9 /* pool_urbg.cc in Sources */, - 559E1FA872AF5E934F6F1975E88A24D9 /* private_handle_accessor.cc in Sources */, - 60A63436FEF0BD2A181D6DEE934833FF /* program_name.cc in Sources */, - 4864AA3104A982AB0A75676485ECF90C /* pthread_waiter.cc in Sources */, - ABDC843DF5BBD0A4359F2204D904D4C2 /* randen.cc in Sources */, - B5FF35D4331934DA732369E7D6835DE2 /* randen_detect.cc in Sources */, - C31C88CD0FC2C6F60B5609E5F6389046 /* randen_hwaes.cc in Sources */, - BD6E5F54CF6A81697345322983E9C820 /* randen_round_keys.cc in Sources */, - 559F4D29658DB09FC4F4F9D359059808 /* randen_slow.cc in Sources */, - C1ACDABC5BA9B2B572279D38DFDB436D /* raw_hash_set.cc in Sources */, - 342F33A25C1F0BA1BD5383A4E83BA813 /* raw_logging.cc in Sources */, - D974B5F6AB0BA3F75AF53F4D6D0D5E6F /* reflection.cc in Sources */, - 3EC69B5C1FC9B45EFE070B9BA138D9A9 /* seed_gen_exception.cc in Sources */, - A3A69487F601051BEBFE4B4A5E3817B0 /* seed_material.cc in Sources */, - 735A386A6C92FA630C828A19F5AC595D /* seed_sequences.cc in Sources */, - 14A4CD84BF1AAA72E58CEFFEE0D8E2D0 /* sem_waiter.cc in Sources */, - D85B9A4FDDE886599B11A4249D1BA677 /* spinlock.cc in Sources */, - 9A58C6D8392B1DB1B73EAAF3CC1B9B45 /* spinlock_wait.cc in Sources */, - E0AA750C7CB301FB880D0E431849CA51 /* stacktrace.cc in Sources */, - BF1E52F24DEEB341971039CEF8558D51 /* status.cc in Sources */, - 3B5CD2D628129EE3D54975804EDE0A6F /* status_internal.cc in Sources */, - 64E1F262870E0F6D1210A4D0F76428EB /* status_payload_printer.cc in Sources */, - 2ABD782ECD61145149FFDA3E82FD2752 /* statusor.cc in Sources */, - C3A4C4E5ED2E02C0302B27123EDA760D /* stdcpp_waiter.cc in Sources */, - 738C11C5633149F28082D8E4CCC4395A /* str_cat.cc in Sources */, - 4586B4686AA83382D3B07A1A4E8065AD /* str_replace.cc in Sources */, - 937C5C45160664D7928D7DEDC8177B0E /* str_split.cc in Sources */, - 28ED88AAC902C8308172D4C997870F9D /* strerror.cc in Sources */, - 67FA6374BF3AE8155348C88ED87F5988 /* string_view.cc in Sources */, - E2C3F78BBD88CCB25715049CAD823B06 /* stringify_sink.cc in Sources */, - B60652F341F354420F5E1B24FB40D93C /* substitute.cc in Sources */, - 8F731190C78E6856CE0250629EC455BA /* symbolize.cc in Sources */, - B915CFB4A6682418BA3C1716B61C2D5A /* sysinfo.cc in Sources */, - 00175BB0CA4FA2AE014F7CB25692632F /* thread_identity.cc in Sources */, - 122B2683F4B9A3D494BBB0D6D6D1E772 /* throw_delegate.cc in Sources */, - AD6A964B1F002D8035EDA8C64ACC4601 /* time.cc in Sources */, - 74C798CFE573C845752F860ADC6AC807 /* time_zone_fixed.cc in Sources */, - 8154C3C0FEC0C3ACAE78907250A96E99 /* time_zone_format.cc in Sources */, - E527E99B70699CC6AA4D839D9ED515CC /* time_zone_if.cc in Sources */, - 6AFB300179873CCFDF2AC2F163CBEA53 /* time_zone_impl.cc in Sources */, - 73D49DA07780A1D94131797163335BFF /* time_zone_info.cc in Sources */, - 38A0317833D349BAF2BC0019DB886B5F /* time_zone_libc.cc in Sources */, - 75D9B1F4316834656DD4A4824B2B163D /* time_zone_lookup.cc in Sources */, - 3A16C13B93B669E5B043E0B35D77403E /* time_zone_posix.cc in Sources */, - 082CD12975DBB1DABA3FC159EBFFF184 /* unscaledcycleclock.cc in Sources */, - 364C7D4516E2E5F88EA49C4D008D7B6C /* usage_config.cc in Sources */, - E8F56525E60E7CE77C10FDFFBFDAC7F9 /* utf8.cc in Sources */, - CCFC02BB02559ED8B821D36039629AFF /* vdso_support.cc in Sources */, - BC91C00D2EC3783CE3FCDEFFDB2AA011 /* waiter_base.cc in Sources */, - 33872A5E1B3B0B024555A618713CA320 /* win32_waiter.cc in Sources */, - 20C5A12BD260C4F847E67ACC689CC411 /* zone_info_source.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F9FCA99EFE1BB812E0973FA2BA854E06 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8B84B4D3028472FD94511BF582BE6D0E /* cct.nanopb.c in Sources */, - 54F83DEA2E326195B2AFB675F61AE95A /* client_metrics.nanopb.c in Sources */, - C49079F9B971648EEDEE37ED62626AE4 /* compliance.nanopb.c in Sources */, - 13FDBF5085397203E7463E146FA3183D /* external_prequest_context.nanopb.c in Sources */, - 38D21DAA7412B347D28EAD8A3B534EA6 /* external_privacy_context.nanopb.c in Sources */, - CB9678F617D69D07A81F45A997802AD4 /* GDTCCTCompressionHelper.m in Sources */, - 78124CA00586FFF5CC94B2685EEBB5C2 /* GDTCCTNanopbHelpers.m in Sources */, - 0913B7B5F6C6B5DB2544743706FAF948 /* GDTCCTUploader.m in Sources */, - 861CD82478E36B43C26C84B40BB41E88 /* GDTCCTUploadOperation.m in Sources */, - 04E693FB1E910B6787D3BC86D2D2DC86 /* GDTCORAssert.m in Sources */, - FE2FF69FA039C4C9AB6CC6919270A7A4 /* GDTCORClock.m in Sources */, - 164998C47DFD4A1FEFA7E101AC5B4C0C /* GDTCORConsoleLogger.m in Sources */, - E4DADFCEA8248CD42715E377E1FFDF4C /* GDTCORDirectorySizeTracker.m in Sources */, - AFAE565339A4F8EFEFBD647484D54857 /* GDTCOREndpoints.m in Sources */, - 89061B8976DB6BD9193B8C4F4D724CD6 /* GDTCOREvent.m in Sources */, - CD45E91A92F7020B18C8C27D0D96D672 /* GDTCOREvent+GDTCCTSupport.m in Sources */, - 7D703EB2BD4567F313CC244D2F78493A /* GDTCOREvent+GDTMetricsSupport.m in Sources */, - 8387DEED889C8103C46CAF0CC1D4C4C7 /* GDTCORFlatFileStorage.m in Sources */, - 5DB5BA171754295CA3CAE738A1265D1B /* GDTCORFlatFileStorage+Promises.m in Sources */, - A055A798931C92E5D7860AD98495C646 /* GDTCORLifecycle.m in Sources */, - 2CFDC9C3A78EA4714F7E312A83C6F14B /* GDTCORLogSourceMetrics.m in Sources */, - 80CEAB9C44C482095DB00F929E6316E6 /* GDTCORMetrics.m in Sources */, - 58C2A288A7FF9E3248B2BCCEA9958887 /* GDTCORMetrics+GDTCCTSupport.m in Sources */, - 96311431B17267577C2ACBB4DB8F5BA5 /* GDTCORMetricsController.m in Sources */, - 2AE30E66BCD52F00FCC1E5E80450F47F /* GDTCORMetricsMetadata.m in Sources */, - F256180B2939C5BD0B868F14DA8FC321 /* GDTCORPlatform.m in Sources */, - 5B5964C08EABB606338479BA0B8A4A59 /* GDTCORProductData.m in Sources */, - 45952ADB6E678F9554A8950CA7B48C99 /* GDTCORReachability.m in Sources */, - AF69918A4941373873C566510D981B12 /* GDTCORRegistrar.m in Sources */, - 38A957BF0EB229154D1A2CA69C340B53 /* GDTCORStorageEventSelector.m in Sources */, - F3769310898E3723540100870C52875E /* GDTCORStorageMetadata.m in Sources */, - 3A5303479351BA0D72B64BD6CC240080 /* GDTCORTransformer.m in Sources */, - 700A3DBEE7CAFA83BFA2F5D7EDDC331C /* GDTCORTransport.m in Sources */, - 393564E43C631E35DD2829AF726E0D0B /* GDTCORUploadBatch.m in Sources */, - D14560484DB7863E843668F9618B411A /* GDTCORUploadCoordinator.m in Sources */, - B338E112B928D44C7899F83DDC4F1642 /* GoogleDataTransport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -42368,681 +43560,872 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FF059D39F73A4EF25504854FBB1DAF99 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 686B42B7060353FDE4591BCAA0189993 /* placeholder.m in Sources */, + 5F95095F8ADF51C6A958E3CA46C6F485 /* RecaptchaInterop-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FF85424237215CC67FC525AE2FB4938D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CE4D0E4EB7D1EDB3031DDF9A2A307CF6 /* cct.nanopb.c in Sources */, + E32931AEF6C123D92B39216BE75AF59F /* client_metrics.nanopb.c in Sources */, + 9EBD6A4452F5CD9F2A92CF5420EDCC3A /* compliance.nanopb.c in Sources */, + 94244C4D4D208283D4D5E036105E7F39 /* external_prequest_context.nanopb.c in Sources */, + 408A970F264BA1EEA20521D2A1CC21B8 /* external_privacy_context.nanopb.c in Sources */, + CC654B2BF1E0831AA015A714539C13D9 /* GDTCCTCompressionHelper.m in Sources */, + E6F4460472CA1056CC520ADF92A0172C /* GDTCCTNanopbHelpers.m in Sources */, + 800DFC040030ED01A3C9AA675274A86B /* GDTCCTUploader.m in Sources */, + EAB2B2566EAEBF1BC12DEFE3A1CD640E /* GDTCCTUploadOperation.m in Sources */, + 2B2D8BCB84AAB7E5DE9E91CB728CB243 /* GDTCORAssert.m in Sources */, + E40391D30B85BB5E2480F6557E77E888 /* GDTCORClock.m in Sources */, + 38F489B51B365B785F2A4D08527AB983 /* GDTCORConsoleLogger.m in Sources */, + 53DB9EB48CCC8326BE532000343DC758 /* GDTCORDirectorySizeTracker.m in Sources */, + D117ECC22AC5F378A4179CCC8A3E85BE /* GDTCOREndpoints.m in Sources */, + 2FDE8877A0B4BB3B1C567C15D76A2E89 /* GDTCOREvent.m in Sources */, + BBF75921867A47EB70092E9DC62E9E9C /* GDTCOREvent+GDTCCTSupport.m in Sources */, + 4E7536F223C6A20262A1A9822EB0E24E /* GDTCOREvent+GDTMetricsSupport.m in Sources */, + E15A615E32B130B38C3C7F27AD6B0601 /* GDTCORFlatFileStorage.m in Sources */, + 53E1835B864D5C64BFF17C31233657AF /* GDTCORFlatFileStorage+Promises.m in Sources */, + 4E4B4E5F05CE32F7FAFDBCBBA7648668 /* GDTCORLifecycle.m in Sources */, + 33692E1C7BC36132F7424C9154ABFE71 /* GDTCORLogSourceMetrics.m in Sources */, + EF855EBD5B656A4965FE4A2E4078368B /* GDTCORMetrics.m in Sources */, + 95106981B6DA1D43C179B07CDE254562 /* GDTCORMetrics+GDTCCTSupport.m in Sources */, + CCF5C9F939D10A6FC6934CAF9B8ECB48 /* GDTCORMetricsController.m in Sources */, + FC1E5B4114FDEF1FABE017DC02CCB310 /* GDTCORMetricsMetadata.m in Sources */, + D1720F310351FD312E63C9A333111650 /* GDTCORPlatform.m in Sources */, + F7092FE98EED86BDABC58392150E1A1F /* GDTCORProductData.m in Sources */, + A8B0F941B909BDF042FA32AE6B9A54A6 /* GDTCORReachability.m in Sources */, + D1EBA293CC6796E1564F1F44AB094F27 /* GDTCORRegistrar.m in Sources */, + D52687A981CEF4486F60361A531E0861 /* GDTCORStorageEventSelector.m in Sources */, + C8E1FA5214AB7E082CF96F48F7FD5982 /* GDTCORStorageMetadata.m in Sources */, + C39B0460852DE9CC7A90F98FA3B44C9B /* GDTCORTransformer.m in Sources */, + 9948A8C97E2EAE48D165D4F4CDDDCBBF /* GDTCORTransport.m in Sources */, + 10C651770A60438A42581A5BE08ABE90 /* GDTCORUploadBatch.m in Sources */, + 6675E21A3252F368C56CBEBABF8DE614 /* GDTCORUploadCoordinator.m in Sources */, + 0AA8FA90408BF04CBC5A0AF3D9E27AA6 /* GoogleDataTransport-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0161C05E77F03C767E572A9656CC423A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = E036E53AD65990992BBFB0A7172E1BC2 /* PBXContainerItemProxy */; - }; - 05DA22CDFD6F68B9C08EE2FA3C36B712 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 1F46FA7139A48E6BA569729037D03B18 /* PBXContainerItemProxy */; - }; - 06422BFF9B183C0D285635130BC68E92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 100C077AF75F3AC2EC4C481CF0576BD3 /* PBXContainerItemProxy */; - }; - 0C46CD3DDA489529F844B99492096BB9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = C95ECB6EE87B760C64C9B9FCB15B9D36 /* PBXContainerItemProxy */; - }; - 0DC2F3827BB1DCE34432D00A0569B5BD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "PromisesObjC-FBLPromises_Privacy"; - target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; - targetProxy = 6A4705895EBBE9D3AB8F31F9DDFCD31E /* PBXContainerItemProxy */; - }; - 0E753C214A22FFE468EEADFD37CA9D69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 54B4AE23D943B72869201B11D6BA9A3F /* PBXContainerItemProxy */; - }; - 109454F3EFAF7A4667E89CB633449A4C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 6D2D6D0D41E8C66BA4E52CE7DF09C899 /* PBXContainerItemProxy */; - }; - 1297D8806C9135D35B65A66E7A9CCCC3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 3C154B5F51CF13A32E957AC80460AED2 /* PBXContainerItemProxy */; - }; - 17186E45B86AF497E3C40EBCF5EDE191 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = A72CA98D2C0547D200F38DFBFAFD743A /* PBXContainerItemProxy */; - }; - 177B7E5B15A6732EE19DE6F13D9EB3D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseCoreExtension-FirebaseCoreExtension_Privacy"; - target = 9C4575D64B2B6264CF6AB60FB03302AA /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy */; - targetProxy = 3A7F0A70C4984050F19B60321DBE6E12 /* PBXContainerItemProxy */; - }; - 1A278F492D03EF2059C1AE8DE665CF8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = AF3D7B4E38D61D21E541B42BC01F8496 /* PBXContainerItemProxy */; - }; - 1BF0CE67C1BDFD5C9FF47A680D2DB366 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAppCheckInterop; - target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; - targetProxy = 59065F9ADDFA69A4EFE191C9045C46D5 /* PBXContainerItemProxy */; - }; - 1D8D453EA774CA4BA342ACF681043E5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = C16ABC985CD375210CB28A10F434031E /* PBXContainerItemProxy */; - }; - 20CAE4E415D10972328FA7D2B5174C7F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseFirestore; - target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; - targetProxy = 75EBE95E558859AF9932916F1145DE6F /* PBXContainerItemProxy */; - }; - 220067CA4CF32C038E44CE468E27F849 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = F6F3C534BE8735E6B5184A46A1F39336 /* PBXContainerItemProxy */; - }; - 225AED5EA54C7BE1D35F280777A98A32 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "BoringSSL-GRPC-openssl_grpc"; - target = D0583478A3CCF5BCACD7E8105CF7918E /* BoringSSL-GRPC-openssl_grpc */; - targetProxy = 5D7FA4F44F4655ABD1D13196ADB8456C /* PBXContainerItemProxy */; - }; - 259BC66CAC125A02A79EC4DD47C1F79B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RecaptchaInterop; - target = 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */; - targetProxy = 7328326A2AE243270B787BF07AE4FACE /* PBXContainerItemProxy */; - }; - 2A5C2EA5F5AE3724BDED0E7A4FCE47A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 99385320B4A42C511B0462373700AC83 /* PBXContainerItemProxy */; - }; - 2C3D668518AEA6C505802229FCABE1DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseSharedSwift; - target = 94706DD5BBE215339DF893D4434E1084 /* FirebaseSharedSwift */; - targetProxy = 891AB20F2FBCB5C574296FB3D183CCFB /* PBXContainerItemProxy */; - }; - 2D18114E4045B5BF938B564ACAD5ABB0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 4329225D3DC967F30C20669D967572B5 /* PBXContainerItemProxy */; - }; - 2E1453DDCB4FACC7CBE3C84EE431D581 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseFirestoreInternal; - target = DE74CDAFE8319CEDA4F1232DEC00140C /* FirebaseFirestoreInternal */; - targetProxy = 8016B7C32EBD576281B14B4326D59B21 /* PBXContainerItemProxy */; - }; - 2FF62AEFA2622FFAAB2719BD0F5A4D81 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 9C0132BCC4F529F5E275205F49C81D38 /* PBXContainerItemProxy */; - }; - 3319C2AFC3C6F5002E91791ACAA90955 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "GoogleDataTransport-GoogleDataTransport_Privacy"; - target = DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */; - targetProxy = CCFE13C5423AC7D1E32367685C386B45 /* PBXContainerItemProxy */; - }; - 37419D0AB3E5CE95490CD620A8A50C74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 6D725C5CB4578B173AFB6DFDE637C219 /* PBXContainerItemProxy */; - }; - 3820DCC7F881A5D96918BCAA8AB7FE17 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 728ACF3FF6F9F895CCFCE6D091F62C6A /* PBXContainerItemProxy */; - }; - 38C9DDFF359726C9955C619881867A90 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = E8346AFA71A485E7855F26453C7B7581 /* PBXContainerItemProxy */; - }; - 3A66B08FEA4E527A15186987AB03587D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 36EA855F04F43B25439B61C2792D97FC /* PBXContainerItemProxy */; - }; - 3B2A94372DDD64A5F19D60D45E4FA3B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 5B7FCD0A474710DBAEF8E76BB1274647 /* PBXContainerItemProxy */; - }; - 3ECDAA5927D1A848BCAB66C17CCFC524 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAppCheckInterop; - target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; - targetProxy = 56390A4B585855EB3E250F744BA4C80B /* PBXContainerItemProxy */; - }; - 3EFD4CC9FC8FEE94F6139D536D007009 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "BoringSSL-GRPC"; - target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 5DE1C66F2B2D154C1E00782FBAB940C6 /* PBXContainerItemProxy */; - }; - 427261E97ED6250FF74673ADC99C227E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "GoogleUtilities-GoogleUtilities_Privacy"; - target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; - targetProxy = 7B9137867BE120ACC8FD8C6E9C119B4D /* PBXContainerItemProxy */; - }; - 44844AF55CA269F3715572A19833952B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = D320288FD4C5765A7A7A5BA83FC6D59B /* PBXContainerItemProxy */; - }; - 451ED59ABAA9786FD87F2042793E883A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 5E2D1B90BE55214304027DA37CE7D8DB /* PBXContainerItemProxy */; - }; - 4975836239A74C152DE8AE1A24572886 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 6875A33F00774D9D5C49C00284BCB24B /* PBXContainerItemProxy */; - }; - 4CDBD39847266C81FE30E16C7E33FF0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 46762469653D365E9845BBA07C3B4F2D /* PBXContainerItemProxy */; - }; - 4E6FCABEBA0B8EB40FA7F4D4DED15015 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = E1423D928BA101C27CA3BD1BF06AC85A /* PBXContainerItemProxy */; - }; - 51B1AE1C4824C5B520BC1187BBC21279 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "PromisesSwift-Promises_Privacy"; - target = 230F5EE18ECBB227C09ED2C571AFA319 /* PromisesSwift-Promises_Privacy */; - targetProxy = 6250D851722E80CBA4D8CEE85B350CF9 /* PBXContainerItemProxy */; - }; - 536D5D0D9D2FE69ACE998BF7941DAC5C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = FD08915FE6E9A0210BD367C7058772BC /* PBXContainerItemProxy */; - }; - 55F4A2498BE78776740220D14FBB337C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 4043F5C1F0864BB8377AB70E8A750466 /* PBXContainerItemProxy */; - }; - 575BB1AEC6A47B124B3C3DCCD54247B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 80A465588DD8858016C1A56D4E452F50 /* PBXContainerItemProxy */; - }; - 57C6306827B42CDE295010FD0D28E35C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = B48AD6614C875E81903404F1A454A2EB /* PBXContainerItemProxy */; - }; - 5C292E8886C27ACDE8DEEFFA644EDE45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 945B8CD0342535262EE2B75EC06F7135 /* PBXContainerItemProxy */; - }; - 60AA0A489CBC588CF5E77B40A53F42EC /* PBXTargetDependency */ = { + 00715CEFFA79BF5DD5643758E640695D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "FirebaseCore-FirebaseCore_Privacy"; target = 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */; - targetProxy = E919BB085A5AB5203AFA4AAF4F0234B5 /* PBXContainerItemProxy */; + targetProxy = C2C3C1639E11B4D796F2DD3246346D95 /* PBXContainerItemProxy */; }; - 643AAD80967B2810DA6C006351806931 /* PBXTargetDependency */ = { + 02DF7B6F76F3BD214A5AA14EC762F308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 23A89E768097CEAE9C1D81FDE5F534D2 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = DC6D973DF6490131450216881EFC5045 /* PBXContainerItemProxy */; }; - 64930789337640B1A3745BD9CCFE6F8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = B5117CD021F9DEB8288207FB2FB49C69 /* PBXContainerItemProxy */; - }; - 6634DC029F637A9F774A8BC9054A2550 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseInstallations-FirebaseInstallations_Privacy"; - target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; - targetProxy = 9C305868EC5FFF54BD50D21F877F15B3 /* PBXContainerItemProxy */; - }; - 6A5BFF16400048F53FC8FD60078EFFAD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy"; - target = 591296C07DD97B6B624758F2DAF981DE /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */; - targetProxy = 5F1324AF1CBD40755FDD8EF1C9B6206F /* PBXContainerItemProxy */; - }; - 6B12B159BD3A5C7E11E45F74FCB1645F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 647C103D3CCD3005A3FDDDC22C17F6C7 /* PBXContainerItemProxy */; - }; - 6F43DA6733FA9CBDB48A12D6BAF203A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseSessions; - target = 3F8EC37C78673149F2B94E8BD9AA8737 /* FirebaseSessions */; - targetProxy = 857B6937DED2257A80998B933C6FFB67 /* PBXContainerItemProxy */; - }; - 72F8CBCEC924B28EAB614CAC4D3B5D2F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "leveldb-library-leveldb_Privacy"; - target = 8AE1E2A4B497E543C01E68497F7C0901 /* leveldb-library-leveldb_Privacy */; - targetProxy = 9DD36D51EB5CD8843F36C45A7BC000D4 /* PBXContainerItemProxy */; - }; - 7447ED78AE50282C263A40A29686C598 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; - target = 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; - targetProxy = F2F281CFD4893EF9E12C8ED8C23AC898 /* PBXContainerItemProxy */; - }; - 74D463781B2483F18F94D5E6BC75FB00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = CFC6E39C2F9591FB99E45C119495A94B /* PBXContainerItemProxy */; - }; - 7AB7B9429F4EBC90A6C81863FB30A912 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseSessions; - target = 3F8EC37C78673149F2B94E8BD9AA8737 /* FirebaseSessions */; - targetProxy = C6361F13E553843EB4131F75DE532A25 /* PBXContainerItemProxy */; - }; - 7BCA4763A0C639C9F86F0B1F893A4D30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 199022DB3075234840A5198FFCC5A9B6 /* PBXContainerItemProxy */; - }; - 7F728D8876D8347AB023BE21710B340C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 5A74E3BFEB8B47562D100104B3A0AF45 /* PBXContainerItemProxy */; - }; - 7FC622F823A6E22A2F8DD7B485E47AF1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy"; - target = 417B25AC44CA1D040034CC1F375CEE36 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */; - targetProxy = FF20A004B6769AE994DB7BD8E4A42B07 /* PBXContainerItemProxy */; - }; - 803C7DF90475B49EA6BBF19E8BF1A128 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = F6A03C1C0F8A8C9294CB312EB78D362F /* PBXContainerItemProxy */; - }; - 80B2C18C9BC1EEE5AD2E97BE36CF23C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = A7ECD05FDD48608FF0F79B1F88F1CB50 /* PBXContainerItemProxy */; - }; - 82FA2DD7956E75368F93ADC39F9DB9C8 /* PBXTargetDependency */ = { + 098352967444C5ED6444A9483D677E28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = CD0D6353ACC8CD0BB3BD7BD9ADCB71E3 /* PBXContainerItemProxy */; + targetProxy = 62E971544F72B3E821989E6C40374C47 /* PBXContainerItemProxy */; }; - 83FFAA6C1A3CD7A7631AAEED609C9773 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = DA8A73C90CC3EAB76F4FB647138FCDDD /* PBXContainerItemProxy */; - }; - 84063DA7D51611583AF28C495FE59747 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseCrashlytics-FirebaseCrashlytics_Privacy"; - target = 17CBCC6221F62B870268E935098B7D7D /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy */; - targetProxy = 54287538D4B0F975A7F371B70015E69D /* PBXContainerItemProxy */; - }; - 88A85F81277FBCCC0EDF846599BF15AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesSwift; - target = A979F9D3632CD5F2F7518F9A362CBAE3 /* PromisesSwift */; - targetProxy = 6799423C4C35125618492B8B3824CF12 /* PBXContainerItemProxy */; - }; - 92194D58CD9D886BA968218BCDF796C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = E90FFA11FBC980CC3A7D322968BD0798 /* PBXContainerItemProxy */; - }; - 9350796FE4128C1CB5F42E45365B462D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 31B2EF8C29254A11B8FCC0129F3C7E0D /* PBXContainerItemProxy */; - }; - 94FE459684669DDE498F560204549F9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesSwift; - target = A979F9D3632CD5F2F7518F9A362CBAE3 /* PromisesSwift */; - targetProxy = C06587A522EDB43AE836A807DEEC0722 /* PBXContainerItemProxy */; - }; - 9561FAF5C876EDCA4A6ED2134C3B247A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = C1A23A5081664636212DC2DE1B39E907 /* PBXContainerItemProxy */; - }; - 9601219547C4AC400FB0985E80DC342A /* PBXTargetDependency */ = { + 0A03BD5FCABD7C277E15B7FC9CEF7A7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RecaptchaInterop; target = 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */; - targetProxy = 85461C97ABFB1DB8DB54A7834B06217E /* PBXContainerItemProxy */; + targetProxy = 21C6C62E9402D5361C455424BC548DFE /* PBXContainerItemProxy */; }; - 99901A52928FD0750E82E81CB1697322 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 0D9D03671B8BB3F398294D09165C232C /* PBXContainerItemProxy */; - }; - 9A4E91C9D3C87A2EB94A995DB16D3113 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core-grpc"; - target = 86CFB548AF424CFBA176390BF5EDCC39 /* gRPC-Core-grpc */; - targetProxy = B21BAAD77DB0B49A189E91869A8FDDDA /* PBXContainerItemProxy */; - }; - A1C8C204FAF94D588DB301566C2807A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TZImagePickerController; - target = A96BBB982D62BB807B5BD10774BE2D07 /* TZImagePickerController */; - targetProxy = 482E682E8AA3E6416347E52A0991B326 /* PBXContainerItemProxy */; - }; - A29708D19C5FF41A7DE27EA8FF72A53E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseRemoteConfigInterop; - target = 328CC04F43300C6CAB81659260A3799D /* FirebaseRemoteConfigInterop */; - targetProxy = E6A0190A00426CED51180489B3D30688 /* PBXContainerItemProxy */; - }; - A36B5D2792A15C500538BBC30D2A25DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseFirestoreInternal; - target = DE74CDAFE8319CEDA4F1232DEC00140C /* FirebaseFirestoreInternal */; - targetProxy = 4A0174C1783095A92A9F20E0BC6324F8 /* PBXContainerItemProxy */; - }; - A6804BEA74F37B5B893A3445815D7595 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreExtension; - target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; - targetProxy = D093E28631F7610BA6D040D3C9E7EF04 /* PBXContainerItemProxy */; - }; - AC099D3B49E08FB79E9ABDEACEF838CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 7E364730B889CE406D5FC32E653408C7 /* PBXContainerItemProxy */; - }; - AE09438A0E47A714C01BE6FCCED70FEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreExtension; - target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; - targetProxy = 8B90D7D7382CFACE0381DCC66E8C2FE4 /* PBXContainerItemProxy */; - }; - B00235D59E5FBD1C8C9BAA1C0D199294 /* PBXTargetDependency */ = { + 0BBCAFD316D632370B0D899D6CD8F1CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "gRPC-C++-grpcpp"; target = BF61C1A657C58D1D0C1169ACE0A38B81 /* gRPC-C++-grpcpp */; - targetProxy = 101B7EB97FE8A5B4134982E83AAF1A6C /* PBXContainerItemProxy */; + targetProxy = C15D9AA8AED77BBF3D7B505CF6A2FC66 /* PBXContainerItemProxy */; }; - B224B58D45056E6780370DBF57447148 /* PBXTargetDependency */ = { + 0BF2D76C74401BDC40A16579FC6FEF9D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesSwift; + target = A979F9D3632CD5F2F7518F9A362CBAE3 /* PromisesSwift */; + targetProxy = 52A4E8BDB5F87607B1BE1915965FA36D /* PBXContainerItemProxy */; + }; + 0E474AE0024AB5B676C0438C54E5A6A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "BoringSSL-GRPC-openssl_grpc"; + target = D0583478A3CCF5BCACD7E8105CF7918E /* BoringSSL-GRPC-openssl_grpc */; + targetProxy = 53A787BFBAB1F89B57E84E5B3B2B8D1B /* PBXContainerItemProxy */; + }; + 104311BA561E13A27C0903E0F0EA6B98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = B6F5CDD549E043E969C2F692BF3F1B82 /* PBXContainerItemProxy */; + }; + 104EA39F05828BE6AC02E4EA021CD751 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = DDC673761205058C94C3EABDBC3BA9E1 /* PBXContainerItemProxy */; + }; + 10E536A6BFA25FB75D64E38345BA24B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 3EF42B49CD7C7CAF6FCA7792376F7EEE /* PBXContainerItemProxy */; + }; + 11C12CC999AA40495A0080783C6A16C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 69CE61B4A8189EA2C0226FA3A3118BE7 /* PBXContainerItemProxy */; + targetProxy = 007DAEFF2AFDF3D2D328D7CA179C82B0 /* PBXContainerItemProxy */; }; - B39CE0A6D9C76C5304B9C50DD4E7B25A /* PBXTargetDependency */ = { + 14318116FCC5BFE5724ED7A51E720940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 315BE77CB66105CFF874D8FD15878540 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 6987DE750B0887D82A7BC89D77D0B099 /* PBXContainerItemProxy */; }; - B59142412C6469B7A53E6B425C5CB945 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreExtension; - target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; - targetProxy = 5006BED11301B7A449E92C54B3C741A3 /* PBXContainerItemProxy */; - }; - B9FE998A440D22D5ABD5CF76F73D172F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = F87DD5050DEA9F73BAD315C3E3780C21 /* PBXContainerItemProxy */; - }; - BAF72B04DD3D9A4939747AF544E54A7B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "FirebaseFirestore-FirebaseFirestore_Privacy"; - target = BE6D8CBE8245C88A1146DE42D80A7531 /* FirebaseFirestore-FirebaseFirestore_Privacy */; - targetProxy = 6960466C8E3AD5F3A1EA163E49D2464D /* PBXContainerItemProxy */; - }; - C7948859CBF4720BF618F417AB47E9F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D8BE4B3FEBCFFC86914A5BB9B117DA8E /* PBXContainerItemProxy */; - }; - C8C9F4000B21D9D74DB8A890FC8101B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LLCycleScrollView; - target = E780888CEA3091CBE97429C8F57B3E8C /* LLCycleScrollView */; - targetProxy = 0387288F696CCA388EDE8C508FC79E28 /* PBXContainerItemProxy */; - }; - CA25194437ACC69C9F5ADD38B769C839 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 497B840628AB7AC34AF133E14BB7C6E8 /* PBXContainerItemProxy */; - }; - CC28D1D679EEA45F53FADBEAC727A77A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseRemoteConfigInterop; - target = 328CC04F43300C6CAB81659260A3799D /* FirebaseRemoteConfigInterop */; - targetProxy = 34BDC0D4A08124E42D62F6C0EB3B8F86 /* PBXContainerItemProxy */; - }; - CC8A0B1153DC49FB606CF0869C7286BC /* PBXTargetDependency */ = { + 15A606BC1C9F56F0D1E19E4C5EF49F63 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = CB5534ABA8429AEAACB88AEA4754A441 /* PBXContainerItemProxy */; + targetProxy = FF055C6000255FDD48D50D1DD5417973 /* PBXContainerItemProxy */; }; - D0F8538011A66EEC40903F51608510DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 0D5C265FC77124CF6B7E9767BA44A06B /* PBXContainerItemProxy */; - }; - D1D277029044B6C1B95BAE5B6BED6196 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 97ACE3618853CDAF9F0A4DB0EDE5682B /* PBXContainerItemProxy */; - }; - D29D89EEFA5BF882771CF51121632597 /* PBXTargetDependency */ = { + 15FFBB6530941B81ED2209D188962F72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = C6C5CEFB0650DA6F04811898EA424DF1 /* PBXContainerItemProxy */; + targetProxy = B99797E7E56022C61447B12EC05DBDF9 /* PBXContainerItemProxy */; }; - D3FB9E2E442513134B4A4B76FBFA6749 /* PBXTargetDependency */ = { + 1952F82919056680B183EC72E63088B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAppCheckInterop; - target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; - targetProxy = F986266289EE61FF233283F426E2C825 /* PBXContainerItemProxy */; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = 1A4A6619D154E3BC91FFF31507F3EC33 /* PBXContainerItemProxy */; }; - D425016BB6A329B4F2F493BBBEF48C67 /* PBXTargetDependency */ = { + 1A5AECC48D28215E51EA009B97A8FE93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseSharedSwift; - target = 94706DD5BBE215339DF893D4434E1084 /* FirebaseSharedSwift */; - targetProxy = DDA47A1BBB2CF86211B7765B8A7F951D /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 928B6277D15A407159B9BC9CBEAB0498 /* PBXContainerItemProxy */; }; - D6F98496304A5945BD7ED8C80AB6FCDF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 659075415DD5B354241134FF92D980A7 /* PBXContainerItemProxy */; - }; - D7C36939C0B374B854168E0259C4CFDF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 143710F4A6C543652B16D42F312A45F3 /* PBXContainerItemProxy */; - }; - D92F63AA69DD9DED9AB76365E194FB70 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++-gRPCCertificates-Cpp"; - target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; - targetProxy = A710EFB759A2BED6507A179FD39C66DE /* PBXContainerItemProxy */; - }; - DA315171CE9E8B8D406FDCAAE48DD71A /* PBXTargetDependency */ = { + 1EB41A6490238D28C769744B6695E459 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Kingfisher; target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = A58971D195CA6C704818AA41FD38A1C2 /* PBXContainerItemProxy */; + targetProxy = 22BE6F0CAE4B967629C854A1FFB6040D /* PBXContainerItemProxy */; }; - DD9A5A99474197358364C668433D7266 /* PBXTargetDependency */ = { + 2080D00B7A7128A936D62375277CE744 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = 5A6D3C0030AC3005B65266689C262673 /* PBXContainerItemProxy */; + }; + 23A3C438D0258BE0FBD085590928ABD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-C++"; + target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; + targetProxy = FCF4A92E8164D1F1905A6DAF0984084B /* PBXContainerItemProxy */; + }; + 241DD96CFEC89425E04DCD6E005C1DF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DeviceKit; target = 4CDD1C6C8885D07092D8EA708AAC0E53 /* DeviceKit */; - targetProxy = 479EC46731F58143106830281E68D016 /* PBXContainerItemProxy */; + targetProxy = 9F93D02D16D2E5715254E1D0A04B3377 /* PBXContainerItemProxy */; }; - E333A39A44E238F69AFE0353F54550B6 /* PBXTargetDependency */ = { + 261F44F235AFC6DCC66498D74542BA3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "FirebaseAuth-FirebaseAuth_Privacy"; - target = D994236C73AC9E758404DF574DAB4A9F /* FirebaseAuth-FirebaseAuth_Privacy */; - targetProxy = 8F57611AB1864E65DFD471B15B097D8C /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = C80A118F87695B75C8879804D0DBD105 /* PBXContainerItemProxy */; }; - E3C265C3B05332FFCB2F770E17DCCC8A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 3F3BA544E86E397F26E2BEFB7E2C1B10 /* PBXContainerItemProxy */; - }; - E4CEA67BB45BEB09A1621C379235BA58 /* PBXTargetDependency */ = { + 26A86CBE562FE40B51A9465D5A6CBF9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 052881E195F68E2DFFA7477B0B04DA7D /* PBXContainerItemProxy */; + targetProxy = 8C56E1E548806D2BD131720897FBCC32 /* PBXContainerItemProxy */; }; - E5CD7B6384F908A8E3ACB0D913CC0EC2 /* PBXTargetDependency */ = { + 2AB14FAB44ABDC68D394041A742B80F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 19B76BC7B24B095D130B3AFBE1172917 /* PBXContainerItemProxy */; + name = LLCycleScrollView; + target = E780888CEA3091CBE97429C8F57B3E8C /* LLCycleScrollView */; + targetProxy = 69BE79D2AEDE5143D599860B1CD56733 /* PBXContainerItemProxy */; }; - E6E0578725B8CD8C5FE594143F2E49A7 /* PBXTargetDependency */ = { + 2AFBE8D0C9F9CDBCCF58B2741F43099F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAuth; - target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; - targetProxy = B8B35CE5B92101E59F9E4E6469EF5BB8 /* PBXContainerItemProxy */; + name = "leveldb-library"; + target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; + targetProxy = 4F05D2E9473B2B208293C43D8295F5C9 /* PBXContainerItemProxy */; }; - E7C861D058C68C240483544FB8F89E28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 5B08B815BC4A8511747ADDFB14E4836D /* PBXContainerItemProxy */; - }; - E8A301893F7F764C89FE355E9DB88022 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = CD07C566E87B7C65D5622D30EF11A8FB /* PBXContainerItemProxy */; - }; - ECA18758B431D886C9C4AF8DF5B031BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = F865E8E45024172A35B1D04EF88DD4F0 /* PBXContainerItemProxy */; - }; - EEA0A3426AAA92A5C7489474CC71FF0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 05121ABCA97442DA0675F8BE491628CF /* PBXContainerItemProxy */; - }; - F0AC3E001CBF43501921DE5B96936875 /* PBXTargetDependency */ = { + 2D832F28A8619D97BFF96030FD317A43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "nanopb-nanopb_Privacy"; target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; - targetProxy = EF1A1CB501988237B9400DA2A5E75737 /* PBXContainerItemProxy */; + targetProxy = EDD45E223B9DE98170B4DE25095AC734 /* PBXContainerItemProxy */; }; - F144079CC26A48A6E9ABF9AB03D90508 /* PBXTargetDependency */ = { + 2FDEBC78E2DDBCF1F9AF5A011A54B2B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 1D8FA3278ACA17E74E9C3C568324AE85 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 1F30DF5CAF071B08DD00E51F9FD2C5DB /* PBXContainerItemProxy */; }; - F1F94852924C842E3CC400660BED361D /* PBXTargetDependency */ = { + 36A8AD61D9395D739C460E69B26E4536 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SVProgressHUD; - target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */; - targetProxy = 7C93181498C8E5F3AF3DF516B89EA069 /* PBXContainerItemProxy */; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = E99B0A3DE1E04EDA08030E49BBDCC81A /* PBXContainerItemProxy */; }; - F9991778FE8D5AFC6469DEA14975D745 /* PBXTargetDependency */ = { + 3B8B15BFD27D28B8489AA2DC8E8CB947 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Kingfisher-Kingfisher"; - target = 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */; - targetProxy = E56F40AFB24749CED2052D22B4769EEF /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 2FACC9ADDF76EEDC18E859DDE9145302 /* PBXContainerItemProxy */; }; - FAA076DC17172C611B2D3A06978C0017 /* PBXTargetDependency */ = { + 3C94521F830BEC42FFE6E2AB2267D457 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAppCheckInterop; + target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; + targetProxy = 9D07AF4A43355A12BBB929E43B9EB235 /* PBXContainerItemProxy */; + }; + 3F3B494BB415E03F7F2371887461467C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 49DA6BB09BDE26ABDB0B6A12AB00BF37 /* PBXContainerItemProxy */; + }; + 425943C6C83C50149BE2656E97BF9618 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-Core"; + target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; + targetProxy = 98D58C0B27863E557231CE7C60E9036F /* PBXContainerItemProxy */; + }; + 43C51D674615A3A7210B0D6938FDC4C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-Core-grpc"; + target = 86CFB548AF424CFBA176390BF5EDCC39 /* gRPC-Core-grpc */; + targetProxy = EA89988B574A219F7BDACD79B721BADD /* PBXContainerItemProxy */; + }; + 43DFDD9C99506F1E11D48D019A06D116 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 8C050FCBE479B43BFA481F5B87F16421 /* PBXContainerItemProxy */; + targetProxy = 571572ED73E1B2B208CD9C07BF553A0F /* PBXContainerItemProxy */; }; - FF031C165A812C24C309DD1E3568A189 /* PBXTargetDependency */ = { + 4826EE51159EB29FEB605FC1748D99B6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FacebookCore; + target = 290D7B2F80A1721A35508C1739C47F56 /* FacebookCore */; + targetProxy = FC6B7DD912E5337A54FAC59800B7FBBC /* PBXContainerItemProxy */; + }; + 489B78788ABED634601D32FDD4B5AFF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 6FCCE68FB0413882EB7F47C0A634B5EE /* PBXContainerItemProxy */; + }; + 48F92F3C39EA6332412A71EA93F0F06A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TZImagePickerController; + target = A96BBB982D62BB807B5BD10774BE2D07 /* TZImagePickerController */; + targetProxy = F1FFBCB8964B7B8589325BEE177478B7 /* PBXContainerItemProxy */; + }; + 4E613BBDAF0498A3621A37213D95B0F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAppCheckInterop; + target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; + targetProxy = 678BA7492D15BB3594826D8928118660 /* PBXContainerItemProxy */; + }; + 4E69D3705FEF938DB8262B48E1C6137D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-Core"; + target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; + targetProxy = F3F0B3C02E9909DAC7E70AC7D80844B0 /* PBXContainerItemProxy */; + }; + 50C4C3CCE1D1CF2961B30ADF5146E7ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = ABCE2D5794611ED75ABF8BD0DE6ECC7A /* PBXContainerItemProxy */; + }; + 5205641FF022D8ACE4668B24FB587B1A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAuth; + target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; + targetProxy = 9EEFBFEA99FAC9E89C3A19E039750412 /* PBXContainerItemProxy */; + }; + 53D4D231E020E7005932E6C048536A9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = E840FEEC5DACFC0CCC555B063B3563B4 /* PBXContainerItemProxy */; + }; + 56931A5E877A81A8AA3888137EFEE8C2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 98F7AC3561EB5FAF4F42A1E7D18F3333 /* PBXContainerItemProxy */; + }; + 56A7C78914A7F821CF5D0EFFB85A834E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 679924E9ECD5EC17C1FE4DFDAF788372 /* PBXContainerItemProxy */; + }; + 56B6700D797FAC2C8297A18D1D1EBB3B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; + target = 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; + targetProxy = E63F9543E61A653CB43C1A246F6647DA /* PBXContainerItemProxy */; + }; + 58EF6ADCD6EB76CD691296CC0E36C3F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy"; + target = 417B25AC44CA1D040034CC1F375CEE36 /* GTMSessionFetcher-GTMSessionFetcher_Core_Privacy */; + targetProxy = A3E2211DDF0C05947E306F4ED1121D7F /* PBXContainerItemProxy */; + }; + 6174EE3927061FE575CB27881A326D6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SVProgressHUD; + target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */; + targetProxy = E04E1BD4A25E804FFFC8AE40F005A2FD /* PBXContainerItemProxy */; + }; + 667750C8D574C4E5F356808F9944F28A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 2BF5956B044BD5E4B9DDEAD20A65646A /* PBXContainerItemProxy */; + }; + 67ACE43DDCCE5DDA32D049E845F77F77 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = C2CEB7DD349E619F5795EFDC3085F560 /* PBXContainerItemProxy */; + }; + 6D4802C1D40A0BA83646140A6026791B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreExtension; + target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; + targetProxy = 02BFD42D2C3D16A323AC849ED4D3D96B /* PBXContainerItemProxy */; + }; + 6E734151E5701D7064E3AC62763F90EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-C++"; + target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; + targetProxy = 9AE8AD08F25174DAA0BB20752D3C7659 /* PBXContainerItemProxy */; + }; + 71DEA34F71E64CC277BDCE0F8C4231AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseCrashlytics-FirebaseCrashlytics_Privacy"; + target = 17CBCC6221F62B870268E935098B7D7D /* FirebaseCrashlytics-FirebaseCrashlytics_Privacy */; + targetProxy = 94257648033F055B17C9865C7E334A6D /* PBXContainerItemProxy */; + }; + 729FB28170CCC38DB80CA3F625971F92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "leveldb-library-leveldb_Privacy"; + target = 8AE1E2A4B497E543C01E68497F7C0901 /* leveldb-library-leveldb_Privacy */; + targetProxy = 8F9E8B221736F8058A9A2BB668BCB464 /* PBXContainerItemProxy */; + }; + 75656B7FA28B06EA15C1F809FF2B808C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "PromisesSwift-Promises_Privacy"; + target = 230F5EE18ECBB227C09ED2C571AFA319 /* PromisesSwift-Promises_Privacy */; + targetProxy = CFA9623549BAA23B4F84288CA84B2AB8 /* PBXContainerItemProxy */; + }; + 75A0AF7A0142CAB10BA64E00D2C4708A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = B455290E19E98CD2A89ABDDE3E4B1FF9 /* PBXContainerItemProxy */; + }; + 77D0596E9E531B0D948C3DD5A1401EF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseFirestoreInternal; + target = DE74CDAFE8319CEDA4F1232DEC00140C /* FirebaseFirestoreInternal */; + targetProxy = 241A32FA406E81A3E2902519680B5ED5 /* PBXContainerItemProxy */; + }; + 77E8342A9A13CDA222A92E899B7427BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseSessions; + target = 3F8EC37C78673149F2B94E8BD9AA8737 /* FirebaseSessions */; + targetProxy = 4BE41F05831B9C1B2C2E175A9C0FAD02 /* PBXContainerItemProxy */; + }; + 7EE829D1900C091E49B073D4E864B09D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = C18BDA206A34AF9895A3D03085D66BA2 /* PBXContainerItemProxy */; + }; + 7FC1D9A9E348DD4B526DE94B9990E2CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseFirestore-FirebaseFirestore_Privacy"; + target = BE6D8CBE8245C88A1146DE42D80A7531 /* FirebaseFirestore-FirebaseFirestore_Privacy */; + targetProxy = A6887CBAAD8A5A63BF6590DD80A9A7CA /* PBXContainerItemProxy */; + }; + 8135A2ADD9B74ABB771CB75324322564 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 2DFA75B2DBB574C58E42EC680BCCB3AA /* PBXContainerItemProxy */; + }; + 81F96C587DDD1C841C688C9696C5CB9F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "BoringSSL-GRPC"; target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 5576135CC2A564FAE3507D12B7EBF10C /* PBXContainerItemProxy */; + targetProxy = 1A959856F64B035BB71A5232B6BCC288 /* PBXContainerItemProxy */; + }; + 833D4A66D8ACE04D0EA81DA6DB997126 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesSwift; + target = A979F9D3632CD5F2F7518F9A362CBAE3 /* PromisesSwift */; + targetProxy = 80F98062ECB00E3186B04E10B4066CE7 /* PBXContainerItemProxy */; + }; + 83CD765EDA673EE96A340F84003F6B63 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseSessions; + target = 3F8EC37C78673149F2B94E8BD9AA8737 /* FirebaseSessions */; + targetProxy = 78436F676E971512545CBEE1FFCB3408 /* PBXContainerItemProxy */; + }; + 84FDDFBC400522612E8618A5B9E49F3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Kingfisher-Kingfisher"; + target = 9828BBC09E9FB1238624113D7456E59E /* Kingfisher-Kingfisher */; + targetProxy = FC900468C182A58136F5D4F57C76F8D6 /* PBXContainerItemProxy */; + }; + 880404C29E51BF7B6D74FE525084E84C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 9263B279260B7E769076B40281C1F5F5 /* PBXContainerItemProxy */; + }; + 889AB5CB5CAE4677013DC8E394BA135F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RecaptchaInterop; + target = 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */; + targetProxy = A68ABE0581D07BEE65D959E52AFBC96B /* PBXContainerItemProxy */; + }; + 8CCB6B1DFCDDD551D55E727B62DD1008 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 8B46DE04623C69ABE9735F682659D2AC /* PBXContainerItemProxy */; + }; + 8D7BA9570088F5C5D1C5FA3D5DE7198D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = A21CE4772C213C3600BB227115A1FA4B /* PBXContainerItemProxy */; + }; + 8E7BB4F34B1E4BDFE0662028AD0D0573 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 981091D00A42B8A8AC35A70503369C8F /* PBXContainerItemProxy */; + }; + 90B41C4EE2C4B99A98E68C1ECE65DCD2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 4B88336D87DE06F0487302E6D07B73D9 /* PBXContainerItemProxy */; + }; + 90F9672C67E727B454A1505EDAB554AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseSharedSwift; + target = 94706DD5BBE215339DF893D4434E1084 /* FirebaseSharedSwift */; + targetProxy = ED8298FA380BEE3738248A942BC89135 /* PBXContainerItemProxy */; + }; + 91A632FA8E9928F3274D1F735D40E20D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 6288659B5E1D590CE00FD870DDD1699C /* PBXContainerItemProxy */; + }; + 91C2B85774B2CAB5BEE8E8FA7CA36112 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKCoreKit; + target = 28907903AF6DD0AD321D92CD660E7E23 /* FBSDKCoreKit */; + targetProxy = DAF2EBA2DA0EEB094A5AB6AC0327EC8A /* PBXContainerItemProxy */; + }; + 927E896DD4FE4C66E8DAAD222B35894D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 3C1DC2C4E4850F9D54746A0E2E5A3DA7 /* PBXContainerItemProxy */; + }; + 99EDEA4B26BAF60EC791C52B05379FBE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 1AAE6494097FE611488AA148038DF73E /* PBXContainerItemProxy */; + }; + 9A3F1A7103E57377591164AE0676615D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseFirestore; + target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; + targetProxy = 2FB025240602E7C83C99BCA59485A5BA /* PBXContainerItemProxy */; + }; + 9C23B4074C80663B47B678089EA2AFA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseRemoteConfigInterop; + target = 328CC04F43300C6CAB81659260A3799D /* FirebaseRemoteConfigInterop */; + targetProxy = 272C630CF1B44D684AA19E882BB5F04F /* PBXContainerItemProxy */; + }; + 9DAB54CAEF872776D78E6E7ACC01390D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "PromisesObjC-FBLPromises_Privacy"; + target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; + targetProxy = ED85BFBB0F29CB494BA82B31882E1A8A /* PBXContainerItemProxy */; + }; + 9EBB9FD63B859D771D08478B329C6A52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 0499C20689774183B54F5E1B3C1FCD43 /* PBXContainerItemProxy */; + }; + A18000430D209480AEACE5888A2E342E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAppCheckInterop; + target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; + targetProxy = 8BAC2358DE1488559CC5CAEC4599AB03 /* PBXContainerItemProxy */; + }; + A271C3114F2583EFD35438C4EE7BBF94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 82BB36AF1DA4E7BE28388125C9AF49C6 /* PBXContainerItemProxy */; + }; + A64293F04D9FE98BEC6FCE5053BF2A2C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKCoreKit; + target = 28907903AF6DD0AD321D92CD660E7E23 /* FBSDKCoreKit */; + targetProxy = 0926BA604218CE6BC32CDBF7B560821A /* PBXContainerItemProxy */; + }; + A707570064882E094B80745C3A9397D3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = EC8D3D4B9E1DCB6D7C4126AF53DA2A89 /* PBXContainerItemProxy */; + }; + A95F5EC55B7628A780A7DFDD0A308C36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 07D787F826DFD764CDFAD4FE9F66EA3D /* PBXContainerItemProxy */; + }; + AEE6A21CA84A37FAE0F149E8749B5DA4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseInstallations-FirebaseInstallations_Privacy"; + target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; + targetProxy = E2149B7D93C05BBE9D204DE6837929B6 /* PBXContainerItemProxy */; + }; + B1A40E55A392CBC85672F3A7B1DB4FA8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 1122A4976BB3CA61DBC5DE9E9296CBE5 /* PBXContainerItemProxy */; + }; + B22F8FCF26754C5681F4F6D8D1B5C607 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GoogleDataTransport-GoogleDataTransport_Privacy"; + target = DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */; + targetProxy = A44BEAB9069811F3BFFC7378BE256364 /* PBXContainerItemProxy */; + }; + B2A7044998D155D50ADADC695B7C052E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy"; + target = 591296C07DD97B6B624758F2DAF981DE /* FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy */; + targetProxy = 4E5D7BDE9DC157E2FB4EE9400F986A07 /* PBXContainerItemProxy */; + }; + B496D606BF3ADF467CFA81CB4474E5AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 9C80ED5684BE9D197B9A48E1807E3FF1 /* PBXContainerItemProxy */; + }; + BD2754DA25C2062BBD6CE7C51DDDA886 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = AB04E834F2069C9E802BDA0CC8118689 /* PBXContainerItemProxy */; + }; + C556117ECB730040C9AE07D69C9A4753 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 8D58645204D86936BB6854B02CBEEC29 /* PBXContainerItemProxy */; + }; + C83CC16CF7E91F788DE234BDC35F53FC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 88CDCDD6913E83AFCF02D1CFD6C2EE12 /* PBXContainerItemProxy */; + }; + C894A5DB5EE6C68CBE68C825A30630D6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 50AC5725C300446F953B715A28E497F6 /* PBXContainerItemProxy */; + }; + C93B11CAD072E5D6E3F8804B3122E6F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseFirestoreInternal; + target = DE74CDAFE8319CEDA4F1232DEC00140C /* FirebaseFirestoreInternal */; + targetProxy = EAE076CD68C13C89D628DAA6C58799F2 /* PBXContainerItemProxy */; + }; + C99C432A3C53029F33B878BD1A747C65 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 8CEC259ECB17A89E8C9FE1C42675779E /* PBXContainerItemProxy */; + }; + CA54B4B64053547FE0801D1D6682C4F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseRemoteConfigInterop; + target = 328CC04F43300C6CAB81659260A3799D /* FirebaseRemoteConfigInterop */; + targetProxy = CE0EDB9753F702505FF524CDC294B890 /* PBXContainerItemProxy */; + }; + CB18986C421975195F01B4785EB168DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GoogleUtilities-GoogleUtilities_Privacy"; + target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; + targetProxy = BE5A192A6A39EAA5811F45C1BA13E323 /* PBXContainerItemProxy */; + }; + CD56CF9009C6FAC113FD3C2651ED5703 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = EC150F83A2E6294075E8DE386761FDEB /* PBXContainerItemProxy */; + }; + CDC151846016644CE2A21F4AF27B4EE8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "leveldb-library"; + target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; + targetProxy = A163E8FA293CBCB44AAC9B685E0631CC /* PBXContainerItemProxy */; + }; + D067F7C763B396200627579A57680A3E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = EA52F184DA03DA1E094AF3E2261434E8 /* PBXContainerItemProxy */; + }; + D0ECCE9F8046C9B933B5D917A4EE113E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = A6491D0788960276ECD59F97F7D421CA /* PBXContainerItemProxy */; + }; + D1B9BAE4EE4A96321F8B6B5B75888019 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 5E5A5591D5CA0D1C06E2730AD3937E15 /* PBXContainerItemProxy */; + }; + D38B6DA2D417F9F0F8A81E83432C3352 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = abseil; + target = 73CDC3D182DB953135F62609681B443D /* abseil */; + targetProxy = 7B8638FD1CF1B75D458E3A98CBC28A2D /* PBXContainerItemProxy */; + }; + D4E8513DAFECA5DCBA7F67DBC75BB7A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "BoringSSL-GRPC"; + target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; + targetProxy = C7608D38A2CF8CEA5F357327E60F3FFE /* PBXContainerItemProxy */; + }; + D7350F30667B5DB58D979843516C268E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = D20B71511B716542766D9F91C56D970A /* PBXContainerItemProxy */; + }; + D76ED8AC37ADEFA133FC67DE3927E1A5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-Core"; + target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; + targetProxy = A344C9212F85B711310A6C35105BD1D6 /* PBXContainerItemProxy */; + }; + D8F3339CC20DD9DAB450231F3269A806 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreExtension; + target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; + targetProxy = 4A9F319A5FD6B1DD93C572E1D7745E1B /* PBXContainerItemProxy */; + }; + D9001133DECE2720C7DB21AB978B70FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 2A2D7BD94B488321475A93199EEEA9E5 /* PBXContainerItemProxy */; + }; + DCA8FCC3EE15AB994FE35A05DE37A7F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseAuth-FirebaseAuth_Privacy"; + target = D994236C73AC9E758404DF574DAB4A9F /* FirebaseAuth-FirebaseAuth_Privacy */; + targetProxy = A9D0E0E2EFC9CD9A98863F9ABBDEB797 /* PBXContainerItemProxy */; + }; + E84E46314846DBD588989F8BE365BE88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseSharedSwift; + target = 94706DD5BBE215339DF893D4434E1084 /* FirebaseSharedSwift */; + targetProxy = D8C6BF51651387A315C5C84BA32B2689 /* PBXContainerItemProxy */; + }; + EA117D08216E1C8F93DC734F73D8BA08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 53AFBAC2CD64F1E17BBFF89DB7B8B583 /* PBXContainerItemProxy */; + }; + EFC10B1C80CC96A984648DC102037DFD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "gRPC-C++-gRPCCertificates-Cpp"; + target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; + targetProxy = B545A65D0CB8D28380B96FDC4FC31AAA /* PBXContainerItemProxy */; + }; + F2E40727E544E87FC9699BD7E89201DE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseCoreExtension-FirebaseCoreExtension_Privacy"; + target = 9C4575D64B2B6264CF6AB60FB03302AA /* FirebaseCoreExtension-FirebaseCoreExtension_Privacy */; + targetProxy = 108552C9186752B65BEB2DA0B49DD90F /* PBXContainerItemProxy */; + }; + FB678C813CC8FE4ED3D934F71BC4C9CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = BD750E8043C6D0E18C2465DBAC707ACA /* PBXContainerItemProxy */; + }; + FE15489BA811E1F9F7FB68965612A284 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreExtension; + target = FE1DE31D91C32501251AE9687CDC2E0F /* FirebaseCoreExtension */; + targetProxy = F6140AFB72EB79CD17DB8A778B509CAA /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 024031AD5F0BEEFD3955729AD2758F80 /* Release */ = { + 000322C61BA8C52C0A89069BBFA169BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB73F358A255FAF683B0AB3778C04A85 /* leveldb-library.release.xcconfig */; + baseConfigurationReference = AACF9ABB7D784A3BE2D17B3347664429 /* FirebaseCrashlytics.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCrashlytics"; + IBSC_MODULE = FirebaseCrashlytics; + INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseCrashlytics_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 0051F0F155CDCF5631A299830B245578 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 29FEF5A146E61B5122404456B38232B1 /* GoogleAppMeasurement.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 01A745664FB826BDDCE81B0E246AC406 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 449BCEFEBBB55A94C42C67FBDD6A0162 /* FacebookCore.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FacebookCore/FacebookCore-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FacebookCore/FacebookCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FacebookCore/FacebookCore.modulemap"; + PRODUCT_MODULE_NAME = FacebookCore; + PRODUCT_NAME = FacebookCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 047831FCE743E6BA139D96D2009A7359 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DD4FB287E52873B3888E95FCFFE03AC7 /* FirebaseCoreInternal.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 09782C25F9D92DADD49F28B58383B576 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D325D7A4BA84E404B44095F692EDA6A1 /* gRPC-C++.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; + IBSC_MODULE = grpcpp; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-grpcpp-gRPC-C++-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = grpcpp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 0B7A7F02FB7B2DF8A2B312139FE1325B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57AAA22325B0CC57DF34FE43E96591AB /* leveldb-library.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/leveldb-library"; @@ -43057,95 +44440,9 @@ }; name = Release; }; - 036DB9CDBA9D3103765D56B31E311CCB /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9678B0F688BE12902D2BA0B425F5D4DB /* FirebaseFirestoreInternal.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestoreInternal; - PRODUCT_NAME = FirebaseFirestoreInternal; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 0655E87BE87E4DF55002411C765A6EA9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 835EF8BCF96ECF02F37DA8154F83C142 /* FirebaseInstallations.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 0ABCB10EB7C81B2343DC1B16A3725FD8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 23E306AC17CA04FC2B1ABC7FFCC26E28 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 0BBFCD1D8E42A2D2478FD3A9AFBE0D92 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C65656A249406025017EA4A3EAC896D /* FirebaseAuth.debug.xcconfig */; + baseConfigurationReference = A2E428DCD6D80108985ED08D7FD5C04A /* FirebaseAuth.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -43177,684 +44474,7 @@ }; name = Debug; }; - 0F27ACE1514CAA9AD175B8D430CFDA1F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 034BFBB087CC0155EC63BEDDEF3277AD /* Kingfisher.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; - IBSC_MODULE = Kingfisher; - INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = Kingfisher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 11D0F9A43170B469A47F612B043A018D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ED31387A76648EF24078ADE03325A530 /* PromisesObjC.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 1862E1ACAD30F4F6CF94D55936AD5D0E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C0384944EBDA7C4885CD043C0C3DC1B7 /* GTMSessionFetcher.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher"; - IBSC_MODULE = GTMSessionFetcher; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = GTMSessionFetcher_Core_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 1941690780A83236F00580479567AC84 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7D7FD3C02C27E46FD6E315F850294B64 /* FirebaseCoreExtension.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreExtension; - PRODUCT_NAME = FirebaseCoreExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 195F1AC8F6BD95FEFB9983CAC195FCAE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 034BFBB087CC0155EC63BEDDEF3277AD /* Kingfisher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 1D2A000868FAD0AC263B2D8E1E312028 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C165BD99C1A18E74FB93AA420CB08357 /* leveldb-library.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 1F311F1DAE1B45068F194F8A03CBB9AE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 835EF8BCF96ECF02F37DA8154F83C142 /* FirebaseInstallations.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 253FFAD229E4F9574B60590014994A0E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3915E23109896CF59EBE9C6086D5C811 /* RecaptchaInterop.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/RecaptchaInterop/RecaptchaInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop.modulemap"; - PRODUCT_MODULE_NAME = RecaptchaInterop; - PRODUCT_NAME = RecaptchaInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 279FF4650E4BC1B261FECED6BE21B28A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6B664C5392BE1DABD8D28D72E8CF4559 /* GoogleDataTransport.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 28C581A13502E556AEF577057C2EEBFA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BD585FE1C41649BE87F51BA57352103E /* FirebaseCrashlytics.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 299D8AE75BC4D9A49F6CDD5F78854031 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 38C9F31EE58608016714822769049C89 /* LLCycleScrollView.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/LLCycleScrollView/LLCycleScrollView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/LLCycleScrollView/LLCycleScrollView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/LLCycleScrollView/LLCycleScrollView.modulemap"; - PRODUCT_MODULE_NAME = LLCycleScrollView; - PRODUCT_NAME = LLCycleScrollView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2EE440E26E178764F57D77D272B5E0AA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB73F358A255FAF683B0AB3778C04A85 /* leveldb-library.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2FE510E3ED4B8EDC375E1C3B412DA16F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C0384944EBDA7C4885CD043C0C3DC1B7 /* GTMSessionFetcher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 32E86B5A72D5FCE0F1A05959106268B6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A31A3B3CAA791361D6418CBDC75EAB66 /* PromisesObjC.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 33D932AAE5371A9DB2FEA2E228726982 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 05D31CA8002EABF11F6706D2A32DF1E1 /* FirebaseCoreExtension.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension"; - IBSC_MODULE = FirebaseCoreExtension; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCoreExtension_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 39556DAEA3006FEDCAAEB639D4E662EA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AE99891C16160E2328E3142E863D0354 /* DeviceKit.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/DeviceKit/DeviceKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DeviceKit/DeviceKit-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/DeviceKit/DeviceKit.modulemap"; - PRODUCT_MODULE_NAME = DeviceKit; - PRODUCT_NAME = DeviceKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 3A9EA29ED6921878E3F25F2AEACA9FB3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7020920880386C6305A37CCE707C3A44 /* SVProgressHUD.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; - PRODUCT_MODULE_NAME = SVProgressHUD; - PRODUCT_NAME = SVProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 3CC9B76DBDA007E8025C3CDC7A0A254F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DAA3FFAD0D51A937A7B710BA1E000A63 /* FirebaseAppCheckInterop.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAppCheckInterop; - PRODUCT_NAME = FirebaseAppCheckInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 3D2A54EB0544F46D788540DCCAB4C19F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CAFF4A4C8CC10BC81C7615FC00F21036 /* FirebaseFirestoreInternal.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestoreInternal; - PRODUCT_NAME = FirebaseFirestoreInternal; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 3E42C70DBCB1166D8DCC04ABD77CFD15 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9F32CEB0AD50C1710F57EB1F311E42B5 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 3E99EEAC2F939DDA9B429208C6968F97 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B3FBEC2A5EC429C74513E13DDC3BAD97 /* FirebaseRemoteConfigInterop.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.modulemap"; - PRODUCT_MODULE_NAME = FirebaseRemoteConfigInterop; - PRODUCT_NAME = FirebaseRemoteConfigInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 3F10CD1553EBCB5AD5C6D2ADE8F19C43 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B96E8E395524C881AFCB509C8643BC45 /* nanopb.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 411E9F18AB9386AA6E5B2313E1CF74C9 /* Release */ = { + 0E07BDA57D01C8301EBBDA5A7F6E10F4 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = AEE6891957155FD370986017B47C8050 /* Pods-SwiftProject.release.xcconfig */; buildSettings = { @@ -43892,60 +44512,77 @@ }; name = Release; }; - 4748600BB7EC3B6B9984D9D47829DA39 /* Release */ = { + 1022431CE1803F643D4085024A4BF613 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DD0B7726C4CDB8FF0A2899DB2A58E0A /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 7784731F1F8548D660D46E656C466949 /* GoogleDataTransport.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 492EA4E3F7D2FDD70EA4D2292824C992 /* Debug */ = { + 10E279134993C1C59A617E22F784120E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E569B4C4A9A9F1E4CC835CBD154F9C57 /* GTMSessionFetcher.debug.xcconfig */; + baseConfigurationReference = 6B427E20119DD4322D291935894567E3 /* FirebaseFirestoreInternal.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher"; - IBSC_MODULE = GTMSessionFetcher; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = GTMSessionFetcher_Core_Privacy; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseFirestoreInternal; + PRODUCT_NAME = FirebaseFirestoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 4C74FE0915B1BB0D1A2F055C673EE150 /* Debug */ = { + 12FE220F1974424DFF1F6E0704C3F64F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F3DB6386BD1FE339AE0866771144085 /* PromisesSwift.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesSwift"; - IBSC_MODULE = Promises; - INFOPLIST_FILE = "Target Support Files/PromisesSwift/ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = Promises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 4DDC2E7CCFBDDFA509BC0475429A188D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E569B4C4A9A9F1E4CC835CBD154F9C57 /* GTMSessionFetcher.debug.xcconfig */; + baseConfigurationReference = DEED3761D2BAE708BE55132689FDC81F /* GTMSessionFetcher.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -43977,43 +44614,97 @@ }; name = Debug; }; - 52729632D9CB8B25DD5154FA017F76A9 /* Release */ = { + 16B8D18CC74355088AF6C2919287E2AC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA76251189324B7B8AD980E3E8CC1D0F /* gRPC-C++.release.xcconfig */; + baseConfigurationReference = 57AAA22325B0CC57DF34FE43E96591AB /* leveldb-library.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; + PRODUCT_MODULE_NAME = leveldb; + PRODUCT_NAME = leveldb; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 184393A849C2D77086BC2FACA5892231 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91F4D41DDDB50811970FD5ACF0E8509F /* gRPC-C++.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-grpcpp-gRPC-C++-Info.plist"; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = grpcpp; + PRODUCT_NAME = "gRPCCertificates-Cpp"; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 5521910CC97F16A57DD2E2BC5A7080C6 /* Debug */ = { + 18EBA0A88DC7071DB55199216D1AE050 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4350220E42E1C777E39D127161265A6A /* nanopb.debug.xcconfig */; + baseConfigurationReference = 078F18065CABDA1A78A7730B77EFB1F0 /* abseil.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = nanopb_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; + PRODUCT_MODULE_NAME = absl; + PRODUCT_NAME = absl; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 554E2230045B501FA4B5F65E8CE20EF2 /* Release */ = { + 1941690780A83236F00580479567AC84 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F7718AAE05ADAC25526FBB92053F236A /* FirebaseAuth.release.xcconfig */; + baseConfigurationReference = 711D0DCA561CD1F3D29C367B8A1FBCEF /* FirebaseCoreExtension.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44024,7 +44715,78 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreExtension; + PRODUCT_NAME = FirebaseCoreExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 195F1AC8F6BD95FEFB9983CAC195FCAE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CD7B126596E51A56A5655760BF9C137C /* Kingfisher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 1A7C6D4669ED3B5C3F918333153B78A7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7A51C83E358F3C69E17CE2083CE108BB /* FirebaseSessions.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseSessions/FirebaseSessions-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -44032,9 +44794,112 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAuth; - PRODUCT_NAME = FirebaseAuth; + MODULEMAP_FILE = "Target Support Files/FirebaseSessions/FirebaseSessions.modulemap"; + PRODUCT_MODULE_NAME = FirebaseSessions; + PRODUCT_NAME = FirebaseSessions; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 1EE109A140FCA984B10CA4ECD2991E67 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57B06644B6731D11257AE4BFF125B918 /* gRPC-Core.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; + PRODUCT_MODULE_NAME = grpc; + PRODUCT_NAME = grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 21F9487A48C187703CF4F98E623ADD63 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D325D7A4BA84E404B44095F692EDA6A1 /* gRPC-C++.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; + IBSC_MODULE = grpcpp; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = "gRPCCertificates-Cpp"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 23441C55318D18F1DB83E7E221F0AA7A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4210FF2774BA13285DC607DD5F7025C1 /* Kingfisher.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; + IBSC_MODULE = Kingfisher; + INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = Kingfisher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 25E7F665582F5A4F96A4A5F2DFEFB1A2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5466E3A8BC8214B4740BE37EA71E42C2 /* FirebaseCore.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -44046,26 +44911,9 @@ }; name = Release; }; - 55E1E671FCAD69DA27E9A07536353E5C /* Debug */ = { + 2791F8BD4BB24B25221DE9B918FC4F27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 465D0A78400008BC50ABBD8A5A3E1768 /* BoringSSL-GRPC.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BoringSSL-GRPC"; - IBSC_MODULE = openssl_grpc; - INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = openssl_grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 571888A668C2CE7779FD88BE17FAC5DD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 459EC7C60D6E976732F9A37FE0ADA085 /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = 27089548B4EA5E4926A5F3360072B0CA /* leveldb-library.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44076,18 +44924,52 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; + MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; + PRODUCT_MODULE_NAME = leveldb; + PRODUCT_NAME = leveldb; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 28C581A13502E556AEF577057C2EEBFA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 36412ED05FFE4DF5F6B43726E12F8155 /* FirebaseCrashlytics.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -44099,16 +44981,87 @@ }; name = Release; }; - 58EBA8DD7061BE3F36B59B58FAF63903 /* Debug */ = { + 299D8AE75BC4D9A49F6CDD5F78854031 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAFF4A4C8CC10BC81C7615FC00F21036 /* FirebaseFirestoreInternal.debug.xcconfig */; + baseConfigurationReference = 3F8EA34A163AD81A59A41958C171CA5A /* LLCycleScrollView.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/LLCycleScrollView/LLCycleScrollView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/LLCycleScrollView/LLCycleScrollView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/LLCycleScrollView/LLCycleScrollView.modulemap"; + PRODUCT_MODULE_NAME = LLCycleScrollView; + PRODUCT_NAME = LLCycleScrollView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 305B3BC1135128745675304077911102 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 652CACA9E0A64E6B528566379CF8E573 /* FBSDKCoreKit.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; + PRODUCT_MODULE_NAME = FBSDKCoreKit; + PRODUCT_NAME = FBSDKCoreKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 311F2C00C2D40322B01FB8CC7C817BB1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 532EBF1E89FD48FD89B1F40D80306B39 /* GoogleUtilities.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestoreInternal"; - IBSC_MODULE = FirebaseFirestoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseFirestoreInternal_Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -44116,34 +45069,16 @@ }; name = Debug; }; - 5BA1186032D2981C9B7A0D45FEF5317D /* Release */ = { + 34E610B38F606DB49FD39D62867ECCE7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 606D406A1A0DA24861DFCF1F13B1D0C1 /* Firebase.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5E57FA7115F5AFE8EE9F9D2B3A550527 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 459EC7C60D6E976732F9A37FE0ADA085 /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = BF613118CD1E5060C1629E985255E81C /* FirebaseInstallations.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; + PRODUCT_NAME = FirebaseInstallations_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -44151,9 +45086,166 @@ }; name = Release; }; - 5FC624356C4D32F023156428799AE747 /* Release */ = { + 39556DAEA3006FEDCAAEB639D4E662EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D9D3035F6E68814016A62851B40BEA1 /* RecaptchaInterop.release.xcconfig */; + baseConfigurationReference = BEEA1D91F1A5CECBA15AAB31C6A2900D /* DeviceKit.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/DeviceKit/DeviceKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DeviceKit/DeviceKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/DeviceKit/DeviceKit.modulemap"; + PRODUCT_MODULE_NAME = DeviceKit; + PRODUCT_NAME = DeviceKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 398C5D4F3D3C0C974C8FCD0636111610 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 289DDD66A0FB7A851AF7125BFF451F07 /* FirebaseSharedSwift.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift.modulemap"; + PRODUCT_MODULE_NAME = FirebaseSharedSwift; + PRODUCT_NAME = FirebaseSharedSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 3A9EA29ED6921878E3F25F2AEACA9FB3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 89F86473868C797CABE592885918FEAB /* SVProgressHUD.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; + PRODUCT_MODULE_NAME = SVProgressHUD; + PRODUCT_NAME = SVProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 3CC9B76DBDA007E8025C3CDC7A0A254F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D6F26AC47D62D6CEB0618B625C880B6C /* FirebaseAppCheckInterop.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop.modulemap"; + PRODUCT_MODULE_NAME = FirebaseAppCheckInterop; + PRODUCT_NAME = FirebaseAppCheckInterop; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 40D0672D289F5B23FA515FF20C9B4AD9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 65A71AD57C0B380BD0CA797F7C7EF625 /* FirebaseInstallations.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = FirebaseInstallations_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 43352375B4D6DFDF9E2B4B92742FCD36 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EE067C452AFD8AF29794BBB5E46E466C /* RecaptchaInterop.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44187,9 +45279,198 @@ }; name = Release; }; - 610BC9A0317224B46CA2FFC7DE2231B0 /* Release */ = { + 4369BDB20B42196E9AB58B45363E15EC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49F68603B305495ECAD879EAF317031F /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = 047F2F26E95C554D810EE3F9CF42D0AA /* FirebaseSharedSwift.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift.modulemap"; + PRODUCT_MODULE_NAME = FirebaseSharedSwift; + PRODUCT_NAME = FirebaseSharedSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 460F3341F0BB6AF0A60CDE31E12C567A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6B427E20119DD4322D291935894567E3 /* FirebaseFirestoreInternal.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestoreInternal"; + IBSC_MODULE = FirebaseFirestoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseFirestoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 46819EFE74FB838DF861B59F7C82F05B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CD7B126596E51A56A5655760BF9C137C /* Kingfisher.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; + IBSC_MODULE = Kingfisher; + INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = Kingfisher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 4B3C87484CB35CD54467A7A4465107CA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AF1B01723B08D81E5ADA6501A1821AA /* GTMSessionFetcher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; + PRODUCT_MODULE_NAME = GTMSessionFetcher; + PRODUCT_NAME = GTMSessionFetcher; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 4BA5B47E46B90CE3AE05C250773714E1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 65A71AD57C0B380BD0CA797F7C7EF625 /* FirebaseInstallations.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 5201BEB13D5C688DF6682EAC3C2AE543 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FDF59A112E9673E986B49ED58979DBB0 /* RecaptchaInterop.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RecaptchaInterop/RecaptchaInterop-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop.modulemap"; + PRODUCT_MODULE_NAME = RecaptchaInterop; + PRODUCT_NAME = RecaptchaInterop; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 529C38AAB140F31DD02241D578F7B6D4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BA7605573FCFBE1DB3AB972C82729175 /* nanopb.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 531B0054E2649735458E512331ED23DC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 651295158DB48CF37B1047E9E2DB9A11 /* FirebaseAnalytics.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -44201,47 +45482,47 @@ ); SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 61396787FBD3DF2A909EEF6042A9C22A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6B664C5392BE1DABD8D28D72E8CF4559 /* GoogleDataTransport.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 61CC1FE424235275B02BB451D8AF9457 /* Release */ = { + 554E2230045B501FA4B5F65E8CE20EF2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F7718AAE05ADAC25526FBB92053F236A /* FirebaseAuth.release.xcconfig */; + baseConfigurationReference = E030B2E554D383A6EA8184768CF90DE0 /* FirebaseAuth.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth"; - IBSC_MODULE = FirebaseAuth; - INFOPLIST_FILE = "Target Support Files/FirebaseAuth/ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseAuth_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth.modulemap"; + PRODUCT_MODULE_NAME = FirebaseAuth; + PRODUCT_NAME = FirebaseAuth; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 61D56E9FD30061DCA39F81575EC07110 /* Release */ = { + 555B000626B82D4697A8796B4CB93EBE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F635222090DD4783E8BCDB96A30240F /* FirebaseSessions.release.xcconfig */; + baseConfigurationReference = 0F12E27AB1A78246C44D05127349E572 /* FirebaseSessions.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44274,112 +45555,9 @@ }; name = Release; }; - 62449A909A55E7339A8FC5913BE668CD /* Release */ = { + 5B507124A2F5BE72DA161E21B3E36365 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B15D382C18A7B0A563FEDFE6362627A7 /* abseil.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; - PRODUCT_MODULE_NAME = absl; - PRODUCT_NAME = absl; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 62973E62DB47007AB40665F337A14616 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7D7FD3C02C27E46FD6E315F850294B64 /* FirebaseCoreExtension.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension"; - IBSC_MODULE = FirebaseCoreExtension; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCoreExtension_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 6298244DBC105F19C8FB90B9D8C9DE01 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 09D9CC526173F5397422CB9D38B3E587 /* abseil.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; - PRODUCT_MODULE_NAME = absl; - PRODUCT_NAME = absl; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 65707237A782BFB220CA8E2A154862A6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CA76251189324B7B8AD980E3E8CC1D0F /* gRPC-C++.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; - IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 6775B905556B2121644BF3FD5F97D3BB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4C65656A249406025017EA4A3EAC896D /* FirebaseAuth.debug.xcconfig */; + baseConfigurationReference = A2E428DCD6D80108985ED08D7FD5C04A /* FirebaseAuth.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth"; @@ -44394,9 +45572,61 @@ }; name = Debug; }; - 6A42C389ED9E280588DC475D5D90E005 /* Debug */ = { + 5BA1186032D2981C9B7A0D45FEF5317D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F3DB6386BD1FE339AE0866771144085 /* PromisesSwift.debug.xcconfig */; + baseConfigurationReference = 7EC19B517411CB29D67448493D5FC820 /* Firebase.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 5DF0571A064D33B4A99B2048064F0971 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57B06644B6731D11257AE4BFF125B918 /* gRPC-Core.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-Core"; + IBSC_MODULE = grpc; + INFOPLIST_FILE = "Target Support Files/gRPC-Core/ResourceBundle-grpc-gRPC-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 5E476D55A7940D376F30D3AA43CF6D10 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 36412ED05FFE4DF5F6B43726E12F8155 /* FirebaseCrashlytics.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCrashlytics"; + IBSC_MODULE = FirebaseCrashlytics; + INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseCrashlytics_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 5E9BAA4898E38A23DFC86786D4526E52 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BA7605573FCFBE1DB3AB972C82729175 /* nanopb.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -44406,8 +45636,8 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/PromisesSwift/PromisesSwift-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/PromisesSwift/PromisesSwift-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -44415,22 +45645,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesSwift/PromisesSwift.modulemap"; - PRODUCT_MODULE_NAME = Promises; - PRODUCT_NAME = Promises; + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.2; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 6AAAFBB91DB39DBAB92801191A64C955 /* Debug */ = { + 658119EF21193D8847631AB6E2C4C18E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29228061DD9E6CEF381246A4CEEA0248 /* gRPC-C++.debug.xcconfig */; + baseConfigurationReference = B26213FC6433C650BA3DC049A1C546C9 /* FirebaseCore.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44441,8 +45672,7 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -44450,9 +45680,59 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; - PRODUCT_MODULE_NAME = grpcpp; - PRODUCT_NAME = grpcpp; + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 67281D2263DD8C99D956DE9B5B8D1FCD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 75461CF43948C9EF6F0EA41ED597B178 /* FirebaseCoreInternal.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 687416B4B2E4523C66B9C393ABE03462 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 532EBF1E89FD48FD89B1F40D80306B39 /* GoogleUtilities.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -44463,9 +45743,96 @@ }; name = Debug; }; + 69013B7E82C9768CEB42972D7C50E698 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90CB2C8610D6807D82893381C51AB9E5 /* gRPC-Core.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; + PRODUCT_MODULE_NAME = grpc; + PRODUCT_NAME = grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 6AB3C604BE9657C25DC8B0A7E23362D5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AABCFB842799DDD3FD8D7097DDBA7935 /* nanopb.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 6CDA9B167DB23830E175B490F39F67C5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1378A528AC2A6B2572E220216F53F9FB /* PromisesSwift.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesSwift"; + IBSC_MODULE = Promises; + INFOPLIST_FILE = "Target Support Files/PromisesSwift/ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = Promises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 701510D142585B578B292F3756FF2DF6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 451F7D8A95D2AC2488A13DEA96B29516 /* LLCycleScrollView.debug.xcconfig */; + baseConfigurationReference = 17FF6350E76680902491EA7683A56E1E /* LLCycleScrollView.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44500,7 +45867,7 @@ }; 7156FC049D3E84B0932FF67EA98A098D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B1D272591C32A4B39E06C93CA7546827 /* BoringSSL-GRPC.release.xcconfig */; + baseConfigurationReference = 1C68A2DAFE27B53B89DAF433F1FDD1BF /* BoringSSL-GRPC.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44534,51 +45901,50 @@ }; name = Release; }; - 7B96A6AF1032EF0BAD3508F419B220DB /* Debug */ = { + 71EA2ABE76AA43AF0C1BB97F0FA0B7D3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 465D0A78400008BC50ABBD8A5A3E1768 /* BoringSSL-GRPC.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.modulemap"; - PRODUCT_MODULE_NAME = openssl_grpc; - PRODUCT_NAME = openssl_grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 7FACE4F302CADF33EF927B60886CE3C9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 29228061DD9E6CEF381246A4CEEA0248 /* gRPC-C++.debug.xcconfig */; + baseConfigurationReference = 35EA6C8E9C0E95CCE50CACC31B0E358E /* PromisesObjC.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; - IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 74D0ED850D3BE8AB31BF31C289AEDC9F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DD4FB287E52873B3888E95FCFFE03AC7 /* FirebaseCoreInternal.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 7799B7D2403F79539DD0DC3F25EF70FD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 27089548B4EA5E4926A5F3360072B0CA /* leveldb-library.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/leveldb-library"; + IBSC_MODULE = leveldb; + INFOPLIST_FILE = "Target Support Files/leveldb-library/ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = leveldb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -44586,9 +45952,26 @@ }; name = Debug; }; - 840DA02AD341F78F250EB50B9D5A8EDC /* Release */ = { + 7863E3568CD072EAAB4498A355E6B039 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8A390A3454C2DE9588E3128E20BB61BA /* PromisesSwift.release.xcconfig */; + baseConfigurationReference = 711D0DCA561CD1F3D29C367B8A1FBCEF /* FirebaseCoreExtension.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension"; + IBSC_MODULE = FirebaseCoreExtension; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = FirebaseCoreExtension_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 7B66455C11EB815EAFDB27766F325B0D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 676B2E401BB420FF915ECF9907D7D442 /* PromisesSwift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -44621,9 +46004,61 @@ }; name = Release; }; + 7B96A6AF1032EF0BAD3508F419B220DB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E40BFA7922946911BEC25489A98C1B4 /* BoringSSL-GRPC.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.modulemap"; + PRODUCT_MODULE_NAME = openssl_grpc; + PRODUCT_NAME = openssl_grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 7F121A2125BD64B016B8251460CB6113 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 676B2E401BB420FF915ECF9907D7D442 /* PromisesSwift.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesSwift"; + IBSC_MODULE = Promises; + INFOPLIST_FILE = "Target Support Files/PromisesSwift/ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = Promises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 84125B8B373F755C6134BF913884C8EC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEFC07196C0C682F140665A751FB9FB3 /* TZImagePickerController.debug.xcconfig */; + baseConfigurationReference = 65AC58A62F2B05589C10D869D2277EE6 /* TZImagePickerController.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -44655,9 +46090,113 @@ }; name = Debug; }; + 8709D25F6D5EFD4B27098156CF499845 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3D5BB56DB26C4CE0A8387C17D3270E4A /* FirebaseRemoteConfigInterop.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.modulemap"; + PRODUCT_MODULE_NAME = FirebaseRemoteConfigInterop; + PRODUCT_NAME = FirebaseRemoteConfigInterop; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 8920E552A0547B52214BFEA22958F215 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1378A528AC2A6B2572E220216F53F9FB /* PromisesSwift.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/PromisesSwift/PromisesSwift-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PromisesSwift/PromisesSwift-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/PromisesSwift/PromisesSwift.modulemap"; + PRODUCT_MODULE_NAME = Promises; + PRODUCT_NAME = Promises; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.2; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 8A647FDA965BE832E1C5DC244A7DAEB4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BF613118CD1E5060C1629E985255E81C /* FirebaseInstallations.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 8C925430B65BE03F92ABCD1B2005EE0C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC0B23BE18588AAF24DA5DAAB6025911 /* SnapKit.release.xcconfig */; + baseConfigurationReference = 718FB7F46E398F62FF1E4698A24FF6E9 /* SnapKit.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44691,59 +46230,6 @@ }; name = Release; }; - 8CE83147DE572F594377E150AD707363 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DB065A20CA8E7B83FEE62251A3091140 /* gRPC-Core.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; - PRODUCT_MODULE_NAME = grpc; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 8D5CA3CC20EAF28C23F394CF1D383871 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A31A3B3CAA791361D6418CBDC75EAB66 /* PromisesObjC.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -44810,16 +46296,33 @@ }; name = Debug; }; - 973C8106A70665F35A908C040A18A087 /* Release */ = { + 93B060DFCBC4AE1D4021437625A9D686 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B1D272591C32A4B39E06C93CA7546827 /* BoringSSL-GRPC.release.xcconfig */; + baseConfigurationReference = B26213FC6433C650BA3DC049A1C546C9 /* FirebaseCore.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BoringSSL-GRPC"; - IBSC_MODULE = openssl_grpc; - INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = openssl_grpc; + PRODUCT_NAME = FirebaseCore_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 944E438F92B3F543D0F23FFFFB24D9CC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90CB2C8610D6807D82893381C51AB9E5 /* gRPC-Core.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-Core"; + IBSC_MODULE = grpc; + INFOPLIST_FILE = "Target Support Files/gRPC-Core/ResourceBundle-grpc-gRPC-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = grpc; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -44827,76 +46330,24 @@ }; name = Release; }; - 998BE6752653131C57D95D359B3B09B4 /* Release */ = { + 9675E818BF450222B91B80309CA6FC43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA76251189324B7B8AD980E3E8CC1D0F /* gRPC-C++.release.xcconfig */; + baseConfigurationReference = 82F48EB006D69AD3478240191F53BEF6 /* GoogleAppMeasurement.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; - PRODUCT_MODULE_NAME = grpcpp; - PRODUCT_NAME = grpcpp; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; - 99AAAEFA56EFC09BD3CE2540386E7023 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4350220E42E1C777E39D127161265A6A /* nanopb.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -44959,9 +46410,94 @@ }; name = Release; }; + A06B20A53FAA999B271C3E3B5D550638 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DEED3761D2BAE708BE55132689FDC81F /* GTMSessionFetcher.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher"; + IBSC_MODULE = GTMSessionFetcher; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = GTMSessionFetcher_Core_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + A127433BA3BF584780EBA246ABFA3BA5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 929724249058E887C4B6CF1278020B62 /* PromisesObjC.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + A55CD0253052D137AD73040E224B65D7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 23B7FB1B950E018BE7E3892BF92F41C1 /* abseil.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; + PRODUCT_MODULE_NAME = absl; + PRODUCT_NAME = absl; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A57D11792FDE73224FF0C2EFEE76DFB3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F4B84CB652C7D36C4461E22D683DD42C /* FirebaseFirestore.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestore"; + IBSC_MODULE = FirebaseFirestore; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseFirestore_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; A6F0173BAEB974532D93E05E5A94E50A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E11802E61FD392BCC3A02ECE47744B75 /* SnapKit.debug.xcconfig */; + baseConfigurationReference = 88D0AE19D586AC186370D742D5B52B7E /* SnapKit.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -44994,9 +46530,59 @@ }; name = Debug; }; - A87C20EC0C2A7E837E6EE38585F6E933 /* Debug */ = { + A7ED631734031527C4845CC123B7DB42 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A0C9878FC2CB8F61CC93B0E267F5C331 /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = AABCFB842799DDD3FD8D7097DDBA7935 /* nanopb.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + AEA19C4F5F08E44F580EC35AE090EF8E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 35EA6C8E9C0E95CCE50CACC31B0E358E /* PromisesObjC.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + AFACAAA4FC90013BF823D7960034142F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 75461CF43948C9EF6F0EA41ED597B178 /* FirebaseCoreInternal.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -45029,94 +46615,9 @@ }; name = Debug; }; - AAB2C3EC13E475892AFEC21FD4CB5596 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C165BD99C1A18E74FB93AA420CB08357 /* leveldb-library.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/leveldb-library"; - IBSC_MODULE = leveldb; - INFOPLIST_FILE = "Target Support Files/leveldb-library/ResourceBundle-leveldb_Privacy-leveldb-library-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = leveldb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - AC8C661E34AE174BD13478AC72255CC9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4DD0B7726C4CDB8FF0A2899DB2A58E0A /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - AD3C068FC96E75EEB47CD406117C7F10 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DB065A20CA8E7B83FEE62251A3091140 /* gRPC-Core.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-Core"; - IBSC_MODULE = grpc; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/ResourceBundle-grpc-gRPC-Core-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - AEDA67B03F78F43536AE638DAEC0AEE8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A0C9878FC2CB8F61CC93B0E267F5C331 /* FirebaseCoreInternal.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; B06B484BFF6C4DE007D2001DF998E891 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B4EEEE47D6E58C6B6311CB9425BEE0C /* FirebaseAppCheckInterop.debug.xcconfig */; + baseConfigurationReference = A83C27938275852970800FB39D32E6A5 /* FirebaseAppCheckInterop.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -45149,24 +46650,784 @@ }; name = Debug; }; - B0F5ECB1849FA054F07E80137604FBCD /* Debug */ = { + B1908BACFB1745E88BE29E031EF83C6C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 705A70E62E7BC24BC07666641E3F5851 /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = 0F115787DFB56D12775E614EA8B610A7 /* FirebaseCoreExtension.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Kingfisher"; - IBSC_MODULE = Kingfisher; - INFOPLIST_FILE = "Target Support Files/Kingfisher/ResourceBundle-Kingfisher-Kingfisher-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension"; + IBSC_MODULE = FirebaseCoreExtension; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = FirebaseCoreExtension_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + B42ED685F82F9D807ABADBBD5552BB65 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 920F1B3AC0BF95ADB4D3D59E8627D169 /* GoogleUtilities.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = GoogleUtilities_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + B4B630FDE87009671848680926E7C814 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9C527E175F0B74902089E8D836EC36E0 /* FirebaseAnalytics.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + B6482D2E06ED7B8F63837AD24880B4A2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1C68A2DAFE27B53B89DAF433F1FDD1BF /* BoringSSL-GRPC.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BoringSSL-GRPC"; + IBSC_MODULE = openssl_grpc; + INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = openssl_grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + B777C3279137697C7C1020CAFF5749B9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91F4D41DDDB50811970FD5ACF0E8509F /* gRPC-C++.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; + PRODUCT_MODULE_NAME = grpcpp; + PRODUCT_NAME = grpcpp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B7D9E7CD650F798EC835C67DACFEBC4F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 03612F402550043CF94C3EE7A25AC810 /* Alamofire.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + PRODUCT_MODULE_NAME = Alamofire; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BB3A01AA40E9BE587348E4FD305BF6E2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D325D7A4BA84E404B44095F692EDA6A1 /* gRPC-C++.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; + PRODUCT_MODULE_NAME = grpcpp; + PRODUCT_NAME = grpcpp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + BC62CE6366296F53F5832B16162D3D01 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9A91D784268205F0C6BA86928425A593 /* FBSDKCoreKit.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; + PRODUCT_MODULE_NAME = FBSDKCoreKit; + PRODUCT_NAME = FBSDKCoreKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BC856BC9A4C1242C1AFA559E24FF0568 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4210FF2774BA13285DC607DD5F7025C1 /* Kingfisher.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; + PRODUCT_MODULE_NAME = Kingfisher; PRODUCT_NAME = Kingfisher; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BCEEDF6191C875371A2E62AB4B75AA48 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 920F1B3AC0BF95ADB4D3D59E8627D169 /* GoogleUtilities.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + BE9AE42C1E61F3AFE1A970175516FBBD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2904812DC5EF1C1AF04C496F861F966D /* TZImagePickerController.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/TZImagePickerController/TZImagePickerController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TZImagePickerController/TZImagePickerController-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/TZImagePickerController/TZImagePickerController.modulemap"; + PRODUCT_MODULE_NAME = TZImagePickerController; + PRODUCT_NAME = TZImagePickerController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C1FFDBD94F162B8E42B45567B5CA5CA4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7578007106354AA462DC26D02E64D2B /* Firebase.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C5357DE13FACDA1C73BBC509EE3337AF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5466E3A8BC8214B4740BE37EA71E42C2 /* FirebaseCore.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = FirebaseCore_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C54AE8709F3A330E629584BD7A42684D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85797C0AFC0A2ABABBCC164F70F4266A /* FirebaseFirestore.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseFirestore; + PRODUCT_NAME = FirebaseFirestore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C970A2E9251FBD14840DD2E91CE642E1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C2F55B31D13DB514BD1CFCF9B9F067EC /* GoogleDataTransport.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - B1F202457271B5006E6AD2E1DAAEA5AD /* Debug */ = { + D06ED391C326D81A672D93B8834AD2B4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F115787DFB56D12775E614EA8B610A7 /* FirebaseCoreExtension.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreExtension; + PRODUCT_NAME = FirebaseCoreExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D37DEF56210FC7F99E44085FEE5DEA15 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7784731F1F8548D660D46E656C466949 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + D412C7B3755559CF55167407EEA054D1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AF1B01723B08D81E5ADA6501A1821AA /* GTMSessionFetcher.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher"; + IBSC_MODULE = GTMSessionFetcher; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = GTMSessionFetcher_Core_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + D4A6CE0991F353ED5AD0CB3879C637BF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C336132A013B73D86C476752579EC1AB /* FacebookCore.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/FacebookCore/FacebookCore-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FacebookCore/FacebookCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FacebookCore/FacebookCore.modulemap"; + PRODUCT_MODULE_NAME = FacebookCore; + PRODUCT_NAME = FacebookCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D4C8F38426B006793F417D66F501678C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AACF9ABB7D784A3BE2D17B3347664429 /* FirebaseCrashlytics.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + D876745FE0742528901E150C810A63A0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F4B84CB652C7D36C4461E22D683DD42C /* FirebaseFirestore.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseFirestore; + PRODUCT_NAME = FirebaseFirestore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + DEC5578A859D6E4A99A0C8E6DAFB5129 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A5C6F1AF81DBD5C3450AD7395D4BA011 /* DeviceKit.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/DeviceKit/DeviceKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DeviceKit/DeviceKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/DeviceKit/DeviceKit.modulemap"; + PRODUCT_MODULE_NAME = DeviceKit; + PRODUCT_NAME = DeviceKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E354C1E67D78B4FC53C36F2CB56CBEC6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C2F55B31D13DB514BD1CFCF9B9F067EC /* GoogleDataTransport.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + E7C4E72588BA38523B53DEC049091E02 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 02C8209D4562FBC365055D8F12D056FD /* SVProgressHUD.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; + PRODUCT_MODULE_NAME = SVProgressHUD; + PRODUCT_NAME = SVProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + EB70A5121DE41D840B7D1959182C3A79 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 929724249058E887C4B6CF1278020B62 /* PromisesObjC.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + EC3442A0273A098F0605399676572D78 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D91137E3EED6CF46B401F85E76D6C137 /* FirebaseFirestoreInternal.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/FirebaseFirestoreInternal/FirebaseFirestoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseFirestoreInternal; + PRODUCT_NAME = FirebaseFirestoreInternal; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.3; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + EFF21736510A57E446C97AF92518DAD7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E030B2E554D383A6EA8184768CF90DE0 /* FirebaseAuth.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth"; + IBSC_MODULE = FirebaseAuth; + INFOPLIST_FILE = "Target Support Files/FirebaseAuth/ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseAuth_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + F2BB06BD00A5D03960A92CFC1053346A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D91137E3EED6CF46B401F85E76D6C137 /* FirebaseFirestoreInternal.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestoreInternal"; + IBSC_MODULE = FirebaseFirestoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = FirebaseFirestoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + F5CBC4C0D3F52BF86DA0A7112CC6BEC6 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = DB4F34D433F21D14545822AC18C7D578 /* Pods-SwiftProject.debug.xcconfig */; buildSettings = { @@ -45203,9 +47464,9 @@ }; name = Debug; }; - B7D9E7CD650F798EC835C67DACFEBC4F /* Debug */ = { + F5F3306F2C09AB4B623C805497E28D51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B85686B120F530F14DC56C7174782A93 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = 3244B6EE33DB1E5022BE2B321E2C34DA /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -45233,91 +47494,39 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - BC856BC9A4C1242C1AFA559E24FF0568 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 705A70E62E7BC24BC07666641E3F5851 /* Kingfisher.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Kingfisher/Kingfisher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Kingfisher/Kingfisher.modulemap"; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - BE9AE42C1E61F3AFE1A970175516FBBD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3127D690DD4CED5561D22FE1C78E2CCC /* TZImagePickerController.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/TZImagePickerController/TZImagePickerController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TZImagePickerController/TZImagePickerController-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/TZImagePickerController/TZImagePickerController.modulemap"; - PRODUCT_MODULE_NAME = TZImagePickerController; - PRODUCT_NAME = TZImagePickerController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - BF791CC18AFBF820B591581C4A2FD623 /* Release */ = { + F75834C4AAAE687E033E4881F3A75175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9678B0F688BE12902D2BA0B425F5D4DB /* FirebaseFirestoreInternal.release.xcconfig */; + baseConfigurationReference = 0E40BFA7922946911BEC25489A98C1B4 /* BoringSSL-GRPC.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestoreInternal"; - IBSC_MODULE = FirebaseFirestoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestoreInternal/ResourceBundle-FirebaseFirestoreInternal_Privacy-FirebaseFirestoreInternal-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BoringSSL-GRPC"; + IBSC_MODULE = openssl_grpc; + INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/ResourceBundle-openssl_grpc-BoringSSL-GRPC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = openssl_grpc; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + F89C4BBACBF8F144F081D2F6041050A1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85797C0AFC0A2ABABBCC164F70F4266A /* FirebaseFirestore.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestore"; + IBSC_MODULE = FirebaseFirestore; + INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseFirestoreInternal_Privacy; + PRODUCT_NAME = FirebaseFirestore_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -45325,95 +47534,26 @@ }; name = Release; }; - C1FFDBD94F162B8E42B45567B5CA5CA4 /* Debug */ = { + F9E35291E443941CF26FD1094F1E2EF4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D344AC57E3106A35A73E1DA0DBCF8F0 /* Firebase.debug.xcconfig */; + baseConfigurationReference = 91F4D41DDDB50811970FD5ACF0E8509F /* gRPC-C++.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; + IBSC_MODULE = grpcpp; + INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-grpcpp-gRPC-C++-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = grpcpp; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - C54AE8709F3A330E629584BD7A42684D /* Release */ = { + FB59D1FF92246FD3E86A75B6BD0DDAF4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 332460371CBAA0001DC3EC8969806B00 /* FirebaseFirestore.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestore; - PRODUCT_NAME = FirebaseFirestore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - C6634FD4867E8B0E16719CDC15E027C8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2D620783C913F848C4D00FE9C5DB7E3C /* FirebaseSharedSwift.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift.modulemap"; - PRODUCT_MODULE_NAME = FirebaseSharedSwift; - PRODUCT_NAME = FirebaseSharedSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - C6771CED276C0DE9BA192BC5E2224046 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DC43EE7C9C0AB4B6DA1C6F9CDFBA611C /* FirebaseRemoteConfigInterop.debug.xcconfig */; + baseConfigurationReference = 1497D86C7A7704B531593FAD84639BFD /* FirebaseRemoteConfigInterop.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -45445,754 +47585,14 @@ }; name = Debug; }; - C6F15915F4C35711FFFB32ACFD9653F4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D7A82D5443FAF3636239E86DE1AA5AED /* FirebaseCrashlytics.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCrashlytics"; - IBSC_MODULE = FirebaseCrashlytics; - INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseCrashlytics_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CF110ED899AAF7A09FD356F53A20ABFF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 314CC0A5D31E2C89747242FDE8E4C7D9 /* GoogleAppMeasurement.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D06ED391C326D81A672D93B8834AD2B4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 05D31CA8002EABF11F6706D2A32DF1E1 /* FirebaseCoreExtension.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreExtension/FirebaseCoreExtension.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreExtension; - PRODUCT_NAME = FirebaseCoreExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - D4C8F38426B006793F417D66F501678C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D7A82D5443FAF3636239E86DE1AA5AED /* FirebaseCrashlytics.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D6810EAB836131457F044E085ADC2917 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 23E306AC17CA04FC2B1ABC7FFCC26E28 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - D7AB8371C6955515D0F835F75B8EC83C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A1E72F1001E087B0EBAE851A920CB2B9 /* FirebaseFirestore.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestore"; - IBSC_MODULE = FirebaseFirestore; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseFirestore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - D876745FE0742528901E150C810A63A0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A1E72F1001E087B0EBAE851A920CB2B9 /* FirebaseFirestore.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestore; - PRODUCT_NAME = FirebaseFirestore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D9BEF4D6D764BBB98D76F74681DD2C9A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9C662347FC999ED4FBFE9A46444545ED /* GoogleAppMeasurement.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - DAD71A5D73FF9E5353CABC4CCE65691C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DBE4A002E4ECE1756398E619C706DFF2 /* FirebaseSharedSwift.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseSharedSwift/FirebaseSharedSwift.modulemap"; - PRODUCT_MODULE_NAME = FirebaseSharedSwift; - PRODUCT_NAME = FirebaseSharedSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - DC082B416EA398BA637671213F3F10AF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BD585FE1C41649BE87F51BA57352103E /* FirebaseCrashlytics.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCrashlytics"; - IBSC_MODULE = FirebaseCrashlytics; - INFOPLIST_FILE = "Target Support Files/FirebaseCrashlytics/ResourceBundle-FirebaseCrashlytics_Privacy-FirebaseCrashlytics-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseCrashlytics_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - DD2C4F78D113614DE3BFBEFB70D5D384 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9F32CEB0AD50C1710F57EB1F311E42B5 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - DEC5578A859D6E4A99A0C8E6DAFB5129 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 32C67A6A631E1E9A7F6F78C395D9A509 /* DeviceKit.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/DeviceKit/DeviceKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DeviceKit/DeviceKit-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/DeviceKit/DeviceKit.modulemap"; - PRODUCT_MODULE_NAME = DeviceKit; - PRODUCT_NAME = DeviceKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E033EDA779CF37087B299D2851651F66 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DC24A11CA0792F7DA0562E8628A5F7B3 /* gRPC-Core.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; - PRODUCT_MODULE_NAME = grpc; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - E3C3D739ECFDB0A23B8EE5BB542636B7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E8802D3087956EE69081E01F82AE753E /* FirebaseCore.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseCore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E467CCB2732EC098419F505B1B16D8A2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D4C1E4E424E5CCB7DFEB9669A1C774FA /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - E562D2BB9887027988F02E581201CD64 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E8802D3087956EE69081E01F82AE753E /* FirebaseCore.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E7C4E72588BA38523B53DEC049091E02 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57083297018B63A2C5AE41736F7E8E4D /* SVProgressHUD.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/SVProgressHUD/SVProgressHUD.modulemap"; - PRODUCT_MODULE_NAME = SVProgressHUD; - PRODUCT_NAME = SVProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E97624DF2246B0B62270C4957687EA78 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B96E8E395524C881AFCB509C8643BC45 /* nanopb.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = nanopb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - EA3F6D04E499BA93D03AF6D4AB9C595F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F430E1151B325AEECD7898201A1154DE /* FirebaseAnalytics.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - ED29E5E7589F17D0C38648FE97511555 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8A390A3454C2DE9588E3128E20BB61BA /* PromisesSwift.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesSwift"; - IBSC_MODULE = Promises; - INFOPLIST_FILE = "Target Support Files/PromisesSwift/ResourceBundle-Promises_Privacy-PromisesSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = Promises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - EE1CBB84AF28E48A1691F6AD3FA8F2F5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ED31387A76648EF24078ADE03325A530 /* PromisesObjC.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - EEDBB76AA5B33BF4CDFB212D7D584B2B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7EA64FC4FDB0A85DA2F2ED9AA4334EEE /* FirebaseInstallations.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - F0524BABF011ACEB593C1C80E1BAC801 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DC24A11CA0792F7DA0562E8628A5F7B3 /* gRPC-Core.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-Core"; - IBSC_MODULE = grpc; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/ResourceBundle-grpc-gRPC-Core-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - F05522B016ED569D8462167C7B72C52C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D4C1E4E424E5CCB7DFEB9669A1C774FA /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F3FEA739E9B50016A5C3E9D5547EFEE1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7EA64FC4FDB0A85DA2F2ED9AA4334EEE /* FirebaseInstallations.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - F5F3306F2C09AB4B623C805497E28D51 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 03BF3F01FF5DBD90BECA74BCE3828EF9 /* Alamofire.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - PRODUCT_MODULE_NAME = Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - FAAE7281FFC95E8987ECFD6EA3EE0805 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 332460371CBAA0001DC3EC8969806B00 /* FirebaseFirestore.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseFirestore"; - IBSC_MODULE = FirebaseFirestore; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/ResourceBundle-FirebaseFirestore_Privacy-FirebaseFirestore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = FirebaseFirestore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - FC9CE78824CCBBC4655595B6B5C69E77 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3598BF1355655E8402A48B74A93A50EF /* FirebaseSessions.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseSessions/FirebaseSessions-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseSessions/FirebaseSessions.modulemap"; - PRODUCT_MODULE_NAME = FirebaseSessions; - PRODUCT_NAME = FirebaseSessions; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - FFA547321A54BD743E07862CB7702089 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 29228061DD9E6CEF381246A4CEEA0248 /* gRPC-C++.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; - IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-grpcpp-gRPC-C++-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = grpcpp; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0F183963F0F8DF924927AEAC81DE8932 /* Build configuration list for PBXNativeTarget "FirebaseSessions" */ = { + 00CE833F5D4C13C6644E8AC100BCBF3F /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics-FirebaseCrashlytics_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - FC9CE78824CCBBC4655595B6B5C69E77 /* Debug */, - 61D56E9FD30061DCA39F81575EC07110 /* Release */, + 000322C61BA8C52C0A89069BBFA169BE /* Debug */, + 5E476D55A7940D376F30D3AA43CF6D10 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46206,29 +47606,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1B6BDF0C556B53C4C527485490C917D3 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + 15C9A280DA74C5B93BF147415ACAD417 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - F05522B016ED569D8462167C7B72C52C /* Debug */, - DD2C4F78D113614DE3BFBEFB70D5D384 /* Release */, + A127433BA3BF584780EBA246ABFA3BA5 /* Debug */, + 71EA2ABE76AA43AF0C1BB97F0FA0B7D3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1E6BFE4602DABB589E48C3AFF0020381 /* Build configuration list for PBXNativeTarget "gRPC-Core-grpc" */ = { + 1FDD0F1D7AB052F7EA6D9D17FFA90F3A /* Build configuration list for PBXNativeTarget "FirebaseSessions" */ = { isa = XCConfigurationList; buildConfigurations = ( - F0524BABF011ACEB593C1C80E1BAC801 /* Debug */, - AD3C068FC96E75EEB47CD406117C7F10 /* Release */, + 1A7C6D4669ED3B5C3F918333153B78A7 /* Debug */, + 555B000626B82D4697A8796B4CB93EBE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 225DBB9B60BCFFFF8DAC8D389EA8B03D /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension-FirebaseCoreExtension_Privacy" */ = { + 252250DD6D2C507FB295311F76E968D4 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - 62973E62DB47007AB40665F337A14616 /* Debug */, - 33D932AAE5371A9DB2FEA2E228726982 /* Release */, + 1EE109A140FCA984B10CA4ECD2991E67 /* Debug */, + 69013B7E82C9768CEB42972D7C50E698 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46242,38 +47642,65 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D746CD05176BA0C4F40365BBC7692CC /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + 28014C6FA8E254FB0950A9853409F842 /* Build configuration list for PBXNativeTarget "FirebaseSharedSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( - 279FF4650E4BC1B261FECED6BE21B28A /* Debug */, - AC8C661E34AE174BD13478AC72255CC9 /* Release */, + 4369BDB20B42196E9AB58B45363E15EC /* Debug */, + 398C5D4F3D3C0C974C8FCD0636111610 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 324971F9B18AF13D35420E5EF768975D /* Build configuration list for PBXNativeTarget "gRPC-C++-grpcpp" */ = { + 2C28A1724F713E5ECAA2BFE2381662C2 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { isa = XCConfigurationList; buildConfigurations = ( - FFA547321A54BD743E07862CB7702089 /* Debug */, - 52729632D9CB8B25DD5154FA017F76A9 /* Release */, + 12FE220F1974424DFF1F6E0704C3F64F /* Debug */, + 4B3C87484CB35CD54467A7A4465107CA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 353CA37726975F388D1B5A67CB28AB90 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { + 3070AEE9726A8B014F8550DA45CCD5EF /* Build configuration list for PBXNativeTarget "FirebaseFirestore-FirebaseFirestore_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - AEDA67B03F78F43536AE638DAEC0AEE8 /* Debug */, - 5E57FA7115F5AFE8EE9F9D2B3A550527 /* Release */, + A57D11792FDE73224FF0C2EFEE76DFB3 /* Debug */, + F89C4BBACBF8F144F081D2F6041050A1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4779AB7EFE135939ADF16990CC0DB95D /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { + 36A34F9382BBF0A441D7FBB96C35EF73 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - A87C20EC0C2A7E837E6EE38585F6E933 /* Debug */, - 571888A668C2CE7779FD88BE17FAC5DD /* Release */, + 460F3341F0BB6AF0A60CDE31E12C567A /* Debug */, + F2BB06BD00A5D03960A92CFC1053346A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 38EAC68616D0C0CD37160973D2496801 /* Build configuration list for PBXNativeTarget "FacebookCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 01A745664FB826BDDCE81B0E246AC406 /* Debug */, + D4A6CE0991F353ED5AD0CB3879C637BF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 39B7F3E928F3D30C4E68FDC2E4893701 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E354C1E67D78B4FC53C36F2CB56CBEC6 /* Debug */, + 1022431CE1803F643D4085024A4BF613 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 41F078C53EAE2F565A31AA1503ECC86E /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC-openssl_grpc" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F75834C4AAAE687E033E4881F3A75175 /* Debug */, + B6482D2E06ED7B8F63837AD24880B4A2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46287,6 +47714,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4A3010D682E60F9268D937C7029DBA50 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BC62CE6366296F53F5832B16162D3D01 /* Debug */, + 305B3BC1135128745675304077911102 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4CDC85AE0471EFFC35112FF86A535451 /* Build configuration list for PBXNativeTarget "FirebaseAppCheckInterop" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -46296,6 +47732,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4EAC678297DB4F405BDA0DF708080E89 /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5201BEB13D5C688DF6682EAC3C2AE543 /* Debug */, + 43352375B4D6DFDF9E2B4B92742FCD36 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4F4CF6BF0EF8C9B3ED228D8E29A5DDA9 /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -46305,33 +47750,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4F78335F1BD496C33935613B5DC77833 /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 253FFAD229E4F9574B60590014994A0E /* Debug */, - 5FC624356C4D32F023156428799AE747 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 515782CA87AFA2839D2E3E1D94F5AEC3 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7FACE4F302CADF33EF927B60886CE3C9 /* Debug */, - 65707237A782BFB220CA8E2A154862A6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 54ED0F0ABACEB1AC32877E5EB6DE9E78 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D6810EAB836131457F044E085ADC2917 /* Debug */, - E3C3D739ECFDB0A23B8EE5BB542636B7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 58EAA7FF29EA237538F747F2AF468203 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -46341,15 +47759,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 618CFC3F0B9E3F14535AACCDF80984FE /* Build configuration list for PBXNativeTarget "leveldb-library-leveldb_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - AAB2C3EC13E475892AFEC21FD4CB5596 /* Debug */, - 024031AD5F0BEEFD3955729AD2758F80 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 61C623C1EDB6AD9DC66AD8969115C6E1 /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -46359,29 +47768,65 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 65067A5A94D2628EA35EDDFAF3E75227 /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { + 657AC2AB1C65ABB111131FC51DEF4B2D /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - B0F5ECB1849FA054F07E80137604FBCD /* Debug */, - 0F27ACE1514CAA9AD175B8D430CFDA1F /* Release */, + 10E279134993C1C59A617E22F784120E /* Debug */, + EC3442A0273A098F0605399676572D78 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 66AAA1A442EEDA7E64FAEF6F090DF2BF /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + 65BC6BCBEF2571563F5D39EAB7EFCDA5 /* Build configuration list for PBXNativeTarget "FirebaseAuth-FirebaseAuth_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - EA3F6D04E499BA93D03AF6D4AB9C595F /* Debug */, - 610BC9A0317224B46CA2FFC7DE2231B0 /* Release */, + 5B507124A2F5BE72DA161E21B3E36365 /* Debug */, + EFF21736510A57E446C97AF92518DAD7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6E4159B6D6935B6FE6505121A758EF83 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { + 66B457D90619FDBFECFF5D1FB2E6A42C /* Build configuration list for PBXNativeTarget "Pods-SwiftProject" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5521910CC97F16A57DD2E2BC5A7080C6 /* Debug */, - E97624DF2246B0B62270C4957687EA78 /* Release */, + F5CBC4C0D3F52BF86DA0A7112CC6BEC6 /* Debug */, + 0E07BDA57D01C8301EBBDA5A7F6E10F4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 699A60014BCE6BE474F7C53197381EF8 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EB70A5121DE41D840B7D1959182C3A79 /* Debug */, + AEA19C4F5F08E44F580EC35AE090EF8E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6DB6CB31F0A50B12CB5971A773552046 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 93B060DFCBC4AE1D4021437625A9D686 /* Debug */, + C5357DE13FACDA1C73BBC509EE3337AF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6FCA4503B08B91F7378AB086C8E96E5E /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 658119EF21193D8847631AB6E2C4C18E /* Debug */, + 25E7F665582F5A4F96A4A5F2DFEFB1A2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 74F29AE2C38FC6934406AFED895E246C /* Build configuration list for PBXNativeTarget "Kingfisher-Kingfisher" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 23441C55318D18F1DB83E7E221F0AA7A /* Debug */, + 46819EFE74FB838DF861B59F7C82F05B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46404,38 +47849,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7967F953157CDC6C430CB927A5D9988D /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { + 788F93977A190B56DE2F8E9D902A8BCF /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { isa = XCConfigurationList; buildConfigurations = ( - E033EDA779CF37087B299D2851651F66 /* Debug */, - 8CE83147DE572F594377E150AD707363 /* Release */, + B777C3279137697C7C1020CAFF5749B9 /* Debug */, + BB3A01AA40E9BE587348E4FD305BF6E2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7BB931C9F0B1040F1E63A0A78471B806 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + 789094F216AA108B7546EC3AC0E55260 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfigInterop" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1F311F1DAE1B45068F194F8A03CBB9AE /* Debug */, - F3FEA739E9B50016A5C3E9D5547EFEE1 /* Release */, + FB59D1FF92246FD3E86A75B6BD0DDAF4 /* Debug */, + 8709D25F6D5EFD4B27098156CF499845 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7EEEF2327116D0C360285246FAAD9984 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { + 79DC7B17D66B99C870A5D9DB1606EDED /* Build configuration list for PBXNativeTarget "FirebaseCoreExtension-FirebaseCoreExtension_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 11D0F9A43170B469A47F612B043A018D /* Debug */, - 8D5CA3CC20EAF28C23F394CF1D383871 /* Release */, + 7863E3568CD072EAAB4498A355E6B039 /* Debug */, + B1908BACFB1745E88BE29E031EF83C6C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7FC039826B91A207A6884E8D0F7C48A2 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */ = { + 7B10A87C5003F7C40C072B73FA96861F /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 61396787FBD3DF2A909EEF6042A9C22A /* Debug */, - 4748600BB7EC3B6B9984D9D47829DA39 /* Release */, + 40D0672D289F5B23FA515FF20C9B4AD9 /* Debug */, + 34E610B38F606DB49FD39D62867ECCE7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7C4A591019C6BC2511F36699BC3ADB1F /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 184393A849C2D77086BC2FACA5892231 /* Debug */, + 21F9487A48C187703CF4F98E623ADD63 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46449,92 +47903,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 80B6703D972A9F12F6AF1531A47D5A0C /* Build configuration list for PBXNativeTarget "Pods-SwiftProject" */ = { + 81DAFA8373DF6800F841332675A55D7B /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { isa = XCConfigurationList; buildConfigurations = ( - B1F202457271B5006E6AD2E1DAAEA5AD /* Debug */, - 411E9F18AB9386AA6E5B2313E1CF74C9 /* Release */, + 2791F8BD4BB24B25221DE9B918FC4F27 /* Debug */, + 16B8D18CC74355088AF6C2919287E2AC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B23839AD7AD313FDF165993887AC268 /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { + 878328E761EFCD65EF30164893C71C80 /* Build configuration list for PBXNativeTarget "abseil" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1D2A000868FAD0AC263B2D8E1E312028 /* Debug */, - 2EE440E26E178764F57D77D272B5E0AA /* Release */, + A55CD0253052D137AD73040E224B65D7 /* Debug */, + 18EBA0A88DC7071DB55199216D1AE050 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8D5E3AC996B43667F27D7B9FD00D1272 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { + A4827C4FB21C9376518CF95CD637F915 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0655E87BE87E4DF55002411C765A6EA9 /* Debug */, - EEDBB76AA5B33BF4CDFB212D7D584B2B /* Release */, + 687416B4B2E4523C66B9C393ABE03462 /* Debug */, + BCEEDF6191C875371A2E62AB4B75AA48 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 908EB0070E47BF74332656EB70C10683 /* Build configuration list for PBXNativeTarget "FirebaseRemoteConfigInterop" */ = { + A6F33D4C084B0AEEF1EEA59854DCBC38 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6771CED276C0DE9BA192BC5E2224046 /* Debug */, - 3E99EEAC2F939DDA9B429208C6968F97 /* Release */, + 0051F0F155CDCF5631A299830B245578 /* Debug */, + 9675E818BF450222B91B80309CA6FC43 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 914750B209C55CC1897ED1F3AF7AD65A /* Build configuration list for PBXNativeTarget "PromisesSwift" */ = { + A89E4FDCEA75EAA11484049CD39F4503 /* Build configuration list for PBXNativeTarget "PromisesSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6A42C389ED9E280588DC475D5D90E005 /* Debug */, - 840DA02AD341F78F250EB50B9D5A8EDC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 94F26F8BFC833BA3F18C160E1C9BB31A /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4DDC2E7CCFBDDFA509BC0475429A188D /* Debug */, - 2FE510E3ED4B8EDC375E1C3B412DA16F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 972D1CF08B0934214F9D7AF44E5DD10A /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC-openssl_grpc" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 55E1E671FCAD69DA27E9A07536353E5C /* Debug */, - 973C8106A70665F35A908C040A18A087 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9990EDF808300605FA20E9FEA0CEE704 /* Build configuration list for PBXNativeTarget "FirebaseFirestore-FirebaseFirestore_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D7AB8371C6955515D0F835F75B8EC83C /* Debug */, - FAAE7281FFC95E8987ECFD6EA3EE0805 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AA5F37D76DF766CCB040AC7B3C17B54C /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics-FirebaseCrashlytics_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C6F15915F4C35711FFFB32ACFD9653F4 /* Debug */, - DC082B416EA398BA637671213F3F10AF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AD57A75ACF0D6411A9DADA5CF2EEABED /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D9BEF4D6D764BBB98D76F74681DD2C9A /* Debug */, - CF110ED899AAF7A09FD356F53A20ABFF /* Release */, + 8920E552A0547B52214BFEA22958F215 /* Debug */, + 7B66455C11EB815EAFDB27766F325B0D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46548,38 +47957,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B4836BB4E61099AD8C44BD897C104B32 /* Build configuration list for PBXNativeTarget "abseil" */ = { + B5869F5C3534DF98085A296972142757 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6298244DBC105F19C8FB90B9D8C9DE01 /* Debug */, - 62449A909A55E7339A8FC5913BE668CD /* Release */, + 4BA5B47E46B90CE3AE05C250773714E1 /* Debug */, + 8A647FDA965BE832E1C5DC244A7DAEB4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBC937B2AF3C5A14794E497F9FE68064 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal" */ = { + BA12EF1EA996CEC886114B8456742B70 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3D2A54EB0544F46D788540DCCAB4C19F /* Debug */, - 036DB9CDBA9D3103765D56B31E311CCB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C3EAB96814A66865C94E6DC00D190791 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E467CCB2732EC098419F505B1B16D8A2 /* Debug */, - 3E42C70DBCB1166D8DCC04ABD77CFD15 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C6E3A4025E246F6CFEE0E891C8507D34 /* Build configuration list for PBXNativeTarget "FirebaseAuth-FirebaseAuth_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6775B905556B2121644BF3FD5F97D3BB /* Debug */, - 61CC1FE424235275B02BB451D8AF9457 /* Release */, + 531B0054E2649735458E512331ED23DC /* Debug */, + B4B630FDE87009671848680926E7C814 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46593,33 +47984,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C716E5A837EDB58C6997D6901FAD0B93 /* Build configuration list for PBXNativeTarget "FirebaseFirestoreInternal-FirebaseFirestoreInternal_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 58EBA8DD7061BE3F36B59B58FAF63903 /* Debug */, - BF791CC18AFBF820B591581C4A2FD623 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C7D2976233C856C6FDF2CB2AFCBC233E /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6AAAFBB91DB39DBAB92801191A64C955 /* Debug */, - 998BE6752653131C57D95D359B3B09B4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C97B6D1848D6864AD15A11769173EF69 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EE1CBB84AF28E48A1691F6AD3FA8F2F5 /* Debug */, - 32E86B5A72D5FCE0F1A05959106268B6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; CE6B07CF1E1B3E54B33605C249038EE3 /* Build configuration list for PBXNativeTarget "LLCycleScrollView" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -46629,11 +47993,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D03162B885C36232BFC6D348499696B4 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy" */ = { + D0ABDBBDFD7593467696AC2DF096977C /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 492EA4E3F7D2FDD70EA4D2292824C992 /* Debug */, - 1862E1ACAD30F4F6CF94D55936AD5D0E /* Release */, + AFACAAA4FC90013BF823D7960034142F /* Debug */, + 047831FCE743E6BA139D96D2009A7359 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D288430B52743D97CD73E2E1A53C16CD /* Build configuration list for PBXNativeTarget "gRPC-C++-grpcpp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F9E35291E443941CF26FD1094F1E2EF4 /* Debug */, + 09782C25F9D92DADD49F28B58383B576 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D35BE0BE216F31BBC9DA85E7208B0928 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 311F2C00C2D40322B01FB8CC7C817BB1 /* Debug */, + B42ED685F82F9D807ABADBBD5552BB65 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D4AC9FC76FCEA728E0D2F876C333BE05 /* Build configuration list for PBXNativeTarget "PromisesSwift-Promises_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6CDA9B167DB23830E175B490F39F67C5 /* Debug */, + 7F121A2125BD64B016B8251460CB6113 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46647,38 +48038,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E08561E1F458D36150583E15567612F7 /* Build configuration list for PBXNativeTarget "PromisesSwift-Promises_Privacy" */ = { + DBAF36BA05EBAFC3D91A92696FAB8730 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher-GTMSessionFetcher_Core_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4C74FE0915B1BB0D1A2F055C673EE150 /* Debug */, - ED29E5E7589F17D0C38648FE97511555 /* Release */, + A06B20A53FAA999B271C3E3B5D550638 /* Debug */, + D412C7B3755559CF55167407EEA054D1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E3920DEB506221DCE718EDEC2F140EF3 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + DFFC3A607B60A2E8F2A48B6792B3EEF4 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 99AAAEFA56EFC09BD3CE2540386E7023 /* Debug */, - 3F10CD1553EBCB5AD5C6D2ADE8F19C43 /* Release */, + A7ED631734031527C4845CC123B7DB42 /* Debug */, + 529C38AAB140F31DD02241D578F7B6D4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E413DDE0F4720CEC033CEF79B125D79B /* Build configuration list for PBXNativeTarget "FirebaseSharedSwift" */ = { + E086A89C6D0A43078A8A7F4E7D4AF141 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6634FD4867E8B0E16719CDC15E027C8 /* Debug */, - DAD71A5D73FF9E5353CABC4CCE65691C /* Release */, + 6AB3C604BE9657C25DC8B0A7E23362D5 /* Debug */, + 5E9BAA4898E38A23DFC86786D4526E52 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EB7402A5A5650549C523DC507DFB64D8 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + E97C799854E4510C7F41D85FE2CE3820 /* Build configuration list for PBXNativeTarget "leveldb-library-leveldb_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0ABCB10EB7C81B2343DC1B16A3725FD8 /* Debug */, - E562D2BB9887027988F02E581201CD64 /* Release */, + 7799B7D2403F79539DD0DC3F25EF70FD /* Debug */, + 0B7A7F02FB7B2DF8A2B312139FE1325B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -46692,6 +48083,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F8317051626E96A381476173444E3211 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 67281D2263DD8C99D956DE9B5B8D1FCD /* Debug */, + 74D0ED850D3BE8AB31BF31C289AEDC9F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F91130073550F9A5F604F45D45B54869 /* Build configuration list for PBXNativeTarget "gRPC-Core-grpc" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5DF0571A064D33B4A99B2048064F0971 /* Debug */, + 944E438F92B3F543D0F23FFFFB24D9CC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FFB91A1E66128A2995C7DC0B05D03F73 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C970A2E9251FBD14840DD2E91CE642E1 /* Debug */, + D37DEF56210FC7F99E44085FEE5DEA15 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme new file mode 100644 index 0000000..ba9a8ed --- /dev/null +++ b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FacebookCore.xcscheme b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FacebookCore.xcscheme new file mode 100644 index 0000000..9a54b14 --- /dev/null +++ b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/FacebookCore.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist index e5e6bce..bbd3137 100644 --- a/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/SwiftProject/Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist @@ -24,6 +24,16 @@ isShown + FBSDKCoreKit.xcscheme + + isShown + + + FacebookCore.xcscheme + + isShown + + Firebase.xcscheme isShown diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-Info.plist b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-Info.plist new file mode 100644 index 0000000..a3a25a6 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 5.15.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-dummy.m b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-dummy.m new file mode 100644 index 0000000..eb4f9df --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_FBSDKCoreKit : NSObject +@end +@implementation PodsDummy_FBSDKCoreKit +@end diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-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/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h new file mode 100644 index 0000000..8c8cda4 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit-umbrella.h @@ -0,0 +1,46 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "FBSDKAccessToken.h" +#import "FBSDKApplicationDelegate.h" +#import "FBSDKButton.h" +#import "FBSDKConstants.h" +#import "FBSDKCopying.h" +#import "FBSDKCoreKit.h" +#import "FBSDKDeviceButton.h" +#import "FBSDKDeviceViewControllerBase.h" +#import "FBSDKMeasurementEvent.h" +#import "FBSDKMutableCopying.h" +#import "FBSDKProfile.h" +#import "FBSDKProfilePictureView.h" +#import "FBSDKSettings.h" +#import "FBSDKTestUsersManager.h" +#import "FBSDKURL.h" +#import "FBSDKUtility.h" +#import "FBSDKAppEvents.h" +#import "FBSDKAppLink.h" +#import "FBSDKAppLinkNavigation.h" +#import "FBSDKAppLinkResolver.h" +#import "FBSDKAppLinkResolving.h" +#import "FBSDKAppLinkReturnToRefererController.h" +#import "FBSDKAppLinkReturnToRefererView.h" +#import "FBSDKAppLinkTarget.h" +#import "FBSDKAppLinkUtility.h" +#import "FBSDKWebViewAppLinkResolver.h" +#import "FBSDKGraphErrorRecoveryProcessor.h" +#import "FBSDKGraphRequest.h" +#import "FBSDKGraphRequestConnection.h" +#import "FBSDKGraphRequestDataAttachment.h" + +FOUNDATION_EXPORT double FBSDKCoreKitVersionNumber; +FOUNDATION_EXPORT const unsigned char FBSDKCoreKitVersionString[]; + diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.debug.xcconfig b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.debug.xcconfig new file mode 100644 index 0000000..0ae5e38 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) FBSDKCOCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -l"c++" -l"stdc++" -l"z" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/FBSDKCoreKit +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap new file mode 100644 index 0000000..f9847ad --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap @@ -0,0 +1,6 @@ +framework module FBSDKCoreKit { + umbrella header "FBSDKCoreKit-umbrella.h" + + export * + module * { export * } +} diff --git a/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.release.xcconfig b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.release.xcconfig new file mode 100644 index 0000000..0ae5e38 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FBSDKCoreKit/FBSDKCoreKit.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) FBSDKCOCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -l"c++" -l"stdc++" -l"z" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/FBSDKCoreKit +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-Info.plist b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-Info.plist new file mode 100644 index 0000000..7089538 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.9.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-dummy.m b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-dummy.m new file mode 100644 index 0000000..7de9501 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_FacebookCore : NSObject +@end +@implementation PodsDummy_FacebookCore +@end diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-prefix.pch b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-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/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-umbrella.h b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-umbrella.h new file mode 100644 index 0000000..2829128 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double FacebookCoreVersionNumber; +FOUNDATION_EXPORT const unsigned char FacebookCoreVersionString[]; + diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.debug.xcconfig b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.debug.xcconfig new file mode 100644 index 0000000..cc7a4bd --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.debug.xcconfig @@ -0,0 +1,17 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore +ENABLE_TESTABILITY = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "FBSDKCoreKit" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "UIKit" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/FacebookCore +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.modulemap b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.modulemap new file mode 100644 index 0000000..7467294 --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.modulemap @@ -0,0 +1,6 @@ +framework module FacebookCore { + umbrella header "FacebookCore-umbrella.h" + + export * + module * { export * } +} diff --git a/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.release.xcconfig b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.release.xcconfig new file mode 100644 index 0000000..cc7a4bd --- /dev/null +++ b/SwiftProject/Pods/Target Support Files/FacebookCore/FacebookCore.release.xcconfig @@ -0,0 +1,17 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore +ENABLE_TESTABILITY = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "FBSDKCoreKit" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "UIKit" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/FacebookCore +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.markdown b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.markdown index 5fac891..9cb1296 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.markdown +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.markdown @@ -302,6 +302,50 @@ 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. +## FBSDKCoreKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## FacebookCore + +Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +For Facebook Swift SDK software + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + ## Firebase diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.plist b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.plist index b3cd1ed..274e54f 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.plist +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-acknowledgements.plist @@ -331,6 +331,62 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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 + Facebook Platform License + Title + FBSDKCoreKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +For Facebook Swift SDK software + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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 + Facebook Platform License + Title + FacebookCore + Type + PSGroupSpecifier + FooterText diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-input-files.xcfilelist b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-input-files.xcfilelist index 0b2df0f..c46039d 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-input-files.xcfilelist +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-input-files.xcfilelist @@ -2,6 +2,8 @@ ${PODS_ROOT}/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks ${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework ${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework +${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework +${BUILT_PRODUCTS_DIR}/FacebookCore/FacebookCore.framework ${BUILT_PRODUCTS_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework ${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework ${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-output-files.xcfilelist b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-output-files.xcfilelist index 2e9990e..0b9b855 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-output-files.xcfilelist +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Debug-output-files.xcfilelist @@ -1,6 +1,8 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DeviceKit.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBSDKCoreKit.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FacebookCore.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAppCheckInterop.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAuth.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCore.framework diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-input-files.xcfilelist b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-input-files.xcfilelist index 0b2df0f..c46039d 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-input-files.xcfilelist +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-input-files.xcfilelist @@ -2,6 +2,8 @@ ${PODS_ROOT}/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks ${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework ${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework +${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework +${BUILT_PRODUCTS_DIR}/FacebookCore/FacebookCore.framework ${BUILT_PRODUCTS_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework ${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework ${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-output-files.xcfilelist b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-output-files.xcfilelist index 2e9990e..0b9b855 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-output-files.xcfilelist +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks-Release-output-files.xcfilelist @@ -1,6 +1,8 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DeviceKit.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBSDKCoreKit.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FacebookCore.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAppCheckInterop.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseAuth.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FirebaseCore.framework diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks.sh b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks.sh index 85c4162..7419550 100755 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks.sh +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject-frameworks.sh @@ -179,6 +179,8 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" install_framework "${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework" install_framework "${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FacebookCore/FacebookCore.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework" @@ -212,6 +214,8 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" install_framework "${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework" install_framework "${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FacebookCore/FacebookCore.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseAuth/FirebaseAuth.framework" install_framework "${BUILT_PRODUCTS_DIR}/FirebaseCore/FirebaseCore.framework" diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.debug.xcconfig b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.debug.xcconfig index 76ba125..1bc40ef 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.debug.xcconfig +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension/FirebaseCoreExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics/FirebaseCrashlytics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal/FirebaseFirestoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions/FirebaseSessions.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift/FirebaseSharedSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView/LLCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController/TZImagePickerController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit" "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit" "${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) FBSDKCOCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore/FacebookCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension/FirebaseCoreExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics/FirebaseCrashlytics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal/FirebaseFirestoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions/FirebaseSessions.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift/FirebaseSharedSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView/LLCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController/TZImagePickerController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "Accelerate" -framework "Alamofire" -framework "CFNetwork" -framework "CoreTelephony" -framework "DeviceKit" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreExtension" -framework "FirebaseCoreInternal" -framework "FirebaseCrashlytics" -framework "FirebaseFirestore" -framework "FirebaseFirestoreInternal" -framework "FirebaseInstallations" -framework "FirebaseRemoteConfigInterop" -framework "FirebaseSessions" -framework "FirebaseSharedSwift" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "Kingfisher" -framework "LLCycleScrollView" -framework "Photos" -framework "PhotosUI" -framework "Promises" -framework "QuartzCore" -framework "RecaptchaInterop" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SystemConfiguration" -framework "TZImagePickerController" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -weak_framework "Combine" -weak_framework "FirebaseFirestoreInternal" -weak_framework "SwiftUI" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"stdc++" -l"z" -framework "Accelerate" -framework "Alamofire" -framework "CFNetwork" -framework "CoreTelephony" -framework "DeviceKit" -framework "FBLPromises" -framework "FBSDKCoreKit" -framework "FacebookCore" -framework "FirebaseAnalytics" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreExtension" -framework "FirebaseCoreInternal" -framework "FirebaseCrashlytics" -framework "FirebaseFirestore" -framework "FirebaseFirestoreInternal" -framework "FirebaseInstallations" -framework "FirebaseRemoteConfigInterop" -framework "FirebaseSessions" -framework "FirebaseSharedSwift" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "Kingfisher" -framework "LLCycleScrollView" -framework "Photos" -framework "PhotosUI" -framework "Promises" -framework "QuartzCore" -framework "RecaptchaInterop" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SystemConfiguration" -framework "TZImagePickerController" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "Combine" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "FirebaseFirestoreInternal" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "SwiftUI" -weak_framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.release.xcconfig b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.release.xcconfig index 76ba125..1bc40ef 100644 --- a/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.release.xcconfig +++ b/SwiftProject/Pods/Target Support Files/Pods-SwiftProject/Pods-SwiftProject.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension/FirebaseCoreExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics/FirebaseCrashlytics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal/FirebaseFirestoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions/FirebaseSessions.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift/FirebaseSharedSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView/LLCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController/TZImagePickerController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit" "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit" "${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) FBSDKCOCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DeviceKit/DeviceKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FacebookCore/FacebookCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreExtension/FirebaseCoreExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics/FirebaseCrashlytics.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestoreInternal/FirebaseFirestoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseRemoteConfigInterop/FirebaseRemoteConfigInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSessions/FirebaseSessions.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseSharedSwift/FirebaseSharedSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLCycleScrollView/LLCycleScrollView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesSwift/Promises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD/SVProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/TZImagePickerController/TZImagePickerController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "Accelerate" -framework "Alamofire" -framework "CFNetwork" -framework "CoreTelephony" -framework "DeviceKit" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreExtension" -framework "FirebaseCoreInternal" -framework "FirebaseCrashlytics" -framework "FirebaseFirestore" -framework "FirebaseFirestoreInternal" -framework "FirebaseInstallations" -framework "FirebaseRemoteConfigInterop" -framework "FirebaseSessions" -framework "FirebaseSharedSwift" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "Kingfisher" -framework "LLCycleScrollView" -framework "Photos" -framework "PhotosUI" -framework "Promises" -framework "QuartzCore" -framework "RecaptchaInterop" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SystemConfiguration" -framework "TZImagePickerController" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -weak_framework "Combine" -weak_framework "FirebaseFirestoreInternal" -weak_framework "SwiftUI" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"stdc++" -l"z" -framework "Accelerate" -framework "Alamofire" -framework "CFNetwork" -framework "CoreTelephony" -framework "DeviceKit" -framework "FBLPromises" -framework "FBSDKCoreKit" -framework "FacebookCore" -framework "FirebaseAnalytics" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreExtension" -framework "FirebaseCoreInternal" -framework "FirebaseCrashlytics" -framework "FirebaseFirestore" -framework "FirebaseFirestoreInternal" -framework "FirebaseInstallations" -framework "FirebaseRemoteConfigInterop" -framework "FirebaseSessions" -framework "FirebaseSharedSwift" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleUtilities" -framework "Kingfisher" -framework "LLCycleScrollView" -framework "Photos" -framework "PhotosUI" -framework "Promises" -framework "QuartzCore" -framework "RecaptchaInterop" -framework "SVProgressHUD" -framework "SafariServices" -framework "Security" -framework "SnapKit" -framework "StoreKit" -framework "SystemConfiguration" -framework "TZImagePickerController" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -weak_framework "Accelerate" -weak_framework "Accounts" -weak_framework "AudioToolbox" -weak_framework "Combine" -weak_framework "CoreGraphics" -weak_framework "CoreLocation" -weak_framework "FirebaseFirestoreInternal" -weak_framework "Foundation" -weak_framework "QuartzCore" -weak_framework "Security" -weak_framework "Social" -weak_framework "SwiftUI" -weak_framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/SwiftProject/SwiftProject.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate b/SwiftProject/SwiftProject.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate index a63c42a..e33e133 100644 Binary files a/SwiftProject/SwiftProject.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate and b/SwiftProject/SwiftProject.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate differ